/*==========================
    GLOBAL CSS START
==========================*/
:root{
    --primary-color: #B88E2F;
    --secondary-color: #3A3A3A;
    --third-color: #616161;
    --text-black: #000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.title-box h5{
    color: var(--third-color);
    font-weight: 600;
    text-transform: capitalize;
}
.title-box h2{
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: capitalize;
}
@media screen and (min-width:991px){
    .title-box h5{
        font-size: 20px;
    }
    .title-box h2{
        font-size: 40px;
    }
}
/* button */
.primary-btn-1{


    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 15px 35px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .6s;
    }
    .primary-btn-1:hover{
        color: #fff;
    border: 1px solid var(--secondary-color);
    }
    .primary-btn-1 span{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transition: all .6s;
    transform: translate(-50%, -50%);
    z-index: -1;
    }
    .primary-btn-1:hover span{
        width: 225%;
        height: 1000.5px;
    }


/* navbar */
.sticky1 {
    position: fixed !important;
    background: var(--primary-color);
    top: 0;
    width: 100%;
    z-index: 99999;
   opacity: 0;;
   transition: all .5s ease-in-out;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  .navbar.sticky1{
   opacity: 1;
  
  }
/*==========================
Hero CSS
==========================*/
.hero-section{
    position: relative;
}
.hero-section .hero-section-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    background: #FFF3E3;
    padding: 20px;
    width: 643px;
}
@media screen and (max-width:768px){
	.hero-section .hero-section-content{
    position: absolute;
    top: 50%;
    left: unset !important;
    transform: unset !important;
    background: #FFF3E3;
    padding: 20px;
    width: 100%;
}
}
.hero-section .hero-section-content h5{
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.hero-section .hero-section-content h2{
    color: var(--primary-color);
}
.hero-section .hero-section-content h2{
    font-weight: 700;
}
.hero-section .hero-section-content p{
    color: #333333;
    font-weight: 500;
    font-size: 18px;
}
@media screen and (min-width:991px){
    .hero-section .hero-section-content h2{
        font-size: 50px;
    } 
}
/*==========================
 Services CSS
==========================*/
.services .title-box p{
color: #666666;
}
.services .services-content{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 5px;
}
.services .services-content .card{
    border: none !important;
}
.services .services-content .card-body{
    background: #F6F6F6;
}
.services .services-content .services-img{
    overflow: hidden;
}
.services .services-content .services-img img{
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all .5s ease-in-out;
}
.services .services-content:hover img{
    transform: scale(1.1);
}
.services .services-content  .card-title a{
    color: var(--text-black);
    text-transform: capitalize;
    font-weight: 500;
    transition: all .5s ease-in-out;
}
.services .services-content  .card-title a:hover{
    color: var(--primary-color);
}
@media screen and (min-width:991px){
    .services .services-content  .card-title a{
        font-size: 24px;
    }
}
.services .services-content p{
    color: #717171;
    font-family: "DM Sans", sans-serif;
}
.services .services-content .services-btn{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    margin-left: auto;
}
.services .services-content .services-btn a{
    color: #fff;
}
/*==========================
 Filler CSS
==========================*/
.filler-section{
    background: #FCF8F3;
}
.filler-section .title-box p{
    color: #616161;
}
.filler-section .filler-section-img{
    position: relative;
}
.filler-section .filler-section-img img{
    width: 404px;
    height: 582px;
    object-fit: cover;
 
}
.filler-section .filler-section-text{
    background: #FFFFFFB8;
    position: absolute;
    bottom: 50px;
    left: 5%;
    padding: 20px;
}
.filler-section .filler-section-text p{
    color: #616161;
    font-weight: 500;
}
.filler-section .filler-section-text p span{
   position: relative;
   margin-right: 40px;
   margin-left: 10px;
}
.filler-section .filler-section-text .filler-section-arrow{
    background: var(--primary-color);
    padding: 10px;
    position: absolute;
    right: -25%;
    bottom: 0%;

}
.filler-section .filler-section-text .filler-section-arrow svg{
    color: #fff;
}
.filler-section .filler-section-text p span:before{
    content: '';
    position: absolute;
    width: 27px;
    height: 2px;
    background: #616161;
    top: 50%;
    /* transform: translateY(-50%); */
}
.filler-section .filler-img-wrapper .slick-dots{
    display: flex;
    margin-top: 10px;
   
}
.filler-section .filler-img-wrapper .slick-dots li{
    margin: 0 10px;
}
.filler-section .filler-img-wrapper .slick-dots li button{
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    border: none;
    background: #D8D8D8;
}
.filler-section .filler-img-wrapper .slick-dots .slick-active button{
    background-color: var(--primary-color);
}
.filler-section .filler-img-wrapper .filler-slide-img img{
    width: 100%;
    height: 486px;
    object-fit: cover;
}
.filler-section .filler-img-wrapper  .slick-dots .slick-active button{

    background: var(--primary-color);
    width: 10px;
    height: 10px;
    line-height: 15px;
    transform: translateY(2px);

}
.filler-section .filler-img-wrapper .slick-dots .slick-active button:before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid var(--primary-color);
    top: -25px;
    border-radius: 50px;
    margin-left: -15px;
    margin-top: 15px;
   
  
}
/*==========================
  Projects CSS
==========================*/
.projects .projects-wrapper{
    position: relative;
}

.projects .projects-wrapper .projects-img-1{
    width: 274px;
    height: 382px;
    left: 0;
    position: relative;
    object-fit: cover;
}
.projects .projects-wrapper .projects-img-2{
    width: 451px;
    height: 312px;
    /* left: -12%; */
    position: relative;
    margin-top: 69px;
}
.projects .projects-wrapper .projects-img-3{
    width: 381px;
    height: 323px;
    position: relative;
    object-fit: cover;
}
.projects .projects-wrapper .projects-img-4{
    width: 344px;
    height: 242px;
    position: relative;
    object-fit: cover;
}
.projects .projects-wrapper .projects-img-5{
    width: 100%;
    height: 392px;
    position: relative;
    object-fit: cover;
}
.projects .projects-wrapper .projects-img-6{
    width: 100%;
    height: 348px;
    position: relative;
    object-fit: cover;
}
.projects .projects-wrapper .projects-img-7{
    width: 100%;
    height: 433px;
    position: relative;
    object-fit: cover;
    /* right: -30%; */
}
.projects .projects-wrapper .projects-img-8{
    width: 100%;
    height: 242px;
    position: relative;
    object-fit: cover;
    /* right: -30%; */
}
.projects .projects-wrapper .projects-img-9{
    width: 100%;
    height: 196px;
    position: relative;
    object-fit: cover;
    /* right: -30%; */
}
/*==========================
  Testimonials CSS
==========================*/
.testimonials{
    background: #FCF8F3;
}
.testimonials .testimonials-content{
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    position: relative;
    margin-top: 50px;
}
.testimonials .testimonials-content .testimonials-content-img{
    position: absolute;
    left: 50%;
    top: -10%;
    transform: translateX(-50%);
    z-index: 9 !important;
}
.testimonials .testimonials-content .testimonials-content-img img{
width: 70px;
height: 70px;
border-radius: 50px;
}
.testimonials .testimonials-content .testimonials-content-profile h3{
    color: #292929;
    font-family: "Archivo", sans-serif;
}
.testimonials .testimonials-content .testimonials-content-profile p{
    color: #292929;
    font-family: "DM Sans", sans-serif;
}
.testimonials .testimonials-content .testimonials-content-text{
    color: #848484;
}
@media screen and (min-width:991px){
    .testimonials .testimonials-content .testimonials-content-profile h3{
        font-size: 22px;
    } 
}
.testimonials .testimonials-wrapper .slick-dots{
    font-size: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    display: flex;
}
.testimonials .testimonials-wrapper .slick-dots li button{
    width: 15px;
    height: 15px;
    background: #D9D9D9;
    border-radius: 50px;
    border: none;
    margin-left: 15px;
}
.testimonials .testimonials-wrapper .slick-dots .slick-active button{
    background: var(--primary-color);
}
.testimonials .testimonials-wrapper .slick-current{
    background: var(--primary-color);
}
.testimonials .testimonials-wrapper .slick-current .testimonials-content-profile h3,
.testimonials .testimonials-wrapper .slick-current .testimonials-content-profile p,
.testimonials .testimonials-wrapper .slick-current .testimonials-content-text p{
    color: #fff;
}
/*==========================
   Footer CSS
==========================*/
footer .footer-top ul{
    padding-left: 0;
    line-height: 2;
}
footer .footer-top ul li a{
    color: #000;
    transition: all .5s ease-in-out;
}
footer .footer-top ul li a:hover{
    color: var(--primary-color);
}
footer .footer-top h3{
    color: #9F9F9F;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
}
footer .footer-top .footer-links{
    padding-left: 0;
    line-height: 2.5;
}
footer .footer-top .footer-links li a{
    color: var(--text-black);
    text-transform: capitalize;
    font-weight: 500;
}
footer .footer-top .footer-form input{
    border: none;
    border-bottom: 1px solid var(--text-black);
    border-radius: 0 !important;
}
footer .footer-top .footer-form .footer-form-btn{
    background: none;
    font-size: 16px;
    font-weight: 600;
}
footer .footer-top .footer-form input:focus{
    box-shadow: none;
    border: 1px solid var(--text-black);
}
footer .footer-bottom .container{
    border-top: 1px solid #D9D9D9;
}
footer .footer-bottom .footer-bottom-wrapper p a{
    color: var(--text-black);
}
footer .footer-bottom .footer-socials ul{
    list-style: none;
    padding-left: 0;
}
footer .footer-bottom .footer-socials ul li a{
    margin-left: 20px;
    color: var(--text-black);
}
footer .footer-bottom .footer-socials ul li a:hover{
    color: var(--primary-color);
}
.contact-info-footer .contact-section-icon{
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	background-color:#b88e2f;
}
.contact-info-footer .contact-section-icon svg{
	color:#FFFFFF;
}
.contact-info-footer .contact-section-details h3{
	margin-bottom:0px;
	color:#b88e2f;
}
.contact-info-footer .contact-section-details a{
	font-size:18px;
	font-weight:500;
	color:#000000;
}
/*-----------------------------------
    Page Banner CSS
------------------------------------*/
.page-banner h1{
    color: #fff;
    font-weight: 600;
}
@media screen and (min-width:991px){
    .page-banner h1{
        font-size: 48px;
    }
}
.page-banner .breadcrumb li a {
    color: var(--primary-color);
}
.page-banner .breadcrumb li{
    color: #fff;
}
/*-----------------------------------
   About Page CSS
------------------------------------*/
.about-page {
	background: #FCF8F3;
}
.about-page .about-content p{
	color: #848484;
	line-height: 1.8;
}
/*================================
 <-- Single Service -->
==================================*/ 
.single-service{
	background: #FCF8F3;
}
.single-service .single-service-sidebar h3,
.single-service .single-service-sidebar-contacts h3{
	color: #222;
	    font-family: aileron;
	font-weight: 700;
	position: relative;
	margin-bottom: 30px;
	text-transform: capitalize;
}
.single-service .single-service-sidebar h3:before,
.single-service .single-service-sidebar-contacts h3:before{
	content: '';
	position: absolute;
	width: 40px;
	height: 3px;
	background: var(--primary-color);
	top: 100%;
}
.single-service .single-service-sidebar ul{
	list-style: none;
	padding-left: 0;
	border: 1px solid #d7d7d7;
	}
.single-service .single-service-sidebar ul{
	background: var(--secondary-color);
}
.single-service .single-service-sidebar ul li a{
/* 	background: #f5f5f5; */
	color: #fff;
	padding: 18px 30px;
	text-transform: capitalize;
	font-weight: 500;
	border-bottom: 1px solid #d7d7d7;
	position: relative;
	z-index: 9999 !important;
	display: block;
	transition: all .5s ease-in-out;
}
.single-service .single-service-sidebar ul li a:before{
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--primary-color);
	transition: all .5s ease-in-out;
	z-index: -1;
	
}
.single-service .single-service-sidebar ul li:hover a:before{
	width: 100%;
	border-left: 4px solid #000;
}
.single-service .single-service-sidebar ul li:hover a{
	color: #fff;
}
.single-service .single-service-sidebar ul li a:after{
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.2em' height='1.2em' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m10 17l5-5l-5-5'/%3E%3C/svg%3E");
	position: absolute;
	right: 20px;
}

.single-service .single-service-sidebar-contacts .single-service-sidebar-info svg{
	width: 44px;
	height: 45px;
	color: var(--primary-color);
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a{
	color: #777;
	transition: all .5s ease-in-out;
	    font-family: aileron;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a:hover{
	color: var(--primary-color);
}
.single-service .single-service-content-img img{
	border-radius: 5px;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info h4{
	font-size: 18px;
	    font-family: aileron;
}
.single-service .single-service-content-img{
	position: relative;
	overflow: hidden;
	
}
/* .single-service .single-service-content-img:before{
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	background: linear-gradient(rgba(180, 16, 23, 0.5),rgba(180, 16, 23, 0.5));
	transition: all .5s ease-in-out;
	border-radius: 10px;
} */
.single-service .col-md-8:hover .single-service-content-img:before{
	width: 100%;
}
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
		border-radius: 10px;
	}
@media screen and (min-width:991px){
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
	}
}
.single-service .single-service-content p{
	color: #777;
	line-height: 1.5;
	text-align: justify;

}
.single-service .single-service-content h2,
.single-service .single-service-content h3,
.single-service .single-service-content h4{
	color: var(--primary-color);
}
.single-service .single-service-content ul li,
.single-service .single-service-content ol li{
	color:  #777;
}

/*-----------------------------------
      contact section style
------------------------------------*/
.services-contact-section{
    background: #f3f3f3;
}
.services-contact-section .contact-section-content p{
    font-size: 13px;
    line-height: 23px;
    color: #7F7F7F;
}
.services-contact-section .contact-section-form{
    background: var(--primary-color);
    position: relative;
/*     transform: translateY(-29px); */
    /* margin-bottom: -50px; */
}
.services-contact-section .contact-section-form:before{
    top: 0;
    left: -25px;
    width: 25.63px;
    height: 29px;
    position: absolute;
    content: "";
    background: var(--primary-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    transition: all .5s ease-in-out;
    z-index: 1;
}

.services-contact-section .contact-section-form input,
.services-contact-section .contact-section-form select{
    height: 47px;
    border-radius: 3px;
    color: var(--primary-color);
}

.services-contact-section .contact-section-form input::placeholder{
    color: #9E9E9E;
    font-size: 13px;
}
.services-contact-section .contact-section-form select{
    color: #9E9E9E;
	background: #fff !important;
    font-size: 13px;
}
.services-contact-section .contact-section-form input:focus{
    box-shadow: none;
}
.services-contact-section .contact-section-form .theme-btn {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    color: var(--primary-color);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 34px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    font-size: 15px;
    border-radius: 4px;
    
  }

/*-----------------------------------
      Contact Us Page Section
------------------------------------*/
.contact-page-section{
	background: #FCF8F3;
}
.contact-page-section .contact-section-content{
	padding: 7em 3em 3em 3em;
}
.contact-page-section .contact-section-content .section-sub-title{
	color:var(--secondary-color);
}
.contact-page-section .contact-section-content .section-title{
	color: #fff;
	line-height: 43px;
}
.contact-page-section .contact-section-para{
	color: #f0f0f0;
	
}
.contact-page-section .contact-section-content-text{
	border-bottom: 1px solid #FFFFFF25;
}
.contact-page-section .contact-section-info .contact-section-icon{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--primary-color);
	border-radius: 4px;
	
}
.contact-page-section .contact-section-info .contact-section-icon svg{
	width: 25px;
	height: 25px;
	color: #fff;
}
.contact-page-section .contact-section-info .contact-section-details h3{
	color: #fff;
	 font-family: "Alumni Sans", sans-serif;
	font-weight: 700;
}
.contact-page-section .contact-section-info .contact-section-details a{
	color: #d1d1d1;
}
@media screen and (min-width:991px){
	.contact-page-section .contact-section-info .contact-section-details h3{
		font-size: 24px;
	}
}

.contact-page-section .contact-section-form-details h3{
	color: var(--primary-color);
	font-weight: 700;
	line-height: 43px;
	
}
.contact-page-section .contact-section-form-details p{
	color: #666;
}
@media screen and (min-width: 991px){
	.contact-page-section .contact-section-form-details h3{
		font-size: 45px;
	}
}
.contact-page-section .contact-section-form label{
	color: var(--secondary-color);
	font-weight: 500;
}
.contact-page-section .contact-section-form input{
	background: #f0f0f0;
	border: none;
	height: 45.19px;
	border-radius: 4px;
}
.contact-page-section .contact-section-form input:focus{
	box-shadow: none;
	border: 1px solid #f0f0f0;
	background: transparent;
}
.contact-page-section .contact-section-form textarea{
	background: #f0f0f0;
	border: none;
	height: 150px;
	border-radius: 4px;
}
.contact-page-section .contact-section-form textarea:focus{
	box-shadow: none;
	border: 1px solid #f0f0f0;
	background: transparent;
}
.contact-page-section .contact-section-form input::placeholder{
	color: #666;
}
.contact-page-section .contact-section-form .theme-btn{
	background: var(--primary-color) !important;
	font-size: 14px;
	height: unset;
	padding: 10px 20px;
	color: #fff;
	
}
.contact-page-section .contact-section-form .theme-btn:hover{
	background: var(--primary-color) !important;
}
.contact-page-section .contact-section-form .primary-btn-1:hover{
		background: var(--primary-color) !important;
}

@media screen and (min-width:991px){
	.contact-page-section .contact-section-form-wrapper{
	padding: 3em;
}
}
/*==========================
Projects CSS
==========================*/
.projects {
	background: #FCF8F3;
}

.projects .title-box h2{
    width: 100%;
}
.projects .projects-img-wrapper img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.projects .projects-img-wrapper{
    position: relative;
}
.projects .projects-img-wrapper:before{
content: '';
position: absolute;
width: 100%;
height: 0;
background: linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0.5));
transition: all .5s ease-in-out;
}
.projects .projects-img-wrapper:hover:before{
   height: 100%;
}
.projects .projects-img-wrapper .plus-sign{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    padding: 10px;
    border-radius: 50px;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.projects .projects-img-wrapper:hover .plus-sign{
    opacity: 1;
}
.projects .projects-img-wrapper .plus-sign svg{
    color: #fff;
}
.projects .projects-btn .primary-btn-1{
	background: #fff !important;
	color: var(--primary-color);
	
}
.projects .projects-btn .primary-btn-1:hover{
	color: var(--text-white);
}
/*==========================
   Gallery Section CSS
==========================*/
@media screen and (min-width:991px){
	.projects{
/* 		height: 100vh; */
	}
	.projects-page{
		height: unset !important;
	}
}

.gallery .filter-button-group{
	list-style: none;
	padding-left: 0;
}
 .gallery .filter-button-group li {
    background: #fff;
     border: 2px solid var(--primary-color);
     color: #000;
     padding: 8px 25px;
     cursor: pointer;
     font-weight: 600;
     font-size: 13px;
     text-transform: uppercase;
     transition: all .5s ease-in-out;
     -webkit-transition: all .5s ease-in-out;
     -moz-transition: all .5s ease-in-out;
     -ms-transition: all .5s ease-in-out;
     -o-transition: all .5s ease-in-out;
     border-radius: 30px;
}
@media screen and (max-width:768px){
	.gallery .filter-button-group li{
		 padding: 5px 15px;
	}
}

 .gallery .filter-button-group li.active,  .gallery .filter-button-group li:hover{
     background:var(--secondary-color);
     color: #fff;
    border: 2px solid var(--secondary-color);
 }
a.read-more__link {
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: var(--secondary-color) !important;
    position: relative;
	justify-content: center;
	text-align: center;
	
}
/* cart  */
.mobilecart ul{
	list-style: none;
	padding-left: 0;
	margin: unset !important;
}
.cartwrap .cart-item svg{font-size: 32px !important;}
.search-box svg{font-size: 30px;}
ul.othersec-wrap li {margin-right: 8px;}
.cartwrap::before{
    content: '';
    border-left: 1px solid #f0f0f0;
    margin-right: 10px;
}
.cart-item{margin-right: 10px;}
.cartwrap{position: relative;}
.cart-item-count {
    position: absolute;
    top: 0;
    left: 32px;
    background: #fff;
    border-radius: 35%;
    padding: 0 4px 0 4px;
    font-size: 14px;
    color: #000;
}
/*==========================
   Homepage Products Section CSS
==========================*/
.home-products .home-product-content .home-product-img{
	position: relative;
	overflow: hidden;
}
.home-products .home-product-content .card{
	border: none;
}
.home-products .home-product-content {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	border-radius: 5px;
}
.home-products .home-product-content:hover img{
	transform: scale(1.1);
}
.home-products .home-product-content img {
    width: 100%;
    height: 330px;
    transition: all .5s ease-in-out;
    object-fit: cover;
}
.home-products .home-product-content .card-title a{
	color: var(--primary-color) !important;
}
.home-products .home-product-content .card-text{
	color: #898989;
	
}
.aws-container .aws-search-form .aws-form-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: var(--primary-color) !important;
    border: 1px solid #d8d8d8;
    color: #fff !important;
    margin: 0 0 0 -1px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 100ms ease-in-out;
    -moz-transition: background-color 100ms ease-in-out;
    -o-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
}

.aws-container .aws-search-form .aws-search-btn_icon {
    display: inline-block;
    fill: #fff !important;
    height: 24px;
    line-height: 24px;
    position: relative;
    width: 42px;
    color: #555;
}
/* Additional CSS */
@media screen and (min-width:991px){
	#mega-menu-wrap-main-menu{
	width: 75% !important;
}
}
@media screen and (max-width:768px){
	.wp-block-woocommerce-cart{
		margin-top: 150px !important;
	}
}