*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
}
.logo{
    width: 30px;
    cursor: pointer;
    margin: 30px 0;
}
.logo-2{
    cursor: pointer;
}
.menu-icon{
    width: 25px;
    cursor: pointer;
    display: none;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
nav ul li a{
    text-decoration: none;
    color: rgb(56, 35, 35);
    font-size: 14px;
}
nav ul li a:hover{
    color: #4b0303;
}
.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
}
.col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col-1 h2{
    font-size: 75px;
}
.col-1 h3{
    font-size: 30px;
    color: #474747;
    font-weight: 100;
    margin: 20px 0 10px;
}
.col-1 p{
    font-size: 18px;
    color: #070707;
    font-weight: 100;
}
.col-1 h4{
    margin: 30px 0;
    font-size: 20px;
}
button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #a51919, #500601);
    border-radius: 4rem;
    cursor: pointer;
    transition: 0.5s;
}
button img{
    width: 30px;
    display: none;
}
button:hover img{
    display: block;
}
button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col-1::after{
    content: "";
    width: 10px;
    height: 57%;
    background: linear-gradient(#a1103a, #300401);
    position: absolute;
    left: -40px;
    top: 8px;
}
.col-2{
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}
.col-2 .drink{
    width: 92%;
}
.color-box{
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(#964242, #551510);
    border-radius: 20px 0 0 20px;
    height: 90%;
    width: 100%;
    z-index: -1;
    transform: translateX(150px);
}
.add-btn img{
    width: 50px;
    margin-bottom: 2px;
}
.add-btn{
    text-align: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
}
@media only screen and (max-width:700px){
    nav ul{
        width: 100%;
        background: linear-gradient(#964242, #551510);
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        text-decoration: none;
        color: rgb(223, 223, 223);
        font-size: 14px;
    }
    nav ul li a:hover{
        color: #350303;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        overflow: hidden;
        transition: 0.5s;
    }
    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2{
        flex-basis:100%;
        margin-bottom: 10px;
    }
    .col-2 .drink{
        width: 80%;
    }
    .color-box{
        transform: translateX(75px);
    }
    .col-1{
        flex-basis: 100%;
    }
    .col-1 h2{
        font-size: 40px;
    }
    .col-1 h3{
        font-size: 20px;
    }
}