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

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #222125;
  overflow-x: hidden;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #797687;
}

svg {
  display: block;
}

a svg {
  display: inline;
}

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: #2eb49c;
}

a {
  color: #2eb49c;
}

.btn-main:hover {
  color: white;
}

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

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

.container-wrap {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

section,
.relative {
  position: relative;
}

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

.container {
  padding: 0 30px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1460px;
  }
}

.decor-quarter-circle {
  width: 60px;
  height: 60px;
  background: #0496FF;
  border-radius: 0 0 0 100%;
  position: absolute;
}

.decor-quarter-circle.-blue {
  background: #2338F3;
}

.decor-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: solid 30px #0496FF;
  position: absolute;
}

.decor-circle.-blue {
  border: solid 30px #2338F3;
}

.decor-circle.-large {
  width: 270px;
  height: 270px;
  border-width: 50px;
}

.decor-figure {
  width: 45px;
  height: 250px;
  background: #0496FF;
  position: absolute;
}

.decor-figure:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -35px;
  width: 80px;
  height: 55px;
  border-radius: 0 70% 0 85%;
  background: #0496FF;
}

.decor-figure.-reflect:before {
  right: auto;
  left: 0;
  border-radius: 70% 0;
}

.decor-figure.-blue,
.decor-figure.-blue:before {
  background: #2338F3;
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-225 {
  transform: rotate(225deg);
}

.rotate-325 {
  transform: rotate(325deg);
}

.rotate-80 {
  transform: rotate(80deg);
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/
.btn-wrapper {
  margin-top: 36px;
}

.btn-main {
  padding: 8px 24px;
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  background: #2EB49C;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-main svg {
  margin-left: 10px;
}

.btn-main:hover:before {
  opacity: 0;
}

.btn-main + .btn-main {
  margin-left: 20px;
}

.btn-secondary {
  border-color: #2dbfa4;
  color: #2dbfa4;
  background: transparent;
}

.btn-secondary:before {
  display: none;
}

.btn-secondary:hover {
  background: #2dbfa4;
  color: #fff;
}

/* Back To Top */

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

.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: inherit;
  -webkit-transition: opacity .6s ease, -webkit-transform .5s ease;
  transition: opacity .6s ease, -webkit-transform .5s ease;
  -o-transition: transform .5s ease, opacity .6s ease;
  transition: transform .5s ease, opacity .6s ease;
  transition: transform .5s ease, opacity .6s ease, -webkit-transform .5s ease;
}

.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #2EB49C;
  -webkit-box-shadow: 0px 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px 0px transparent;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: inherit;
}

.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: 17px;
  position: absolute;
}

.return-to-top:hover:after {
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
  background: #0496FF;
  -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;
}

/*--------------------------------------------------------------
  ##  List
  --------------------------------------------------------------*/
.list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-items li {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.list-items li.active {
  color: #3764D8;
}

.list-items li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #939AAB;
}

.list-items li.active:before {
  color: #3764D8;
}

@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: #0496FF;
  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 #0496FF;
          box-shadow: 0 -10px 40px -5px #0496FF;
}

.blob {
  position: absolute;
  background: #0496FF;
  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 {
  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;
}

.site-logo {
  max-width: 148px;
  transition: max-width 0.3s;
}

.pix-header-fixed .site-logo {
  max-width: 100px;
}

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

.site-header .header-inner .site-logo a {
  display: block;
  max-width: 148px;
}

.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;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .site-main-menu li {
  margin: 0 34px;
  position: relative;
  padding: 43px 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 {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  position: relative;
  color: #1A133B;
}

.site-header .site-main-menu li > a:hover {
  color: #46b39f;
}

.site-header .toggle-menu .bar {
  background: #2EB49C;
}

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

.logo-sticky {
  display: none;
}

.pix-header-fixed {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 100;
  -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;
  background: #fff;
}

.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-main-menu li a:hover, .pix-header-fixed .site-main-menu li a.current_page {
  color: #0073EC;
}

.pix-header-fixed .site-main-menu li a:hover:before, .pix-header-fixed .site-main-menu li a:hover:after, .pix-header-fixed .site-main-menu li a.current_page:before, .pix-header-fixed .site-main-menu li a.current_page:after {
  background: #0073EC;
}

.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: 10;
  top: 0;
  left: 0;
}

.close-menu {
  display: none;
}

.close-menu:hover{
  cursor: pointer;
}

.home-color-two .return-to-top:hover:after {
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
  background: #7052fb;
  -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);
}

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

.hidden {
  display: none;
}
/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/

.col-lg-ml {
  flex: 0 0 45%;
  max-width: 45%;
}

.col-lg-mr {
  flex: 0 0 55%;
  max-width: 55%;
}

.banner {
  position: relative;
  padding-top: 100px;
}

.banner .banner-title {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #222125;
  margin-bottom: 24px;
}

.banner-title .highlight {
  color: #0776E0
}

.banner .decor-circle {
  left: -75px;
  top: 100px;
}

.banner .decor-quarter-circle {
  left: -115px;
  top: 35%;
}

.main-image {
  padding-top: 13px;
  width: 886px;
}

.main-image img {
  position: relative;
}

.main-image-lines {
  position: absolute;
  left: 0;
  top: 0;
}
.main-image-line {
  height: 100px;
  width: 55vw;
  margin-top: 17px;
  opacity: 0.1;
}

.main-image-line:first-child {
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%), #B5BBCF;
}

.main-image-line:nth-child(2){
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%), #E94A54;
}

.main-image-line:nth-child(3){
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%), #D7A04E;
}

.main-image-line:nth-child(4){
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%), #65C9CF;
}

.main-image-line:nth-child(5){
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%), #2EB49C;
}

.banner .decor-quarter-circle.rotate-180 {
  top: 10%;
  right: -115px;
  left: auto;
}

.banner .decor-figure {
  right: 0;
  top: 100px;
}

.banner-content-wrapper {
  position: relative;
  padding-top: 112px;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
  ##  Section Title
  --------------------------------------------------------------*/
.video {
  max-width: 85%;
  border: solid 1px black;
}

.section-title {
  margin-bottom: 45px;
}

h2.title {
  font-weight: bold;
  font-size: 48px;
  line-height: 140%;
  color: #0A090C;
}

h2.title.white {
  color: #fff;
}

h2.title .highlight {
  color: #0496FF;
}

.section-features {
  padding: 8rem 0;
  overflow: hidden;
}

.section-features .decor-circle {
  top: 50px;
  right: -200px;
  left: auto;
}

.section-features .decor-circle.-blue {
  top: -75px;
  left: 100px;
  right: auto;
}

.section-features .decor-quarter-circle {
  right: -100px;
  bottom: -100px;
}

.feature {
  padding: 0 32px;
}

.feature-icon {
  padding-top: 40px;
  height: 240px;
  box-shadow: 0px 30.49px 40.6534px rgba(0, 0, 0, 0.04), 0px 20.3267px 30.49px rgba(0, 0, 0, 0.04), 0px 5.08167px 10.1633px rgba(0, 0, 0, 0.04), 0px 0px 1.27042px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  text-align: center;
}

.feature-1 .feature-icon {
  background: #2EB49C;
}

.feature-1 .num-col {
  color: #2EB49C;
}

.feature-2 .feature-icon {
  background: #D7A04E;
}

.feature-2 .num-col {
  color: #D7A04E;
}

.feature-3 .feature-icon {
  background: #E94A53;
}

.feature-3 .num-col {
  color: #E94A53;
}

.feature-1 .feature-title-link {
  color: #2EB49C;
  text-decoration: underline;
  cursor: pointer;
}

.feature-1 .feature-title-link:hover {
  text-decoration: none;
  color: #2EB49C;
  cursor: pointer
}

.feature-description {
  display: flex;
}

.num-col {
  flex: none;
  width: 70px;
  font-weight: bold;
  font-size: 129px;
  line-height: 1;
}

.text-col {
  flex: 1;
  padding-left: 20px;
}

.feature-text {
  padding-right: 85px;
}

.feature-title {
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
  color: #0A090C;
  margin: 24px 0 12px;
}

.contact-page .feature {
  display: flex;
  flex-direction: column;
}

.contact-page .feature .btn-wrapper {
  margin-top: auto;
}

.terms-privacy {
  padding-bottom: 50px;
}

.section-what-is {
  padding: 66px 0;
  background: linear-gradient(254.05deg, #FFFFFF -7.12%, rgba(255, 255, 255, 0) 85.66%), linear-gradient(0deg, #F2F2F2, #F2F2F2), #C4C4C4;
}

.section-what-is .decor-circle {
  left: -75px;
  bottom: -100px;
}

.section-what-is .decor-figure {
  right: 0;
  bottom: -25%;
}

.statuses-title {
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 24px;
}

.statuses-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.statuses-list li {
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  background: top left no-repeat;
  padding: 10px 0 5px 58px;
}

.statuses-list li a {
  font-weight: 500;
  color: #222125;
  margin-bottom: 15px;
  display: block;
}

.statuses-list div {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
}

.statuses-list li.un {
  background-image: url('../img/unsatisfactory.svg');
}

.statuses-list li.vp {
  background-image: url('../img/very-poor.svg');
}

.statuses-list li.p {
  background-image: url('../img/poor.svg');
}

.statuses-list li.g {
  background-image: url('../img/good.svg');
}

.statuses-list li.ex {
  background-image: url('../img/excellent.svg');
}


.section-what-is .image-wrapper {
  position: absolute;
  bottom: -66px;
  right: 0;
}

.section-regions {
  padding: 230px 0;
}

.guarantee-banner {
  margin: 0 auto;
  padding: 48px;
  position: relative;
  background: radial-gradient(96.83% 59.26% at 2.98% 40.74%, rgba(24, 154, 131, 0.6) 0%, rgba(46, 180, 156, 0) 100%), linear-gradient(0deg, #2EB49C, #2EB49C), #3764D8;
  border-radius: 10px;
  max-width: 1176px;
}

.guarantee-banner h2.title {
  margin-bottom: 20px;
}

.narrow-container {
  max-width: 1206px;
  margin: 0 auto;
  padding: 15px 15px;
}

.search-engines-section {
  text-align: center;
  padding-bottom: 50px;
  background: linear-gradient(254.05deg, #FFFFFF -7.12%, rgba(255, 255, 255, 0) 85.66%), linear-gradient(0deg, #F2F2F2, #F2F2F2), #C4C4C4;
}

.search-engines-section .section-title {
  margin-bottom: 25px;
}

.search-engines {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 47px;
}

.search-engines img {
  margin: 0 55px;
}

.guarantee-banner .h2 {
  margin-bottom: 28px;
}
.guarantee-banner .btn-main {
  background-color: #fff;
  color: #222125;
}

.guarantee-banner .decor {
  position: absolute;
  -webkit-background-size: contain;
  background-size: contain;
}

.decor-1 {
  background-image: url("../img/warn.svg");
  width: 243px;
  height: 211px;
  left: -129px;
  top: 63px;
}

.decor-2 {
  background-image: url("../img/not-allowed.svg");
  width: 169px;
  height: 169px;
  top: -114px;
  left: 159px;
}

.decor-3 {
  background-image: url("../img/ok.svg");
  width: 143px;
  height: 143px;
  left: 296px;
  bottom: -94px;
}

.decor-4 {
  background-image: url("../img/question.svg");
  width: 244px;
  height: 226px;
  right: -108px;
  top: -158px;
}

.decor-5 {
  background-image: url("../img/thumb-up.svg");
  width: 159px;
  height: 255px;
  right: 99px;
  bottom: -102px;
}

.section-regions .decor-figure {
  bottom: 50px;
}

.section-regions .decor-circle {
  bottom: 50px;
  right: -75px;
}

.section-regions .decor-quarter-circle.-blue {
  left: -100px;
  right: auto;
  top: -100px;
}

.section-regions .decor-quarter-circle {
  left: auto;
  right: 0;
  top: 50px;
}

.rotate-160 {
  transform: rotate(160deg);
}
  /*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/

.section-faqs {
  padding: 11rem 0 11rem;
}

.section-faqs .decor-figure {
  bottom: -110px;
  right: -10px;
  z-index: -1;
  transform: rotate(145deg);
}

.faq {
  position: relative;
  max-width: 1176px;
  margin: 0 auto;
}

.faq {
  position: relative;
}

.faq .card {
  border: 0;
  padding: 0;
}

.faq .card + .card {
  margin-top: 10px;
}

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

.faq .card-body {
  color: #6B92B2;
  padding: 0 100px 0 10px;
}

.faq .card h5 {
  position: relative;
  margin: 0;
}

.faq .card .btn-link {
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  position: relative;
  transition: all 0.3s;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #0A1637;
}

.active.card .btn-link {
  color: #28AD95;
}

/*blog*/
.section-related {
  padding: 96px 0;
  background: linear-gradient(254.05deg, #FFFFFF -7.12%, rgba(255, 255, 255, 0) 85.66%), linear-gradient(0deg, #F2F2F2, #F2F2F2), #C4C4C4;
}

.blog {
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 30.49px 40.6534px rgba(0, 0, 0, 0.04), 0px 20.3267px 30.49px rgba(0, 0, 0, 0.04), 0px 5.08167px 10.1633px rgba(0, 0, 0, 0.04), 0px 0px 1.27042px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
}

.blog-image {
  height: 210px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 34px 24px;
}

.blog-date {
  margin-bottom: 12px;
}

.blog-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 140%;
}

.blog-link {
  line-height: 2rem;
  display: inline-block;
  background: #fff;
  border-radius: 6px ;
  color: #618DFF;
  padding: 0 1rem;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.blog-link:hover {
  color: #fff;
  background: transparent;
}

/*--------------------------------------------------------------
  ##  Page Banner
  --------------------------------------------------------------*/

.search-logo {
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.search-logo-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 10px;
  top: 10px;
  background: #618DFF;
}

.search-logo img {
  position: relative;
}

.search-logo:nth-child(2) {
  left:30%;
}

.search-logo:nth-child(3) {
  left: 5%;
}

.search-logo:nth-child(4) {
  left: 15%;
}

.page-banner {
  text-align: center;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}

.page-banner .page-title {
  font-size: 38px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 30px auto 15px;
}

.page-banner .bradcurmed {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.page-banner .bradcurmed li {
  display: inline-block;
  position: relative;
  font-size: 18px;
}

.page-banner .bradcurmed li:not(:last-child) {
  margin-right: 30px;
}

.page-banner .bradcurmed li:not(:last-child):before {
  content: "\35";
  font-family: eleganticons;
  position: absolute;
  right: -25px;
  top: 0;
}

.page-banner .bradcurmed li a {
  color: #2b2350;
  font-weight: 500;
}

.page-banner .bradcurmed li a:hover {
  color: #fa7070;
}

.page-banner .circle {
  position: absolute;
  top: -51%;
  left: -15%;
  z-index: 1;
}

.page-banner.blog-details-banner {
  height: 700px;
}

.page-banner.blog-details-banner .circle {
  position: absolute;
  top: -39%;
  left: -19%;
  z-index: 1;
}

.page-banner.blog-details-banner .page-title-wrapper {
  margin-top: 60px;
}

.page-banner.blog-details-banner .page-title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-banner.blog-details-banner .post-meta {
  position: relative;
  z-index: 22;
  padding: 0;
}

.page-banner.blog-details-banner .post-meta li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  text-transform: uppercase;
}

.page-banner.blog-details-banner .post-meta li:not(:last-child):after {
  position: absolute;
  content: '';
  right: -20px;
  top: 7px;
  width: 2px;
  height: 14px;
  background: #9997a3;
}

.page-banner.blog-details-banner .post-meta li a {
  color: #797687;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 5px;
}

.page-banner.blog-details-banner .post-meta li a:hover {
  color: #fa7070;
}

.page-banner.blog-details-banner .post-meta.color-theme {
  margin-bottom: 10px;
}

.page-banner.blog-details-banner .post-meta.color-theme li a {
  color: #fa7070;
}


/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer {
  background: linear-gradient(254.05deg, #FFFFFF -7.12%, rgba(255, 255, 255, 0) 85.66%), linear-gradient(0deg, #F2F2F2, #F2F2F2), #C4C4C4;
}

.footer .footer-inner {
  padding: 68px 0;
  display: flex;
  justify-content: space-between;
}

.links-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 112px;
  justify-content: space-between;
  align-content: space-between;
  width: 210px;
}

.left-footer-links {
  margin-right: 150px;
}

.footer-lp {
  max-width: 580px;
  padding-right: 20px;
}

.footer-lp p {
  margin: 24px 0 34px;
}

.footer-links {
  display: flex;
}

.footer-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 55px;
}

.footer-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #222125;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-link:hover {
  text-shadow: 0 0 0 #fff;
}

.copyright {
  padding: 0 0 34px;
  text-align: center;
  color: #797687;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.cookie-bar {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #ffd70f;
    padding: 10px;
    z-index: 100;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
}

.cookie-bar.show {
    display: flex;
}

.cookie-bar p {
    margin: 0;
    color: #03336e;
  font-size: 18px;
}

.cookie-btn {
    color: #03336e;
    padding: 5px 20px;
    border: 1px solid #03336e;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    transition: all 0.4s;
    margin-left: 15px;
    white-space: nowrap;
    cursor: pointer;
}

a.cookie-btn:hover {
    background: #03336e;
    color: #fff !important;
}

.cookie-link {
    margin-left: 15px;
    display: inline-block;
    color: #03336e;
}

.cookie-link:hover {
  color: #0496ff;
}

.uninstall-image {
  border: 2px solid #2EB49C;
  border-radius: 22px;
  margin-top: 25px;
}

.banner.inner-page {
  padding-bottom: 90px;
  padding-top: 24px;
  min-height: 100vh;
  display: flex;
  background: url("../img/inner-bg-pattern.svg") no-repeat center / contain, linear-gradient(254.05deg, #FFFFFF -7.12%, rgba(255, 255, 255, 0) 85.66%), linear-gradient(0deg, #F2F2F2, #F2F2F2), #C4C4C4;
}

.banner.contact-page {
  padding-top: 11%;
}

.not-found .banner-title {
  font-size: 200px;
  line-height: 100px;
  margin-top: 70px;
}



.not-found h2 {
  font-size: 48px;
  line-height: 140%;
  color: #797687;
  margin-bottom: 24px;
}

.banner.inner-page .decor-quarter-circle.rotate-180 {
  top: 80%;
}

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

.image-404 {
  max-width: 686px;
  display: inline-block;
  margin-top: 25px;
}

.removed-page-content{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 600px;
  height: 70vh;
}

.removed-page-body{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.removed{
  padding-top: 100px;
}

.banner .removed-title {
  font-size: 48px;
  line-height: 140%;
  margin-bottom: 24px;
}

.removed-page-logo {
  margin-bottom: 30px;
}

.removed-image {
  width: 600px;
}

.terms-privacy .decor-circle {
  left: -75px;
  top: 200px;
  position: fixed;
}

.terms-privacy .decor-figure {
  right: 0;
  top: 100px;
  position: fixed;
}