:root {
    --main-color: #c19b61;
    --back-color: #252525;
    
    
}

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

}



@font-face {
    font-family: 'neuton';
    src: url(../libs/fonts/Neuton/neuton.ttf);
}

@font-face {
    font-family: 'nunito';
    src: url(../libs/fonts/Nunito/Nunito.ttf);
}

.maintextcolor{
    color: var(--main-color);
}

.backtextcolor{
    color: var(--back-color);
}

body{
    width: 100%;
    font-family: neuton;
    background-color: #ccc;
    /* background: var(--back-color); */
}

.flexdisplay{
    display: flex;
    justify-content: center;
    align-items: center;
}

.customnavbar{
    background: var(--main-color);
}

#banner{
    
    height: 100vh;
    position: relative;
}

.bannerbtn{
    /* width: 250px; */
    background: var(--main-color);
    font-family: nunito;
}

.bannercontainer{
        width: 100%;
        height: 100vh;
        background-image:linear-gradient(
            125deg,
            #252525 0%,
            #252525 40%,
            transparent 40%
        ), url('../img/banner6.jpg');
        /* background-image: url('../img/banner2.jpeg'); */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        
    
}

.bannertextcontainer{
    position: absolute;
    left: 5%;
    top: 20%;
}

.bannercontainer p{
    font-family: nunito;
    font-size: 20px;
}

#aboutus{
    height: auto;
   
    padding: 20px 0;
}

#aboutus .row{
    height: 100%;
}

.aboutustext{
    font-size: 16px;
}

.aboutustextcontainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 80px;
}

.aboutusphotocontainer{
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#brand{
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
}

.swiper-button-prev:after,.swiper-button-next:after{
    font-size: 30px;
    font-weight: bold;
    color: white;
  }
  
.swiper-button-next, .swiper-button-prev{

opacity: 80%;
transition: 0.6s;
font-size: 100px;
color: white;
}
.swiper-button-next:hover,.swiper-button-prev:hover{
opacity: 80%;
}

#menu{
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.menutext{
    font-size: 30px;
    
}

.menucontainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.customMenu{
    list-style-type: none;
    display: flex;

}

.menuItem{
    margin: 10px;
    transition: all 0.3s ease;
    
}

.menuItem.active{
    border-bottom: 3px solid #c19b61;
}

.menuphotocontainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.promotionbanner{
    width: 100%;
    height: 50vh;
    background: url(../img/promotion.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promotiontext{
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    top: 35%;
    left: 10%;
}

.promotionbtn{
    background: var(--main-color);
}

#adventages{
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;

}

.lines{
    width: 100px;
    height: 3px;
    background: var(--main-color);
}

.adventagescontent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.adventageparagraph{
    font-size: 16px;
    padding: 10px;
}

#promotionbox{
    height: 80vh;
  
    
}

#promotionbox .row{
    height: 100%;
}

.promotionboxone,.promotionboxtwo{
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--main-color);
}




.promotionboxtwo {
    position: relative;
    background: url(../img/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.promotionboxtwo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust the last parameter (0.5) for the desired level of transparency */
}


.promotionboxone .lines{
    background-color: white;
}

.promotionboxonebtn{
    background-color: white;
}

.promotionboxtwobtn{
    color: white;
    background-color: var(--main-color);
}


#footer{
    width: 100%;
    background-color: var(--back-color);

}



.menucontainertwo{
    height: auto;
    
}

.menucontainertwo .row{
    height: 100%;
}




.menutextcontainer ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ccc; /* Add a border between each item */
}

.menutextcontainer ul  li:last-child {
    border-bottom: none; /* Remove the border for the last item */
}

