html {
    font-size: 10px;
}

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

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 300;
    color: #002242;
    background: #ffffff;
    -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: #002242;
}

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

th {
    font-weight: 700;
}

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

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: 'Bitter', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
}

h1, .h1 {
    font-size: 8rem;
    line-height: 1.1875;
    margin-bottom: 2.7rem;
}

h2, .h2 {
    font-size: 5rem;
    margin-bottom: 5.4rem;
}

h3, .h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    display: block;
    font-family: 'Bitter', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #323EC7;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p {
    margin: 0 0 1rem;
}

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

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

.container-md {
    max-width: 129rem;
}

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

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

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

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

.hidden {
    display: none;
}

.decor-text {
    background: linear-gradient(270deg, #3340CE 0%, #1A2068 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.decor-holder::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 83%;
    top: 0;
    height: 100%;
    background: #ffffff;
    filter: blur(26.2rem);
    border-radius: 50%;
    z-index: 1;
}

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

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

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

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

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

.card-img {
    max-height: 37.8rem;
    height: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.card-body {
    flex: 1 0 auto;
}

.instruction-list li::before,
.card-body::before {
    content: counter(number) " \\";
    counter-increment: number;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    background: url(../images/main-page/icon-circle.svg);
    background-size: cover;
    border-radius: 50%;
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bitter', serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    padding: 0.9rem 2.4rem;
    color: #ffffff;
    background: linear-gradient(270deg, #3340CE 0%, #1A2068 100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3.8rem;
    border: 1px solid #ffffff;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #727EFF 0%, #3D4BE6 100%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.btn .icon {
    padding: 0.5rem;
}

.btn.btn-main .icon {
    width: 3.8rem;
    height: 3.8rem;
}

.btn-decor {
    justify-content: space-between;
    padding-right: 1rem;
}

.btn-decor.btn-decor-outline {
    min-height: 4.2rem;
    padding: 0.3rem 0.4rem 0.3rem 2.4rem;
    color: #002242;
    background: transparent;
    border: 1px solid #3340CE;
}

.btn-decor.btn-decor-outline::before {
    content: none;
}

.btn-decor .icon {
    width: 3.2rem;
    height: 3.2rem;
    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 {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(270deg, #3340CE 0%, #1A2068 100%);
}

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

.btn-lg {
    min-width: 28.3rem;
}

@media (hover: hover) {

    .btn:hover {
        text-decoration: none;
    }

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

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

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: linear-gradient(270deg, #3340CE 0%, #1A2068 100%), linear-gradient(0deg, #AFB6FF 0%, #AFB6FF 100%), rgba(0, 208, 182, 0.20);;
    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: #002242;
    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 #002242;
    box-shadow: 0 -10px 40px -5px #002242;
}

.blob {
    position: absolute;
    background: #002242;
    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;
    font-family: 'Bitter', serif;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1.4rem 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(177deg, rgba(255, 255, 255, 0.00) -53.67%, #FFF 97.47%);
    border-radius: 0 0 2rem 2rem;
    border: 1px solid transparent;
}

.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: 2rem;
}

.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;
    margin: 0 -15px;
}

.site-header .site-main-menu li {
    padding: 5px 15px 10px;
    -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: #002242;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;

    &:focus {
        color: #323EC7;
    }
}

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

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

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

.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: #ffffff;
    border-right: 1px solid #002242;
    border-bottom: 1px solid #002242;
    border-left: 1px solid #002242;
    -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;
}

.intro-section {
    padding: 14rem 0 8rem;
    background: linear-gradient(180deg, #B5CAFF -31.8%, #FFF 95.55%);
}

.intro-section .text-block,
.intro-section .main-img {
    margin: 0 auto 3.2rem;
}

.intro-section .text-block {
    max-width: 46.4rem;
}

.intro-section .main-img {
    max-width: 33.4rem;
}

.intro-section h1 {
    line-height: 1.15;
}

.about-section {
    padding: 12.2rem 0 5rem;
}

.about-section .decor-img-holder {
    padding: 7.6rem 0 0;
}

.about-section .decor-img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-list {
    /* max-width: 123rem; */
    max-width: 82%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.about-list li {
    display: flex;
    margin-bottom: 8rem;
}

.about-list li:nth-child(2n + 2) {
    flex-direction: row-reverse;
}

.about-list li:nth-child(2n + 2) .text-block {
    padding: 2.1rem 2rem 0 0;
}

.about-list li:last-child {
    padding: 2rem 0 0 13.3rem;
}

.about-list li:last-child .text-block {
    padding: 3.2rem 0 0 2rem;
}

.about-list .text-block {
    max-width: 40rem;
    width: 100%;
    padding: 2.1rem 0 0 2rem;
}

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

.hiw-section h2 {
    margin-bottom: 6.5rem;
}

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

.hiw-list li {
    width: 33.33%;
    padding: 0 5.5rem;
    margin-bottom: 5.5rem;
}

.hiw-list .card {
    padding-left: 2rem;
}

.hiw-list .card-img {
    margin-bottom: 3.2rem;
}

.hiw-list .card-body {
    position: relative;
}

.hiw-list .card-body::before {
    position: absolute;
    top: -16.2rem;
    left: -1.7rem;
}

.hiw-list .card-body::after,
.instruction-list li::after {
    content: "";
    width: 1px;
    position: absolute;
    background: url(../images/main-page/line.svg);
    background-size: cover;
}

.hiw-list .card-body::after {
    content: "";
    height: 11.4rem;
    left: 0.7rem;
    top: -10.8rem;
}

.inner-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #B5CAFF -31.8%, #FFF 95.55%);
}

.thanks-section {
    padding: 17.9rem 0 18.9rem;
}

.thanks-section .decor-holder::before,
.uninstall-section .decor-holder::before {
    width: 100%;
    top: -18.2rem;
    right: -26.8rem;
    left: auto;
    transform: none;
}

.thanks-section .decor-img,
.uninstall-section .decor-img {
    top: -18.4rem;
    right: -43.4rem;
    left: auto;
    transform: none;
}

.thanks-section .container {
    display: flex;
    justify-content: space-between;
}

.thanks-section .info-block {
    max-width: 55rem;
    padding: 9.8rem 1.5rem 0 0;
}

.thanks-section .text-block {
    max-width: 46rem;
}

.thanks-section .img-block {
    max-width: calc(100% - 55rem);
}

.thanks-section .img-block::before {
    content: "";
    height: 31rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 9.79%, #FFF 76.46%);
}

.thanks-section h1 {
    line-height: 1.1875;
}

.thanks-section p {
    margin-bottom: 3.2rem;
}

.uninstall-section {
    display: flex;
    align-items: center;
    padding: 27.7rem 0 7rem;
}

.uninstall-section .container {
    display: flex;
}

.uninstall-section .info-block {
    max-width: 72rem;
    width: 100%;
}

.uninstall-section .text-block {
    max-width: 46.4rem;
}

.uninstall-section h1 {
    line-height: 1.1875;
}

.instruction-block {
    max-width: calc(100% - 72rem);
    padding: 3.7rem 0 0 8.8rem;
}

.instruction-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3.2rem;
    margin-bottom: 3.2rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(7px);
    border-radius: 1.2rem;
    border: 1px solid #97ACFF;
    position: relative;
}

.instruction-list li::before {
    position: absolute;
    top: 50%;
    left: -2.5rem;
    transform: translateY(-50%);
}

.instruction-list li::after {
    height: 3.2rem;
    left: 3.3rem;
    top: 103%;
}

.instruction-list li:last-child::after {
    content: none;
}

.contact-section {
    padding: 13.5rem 0 6.7rem;
}

.contact-section h1 {
    margin-bottom: 5rem;
}

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

.contacts-card-holder .card-block {
    width: 50%;
    display: flex;
    padding: 0 1.6rem;
    margin-bottom: 3.2rem;
}

.contact-card {
    padding: 3.2rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(7px);
    border-radius: 1.2rem;
    border: 1px solid #97ACFF;
    overflow: hidden;
}

.contact-card p {
    margin-bottom: 3rem;
}

.section-404 {
    padding: 13.4rem 0 9.8rem;
}

.section-404 .main-img {
    margin-bottom: 3.4rem;
}

.section-404 h1 {
    margin-bottom: 4rem;
}

.section-404 .text-block {
    max-width: 46.4rem;
    margin: 0 auto 3rem;
}

.removed-section {
    padding: 13.5rem 0 17.8rem;
}

.removed-section .text-block {
    margin: 0 0 3.2rem;
}

.removed-section .img-block {
    margin: 0 0 2.4rem;
}

.removed-section h1 {
    margin-bottom: 2.4rem;
}

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

.terms-section .container-sm {
    max-width: 103.4rem;
}

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

.terms-privacy {
    padding: 3.2rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(7px);
    border-radius: 1.2rem;
    border: 1px solid #97ACFF;
    overflow: hidden;
}

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

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

.terms-privacy.content_for_tm_embed a {
    color: #323EC7 !important;
}

.footer {
    max-width: 150rem;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 5rem 0 4.4rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 2rem 2rem 0 0;
    border-top: 1px solid #002242;
    border-right: 1px solid #002242;
    border-left: 1px solid #002242;
}

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

.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: 2rem;
}

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

.footer-link {
    color: #002242;
}

.footer-link:hover {
    color: #323EC7;
    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: #002242;
    position: relative;
    background-color: #fff;
    border: 1px solid #002242;
    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;
}
