:root {
    --base-font-family: "Poppins", sans-serif;
    --base-font-size: 1.8rem;
    --base-line-height: 1.299999;
    --base-font-weight: 400;
    --sm-font-size: 1.2rem;
    --md-font-size: 1.6rem;
    --lg-font-size: 2.4rem;
    --heading1-font-size: 7rem;
    --heading2-font-size: 5rem;
    --heading3-font-size: 2.4rem;
    --heading-line-height: 1.2;
    --heading3-line-height: 1.3;
    --white-color: #ffffff;
    --gray-color: #626262;
    --gray2-color: #828282;
    --text-color: #002700;
    --green1-color: #004C00;
    --green2-color: #BDFF00;
    --green3-color: #C0C79C;
    --yellow-color: #FFFF00;
    --base-border-radius: 3.2rem;
    --full-border-radius: 50%;
    --btn-border-radius: 5.3rem;
    --container-max-width: 151.2rem;
    --container-gap: 1.6rem;
}

html {
    font-size: 10px;
}

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

body {
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-weight: var(--base-font-weight);
    color: var(--white-color);
    background: var(--green1-color);
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#main_content {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 9.8rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-color);
}

th, td {
    padding: 0.5rem;
    border: 1px solid var(--text-color);
}

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 {
    color: var(--green2-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: var(--base-font-weight);
    line-height: var(--heading-line-height);
    margin: 0 0 1.5rem;
}

h1, .h1 {
    font-size: var(--heading1-font-size);
}

h2, .h2 {
    font-size: var(--heading2-font-size);
}

h3, .h3 {
    font-size: var(--heading3-font-size);
    line-height: var(--heading3-line-height);
}

.subtitle {
    display: inline-block;
    vertical-align: top;
    font-size: var(--sm-font-size);
    line-height: 1.4;
    font-weight: var(--base-font-weight);
    padding: 0.8rem 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--text-color);
    background: var(--yellow-color);
    backdrop-filter: blur(4.5px);
    border-radius: 4.3rem;
}

.subtitle.light {
    border: 1px solid var(--green1-color);
    background: rgba(0, 76, 0, 0.10);
}

p {
    margin: 0 0 1.6rem;
}

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

img {
    display: inline-block;
    vertical-align: top;
}

.container {
    max-width: var(--container-max-width);
    padding: 0 var(--container-gap);
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.hidden {
    display: none;
}

.decor-holder {
    position: relative;
}

.decor-img {
    position: absolute;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-weight: var(--base-font-weight);
    color: var(--text-color);
    background: transparent;
    padding: 0;
    text-decoration: none;
    border: none;
    border-radius: var(--btn-border-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.btn .text,
.btn .icon {
    position: relative;
    z-index: 2;
}

.btn .text {
    padding: 1.2rem 1.6rem;
    background: var(--green2-color);
    border-radius: var(--btn-border-radius);
}

.btn .icon {
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: var(--green2-color);
    border-radius: var(--full-border-radius);
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--green2-color);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
}

.btn:disabled .text,
.btn:disabled .icon {
    color: var(--gray-color);
    background: var(--gray2-color);
}

.btn:disabled svg path {
    stroke: var(--gray-color);
}

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

.btn:hover::before {
    transform: translateX(0);
}

@media (hover: hover) {

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

    .btn:hover::before {
        transform: translateX(0);
    }
}

.card {
    color: var(--text-color);
    background: var(--green3-color);
    border-radius: var(--base-border-radius);
    overflow: hidden;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.9rem;
}

.info-list li {
    display: flex;
    width: 33.33%;
    padding: 0 1.9rem;
    margin-bottom: 1.7rem;
}

.info-card {
    min-height: 33.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4rem 4.8rem;
    background: var(--green2-color);
    border-radius: var(--base-border-radius);
}

.info-card:has(.main-block) {
    position: relative;
}

.info-card:has(.main-block)::before,
.info-card:has(.main-block)::after {
    content: "";
    width: 11.3rem;
    height: 10.5rem;
    position: absolute;
    bottom: -6.4rem;
    background-image: url(../images/main-page/connect-line.svg);
    background-size: contain;
}

.info-card:has(.main-block)::before {
    left: -7.6rem;
}

.info-card:has(.main-block)::after {
    right: -7.6rem;
    transform: scaleX(-1);
}

.info-card:has(img) {
    min-height: 31.1rem;
    margin: 1.2rem 1.7rem;
    border: 1px solid var(--green1-color);
    background: rgba(0, 76, 0, 0.10);
    backdrop-filter: blur(9.6px);
}

.info-card p {
    margin-bottom: 2.5rem;
}

.info-card p:last-child {
    margin: 0;
}

.info-list.two-column-list {
    margin: 0 -0.8rem;
}

.info-list.two-column-list li {
    width: 50%;
    padding: 0 0.8rem;
    margin: 0 0 1.6rem;
}

.two-column-list .info-card {
    min-height: auto;
    padding: 1rem 11.1rem;
}

.two-column-list .info-card:has(img) {
    margin: 0;
}

.two-column-list .info-card:has(.card-body) {
    background: var(--white-color);
}

.two-column-list .info-card:has(.main-block)::before {
    content: none;
}

.two-column-list .info-card:has(.main-block)::after {
    width: 11.9rem;
    height: 10.4rem;
    background-image: url(../images/contact/connect-line.svg);
    transform: none;
}

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: var(--green2-color);
    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: var(--green1-color);
    text-shadow: 0px 0px var(--green1-color), 0px 50px var(--green1-color);
    -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 var(--green1-color);
    -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 var(--white-color), 0 0 var(--white-color);
}

.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: var(--white-color);
    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: var(--green2-color);
    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 var(--green1-color);
    box-shadow: 0 -10px 40px -5px var(--green1-color);
}

.blob {
    position: absolute;
    background: var(--green2-color);
    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;
    left: 0;
    right: 0;
    z-index: 100;
    font-size: var(--md-font-size);
    padding: 3.5rem 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.site-logo {
    max-width: 25.6rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 27rem;
}


.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: 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: inline-flex;
    align-items: center;
    margin: 0 -1.2rem;
}

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

.site-header .site-main-menu li > a {
    display: inline-block;
    vertical-align: top;
    color: var(--white-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.site-header .site-main-menu li > a:focus {
    color: var(--green2-color);
}

.site-header .site-main-menu li > a.active {
    color: var(--green2-color);
}

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

.site-header .toggle-menu .bar {
    background: var(--green2-color);
}

.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 {
    background: var(--green1-color);
    border-color: var(--text-color);
    z-index: 1000;
    -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 .card {
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 0; 
}

.intro-section .decor-img {
    top: 1.7rem;
    left: 3.4rem;
    right: 5rem;
    bottom: 1.7rem;
}

.intro-section .main-block {
    flex: 1 0 auto;
    max-width: 734px;
    margin: 0 auto 1.2rem;
}

.intro-section .subtitle {
    margin-bottom: 0.8rem;
}

.intro-section h1 {
    margin-bottom: 2.2rem;
}

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

.intro-section .main-img {
    max-width: 123rem;
    margin: 0 auto;
}

.about-section {
   padding: 12.8rem 0 12rem; 
}

.about-section .row {
    flex-direction: row-reverse;
    align-items: flex-end;
}

.about-section .text-block {
    width: 50.2%;
    padding: 6.3rem 0 0.9rem 1rem;
}

.about-section h2 {
    margin-bottom: 5rem;
}

.about-section .main-info {
    padding: 10.3rem 12.6rem 8rem 10.3rem;
    border-radius: var(--base-border-radius);
    border: 1px solid var(--white-color);
    background: rgba(255, 255, 255, 0.10);
}

.about-section p {
    margin-bottom: 2.2rem;
}

.about-section .img-block {
    width: 49.8%;
    display: flex;
    align-items: flex-end;
}

.advantages-section .card {
    padding: 7.2rem 4.7rem 5.2rem;
}

.advantages-section .subtitle {
    margin-bottom: 7.2rem;
}

.hiw-section {
    padding: 12.8rem 0 12rem;
}

.hiw-section .subtitle {
    margin-bottom: 1.8rem;
}

.hiw-section h2 {
    max-width: 110rem;
    margin-bottom: 7.5rem;
}

.hiw-list {
    counter-reset: number;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.7rem;
}

.hiw-list li {
    display: flex;
    width: 50%;
    padding: 0 0.7rem;
    margin-bottom: 1.4rem;
}

.hiw-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: var(--lg-font-size);
    line-height: 1.3;
    padding: 4rem 0;
    color: var(--text-color);
    border-radius: var(--base-border-radius);
    background: var(--white-color);
    overflow: hidden;
}

.hiw-card .card-body {
    flex: 1 0 auto;
    padding: 0 9.5rem 1.4rem 4rem;
    position: relative;
}

.hiw-card .card-body::before {
    content: counter(number) ' Step';
    counter-increment: number;
    display: inline-block;
    vertical-align: top;
    font-size: var(--base-font-size);
    line-height: 1;
    padding: 0.6rem 2.4rem;
    margin-bottom: 2.6rem;
    border-radius: 4.3rem;
    border: 1px solid rgba(0, 76, 0, 0.10);
    background: rgba(0, 76, 0, 0.10);
    backdrop-filter: blur(4.5px);
}

.hiw-card .card-body::before,
.hiw-card p {
    position: relative;
    z-index: 2;
}

.hiw-card .line {
    position: absolute;
}

.hiw-card .short-line {
    right: 3.8rem;
    bottom: -1.2rem;
}

.hiw-card .long-line {
    bottom: -0.7rem;
    left: 5.5rem;
    right: 27%;
}

.hiw-card b {
    color: var(--green1-color);
}

.inner-page {
    min-height: 100vh;
    padding-bottom: 1.6rem;
}

.thanks-section .card {
    padding: 6.4rem 4.8rem;
    background: var(--white-color);
}

.thanks-section .decor-img {
    max-width: 86.4rem;
    width: 100%;
    top: 5%;
    left: 5.5%;
}

.thanks-section .row {
    align-items: center;
}

.thanks-section .text-block {
    width: 60%;
    padding: 0 5rem 0 0;
}

.thanks-section .subtitle {
    margin-bottom: 1rem;
}

.thanks-section h1 {
    margin-bottom: 2.1rem;
}

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

.thanks-section .img-block {
    width: 40%;
    text-align: right;
}

.contact-section .card {
    padding: 6.4rem 4.7rem 4.7rem;
}

.uninstall-section {
    min-height: auto;
    padding: 8rem 0 8.4rem;
}

.uninstall-section .row {
    align-items: flex-end;
}

.uninstall-section .heading-block {
    width: 50.5%;
    padding-right: 8rem;
    position: relative;
}

.uninstall-section .line {
    position: absolute;
    left: 14.8rem;
    bottom: 91%;
}

.uninstall-section .subtitle,
.uninstall-section h1 {
    position: relative;
    z-index: 2;
}

.uninstall-section h1 {
    max-width: 55rem;
}

.uninstall-section h1:last-child {
    margin-bottom: 0;
}

.uninstall-section .text-block {
    width: 49.5%;
    background: var(--green2-color);
    padding: 4.8rem 17% 5.5rem 4.8rem;
    border-radius: var(--base-border-radius);
    overflow: hidden;
}

.uninstall-section .decor-img {
    top: 4.8rem;
    right: -4.8rem;
    max-width: 26.8rem;
}

.uninstall-list {
    counter-reset: number;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.uninstall-list li {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 5.8rem;
}

.uninstall-list li::before {
    min-width: 5.9rem;
    content: counter(number);
    counter-increment: number;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--base-font-size);
    line-height: 1;
    padding: 0.6rem 1.4rem;
    margin-right: 0.8rem;
    border-radius: 4.3rem;
    background: rgba(0, 76, 0, 0.10);
    border: 1px solid rgba(0, 76, 0, 0.10);
    backdrop-filter: blur(4.5px);
}

.uninstall-list li::after {
    content: "";
    width: 2px;
    height: 4.4rem;
    position: absolute;
    left: 2.8rem;
    bottom: -5rem;
    background: linear-gradient(to bottom, rgba(189,255,0,1) 0%,rgba(0,76,0,1) 100%);
}

.uninstall-list li:last-child {
    margin-bottom: 0;
}

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

.uninstall-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--green1-color);
    margin-left: 1.6rem;
    border-radius: 0.4rem;
}

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

.removed-section .card {
    padding: 4.5rem 5.6rem 9rem;
}

.removed-section .info-block {
    width: 40%;
    padding-bottom: 11rem;
}

.removed-section .text-block {
    padding-right: 6rem;
}

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

.removed-section p {
    margin-bottom: 3rem;
}

.removed-section .img-block {
    width: 60%;
    padding-left: 11.8rem;
}

.removed-section .decor-img {
    max-width: 83.1rem;
    width: 100%;
    top: -1.5rem;
    right: -2.8rem;
}

.section-404 .card {
    padding: 10.2rem 4.4rem 14.7rem;
    background: var(--white-color);
}

.section-404 .decor-img {
    top: 5.7rem;
    left: 4.3rem;
    max-width: 138.5rem;
    width: 100%;
}

.section-404 .main-block {
    max-width: 73.2rem;
    margin: 0 auto;
}

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

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

.section-404 p {
    margin-bottom: 3rem;
}

.terms-section .card {
    padding: 6.4rem 4.8rem;
    background: var(--white-color);
}

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

.terms-privacy {
    max-width: 102rem;
}

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-weight: var(--base-font-weight);
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.terms-privacy.content_for_tm_embed a {
    font-weight: 700;
    text-decoration: underline;
    color: var(--green1-color) !important;
}

.terms-privacy.content_for_tm_embed a:hover {
    text-decoration: none;
}

.footer {
    max-width: 148.2rem;
    font-size: var(--md-font-size);
    padding: 4rem 0 4.4rem;
    margin: 0 auto;
    color: var(--text-color);
    background: var(--green3-color);
    border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
}

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

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

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

.footer-link {
    color: var(--text-color);
}

.footer-link:hover {
    color: var(--green2-color);
    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: var(--text-color);
    position: relative;
    background: var(--white-color);
    border: 1px solid var(--white-color);
    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 var(--gray2-color);
    display: flex;
    justify-content: flex-end;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gray2-color);
    opacity: 0.5;
    cursor: pointer;

    &:hover {
        opacity: 1;
    }
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray2-color);
    display: flex;
    justify-content: center;
}

.modal-footer .btn {
    text-transform: uppercase;
}
