/* main css */

@font-face {
    font-family: 'Cal Sans SemiBold';
    src: local('Poppins Regular'), url('../fonts/CalSans-SemiBold.ttf') format('ttf'), url('../fonts/CalSans-SemiBold.woff') format('woff'), url('../fonts/CalSans-SemiBold.woff2') format('woff2');
}
@font-face {
	font-family: 'gothic';
	src: local('gothic'), url('../fonts/gothic.woff') format('woff');
}

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #cbff05;
  --color2: #33cc33;
  --color3: #009933;
  --color4: #5f81ed;
  --color5: #e3e3ef;
}

html, body {
	overflow-x: clip;
}
html {
	-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
}
body {
	background-color: var(--black);
	font-family: 'gothic';
    color: var(--white);
}

a {
	text-decoration: none;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cal Sans SemiBold';
}

.container-fluid {
	max-width: 80rem;
}

.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: #222;
	content: '';
}
.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); }

.grad1 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, var(--color3), var(--color1) 46%, var(--color2));
    -webkit-background-clip: text;
    background-clip: text;
}
.grad2 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, var(--color2) 38%, var(--color1) 58%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.3;
}
.grad3 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(180deg, #4464e5 38%, #c544d5 58%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.3;
}

.cl-1 { color: var(--color1); }
.cl-2 { color: var(--color2); }
.cl-3 { color: var(--color3); }
.cl-4 { color: var(--color4); }
.cl-5 { color: var(--color5); }

.btn1 {
    background-color: var(--color1);
    color: var(--black);
    text-align: center;
    border-radius: 1.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
	letter-spacing: 1px;
    box-shadow: 0 4px 4px #00000040;

    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn1 i {
	margin-left: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn1:hover {
	box-shadow:0 6px 6px #0000004d;
}
.btn1:focus {
    outline: none;
}
.btn1:hover i {
	transform: translateX(5px) scale(1.1);
}

.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 {
	position: sticky;
	position: -webkit-sticky;
	top: 0; /* required */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	padding: 0 30px;
	border-radius: 30px;
	background-color: var(--color1);
	box-shadow: 0 4px 4px #00000040;
}
.navbar-brand,
.navbar-brand:hover {
	font-size: 36px;
	font-weight: bold;
	color: #111;
	padding: 0;
	margin: 0;
	line-height: initial;
}
.navbar-brand img { height: 30px; }

.navbar .btn1 {
	background-color: #111;
	color: #fff;
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
/*
.nav-item:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
.nav-item:last-child:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}*/
.nav-link {
	color: #111;
	font-size: 16px;
	font-weight: 600;
	padding: 30px;
	letter-spacing: 1px;
}
.nav-link:hover {
	color: var(--black);
}
.dropdown-item {
	color: var(--white);
	font-weight: normal !important;
	transition: 0.5s;
}
.dropdown-item:hover {
	color: var(--black);
	background-color: transparent;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
    visibility: hidden;
    display: initial;
    /*width: max-content;*/
	margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-radius: 0;
    border: none;
    padding: 15px;
    padding-left: 35px;
	background-color: var(--color1);
	border-bottom: 3px solid var(--white);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.nav-item.dropdown .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.nav-item.dropdown:hover .dropdown-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	z-index: 9;
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
	font-weight: 700;
}
.nav-item.dropdown:hover .dropdown-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 11px;
  left: -6px;
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--color1);
  font-weight: 700;
  font-family: "Font Awesome 6 Free";
  background-color: var(--white);
  box-shadow: inset 0px 2px 4px 0px rgba(255, 104, 26, 0.4);
}
/*********************/
/* slider */
.slider_wrap h1 {
	font-size: 3.5rem;
	line-height: initial;
}
.dynamic-txts{
	display: inline-block;
	padding: 0;
	height: 6.5vw;
	line-height: 6.5vw;
	overflow: hidden;
	margin: 0;
	vertical-align: bottom;
}
.dynamic-txts li{
  list-style: none;
  position: relative;
  top: 0;
  animation: slide 12s steps(4) infinite;
}
@keyframes slide {
  100%{
    top: -360px;
  }
}
.dynamic-txts li span{
  position: relative;
  margin: 5px 0;
  line-height: 90px;
}
.dynamic-txts li span::after{
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  border-left: 2px solid var(--color1);
  animation: typing 3s steps(10) infinite;
}
@keyframes typing {
  40%, 60%{
    left: calc(100% + 30px);
  }
  100%{
    left: 0;
  }
}

.logos { 
    display:flex;
    justify-content:center;
    gap:30px;
}
.logos img { height:40px;}
/*********************/
.sticky {
  position: sticky;
  bottom: 0;
}
.cta {
	z-index:1;
}
.cta .wrap {
	background-color: var(--color1);
	border-radius: 30px;
}
/*********************/
.videos {}
.videos .grid_view {
	display: grid;
	/*grid-template-columns: 1fr 2fr 1fr;*/
	grid-template-columns: 3.5fr 2.5fr; 
	gap: 25px; 
}
.videos .grid_view1 {
	display: grid; 
	grid-template-columns: 1.5fr 2fr; 
	grid-gap: 25px; 
	align-items: end;
}
.videos .grid_view2 {
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	grid-gap: 25px; 
	align-items: end;
}
.videos .grid_view3 {
	display: grid; 
	grid-template-columns: 1fr 1.5fr; 
	grid-gap: 25px; 
	align-items: end;
}
.videos .item {
	position: relative;
	border-radius: 30px;
	border:1px solid var(--color1);
	overflow: hidden;
}
.videos .item video {
	display: block;
	width: 100%;
}
.videos .item.height {
	height:350px;
}

.videos .item > img {
	width: 120px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.videos .item .thumbs img {
	width: 36px;
	border:1px solid var(--color1);
	border-radius: 50%;
}
.videos .item h3 {
	font-weight: 600;
}
.videos .item h4 {
	font-weight: 600;
	font-size: 21px;
	color: #111;
}
.videos .item p {
	font-size: 14px;
}
/*********************/

.partners .container-fluid {
	position: relative;
	overflow: hidden;
}
.loop-slider .inner {
  display: flex;
  width: fit-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: var(--direction);
  animation-duration: var(--duration);
}
.tag {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2), 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
}
.tag img {
	height: 35px;
	margin:0 50px;
	filter: brightness(0) invert(1);
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*********************/
.mission {}
.mission .item {
	position: relative;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 20px;
	padding: 30px;
	padding-bottom: 0;
	background-color: rgba(255,255,255,0.1);
}
.mission .item .d-flex img {
	height: 40px;
	filter: brightness(0) invert(1);
}

/* 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;
}
/*********************/
/* marquee */
.news {
	display: flex;
	align-items: center;
}
.news > span {
	background-color: #f00;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}
.news p {
	margin: 0;
}

/*********************/
.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 */
.partners {
	background-size: cover;
}
.partners .item {
	position: relative;
	overflow: hidden;
}
.partners .item figure {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.partners .item figure img {
	width: 100%;
	aspect-ratio:1/1;
	object-fit: cover;
}
.partners .item h4 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-shadow: 5px 5px 15px #111;
	transition: 1s;
}
.partners .item .desc {
	position: absolute;
	top: 50%;
	left: 0;
	padding: 20px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	background-color: rgba(0,0,0,0.7);
	opacity: 0;
	transition: 1s;
}
.partners .btn1 {
	padding: 5px 25px;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 14px;
}
.partners .item:hover h4 {
	opacity: 0;
}
.partners .item:hover .desc {
	top: 0;
	opacity: 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;
}
.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: #111;
}
.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 {
	background-attachment: fixed;
	padding: 100px 0;
}
.testimonials .item {
	background-color: rgba(255,255,255,0.1);
	padding: 20px;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255,0.1);
	text-align:left;
}
.testimonials .item .thumbs {
	display:flex;
	align-items: center;
	gap:10px;
}
.testimonials .item .thumbs {
	margin:0 0 15px;
}
.testimonials .item .thumbs figure {
	margin:0;
}
.testimonials .item .thumbs img {
	width: 50px !important;
	height: 50px;
	border-radius: 50px;
}
.testimonials .item .thumbs h4 {
    font-size:18px;
	margin:0;
}
.testimonials .item p {
    font-size:14px;
	margin: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 {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/* form */
.enquiry_wrap {
	position: relative;
	background-color: #fff;
}
.enquiry_wrap img {
	border-radius: 15px;
}
.enquiry_wrap:before,
.enquiry_wrap:after {
	position: absolute;
	background-color: #fff;
	left: 0;
	right: 0;
	content: '';
	height: 50px;
	border-radius: 50% 50% 0 0;
}
.enquiry_wrap:before { top: -25px; }
.enquiry_wrap:after { bottom: -25px; transform: rotateX(180deg); z-index: 1; }

.form1 {}
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #f5f6fd;
  border: 1px solid #ccc; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}

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

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

.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;
}
.whyus .grid_view {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 25px; 
  grid-template-areas: 
    "item1 item3 item4"
    "item2 item3 item5"; 
}
.whyus .item:nth-child(1) { grid-area: item1; }
.whyus .item:nth-child(2) { grid-area: item2; }
.whyus .item:nth-child(3) { grid-area: item3; }
.whyus .item:nth-child(4) { grid-area: item4; }
.whyus .item:nth-child(5) { grid-area: item5; }
.whyus .item {
	background-color: #fff;
	padding: 30px;
	border-radius: 20px;
	color: #111;
}
.whyus .item img {
	width: 100%;
}
.whyus .item h4 {
    font-family: 'Hauora-Bold';
}

.whyus2 .item img {
	border-radius: 15px;
}
.list1 {
    background-color: rgba(255,255,255,0.2); 
    padding: 30px; 
    border-radius: 20px;
}
.list1 ul,
.list2 ul {
    padding:0;
    margin:0;
}
.list1 li,
.list2 li {
    list-style:none;
    margin:0;
    display:flex;
    gap:5px;
}
.list1 li:before {
    content:'✓';
}
.list2 li:before {
    content:'✗';
}

/*********************/
.services .item {
	background-color: #fff;
	color: #111;
	padding: 30px;
	border-radius: 20px;
}
.services .item h4 {
    font-family: 'Hauora-Bold';
}

/*********************/
.media .wrap {
	border: 3px solid var(--color1);
	border-radius: 25px;
	padding: 40px;
}
/*********************/
.question .item {
	/*background-color: #fff;*/
	/*color: #111;*/
	/*padding: 30px;*/
	/*border-radius: 20px;*/
}
.question .form-group {
  display: block;
  margin-bottom: 15px;
}

.question .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.question .form-group p {
  margin-bottom: 0;
}

.question .form-group label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items:start;
  gap:10px;
}

.question .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--color1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.question .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--color1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/*********************/
.faq .item {
	border-bottom: 1px solid #fff;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.faq .item a span {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
    background: rgb(197,68,213);
	background: linear-gradient(0deg, rgba(197,68,213,1) 0%, rgba(68,100,229,1) 100%);
	flex-shrink: 0;
}
.faq .item a span i {
	transition: all 0.5s;
}
.faq .item a.collapsed span i {
	transform: rotate(45deg);
	transition: all 0.5s;
}
/*********************/
.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 {
	display: unset;
	background-size: cover;
	/*border-top: 2px solid rgba(255,255,255,0.2);*/
}
footer h4 {
	position: relative;
	/*margin: 20px 0;*/
}
footer .btn1 {
	background-color: var(--black);
	color: var(--white);
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer .links {
	padding: 0;
	margin: 0;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--white);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
footer .text {
	position: relative;
	overflow: hidden;
    height: 200px;
}
footer .text span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: var(--color1);
    text-align: center;
    font-size: 17.875rem;
    line-height: 1;
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
	font-size: 14px;
}
.footer-bottom .links li {
	display: inline-block;
	margin: 0 10px;
}

.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(--black);
  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: 30px;
  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);
  }
}
/************************/
.modal .modal-content { background:#111;}
.modal h4 { font-size:18px;}
.modal p { font-size:12px;}
.modal .btn-close {
    background:#f00;
    color:#fff;
    outline:none;
    box-shadow:none;
    opacity:1;
    padding:0;
    position:absolute;
    top:0;
    right:0;
    width:20px;
    height:20px;
    line-height:20px;
    z-index:1;
}
.form1 {}
.form1 .form-control {
    font-size:14px;
    background:#000;
    color:#fff;
    border:1px solid rgba(255,255,255,0.5);
}
.form1 .form-control::placeholder {
    color:#fff;
}
.form1 .btn1 {
    display:block;
    border:none;
    width:100%;
    padding:10px;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 300px;
  overflow-x: hidden;
}
.marquee:before,
.marquee:after {
    position: absolute;
    right:0;
    top:0;
    bottom:0;
    content:'';
    width:200px;
    z-index:1;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
}
.marquee:after {
    transform: rotateY(180deg);
    right:auto;
    left:0;
}
.track {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 20s linear infinite;
}
.track.right {
  animation: marquee2 20s linear infinite;
}
.track .content {
    display:flex;
    gap:15px;
}
.track .item {
    display:inline-block;
    max-width: 350px;
    height: 250px;
    white-space: wrap;
}
.track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee2 {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.navbar-brand img { height: 20px; margin-top:-6px; }
	/*.navbar-toggler-icon { filter: brightness(0) invert(1); }*/
	.navbar-toggler { border: none; }
	.navbar-toggler:focus { box-shadow: none;}
	.nav-link { padding: 10px; }
	h1, h2 { font-size: 2rem; }
	.slider_wrap h1 { font-size: 24px; }
	/*.videos .item { margin-bottom: 15px; }*/
	.whyus .grid_view { display: block;}
	.whyus .item { margin-bottom: 20px;}
	.partners .item h4 { opacity: 0; }
	.partners .item h5 { font-size: 14px; }
	.partners .item p { font-size: 12px; }
	.partners .item .desc { top: 0; opacity: 1; }
	footer .text { height: 60px; }
	footer .text span { font-size: 4.875rem; }
    footer h4 { font-size: 14px; }
    footer .btn1 { font-size: 14px; padding: 10px; white-space:nowrap; }
    .list2 { padding:0 40px; margin-bottom:20px;}
    .dynamic-txts { height:70px; line-height:70px; vertical-align:top; margin-top:-25px;}
    .dynamic-txts li span::after{ top:0;}
    .question .form-group label { align-items:center;}
    
	.videos .grid_view {
		grid-template-columns: 1fr; 
		grid-gap: 10px; 
	}
	.videos .grid_view1,
	.videos .grid_view3 {
		grid-template-columns: 1fr 1fr; 
		grid-gap: 10px; 
	}
	.videos .grid_view2 {
		display: flex;
		flex-direction: column-reverse;
		gap:10px;
	}
	.videos .item { margin: 0 }
	.videos .item .thumbs img { width: 30px; }
	.videos .item h4 { font-size: 18px; }
	.videos .item > img { width: 75px; }
	.videos .grid_view2 .item.height { height: 160px; }
	.videos .grid_view3 .item.height { height: 290px; }
}