/* main css */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Ivy Presto';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Regular'), url('../fonts/ivy-presto-display.otf') format('woff');
}
:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #d8baf5;
  --color2: #a6a6a6;
  --color3: #342697;
  --color4: #457b9d;
  --color5: #1d3557;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
  --vw:1vw;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--black);
	color: var(--white);
	font-family: "Lexend", sans-serif;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Urbanist", sans-serif;
	/* font-family: "Merriweather", serif; */
}

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

.btn1 {
    font-size: 16px;
	background-color: var(--white);
    color: var(--black);
    padding: 10px 20px;
    cursor: pointer;
    text-align:center;
    border: 1px solid var(--white);
    border-radius: 50px;
    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 {
	background-color: var(--black);
    color: var(--white);
    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:focus {
    outline: none;
}

/* header */
header {
	position: relative;
}
header .btn1 {
	padding: 10px;
	padding-left: 20px;
}
header .btn1 i {
	width: 30px;
	height: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--black);
	color: var(--white);
	border-radius: 50%;
	margin-left: 10px;
}
header .btn1:hover i {
	background-color: var(--white);
	color: var(--black);
}
.rays {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}
.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: relative;
	z-index: 10;
	/* background-color: var(--white); */
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
	/*backdrop-filter: blur(5px);*/
}
.navbar.fixed-top {
	position: fixed;
	top: 10px;
	left: 0;
	right: 0;
	width: 80%;
	margin: auto;
	padding: 10px 5px 10px 20px;
	border-radius: 42px;
	overflow: hidden;
	background: rgba(22, 24, 26, .7);
    backdrop-filter: blur(16px);
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}

.logo {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
}
.logo img { height: 50px; }
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
}
.navbar-brand img { height: 40px; }
.navbar.fixed-top .navbar-brand img { height: 35px; }

.navbar-toggler { width: 2.5em; height: 2.5em; border:1px solid #666; border-radius:50%;}
.navbar-toggler:focus { box-shadow:none;}
.navbar-toggler-icon { width: 1.2em; height: 1.2em; filter: brightness(0) invert(1);}
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}

.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	/*padding: 30px;*/
}
.nav-link:hover {
	color: var(--color3);
}
.navbar.fixed-top .nav-link { padding: 15px; }
.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 */
.owl-slide .item img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.owl-slide .owl-nav > div {
	position: absolute;
	top: 40%;
	font-size: 3em;
	color: #fff;
	padding: 10px;
}
.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;
}
/*********************/
.heading h2 {
	font-size: 72px;
}
.heading span {
	font-family: "Merriweather", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	color: var(--color2);
}
.heading v {
    font-family: 'Ivy Presto';
	/*color: #1f6cd8;*/
}
/*********************/
/* marquee */
.logos {
	background-size: 700px;
	background-repeat: no-repeat;
	background-position: center;
}
.logos .wrap {
	position: relative;
}
.logos .wrap:before,
.logos .wrap:after {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
	width: 150px;
}
.logos .wrap:after {
	left: auto;
	transform: rotate(180deg);
}
.scroll7 {
	display: flex;
	gap: 55px;
}
.scroll7 img {
    max-width: 170px;
	max-height: 100px;
}

.videos .item {
	position: relative;
	border-radius: 15px;
	border:1px solid #7e7e7e29;
	overflow: hidden;
}
.videos .item video {
	display: block;
	width:100%;
}

/*********************/
.welcome {
	position: relative;
}
.welcome h2 {
    font-size:45px;
    line-height:1.4em;
    margin-bottom:25px;
}
.welcome h2 .text-slider span {
	font-weight: 600;
	color: var(--color1);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(270deg, #369698, #425ac1 51%, #ff36b7);
    -webkit-background-clip: text;
    background-clip: text;
}
/*********************/
.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 {
	background-size: cover;
}
.home_products .item {
	position: relative;
	overflow: hidden;
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
}
.home_products .item figure img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.home_products .item h4 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	text-shadow: 5px 5px 15px #111;
	transition: 1s;
}
.home_products .item .desc {
	position: absolute;
	top: 0;
	left: -100%;
	padding: 20px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	background-color: rgba(0,0,0,0.7);
	transition: 1s;
}
.home_products .btn1 {
	padding: 5px 25px;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 14px;
}
.home_products .item:hover h4 {
	position: absolute;
	bottom: 80%;
}
.home_products .item:hover .desc {
	left: 0;
}

/*********************/
/* 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 {
	position: relative;
	border-top: 1px solid #9e9e9e29;
	padding: 100px 0;
}
.counter_wrap:before {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/bg.png');
	background-size: cover;
	background-position: bottom;
	width: 60%;
	height: 350px;
	margin:0 auto;
}
.counter_wrap:after {
	position: absolute;
	inset: 0;
	content: '';
	height: 350px;
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
	z-index: -1;
}
.counter_wrap .item,
.aboutus .item {
	position: relative;
	border: 1px solid #ffffff1a;
	border-radius: 16px;
	padding: 32px;
	overflow: hidden;
	height: 100%;
	transition: var(--transition);
}
.counter_wrap .item h1 {
    font-family: 'Ivy Presto';
	/*color: #1f6cd8;*/
	font-size: 48px;
	font-weight: 600;
}
.counter_wrap .item:before,
.aboutus .item:before {
	position: absolute;
	inset: 0;
	content: '';
    background: radial-gradient(50% 50% at 50% 50%, rgb(45, 87, 238) 0%, rgb(44, 51, 219) 66%, rgb(97, 31, 196) 66.01%, rgb(63, 15, 80) 100%);
    filter: blur(132px);
    border-radius: 100%;
    opacity: 0.3;
    transform: rotate(-15deg) translateY(100px);
}
.counter_wrap .item:after,
.aboutus .item:after {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/bg.png');
	background-size: cover;
	background-position: bottom;
	transform: translateY(50%);
	opacity: 0.5;
}
.aboutus .item:before {
    transform: rotate(-15deg) translateY(50%);
}
.aboutus .item img:first-child {
	margin-bottom: 15px;
}
.aboutus .item img:nth-child(2) {
	position: absolute;
	bottom: 30px;
	right: 30px;
	transform: rotate(180deg);
}
.aboutus .item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px #ffffff1a;
}
.method img {
	border-radius: 15px;
}
.method h2 span {
    font-family: 'Ivy Presto';
}
/*********************/
/* testimonials */
.testimonials {
	padding: 100px 0;
}
.testimonials video {
	display: block;
	width: 100%;
	border-radius: 20px;
	border:1px solid #7e7e7e29;
}
.testimonials iframe {
	display: block;
	width: 100%;
	height: 300px;
	border-radius: 20px;
	border:1px solid #7e7e7e29;
}
.testimonials .item {
	position: relative;
	border: 1px solid #ffffff1a;
	border-radius: 16px;
	padding: 80px 30px 30px;
	overflow: hidden;
	height: 100%;
	transition: var(--transition);
}
.testimonials .item:before {
	position: absolute;
	inset: 0;
	content: '';
    background: radial-gradient(50% 50% at 50% 50%, rgb(45, 87, 238) 0%, rgb(44, 51, 219) 66%, rgb(97, 31, 196) 66.01%, rgb(63, 15, 80) 100%);
    filter: blur(132px);
    border-radius: 100%;
    opacity: 0.3;
    transform: rotate(-15deg) translateY(50%) translateX(30%);
}
.testimonials .item:after {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/bg.png');
	background-size: 140%;
	background-repeat: no-repeat;
	background-position: left bottom;
	transform: translateY(-30%);
}
.testimonials .item p {
	font-family: "Merriweather", serif;
	font-size: 20px;
	font-style: italic;
}
.testimonials .item h4 {
	font-size: 16px;
	color: #999;
}
/*********************/
/* 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;
	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: #fff;
}
footer .logo {
	height: 40px;
	/*filter: brightness(0) invert(1);*/
}
footer .btn1 i {
	transform: rotate(-45deg);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	margin: 20px 0;
}
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);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom img {
    max-width:100%;
	filter: brightness(0) invert(1);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	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(--black);
}

.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;}
/*****************/
.circle-container {
    position: relative;
    background-image: url('../upload/require-circle.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: calc(var(--vw) * 57.7) calc(var(--vw) * 57.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(var(--vw) * 57.7);
    height: calc(var(--vw) * 57.7);
    margin: 0 auto;
}
.circle-container:before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../upload/circle-bg.png');
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-20%);
	z-index: -1;
}
.require-circle-title {
    font-size: 36px;
    text-align: center;
    color: #fff;
    width: calc(var(--vw) * 35);
    margin-bottom: calc(var(--vw) * 1.8);
}
.require-circle-title span {
    font-family: 'Ivy Presto';
	/*color: #1f6cd8;*/
}
.cicrcle-text {
    font-size:12px;
    text-align: center;
    color: #a0a0a0;
    width: calc(var(--vw) * 26.5);
    margin-bottom: calc(var(--vw) * 2.6);
}
.result-btn {
    position:relative;
	font-size: calc(var(--vw) * 1.2);
    text-transform: uppercase;
    color: #031c11;
    display: flex;
    align-items: center;
	justify-content: center;
    border-radius: calc(var(--vw) * 4.5);
    width: calc(var(--vw) * 19.44);
    height: calc(var(--vw) * 4.86);
    background: linear-gradient(49deg, #15bcdf .01%, #0ddc7a 61.5%, #15bcdf 100%);
    border: none;
    transition: all .5s cubic-bezier(.4, 0, .2, 1) 0s;
}
.result-btn:hover {
    background: linear-gradient(49deg, #15bcdf .10%, #0ddc7a 100%, #15bcdf 100%);
    color: #fff;
}
.result-btn.type2 span {
    position:relative;
    z-index:1;
    color: #fff;
}
.result-btn.type2:before {
    content:'';
    position:absolute;
    inset:0;
    background:#000;
    margin:3px;
    border-radius: calc(var(--vw) * 4.5);
    transition: all .5s cubic-bezier(.4, 0, .2, 1) 0s;
}
.result-btn.type2:hover span {
    color: #031c11;
}
.result-btn.type2:hover:before {
    opacity:0;
}
.under-marker-container {
    position: absolute;
    bottom: calc(var(--vw) * -1.4);
    border-radius: calc(var(--vw) * 25.4);
    width: calc(var(--vw) * 7.4);
    height: calc(var(--vw) * 3.1);
    border: 1px solid #414141;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: linear-gradient(145deg, rgba(10, 17, 33, .06) 0, rgba(22, 29, 50, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: calc(var(--vw) * 1);
	font-weight: 100;
	letter-spacing: 1px;
}
.first-link-list {
    position: absolute;
    left: calc(var(--vw) * -19);
    display: flex;
}
.google-item {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--vw) * 12.5);
    height: calc(var(--vw) * 12.5);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-item {
    position: absolute;
    top: calc(var(--vw) * -.5);
    left: calc(var(--vw) * 14);
    width: calc(var(--vw) * 13.8);
    height: calc(var(--vw) * 13.8);
    border-radius: 100%;
    background: linear-gradient(90deg, #fff 0, #01f28e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #414141;

	font-weight: 700;
    font-size: calc(var(--vw) * 1.6);
    line-height: 1;
    letter-spacing: -.02em;
    text-align: center;
    color: #031c11;
}
.post-item {
    position: absolute;
    top: calc(var(--vw) * 12);
    left: calc(var(--vw) * 7);
    width: calc(var(--vw) * 12.5);
    height: calc(var(--vw) * 12.5);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.discord-item {
    position: absolute;
    top: calc(var(--vw) * 12);
    left: calc(var(--vw) * 22);
    width: calc(var(--vw) * 12.5);
    height: calc(var(--vw) * 12.5);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.second-link-list {
    position: absolute;
    left: calc(var(--vw) * 51);
    bottom: calc(var(--vw) * 27);
    display: flex;
}
.second-link-list img {
	width: auto;
	max-width: 100px;
	max-height: 70px;
}
.paid-container {
    position: absolute;
    width: calc(var(--vw) * 13.8);
    height: calc(var(--vw) * 13.8);
    border-radius: 100%;
    background: linear-gradient(90deg, #fff 0, #01f28e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #414141;

    font-weight: 700;
    font-size: calc(var(--vw) * 1.6);
    line-height: 1;
    letter-spacing: -.02em;
    text-align: center;
    color: #031c11;
}
.pinterest-item {
    position: absolute;
    top: calc(var(--vw) * -10);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.twitter-item {
    position: absolute;
    top: calc(var(--vw) * -7);
    left: calc(var(--vw) * 10);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.tiktok-item {
    position: absolute;
    left: calc(var(--vw) * 14);
    top: calc(var(--vw) * 3);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.gogle-item {
    position: absolute;
    left: calc(var(--vw) * 9);
    top: calc(var(--vw) * 12);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.facebook-item {
    position: absolute;
    top: calc(var(--vw) * 14);
    left: calc(var(--vw) * -1);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.youtube-item {
    position: absolute;
    top: calc(var(--vw) * 7);
    left: calc(var(--vw) * -9);
    width: calc(var(--vw) * 9.7);
    height: calc(var(--vw) * 9.7);
    border-radius: 100%;
    border: 1px solid #414141;
    background: linear-gradient(315deg, #111215 0, #272b2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.second-link-list .youtube-item img {
	width: auto;
	max-width: 100px;
	max-height: 50px;
}
/********************/
.deliver .heading h2 {
	font-size: 54px;
	font-weight: 700;
}
.deliver .lists .item {
	display: flex;
	gap:15px;
	align-items: center;
	background-color: #242424;
	border-bottom: 1px solid #3a3a3a;
	padding: 2em;
}
.deliver .lists .item span {
	opacity: 0.5;
}
.deliver .lists .item h2 {
	margin: 0;
}
.deliver .profile .thumb {
	display: flex;
	gap:10px;
	margin-bottom: 15px;
}
.deliver .profile .thumb img {
	width: 50px;
}
.deliver .profile .thumb div {
	display: flex;
	flex-direction: column;
}
.deliver .profile .btn1 {
	display: inline-block;
}
.deliver .profile .btn1 i {
	transform: rotate(-45deg);
}

.faqs .profile img {
	height: 60px;
}
.faqs .accordion-button:focus {
	box-shadow: none;
}

.specialize .grid_view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	grid-gap: 12px;
}
.specialize .item {
	position: relative;
	border: 1px solid #ffffff1a;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
}
.specialize .item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.specialize .item .desc {
	position: absolute;
	inset: 0;
	background-color: var(--white);
	color: var(--black);
}
.specialize .item .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #ccc;
	position: absolute;
	right: 30px;
	top: 30px;
	color: inherit;
	transition: var(--transition);
}
.specialize .item .btn i {
	transform: rotate(-45deg);
}
.specialize .item h1 {
	font-family: "Libre Baskerville", serif;
  	font-weight: 400;
	font-style: italic;
	font-size: 6em;
	text-align: center;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	bottom: 20%;
	transform: translateX(-50%);
}
.specialize .item p {
	position: absolute;
	left: 30px;
	bottom: 20px;
	margin: 0;
}
.specialize .item:hover .desc {
	background-color: rgba(99, 199, 162, 0.8);
	color: var(--white);
}
.specialize .item:hover .btn {
	background: linear-gradient(58deg, #0089c4 0, #009faf 25.63%, #00de71 100%);
	transform: scale(1.2) translateX(-3px) translateY(3px);
}

#loading {
    position: fixed;
    display: flex;
    inset:0;
    justify-content: center;
    align-items: center;
    margin:auto;
    /*background-color: #fff;*/
    /*opacity: 1;*/
    z-index: 99;
    overflow: hidden;
}
#loading:before {
    content:'';
    position: absolute;
    inset:0;
    margin:auto;
    background-color: #000;
    /*animation: width 1s;*/
    /*animation-fill-mode: both;*/
    z-index: 1;
}
@keyframes width {
    from {width: 0px;}
    to {width: 100%;}
}
#loading-logo {
    /*width:100px;*/
    z-index: 2;
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar.fixed-top { width:calc(100% - 20px); padding: 10px 0;}
    .navbar-brand { margin-left:15px;}
    .navbar-brand img { height: 25px; }
    .nav-item { padding:0;}
    .nav-link { padding:10px; border-top:1px solid rgba(255,255,255,0.2);}
	.welcome h2 { font-size: 32px;}
	.welcome h2 br { display: none;}
	.welcome p { font-size: 13px;}
	.heading h2 { font-size: 30px;}
	.counter_wrap { padding:50px 0 0;}
	.counter_wrap:before { width:100%; height:200px;}
	.testimonials { padding:0;}
    .circle-container { background-image:none; background-size: calc(var(--vw) * 94.6) calc(var(--vw) * 94.6); width: calc(var(--vw) * 94.7); height:calc(var(--vw) * 300); justify-content:start; padding-top:100px; background-position:0 100px;}
	.circle-container:before { transform: translateY(-10%);}
	.require-circle-title {color: #fff;width:calc(var(--vw) * 65); font-size:24px;}
	.first-link-list { left: calc(var(--vw) * 25); bottom: calc(var(--vw) * 60);}
    .google-item {
        width: calc(var(--vw) * 35);
        height: calc(var(--vw) * 35);
        left: calc(var(--vw) * -24.5);
        top: calc(var(--vw) * 1.3);
    }
    .text-item {
        width: calc(var(--vw) * 38.6);
        height: calc(var(--vw) * 38.6);
        font-size: calc(var(--vw) * 4.5);
    }
    .post-item {
        width: calc(var(--vw) * 35);
        height: calc(var(--vw) * 35);
        top: calc(var(--vw) * 34);
        left: calc(var(--vw) * -5);
    }
    .discord-item {
        width: calc(var(--vw) * 35);
        height: calc(var(--vw) * 35);
        top: calc(var(--vw) * 36);
        left: calc(var(--vw) * 33);
    }
	.second-link-list { left: calc(var(--vw) * 28); bottom: calc(var(--vw) * 140);}
    .paid-container {
        width: calc(var(--vw) * 38.4);
        height: calc(var(--vw) * 38.4);
        font-size: calc(var(--vw) * 4.5);
    }
    .pinterest-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        top: calc(var(--vw) * -28);
        left: calc(var(--vw) * 16.7);
    }
    .twitter-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        top: calc(var(--vw) * -7);
        left: calc(var(--vw) * 39);
    }
    .tiktok-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        left: calc(var(--vw) * 38);
        top: calc(var(--vw) * 22);
    }
    .gogle-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        left: calc(var(--vw) * 14);
        top: calc(var(--vw) * 40);
    }
    .facebook-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        top: calc(var(--vw) * 34);
        left: calc(var(--vw) * -16);
    }
    .youtube-item {
        width: calc(var(--vw) * 27);
        height: calc(var(--vw) * 27);
        top: calc(var(--vw) * 7);
        left: calc(var(--vw) * -28);
    }
    
	.deliver .heading h2 { font-size: 30px;}
	.cicrcle-text {width:calc(var(--vw) * 60); margin:0;}
    .under-marker-container,
    .result-btn {display:none;}
    .scroll7 img { max-width:120px; max-height:80px;}
    .specialize .item .desc { background-color: transparent; color: var(--white);}
    .specialize .item .btn { background: linear-gradient(58deg, #0089c4 0, #009faf 25.63%, #00de71 100%);}
    
    .content {
        background-image: url('../upload/require-circle.webp');
        background-size:contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
