html {
    font-size: 10px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.25;
    color: #FFFFFF;
    background: linear-gradient(183.96deg, #00568E -14.68%, #001828 96.76%);
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#main_content {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

th, td {
    padding: 0.5rem;
    border: 1px solid #ffffff;
}

th {
    font-weight: 700;
}

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: 1rem 1.2rem;
    outline: 0;
}

a {
    text-decoration: none;
    color: #00CE9C;
}

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

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

h1 {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 4.5rem;
}

h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

h4, .h4 {
    font-size: 2.2rem;
    font-weight: 500;
}

h5, .h5 {
    font-size: 1.8rem;
    line-height: 1.1111111;
    font-weight: 500;
}

.subtitle {
    display: block;
    font-weight: 400;
    margin-bottom: 2.4rem;
}

p {
    margin: 0 0 1rem;
}

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

.container {
    max-width: 154rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.container-sm {
    max-width: 104rem;
}

#main_content {
    padding-top: 7.7rem;
}

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

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

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

.hidden {
    display: none;
}

.relative {
    position: relative;
    z-index: 2;
}

.highlight {
    color: #00CE9C;
}

.decor-text {
    display: block;
    font-size: 14rem;
    line-height: 0.9;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.decor-line,
.decor-img-holder,
.decor,
.decor-light {
    position: relative;
}

.decor-line {
    padding-bottom: 2.7rem;
}

.decor-line::before {
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0) 100%);
}

.decor::before,
.decor-light::before {
    width: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.decor::before,
.decor-light::before {
    max-width: 86.8rem;
    height: 86.8rem;
    background: #316BFF;
    filter: blur(198.35000610351562px);
}

.decor:before {
    background: rgba(49, 107, 255, 0.36);
    filter: blur(198.35000610351562px);
    z-index: 1;
}

.decor-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ordered-list {
    counter-reset: number;
    list-style: none;
    padding: 0;
    margin: 0;
}

.card {
    padding: 3.2rem;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20.5px);
    border-radius: 2.4rem;
    border: 1px solid #EBF0FF;
}

.card::before {
    content: counter(number);
    counter-increment: number;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.9rem;
    height: 4.9rem;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    color: #133A67;
    background: #00CE9C;
    border-radius: 50%;
    overflow: hidden;
}

.card p:last-of-type {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    padding: 1rem 2.4rem;
    color: #011A2C;
    background: #00CE9C;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3.8rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: linear-gradient(90deg, rgba(0, 206, 156, 0.70) 0%, rgba(0, 255, 193, 0.70) 113.03%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.btn-decor {
    min-height: 4.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #133A67;
    padding: 0.3rem 0.4rem 0.3rem 2.4rem;
    border: 1px solid #EBF0FF;
}

.btn-decor.btn-decor-outline {
    color: #ffffff;
    background: transparent;
    border: 1px solid #71FFBD;
}

.btn-decor .icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    margin-left: 1.6rem;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.btn-decor-outline .icon {
    background: #00CE9C;
}

.btn-decor svg {
    max-width: 100%;
    height: auto;
}

.btn-decor svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}

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

.btn:active {
    box-shadow: inset 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {

    .btn:hover {
        color: #ffffff;
        background: #00CE9C;
        text-decoration: none;
    }

    .btn:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .btn.btn-decor-outline:hover {
        background: #00CE9C;
        color: #ffffff;
    }

    .btn.btn-decor-outline:hover .icon {
        background: #ffffff;
    }

    .btn.btn-decor-outline:hover svg path {
        fill: #00CE9C;
    }
}

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #00CE9C;
    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: 0 10px 20px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 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;
}

.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 {
    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: #00568e;
    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 #00568e;
    box-shadow: 0 -10px 40px -5px #00568e;
}

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

.site-header {
    position: fixed;
    top: 0;
    max-width: 150rem;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 1.6rem 0 2rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.16);
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-radius: 0 0 2rem 2rem;
}

.site-header .container {
    padding: 0 3rem;
}

.site-logo {
    max-width: 20.7rem;
}

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

.site-header .header-inner .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 44rem);
    margin-right: 2.6rem;
}

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

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

.site-header .site-main-menu li > a {
    color: #ffffff;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;

    &:focus {
        color: #00CE9C;
    }
}

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

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

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

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

.site-header .btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.pix-header-fixed {
    z-index: 1000;
    background-color: #00568E;
    -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;
}

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


.fullscreen {
    min-height: calc(100vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4.2rem 0 10.5rem;
}

.fullscreen .container {
    width: 100%;
}

.fullscreen .text-block {
    max-width: 80rem;
    font-size: 2.4rem;
    line-height: 1.16666666;
    margin: 0 auto 3.2rem;
}

.fullscreen .main-image {
    padding-right: 3rem;
    margin: 0 0 3.7rem;
}

.fullscreen .main-image img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100.6rem;
    width: 100%;
}

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

.about-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -1.6rem;
}

.about-list li {
    width: 33.33%;
    display: flex;
    padding: 0 1.6rem 3.2rem;
}

.about-list .card {
    display: flex;
    flex-direction: column;
}

.about-list .card .img-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    margin-bottom: 2.4rem;
}

.about-list .decor-light::before {
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background: #6691FF;
    filter: blur(83.19999694824219px);
}

.about-list .card::before,
.about-list .card img,
.about-list .card .text-block {
    position: relative;
}

.about-list .card::before {
    margin-bottom: 2.4rem;
}

.hiw-section {
    padding: 5rem 0;
}

.hiw-section.decor::after {
    top: 25rem;
}

.hiw-section .container {
    position: relative;
    z-index: 2;
}

.hiw-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -1.6rem;
}

.hiw-list li {
    display: flex;
    width: 33.33%;
    padding: 0 1.6rem;
    position: relative;
    margin: 0 0 3.2rem;
}

.hiw-list li::before {
    width: 7.6rem;
    height: 7.6rem;
    content: "";
    position: absolute;
    top: 50%;
    right: -3.8rem;
    transform: translateY(-50%);  
    background-image: url(../images/main-page/icon-button.png);
    background-size: cover;
    z-index: 2;
}

.hiw-list li:last-child::before {
    content: none;
}

.hiw-list .card {
    padding: 3.2rem 5.9rem;
    position: relative;
}

.hiw-list .card::before {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
}

.hiw-list .card h3,
.hiw-list .card img {
    margin-bottom: 1.6rem;
}

.hiw-list .card h3 {
    padding: 0 1.5rem;
}

.inner-page .main-block {
    font-size: 2rem;
    margin: 0 auto 5.6rem;
}

.inner-page h1 {
    font-size: 5.6rem;
    line-height: 1.2142857;
    font-weight: 600;
    margin-bottom: 2.3rem;
}

.thanks-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 8.2rem 0 20rem;
}

.thanks-section .main-block {
    max-width: 69rem;
}

.thanks-section .main-image {
    margin-bottom: 2.2rem;
}

.uninstall-section {
    padding: 14.2rem 0 18rem;
}

.uninstall-section .main-block {
    max-width: 51.2rem;
}

.uninstall-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -1rem;
}

.uninstall-list li {
    display: flex;
    width: 25%;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.uninstall-list .card-holder::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.4) 40%,rgba(255,255,255,0.4) 100%);
    z-index: -1;
    border-radius: 1.6rem;
    overflow: hidden;
}

.uninstall-list .card-holder {
    display: flex;
    width: 100%;
    position: relative;
}

.uninstall-list .card {
    width: 100%;
    padding: 2.4rem 2.4rem 0;
    background: #1D5173;
    border: 0;
    border-radius: 1.6rem;
    overflow: hidden;
}

.uninstall-list .card::before {
    width: 3.2rem;
    height: 4.8rem;
    font-size: 2rem;
    margin-bottom: 1.6rem;
    border-radius: 5rem;
}

.uninstall-list h2 {
    margin-bottom: 0;
}

.uninstall-list .card-img {
    margin: 0 -2.4rem;
}

.uninstall-list img {
    display: inline-block;
    vertical-align: bottom;
}

.contact-section {
    padding: 11.2rem 0 17.6rem;
}

.contact-section .decor-img {
    transform: translateY(-50%) rotate(90deg);
    left: -50%;
}

.contact-section .main-block {
    max-width: 100%;
}

.contact-section .main-block h1 {
    margin-top: -2.2rem;
}

.contact-section .main-block h1:only-child {
    margin-top: 0;
}

.contacts-card-holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -1.2rem;
}

.contacts-card-holder .contact-card:nth-child(2n+2)::after  {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.contact-card {
    display: flex;
    flex-direction: row;
    width: 50%;
    margin-bottom: 2.4rem;
}

.contact-card-info {
    width: 60%;
    padding: 7.2rem 5.2rem;
    border-radius: 3.2rem;
    background: #043D63;
    overflow: hidden;
    margin: 0 1.2rem;
}

.contact-card-info:only-child {
    width: 100%;
}

.contact-card::after {
    content: "";
    width: 40%;
    border-radius: 3.2rem;
    overflow: hidden;
    opacity: 0.7;
    margin: 0 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.contact-card-info h2 {
    font-size: 3.6rem;
    line-height: 1.4;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2.4rem;
}

.contact-card-info .text-block {
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 2.4rem;
}

.contact-card-info p {
    margin-bottom: 0;
}

.section-404,
.removed-section {
    overflow: hidden;
}

.section-404 .container,
.removed-section .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
}

.section-404 .text-block,
.removed-section .text-block {
    width: 40%;
    line-height: 1.6;
}

.section-404 h1,
.removed-section h1 {
    line-height: 1.4;
}

.section-404 p,
.removed-section p {
    margin: 0 0 2.4rem;
}

.section-404 .img-block,
.removed-section .img-block {
    width: 60%;
}

.section-404 .decor-bg,
.removed-section .decor-bg {
    position: absolute;
}

.section-404 img:not(.decor-bg),
.removed-section img:not(.decor-bg) {
    position: relative;
    z-index: 2;
}

.section-404 {
    padding: 15rem 0 19.5rem;
}

.section-404 .text-block {
    padding: 9.2rem 2.5rem 0 4.8rem;
}

.section-404 .decor-bg {
    right: -3.3rem;
    bottom: -42.3rem;
}

.section-404 img:not(.decor-bg) {
    margin-right: -5.4rem;
}

.removed-section {
    padding: 6.5rem 0 19.8rem;
}

.removed-section .container {
    align-items: center;
}

.removed-section .text-block {
    padding: 0 2rem 6.5rem 4rem;
}

.removed-section img:not(.decor-bg) {
    margin-right: 10.6rem;
} 

.removed-section .decor-bg {
    top: 50%;
    transform: translateY(-50%);
    right: -3rem;
}

.terms-section {
    padding: 8.1rem 0 20rem;
}

.terms-section h1 {
    margin-bottom: 5.6rem;
}

.terms-privacy {
    padding: 6.4rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 2.5rem;
    border: 1px solid #EBF0FF;
    overflow: hidden;
}

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

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

.terms-privacy.content_for_tm_embed a {
    color: #00CE9C !important;
}

.footer {
    max-width: 150rem;
    padding: 5rem 0 4.4rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 2rem 2rem 0 0;
    border-top: 1px solid #EBF0FF;
    border-right: 1px solid #EBF0FF;
    border-left: 1px solid #EBF0FF;
}

.footer-logo {
    display: block;
    max-width: 20.7rem;
    margin: 0 auto 2rem;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2.5rem;
}

.footer-menu li {
    padding: 0.5rem 1.2rem;
}

.footer-link {
    color: #ffffff;
}

.footer-link:hover {
    color: #00CE9C;
    text-decoration: none;
}

.footer-copyright {
    font-size: 1.2rem;
}

.footer-copyright p {
    margin: 0;
}

.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 {
    color: #00568E;
    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;
}
