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

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #221737;
    background: #fff;
    -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;
}

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

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

.title {
    font-weight: 600;
    font-size: 4.4rem;
    line-height: 1.2;
    color: #221737;
}

.subtitle {
    font-weight: 600;
    font-size: 2rem;
    color: #221737;
}

.text {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 160%;
    color: #221737;
}

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

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

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
    padding: 1.9rem 2.4rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    color: #ffffff;
    white-space: nowrap;
    border: none;
    line-height: 1;
    background: #4BC0B4;
    border-radius: 12px;
    min-width: 18rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (hover: hover) {
    .btn:hover {
        color: #fff;
        background: #48B4AB;
    }
}

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

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #4BC0B4;
    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: 0 0 #ffffff, 0 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: 0 -50px #ffffff, 0 0 #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;
}

.hiw-subtitle{
  text-align: center;
  margin-bottom: 4rem;
}

.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: #ffffff;
    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: #4BC0B4;
    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 #4BC0B4;
    box-shadow: 0 -10px 40px -5px #4BC0B4;
}

.blob {
    position: absolute;
    background: #4BC0B4;
    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%);
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    background: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 1.3rem 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    min-height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 27px 0 rgba(125, 128, 190, 0.1);

}

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

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

.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 {
    display: block;
    font-size: 1.6rem;
    color: #221737;
    font-weight: 600;
    background: linear-gradient(#314759 0 0) 0 100% /var(--d, 0) 1px no-repeat;
    -webkit-transition: 0.2s ease;
    transition: 0.3s ease;
}

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

.header-btn {
    font-size: 1.4rem;
    padding: 1.4rem 2.8rem;
}

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

.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 {
    z-index: 1000;
    position: sticky;
    background-color: #fff;
    box-shadow: 0 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(255, 255, 255, 0.5);
    z-index: 99;
    top: 0;
    left: 0;
}

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/
.fullscreen {
    padding: 2rem 0 0;
    width: 100%;
}

.fullscreen-wrapper.fw-Chrome{
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 6%;
    overflow: hidden;
    border-radius: 24px;
    background: url("../images/main-page/main-bg.png") no-repeat center / cover, #F7F8FC;
}

.fullscreen-wrapper.fw-Chrome{
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6%;
  overflow: hidden;
  border-radius: 24px;
  background: url("../images/main-page/main-bg.png") no-repeat center / cover, #F7F8FC;
}


.fullscreen-wrapper.fw-Firefox {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6%;
  overflow: hidden;
  border-radius: 24px;
  background: url("../images/main-page/main-bg-ff.png") no-repeat center / cover, #F7F8FC;
}


.fullscreen .title {
    font-size: 6rem;
    margin-bottom: 2.4rem;
    max-width: 560px;
    text-transform: capitalize;
}

.fullscreen .title span.first-gr {
    background: linear-gradient(to right, #9078ff 0%, #a9a4ea 18.47%, #a084c6 38.94%, #a2fff5 72.64%, #3bc3ff 86.56%, #72e0ff 100%);
    background: -webkit-linear-gradient(to right, #9078ff 0%, #a9a4ea 18.47%, #a084c6 38.94%, #a2fff5 72.64%, #3bc3ff 86.56%, #72e0ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fullscreen .title span.second-gr {
    background: linear-gradient(to right, #9078ff 0%, #a9a4ea 50%, #a084c6 100%);
    background: -webkit-linear-gradient(to right, #9078ff 0%, #a9a4ea 50%, #a084c6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fullscreen .text {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
    max-width: 560px;
}

.fullscreen-btn {
    padding: 1.2rem 2.4rem;
}

/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/

.about-section {
    padding: 10rem 0 0;
    margin: -8rem 0 0;
}

.about__wrapper {
    padding: 6% 3% 2% 6%;
    display: flex;
    gap: 6%;
    background: url("../images/main-page/about-bg.png") no-repeat center / cover, #5F68A3;
    border-radius: 24px;
}

.about__title {
    margin-bottom: 1rem;
    color: #fff;
}

.about__text {
    margin-bottom: 3.2rem;
    color: #fff;
    line-height: 1.8;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    list-style: none;
}

.about__item {
    font-weight: 500;
    color: #fff;
    padding-left: 42px;
    position: relative;
    line-height: 30px;
}

.about__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: url("../images/main-page/about-item.svg") no-repeat center / contain;
}

.about__img {
    flex: 0 1 60%;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about__col {
    flex: 0 1 40%;
}

/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/

.hiw-section {
    padding: 10rem 0 10rem;
    margin: -7rem 0 0;
}

.hiw-title {
    margin: 0 auto 4rem;
    text-align: center;
}

.hiw-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20rem;
}

.hiw-item {
    flex: 0 1 50%;
}

.hiw-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

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

.hiw-big {
    max-width: 1110px;
    margin: 0 auto;
    box-shadow: 0 23px 79px 0 #e6e6f3;
    position: relative;
}

.hiw-big img {
    z-index: 1;
    position: relative;
}

.hiw-big:before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 120%;
    z-index: 0;
}

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

.engines-inner {
    max-width: 1310px;
    padding: 4rem 11% 10rem;
    margin: 0 auto;
    border-radius: 32px;
    background: #F7F8FC;
}

.engines-title {
    text-align: center;
    margin-bottom: 2rem;
}

.engines-text {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5.6rem;
}

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

.engines-wrapper img {
    flex: 0 1 33.333%;
    height: 60px;
}

/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/
.faq-section {
    padding: 12rem 0 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 8rem;
}

.faq-wrapper {
    max-width: 1310px;
    margin: 0 auto;
    display: flex;
    gap: 5%;
    align-items: flex-start;
}

.faq-img {
    flex: 0 1 50%;
    margin-top: 6rem;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-accordions {
    flex: 0 1 45%;
}

.card {
    position: relative;
    background: #fff;
    overflow: hidden;
    border: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.card.active {
    background: #ffffff;
}

.card:not(:last-child) {
    border-bottom: 1px solid #E8E8E8;
}

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

.card-btn {
    position: relative;
    padding: 3.2rem 4.4rem 1.6rem 0;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1A191E;
    background: none;
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.card-btn .collapsed {
        padding-bottom: 3.2rem;

}

.card-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 3.2rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url('../images/main-page/faq-icon.svg') center / auto 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: rotate(45deg);
    transform: rotate(45deg);
}

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

.card-body {
    padding: 0 0 3.2rem;
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(26, 25, 30, 0.5);
}

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

/*======================================================
================inner pages============================
========================================================*/

.inner-page {
    padding: 2rem 0;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.inner-wrapper {
    width: 100%;
    border-radius: 24px;
    flex: 1 1 auto;
    padding: 3rem 20px 6rem;
}

.contact-wrapper {
    padding: 4rem 2rem 6rem;
    background: url("../images/inner-bg-1.png") no-repeat center / cover;
}

.contact-title {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-list {
    display: flex;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-card {
    flex: 0 0 calc(50% - 10px);
    padding: 4rem 2.4rem 2.4rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 2rem;
    box-shadow: 0 5px 14px 0 rgba(8, 15, 52, 0.04);
    background: #fff;
}

.contact-img {
    margin-bottom: 3.2rem;
}

.contact-card__text {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    flex: 1 1 auto;
    color: #667283;
}

.contact-card__subtitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card__button {
    margin-top: auto;
    background: #eef9f8;
    border-radius: 1.2rem;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none;
    color: #221737;
    padding: 1.6rem 2.4rem;
}

.contact-card__button:hover {
    color: #221737;
    background: #E6F1F0;
}

.uninstall-section .title {
    margin-bottom: 2.4rem;
    text-align: center;
}

.uninstall-section .text {
    max-width: 740px;
    margin: 0 auto 3.6rem;
    line-height: 1.8;
    text-align: center;
}

.uninstall-wrapper {
    background: url("../images/inner-bg-1.png") no-repeat center / cover;
}

.uninstall-image {
    border: 1px solid #D6EBE9;
    box-shadow: -9px 38px 38px 0 rgba(106, 108, 150, 0.09);
    border-radius: 16px;
}

.error-wrapper,
.removed-wrapper {
    background: url("../images/inner-bg-2.png") no-repeat center / cover;
    padding: 2rem 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-img,
.removed-img {
    margin-bottom: 3rem;
}

.error-title,
.removed-title {
    margin-bottom: 3rem;
    text-align: center;
}

.error-text {
    text-align: center;
    max-width: 670px;
    margin: 0 auto;
    font-size: 1.8rem;
}

.removed-text {
    color: #667283;
    margin-bottom: 1rem;
    text-align: center;
}

.removed-btn {
    padding: 1.9rem 3.2rem;
}

.thanks-section {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.thanks-wrapper {
    flex: 1 1 auto;
    max-height: 900px;
}

/*=================page terms===============================*/

.terms-section {
    padding: 6rem 0 10rem;
}

.terms-title {
    text-align: center;
    margin-bottom: 36px;
}

.terms-container {
    max-width: 800px;
}

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

th {
    font-weight: 700;
}

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

.footer {
    background: #fff;
}

.footer-content {
    padding: 4rem 0;
    border-top: 1px solid #183F4310;
    border-bottom: 1px solid #183F4310;
}

.footer__title {
    color: #221737;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 2rem;
}

.footer-link {
    margin-bottom: 1.6rem;
    color: #667283;
    display: block;
}

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

.footer-logo {
    display: block;
    max-width: 24rem;
    margin: 55px 0px;
    
}

.footer-copyright {
    padding: 20px 0 40px;
}

.footer-copyright p {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
    color: #777E90;
}

.modal-text {
    text-align: left;
}