@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.opacity-0{
    opacity: 0;
}
header{
    background-color: #f0f0df;
}
.manu_box{
    max-width: 1140px;
    margin: auto;
    display: flex;
}
.logo-box{
    padding: 10px;
}
.menu-box .lap-menu {
    list-style: none;
    /* display: flex; */
    justify-content: end;
    align-items: center;
    margin-bottom: 0; 
    gap:2.7%;
    margin-right: 10px;
    display: none;
    width: 100%;
}
.menu-box{
    display: flex;
    justify-content: end;
}



.mob-menu li a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #777;
    text-transform: uppercase;

}
.lap-menu li a{
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    text-transform: uppercase; 

}
.mob-menu {
    list-style: none;
    background-color: white;
    width: 100vw;
    position: absolute;
    top: 0;
    padding: 75px 15px 15px 15px;
    transition: all 1s ease-in;
    min-height: 100vh;
    z-index: 33;
  
 
   
}




.mob-menu li{
    border-top: 1px solid #f0f0df;
    padding-top: 10px;
    /* padding-left: 15px; */
    padding-bottom: 10px;
}
.mob-menu .mdropdown{
    border-top: 1px solid #f0f0df;
    padding-top: 0px;
    /* padding-left: 15px; */
    padding-bottom: 0px;
}
.mob-menu li .mdropdown_anchor{
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hamburger_box{
    padding-left: 25px;
    padding-top: 10px;
    z-index: 99999;
}
.hamburger_conatiner{
    height: 20px;
    right: 20px;
}

.hamburger_icon{
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
   margin: 6px 0px 6px 0px;
   transition: all 0.4s ease-in;
}
.hamburger_icon-before {
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: all 0.4s ease-in;
    transform: rotate(-0);

}
.hamburger_icon-after{
   width: 20px;
   height: 2px;
   background-color: #333;
   margin-top: 12px;
   transition: all 0.4s ease-in;
   transform: rotate(0);

}
.hamburger_icon-before_active{
    transform: rotate(-45deg);
    top: 5px;
}
.hamburger_icon-after_active{
    transform: rotate(45deg);
    top: -7px;
}



.footer_upper_conatiner{
    background-color: #202020;
    padding-top: 80px; 
    padding-bottom: 30px;
}

.f_logo-box img{
    width: 60%;
    max-width: 60%;
}
.f_logo_text{
    color: WHITE;
    opacity: 0.8;
    line-height: 27px;
    font-size: 14px;
    margin-top: 20px;
}
.f_social_box{
    display: flex;
    gap: 5%;
 
}
.f_social_icon{
    aspect-ratio: 1/1;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
footer p{
    margin-bottom: 30px;
}

.fs_heading{
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
.fs_heading::before{
    width: 40px;
    height: 2px;
    content: "";
    position: absolute !important;
    top:45px;
    z-index: 0;
    margin: auto;
    background: #ce9e51;
    opacity: 0.8;
}

.f_menu{
    list-style: none;
    color: white;
    margin-top: 35px;
    opacity: 0.8;
    font-weight: 400;
    font-size: 14px;
}
.f_menu li{
    padding-top:15px;
}
.f_button{
    width: 100%;
    padding:10px 0px 10px 0px;
    background-color: #ff7c33;
    font-size:15px;
    font-weight: 500;
    color: white;
    border-radius: 20px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
}

.footer_bottom_conatiner{
    background-color: #0c0c0c;
    padding: 30px 0 40px 0;
    font-size: 14px;
}

.breadcrumb{
    background:transparent;
}
.breadcrumb a{
    color:#bdd3de;
}
.product_tb{
    font-size: 15px;
    padding: 5px 5px 5px 5px;
    border: 1px solid black;
    border-radius: 5px;
    margin-top:10px;
    cursor: pointer;
   
}
.tb-active{
    background:#262a46;
    color: white;
}

.rating_star{
     color: #262a46;
    font-size: 15px;
    padding-top: 8px;
    font-weight: bold;
    margin-bottom: 5px;
}
.mini_heading1{
     color: #262a46;
    font-size: 18px;
    
    font-weight: bold;
}
.mini_heading2{
     color: #262a46;
    font-size: 16px;
    font-weight: bold;
}
.mini_desc1{
     color: #262a46;
    font-size: 16px;
    font-weight: bold;
}
.mini_desc2{
     color: #262a46;
    font-size: 16px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .logo-box{
        width:50%;
    }
    .menu-box{
        width: 50%;
    }
    
}
@media (min-width: 769px) {
    .logo-box{
        width:20%;
    }
    .menu-box{
        width: 80%;
    }
    
 
}

@media (min-width: 992px) {

.product_img img{
    max-height: 280px ;
    object-fit: cover ;
}

  }

@media (min-width: 768px) and (max-width:991px) {

.product_img img{
    max-height: 230px ;
    object-fit: cover ;
}

  }

@media (min-width: 576px) and (max-width:767px) {

.product_img img{
    max-height: 230px ;
    object-fit: cover ;
}

  }
  
  @media (max-width: 575px){

.product_img img{
    max-height: 180px ;
    object-fit: cover ;
}

  }




@media (max-width: 992px) { 
    .hamburger_conatiner{
        display: block;
       }
    .hamburger_box{
        display: block;
       }

 }
@media (min-width: 992px) { 
    .menu-box .lap-menu{
        display: inline-flex;
    }
   .hamburger_conatiner{
    display: none;
   }
   .hamburger_box{
    display: none;
   }
   .product_img img{
    max-height: 270px !important;
    object-fit: cover !important;
}
 }

@media (max-width: 1200px) {


  }


.first_heading{
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4em;
}
.second_heading{
    color: #000000;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4em;
}
.text1{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@media only screen and (max-width: 576px) {
    .text1 {
        font-size: 0.8rem !important;
    }   
    body{
        font-size: 0.8rem !important;
    }
    .btn{
        font-size: 0.8rem !important;
        padding:0.275rem .3rem !important;
        font-size:0.8rem !important;
    }
    td{
        padding: 0.5rem !important;
    }
  }

.bg-blue{
    background-color: #00004e !important;
    color: white !important;
}

.admin-menu li a{
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #262a46;
    text-transform: uppercase;
    padding: 10px;
    background-color: #f0f0df;
    border-radius: 3px;
}

.select-box{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.error-message{
    color:rgb(247, 0, 0);
    background:#e4d5d5;
    border-radius: 5px;
}

.uperror-message{
    color:rgb(247, 0, 0);
    background:#e4d5d5;
    border-radius: 5px;
}
.success-message{
    color:rgb(255, 255, 255);
    background:#63bb57;
    border-radius: 5px;   
}
.fa-solid{
    font-size:12px !important;
}
.logout_btn{
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    padding: 8px 15px 0px 15px;
    background: #00004e;
    border-radius: 7px;
        }
/*.rating_box {*/
/*    margin-top:-36%;*/
/*}*/

