/* main css */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color1-rgb: 153, 111, 0;
  --color2-rgb: 255, 248, 232;
  --color3-rgb: 233, 193, 93;
  --color4-rgb: 41, 41, 41;
  --color5-rgb: 184, 134, 11;
  --color6-rgb: 0, 0, 128;
  --color1: #996f00;
  --color2: #fff8e8;
  --color3: #e9c15d;
  --color4: #292929;
  --color5: #b8860b;
  /*--color6: #000080;*/
  --color6: #1b2956;
  --gradient: linear-gradient(180deg, rgba(var(--white-rgb), 1), var(--color3) 100%);
  --gradient2: linear-gradient(180deg, var(--color2), var(--color5) 100%);
  --gradient3: linear-gradient(0deg,rgba(var(--white-rgb), 1) 0%, rgba(var(--color6-rgb),1) 100%);
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--white);
    font-family: "Epilogue", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--color4);
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--color6);
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-6 { background-color: var(--color6); }
.bg-grey { background-color: var(--grey); }
.bg-grad { background: var(--gradient); }
.bg-grad2 { background: var(--gradient2); }
.bg-grad3 { background: var(--gradient3); }

/* header */
header { 
	position: relative;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 5px 25px;
}
.social li {
	display: block;
	color: var(--white);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social li a:hover {
	background-color: var(--white);
}
.social li a:hover img {
	filter: none;
}

.navbar {
	position: relative;
	/*left: 0;*/
	/*right: 0;*/
	z-index: 10;
	/*backdrop-filter: blur(5px);*/
	 background-color: var(--white); 
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--color6) !important;
	padding: 0;
}
.navbar-brand img { 
	height: 60px; 
}
.navbar-expand-sm .navbar-collapse {
    width:100%;
    padding-left:10%;
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/*.navbar-toggler-icon { filter: brightness(0) invert(1);}*/
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-item {
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 220px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}

#searchbox {
	display: none;
	position: fixed;
	z-index: 11;
	inset: 0;
}
#searchbox .closebox {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--white);
	padding: 10px;
	font-size: 24px;
}
#searchbox .wrap {
	display: flex;
	justify-content: center;
	/*align-items: center;*/
	width: 100%;
	height: 100vh;
	background-color: rgba(var(--color6-rgb),.8);
}
#suggestion-box {
    height:85dvh;
    overflow:auto;
}
/* width */
#suggestion-box::-webkit-scrollbar {
  width: 8px;
}
/* Track */
#suggestion-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
  background: var(--white); 
}
/* Handle */
#suggestion-box::-webkit-scrollbar-thumb {
  background: var(--color1); 
  border-radius: 10px;
}
/* Handle on hover */
#suggestion-box::-webkit-scrollbar-thumb:hover {
  background: var(--color6); 
}
.wrap .inputbox {
	position: relative;
	width: 60%;
}
.wrap .inputbox input {
	background-color: transparent;
	border-radius: 0;
	color: var(--white);
	border: none;
	border-bottom: 1px solid var(--white);
	padding: 10px 0;
	box-shadow: none;
}
.wrap .inputbox input::placeholder {
	color: var(--white);
}
.wrap .inputbox button {
	position: absolute;
	top: 8px;
	right: 0;
	/*bottom: 0;*/
	border: none;
	background-color: transparent;
	color: var(--white);
}

/*********************/
/* slider */
.slide-wrap {
	position: relative;
}
.owl-slide .item {
	position: relative;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.owl-slide .item img {
	width: 100%;
	height: calc(100vh - 85px);
	object-fit: cover;
}
.owl-slide .item .desc {
	display: none;
	/* display: flex; */
	position: absolute;
	inset: 0;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 750px;
	padding-left: 60px;
	color: var(--white);
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	/* margin-bottom: 0; */
}
.owl-slide .item .desc p {
	font-size: 18px;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active p,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInLeft;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active p {
	animation-name: fadeInRight;
	animation-delay: 1s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
	animation-delay: 1.5s;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	opacity: 1;
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 5px;
}
/*********************/
.pcat {
	position: absolute;
	inset: 0;
	width: 65%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
}
.pcat h1 {
	position: relative;
	z-index: 1;
	color: var(--white);
	margin-bottom: 15px;
}
.pcat .d-flex {
	position: relative;
	/*border: 10px solid rgba(var(--color3-rgb),.5);*/
	/*border-radius: 30px;*/
	z-index: 1;
	margin: 0 auto;
}
.pcat select {
	background-color: var(--color6);
	width:100%;
	border:none;
	outline:none;
	box-shadow: none !important;
	appearance: none;
	padding: 10px;
	cursor: pointer;
	text-align-last:center;
}
/*
.pcat select:first-child {
	border-radius: 20px 0 0 20px;
}
.pcat select:last-child {
	border-radius: 0 20px 20px 0;
}*/
.pcat select option {
	background-color: var(--color6);
	font-size: 14px;
}
/*********************/
.btn1 {
	display: inline-block;
	position: relative;
	font-size: 14px;
	color: var(--white);
	padding: 14px 20px;
	transition: all .5s ease-in-out;
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	border: none;
	background: var(--color1);
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
	overflow: hidden;
}
.btn1:before {
	content: "";
	height: 300px;
	width: 300px;
	background:  var(--color4);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover {
	color: var(--white);
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1 i {
	margin-left: 5px;
}
.btn1 span {
	margin-right: 5px;
}
.btn2{
	background: var(--white);
	color: var(--dark);
}
.btn2:before{
	background: var(--color1);
}
.btn2:hover{
	color: var(--white);
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
}
.heading span {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--color1);
	display: flex;
	gap: 1rem;
	align-items: center;
}
.heading span::before {
	content: '';
	background-color: var(--color1);
	width: 2.5rem;
	height: .125rem;
}
.heading h2 {
    font-size: 36px;
    /* color: var(--color1); */
    text-transform: capitalize;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
}
.welcome figure img {
	border-radius: 15px;
}
.welcome figure .img1 {
	position: absolute;
	top: -20px;
	left: -50px;
	width: 100px;
	z-index: -1;
}
.welcome figure .img2 {
	position: absolute;
	bottom: -30px;
	left: -50px;
	width: 200px;
	z-index: -1;
	opacity: 0.5;
}
.welcome figure:after {
	position: absolute;
	/*content: '';*/
	top: 0;
	left: 0;
	bottom: 0;
	width:calc(100% - 25px);
	height: 100%;
	border:4px solid var(--color1);
	transform: scale(1.05);
	z-index: -1
}
.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

/*********************/
.custom2 .item {
	display: flex;
	gap:15px;
	color: var(--white);
	margin: 15px 0;
	background-color: rgba(255,255,255,0.1);
	padding: 30px;
}
.custom2 .item .icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #fff;
	color: var(--color1);
	flex-shrink: 0;
	border-radius: 50%;
	font-size: 30px;
}
.custom2 .item h4 {
	color: var(--white);
}
.custom2 .item p {
	color: var(--white);
	font-size: 14px;
	margin: 0;
}
/* home products */
.home_products .item {
	display: block;
	position: relative;
	background: var(--white);
	padding: 20px;
	border-radius: 50px 50px 50px 0;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.home_products .item .img {
	position: relative;
	margin-bottom: 15px;
}
.home_products .item .img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 40px 40px 40px 0;
}
.home_products .item .img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 40px 40px 40px 0;
	background: var(--color5);
	transition: all .5s ease-in-out;
}
.home_products .item:hover .img::before{
	opacity: 0.5;
	visibility: visible;
}
.home_products .item .img .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	line-height: 50px;
	padding: 0;
	margin: -25px 0 0 -25px;
	color: var(--white);
	background: var(--color1);
	transform: scale(3);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease-in-out;
	z-index: 1;
}
.home_products .item:hover .img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.home_products .item:hover .img .btn:hover{
	background: var(--white);
	color: var(--color2);
}
.home_products .item h4 {
	transition: all .5s ease-in-out;
}
.home_products .item:hover h4 {
	color: var(--color2);
}
/*********************/
.products .item {
    position:relative;
	overflow: hidden;
	border-radius: 15px;
	background-color: var(--color2);
}
.products .item figure {
    margin: 0;
	overflow: hidden;
}
.products .item figure img {
    width:100%;
    aspect-ratio:2/1.5;
    transition:var(--transition);
}
.products .item .desc {
    padding:20px;
}
.products .item .desc h4 {
    font-size: 18px;
}
.products .item .desc a {
    font-size: 13px;
    color:var(--color1);
}
.products .item:hover figure img {
    transform:scale(1.1);
}
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
/*********************/
/* counter */
.counter_wrap {
}
.counter_wrap .item {
	background-color: var(--white);
	padding: 30px 20px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(var(--black-rgb), .1);
	height: 100%;
}
.counter_wrap .item h4 {
	font-size: 21px;
	margin-bottom: 0;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
	padding: 100px 0;
}
.testimonials .item .star {
	position: relative;
	z-index: 1;
	background-color: var(--color5);
	color: #ff5e14;
	padding: 5px 10px;
	border-radius: 5px;
	display: inline-block;
	transform: translateY(50%);
}
.testimonials .item .desc {
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 25px;
}
.testimonials .item .desc:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	background-color: var(--white);
	width: 30px;
	height: 20px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	margin-top: -1px;
}
.testimonials .item .desc p {
	margin-bottom: 0;
}
.testimonials .item img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:4px solid #fff;
	margin: 0 auto;
	margin-bottom: 15px;
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
.features {
	position: relative;
	color: var(--color1);
}
.features .heading {
	width: 90%;
}
.features img {
	width: 100%;
	border-radius: 20px;
}
/*********************/
/* form */
.enquiry_wrap {
	position: relative;
}

.form1 {
	border-radius: 40px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: var(--white);
  border: 1px solid var(--color3); 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color1);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color1);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 100px 0;
}
.whyus:before { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*content: '';*/
	background-color: #000;
	opacity: 0.7;
}
.whyus .grid_view {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
.whyus .item {
	border: 1px solid #fff;
	border-radius: 20px;
}
.whyus .item img {
	width: 80px;
	margin: 30px 0;
	filter: brightness(0) invert(1);
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4 {
	position: relative;
	color: var(--color1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--color1);
	margin: 10px 0 20px;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--color4);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--color4);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--color4);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color6);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--color1);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--color1);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	display: flex;
	gap: 6px;
	flex-direction: column;
	/* background-color: rgba(var(--white-rgb), .5); */
	/* border: 1px solid var(--white); */
	/* border-radius: 0 8px 8px 0; */
	z-index: 1;
}
.socialfix li {
	display: block;
	transform: translateX(calc(100% - 38px));
	transition: var(--transition);
}
.socialfix li:hover {
	transform: translateX(0);
}
.socialfix li a {
	display: flex;
	gap:5px;
	align-items: center;
	color: var(--black);
	background-color: rgba(var(--white-rgb), .5);
	padding: 5px;
	border-radius: 40px 0 0 40px;
	transition: var(--transition);
}
.socialfix li img {
	height: 28px;
	border-radius: 50%;
	transition: var(--transition);
}
.socialfix li:hover a {
	background-color: rgba(var(--white-rgb), .9);
}
.socialfix li:hover img {
	transform: rotate(-360deg);
}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.big-text {
	font-size: 15vw;
	line-height: 1;
	font-weight: 700;
	background: var(--gradient2);
	box-decoration-break: clone;
	overflow-wrap: anywhere;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.big-text.size-2 {
	font-size: 42px;
	background: var(--color3);
    -webkit-background-clip: text;
}
.sourcing .item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}
.sourcing .item .desc {
	position: absolute;
	inset: 0;
	padding: 40px;
}
.sourcing .item .desc h1 {
	color: var(--white);
	text-shadow: 0 0 10px rgba(var(--black-rgb), .3);
	margin-top: 10px;
	transition: var(--transition);
}
.sourcing .item .desc i {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	border-radius: 50%;
	margin-top: -20px;
	opacity: 0;
	transition: var(--transition);
}
.sourcing .item img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.sourcing .item:hover h1 {
	margin-top: 0px;
}
.sourcing .item:hover i {
	margin-top: 0px;
	opacity: 1;
}
.sourcing .item:hover img {
	transform: scale(1.1);
}
/*******************/
.main-box {
    display: flex;
    background-color: var(--color6);
    padding:0;
	margin: 0;
    width: 100%;
}
.box {
	height: 500px;
	/* padding:15px; */
	border-right: 1px solid var(--white);
	webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
	position: relative;
	overflow: hidden;
	list-style: none;
}
.detail {
    width: calc(100% - 100px);
    height: 100%;
    position: absolute;
    right: 0;
    top:0;
    background-color: var(--white);
    color: var(--color4);
    opacity: 0;
    padding:30px;
    box-sizing:border-box;
    webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}
.box.active {
    width: 100% !important;
}
.box.active .detail {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    transform: none;
}
.box > span {
    writing-mode: vertical-rl;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 100px;
    transform: rotate(180deg);
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
}
.box.active > span {
	/* background-color: var(--black); */
	left:0;
	right:auto;
	margin:0;
  	font-weight:600;
	color: var(--color3);
}
.box:not(.active):hover {
    width: 11% !important;
    transition: all 0.1s ease-in-out;
}
.box:not(.active):hover > span {
    width: 100% !important;
	color: var(--color3);
    transition: all 0.1s ease-in-out;
}

.blogs .item {
	position: relative;
	background-color: var(--color2);
	padding: 15px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(var(--color3-rgb),.5);
	overflow: hidden;
}
.blogs .item::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color6);
	height: 0;
	transition: var(--transition);
}
.blogs .item figure {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.blogs .item figure img {
	position: relative;
	transition: var(--transition);
}
.blogs .item .desc {
	position: relative;
	border-bottom: 1px solid rgba(var(--color3-rgb),.3);
}
.blogs .item .desc h4 {
	font-size: 21px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.blogs .item .desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.blogs .item .d-flex {
	position: relative;
	font-size: 13px;
}
.blogs .item a {
	color: var(--color5);
}
.blogs .item:hover {
	color: var(--white);
}
.blogs .item:hover .desc h4,
.blogs .item:hover a {
	color: inherit;
}
.blogs .item:hover::before {
	height: 100%;
}
.blogs .item:hover figure img {
	transform: scale(1.1) rotate(3deg);
}

.breadcrumb {
    background:var(--gradient3);
    padding:150px 0 50px;
}
.breadcrumb h2 {
    font-size: 48px;
}
.accordion-button {
    font-weight:700;
    box-shadow:none !important;
}
.accordion-button:not(.collapsed) {
    background-color:var(--color2);
}
.accordion-body a {
    display:block;
    color:var(--black);
}

.sidebar .item {
    display:flex;
    gap:10px;
}
.sidebar .item figure {
    width:100px;
    margin:0;
    flex-shrink:0;
}
.sidebar .item figure img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:5px;
}
.sidebar .item .desc h5 {
    font-size:18px;
}
.sidebar .item .desc span {
    font-size:13px;
    color:var(--color1);
}

.share .facebook,
.share .whatsapp {
    display:inline-block;
    padding:5px 10px;
    color:var(--white);
}
.share .facebook { background-color:#1877F2; }
.share .whatsapp { background-color:#25d366; }
.share a:hover { background-color:var(--color6); }
/***************/
.slider-for .item {
    border:1px solid #e5e5e5;
    border-radius:30px;
    overflow:hidden;
}
.slider-for .item img {
    width:100%;
    aspect-ratio:2/1.5;
}
.slider-nav .item {
    padding:5px;
    cursor:pointer;
}
.slider-nav .item img {
    width:100%;
    aspect-ratio:2/1.5;
    border-radius:10px;
}
.slider-for .slick-prev,
.slider-for .slick-next {
    background-color: var(--white);
    color: var(--black);
    display:flex;
    justify-content:center;
    align-items:center;
    width:40px;
    height:40px;
    border-radius:50%;
    opacity:0;
    z-index:1;
    transition:var(--transition);
}
.slider-for .slick-prev:hover,
.slider-for .slick-next:hover {
    background-color: var(--color6);
    color: var(--white);
}
.slider-for .slick-prev:before, .slider-for .slick-next:before {
    color:inherit;
    opacity:1;
}
.slider-for:hover .slick-prev {
    left:10px;
    opacity:1;
}
.slider-for:hover .slick-next {
    right:10px;
    opacity:1;
}
.slick-active {
    opacity: .5;
}
.slick-current {
    opacity: 1;
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar-brand { font-size:24px;}
    .nav-item { padding: 0;}
    .navbar-expand-sm .navbar-collapse { background-color:var(--color6); padding-left:0; margin:0 -12px;}
    .nav-item .nav-link { color:#ffffff; padding:10px 20px; border-top:1px solid rgba(128,128,128,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .dropdown-item { background-color: #826518; color: #ffffff;}
    .dropdown-toggle::after { float:right;}
    h1 { font-size: 20px;}
    .pcat h1 { margin-top: 30px;}
    .owl-slide .item img {height:400px;}
    /*.navbar>.container{ margin-top: 10px;}*/
    .heading h2 {font-size: 20px;}
    .breadcrumb { padding: 80px 0 20px;}
    .breadcrumb h2 { font-size: 30px;}
    .box > span { width:30px; font-size:14px;}
    .detail { width: 100%; padding:15px;}
}

