:root {
    --banner-aspect-ratio: 8/3;
}
.banner-full-section{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 0;
    overflow: hidden;
    background-size: 100% 100%;
}

.banner-full-section .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: block;
    text-decoration: none;
}

.banner-full-section .slide.active {
    opacity: 1;
}

.banner-full-section .slide:nth-child(1) {
    background: url(../../img/banner/banner11.png);
    background-size: 100% 100%;
}

.banner-full-section .slide:nth-child(2) {
    background: url(../../img/banner/banner1.png);
    background-size: 100% 100%;
}

.banner-full-section .slide:nth-child(3) {
    background: url(../../img/banner/banner2.png);
    background-size: 100% 100%;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.banner-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
}

.banner-dot.active {
    background: #fff;
}

.banner-content{
    text-align: center;
    margin-top: calc(100vh / 1.75);
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.banner-content h2{
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
    font-size: 30px;
}

.banner-content a{
    margin-top: 30px;
    font-size: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
    color: var(--theme-color);
}

.hero {
    position: relative;
    margin-top: calc(100vh - 125px);
}

.product-section{
    padding-top: 15px;
}

@media screen and (max-width: 1200px) {
    .banner-full-section{
        width: 100%;
        height: 32vh;
        aspect-ratio: var(--banner-aspect-ratio);
        /*margin-top: 80px;*/
        margin-top: 112px;
    }

    .banner-content{
        margin-top: calc(calc(100% * (3/8)) / 1.75);
        font-size: 20px;
    }

    .banner-content h2{
        font-size: 20px;
    }

    .banner-content a{
        margin-top: 30px;
        font-size: 22px;
        padding: 8px 20px;
        border-radius: 20px;
    }

    .hero {
        position: relative;
        margin-top: calc(calc(100% * (3/8)) - 0px);
    }
}

@media screen and (max-width: 900px) {
    .banner-content{
        font-size: 20px;
    }
}

@media screen and (max-width: 750px) {
    .banner-content{
        font-size: 16px;
    }

    .banner-content h2{
        font-size: 16px;
    }

    .banner-content a{
        margin-top: 15px;
        font-size: 16px;
        padding: 5px 15px;
        border-radius: 16px;
    }

    .hero {
        margin-top: calc(calc(100% * (3/8)) - 100px);
        height: 340px;
    }
}

@media screen and (max-width: 600px) {
    .hero {
        height: 250px;
        /*margin-top: 192px;*/
        margin-top: 198px;
    }

    .product-section{
        margin-top: calc(calc(100% * (3/8)) - 100px);
    }

    .banner-dots {
        bottom: 15px;
    }
}

@media screen and (max-width: 510px) {
    .banner-content{
        font-size: 14px;
    }

    .banner-content h2{
        font-size: 14px;
    }

    .banner-content a{
        margin-top: 15px;
        font-size: 14px;
        padding: 5px 15px;
        border-radius: 15px;
    }
}

/*@media screen and (max-width: 430px) {*/
/*    .hero {*/
/*        height: 250px;*/
/*        margin-top: 255px;*/
/*    }*/
/*}*/

/*-------------------------------*/
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.banner-dot.active {
    background: #fff;
}