:root {
    --color-background: #ffffff;
    --color-banner-white: #ffffff;
    --color-banner-btn: #8fc22e;
    --color-banner-text: #ffffff;
    --color-banner-orange: #ff6137;
    --color-banner-secondary: #918c8d;
    --color-banner-none: #00000000
}

.item-bg,
.modal__form-input::before,
.modal__close,
.banner__leaves,
.banner__price,
.banner__add::before,
.banner__info::before,
.banner {
    background-position: center center;
    background-repeat: no-repeat
}

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sfuidisplay_regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sfuidisplay_bold.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sfuidisplay_heavy.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

.shimmer {
    position: relative;
    overflow: hidden
}

.shimmer::before,
.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(128, 128, 128, .1);
    z-index: -1
}

.shimmer::before {
    filter: blur(10px);
    width: 20px;
    transform: rotate(20deg) scale(2);
    background-color: rgba(128, 128, 128, .15);
    animation: 2s shimmer infinite
}

@keyframes shimmer {
    0% {
        left: -100%
    }

    100% {
        left: 150%
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg)
    }

    15% {
        transform: rotate(7deg)
    }

    30% {
        transform: rotate(-7deg)
    }

    45% {
        transform: rotate(5deg)
    }

    60% {
        transform: rotate(-5deg)
    }

    75% {
        transform: rotate(3deg)
    }

    85% {
        transform: rotate(-3deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

.ring {
    animation: ring 1s infinite
}

.banner {
    padding: 79px 0 105px;
    background-image: url("../images/banner-bg.jpg");
    background-size: cover;
    width: 100%;
    overflow: hidden
}

.banner * {
    font-family: "SF UI Display", Arial, Helvetica, sans-serif;
    color: var(--color-banner-white)
}

@media(max-width: 1280px) {
    .banner .banner__container {
        padding: 0 25px
    }
}

.banner--line {
    position: relative;
    color: var(--color-banner-orange)
}

@media(max-width: 610px) {
    .banner--line {
        font-size: 24px;
        filter: blur(1px);
        opacity: .9
    }
}

.banner--line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(calc(-50% + 5px)) translateX(-6px) rotate(8deg);
    pointer-events: none;
    width: calc(100% + 7px);
    height: 5px;
    background-color: var(--color-banner-white)
}

@media(max-width: 610px) {
    .banner--line::after {
        transform: translateY(calc(-50% + 5px)) translateX(-6px) rotate(8deg) scale(0.6)
    }
}

@media(min-width: 610px) {
    .banner--line::after {
        animation: banner-line 1s
    }
}

@keyframes banner-line {
    0% {
        width: 0;
        transform: translateY(calc(-50% + 5px)) translateX(-6px) rotate(0);
        opacity: 0
    }

    100% {
        width: calc(100% + 7px);
        transform: translateY(calc(-50% + 5px)) translateX(-6px) rotate(8deg);
        opacity: 1
    }
}

.banner__col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 546px
}

@media(max-width: 768px) {
    .banner__col {
        max-width: none
    }
}

.banner__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto
}

.banner__group {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.banner__group.group--horizontal {
    flex-direction: row;
    align-items: center;
    gap: 40px
}

@media(max-width: 610px) {
    .banner__group.group--horizontal {
        flex-direction: column;
        gap: 25px
    }
}

.banner__btn {
    padding: 22px 45px;
    background-color: var(--color-banner-btn);
    width: -moz-max-content;
    width: max-content;
    border-radius: 40px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    transition: .4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer
}

.banner__btn:hover {
    opacity: .7
}

.banner__btn:active {
    opacity: .9
}

.banner__title {
    font-size: 40px
}

@media(max-width: 768px) {
    .banner__title {
        text-align: center;
        width: 100%
    }
}

.banner__title-row {
    display: flex;
    justify-content: space-between;
    gap: 1px;
    width: calc(100% + 8px)
}

@media(max-width: 610px) {
    .banner__title-row {
        flex-direction: column;
        max-width: -moz-max-content;
        max-width: max-content;
        margin: 0 auto;
        opacity: .8
    }
}

.banner__title,
.banner__title * {
    text-transform: uppercase;
    font-weight: 600
}

.banner__title h1 {
    font-size: 71px
}

@media(max-width: 610px) {
    .banner__title h1 {
        font-size: 48px
    }
}

.banner__info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-banner-secondary) !important;
}

@media(max-width: 610px) {
    .banner__info {
        gap: 6px;
        max-width: 70vw;
        color: var(--color-banner-white);
        opacity: .85;
        text-align: center
    }

    .banner__info br {
        display: none
    }
}

.banner__info::before {
    content: "";
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-image: url("../images/info_icon.svg")
}

.banner__add {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 20px
}

.banner__add::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("../images/add_icon.png")
}

.banner__add strong {
    font-weight: 600
}

.banner__price {
    font-size: 30px;
    padding: 10px 30px;
    border-radius: 100px;
    background-image: url("../images/tree-bg.png");
    width: -moz-max-content;
    width: max-content;
    border-radius: 40px;
    overflow: hidden;
    font-weight: 600
}

@media(max-width: 610px) {
    .banner__price {
        margin: 0 auto
    }
}

.banner__price sup {
    font-size: 13px
}

.banner__leaves {
    position: absolute;
    width: 640px;
    height: 389px;
    top: 50%;
    right: -670px;
    transform: translateY(-50%);
    background-image: url("../images/leaves.png");
    background-size: 100% 100%
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 0 15px
}

.modal * {
    font-family: "SF UI Display", Arial, Helvetica, sans-serif
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.modal__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    max-width: 470px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    position: relative;
    transform: translateY(-30px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    border-radius: 20px;
    overflow: hidden
}

.modal__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 46px 55px 27px
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-image: url("../images/close-btn.png");
    background-size: 100%;
    border-radius: 100%;
    overflow: hidden
}

.modal__title {
    text-align: center;
    font-weight: 600;
    color: #30261a
}

.modal__text {
    color: #30261a
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 35px 69px 35px;
    background-color: #f6efea
}

@media(max-width: 610px) {
    .modal__form {
        padding: 35px 40px 35px
    }
}

.modal__form .banner__btn {
    width: 100%;
    color: #fff
}

.modal__form-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 40px;
    font-size: 14px;
    overflow: hidden;
    outline: 3px solid var(--color-banner-none);
    transition: .4s
}

.modal__form-input:has(input:hover) .modal__form-input-placeholder {
    opacity: .6
}

.modal__form-input:has(input:focus) {
    outline-color: rgba(51, 51, 51, .5529411765)
}

.modal__form-input:has(input:focus)::before {
    animation: phone-swing 1s ease-in-out infinite
}

.modal__form-input:has(input:not(:-moz-placeholder-shown)) .modal__form-input-placeholder {
    opacity: 0
}

.modal__form-input:has(input:not(:placeholder-shown)) .modal__form-input-placeholder {
    opacity: 0
}

@keyframes phone-swing {
    0% {
        transform: translateY(-50%) rotate(0deg)
    }

    25% {
        transform: translateY(-50%) rotate(6deg)
    }

    50% {
        transform: translateY(-50%) rotate(0deg)
    }

    75% {
        transform: translateY(-50%) rotate(-6deg)
    }

    100% {
        transform: translateY(-50%) rotate(0deg)
    }
}

.modal__form-input::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    content: "";
    width: 16px;
    min-width: 16px;
    height: 16px;
    background-image: url("../images/phone_icon.svg")
}

.modal__form-input input {
    height: 100%;
    width: 100%;
    padding-left: 58px;
    font-size: 14px;
    caret-color: #30261a
}

.modal__form-input-placeholder {
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(48, 38, 26, .3137254902);
    pointer-events: none;
    transition: .4s
}

.modal__form-input-placeholder span {
    color: #30261a
}

.modal__info {
    margin-top: 10px;
    color: rgba(48, 38, 26, .3137254902);
    font-size: 14px
}

.modal__info a:hover {
    text-decoration: underline
}

.modal a {
    color: #30261a
}

.modal.active .modal__content {
    transform: translateY(0);
    opacity: 1
}

.modal__close:hover {
    color: #333
}

/* Антибот защита - скрытое поле */
.antibot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.banner__title .banner__title-row span {
    font-size: 40px
}

.banner * {
    font-family: "SF UI Display", Arial, Helvetica, sans-serif !important;
    color: var(--color-banner-white);
}

.banner__info {
    line-height: 1.3em;
}

.banner--line {
    color: var(--color-banner-orange) !important;
}

.banner__title h1 {
    word-break: normal;
}

.modal * {

  font-family: "SF UI Display", Arial, Helvetica, sans-serif !important;
}

.modal__text {

  font-size: 16px;
  line-height: normal;
}

.modal__title {
  font-size: 24px;
  text-transform: none;
  margin-bottom: 0;
}

.modal__info {
  line-height: normal;
}
.banner__add-text {
	font-size: 20px;
}

.modal__form-input input {
	border: 0;
}