/* General */
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}
a {
  color: #2dc997;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 30px 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Disable AOS delay on mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/* Header */
#header {
  height: 90px;
  transition: all 0.8s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}
#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
#header #logo h1 a{
  color: #2dc997;
  transition: all 0.8s;
}
#header #logo h1 a span{
  color: #fff;
  transition: all 0.8s;
}
#header #logo h1 a:hover {
  color: #fff;
}
#header #logo h1 a:hover span {
  color: #2dc997;
}
#header #logo img {
  padding: 0;
  margin: 0 6px 6px 0;
  transition: all 0.6s;
}
#header #logo img:hover {
  transform: scale(1.2);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: linear-gradient(
          rgba(52, 59, 64, 1.0) 0%,
          rgba(52, 59, 64, 0.95) 25%,
          rgba(52, 59, 64, 0.9) 50%,
          rgba(52, 59, 64, 0.85) 75%,
          rgba(52, 59, 64, 0.8) 100%);
  height: 70px;
  transition: all 0.5s;
}
.scrolled-offset {
  margin-top: 70px;
}
#header .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px 20px 10px 30px;
  border: 2px solid #2dc997;
  color: #fff;
}
#header .btn-get-started:hover {
  background: #2dc997;
}
#header .btn-get-started:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: transparent;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 1px;
  position: relative;
  text-transform: uppercase;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #2dc997;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(52, 59, 64, 0.8);
  box-shadow: 0 0 30px rgba(52, 59, 64, 1);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #fff;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #2dc997;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
.navbar .navbar-second {
  background: rgba(52, 59, 64, 0.8);
}
.navbar .navbar-third {
  background: rgba(52, 59, 64, 0.8);
}
@media screen and (max-width: 990px){
  .navbar .btn-get-started-container-pc {
    display: none;
    text-align: center;
  }
  .navbar .btn-get-started-container-mobile {
    text-align: center;
  }
}
@media screen and (min-width: 991px){
  .navbar .btn-get-started-container-pc {
    text-align: center;
  }
  .navbar .btn-get-started-container-mobile {
    display: none;
    text-align: center;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: rgba(52, 59, 64, 0.8);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2dc997;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(52, 59, 64, 0.8);
  box-shadow: 0 0 30px rgba(52, 59, 64, 1);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #2dc997;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Hero */
#hero {
  width: 100%;
  height: 100vh;
  /*background: linear-gradient(rgba(21, 27, 26, 0.7), rgba(21, 27, 26, 0));*/
  background: radial-gradient(
          rgba(25,31,30,0.80) 0%,
          rgba(25,31,30,0.75) 25%,
          rgba(25,31,30,0.70) 50%,
          rgba(25,31,30,0.75) 75%,
          rgba(25,31,30,0.80) 100%
  );
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background: radial-gradient(
          rgba(25,31,30,0.80) 0%,
          rgba(25,31,30,0.75) 25%,
          rgba(25,31,30,0.70) 50%,
          rgba(25,31,30,0.75) 75%,
          rgba(25,31,30,0.80) 100%
  );
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 10px;
  text-shadow: 2px 2px 2px #000, 2px 2px 2px #000;
}
#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  letter-spacing: 4px;
}
#hero .carousel-inner .carousel-item {
  background-position: center top;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,#hero .carousel-inner .active.carousel-item-end {
  left: 0;
}
#hero .carousel-control-prev,#hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon,#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
}
#hero .carousel-indicators .active {
  background-color: #2dc997;
}
#hero .hero-carousel-btn-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.8s;
  margin: 10px;
  border: 4px solid #2dc997;
  color: #fff;
  text-shadow: 1px 1px 1px #000, 1px 1px 1px #000;
}
#hero .btn-get-started:hover {
  background: #2dc997;
}
#hero .btn-watch-video {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 4px;
  margin: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .btn-watch-video i {
  color: #2dc997;
  transition: 0.8s;
  font-size: 30px;
  margin-left: 20px;
  margin-right: 10px;
}
#hero .btn-watch-video span {
  color: #fff;
  transition: 0.8s;
  font-size: 16px;
}
#hero .btn-watch-video:hover span {
  color: #2dc997;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 80%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/* section */
section {
  overflow: hidden;
}

/* section header */
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.section-header .section-description {
  text-align: center;
  padding-bottom: 10px;
  color: #999;
}

/* Facts */
#facts {
  background: #f7f7f7;
  padding: 40px 0 30px 0;
}
#facts .counters span {
  font-size: 48px;
  display: block;
  color: #2dc997;
  font-weight: 700;
  transition: all 0.8s;
}
#facts .counters span:hover {
  transform: scale(1.2);
}
#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* know */
#know {
  background: #fff;
  background-size: cover;
  padding: 40px 0 0 0;
}
#know .section-description{
  padding-bottom: 0;
}
#know .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 2px solid #2dc997;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #fff;
}
#know .icon a {
  display: inline-block;
}
#know .icon i {
  color: #2dc997;
  font-size: 24px;
  line-height: 0;
}
#know .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}
#know .box:hover .icon {
  background: #2dc997;
  border: 2px solid #2dc997;
}
#know .box:hover .icon i {
  color: #fff;
}
#know .box:hover .icon a {
  color: #fff;
}
#know .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#know .title a {
  color: #111;
}
#know .description {
  font-size: 14px;
  line-height: 24px;
}
#know .overview-container{
  padding-bottom: 40px;
  align-items: center;
}
#know .overview-container img {
  width: 100%
}

/* excel */
.excel-process {
  padding: 0 0 40px 0;
}
.excel-process .excel-process-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}
.excel-process .excel-process-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}
.excel-process .excel-process-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}
.excel-process .excel-process-item span {
  font-size: 24px;
  display: block;
  font-weight: 700;
  color: #008374;
  line-height: 40px;
  margin-right: 40px;
}
.excel-process .excel-process-item p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.excel {
  --background-color: color-mix(in srgb, #388da8, transparent 97%);
  padding: 40px 0 30px 0;
}
.excel .excel-item {
  background-color: #ffffff;
  border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}
.excel .excel-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.excel .excel-item h3 {
  color: color-mix(in srgb, #3e5055, transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}
.excel .excel-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, #3d4348, transparent 40%);
  transition: 0.3s;
}
.excel .excel-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}
.excel .excel-item .read-more i {
  margin-left: 10px;
}
.excel .excel-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}
.excel .excel-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}
.excel .excel-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}
.excel .excel-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}
.excel .excel-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}
.excel .excel-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}
.excel .excel-item:hover {
  box-shadow: 0 2px 25px color-mix(in srgb, #3d4348, transparent 90%);
}
.excel .excel-item:hover h3 {
  color: #3e5055;
}
.excel .excel-item:hover p {
  color: color-mix(in srgb, #3d4348, transparent 10%);
}
.excel img{
  box-shadow: inset 0 0 15px 0 #ddd;
  border-radius: 20px;
}

/* mlib */
.mlib {
  padding: 40px 0 30px 0;
}
.mlib .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.mlib .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #2dc997;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.mlib .icon i {
  font-size: 36px;
  line-height: 0;
}
.mlib .icon-box:hover .icon {
  box-shadow: 0 0 30px rgba(45, 201, 151, 0.6);
}
.mlib .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.mlib .title a {
  color: #444;
  transition: 0.3s;
}
.mlib .title a:hover {
  color: #2dc997;
}
.mlib .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #2dc997;
  bottom: 0;
  left: calc(50% - 25px);
}
.mlib .description {
  line-height: 24px;
  font-size: 14px;
}

.atm{
  padding-top: 20px;
}
.atm .video-box {
  background: url("../img/atm/bg.png") center center no-repeat;
  background-size: cover;
  min-height: 500px;
  align-items: center;
  box-shadow: inset 0 0 100px 1px #fff;
}
.atm .btn-get-started {
  width: 94px;
  height: 94px;
  background: radial-gradient(rgb(45,201,151) 50%, rgba(45,201,151, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.atm .btn-get-started::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(45,201,151, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.atm .btn-get-started::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@keyframes pulsate-btn {
   0% {
     transform: scale(0.6, 0.6);
     opacity: 1;
   }

   100% {
     transform: scale(1, 1);
     opacity: 0;
   }
 }
.atm .icon-boxes h4 {
  font-size: 18px;
  color: #7f6d68;
  margin-bottom: 15px;
}
.atm .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #554945;
  margin-bottom: 15px;
}
.atm .icon-box {
  margin-top: 40px;
}
.atm .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(45,201,151,0.75);
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}
.atm .icon-box .icon i {
  color: #2dc997;
  font-size: 32px;
}
.atm .icon-box:hover .icon {
  background: #2dc997;
  border-color: #2dc997;
}
.atm .icon-box:hover .icon i {
  color: #fff;
}
.atm .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.atm .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.atm .icon-box .title a:hover {
  color: #2dc997;
}
.atm .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.alt {
  padding: 120px 0;
  margin-top: 60px;
  position: relative;
  clip-path: inset(0);
}
.alt img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.alt:before {
  content: "";
  background: color-mix(in srgb, #060606, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.alt .container {
  position: relative;
  z-index: 3;
}
.alt h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.alt p {
  color: #fff;
}
.alt .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: rgb(45,201,151);
  color: #ffffff;
}
.alt .cta-btn:hover {
  background: color-mix(in srgb, rgb(45,201,151) 75%, white 25%);
}

.mixing {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mixing .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, #3d4348, transparent 40%);
}
.mixing .content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.mixing .content ul {
  list-style: none;
  padding: 0;
}
.mixing .content ul li {
  padding-bottom: 10px;
}
.mixing .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: #2dc997;
}
.mixing .content p:last-child {
  margin-bottom: 0;
}
.mixing .content .read-more {
  background: #2dc997;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mixing .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.mixing .content .read-more:hover {
  background: color-mix(in srgb, #2dc997, transparent 20%);
  padding-right: 19px;
}
.mixing .content .read-more:hover i {
  margin-left: 10px;
}
.mixing .mixing-images img {
  /*border-radius: 10px;*/
}

/* contrast */
.contrast {
  background: rgba(72,86,100,0.04);
  padding: 40px 0 30px 0;
}
.contrast .contrast-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108,117,125,0.15);
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 4px solid #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.contrast .contrast-header {
  background: linear-gradient(rgba(72,86,100,0.9), rgba(72,86,100,0.9)), url("../img/contrast/contrast-bg.jpg") center center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  margin: -60px -40px 0;
}
.contrast h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: #ffffff;
}
.contrast h4 {
  font-size: 48px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 0;
}
.contrast h4 sup {
  font-size: 28px;
}
.contrast h4 span {
  color: rgba(255,255,255,0.6);
  font-size: 24px;
}
.contrast ul {
  padding: 30px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}
.contrast ul li.know {
  color: #222;
}
.contrast ul li.atm {
  color: #222;
}
.contrast ul li.alt-contrast {
  color: #222;
}
.contrast ul li.mlib {
  color: #222;
}
.contrast ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.contrast ul i {
  color: #2dc997;
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}
.contrast ul .na {
  color: rgba(108,117,125,0.5);
}
.contrast ul .na i {
  color: rgba(108,117,125,0.5);
  font-size: 36px;
  padding-left: 0;
}
.contrast ul .na span {
  text-decoration: line-through;
}
.contrast .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: #2dc997;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid #2dc997;
}
.contrast .buy-btn:hover {
  background: #2dc997;
  color: #ffffff;
}
.contrast .free {
  border-color: rgba(72, 86, 100, 0.9);
}
.contrast .featured {
  border-color: #2dc997;
}
.contrast .featured .contrast-header {
  background: linear-gradient(rgba(45,201,151,0.9), rgba(45,201,151,0.9)), url("../img/contrast/contrast-bg.jpg") center center;
}
.contrast .private {
  border-color: rgb(200,151,45);
}
.contrast .private .contrast-header {
  background: linear-gradient(rgba(200,151,45,0.9), rgba(200,151,45,0.9)), url("../img/contrast/contrast-bg.jpg") center center;
}
@media screen and (max-width: 990px){
  .contrast .btn-get-started-container-pc {
    display: none;
    text-align: center;
  }
  .contrast .btn-get-started-container-mobile {
    text-align: center;
  }
}
@media screen and (min-width: 991px){
  .contrast .btn-get-started-container-pc {
    text-align: center;
  }
  .contrast .btn-get-started-container-mobile {
    display: none;
    text-align: center;
  }
}

/* methods */
#methods {
  display: inline-block;
  height: 100%;
  width: 100%;
  padding: 40px 0 0 0;
}
#methods .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}
#methods .feature-block img {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}
#methods .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}
#methods .feature-block h4 {
  margin-bottom: 20px;
}
#methods .feature-block p {
  margin-bottom: 0;
}

/* deploy */
.deploy {
  padding: 40px 0 30px 0;
}
.deploy .content {
  padding: 30px 0;
}
.deploy .content .icon-box {
  margin-top: 25px;
}
.deploy .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  transition: 0.5s;
}
.deploy .content .icon-box h4:hover {
  color: #2dc997;
}
.deploy .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #2dc997;
}
.deploy .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}
@media (max-width: 991px) {
  .deploy .image {
    text-align: center;
  }
  .deploy .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .deploy .image img {
    max-width: 100%;
  }
}

/* Pricing */
.pricing {
  padding: 40px 0 30px 0;
  background: rgba(72, 86, 100, 0.04);
}
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 50px rgba(1, 41, 112, 0.08);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.pricing h4 {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: #bebebe solid 1px;
}
.pricing h4 sup {
  font-size: 12px;
  top: -16px;
  left: -6px;
}
.pricing .price {
  font-size: 24px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

/* clients */
.clients {
  padding: 40px 0 30px 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 120px;
}
.clients .client-logo-desc {
  text-align: center;
  color: #999;
  font-size: smaller;
}
.clients .client-logo img {
  height: 40px;
}
.clients .client-logo:hover img {
  transform: scale(1.2);
}
.clients img {
  transition: all 0.4s ease-in-out;
}

/* contact */
#contact {
  background: #f7f7f7;
  padding: 40px 0 30px 0;
}
#contact .info {
  color: #333333;
}
#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
  line-height: 0;
}
#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 32px;
  font-size: 14px;
}
#contact .info .email p {
  padding-top: 5px;
}
#contact .info .bi-copy {
  font-size: 16px;
  transition: all 0.5s;
}
#contact .info .bi-copy:hover {
  color: #2dc997;
  transition: all 0.5s;
}
#contact .social-links {
  padding: 10px 0 30px 0;
}
@media (max-width: 768px) {
  #contact .social-links {
    text-align: center;
  }
}
#contact .social-links a {
  font-size: 18px;
  line-height: 1;
  text-align: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
}
#contact .social-links a.social-links-weixin {
  background: url("../../assets/icon/weixin.svg");
}
#contact .social-links a.social-links-qq {
  background: url("../../assets/icon/qq.svg");
}
#contact .social-links a.social-links-bilibili {
  background: url("../../assets/icon/bilibili.svg");
}
#contact .social-links a.social-links-douyin {
  background: url("../../assets/icon/douyin.svg");
}
#contact .social-links a.social-links-kuaishou {
  background: url("../../assets/icon/kuaishou.svg");
}
#contact .social-links a .social-links-qrcode {
  width: 150px;
  height: 150px;
  padding: 5px;
  position: absolute;
  z-index: 99;
  border-radius: 5px;
  bottom: 50px;
  visibility: hidden;
  opacity: 0;
  filter: Alpha(opacity=0);
  transition: opacity 1.5s;
}
#contact .social-links a .social-links-qrcode-weixin {
  background: url(../../assets/qrcode/weixin.png) no-repeat 0 0;
  border: 2px solid rgb(60,175,52);
  background-size: 100% 100%;
}
#contact .social-links a .social-links-qrcode-qq {
  background: url(../../assets/qrcode/qq.png) no-repeat 0 0;
  border: 2px solid rgb(235,28,38);
  background-size: 100% 100%;
}
#contact .social-links a .social-links-qrcode-bilibili {
  background: url(../../assets/qrcode/bilibili.png) no-repeat 0 0;
  border: 2px solid rgb(241,108,141);
  background-size: 100% 100%;
}
#contact .social-links a .social-links-qrcode-douyin {
  background: url(../../assets/qrcode/douyin.png) no-repeat 0 0;
  border: 2px solid rgb(17,17,17);
  background-size: 100% 100%;
}
#contact .social-links a .social-links-qrcode-kuaishou {
  background: url(../../assets/qrcode/kuaishou.png) no-repeat 0 0;
  border: 2px solid rgb(255,103,52);
  background-size: 100% 100%;
}
#contact .social-links a.social-links-weixin:hover .social-links-qrcode-weixin{
  visibility: visible;
  opacity: 1;
  filter: Alpha(opacity=100);
  transition: opacity 1.5s;
}
#contact .social-links a.social-links-qq:hover .social-links-qrcode-qq{
  visibility: visible;
  opacity: 1;
  filter: Alpha(opacity=100);
  transition: opacity 1.5s;
}
#contact .social-links a.social-links-bilibili:hover .social-links-qrcode-bilibili{
  visibility: visible;
  opacity: 1;
  filter: Alpha(opacity=100);
  transition: opacity 1.5s;
}
#contact .social-links a.social-links-douyin:hover .social-links-qrcode-douyin{
  visibility: visible;
  opacity: 1;
  filter: Alpha(opacity=100);
  transition: opacity 1.5s;
}
#contact .social-links a.social-links-kuaishou:hover .social-links-qrcode-kuaishou{
  visibility: visible;
  opacity: 1;
  filter: Alpha(opacity=100);
  transition: opacity 1.5s;
}

/* tutorials */
#tutorials {
  background: #f7f7f7;
  padding: 40px 0;
}
#tutorials #tutorials-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
#tutorials #tutorials-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 18px 14px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #666666;
  margin: 0 5px 10px 5px;
  transition: all ease-in-out 0.3s;
  background: white;
  border-radius: 4px;
}
#tutorials #tutorials-filters li:hover,
#tutorials #tutorials-filters li.filter-active {
  color: #fff;
  background: #2dc997;
}
#tutorials #tutorials-filters li:last-child {
  margin-right: 0;
}
#tutorials .tutorials-item {
  margin-bottom: 30px;
  overflow: hidden;
}
#tutorials .tutorials-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#tutorials .tutorials-item .tutorials-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #2dc997;
  padding: 15px 20px;
}
#tutorials .tutorials-item .tutorials-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
#tutorials .tutorials-item .tutorials-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}
#tutorials .tutorials-item .tutorials-info .preview-link,
#tutorials .tutorials-item .tutorials-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}
#tutorials .tutorials-item .tutorials-info .preview-link:hover,
#tutorials .tutorials-item .tutorials-info .details-link:hover {
  color: #a4ebd4;
}
#tutorials .tutorials-item .tutorials-info .details-link {
  right: 15px;
}
#tutorials .tutorials-item:hover img {
  top: -30px;
}
#tutorials .tutorials-item:hover .tutorials-info {
  opacity: 1;
  bottom: 0;
}

/* faq */
.faq {
  padding: 40px 0 30px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #f2f2fe;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #2dc997;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
.faq .faq-list .collapsed:hover {
  color: #2dc997;
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/* Footer */
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .copyright {
  text-align: center;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2dc997;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #49d6a9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
