/*------------------------Обнуление----------------------*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: "Montserrat", sans-serif;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

/*------------------------Обнуление----------------------*/

.wrapper {
    display: flex;
    flex-direction: column;
    overflow: clip;
    min-height: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

._ibg {
    position: relative;
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

p {
    line-height: 1.6;
    color: #fff;
}

.h4 {
    color: #1f1f1f;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 18px;
}

.h3 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

h1 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 425px) {
    .h3 {
        font-size: 30px;
    }
}

.h2 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.heading {
    color: #1f1f1f;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin: 9px 0;
}

/*------------------------header----------------------*/

.header {
    background-color: #29a04d;
}

.header__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 49px;
    padding: 49px 0;
}

.header__main {
    flex: 1;
}

.header__logo {
    width: 100%;
    max-width: 386px;
}

.header__title {
    color: #fff;
    font-size: 19px;
    letter-spacing: 1.1px;
    line-height: 1.4;
    margin-left: 10px;
    font-weight: 500;
}

.header__link {
    flex: 1;
}

.header__link__li a {
    letter-spacing: 0.3px;
    border-bottom: 2px solid #ffffff78;
    transition: 0.3s ease-out;
}

.header__link__li a:hover {
    color: #CCF381;
    border-bottom: 2px solid #CCF381;
}

.header__link__ul {
    line-height: 1.8;
}

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

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

.header__link__li {
    color: #fff;
}

.header__link__li:last-child {
    margin-right: 0px;
}

.text p {
    margin-bottom: 9px;
}

.text p:last-child {
    margin-bottom: 0;
}

.header__info__p {
    color: #f4c133;
    line-height: 1.5;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
}

.header__button::after {
    content: ".pdf";
    font-size: 0.7em;
    color: #f4c133;
    position: absolute;
    transform: translate(2px, -3px);
}

.header__button:hover {
    text-decoration: underline;
}

@media (max-width: 877px) {
    .header__info {
        display: none;
    }
}

@media (max-width: 900px) {
    .header__body {
        flex-direction: column;
        padding: 36px 12px 36px 9px;
        gap: 24px;
        justify-content: center;
    }

    #text-right,
    #text-left {
        text-align: center;
    }
}

.marquee-text {
    color: #2BAE66;
    line-height: 1.8;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 100%;
    /* Начальная позиция за правым краем экрана */
    animation: scroll-left 16s linear infinite;
    /* 10 секунд, плавно, бесконечно */
}

/* Описание самого движения */
@keyframes scroll-left {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }

    /* Сдвиг полностью влево */
}

:root {
    --ink: currentColor;
}

.fx-ticker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2BAE66;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px;
    justify-self: start;
    width: max-content;
    letter-spacing: .08em;
    white-space: nowrap;
    animation: fx-ticker 6s linear infinite;
}

@keyframes fx-ticker {
    to {
        transform: translateX(-10%);
    }
}

/*------------------------main----------------------*/

.main {
    flex: 1 1 auto;
}

/*------------------------slider----------------------*/

.slider {
    position: relative;
}

.slider__body {
    padding: 160px 0px 160px 0px;
    position: relative;
    z-index: 2;
    width: 800px;
    margin: auto;
    text-align: center;
}

.slider__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 880px) {
    .slider__title {
        font-size: 50px;
    }
}

@media (max-width: 425px) {
    .slider__title {
        font-size: 30px;
    }

    .slider__body {
        width: 360px;
    }
}

.slider__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0px 0px 15px 0px;
}

.slider__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*------------------------wite-block----------------------*/

.white-block {
    background-color: #fff;
}

.white-body {
    padding: 60px 18px;
}

.white-block__text p {
    color: #1f1f1f;
    line-height: 1.9;
}

.white-block ul {
    color: #1f1f1f;
    line-height: 1.9;
    margin-left: 12px;
}

.white-block ul li::before {
    font-size: 24px;
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #F0393C;
    border-radius: 50%;
    margin-right: 9px;
    flex-shrink: 0;
}

.policy {
    padding: 36px;
}

@media (max-width: 900px) {
    .white-body {
        padding: 36px 18px;
    }

    .policy {
        padding: 36px 24px;
    }
}

/*------------------------yellow-block----------------------*/
strong {
    font-weight: 600;
}

.yellow-block {
    background-color: #29a04d;
    /* background-color: #F2AA4C; */
    color: #fff;
}

.yellow-block__container {
    padding: 60px 18px;
}

@media (max-width: 900px) {
    .yellow-block__container {
        padding: 36px 18px;
    }
}

.yellow-body {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@media (max-width: 1090px) {
    .yellow-body {
        gap: 24px;
    }
}

.yellow-title {
    margin-bottom: 18px;
}

.yellow__item {
    display: flex;
}

.yellow-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.yellow-items:last-child {
    margin-bottom: 0px;
}

.text:last-child {
    margin-bottom: 0px;
}


.icon__item {
    margin-right: 14px;
    padding: 5px;
    width: 47px;
}

.__item {
    margin-bottom: 0px;
}

.icon {
    width: 40px;
}

.link-pdf {
    display: inline-block;
    color: #CCF381;
    font-weight: 600;
    border-bottom: 2px solid #CCF381;
    transition: 0.3s ease-out;
}

.link-pdf:hover {
    text-shadow: none;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.link-pdf:hover::after {
    color: red;
}

.link-pdf::after {
    content: ".pdf";
    font-size: 0.6em;
    color: #CCF381;
    position: absolute;
    transform: translate(2px, -3px);
    transition: 0.3s ease;
}

.link-pdf:hover::after {
    color: #fff;
}

.button-black {
    margin: 9px 0;
    color: #CCF381;
    font-weight: 600;
    border-bottom: 2px solid #CCF381;
    transition: 0.3s ease-out;
}

.button-black:hover {
    text-shadow: none;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.button-black::after {
    content: ".pdf";
    font-size: 0.6em;
    color: #CCF381;
    position: absolute;
    transform: translate(2px, -3px);
    transition: 0.3s ease;
}

.button-black:hover::after {
    color: #fff;
}

/*------------------------black-block----------------------*/

.black-block {
    background-color: #000;
}

.black-block__container {}

.black-block__row {
    display: flex;
    gap: 60px;
    padding: 60px 18px;
}

@media (max-width: 425px) {
    .black-block__row {
        padding: 40px 20px 40px 20px;
    }
}

@media (max-width: 900px) {
    .black-block__row {
        flex-direction: column;
        gap: 36px;
    }
}

.__white-style {
    color: #fff;
}

.black-block__body {
    flex: 1;
}

.black-block__video {
    flex: 1;
    width: 100%;
    max-width: 436px;
    align-self: center;
}

.black-block__video img {
    width: 100%;
}

.link-youtube {
    color: #fff;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #ffffff78;
    transition: 0.3s ease-out;
}

.link-youtube:hover {
    color: #F0393C;
    border-bottom: 2px solid;
}

.link-vkvideo {
    color: #fff;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #ffffff78;
    transition: 0.3s ease-out;
}

.link-vkvideo:hover {
    color: #F0393C;
    border-bottom: 2px solid;
}

.black-block__video img {
    transition: box-shadow 0.3s ease-out;
}

.black-block__video img:hover {
    box-shadow: 0px 0px 60px 2px #F0393C;
}

.informer {
    padding: 0 0 0 6px;

}

/*------------------------green-block----------------------*/

.green-block {
    background-color: #29a04d;
}

.green-block__row {
    padding: 60px 18px 18px 18px;
}

@media (max-width: 425px) {
    .green-block__row {
        padding: 40px 20px 10px 20px;
    }
}

.green-block__map {
    padding: 0px 5px 0px 5px;
}

.green-block__map img {
    border-radius: 2px;
    width: 100%;
    height: 300px;
}

.green-block__a {
    color: #fff;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #ffffff78;
    transition: 0.3s ease-out;
}

.green-block__a:hover {
    color: #CCF381;
    border-bottom: 2px solid #CCF381;
}

.green-block__heading {}

.green-block__contact {
    display: flex;
    align-items: center;
    gap: 60px;
}

.green-block__contact-map {
    width: 100%;
    max-width: 520px;
    height: 250px;
}

.green-block__contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

@media (max-width: 900px) {
    .green-block__contact {
        flex-direction: column;
        gap: 36px;
    }
}


/*------------------------footer----------------------*/

.footer {
    background-color: #29a04d;
}

.footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 1px;
    padding: 18px 18px 24px 18px;
}

@media (max-width: 900px) {
    .footer__row {
        flex-direction: column;
        gap: 18px;
        padding: 0 18px 24px 18px;
    }
}

.footer__policy a {
    color: #fff;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #ffffff78;
    transition: 0.3s ease-out;
    line-height: 1.6;
}

.footer__policy a:hover {
    color: #CCF381;
    border-bottom: 2px solid #CCF381;
}

.footer__text-dev {
    color: #FFF;
    font-weight: 300;
    cursor: pointer;
}

.footer__text {
    text-transform: uppercase;
}

.footer__text-site {
    color: #FFF;
    font-size: 16px;
}

@media (max-width: 900px) {
    .footer__text {
        font-size: 15px;
        order: 2;
    }

    .footer_policy {
        order: 1;
    }

    .footer__text-dev {
        order: 3;
    }
}

/*------------------------404----------------------*/

.white-block__a {
    color: #29a04d;
    border-bottom: 1px solid #29a04d;
}

.white-block_a:hover {
    color: #f4c133;
    border-bottom: 1px solid;
    transition: 0.3s ease-out;
}

/* Markup: <button class="btn fx-43"><span class="btn-label">Jelly</span></button> */

.btn {
    /* Theme tokens — override these to recolour the button */
    --primary: #F4FF2B;
    --secondary: #FFF;
    --surface: #E2F1F2;
    --bink: var(--secondary);
    /* ink / foreground */
    --bsurf: var(--surface);
    /* surface / background */
    position: relative;
    isolation: isolate;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    /* text-transform: uppercase; */
    padding: 3px 9px;
    border: 1px solid var(--bink);
    border-radius: 8px;
    background: transparent;
    color: var(--bink);
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: inherit;

    color: #FFF;
}

/* Shared sliding panel used by many fill effects */
.btn::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: var(--bink);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.fx-43 {
    overflow: visible;
}

.fx-43::before {
    display: none;
}

.fx-43:hover {
    animation: btn-jelly 0.6s ease;
}

@keyframes btn-jelly {

    0%,
    100% {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1.15, 0.85);
    }

    50% {
        transform: scale(0.9, 1.1);
    }

    70% {
        transform: scale(1.05, 0.95);
    }
}