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

body {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.7rem;
    color: #000;
    background: #F8F6FC;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.table {
    color: #777e8f;
}

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

@media (hover: hover) {
    a:hover {
        text-decoration: underline;
    }
}

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

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

.container {
    width: 100%;
    max-width: 1480px;
    padding: 0 20px;
}

.title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 5.6rem;
    color: #000;
}

.title-big {
    font-weight: 800;
    font-size: 6rem;
    line-height: 7.6rem;
}

.title-small {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 3.6rem;
}

.text {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.7rem;
    color: #000;
}

.mb-6 {
    margin-bottom: 5rem;
}

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

.btn {
    padding: 1.6rem 3.2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    color: #423A5D;
    white-space: nowrap;
    border: 1px solid #423A5D;
    line-height: 2.7rem;
    background: transparent;
    border-radius: 2.4rem;
    min-width: 10rem;
    min-height: 4rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #FCAEFA;
}

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

.btn:active {
    background-color: #FB89F8;
}

@media (hover: hover) {
    .btn:hover {
        color: #423A5D;
    }
}

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

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #FCAEFA;
    line-height: 4.2rem;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    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 #ffffff, 0px 50px #ffffff;
    -webkit-transition: text-shadow 0.2s ease;
    transition: text-shadow 0.2s ease;
    z-index: 1;
}

.return-to-top > i:before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    border: solid 2px #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 1.8rem;
    left: 1.6rem;
    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 #ffffff, 0px 0px #ffffff;
}

.return-to-top.back-top {
    bottom: 2rem;
    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: #FCAEFA;
    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 #FCAEFA;
    box-shadow: 0 -10px 40px -5px #FCAEFA;
}

.blob {
    position: absolute;
    background: #FCAEFA;
    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: transparent;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 2.6rem 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.header-container {
    max-width: 1240px;
}

.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;
    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;
    -webkit-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;
    padding: 0;
}

.site-header .site-main-menu li > a {
    margin: 0 2.3rem;
    display: inline-block;
    padding: 0;
    color: #000;
    font-weight: 400;
    font-size: 1.8rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) 0 100% /var(--d, 0) 1px no-repeat;
    background: linear-gradient(#000 0 0) 0 100% /var(--d, 0) 1px no-repeat;
    -webkit-transition: 0.2s ease;
    transition: 0.3s ease;
}

.site-header .site-main-menu li > a.active {
    --d: 100%;
    color: #000;
    text-decoration: none;
}

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        --d: 100%;
        color: #000;
        text-decoration: none;
    }
}

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

.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 {
    padding: 1.2rem 0;
    z-index: 1000;
    position: sticky;
    background-color: #F8F6FC;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.2);
    -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 .site-main-menu li.menu-item-has-children:after {
    color: #333333;
}

.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 {
    position: relative;
    padding: 4.6rem 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.fullscreen .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fullscreen-info {
    display: flex;
    flex-direction: column;
    flex-basis: 618px;
    padding-left: 16px;
}

.fullscreen-text {
    max-width: 378px;
}

.fullscreen .title {
    position: relative;
    font-size: 6rem;
    font-weight: 800;
    line-height: 7.6rem;
    margin-bottom: 3.2rem;
}

.fullscreen .title::before {
    content: '';
    position: absolute;
    left: -40px;
    top: -22px;
    width: 646px;
    height: 172px;
    background-image: url("../images/main-page/text-main-bg.png");
    background-repeat: no-repeat;
    z-index: -1;
}

.fullscreen .text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.7rem;
    margin-bottom: 2.4rem;
}

.main-image {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
}

/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.about-section {
    padding: 10rem 0 11rem;
    background-color: #F0ECF9;
}

.about-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 70px;
    max-width: 1294px;
    margin-bottom: 8rem;
}

.about-section-header .title {
    position: relative;
    width: 342px;
    z-index: 1;
}

.about-section-header .title::before {
    content: '';
    position: absolute;
    left: -45px;
    top: -4px;
    width: 435px;
    height: 128px;
    background-image: url("../images/main-page/text-about-bg.png");
    background-repeat: no-repeat;
    z-index: -1;
}

.about-section-header span {
    display: block;
    text-align: right;
}

.about-section-header .text {
    flex-basis: 463px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 3rem;
}

.about-section-content {
    display: flex;
    gap: 24px;
}

.about-section-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 342px;
    height: 324px;
    border-radius: 24px;
    padding: 32px;
    background-color: #E4D5F9;
    overflow: hidden;
}

.about-section-card .card-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.6rem;
    z-index: 1;
}

.about-section-card .card-text {
    z-index: 1;
}

.about-section-card:first-child::before {
    content: '';
    position: absolute;
    left: -115px;
    top: -125px;
    width: 295px;
    height: 295px;
    background-image: url("../images/main-page/circle.svg");
    background-size: contain;
}

.about-section-card:nth-child(2) {
    background-color: #fff;
    transform: rotate(4deg);
    margin-top: 24px;
}

.about-section-card:nth-child(3) {
    transform: rotate(-3deg);
}

.about-section-card:last-child {
    background-color: #C3EBFC;
    margin-top: 24px;
}

.about-section-card:last-child::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: -42px;
    width: 247px;
    height: 225px;
    background-image: url("../images/main-page/decor.svg");
    background-size: contain;
}


    /*--------------------------------------------------------------
        ##  how it works
        --------------------------------------------------------------*/
.hiw-section {
    padding: 12.9rem 0 10rem;
}

.hiw-bg .container > .title {
    position: relative;
    margin-bottom: 6.9rem;
}

.hiw-bg .container > .title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 487px;
    height: 108px;
    background-image: url("../images/main-page/hiw-text-bg-1.png");
    background-repeat: no-repeat;
    z-index: -1;
}

.hiw-card {
    position: relative;
    width: 100%;
    max-width: 1368px;
    margin: 0 auto;
    padding: 52px 104px 52px 53px;
    border-radius: 40px;
    background-color: #E4D5F9;
}

.hiw-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.hiw-num {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    bottom: 0;
    right: 0;
    font-weight: 700;
    font-size: 4rem;
    line-height: 5.6rem;
    border-radius: 30px 0;
    background-color: #D7C1F6;
}

.hiw-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-basis: 353px;
}

.hiw-info .title {
    position: relative;
    z-index: 1;
}

.hiw-info .title::before {
    content: '';
    position: absolute;
    left: -53px;
    top: -8px;
    width: 435px;
    height: 128px;
    background-image: url("../images/main-page/hiw-text-bg-2.png");
    background-repeat: no-repeat;
    z-index: -1;
}

.hiw-card:not(:last-child) {
    margin-bottom: 16px;
}

.hiw-card:nth-child(even) {
    background-color: #C3EBFC;
}

.hiw-card:nth-child(even) .hiw-num {
    background-color: #9EDFFA;
}

/*--------------------------------------------------------------
    ##  engines
    --------------------------------------------------------------*/
.engines-section {
    padding: 5.4rem 0 8.7rem;
}

.engines-section .text {
    margin-bottom: 5.6rem;
    line-height: 1.8;
}

.engines-section__block {
    background: #ffffff;
    border-radius: 3.2rem;
    padding: 4.4rem 5.6rem 10rem;
}

.engines-section__content {
    max-width: 944px;
    margin: 0 auto;
}

.engines-section__image img {
    max-height: 6rem;
    height: 100%;
    width: auto;
    object-fit: contain;
}

/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/
.faq-section {
    padding-top: 55px;
    margin-top: -55px;
}

.faq-bg {
    padding: 10rem 0 13rem;
    background: url('../images/main-page/faq-section-bg.svg') center top / cover no-repeat;
}

.faq-section .container {
    max-width: 1000px;
}

.card {
    position: relative;
    background: #fafbff;
    border-radius: 0.9rem;
    overflow: hidden;
    border: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.card.active {
    background: #ffffff;
}

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

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

.card-btn {
    position: relative;
    padding: 2.7rem 8.8rem;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: #334254;
    background: none;
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.card-btn::before,
.card-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.card-btn::before {
    left: 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
    background: url('../images/main-page/faq-icon.svg') center / contain no-repeat;
}

.card-btn::after {
    right: 2.8rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url('../images/main-page/arrow-icon.svg') center / contain no-repeat;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.card.active .card-btn:after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
}

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

.card-body {
    padding: 0 8.8rem 2.4rem;
    font-size: 1.6rem;
    line-height: 160%;
    color: #334254;
}

.card-body p {
    margin-bottom: 0;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: calc(100vh - 70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5rem 0;
}

.contact-section {
    padding: 10rem 0 20rem;
}

.contact-card {
    position: relative;
    margin: 0 auto;
    padding: 3.2rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 1.6rem;
    background-color: #E4D5F9;
    overflow: hidden;
}

.contact-card .btn {
    z-index: 1;
}

.contact-section__wrap .row .col-md-6:nth-child(even) .contact-card {
    background-color: #C3EBFC;
}

.contact-section__wrap .row .col-md-6:nth-child(odd) .contact-card:before {
    content: '';
    position: absolute;
    left: -306px;
    top: -131px;
    width: 428px;
    height: 428px;
    background-image: url("../images/main-page/circle.svg");
    background-size: contain;
}

.contact-section__wrap .row .col-md-6:nth-child(odd) .contact-card:after {
    content: '';
    position: absolute;
    bottom: -154px;
    right: -78px;
    width: 365px;
    height: 365px;
    background-image: url("../images/main-page/circle.svg");
    background-size: contain;
}

.contact-section__wrap .row .col-md-6:nth-child(even) .contact-card:after {
    content: '';
    position: absolute;
    right: 25px;
    bottom: -52px;
    width: 247px;
    height: 225px;
    background-image: url("../images/main-page/decor.svg");
    background-size: contain;
}

.contact-card__text {
    margin-bottom: 16.4rem;
    font-size: 18px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    z-index: 1;
}

.contact-card__subtitle {
    font-size: 4rem;
    line-height: 5.6rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    z-index: 1;
}

.contact-card__button {
    margin-top: auto;
    background: rgba(142, 233, 227, 0.17);
    border-radius: 1.2rem;
    padding: 1rem 2.4rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    color: #11aaa0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-card__button:hover {
    background: rgba(142, 233, 227, 0.5);
    color: #11aaa0;
}

.uninstall-section {
    padding: 8rem 0;
}

.uninstall-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.uninstall-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 708px;
    padding: 70px 56px;
    background-color: #E4D5F9;
    border-radius: 24px;
}

.uninstall-content-header {
    margin-bottom: 80px;
}

.uninstall-content-title {
    position: relative;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.6rem;
    margin-bottom: 16px;
    z-index: 1;
}

.uninstall-content-title::before {
    content: '';
    position: absolute;
    left: -26px;
    top: -4px;
    width: 100%;
    height: 50px;
    background-image: url("../images/uninstall/uninstall-text-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.uninstall-content-steps {
    padding-left: 21px;
}

.uninstall-content-step:not(:last-child) {
    margin-bottom: 12px;
}

.removed-section {
    padding: 10rem 0 18rem;
}

.removed-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.removed-info {
    margin-left: 60px;
}

.removed-info .title {
    position: relative;
    margin-bottom: 48px;
}

.removed-info .title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 100%;
    height: 146px;
    background-image: url("../images/removed/removed-text-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.section-404.inner-page{
    min-height: calc(100% - 100px);
}

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

.section-404 .title {
    margin-bottom: 16px;
}

.section-404 .text {
    max-width: 746px;
    margin: 0 auto 16px;
}

.section-404 .btn {
    margin-bottom: 26px;
    width: 268px;
}

.thanks-page .inner-page {
    padding: 8rem 0;
    min-height: calc(100vh - 200px);
}

.thanks-content {
    margin: 0 auto 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.thanks-content .title {
    max-width: 578px;
}

.thanks-content .text {
    max-width: 746px;
}

.thanks-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 32px;
    background-color: #E4D5F9;
    border-radius: 24px;
}

.thanks-info-wrapper .col-md-4 {
    display: flex;
}

.thanks-info-wrapper .col-md-4:nth-child(even) .thanks-info {
    background-color: #C3EBFC;
}

.thanks-info-wrapper .row {
    flex-wrap: nowrap;
}

.thanks-info-wrapper .col-md-4:nth-child(odd) .thanks-info .title::before {
    content: '';
    position: absolute;
    left: 0px;
    top: -15px;
    width: 100%;
    height: 75px;
    background-image: url("../images/thanks-page/thanks-text-bg-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.thanks-info-wrapper .col-md-4:nth-child(even) .thanks-info .title::before {
    content: '';
    position: absolute;
    left: 0px;
    top: -5px;
    width: 100%;
    height: 54px;
    background-image: url("../images/thanks-page/thanks-text-bg-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.thanks-info .title {
    position: relative;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 3.6rem;
    text-align: center;
    margin-bottom: 32px;
    z-index: 1;
}

.thanks-info .text {
 text-align: center;
}


    /*=================page terms===============================*/
.terms-section {
    padding: 8rem 0;
}

.terms-section .title {
    font-size: 4rem;
    line-height: 5.6rem;
}

.terms-privacy .container {
    max-width: 1060px;
}

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 160%;
    color: #000000;
}

th {
    font-weight: 700;
}

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

.footer {
    background: #F0ECF9;
}

.footer-content {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #E4D5F9;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-link {
    padding: 8px 24px;
    border-radius: 24px;
    border: 1px solid #423A5D;
    color: #423A5D;
}

.footer-link:hover {
    background-color: #FCAEFA;
    text-decoration: none;
    color: #423A5D;
}

.footer-copyright {
    padding: 4rem 0 3.2rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 0;
}
