/*=========================================
    SIGNATURE COCKTAIL SECTION
=========================================*/

.bb-signature{
    background:#000;
    color:#fff;
    padding:100px 0;
    overflow:hidden;
}

.bb-signature .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.bb-signature-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/*=========================================
    LEFT CONTENT
=========================================*/

.bb-signature-text{
    flex:1;
}

.bb-tag{
    display:inline-block;
    color:#ff5a2f;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.bb-signature-text h2{
    font-size:64px;
    font-weight:500;
    line-height:1.1;
    margin-bottom:35px;
}

.bb-signature-text p{
    font-size:18px;
    line-height:1.8;
    color:#d7d7d7;
    max-width:520px;
    margin-bottom:45px;
}

.bb-signature-btn{
    display:inline-block;
    padding:18px 42px;
    background:#ff5a2f;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.bb-signature-btn:hover{
    background:#fff;
    color:#000;
}

/*=========================================
    RIGHT IMAGE
=========================================*/

.bb-signature-slider{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:550px;
}

.bb-signature-slider img{
    width:100%;
    max-width:320px;
    max-height:500px;
    object-fit:contain;
    transition:0.4s ease;
}

/*=========================================
    ARROWS
=========================================*/

.bb-prev,
.bb-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    background:#ffffff;
    color:#000;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
    z-index:10;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.bb-prev:hover,
.bb-next:hover{
    background:#ff5a2f;
    color:#fff;
}

.bb-prev{
    left:20px;
}

.bb-next{
    right:20px;
}

/*=========================================
    FLOAT ANIMATION
=========================================*/

.bb-signature-slider img{
    animation:floatDrink 5s ease-in-out infinite;
}

@keyframes floatDrink{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*=========================================
    TABLET
=========================================*/

@media(max-width:992px){

.bb-signature{
    padding:80px 0;
}

.bb-signature-content{
    flex-direction:column-reverse;
    text-align:center;
    gap:40px;
}

.bb-signature-text h2{
    font-size:46px;
}

.bb-signature-text p{
    max-width:100%;
    margin:auto;
    margin-bottom:35px;
}

.bb-signature-slider{
    width:100%;
    min-height:400px;
}

.bb-signature-slider img{
    max-width:250px;
    max-height:360px;
}

.bb-prev{
    left:10%;
}

.bb-next{
    right:10%;
}

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:768px){

.bb-signature{
    padding:60px 0;
}

.bb-signature .container{
    width:92%;
}

.bb-signature-content{
    gap:30px;
}

.bb-tag{
    font-size:14px;
}

.bb-signature-text h2{
    font-size:36px;
}

.bb-signature-text p{
    font-size:15px;
    line-height:1.7;
}

.bb-signature-btn{
    padding:15px 30px;
    font-size:13px;
}

.bb-signature-slider{
    min-height:300px;
}

.bb-signature-slider img{
    max-width:200px;
    max-height:280px;
}

.bb-prev,
.bb-next{
    width:45px;
    height:45px;
    font-size:15px;
}

.bb-prev{
    left:0;
}

.bb-next{
    right:0;
}

}

/*=========================================
    SMALL MOBILE
=========================================*/

@media(max-width:480px){

.bb-signature{
    padding:50px 0;
}

.bb-tag{
    font-size:13px;
}

.bb-signature-text h2{
    font-size:30px;
    margin-bottom:20px;
}

.bb-signature-text p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:30px;
}

.bb-signature-btn{
    width:100%;
    text-align:center;
    padding:15px;
}

.bb-signature-slider{
    min-height:250px;
}

.bb-signature-slider img{
    max-width:160px;
    max-height:220px;
}

.bb-prev,
.bb-next{
    width:40px;
    height:40px;
}

}