*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    /* width: 100vw; */
    width: 100%;
    background-color: #ddedf7;
    /* background-color: #ddedf7; */
}

header{
    padding:12px 24px;
    background-color: #fff;
}

section.banner{
    display: flex;
    height: 450px;
    justify-content: space-between;
    color:#fff;
    /* background-color: #1e8ccc; */
    background: rgb(0,42,51);
background: linear-gradient(0deg, rgba(0,42,51,1) 0%, rgba(0,85,102,1) 25%, rgba(30,140,204,1) 100%);
    padding:12px 64px;
}


section.banner .caption {
    width:60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 24px;
}

section.banner .caption h1{
    font-size: 36px;
}

/* section.banner .caption .bottle-names{
    font-size:32px;
} */
section.banner .caption .bottom video{
    width: 60%;
}

section.banner .image{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 8px;
    width: 40%;
    font-size:26px;
    background-image: url('img/banner-bottle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.colors{
    display: flex;
    gap:25px;
}

.color{
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 5px solid #ddedf7;
}

.color.black {background-color: #000;}
.color.blue {background-color: #2b62ae;}
.color.white {background-color: #fff;}
.color.red {background-color: #ed3842;}

section.content{
    display: flex;
    justify-content: space-between;
    /* gap:80px; */
    background-color: #ddedf7;
    color:#15233d;
    padding:36px 22px;
}

section.content .image{
    /* height: 380px; */
    width: 30%;
}

section.content .bottles{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap:24px;
}
section.content .bottles .row{
    display: flex;
    justify-content: space-around;
}

section.content .bottles .bottle{
    display: flex;
    flex-direction: column;
    gap:8px;
    justify-content: center;
    align-items: center;
    width: 33%;
}

section.content .bottles .bottle img{
    /* height: 190px; */
    max-height: 190px;
}

section.content .bottles .bottle span{
    background-color: #1e8ccc;
    padding:4px 8px;
    color: #fff;
    border-radius: 8px;
    width:100px;
    text-align: center;
}

section.content .bottles .bottle span a{
    color:#fff;
    text-decoration: none;
}

section.content .div{
    width:50%;
}

section.content .text{
    display: flex;
    flex-direction: column;
    gap:80px;
    width: 60%;
}

section.content .text .top p{
    font-size:22px;
}

.prices{
    display: flex;
    flex-direction: column;
    gap:32px;
    font-size: 24px;
}

.table{
    display: flex;
    flex-direction: column;
    gap:8px;
    font-size: 22px;
}

.table .row{
    display: flex;
    gap:8px;
    align-items: center;
}

.row .title{
    width: 120px;
}

.row .quantity{
    background-color: #16234c;
    color: #fff;
    width: 120px;
    padding: 12px 24px;
    text-align: center;
}

.top-left{
    border-top-left-radius: 12px;
}
.top-right{
    border-top-right-radius: 12px;
}
.bottom-left{
    border-bottom-left-radius: 12px;
}
.bottom-right{
    border-bottom-right-radius: 12px;
}

.row .price{
    background-color: #454f70;
    color:#fff;
    width: 120px;
    padding: 12px 24px;
}

footer{    
    /* position: absolute; */
    padding:12px 24px;
    width: 100%;
    bottom: 0;
    font-size: 22px;
    text-align: right;
    color:#15233d;
}

@media(max-width: 1120px){
    section.content .image{
        width: 50%;
    }
    section.content .text{
        width: 50%;
    }

    .row .title{
        width: 100px;
        font-size: 18px;
    }

    .row .price, .row .quantity{
        width: 100px;
        font-size: 18px;
    }
}

@media(max-width: 790px){
    section.banner {
        flex-direction: column;
        padding: 8px 16px;
        gap:12px;
        height: auto;
    }

    section.banner .caption{
        display:block;
        gap:22px;
    }
    
    section.banner .caption h1 {
        font-size:22px;
    }
    
    section.banner .caption, section.banner .image, section.banner .caption .bottle-names{
        width: 100%;
        font-size: 18px;
    }
    
    section.banner .caption .bottom video{
        display:block;
        width: 100%;
    }

    section.banner .image{
        background: none;
        align-items: start;
    }

    .colors{
        width: 100%;
    }

    .color{
        /* content: '';
        width: 50px;
        height: 50px;
        border-radius: 999px;
        border: 5px solid #ddedf7; */
        width: 40px;
        height: 40px;
    }

    section.content {
        flex-direction: column;
        padding: 8px 12px;
        gap:40px;
    }

    .row .title {
        width: 120px;
    }

    .row .quantity, .row .price {
        padding: 2px 4px;
        width: 80px;
        text-align: center;
    }

    section.content .text {
        gap: 20px;
    }

    .row{
        font-size:14px;
    }

    section.content .image, section.content .text{
        /* display:none; */
        width: 100%;
    }

    footer{
        position: relative;
    }
}

@media(max-width: 330px){
    section.content .bottles .row{
        flex-direction: column;
    }

    section.content .bottles .bottle {
        width: 100%;
    }
}