/* main css */

@font-face {
    font-family: 'Yeseva One Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Yeseva One Regular'), url('../fonts/YesevaOne-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Poppins Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Regular'), url('../fonts/Poppins-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Poppins Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Bold'), url('../fonts/Poppins-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica'), url('../fonts/Helvetica.woff') format('woff');
}

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #ca5803;
  --color2: #fcd12a;
  --color3: #342697;
  --color4: #457b9d;
  --color5: #1d3557;
  --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: 'Helvetica';
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yeseva One Regular';
	color: var(--color1);
}

.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;
}
.line {
	position: relative;
	display: flex;
	gap:5px;
}
.line:before,
.line:after {
	height: 3px;
	background-color: var(--color2);
	content: '';
	border-radius: 3px;
}
.line.theme:before,
.line.theme:after {
	background-color: var(--color1);
}
.line:before { 	width: 20px;}
.line:after { width: 50px;}

.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-grey { background-color: var(--grey); }

.btn1 {
	display: inline-block;
	position: relative;
	font-size: 14px;
	color: var(--white);
	padding: 14px 20px;
	transition: all .5s ease-in-out;
	text-transform: uppercase;
	border-radius: 50px 50px 50px 0;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	border: none;
	background-color: 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-color:  var(--color2);
	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(--black);
}
.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);
}
.element {
	animation: slideOutLeft 1s forwards;
	animation-timeline: scroll();
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i {
    background: var(--color1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 14px;
	color: var(--black);
	text-decoration: none;
}
.social li {
	display: inline-block;
	margin: 0 5px;
}
.social li img {
	width: 20px;
	/*filter: brightness(0) invert(1);*/
}
.navbar {
	background-color: transparent;
	position: absolute;
	z-index: 10;
	width: 100%;
	/*backdrop-filter: blur(5px);*/
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
}
.navbar-brand img { 
	height: 140px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--white);
    font-family: 'Yeseva One Regular';
	font-size: 16px;
	font-weight: 500;
	/*text-transform: uppercase;*/
	padding: 30px;
}
@media only screen and (min-width:1400px) {
    .nav-item .nav-link { font-size: 20px;}
}
.nav-item:hover .nav-link {
	color: var(--color2);
}
.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: 250px;
	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;
	font-weight: 700;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
}
.owl-slide .item:before {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
	content: '';
}
.owl-slide .item img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	/*align-items: flex-end;*/
	padding: 0 100px;
	width: 50%;
	text-shadow: 0 0 15px #111;
}
.owl-slide .item .desc h1 {
	position: relative;
	margin-bottom: 20px;
	line-height: 1.35em;
	font-size: 36px;
	letter-spacing: 1px;
}
.owl-slide .owl-item.active h1 {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap:15px;
}
.owl-slide .owl-nav > div {
	color: var(--white);
	font-size: 25px;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	cursor: pointer;
	height: 55px;
	width: 55px;
	line-height: 55px;
	border-radius: 50px;
	text-align: center;
	transition: all .5s ease-in-out;
}
.owl-slide .owl-nav > div:hover {
	background: var(--white);
	color: var(--color1);
}
.owl-slide .owl-nav > div.owl-prev { left: 0;}
.owl-slide .owl-nav > div.owl-next { right: 0;}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
.owl-slide.owl-carousel .owl-dots > div {
	background-color: var(--color2);
}
/*********************/
.breadcrumb {
	position: relative;
    background-image:url('../../uploads/s1.jpg');
    background-size:100%;
    padding:115px 0 15px;
}
.breadcrumb:before {
	position: absolute;
    inset:0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%);
    content:'';
}
.breadcrumb h2 {
	position: relative;
	z-index:1;
	color:var(--color2);
}
/* banner */
.banner {
	position: relative;
}
.banner img {
	width: 100%;
	height: calc(100% -140px);
}
.banner .grid_view {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.banner .item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner .item span {
	background-color: #fff;
	padding: 10px;
	outline-offset: 5px;
	outline-width: 2px;
	outline-color: #fff;
	outline-style: solid;
	color: rgb(120,55,250);
	font-size: 24px;
	font-weight: bold;
	transition: 0.5s;
}
.banner .item:hover span {
	background-color: rgb(120,55,250);
	outline-color: rgb(120,55,250);
	color: #fff;
}
/*********************/
.heading {
	position: relative;
}
.heading span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
}
.heading span:before {
	display: block;
	width: 50px;
	height: 2px;
	background-color: var(--color2);
	content: '';
}
/*********************/
.innerpage img {
    max-width:100%;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
}
.welcome figure .img1 {
	position: relative;
	width: 70%;
}
.welcome figure .img2 {
	position: absolute;
	right: 0;
	bottom: 50px;
	width: 250px;
	border: 10px solid #fff;
	box-shadow: var(--shadow);
}
.welcome figure .img3 {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 220px;
	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;
	align-items: center;
}
.custom2 .item .icon {
	width: 100px;
	height: 100px;
	text-align: center;
	background-color: #fff;
	color: var(--color1);
	outline: 1px dashed var(--color1);
	outline-offset: -4px;
	flex-shrink: 0;
	border-radius: 50%;
	font-size: 30px;
	padding: 22px;
}
.custom2 .item .icon img {
	width: 100%;
}
.custom2 .item h1 {
	color: var(--white);
}
.custom2 .item p {
	color: var(--white);
	font-size: 18px;
	margin: 0;
}
/* home products */
.projects {
	background-size: cover;
}
.projects .item {
	position: relative;
	overflow: hidden;
	background-color: var(--white);
	padding: 10px;
	border-radius: 20px;
	border-bottom-left-radius: 0;
}
.projects .item figure {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.projects .item figure img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	transition: var(--transition);
}
.projects .item .desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	transition: 1s;
}
.projects .item .desc h4 {
	margin: 10px 0 5px;
}
.projects .item .desc p {
	font-size: 14px;
	color: var(--black);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
}
.projects .btn1 {
	padding: 10px 20px;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 14px;
}
.projects .item:hover img {
	transform: scale(1.1);
}
/*********************/
.services .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%);
}
.services .item .img {
	position: relative;
	margin-bottom: 15px;
}
.services .item .img img {
	aspect-ratio: 3/2.5;
	object-fit: cover;
	border-radius: 40px 40px 40px 0;
}
.services .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;
}
.services .item:hover .img::before{
	opacity: 0.5;
	visibility: visible;
}
.services .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;
}
.services .item:hover .img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.services .item:hover .img .btn:hover{
	background: var(--white);
	color: var(--color2);
}
.services .item h4 {
	font-size: 21px;
	margin: 0;
	transition: all .5s ease-in-out;
}
.services .item:hover h4 {
	color: var(--color2);
}
/*********************/
/* 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;
}
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 2px;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {}
.testimonials .item {
	position: relative;
	background: var(--white);
	border-radius: 40px 40px 40px 0;
	padding: 25px 25px;
	margin: 6px;
	border-bottom: 5px solid var(--color2);
}
.testimonial-rate { color: var(--color2);}
.testimonial-quote {
	color: #333;
	font-style: italic;
	font-weight: 500;
	margin-top: 10px;
}
.testimonial-content {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonial-content .img {
	width: 75px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed var(--color2);
}
.testimonial-content .img img {
	border-radius: 50%;
}
.testimonial-content .info {
	margin: 15px 0 10px 0;
}
.testimonial-content .info h4 {
	font-size: 20px;
	color:  var(--color1);
	margin-bottom: 2px;
}
.testimonial-content .info p {
	color: #333;
	font-weight: 500;
	margin-bottom: 0;
}
.testimonial-quote-icon {
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--white);
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
}
/*********************/
/* 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,
.gallery .item:hover:before {
	transform: scale(1);
}
.gallery .item img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}
/*********************/
/* form */
.enquiry_wrap {
	position: relative;
}
.enquiry_wrap .contactinfo {
	border-radius: 30px;
	outline: 2px dotted var(--color2);
	outline-offset: -10px;
}
.enquiry_wrap .contactinfo h4 {
	color: #fff;
}
.enquiry_wrap .contactinfo .social2 {
	display: flex;
	gap: 10px;
}
.enquiry_wrap .contactinfo .social2 li {
	list-style: none;
}
.enquiry_wrap .contactinfo .social2 li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--color2);
	border-radius: 50%;
	transition: 0.5s;
}
.enquiry_wrap .contactinfo .social2 li a img {
	width: 20px;
}
.enquiry_wrap .contactinfo .social2 li a:hover {
	background-color: var(--black);
}
.enquiry_wrap .contactinfo .social2 li a:hover img {
	filter: brightness(0) invert(1);
}

.form1 .input,
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #fff;
  border: 1px solid #ddd;
  outline:1px solid transparent;
  border-radius: 10px;
  padding: 7px 14px 9px;
  overflow: hidden;
  transition: 0.4s;
}
.form1 .input:focus {
	outline-color: var(--color2);
}

.wrap-input-8 .input:focus {
  outline: none;
  border-radius: 0;
}

.wrap-input-8 {
  position: relative;
  margin-bottom: 15px;
}

.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 .points {
	position: relative;
	border-top: 2px solid #fff;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.whyus .points li {
	position: relative;
	display: block;
	transition: 0.5s;
}
.whyus .points li:before {
	display: block;
	width: 2px;
	height: 150px;
	content: '';
	background-color: #fff;
	margin: 0 auto;
}
.whyus .points li:nth-child(even):before {
	height: 100px;
}
.whyus .points li figure {
	width: 100px;
	padding: 20px;
	background-color: #fff;
	margin: 0 auto;
	border-radius: 50%;
	transition: 0.5s;
}
.whyus .points li figure img {
	width: 100%;
	transition: 0.5s;
}
.whyus .points li p {
	margin: 10px 0;
	text-transform: uppercase;
}
.whyus .points li:hover {
	color: var(--color1);
}
.whyus .points li:hover figure {
	background-color: var(--color1);
}
.whyus .points li:hover figure img {
	filter: brightness(0) invert(1)
}

.whyus .grid_view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}
.whyus .item {
    padding: 25px;
    border-radius: 10px;
    border:1px solid #fff;
    display: flex;
    gap:15px;
    align-items: center;
    color: #fff;
}
.whyus .item figure {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
}
.whyus .item figure img {
    width: 50px;
}
@keyframes LeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -ms-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes RightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    transform: translateX(1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.whyus .item:nth-child(odd) {
  -webkit-animation-name: LeftBig;
  animation-name: LeftBig;
}
.whyus .item:nth-child(even) {
  -webkit-animation-name: RightBig;
  animation-name: RightBig;
}

/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
.team {
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.team:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background-color: #111;
	opacity: 0.5;
}
.team .container-fluid {
	position: relative;
	z-index: 1
}
.team img {
	border-radius: 15px;
}

/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: var(--white);
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 24px;
	z-index: 1;
}
footer h4:before {
	content: '';
	position: absolute;
	width: 90px;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	bottom: 0;
	left: 0;
	z-index: -1;
}
footer h4:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--color2);
	bottom: 0;
	left: 18px;
	z-index: -1;
}

footer .logo img {
	max-width: 100%;
	max-height: 150px;
}
.about-widget p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
			line-clamp: 3; 
	-webkit-box-orient: vertical;
}
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(--white);
	transition: all .5s ease-in-out;
}
footer .links li a i {
	margin-right: 5px;
	color: var(--color2);
}
footer .links li a:hover {
	padding-left: 10px;
	color: var(--color2);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: start;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color2);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--color1);
	flex-shrink: 0;
}
.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); */
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
}

.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(--color1);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  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(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 60px;
  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;}
/************************/
.details img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.linkedin p {
    font-size:21px;
}
.linkedin .btn {
    background-color:#0e76a8;
    color:#fff;
    border-color:#0e76a8;
}


.whatsappfix {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
.whatsappfix img {
  height:40px;
}

.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(--color1);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  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(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/*Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar-brand img { height:60px;}
	.navbar-collapse { background-color: var(--white);}
    .nav-item .nav-link { color: var(--black); padding:10px; border-top:1px solid rgba(0,0,0,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
	.owl-slide .item .desc { padding: 0 30px; width: 80%;}
	.owl-slide .item .desc h1 { font-size: 24px;}
	.owl-slide .item img { height:300px;}
	.owl-slide .owl-nav > div { display: none;}
	.owl-slide .owl-dots { margin:0; bottom:10px;}
	.owl-carousel .owl-dots > div { width:7px; height:7px;}
	.welcome figure .img2 { width: 160px; bottom: 20px;}
}

