.banner-container {
    max-width: 1170px;
    height: 394px;
    position: relative;
    margin: 80px auto 0;
}

.banner-container .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.tablet-banner,
.mobile-banner {
    display: none;
}

.banner-btns {
    z-index: 1;
    display: flex;
    position: absolute;
    right: 79px;
    bottom: 47px;
}

.banner-btns a {
    display: flex;
    align-items: center;
    border-radius: 24px;
    border: 2px solid var(--001, #FF4D4D);
    font-family: Roboto, system-ui;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    background: var(--Main-gradient, linear-gradient(39deg, #FF4D4D 9.28%, #FF7F48 85.91%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 21px;
    margin-left: 30px;
}

.banner-btns a:hover {
    background: var(--MAIN-GRADIENT, linear-gradient(39deg, #FF4D4D 9.28%, #FF7F48 85.91%));
    -webkit-text-fill-color: #FFFFFF;
    border: unset;
    padding: 12px 23px;
}

.banner-btns a:hover img {
    filter: brightness(0) saturate(100%) invert(1);
}

@media screen and (max-width: 1230px) {
    .desktop-banner {
        display: none;
    }
    .tablet-banner {
        display: block;
    }
    .banner-container {
        max-width: 740px;
        margin: 80px auto 0;
    }
    .banner-btns {
        right: 6px;
    }
    .banner-btns a {
        margin-left: 14px;
        font-size: 13px;
        padding: 10px 7px;
    }
    .banner-btns a:hover {
        padding: 10px 8px;
    }
    .banner-container .banner img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .tablet-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
    .banner-container {
        max-width: 325px;
        height: 528px;
        margin: 80px auto 0;
    }
    .banner-btns {
        right: unset;
        bottom: unset;
        top: 262px;
        max-width: 302px;
        justify-content: space-between;
        position: relative;
        margin: auto;
    }
    .banner-btns a {
        font-size: 10px;
        padding: 6px 3px;
        margin: 0;
        display: flex;
        width: 135px;
        height: 21px;
        justify-content: center;
    }
    .banner-btns a:hover {
        padding: 8px 5px;
    }

}

