*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --heading-font:"Montserrat", sans-serif;
    --paragraph-font:"Lato",sans-serif;
    --text-color-white: #ffffff;
    --text-black: rgb(69,62,62);
}
a{
    text-decoration: none;
}

li{
    list-style: none;
}


/* ==============  HERO ====================== */



.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
    z-index: 2;
  }

  .hero-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 3;
  }

  .hero-text>h2 {
    font-size: 81px;
    font-family: "Poppins",sans-serif;
    font-weight: 800;
    line-height: 85px;
    margin-top: 50px;
    letter-spacing: -2px;
  }


/* =============== FOOTER ===================== */

.footer{
    position: relative;
    background: #4D0012;
    margin-top: 150px;
}

.top_footer{
    padding: 80px 40px 80px 40px;
    position: relative;
}

.footer_section{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    justify-content: center;
    gap: 20px;
}

.footer_item:nth-of-type(1){
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_item img{

}

.footer_item h2{
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--text-color-white);
    margin-bottom: 20px;
}

.footer_item p ,.footer_section ul li a{
    font-size: 14px;
    font-weight: 400;
    font-family: var(--paragraph-font);
    color: var(--text-color-white);
    line-height: 26px;
}

.footer_section ul li a:hover{
    color: #cf2e2e;
}


.copyright{
    display: flex;
    align-items: center;
    padding: 40px;
    border-top: 1px solid #453e3e;
}

.copyright_wrapper{
    display: flex;

    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    line-height: 26px;
}

.copyright_wrapper p{
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.bottle_image{
    position: absolute;
    right: 0;
    top: -50%;
}


/* =============PRODUCT TYPE ============= */

.products_type{
    position: relative;
}

.type_container{
    padding: 90px 25px;
}
.type_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.type-item{
    overflow: hidden;
    margin: 15px;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
}

.img-type img{
    object-fit: cover;
    width: 100%;
    height: auto;
}

.type-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.type-content h2{
    padding-bottom: 20px;
    color: #2B161B;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.4;
    font-size: 24px;
}

.type-content p{
    padding: 0 15px 15px;
    margin-bottom: 1em;
    color: #2B161B;
    font-weight: var(--text-black);
    font-family: var(--paragraph-font);
    line-height: 1.4;
    font-size: 17px;
    line-height: 26px;
}



/* =================== ABOUT ================= */

.about_us{
    background: url(../img/BS-Images/about.jpg) center / cover no-repeat;
    position: relative;
}

.about-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #3B2E2E;
    opacity: 0.53;
}

.about_container{
    padding: 90px 35px;
    position: relative;
}

.about_wrapper{
    margin-right: auto;
    margin-left: auto;
    max-width: 600px;
    text-align: center;
}

.about_wrapper h2{
    font-size: 40px;
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 52px;
    color: #ffffff;
}

.about_wrapper p{
    font-size: 17px;
    font-family: var(--paragraph-font);
    font-weight: 500;
    line-height: 32px;
    color: rgb(218, 213, 213);
    padding-top: 10px;
    padding-bottom: 20px;
    position: relative;
}

.read_btn{
    position: relative;
    margin-top: 20px;
}
.read_btn a{
    color: #ffffff;
    border: 1px solid #ffffff;
    background: transparent;
    padding: 14px 25px;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 12px;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--heading-font);
    display: inline-block;
}



/* ========== GLOBAL PART  =================== */

.global_part{
    background: url(../img/BS-Images/Untitled-design-39-2.png) center/cover no-repeat;
    height: 90vh;
    margin-bottom: 80px;
}

.global_part_wrapper{
    /* max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 100%;
    padding: 20px; */
    display: grid;
    grid-template-columns: repeat(2,1fr);
    height: 100%;
}

.txt_global{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 85%;
}

.txt_global h2{
    font-size: 40px;
    color: #0B0000;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 52px;
    margin-bottom: 30px;
}

.txt_global p{
    font-size: 17px;
    color: rgb(62, 62, 62);
    font-weight: 400;
    font-family: var(--paragraph-font);
    line-height: 32px;
}


/* ===================== SERVICES TITTLE====================== */

.services_tittle_wrapper{
    background: url(../img/BS-Images/service-bg.jpg) bottom center / cover no-repeat;
    position: relative;
    padding: 105px 0;
}

.tittle_services-overlay{
    position: absolute;
    background: #2B161B;
    opacity: 0.73;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.services_tittle{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    padding-left: 30px;
}

.tittle_txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.tittle_txt h6{
    color: rgb(255, 255, 255);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 22px;
    font-weight: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tittle_txt h2{
    color: rgb(255, 255, 255);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    font-size: 48px;
    text-transform: capitalize;
}


.services_content{
    position: relative;
}

/* ==========SERVICES ========= */


.services{
    position: relative;
    padding-top: 120px;
}

.services_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services_content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
    gap: 50px;
}

.services_img{
    padding-left: 30px;
}

.services_txt{
    padding-right: 20px;
}

.services_img img{
    width: 100%;
    position: relative;
    height: auto;
}

.services_txt p{
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    color: rgb(43, 22, 27);
}

.contact_btn{
    padding-top: 30px;
    display: inline-block;
}

.contact_btn a{
    padding: 14px 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #2B161B;
    border: 2px solid #2B161B;
    display: inline-block;
    margin-bottom: 40px;
}

.services_txt h2{
    position: relative;
    font-family: var(--paragraph-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}


/* =============================== OUR STORY=================== */

.our_story{
    position: relative;
    background-color: #2B161B;
    padding: 120px 30px;
    margin-top: 80px;
}

.story_wrapper{
    grid-template-columns: repeat(3,1fr);
    display: grid;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.story_txt{
    grid-column: 1/3;
    padding-right: 180px;
}

.icon_story i{
    background-color: #f0f0f0;
    color: #212121;
    font-size: 32px;
    padding: 20px;
    border-radius: 5% 5% 5% 45%;
    margin-bottom: 30px;
}



.story_txt h2{
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 40px;
}

.story_txt p{
    font-family: var(--paragraph-font);
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    line-height: 32px;
    padding-bottom: 50px;
    border-bottom: 1px solid grey;
}

.story_img img{
    height: auto;
    width: 100%;
    border-radius: 3% 3% 3% 40%;
}




/* ============ WINE =========== */

.wine{
    background-color: #f7f3f5;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0;
}

.wine_container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1200px;
}

.wine_wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,1fr);
    column-gap: 20px;
    row-gap: 20px;
    position: relative;
    padding: 20px;
}

.beer_wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 20px;
    position: relative;
    padding: 20px;
}

.wine_item{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wine_img{
    width: 100%;
    position: relative;
    /* height: 420px; */
    /* background-color: #ffffff; */
}

.wine_img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wine_item:nth-of-type(7) .wine_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ================= HEADER  ======================== */

.header{
    position: absolute;
    right: 0;
    left: 0;
    background: transparent !important;
    width: 100%;
    z-index: 99;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.navbar_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 30px 30px;
}

.left_navbar{

}

.logo img{

}

.right_navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-items{
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links .nav-list{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
}

.nav-links .nav-list li a{
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--paragraph-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 70px;
    transition: color 0.3s ease-in;
    position: relative;
}

.nav-links .nav-list li:hover .drop_down{
    transform: rotateX(0deg);
    opacity: 1;
}


.nav-links .nav-list li a i{
    font-size: 12px;
}

.nav-links .nav-list li a:hover{
    color: rgba(255, 255, 255);
}

.drop_down{
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 220px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    border-top: 2px solid #EF4D48 ;
}

.drop_down .drop-items{
    display: block;
    color: black !important;
    width: 100%;
    padding: 15px 35px;
    position: relative;
    line-height: 20px !important;
}

.drop_down .drop-items:hover{
    color: #D90700 !important;
}



.btn_contact{
    margin-left: 45px;
}

.btn_contact a{
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #ffffff;
    padding: 14px 25px;
    font-family: var(--paragraph-font);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
}

.hamburg{
    display: none;
    z-index: 888;
}




/* WRAP MENU BAR */

.menu_back_filter{
    background-color: #776e6ebd;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 8;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition:all 0.7s ease;
}

.menu_wrap_container{
    background-color: white;
    top: 0;
    right: -100%;
    position: fixed;
    z-index: 99;
    width: 300px;
    max-width: 100%;
    height: 100%;
    /* visibility: hidden; */
    transition:all 0.4s ease-out;
    cursor: pointer;
}

.menu_wrap{
    display: flex;
    flex-direction: column;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
}
/* .wrap_logo_btn{
    position: relative;
} */

.wrap__close_btn{
    position: absolute;
    font-size: 22px;
    top: 20px;
    right: 30px;
    text-align: center;
    display: flex;
    color: red;
    z-index: 40;
}

.nav_wrap_logo{
    padding: 20px 25px;
    position: relative;
}
.nav_wrap_logo a img{
    height: 80px;
    object-fit: contain;
}

.menu_container{
    margin-top: 80px;
}

.menu_list{
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
    width: 100%;
}

.menu_list li{
    border-top: 1px solid rgba(0, 0, 0, 0.192);
    display: block;
    position: relative;
}

.menu_list li a{
    text-decoration: none !important;
}

.menu_list li>a{
    display: block;
    padding: 10px 20px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.menu_list li>a:hover{
    color: #22aa11;
}


/* ====================  bREADCRUMB =================== */


 .breadCrumb{
    position: relative;
    padding-top: 200px;
}

.bread-img{
    background: url(../img/BS-Images/bread-about.jpg) center / cover no-repeat;
}

.contact_breadcrumb{
    background: url(../img/BS-Images/bread-contact.jpg) center / cover no-repeat;
}

.bread-beer{
    background: url(../img/BS-Images/bread-beer.jpg) center / cover no-repeat;
}

.breadcumb-overlay{
    background-color: #2B161B;
    opacity: 0.56;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.breadcrumb_txt{
    position: relative;
    padding: 20px;
    padding-bottom: 120px !important;
}

.breadcrumb_txt h2{
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    font-family: var(--heading-font);
}


/* ============== CONTACT ======================= */

.contact{
    position: relative;
    background-color: #f7f3f5;
    /* padding: 80px 40px 80px 40px; */
}

.contact_container{
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact_info_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    padding: 104px 0px 104px 0px;
}

.contact_info_wrapper h6{
    font-size: 13px;
    letter-spacing: 2px;
    font-family: var(--heading-font);
    color: rgb(43, 22, 27);
    text-transform: uppercase;
    margin: 20px 0;
}

.contact_info_wrapper h6:nth-of-type(4){
    text-transform: lowercase;

}

.contact_info_wrapper h2{
    font-size: 48px;
    font-family: var(--paragraph-font);
    font-weight: 700;
    color: rgb(43, 22, 27);
    line-height: 1.3;
    text-align: center;
}

/* Contact form and map */

.contact_method_wrapper{
    display: grid;
    position: relative;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
    height: 100%;
}

.map_container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.map_wrapper iframe{
    width: 100%;
    height: 100%;
}

/* form */

.contact_form{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 120px 40px;
}

.contact_img{
    position: absolute;
    bottom: 90%;
    right: 0;
}

.contact_img img{
    width: 350px;
    height: auto;
}

.contact_form_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_form_wrapper h2{
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

.contact_form_wrapper p{
    font-size: 17px;
    font-weight: 400;
    font-family: var(--paragraph-font);
    margin-bottom: 20px;
    line-height: 32px;
    color: rgb(69, 62, 62);
}

.contact_form_wrapper input, .contact_form_wrapper textarea{
    color: #666;
    padding: 15px;
    height: auto;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--paragraph-font);
}

.contact_form_wrapper textarea{
    height: 120px;
}

.submit_btn a{
    border: 2px solid #2B161B;
    color: #2B161B;
    background-color: rgba(0, 0, 0, 0);
    padding: 14px 24px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    display: inline-block;
}


@media(max-width:968px){

    .wine_wrapper{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(2,1fr);
        position: relative;
    }

    .btn_contact{
        display: none;
    }

    .slide_item{
        flex: 0 0 50% !important;
    }

    .hero-text h2{
        font-size: 50px;
        padding: 0 10px;
        margin-top: 100px;
        line-height: 55px;
    }
}

@media(max-width:768px){
    .no_required{
        display: none;
    }
    .global_part_wrapper{
        grid-template-columns: 1fr;
    }
    .txt_global{
        margin-right: auto;
        margin-left: auto;
        position: relative;
    }

    .wine_wrapper{
        row-gap: 30px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .nav-items{
        display: none;
    }

    .hamburg{
        display: block;
        color: #ffffff;
        fill: #ffffff;
    }

    .type_wrapper{
        grid-template-columns: 1fr;
    }

    .txt_global{
        text-align: center;
    }

    .tittle_txt h2{
        font-size: 24px;
        width: 100%;
    }

    .services_tittle_wrapper{
        padding: 80px 0;
    }

    .tittle_txt h2 br{
        display: none;
    }

    .services_content{
        grid-template-columns: 1fr;
    }

    .services_txt,.services_img{
        padding: 15px;
    }

    .services_txt h2{
        font-size: 36px;
    }

    .bottle_image{
        top: -30%;
    }

    .breadcrumb_txt h2{
        font-size: 48px;
    }

    .contact_form{
        padding: 30px 60px 30px 30px;
    }

    .contact_method_wrapper{
        grid-template-columns: 1fr;
    }

    .contact_img{
        display: none;
    }

    .map_wrapper{
        height: 500px;
    }

    .contact_info_wrapper h2{
        font-size: 32px;
        margin: 0 20px;
    }

    .slide_item{
        flex: 0 0 100% !important;
    }

    .hero-text h2{
        font-size: 32px;
        padding: 0 10px;
        margin-top: 100px;
        line-height: 40px;
    }

    .copyright_wrapper{
        flex-direction: column;
    }

}


@media(max-width:450px){
    .bottle_image{
        top: -10%;
    }

    .bottle_image img{
        height: 200px;
    }

    .breadcrumb_txt h2{
        font-size: 32px;
    }
}



/* ====================PRODUCT SLIDE ======================= */

.product_slides{
    background-color: #f7f3f5;
}

.slider{
    position: relative;
    /* overflow: hidden; */
    width: 100%;
    padding: 30px 0;
}

.slider:nth-of-type(2){
    padding: 0 0 70px 0 !important;
}

.slider h2{
    font-size: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 30px 0;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    max-width: 1200px;
    line-height: 1.3;
    padding-left: 20px !important;
}

.slider_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   margin-left: auto;
   margin-right: auto;
   max-width: 1200px;
   overflow: hidden;
   background-color: #fff;
}

.slider_wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide_item{
    padding: 10px;
    position: relative;
    display: flex;
    flex: 0 0 20%;
    height: 430px;
    justify-content: center;
}

.slide_item img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.nav{
background: transparent;
border: none;
font-size: 28px;
color: #DDDDDD;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
padding: 10px;
}

.prev{
    left: 0;
}

.next{
    right: 0;
}
