/* Front */
html  {
  font-size: 10px;
}

body {
  font-family: 'Mulish', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #111C24;
  overflow-x: hidden;
  background: #fff;
}

svg {
  display: block;
}

a,
button,
input,
textarea,
button,
select {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button {
  cursor: pointer;
  outline: 0;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  outline: 0;
}

a,
a:hover {
  text-decoration: none;
  color: #FE9433;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 700;
  color: #222125;
}

img {
  max-width: 100%;
  height: auto;
}

.section-default {
  padding: 9.6rem 0;
}

.container {
  padding: 0 20px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1456px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1450px;
  }
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/
.btn-wrapper {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.btn-main {
  padding: 1.6rem 2.4rem;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 2.3rem;
  border: 0;
  border-radius: 1.2rem;
  transition: all 0.3s;
  position: relative;
  background-color: #fe9433;
}

.btn-main svg {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 12px;
}

.btn-main > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1px;
}

.btn-main:hover {
  background: #e5852e;
  color: #fff;
}

.btn-more {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 1.4rem 0;
}

.btn-more:hover {
  text-decoration: underline;
}

.ml-48 {
  margin-left: 4.8rem;
}

/* Back To Top */

.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #FE9433;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  transition: all .5s ease;
}

.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0px 0px #fff, 0px 50px #fff;
  -webkit-transition: text-shadow .2s ease;
  -o-transition: text-shadow .2s ease;
  transition: text-shadow .2s ease;
  z-index: 1;
}

.return-to-top > i:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  transform: rotate(135deg);
  border-top: 0;
  border-right: 0;
  top: 18px;
  left: 16px;
  position: absolute;
}

.return-to-top:hover {
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
  text-shadow: 0px -50px #fff, 0px 0px #fff;
}

.return-to-top.back-top {
  bottom: 20px;
  opacity: 1;
}

@keyframes pixFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pixFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pixFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes pixFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pixFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes pixFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pixFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes pixFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pixFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes pixZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pixZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes pixBounceIn {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pixBounceIn {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.pixFade {
  -webkit-animation-name: pixFade;
          animation-name: pixFade;
}

.pixFadeUp {
  -webkit-animation-name: pixFadeUp;
          animation-name: pixFadeUp;
}

.pixFadeDown {
  -webkit-animation-name: pixFadeDown;
          animation-name: pixFadeDown;
}

.pixFadeLeft {
  -webkit-animation-name: pixFadeLeft;
          animation-name: pixFadeLeft;
}

.pixFadeRight {
  -webkit-animation-name: pixFadeRight;
          animation-name: pixFadeRight;
}

.pixZoomIn {
  -webkit-animation-name: pixZoomIn;
          animation-name: pixZoomIn;
}

.pixBounceIn {
  -webkit-animation-name: pixBounceIn;
          animation-name: pixBounceIn;
}

.zoomIn {
  -webkit-animation-name: zoomin;
          animation-name: zoomin;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.page-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-loader svg {
  display: none;
}

.blobs {
  -webkit-filter: url(#goo);
          filter: url(#goo);
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 70px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.blobs .blob-center {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: absolute;
  background: #1FD4AF;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
      -ms-transform: scale(0.9) translate(-50%, -50%);
          transform: scale(0.9) translate(-50%, -50%);
  -webkit-animation: blob-grow linear 3.4s infinite;
          animation: blob-grow linear 3.4s infinite;
  border-radius: 50%;
  -webkit-box-shadow: 0 -10px 40px -5px #1FD4AF;
          box-shadow: 0 -10px 40px -5px #1FD4AF;
}

.blob {
  position: absolute;
  background: #1FD4AF;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-animation: blobs ease-out 3.4s infinite;
          animation: blobs ease-out 3.4s infinite;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
      -ms-transform: scale(0.9) translate(-50%, -50%);
          transform: scale(0.9) translate(-50%, -50%);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  opacity: 0;
}

.blob:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.blob:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.blob:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.blob:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.blob:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes blobs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
            transform: scale(0) translate(calc(-330px - 50%), -50%);
  }
  1% {
    opacity: 1;
  }
  35%,
  65% {
    opacity: 1;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
            transform: scale(0.9) translate(-50%, -50%);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
            transform: scale(0) translate(calc(330px - 50%), -50%);
  }
}

@keyframes blobs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
            transform: scale(0) translate(calc(-330px - 50%), -50%);
  }
  1% {
    opacity: 1;
  }
  35%,
  65% {
    opacity: 1;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
            transform: scale(0.9) translate(-50%, -50%);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
            transform: scale(0) translate(calc(330px - 50%), -50%);
  }
}

@-webkit-keyframes blob-grow {
  0%,
  39% {
    -webkit-transform: scale(0) translate(-50%, -50%);
            transform: scale(0) translate(-50%, -50%);
  }
  40%,
  42% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
            transform: scale(1, 0.9) translate(-50%, -50%);
  }
  43%,
  44% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
            transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  45%,
  46% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
            transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  47%,
  48% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
            transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  52% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
            transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  54% {
    -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
            transform: scale(1.7, 1.6) translate(-50%, -50%);
  }
  58% {
    -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
            transform: scale(1.8, 1.7) translate(-50%, -50%);
  }
  68%,
  70% {
    -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
            transform: scale(1.7, 1.5) translate(-50%, -50%);
  }
  78% {
    -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
            transform: scale(1.6, 1.4) translate(-50%, -50%);
  }
  80%,
  81% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
            transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  82%,
  83% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
            transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  84%,
  85% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
            transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  86%,
  87% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
            transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  90%,
  91% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
            transform: scale(1, 0.9) translate(-50%, -50%);
  }
  92%,
  100% {
    -webkit-transform: scale(0) translate(-50%, -50%);
            transform: scale(0) translate(-50%, -50%);
  }
}

@keyframes blob-grow {
  0%,
  39% {
    -webkit-transform: scale(0) translate(-50%, -50%);
            transform: scale(0) translate(-50%, -50%);
  }
  40%,
  42% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
            transform: scale(1, 0.9) translate(-50%, -50%);
  }
  43%,
  44% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
            transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  45%,
  46% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
            transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  47%,
  48% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
            transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  52% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
            transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  54% {
    -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
            transform: scale(1.7, 1.6) translate(-50%, -50%);
  }
  58% {
    -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
            transform: scale(1.8, 1.7) translate(-50%, -50%);
  }
  68%,
  70% {
    -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
            transform: scale(1.7, 1.5) translate(-50%, -50%);
  }
  78% {
    -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
            transform: scale(1.6, 1.4) translate(-50%, -50%);
  }
  80%,
  81% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
            transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  82%,
  83% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
            transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  84%,
  85% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
            transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  86%,
  87% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
            transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  90%,
  91% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
            transform: scale(1, 0.9) translate(-50%, -50%);
  }
  92%,
  100% {
    -webkit-transform: scale(0) translate(-50%, -50%);
            transform: scale(0) translate(-50%, -50%);
  }
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
  background: rgba(255, 255, 255, 1);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

  border-bottom: 1px solid #ACADB8;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.site-header .inverse-logo,
.site-header.header-light .inverse-logo {
  display: none !important;
}

.site-header.pix-header-fixed.header-light .sticky-logo {
  display: inline-block !important;
}

.site-logo {
  max-width: 200px;
}

.site-header .header-inner {
  position: relative;
}

.site-header .header-inner .site-logo a {
  display: block;
}

.site-header .header-inner .site-logo a img {
  width: 100%;
}

.site-header .header-inner .site-logo a .sticky-logo {
  display: none;
}

.site-header .header-inner .site-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.site-header .header-inner .site-nav .menu-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-header .site-mobile-logo {
  display: none;
}

.site-header .site-main-menu {
  margin: 0 4.8rem 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .site-main-menu li {
  margin: 0 2.5rem;
  position: relative;
  padding: 1.5rem 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li:last-child {
  margin-right: 0;
}

.site-header .site-main-menu li > a {
  color: #14AF49;
  font-size: 1.6rem;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
}

.site-header .site-main-menu li > a:hover {
  background-color: rgba(20, 175, 73, 0.3);
}

.site-header .toggle-menu .bar {
  background: #46A593;
}

.site-header .header-inner .site-nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0;
}

.logo-sticky {
  display: none;
}

.pix-header-fixed {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1000;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(79, 35, 35, 0.08);
          box-shadow: 0px 10px 20px 0px rgba(79, 35, 35, 0.08);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
          animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.pix-header-fixed .header-inner .site-logo .logo-sticky {
  display: block;
}

.pix-header-fixed .header-inner .site-logo .logo-main {
  display: none;
}

.pix-header-fixed .header-inner .site-nav .nav-right .nav-btn {
  background: transparent;
  color: #fa7070;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #fa7070;
}

.pix-header-fixed .header-inner .site-nav .nav-right .nav-btn:hover {
  background: #fa7070;
  color: #fff;
}

.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn,
.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn.style-two {
  border-color: #7052fb;
  color: #7052fb;
}

.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn.style-two:hover {
  background: #7052fb;
  color: #fff;
  border-color: #7052fb;
}

.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a:hover, .pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
  color: #7052fb;
}

.pix-header-fixed .site-main-menu li {
  padding: 15px 0;
}

.pix-header-fixed .site-main-menu li.menu-item-has-children:after {
  color: #333;
}

.pix-header-fixed .site-logo .main-logo {
  display: none;
}

.pix-header-fixed .site-logo .sticky-logo {
  display: block;
}

.pix-header-fixed.header-five .header-inner .site-nav .nav-right .nav-btn {
  color: #7052fb;
  border: 2px solid #7052fb;
}

.pix-header-fixed.header-five .header-inner .site-nav .nav-right .nav-btn:hover {
  background: #7052fb;
  border-color: #7052fb;
  color: #fff;
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  top: 0;
  left: 0;
}

.close-menu {
  display: none;
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/
.banner {
  position: relative;
  padding-top: 14rem;
  margin-top: 7.5rem;
  padding-bottom: 14rem;
  min-height: calc(100vh - 8rem);
}

.banner .container {
  position: relative;
}

.banner .row {
  position: relative;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.5;
}

.bg-overlay.fixed {
  position: fixed;
}

.bg-overlay:before,
.bg-overlay:after,
.bg-overlay-inner {
  content: '';
  position: absolute;
  filter: blur(300px);
  opacity: 1;
}

.bg-overlay:before {
  width: 418px;
  height: 418px;
  left: -18px;
  top: -55px;
  background: #40A90F;
  border-radius: 209px;
}

.bg-overlay:after {
  width: 423px;
  height: 423px;
  right: 0;
  top: 98px;
  background: #FFA217;
  border-radius: 151px;
}

.bg-overlay-inner {
  width: 734px;
  height: 734px;
  left: 199px;
  top: 459px;
  background: #FF9A7A;
  border-radius: 208px;
}

.main-image {
  display: inline-block;
  box-shadow: 0px 51px 94px rgba(19, 51, 26, 0.1);
}
  /*--------------------------------------------------------------
    ##  Section Title
    --------------------------------------------------------------*/

h1.title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  color: #14AF49;
}

h2.title {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 800;
  color: #14AF49;
}

.subtitle {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  color: #14AF49;
}

.feature {
  padding: 3rem 3rem 5rem;
  border: 1px solid #ACADB8;
  border-radius: 2.4rem;
  text-align: center;
  height: 100%;
  background: url("../images/feature-bg.jpg") no-repeat center/cover;
}

.feature-item > .feature {
  border: 0;
  border-bottom: 1px solid #ACADB8;
}

.feature-image {
  height: 60%;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: center;
}

.feature-image img {
  max-height: 100%;
}

.feature-title {
  color: #111C24;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.text-big {
  color: #11273C;
  font-size: 2.4rem;
}

#features h2.title {
  margin-bottom: 6.8rem;
}
  /*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/

.faq {
  counter-reset: card;
}

.card {
  padding: 1.8rem 0 1.8rem 7.5rem;
  position: relative;
  border: 1px solid #ACADB8;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 16 20px 5px rgba(19, 51, 26, 0.1);
}

.card + .card {
  margin-top: 1.6rem;
}

.card-header {
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0;
}

.card-body {
  padding: 1.8rem 0 0;
}

.card-body p {
  margin-bottom: 0;
  opacity: 0.6;
  padding-right: 10rem;
}

.card .btn {
  color: #111C24;
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  transition: all 0.3s;
  font-weight: 800;
  font-size: 2.4rem;
  position: relative;
  padding: 0 4rem 0 0;
}

.card .btn:focus {
  outline: none;
  box-shadow: none;
}

.card:before {
  width: 4rem;
  height: 4rem;
  font-size: 2.4rem;
  font-weight: 800;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  color: #FE9433;
  counter-increment: card;
  content: counter(card);
  text-align: center;
  border-radius: 50%;
  margin: 1.75rem;
  border: 2px solid #FE9433;
}

.card.active:before {
  color: #fff;
  background-color: #FE9433;
}

.card .btn.collapsed .expand-arrow {
  transform: none;
}

.card:hover .btn {
  text-decoration: underline;
  color: #FE9433;
}

.expand-arrow {
  position: absolute;
  right: 2.4rem;
  top: 0.7rem;
  transform: rotate(180deg);
  transition: all 0.3s;
  margin: 6px 0;
}

#blog {
  background: url("../images/blog-bg.jpg") no-repeat top center/100%;
}

.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog {
  width: calc(33.33% - 4.8rem);
  height: 100%;
  background: #FFF;
  border: 1px solid #ACADB8;
  border-radius: 2.4rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
}

.blog-content {
  padding: 2.4rem 2.4rem 4.2rem;
}

.blog-date {
  font-size: 1.6rem;
  line-height: 160%;
  color: #111C24;
  display: block;
  opacity: 0.6;
  margin-bottom: 0.9rem;
}

.blog-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111C24;
  margin-bottom: 0;
  line-height: 1.4;
}

.blog-title:hover {
  text-decoration: underline;
  color: #FE9433;
}

.blog-btn {
  margin-top: 1rem;
  display: block;
}

.link {
  color: #45C194;
  transition: all 0.3s;
}

.link:hover {
  color: #46A593;
  text-decoration: underline;
  text-decoration-color: #46A593;
}

.search-brand {
  height: 10rem;
}


.btn-down {
  background: #fff;
  position: absolute;
  top: calc(100% + 6rem);
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  box-shadow: 0 51px 94px rgba(19, 51, 26, 0.1);
  margin-left: calc(8.3333% + 15px);
}

.btn-down:after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border: solid 3px #FE9433;
  transform: rotate(-45deg);
  border-top: 0;
  border-right: 0;
  position: absolute;
  left: calc(50% - 0.7rem);
  bottom: 2rem;
  transition: all 0.3s;
}

.btn-down:hover:after {
  border-color: #14AF49;
}

.security-top {
  background: url("../images/security-bg-top.jpg") no-repeat top right/cover;
}

.security-mid {
  background: url("../images/security-bg-bottom.jpg") no-repeat top right/cover;
}

.security-bottom {
  background: url("../images/security-bg-top.jpg") no-repeat top left/cover;
}

.security-block {
  display: flex;
  align-items: center;
  padding: 12.6rem 0;
}

.security-block .subtitle {
  margin-bottom: 1rem;
}

.security-block p {
  line-height: 1.6;
  opacity: 0.6;
  color: #111C24;
}

.security-image {
  margin-right: 3rem;
}
/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer {
  background: url("../images/blog-bg.jpg") no-repeat top center/100%;
  margin-top: 3rem;
}

.footer-content {
  padding: 9rem 0 4.8rem;
}

.footer-content p {
  opacity: 0.6;
  margin-bottom: 3.4rem;
  max-width: 450px;
}

.footer-link {
  color: #111C24;
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0.6rem 0;
  opacity: 0.6;
}

.footer-link:hover {
  color: #FE9433;
  text-decoration: underline;
}

.footer-title {
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 4.8rem;
  color: #111C24;
}

.copyright {
  background: #14AF49;
  color: #fff;
  font-weight: bold;
  line-height: 1.6;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.6rem;
}

.footer-logo {
  display: block;
  margin-bottom: 3.6rem;
}

.page-banner-bg {
  background: url("../images/page-title-bg.svg") no-repeat;
  background-position: center;
  background-size: contain;
  padding: 3rem 0;
}

.page-banner-bg .title {
  margin-bottom: 0;
}

.banner.inner-page {
  padding-bottom: 10rem;
  padding-top: 10rem;
  background: none;
  min-height: calc(100vh - 8rem);
}

.uninstall-image {
  filter: drop-shadow(0px 0px 26px rgba(0, 0, 0, 0.08));
  border-radius: 1rem;
  margin-top: 5rem;
}

.inner-page .footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    padding: 15px 0;.
}

.image-404 {
  max-width: 550px;
  display: inline-block;
}

.banner.contact-page {
  background: url("../images/contact-bg.jpg") no-repeat center/cover;
}

.banner.contact-page > .container {
  max-width: 1140px;
}

.feature-contact {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: calc(100% - 12rem);
  position: relative;
  flex: 1;
}

.feature-contact .feature-title {
  margin-bottom: 1.6rem;
}

.feature-item {
  border: 1px solid #ACADB8;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2rem;
}

.feature-contact + .feature-footer {
  margin-top: -2.4rem;
  background: url("../images/feature-bg.jpg") no-repeat center/cover;
  padding: 4.8rem 2.4rem 2.4rem;
  text-align: center;
  border-radius: 0 0 2.4rem 2.4rem;
}

.page-banner {
  padding: 15rem 0 5rem;
  position: relative;
}

.text-404 {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #111C24;
  white-space: nowrap;
  opacity: 0.6;
}

.text-404 .highlight {
  color: #ccc;
}

.btn-row {
  margin-top: 4.4rem;
}

.contact-block > [class^='col-'] {
  margin-bottom: 2rem;
}

#yahoo p,
.feature-text {
  opacity: 0.6;
}
