
/* Main CSS
***********************************************/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-weight:500;
}

p,a,span{
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
}

h1{
	font-size:32px;
}

h2{
	font-size:28px;
}

h3{
	font-size:24px;
}

h4{
	font-size:22px;
}

h5{
	font-size:18px;
}

h6{
	font-size:14px;
}

p{
	font-size:16px;
}

.size_18{
	font-size: 22px;
}

body{
	background:#FFF;
}

img {
	width:100%;
}
.common{
	padding: 80px 0;
}

.breadcrumbs ul{
	list-style-type:none;
	margin-left:0;
	padding-left:0;
}

.breadcrumbs ul li{
	display:inline;
}

.blog-post-tags ul, .blog-item-tags ul, .blog-feature-tags ul{
	list-style-type:none;
	margin-left:0;
	padding-left:0;
}

.blog-post-tags ul li, .blog-item-tags ul li, .blog-feature-tags ul li{
	display:inline;
}

.animate{
	-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
}

.vertical_center {
    display: table;
    height: 100%;
    width: 100%;
}
.middle {
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
}

/*video responsive*/

.video{
 position:relative;
 width:100%;
 }
.video_iframe{
    overflow: hidden;
    padding-top: 56%;
} 
.video iframe{
 height: 100%;
    left: 0;
 top:0;
    position: absolute;
    width: 100%;
 }

	
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-ms-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
 

/*-------- header ---------*/


.custom-navbar{
    background: linear-gradient(90deg,#ff2b2b,#ed1c24);
    min-height: 54px;
}

.custom-navbar .navbar-nav{
    gap: 10px;
}

.custom-navbar .nav-link{
    color:#fff !important;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    padding:16px 10px !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active{
    color:#ffd700 !important;
}

.custom-navbar .dropdown-toggle::after{
    font-size:12px;
    vertical-align:middle;
}

.dropdown-menu{
    border-radius:0;
    border:none;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

/*-----slider -----*/

.slider{
	background: #eeeeee;
}
.slider h2{
	font-size: 50px;
}
.carousel-caption {
  bottom: 0;
  color:#212529;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


.category-card{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.category-card img{
    width: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.category-card:hover img{
    transform: scale(1.05);
}

.category-card span{
    position: absolute;
    left: 15px;
    bottom: 12px;
    color: #f5e6b3;
    font-size: 20px;
    font-style: italic;
    font-family: "Trebuchet MS", serif;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
}



.review-card{
    background:#f8f7f4;
    border:1px solid #5f524d;
    border-radius:14px;
    text-align:center;
    padding:15px;
    min-height:200px;
}

.stars{
    color:#f45b5b;
    font-size:28px;
    letter-spacing:3px;
    line-height:1;
}

.review-card h4{
    margin:5px 0;
    font-size:20px;
    color:#4f433f;
    font-weight:700;
}

.review-card p{
    margin-bottom:8px;
    color:#4f433f;
    font-size:16px;
}

.reviewer{
    color:#8a7f7b;
    font-size:15px;
    margin-bottom:10px;
}

.review-card img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin:8px auto;
    display:block;
}

.product-name{
    font-size:15px;
    color:#3f3633;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.carousel-control-prev,
.carousel-control-next{
    width:5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter:invert(45%);
}



/*----------- contact ---------------*/


.contact_us input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: "Gotham A", "Gotham B";
}
.contact_us textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: "Gotham A", "Gotham B";
}
.submit_button {
  background:#004a67;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  border: none !important;
  margin-bottom: 40px;
  font-size: 16px !important;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.submit_button:hover {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background:#00425c;
}



/*----------- footer ---------------*/

.footer-section{
    background:#5b0000;
    padding:25px 0 10px;
    color:#fff;
    text-align:center;
}

.footer-menu{
    list-style:none;
    padding:0;
    margin:0 0 20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 35px;
}

.footer-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.footer-menu li a:hover{
    color:#f0c36d;
}

.footer-section hr{
    border:none;
    border-top:2px solid rgba(255,255,255,.8);
    margin:18px auto;
    max-width:80%;
    opacity:1;
}

.footer-contact{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    font-size:18px;
    font-weight:700;
}

.footer-contact .phone{
    font-size:20px;
}

.footer-contact .social a{
    color:#fff;
    font-size:34px;
    margin-left:10px;
    text-decoration:none;
}

.copyright{
    font-size:18px;
    font-weight:700;
}

@media(max-width:768px){

    .footer-menu{
        gap:10px 20px;
    }

    .footer-contact{
        font-size:15px;
    }

    .footer-contact .phone{
        font-size:16px;
    }

    .copyright{
        font-size:14px;
    }
}
/*===========================================*/
/*------------- Media Queries ---------------*/
/*===========================================*/

/* up to 1200px width
********************************/
@media (max-width: 1200px) {


}


/* up to 1100px width
********************************/
@media (max-width: 1100px) {


}


/* up to 1000px width
********************************/
@media (max-width: 1000px) {


}


/* within 979px to 768px width
********************************/
@media (min-width: 768px) and (max-width: 979px) {


}


/* less than 979px width
********************************/
@media (max-width: 979px) {


	
}


/* less than 900px width
********************************/
@media (max-width: 900px) {

}


/* less than 800px width
********************************/
@media (max-width: 800px) {

}


/* less than 767px width
********************************/
@media (max-width: 770px) {

body{
	padding-left:0;
	padding-right:0;
	}
	

}


/* less than 640px width
********************************/
@media (max-width: 640px) {

}


/* less than 570px width for iphone 5
********************************/
@media (max-width: 570px) {

}



/* less than 480px width
********************************/
@media (max-width: 480px) {

}


/* less than 420px width
********************************/
@media (max-width: 400px) {



}
