@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wdth,wght@8..144,150,1000&display=swap');

html, body {
    font-family: "Roboto Flex";
}

* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    overflow: hidden;
}

.wrapper {
    position: relative;
    width: 100%;
    /*height: 100vh; !* Высота на весь экран *!*/
    height: calc(var(--vh, 1vh) * 100); /* Учитывает высоту окна */
    background-image: url("clippath-mobile.png"); /* Укажите путь к вашей картинке */
    background-size: cover; /* Картинка растягивается на весь экран */
    background-position: center; /* Центрируем картинку */
    background-repeat: no-repeat; /* Убираем повторение картинки */
    justify-content: center;
    display: flex;
    overflow: hidden;
    align-items: start;

}

.image-container {
    position: absolute;
    left: 0;
    bottom: -13%;
    pointer-events: none;
    height: 60%;
    width: 100%;
}

.image-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-mobile {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    object-fit: cover;
    pointer-events: none;
}

.image {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    text-align: center;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
    position: relative;
    width: 215px;
    height: 64px;
    order: 0;
}

.logo-image {
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.title {
    order: 1;
    font-stretch: extra-expanded;
    text-transform: uppercase;
    font-size: 34px;
    line-height: 37px;
    color: #E4002B;
    margin-bottom: 16px;
    font-family: "Roboto Flex", serif;
    font-optical-sizing: auto;
    font-weight: 1000;
    font-style: normal;
    font-variation-settings:
            "slnt" 0,
            "wdth" 150,
            "GRAD" 0,
            "XOPQ" 96,
            "XTRA" 468,
            "YOPQ" 79,
            "YTAS" 750,
            "YTDE" -203,
            "YTFI" 738,
            "YTLC" 514,
            "YTUC" 712;
}

.description {
    order: 2;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
    line-height: 34px;
    color: #000;
    margin-bottom: 24px;
    font-variation-settings:
            "slnt" 0,
            "wdth" 150,
            "GRAD" 0,
            "XOPQ" 96,
            "XTRA" 468,
            "YOPQ" 79,
            "YTAS" 750,
            "YTDE" -203,
            "YTFI" 738,
            "YTLC" 514,
            "YTUC" 712;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }

}

.action_btn {
    order: 4;
    font-family: 'Roboto Flex', sans-serif;
    width: 80%;
    /*display: block;*/
    text-decoration: none;
    padding: 16px 32px;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    border: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /*align-self: stretch;*/
    border-radius: 8px;
    background: #EA0029;
    cursor: pointer;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
            "slnt" 0,
            "wdth" 112,
            "GRAD" 0,
            "XOPQ" 96,
            "XTRA" 468,
            "YOPQ" 79,
            "YTAS" 750,
            "YTDE" -203,
            "YTFI" 738,
            "YTLC" 514,
            "YTUC" 712;
    font-stretch: extra-expanded;
    transition: background-color 0.3s;
    animation: pulse 1.5s infinite ease-in-out;


    /*font-variation-settings: 'wdth' 112, 'GRAD' 0, 'slnt' 0, 'XTRA' 468, 'XOPQ' 96, 'YOPQ' 79, 'YTLC' 514, 'YTUC' 712, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;*/

}

.license {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15px;
    z-index: 10;
    font-size: 9px;
    font-weight: 400;
    color: white;
}

@media (min-width: 390px) {
    /*.image-container {*/
    /*    bottom: 10%;*/
    /*}*/
}

@media screen and (max-height: 660px) and (max-width: 600px) {
    .image-container {
        bottom: -22%;
        height: 59%;
        width: 100%;
    }
}

@media screen and (min-height: 661px) and (max-height: 780px) and (max-width: 600px) {
    .image-container {
        bottom: -20%;
        height: 61%;
    }
}

@media (min-width: 768px) {
    .wrapper {
        background-image: url("clippath-2.png"); /* Укажите путь к вашей картинке */
    }
    .action_btn {
        width: fit-content;
    }
    .license {
        font-family: "Inter", sans-serif;
        width: auto;
        /*text-align: center;*/
        margin-left: 40px;
        bottom: 10px;
        z-index: 10;
        font-size: 8px;
        font-weight: 400;
        color: black;
    }
    .content {
        margin-left: 40px;
        display: block;
        justify-content: center;
        flex-direction: column;
        text-align: start;
        align-items: center;
        margin-top: 32px;
    }
    .wrapper {
        justify-content: start;
        align-items: center;
    }
    .logo {
        position: relative;
        width: 188px;
        height: 55px;
    }
    .image {
        display: block;
    }
    .image-mobile {
        display: none;
    }
    .image-content {
        width: 100%;
        height: 100%;
    }

    .title {
        font-family: 'Roboto Flex', sans-serif;
        font-style: normal;
        font-size: 37px;
        font-weight: 1000;
        line-height: 40px;
        color: #E4002B;
        margin-bottom: 12px;
    }
    .description {
        text-transform: uppercase;
        font-size: 25px;
        font-weight: 800;
        line-height: 27px;
        color: #000;
        margin-bottom: 14px;
    }
    .action_btn {
        margin-bottom: 16px;
    }
    .image-container {
        left: initial;
        position: absolute;
        right: -10%;
        bottom: -15%;
        width: 65%;
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .license {
        bottom: 40px;
    }
    .content {
        margin-top: 90px;
    }
    .logo {
        position: relative;
        width: 246px;
        height: 73px;
    }
    .image {
        display: block;
    }
    .image-mobile {
        display: none;
    }
    .title {
        font-size: 50px;
        font-weight: 1000;
        line-height: 55px;
        color: #E4002B;
        margin-bottom: 14px;
    }
    .description {
        text-transform: uppercase;
        font-size: 34px;
        font-weight: 800;
        line-height: 37px;
        color: #000;
        margin-bottom: 28px;
    }
    .action_btn {
        margin-bottom: 24px;
    }
    .image-container {
        left: initial;
        position: absolute;
        right: -10%;
        bottom: -15%;
        width: 65%;
        height: 100%;
    }
}


@media (min-width: 1440px) {
    .content {
        margin-top: 120px;
    }
    .license {
        font-family: "Inter", sans-serif;
        width: auto;
        /*text-align: center;*/
        margin-left: 40px;
        bottom: 40px;
        z-index: 10;
        font-size: 15px;
        font-weight: 400;
    }
    .logo {
        position: relative;
        width: 347px;
        height: 103px;
    }
    .image {
        display: block;
    }
    .image-mobile {
        display: none;
    }
    .title {
        font-size: 70px;
        font-weight: 1000;
        line-height: 77px;
        color: #E4002B;
        margin-bottom: 20px;
    }
    .description {
        text-transform: uppercase;
        font-size: 47px;
        font-weight: 800;
        line-height: 51px;
        color: #000;
        margin-bottom: 42px;
    }
    .action_btn {
        margin-bottom: 44px;
    }
    .image-container {
        left: initial;
        position: absolute;
        right: -10%;
        bottom: -15%;
        width: 65%;
        height: 100%;
    }
}

@media (min-width: 1920px) {
    .content {
        margin-left: 80px;
        margin-top: 80px;
    }
    .license {
        font-family: "Inter", sans-serif;
        width: auto;
        /*text-align: center;*/
        margin-left: 80px;
        bottom: 40px;
        z-index: 10;
        font-size: 15px;
        font-weight: 400;
    }
    .logo {
        position: relative;
        width: 462px;
        height: 137px;
    }
    .image {
        display: block;
    }
    .image-mobile {
        display: none;
    }
    .title {
        font-size: 92px;
        font-weight: 1000;
        line-height: 100px;
        color: #E4002B;
        margin-bottom: 30px;
    }
    .description {
        text-transform: uppercase;
        font-size: 62px;
        font-weight: 800;
        line-height: 68px;
        color: #000;
        margin-bottom: 58px;
    }
    .action_btn {
        padding: 24px 48px;
        font-size: 24px;
        margin-bottom: 57px;
    }
    .image-container {
        left: initial;
        position: absolute;
        right: -10%;
        bottom: -15%;
        width: 65%;
        height: 100%;
    }
}