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

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1A191E;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  background: #fff;
}

.table {
  color: #1A191E;
}

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 {
  text-decoration: none;
  color: #0060E7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

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

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

.container {
  width: 100%;
  min-height: 100%;
  max-width: 1335px;
  padding: 0 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.title {
  font-weight: 400;
  font-size: 5rem;
  line-height: 120%;
  color: #183F43;
  margin-bottom: 2rem;
  font-family: 'DM Serif Display', serif;
}

.title-big {
  font-size: 5.8rem;
}

.text-big {
  font-size: 1.8rem;
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/

.btn {
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #F28360;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  padding: 14px 20px;
  transition: all 0.3s;
}

@media (hover: hover) {
  .btn:hover {
    background-color: #F76F44;
    color: #fff;
  }
  a:hover {
    text-decoration: none;
  }
}

.btn-wrapper {
  margin-top: 2.4rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon > img {
  max-width: 28px;
}
/* Back To Top */

.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #98CBC6;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.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 0.2s ease;
  -o-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.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: #98CBC6;
  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 #98CBC6;
  box-shadow: 0 -10px 40px -5px #98CBC6;
}

.blob {
  position: absolute;
  background: #98CBC6;
  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 .btn {
  padding: 10px 30px;
  min-width: 0;
}

.site-header {
  background: #FFFFFF;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.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: 215px;
}

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

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

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

.site-header .site-main-menu li {
  position: relative;
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
}

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

.site-header .site-main-menu li > a {
  color: #151C1B;
  font-size: 14px;
  margin: 0 2.4rem;
  padding: 1rem 0;
  font-weight: 600;
  transition: 0.2s ease;
}

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

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

.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;
  z-index: 1000;
  position: fixed;
  background-color: #fff;
  -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-two .site-main-menu li a:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
  border-color: #0060E7;
}

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

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

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

.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;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/

.fullscreen {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: #98CBC6;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fullscreen-bg {
  width: 50%;
  padding-top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.fullscreen-image {
  position: relative;
}

.fullscreen-image:before,
.fullscreen-image:after {
  content: "";
  display: block;
  width: 75%;
  padding-top: 75%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
}

.fullscreen-image:before {
  background: rgba(255, 255, 255, 0.17);
  left: 0;
  bottom: 0;
}

.fullscreen-image:after {
  top: 0;
  right: 0;
  transform: translate(10%, -10%);
}

.fullscreen__title {
  font-size: 8rem;
  text-transform: capitalize;
}

.fullscreen__title .highlight {
  color: #fff;
}

.about-section {
  background-color: #E8F2EE;
}

/*--------------------------------------------------------------
  ##  Features
  --------------------------------------------------------------*/
.features-section {
  background-color: #F8F8F8;
}

.features-block {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
  margin-top: 4rem;
}

.feature {
  background: #FFFFFF;
  box-shadow: 0px 14px 55px rgba(189, 204, 200, 0.1);
  border-radius: 1.7rem;
  padding: 2.6rem 1.6rem;
  width: calc(33% - 1rem);
  position: relative;
  text-align: center;
  color: #5E6774;
}

.feature:first-child {
  margin-top: 4rem;
}

.feature:nth-child(2) {
  margin-top: 10rem;
}

.feature:first-child:before,
.feature:nth-child(2):before {
  content: "";
  display: block;
  width: 12rem;
  height: 12rem;
  background: url("../images/main-page/arrow.svg") no-repeat center/contain;
  position: absolute;
  top: -7rem;
  right: -7rem;
}

.feature:nth-child(2):before {
  top: auto;
  right: -9rem;
  bottom: 6rem;
  transform: rotate(150deg) scale(-1, 1);
  z-index: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #F28360;
  font-family: 'DM Serif Display';
  font-style: normal;
  font-size: 3.2rem;
  color: #fff;
  position: absolute;
  left: 0;
  top: -3rem;
  box-shadow: -6px -6px 0 0 rgba(242, 131, 96, 0.2);
}

.feature-image {
  background: #F2F8F7;
  border: 1px solid #B9E7E2;
  border-radius: 14px;
  padding: 3rem;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 2.8rem;
  color: #101828;
}

.feature-text {
  margin-bottom: 2rem;
}

.hero-inner {
  background-color: #305356;
  text-align: center;
  padding: 5rem;
}

.list {
  list-style: none;
  margin: 4rem 0;
  padding: 0;
}

.list li {
  padding-left: 38px;
  margin-bottom: 1.2rem;
  background: url('../images/main-page/list-icon.svg') no-repeat top left;
  color: #1A191E;
  font-size: 1.8rem;
  font-weight: 500;
}
/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/

.card {
  padding: 2rem;
  position: relative;
  border: 0;
  overflow: hidden;
}

.card + .card {
  border-top: solid 1px #E8E8E8;
}

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

.card-btn {
  position: relative;
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 1.8rem;
  padding-right: 30px;
  color: #1A191E;
  background: none;
  border: none;
}

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

.card-body p {
  margin-bottom: 0;
  color: #5E6774;
}

.card-btn:before,
.card-btn:after {
  content: '';
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  width: 14px;
  height: 2px;
  background-color: #5BB5A2;
  transition: all 0.3s;
}

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

.card.active .card-btn:before {
  transform: rotate(45deg);
}

.card.active .card-btn:after {
  transform: rotate(135deg);
}

.inner-page {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  padding: 70px 0;
  background-color: #F8F8F8;
}

.contact-page {
  align-items: flex-start;
}

.contact-page .title-big {
  margin-bottom: 8rem;
}

.inner-page + .footer-copyright {
  background-color: #F8F8F8;
}

.uninstall-page + .footer-copyright {
  background-color: #E8F2EE;
}

.page-terms {
  background-color: #F8F8F8;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-404,
.removed-page {
  background-color: #98CBC6;
  position: relative;
  overflow: hidden;
}

.removed-page:before,
.page-404:before {
  content: "";
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.39);
  position: absolute;
  left: 50%;
  top: -30%;
}

.removed-page:before {
  top: -40%;
  left: 65%;
}

.removed-page + .footer-copyright,
.page-404 + .footer-copyright {
  background-color: #98CBC6
}
  /*======================================================
  ================contact page============================
  ========================================================*/

.contact-card {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #5E6774;
  box-shadow: 0px 5px 14px rgba(8, 15, 52, 0.04);
  border-radius: 20px;
  background-color: #fff;
}

.contact-card__title {
  margin-bottom: 5rem;
  font-size: 3.2rem;
  color: #183F43;
  font-family: 'DM Serif Display', sans-serif;
}

.contact-card__text {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.contact-card__button {
  margin-top: auto;
}

.contact-card__button .btn {
  font-size: 14px;
  color: #F28360;
  background: rgba(242, 131, 96, 0.11);
}

.contact-card__button .btn:hover {
  background: #F28360;
  color: #fff;
}

.uninstall-page {
  background: #E8F2EE;
  color: rgba(24, 63, 67, 0.8);
}

.uninstall-image {
  border: 1px solid #D6EBE9;
  box-shadow: -9px 38px 38px rgba(189, 217, 206, 0.36);
  border-radius: 16px;
}

.logo-chrome {
  width: 60px;
}

.chrome-store-logo {
  height: 58px;
}

.thanks-block {
  background: #98CBC6;
  border-radius: 24px;
  padding: 4rem 4rem 4rem 8rem;
}

.thanks-image {
  margin-bottom: -15rem;
}
/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer-content {
  padding: 4rem 0;
  border-top: 1px solid rgba(24, 63, 67, 0.11);
  border-bottom: 1px solid rgba(24, 63, 67, 0.11);
}

.footer-content p {
  font-size: 1.6rem;
}

.footer-link {
  margin-bottom: 1.5rem;
  color: #596780;
  display: block;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  transition: 0.3s;
}

.footer-link:hover {
  color: #6F7978;
}

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

.footer-copyright {
  padding: 2rem;
  text-align: center;
  color: #777E91;
}

.footer-copyright p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.footer-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #183F43;
}