/* Front */

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.80);
    background: #1E3851;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

#main_content {
    padding-top: 12rem;
}

.table {
    color: rgba(255, 255, 255, 0.80);
}

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

@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: 7.2rem 0;
}

.container {
    margin: 0 auto;
    width: 1408px;
    max-width: 100%;
    padding: 0 16px;
}

.title {
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.3;
    background-image: linear-gradient(270deg, #57D9FF 0%, #049EE0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-wrap: balance;
    margin: 0;
}

.title-big {
    font-size: 5.6rem;
    font-weight: 600;
}

.subtitle {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 2.4rem;
    color: #BEEEFD;
}

.mb-1 {
    margin-bottom: 24px;
}

.mb-2 {
    margin-bottom: 32px;
}

.mb-3 {
    margin-bottom: 48px;
}
.text {
    font-weight: 300;
    font-size: 1.6rem;
}

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

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

.text-right {
    text-align: right;
}

.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}


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

.btn {
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 1.5;
    white-space: nowrap;
    padding: 8px 24px;
    border: 0;
    background: linear-gradient(90deg, #4BCCF4 0%, #1895C6 100%);
    border-radius: 60px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    cursor: pointer;
}

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

.btn:active {
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .btn:hover {
        background: linear-gradient(300deg, #4BCCF4 -61.25%, #117096 54.4%);
        color: #ffffff;
        text-decoration: none;
    }
}

/* Back To Top */

.return-to-top {
    border-radius: 60px;
    border: 1px solid #2C5277;
    cursor: pointer;
    padding: 10px;
}

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

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

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

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

/*--------------------------------------------------------------
  ##  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: #1895C6;
    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 #1895C6;
    box-shadow: 0 -10px 40px -5px #1895C6;
}

.blob {
    position: absolute;
    background: #1895C6;
    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
  --------------------------------------------------------------*/

.header-container {
    padding: 0 20px;
    max-width: 1256px;
    margin: 0 auto;
}

.site-header.container {
    width: 100%;
    max-width: unset;
}

.site-header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2.6rem 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

.site-header .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .header-inner .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
    display: flex;
    align-items: 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-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 > a {
    margin: 0 2.4rem;
    display: inline-block;
    padding: 0;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;

    &:focus {
        color: #57D9FF;
    }
}

.site-header .site-main-menu li > a.active {
    color: #57D9FF;
}

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

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        color: #57D9FF;
        text-decoration: none;
    }
}

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

.site-header .header-inner .site-nav {
    justify-content: space-between;
}

.pix-header-fixed {
    padding: 1.2rem 0;
    z-index: 1000;
    background-color: #f2f3f5;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.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: 0 16px;
    min-height: calc(100vh - 6rem);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

.fullscreen-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.fullscreen-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.fullscreen-content .title strong {
    position: relative;
    color: #57D9FF;
}

.fullscreen-content .title strong:after {
    content: "";
    width: 100%;
    height: 10px;
    background: url("../images/main-page/highlight-text.svg") center/contain no-repeat;
    position: absolute;
    top: 100%;
    left: 0;
}

.main-image {
    display: block;
    margin: 0 auto;
    height: auto;
}

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

.blocks-section {
    border-radius: 24px;
    background: linear-gradient(180deg, #1E3851 0%, #244361 100%);
}

.block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 16px;
}

.block {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #1E3851;
    padding: 48px;

    svg {
        margin-bottom: 16px;
    }
}

.swiper-css-mode.swiper-centered >.swiper-wrapper>.swiper-slide {
    height: auto;
}

.slide-content {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(52, 80, 106, 0.00);
    padding: 50px 80px 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    height: 100%;
    background-size: cover;
}

.slide-content-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 40%;
}

.slide-title {
    color: #FFF;
    font-size: 3.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 150%;
    letter-spacing: -0.68px;
}

.slide-title .highlight {
    background: linear-gradient(90deg, #7D6FFD 0%, #7C9CCE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-text {
    color: rgba(255, 255, 255, 0.80);
}

.slide-1 .slide-content {
    background: url("../images/main-page/slide-1-bg.svg") center/cover no-repeat;
    padding-right: 0;
}

.slide-2 .slide-content {
    background: url("../images/main-page/slide-2-bg.svg") center/cover no-repeat;
}

.slide-3 .slide-content {
    background-image: url('../images/main-page/slide-3-bg@1x.png');
    background-image: image-set(
            url('../images/main-page/slide-3-bg@1x.png') 1x,
            url('../images/main-page/slide-3-bg@2x.png') 2x
    );
}

.slider-nav {
    position: relative;
    margin-bottom: 48px;
}

.slider-controls {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
}

.slider-button {
    width: 40px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid #2C5277;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.slider-button:hover {
    border-color: white;
}

.card {
    position: relative;
    border-radius: 2.4rem;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

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

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

.card-btn {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    position: relative;
    padding: 2.4rem;
    padding-right: 4.8rem;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-family: 'Rubik', sans-serif;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 600;
    color: #BEEEFD;
    background: none;
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.card-btn:before,
.card-btn:after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #BEEEFD;
    position: absolute;
    top: 50%;
    right: 2.4rem;
    transform: translateY(-50%);
}

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

.card.active .card-btn {
    padding-bottom: 1.6rem;
}

.card.active .card-btn:after {
    display: none;
}

.card-btn span {
    flex: 1 1 auto;
}

.card-btn svg {
    flex-shrink: 0;
}

svg {
    transition: 0.3s;
}

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

.card-body {
    padding: 0 2.4rem 2.4rem;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    line-height: 150%;
}

.card-body p {
    margin: 0;
}

.collapse {
    max-height: 500px;
    transition: max-height 0.4s;
}

.collapse:not(.show) {
    max-height: 0;
}


/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    display: flex;
    align-items: center;
}

.contact-card {
    padding: 64px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    background-color: #1E3851;
    position: relative;
    flex: 1;
    overflow: hidden;

    .subtitle {
        margin-bottom: 0;
    }
}

.contact-card-decor {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 100%;
    background-color: rgba(66, 179, 211, 0.40);
    filter: blur(137px);
}

.contact-card:first-child .contact-card-decor {
    bottom: 100%;
    left: 0;
}

.contact-card:last-child .contact-card-decor {
    top: 100%;
    left: 0;
}

.contact-card-text {
    font-weight: 500;
    margin: 0;
}

.contact-card-bg {
    position: absolute;
    left: 0;
    top: 0;
}

.uninstall-section .title {
    margin-bottom: 3rem;
}

.uninstall-section .text {
    max-width: 74rem;
    margin: 0 auto;
    margin-bottom: 6rem;
    font-size: 1.6rem;
    line-height: 1.9;
    color: #687e97;
}

.uninstall-image {
    position: absolute;
    right: 80%;
    top: 50%;
    transform: translateY(-50%);
}

.uninstall-content {
    position: relative;
    max-width: 66rem;
    padding: 4.8rem;
    margin: 5rem auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(180deg, #1E3851 0%, #244361 100%), #1E3851;
}

.uninstall-list {
    padding-left: 20%;
}

.uninstall-list li {
    margin-bottom: 2rem;
}

.uninstall-list strong {
    color: #BEEEFD;
    font-weight: 600;
}

.uninstall-list li::marker {
    color: #BEEEFD;
}

.uninstall-page #main_content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.uninstall-page .footer {
    margin-top: auto;
}

.d-inline {
    display: inline;
}

.removed-section {
    padding: 0 0 7.6rem;
}

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

.section-404 .text {
    font-size: 2rem;
    line-height: 1.5;
    color: #fff;
}

.thanks-image {
    margin-top: -6rem;
}

.removed-image {
    transform: translateX(20%);
}
    /*=================page terms===============================*/
.terms-privacy,
.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    color: #fff;
}

th {
    font-weight: 700;
}

.terms-privacy .container {
    max-width: 99rem;
}

.container-highlight {
    background: linear-gradient(180deg, #1E3851 0%, #244361 100%);
    border-radius: 24px;
    padding: clamp(16px, 5vw, 72px);
}

@media screen and (min-width: 992px) {
    .container-md {
        max-width: 90rem;
    }
}

@media screen and (min-width: 576px) {
    .container-sm {
        max-width: 50rem;
    }
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/
.footer {
    margin-bottom: 26px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 32px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-link {
    color: #fff;
    display: block;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1.4rem;
}

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

.footer-logo {
    display: block;
    max-width: 26rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #9da7bc;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
}


/*--------------------------------------------------------------
  ##  MODAL WINDOW
  --------------------------------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 80%;
    max-width: 60rem;
    background-color: transparent;
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 0.5rem;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;

    &:hover {
        opacity: 1;
    }
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}
