/*------------------- FONT-INCLUDE LINK START ---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*------------------- FONT-INCLUDE LINK COMPLETED --------------------*/

/*------------------- PRE-DEFINED SECTION START --------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	font-family: "Poppins", sans-serif !important;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol,
ul {
	margin: 0;
}

ol,
ul li {
	list-style: none;
}

a {
	color: #007bff;
	text-decoration: none !important;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button {
	cursor: pointer;
}

button:focus {
	outline: none;
}

input[type=radio] {
	width: 5px;
	height: 5px;
	padding: 0.4rem;
	top: 3px;
	border: 2px solid #fff;
	outline: none;
	border-radius: 50%;
	appearance: none;
	cursor: pointer;
	transition: background-color 0.3s, box-shadow 0.3s;
	position: relative;
}

input[type=radio]::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: none;
}

input[type=radio]:checked {
	border-color: #fed580;
	box-shadow: 0 0 10px 3px #fed580;
}

input[type=radio]:checked::after {
	background: #fed580;
}

input[type=number]::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	margin: 0;
}

select {
	cursor: pointer;
}

/*----------------------- NEW -----------------------*/

.custom-select-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.custom-select-trigger {
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 100%;
	padding: 0.7rem 1rem;
	border: none;
	background: #ffffff7a;
	color: #fff;
	font-weight: 300;
	border-radius: 5px;
}

.custom-options {
	display: none;
	position: absolute;
	left: 0;
	background: #fff;
	color: #000;
	width: 100%;
	z-index: 2;
	border-radius: 5px;
	font-size: 0.9rem !important;
}

.custom-options .custom-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #00000030;
}

.custom-options .custom-option:last-child {
	border: none;
}

.custom-options .custom-option img {
    height: auto;
    width: 40px;
    margin-right: 1rem;
}

.custom-options .custom-option.tatatel img {
	height: 50px;
    width: 80px;
}

.open .custom-options {
	display: block;
}

.custom-select-trigger img {
	aspect-ratio: 3 / 3;
    object-fit: cover;
    height: auto;
    width: 40px;
    margin-right: 1rem;
}

.custom-select-trigger img.tatatel-img {
    height: 50px;
    width: 80px;
}

/*----------------------- NEW -----------------------*/

input,
select,
textarea {
	width: 100%;
	padding: 0.7rem 1rem;
	border: none;
	background: #00000047;
	border-radius: 5px;
	color: #fff;
	font-weight: 300;
	font-size: 0.9rem !important;
}

input::placeholder,
textarea::placeholder {
	color: #e9e9e9;
}

input:focus,
select:focus,
textarea:focus {
	background: #0000005d;
	outline: 1px solid #00000077;
}

small {
	color: #ffe041;
	font-size: 0.8rem !important;
	line-height: 1rem;
	font-weight: 300;
	margin: 0.1rem 0;
	display: none;
}

.z-index1 {
	z-index: 1;
}

.m-r {
	margin-right: 1rem;
}

/*------------------- PRE-DEFINED SECTION COMPLETED --------------------*/

/*------------------- PRELOADER SECTION START --------------------*/
#preloader {
	position: absolute;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	background: #027dc0;
	z-index: 150;
}

.loader-logo {
	height: auto;
	width: 100%;
	padding: 1rem 0;
}

.loader-logo .loader-logo-img {
	height: auto;
	width: 280px;
}

.loader-logo .loader-logo-img img {
	height: auto;
	width: 100%;
}

.loader {
	position: relative;
	width: 70px;
	height: 70px;
	perspective: 100px;
}

.loader div {
	height: 100%;
	width: 100%;
	background: #fedb8b;
	position: absolute;
	left: 50%;
	transform-origin: left;
	animation: loader 2s infinite;
}

.loader div:nth-child(1) {
	animation-delay: 0.15s;
}

.loader div:nth-child(2) {
	animation-delay: 0.3s;
}

.loader div:nth-child(3) {
	animation-delay: 0.45s;
}

.loader div:nth-child(4) {
	animation-delay: 0.6s;
}

.loader div:nth-child(5) {
	animation-delay: 0.75s;
}

@keyframes loader {
	0% {
		transform: rotateY(0deg);
	}

	50%,
	80% {
		transform: rotateY(-180deg);
	}

	90%,
	100% {
		opacity: 0;
		transform: rotateY(-180deg);
	}
}

/*------------------- PRELOADER SECTION COMPLETED --------------------*/

section.main {
	height: 100vh;
	width: 100%;
	margin: 0;
	padding: 0;
}

section.main.enquiry-main {
	height: auto;

}

section.main .jumbotron {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

#flipbook {
	height: 100vh;
	width: 100%;
}

#flipbook .page {
	height: 100vh;
	width: 100%;
	background: #d8f4ffd7;
	text-align: center;
}

#flipbook .page-wrapper {
	-webkit-perspective: 2000px;
	-moz-perspective: 2000px;
	-ms-perspective: 2000px;
	-o-perspective: 2000px;
	perspective: 2000px;
}

.book {
	height: 100%;
	width: 100%;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	padding: 0;
}

.book .book-overlay {
	height: 100%;
	width: 100%;
	background: linear-gradient(140deg, #00000000 10%, #001aff9c 90%);
	position: relative;
}

.navi-cover-info-part {
	position: absolute;
	bottom: 15%;
	left: 0;
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
}

.navi-cover-info-part .navi-cover-info {
	height: auto;
	width: 15%;
	padding: 2.5rem 0;
	margin: 0 0.5rem;
	background-image: url('../../images/notebook-computer.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.navi-cover-info-part .navi-cover-info .navi-info {
	height: auto;
	width: 100%;
	text-align: center;
}

.navi-cover-info-part .navi-cover-info .navi-info h2 {
	font-size: 2.3rem;
	line-height: 2.5rem;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	background-image: linear-gradient(to bottom, #faa61a, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.2rem;
	position: relative;
}

.navi-cover-info-part .navi-cover-info .navi-info span.floating-plus {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 2.3rem;
	font-weight: 600;
	color: #fff;
	background-image: linear-gradient(to bottom, #faa61a, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navi-cover-info-part .navi-cover-info .navi-info p {
	font-size: 0.8rem;
	line-height: 1rem;
	color: #fff;
	font-weight: 300;
	margin-bottom: 0;
}

.navi-cover-info-part .cover-glowing-line {
	margin: 0 0 2.5rem;
	height: 2px;
	width: 60%;
	background: linear-gradient(to left, transparent, #fed580, transparent);
	box-shadow: 0 0 20px 0 #fed580;
}

.our-floting-text {
	position: absolute;
	bottom: 10%;
	left: 0;
	height: auto;
	width: 100%;
	text-align: center;
	padding: 0.8rem 0;
	background: linear-gradient(to left, transparent, #00000030, transparent);
}

.our-floting-text h5 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 500;
	background-image: linear-gradient(to bottom, #faa61a, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0;
}

.our-floting-text h5 a {
	font-weight: 700;
	transition: all 0.4s ease;
}

.our-floting-text h5 a:hover {
	text-shadow: 0px 0px #f3f3f3;
}

#cover {
	height: auto;
	width: 100%;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 11;
}

#cover .logo {
	width: 100%;
}

#cover .logo .line {
	height: 100vh;
	width: 100%;
	padding: 0;
	background: none;
	box-shadow: unset;
}

#cover .logo .line .social {
	bottom: 2%;
}

#cover .logo-bg {
	position: absolute;
	transform: translate(0, 20%);
}

#cover .logo .line .social a i {
	font-size: 2rem;
	color: #fed580;
}

.title {
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
	position: relative;
	z-index: 1;
}

.title .title-text {
	font-size: 1.2rem;
	line-height: 1.2rem;
	font-weight: 900;
	background-image: linear-gradient(180deg, #ffffff, #fcb445);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	margin-bottom: 0;
}

.title .shape {
	position: absolute;
	height: auto;
	width: 280px;
	z-index: -1;
}

.title .shape img {
	height: auto;
	width: 100%;
}

.logo {
	position: absolute;
	height: auto;
	display: flex;
	justify-content: center;
	width: 20%;
}

.logo .line {
	height: 100%;
	width: 100%;
	padding: 27.7rem 0 0;
	background: #13577c;
	box-shadow: 0 0 10px 0px #13577c;
	position: relative;
}

.logo .line .social {
	position: absolute;
	bottom: 6%;
	left: 0;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.logo .line .social a {
	display: block;
}

.logo .line .social a i {
	font-size: 1.5rem;
	color: #fed580;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.logo .line .social a i:hover {
	color: #ffffff !important;
	box-shadow: 0 0 30px 0px #ffffff;
}

.logo-bg {
	position: absolute;
	transform: translate(0, 10%);
	border-radius: 50%;
	border: 5px solid #0D96E1;
	height: 300px;
	width: 300px;
	background: linear-gradient(180deg, #027EBF 0%, #000405 63%);
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.logo-bg .logo-img {
	height: auto;
	width: 100%;
}

.logo-bg .logo-img img {
	width: 80%;
	margin: 0 auto;
}

.logo-bg h3.logo-text {
	position: absolute;
	right: 10%;
	bottom: 30%;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 0;
}

.logo-bg .logo-num {
	position: absolute;
	bottom: 2rem;
}

.logo-bg .logo-num a {
	text-decoration: none;
	font-size: 1.2rem;
	color: #D09B33;
}

.logo-bg .logo-num a i {
	color: #1594E3;
	font-size: 1.5rem;
	padding-right: 0.2rem;
}

.feature-product-square {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 100vh;
	width: 300px;
}

.new-title {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
	margin-top: 2rem;
}

.new-title h3.new-title-text {
	font-size: 1.2rem;
	line-height: 1.2rem;
	font-weight: 900;
	background-image: linear-gradient(180deg, #ffffff, #fcb445);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	margin: 0;
}

.new-title .new-shape {
	position: absolute;
	height: auto;
	width: 300px;
	z-index: -1;
}

.new-title .new-shape img {
	height: auto;
	width: 100%;
}

.feature-product-square .social {
	position: absolute;
	bottom: 25%;
	left: 0;
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.main-social {
	bottom: 35% !important;
}

.new-logo-css {
	margin: 2rem auto 0.5rem;
	height: auto;
	width: 120px;
}

.feature-product-square .social a {
	display: block;
}

.feature-product-square .social a i {
	font-size: 2rem;
	color: #fed580;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.feature-product-square .social a i:hover {
	color: #ffffff !important;
	box-shadow: 0 0 30px 0px #ffffff;
}

.feature-part {
	height: 75vh;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	padding-top: 2rem !important;
}

.feature-part .feature {
	height: auto;
	width: 45%;
}

.feature .feature-product-box {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.feature .feature-product-box.reverse {
	justify-content: flex-end;
}

.feature-product-box .product-info {
	height: auto;
	width: 60%;
	background: linear-gradient(to right, transparent 0, #fed580 30%);
	text-align: right;
	padding: 0.8rem 2.5rem;
	border-radius: 40px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 10px 50px 0 #00000050;
}

.feature-product-box.reverse .product-info {
	background: linear-gradient(to left, transparent 0, #fed580 30%);
	text-align: left;
}

.feature-product-box .product-info p {
	font-size: 1rem;
	line-height: 1rem;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	background-image: linear-gradient(to bottom, #0179b8, #000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0;
}

.feature-product-box .product-info .product-info-decoration {
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	width: 200px;
	z-index: -1;
}

.feature-product-box.reverse .product-info .product-info-decoration {
	left: unset;
	right: 0;
	transform: rotate(180deg);
}

.feature-product-box .product-img {
	height: 80px;
	width: 80px;
	border-radius: 50%;
	border: 2px solid #f3f6a2;
	background: none;
	position: relative;
	margin-left: -1rem;
	z-index: 1;
}

.feature-product-box.reverse .product-img {
	margin-right: -1rem;
}

.feature-product-box .product-img-circle {
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background: linear-gradient(to bottom, #faa61a, #fedb8b);
	padding: 0.7rem 0 0;
}

.feature-product-box .product-img-circle img {
	height: auto;
	object-fit: contain;
	aspect-ratio: 3 / 2;
	margin: 0 auto;
}

.feature-product-box .product-img img.product-brand-stripe-decor {
	position: absolute;
	bottom: -1rem;
	right: 0;
	height: auto;
	width: 70px;
	z-index: -1;
	transform: rotate(-15deg);
}

.feature-product-box.reverse .product-img img.product-brand-stripe-decor {
	transform: rotate(75deg);
}

.feature-product-box .product-brand-logo {
	position: absolute;
	bottom: -1.4rem;
	left: 0;
	height: 40px;
	width: 65%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	border-radius: 40px;
	background: #fff;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}


.feature-product-box.reverse .product-brand-logo {
	left: unset;
	right: 0;
	clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 10% 0);
}

.feature-product-box .product-brand-logo .product-brand {
	padding: 1rem 0.2rem;
	height: auto;
	width: 60px;
}

.feature-product-box .product-brand-logo .product-brand img {
	height: auto;
	width: 100%;
	aspect-ratio: 3/2;
}

.brand {
	position: relative;
	height: auto;
	width: 100%;
	padding: 1rem 0 0.5rem;
	background: #00000030;
	backdrop-filter: blur(2px);
	text-align: center;
}

.defintive .brand {
	position: absolute;
	bottom: 0;
	left: 0;
}

.brand h3 {
	font-size: 1.3rem;
	line-height: 1.3rem;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	background-image: linear-gradient(to bottom, #faa61a, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0;
}

.brand-decor-line {
	height: 2px;
	width: 200px;
	background: #fff;
	margin: 0.5rem 0;
	box-shadow: 0 0 20px 1px #fff;
	position: relative;
}

.brand-decor-line::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px;
	width: 30px;
	border-radius: 10px;
	background: #fed580;
	box-shadow: 0 0 20px 2px #fed580;
	animation: decorMove 5s ease infinite;
}

@keyframes decorMove {
	0% {
		left: 90%;
	}

	50% {
		left: 0;
	}

	100% {
		left: 90%;
	}
}

.brand .suitable-text {
	position: absolute;
	bottom: 2%;
	left: 0;
	padding: 1.5rem 2rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 10px 0 #027dc077;
	border-radius: 0 50px 50px 0;
	z-index: 11;
}

.brand .suitable-text h3 {
	background-image: linear-gradient(to bottom, #0179b8, #000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.brand .clients-list {
	height: auto;
	width: 100%;
	text-align: center;
}

.brand .clients-list h4 {
	font-family: "Oswald", sans-serif;
	font-size: 1.2rem;
	line-height: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
	color: #f5ff9a;
	text-shadow: 2px 4px #00000020;
}

.brand .clients-list h4 span {
	color: #6fc5ff;
	font-size: 0.8rem;
	line-height: 1rem;
}


.brand .clients-list p {
	font-family: "Poppins", sans-serif !important;
	font-size: 1rem !important;
	line-height: 1rem !important;
	color: #fff !important;
	font-weight: 500 !important;
	font-style: italic;
	letter-spacing: 0 !important;
	margin-bottom: 0rem;
}

.separator-glowing-line {
	margin: 0.5rem auto;
	height: 1px;
	width: 80%;
	background: linear-gradient(to left, transparent, #fed580, transparent);
	box-shadow: 0 0 20px 1px #fed580;
}

.solution-end {
	position: absolute;
	bottom: 0;
	left: 0;
	height: auto;
	width: 100%;
	padding: 0.8rem 0 0;
	background: #0b151e;
	text-align: center;
}

.solution-end h3 {
	font-size: 1.8rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 300;
	margin-bottom: 0;
	font-family: "Fira Sans Extra Condensed", sans-serif;
}

img.separator-glowing-line-img {
	margin: 0 auto;
	height: 30px;
	width: 80%;
}

.solution-end h2 {
	font-size: 2.5rem;
	line-height: 2rem;
	color: #fff;
	font-weight: 600;
	background-image: linear-gradient(to bottom, #fff, #0179b8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.7rem;
	font-family: "Fira Sans Extra Condensed", sans-serif;
}

footer.hashtag {
	height: auto;
	width: 100%;
	padding: 0.5rem 0;
	text-align: center;
	background: #014264;
}

footer.hashtag h6 {
	font-size: 1.8rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 0;
}

footer.hashtag h6 a {
	color: #ffffffe1;
	font-weight: 500;
}

/*----------------------------- NAV & DOTS CSS FOR FLIP PAGE START -----------------------------*/

.owl-carousel#my_clientslist_carousel {
	width: 90% !important;
	margin: 0 auto;
}

#nav {
	position: absolute;
	bottom: 45%;
	right: 0;
	width: 100%;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	transform: translate(0, -50%);
}

#nav button {
	padding: 0.5rem 0.8rem;
	border: 2px solid #0179b8;
	outline: none;
	background: linear-gradient(to bottom, #027fc0e6, transparent);
	box-shadow: 0 0 20px 0 #0179b8;
	border-radius: 50%;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 300;
	margin: 0 1rem;
	cursor: pointer;
}

#nav button i {
	padding: 0 0.2rem;
}

.flip-dots {
	position: absolute;
	top: 15%;
	right: 0;
	background: #00000020;
	backdrop-filter: blur(10px);
	height: 60vh;
	width: 40px;
	transition: all 0.4s ease;
	z-index: 100;
	overflow: visible;
}

.flip-dots button#scroll-up-btn,
#scroll-down-btn {
	position: absolute;
	height: auto;
	width: 100%;
	border: none;
	outline: none;
	padding: 0.8rem 0;
	color: #fff;
	text-align: center;
	background: #0d96e1;
	backdrop-filter: blur(10px);
	opacity: 1;
	cursor: pointer;
	transition: all 0.8s ease;
}

.flip-dots button#scroll-up-btn {
	top: -3rem;
	left: 0;
	border-radius: 10px 10px 0 0;
}

.flip-dots button#scroll-down-btn {
	top: unset;
	bottom: 0;
	border-radius: 0 0 10px 10px;
}

.flip-dots button,
#scroll-up-btn i,
#scroll-down-btn i {
	font-size: 1rem;
}

.flip-dots #dots-container {
	flex-direction: column;
	align-items: end;
	justify-content: flex-start;
	flex-wrap: nowrap;
	height: 100%;
	width: 100%;
	overflow: auto;
	white-space: nowrap;
	padding-bottom: 3rem;
}

.dot {
	display: block;
	font-size: 1rem;
	line-height: 1rem;
	padding: 0.9rem 0.8rem;
	color: #fff;
	cursor: pointer;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #ffffff20;
	transition: all 0.8s ease;
}

.dot::before {
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.dot:nth-child(1)::before {
	content: '\f015 \00a0\00a0\00a0\00a0 home';
	color: #fff;
}

.dot:nth-child(2)::before {
	content: '\f54e \00a0\00a0\00a0\00a0 Product';
	color: #77ff00;
}

.dot:nth-child(3)::before {
	content: '\f233 \00a0\00a0\00a0\00a0 Server';
	color: #ffd600;
}

.dot:nth-child(4)::before {
	content: '\f108 \00a0\00a0\00a0\00a0 Desktop';
	color: #ffd600;
}

.dot:nth-child(5)::before {
	content: '\f109 \00a0\00a0\00a0\00a0 Laptop';
	color: #ffd600;
}

.dot:nth-child(6)::before {
	content: '\f02f \00a0\00a0\00a0\00a0 Printers';
	color: #ffd600;
}

.dot:nth-child(7)::before {
	content: '\f06e \00a0\00a0\00a0\00a0 CCTV';
	color: #ffd600;
}

.dot:nth-child(8)::before {
	content: '\f577 \00a0\00a0\00a0\00a0 Biometric';
	color: #ffd600;
}

.dot:nth-child(9)::before {
	content: '\f1e4 \00a0\00a0\00a0\00a0 EPABX';
	color: #ffd600;
}

.dot:nth-child(10)::before {
	content: '\f1eb \00a0\00a0\00a0\00a0 Wifi & Networks';
	color: #ffd600;
}

.dot:nth-child(11)::before {
	content: '\f1b2 \00a0\00a0\00a0\00a0 Software';
	color: #ffd600;
}

.dot:nth-child(12)::before {
	content: '\f0ad \00a0\00a0\00a0\00a0 Services';
	color: #77ff00;
}

.dot:nth-child(13)::before {
	content: '\f7d9 \00a0\00a0\00a0\00a0 Laptop Repairing';
	color: #ffd600;
}

.dot:nth-child(14)::before {
	content: '\f017 \00a0\00a0\00a0\00a0 Data Recovery';
	color: #ffd600;
}

.dot:nth-child(15)::before {
	content: '\e574 \00a0\00a0\00a0\00a0 Rental Services';
	color: #ffd600;
}

.dot.active {
	backdrop-filter: blur(5px);
	background: #00000040;
}

.flip-dots:hover {
	width: 200px;
}

/*---------------------------- NAV & DOTS CSS FOR FLIP PAGE COMPLETE -----------------------------*/

.open-button {
	position: absolute;
	width: 180px;
	height: auto;
	bottom: 15%;
	left: 0;
	border-radius: 50%;
	background: none;
	border: none;
	outline: none;
	color: #fff;
	font-weight: 100;
	cursor: pointer;
	z-index: 50;
}

.open-button img {
	height: auto;
	width: 100%;
}

.enquiry {
	height: auto;
	width: 100%;
}

.need-for-responsive {
	display: none;
}

.not-need-for-responsive {
	display: block;
}

.enquiry .enquiry-form {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 2rem 0;
}

.enquiry .enquiry-form .chat-box {
	font-family: "Merriweather Sans", sans-serif;
	height: auto;
	width: 100%;
	padding: 1.5rem 2rem;
	backdrop-filter: blur(2px);
	box-shadow: 0 0 20px 0 #00000030;
	border: 1px solid #fff;
	border-radius: 20px;
	overflow: auto;
}

.enquiry-form .chat-box h2 {
	font-size: 1.8rem;
	line-height: 2.2rem;
	color: #fff;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.enquiry-form .chat-box h2 i {
	font-size: 1.5rem;
	padding-right: 0.5rem;
}

.enquiry-form .chat-box form.form-container {
	height: auto;
	width: 100%;
}

form.form-container button.many-more-btn-for-enquiry {
	color: #fff;
	border: 2px solid #04c4fb;
	outline: none;
	background: #a486bf3d;
	padding: 0.3rem 2.5rem;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 400;
	border-radius: 20px;
	margin: 0.4rem 0;
	backdrop-filter: blur(5px);
	cursor: pointer;
}

form.form-container button.many-more-btn-for-enquiry:hover,
form.form-container button.many-more-btn-for-enquiry.active {
	background: #2fccdc;
	color: #000;
}

form.form-container .cover-glowing-line {
	margin: 0.5rem 0;
	height: 1px;
	width: 100%;
	background: #fff;
	box-shadow: 0 0 20px 1px #fff;
}

form.form-container label {
	font-size: 0.9rem;
	line-height: 1rem;
	color: #fff;
	font-weight: 300;
	text-transform: capitalize;
	margin: 0.5rem 0;
}

.chevron-select {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.9rem;
	color: #fff;
}

.chips-part {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.chips-part .chips {
	height: auto;
	width: 180px;
	padding: 0.2rem 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	text-align: center;
	border-radius: 50px;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0.2rem;
	cursor: pointer;
	transition: all 0.4s ease;
	position: relative;
}

.chips-part .chips i {
	color: transparent;
}

.chips-part .chips.active i,
.chips-part .chips:hover i {
	color: #ffffff;
}
.chips-part .chips img {
	height: auto;
	width: 35px;
	border-radius: 50%;
	aspect-ratio: 3 / 2;
    object-fit: contain;
	filter: invert(1);
}
.chips-part .chips:hover,
.chips-part .chips.active {
	background: linear-gradient(45deg, #3637d5, #e60aed);
}

form.form-container textarea {
	min-height: 100px;
}

form.form-container .chat-btn {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.enquiry .enquiry-info-side {
	height: auto;
	width: 100%;
	padding: 0 1rem;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	border: 1px solid #ffffff99;
	margin-bottom: 2rem;
	position: relative;
}

.enquiry .enquiry-info-side .enquiry-info {
	height: auto;
	width: 100%;
	text-align: center;
	padding: 1rem 0 0;
}

.enquiry-info-side .enquiry-info .logo-bg {
	border-radius: 50%;
	border: 5px solid #0D96E1;
	height: 300px;
	width: 300px;
	margin: 1rem auto;
	background: linear-gradient(180deg, #027EBF 0%, #000405 63%);
	transform: translate(0);
	position: relative;
}

.enquiry-info-side .enquiry-info .logo-bg .logo-img {
	height: 100%;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.enquiry-info-side .enquiry-info .logo-bg .logo-img img {
	width: 80%;
	margin: 0 auto;
}

.enquiry-info-side .enquiry-info .logo-bg h3.logo-text {
	position: absolute;
	right: 10%;
	bottom: 30%;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 0;
}

.enquiry-info-side .enquiry-info .logo-bg .logo-num {
	position: absolute;
	bottom: 2rem;
	left: 3.5rem;
}

.enquiry-info-side .enquiry-info .logo-bg .logo-num a {
	text-decoration: none;
	font-size: 1.2rem;
	color: #D09B33;
}

.enquiry-info-side .enquiry-info .logo-bg .logo-num a i {
	color: #1594E3;
	font-size: 1.5rem;
	padding-right: 0.2rem;
}

.logo-submitted {
	height: auto;
	width: 100%;
}

.logo-submitted img {
	height: auto;
	width: 250px;
	margin: 0 auto;
}

.enquiry-info-side .enquiry-info h1 {
	font-size: 2.5rem;
	line-height: 2rem;
	color: #fff;
	font-weight: 700;
	background-image: linear-gradient(to bottom, #faa61a, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.4rem;
}


.enquiry-info-side .enquiry-info h2 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 200;
	margin-bottom: 0.5rem;
}

.enquiry-info-side .enquiry-info p {
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 300;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.enquiry-info-side .enquiry-info h6 {
	font-size: 1.2rem;
	line-height: 1.2rem;
	color: #fff;
	font-weight: 300;
	margin: 1rem 0 0;
}

.enquiry-info-side .cover-glowing-line {
	margin: 1rem auto;
	height: 1px;
	width: 80%;
	background: #fed580;
	box-shadow: 0 0 20px 1px #fed580;
}

button.enquiry-btn.btn {
	color: #fff;
	border: 2px solid transparent;
	outline: none;
	background: linear-gradient(to bottom, #027dc0, #30cddd);
	padding: 0.6rem 3rem;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 400;
	border-radius: 5px;
	margin-bottom: 3rem;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	position: relative;
}

button.enquiry-btn.btn .star-1 {
	position: absolute;
	top: 20%;
	left: 20%;
	width: 25px;
	height: auto;
	filter: drop-shadow(0 0 0 #fff);
	z-index: -5;
	transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

button.enquiry-btn.btn .star-2 {
	position: absolute;
	top: 45%;
	left: 45%;
	width: 15px;
	height: auto;
	filter: drop-shadow(0 0 0 #fff);
	z-index: -5;
	transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

button.enquiry-btn.btn .star-3 {
	position: absolute;
	top: 40%;
	left: 40%;
	width: 5px;
	height: auto;
	filter: drop-shadow(0 0 0 #fff);
	z-index: -5;
	transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

button.enquiry-btn.btn .star-4 {
	position: absolute;
	top: 20%;
	left: 40%;
	width: 8px;
	height: auto;
	filter: drop-shadow(0 0 0 #fff);
	z-index: -5;
	transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

button.enquiry-btn.btn .star-5 {
	position: absolute;
	top: 25%;
	left: 45%;
	width: 15px;
	height: auto;
	filter: drop-shadow(0 0 0 #fff);
	z-index: -5;
	transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

button.enquiry-btn.btn:hover {
	background: linear-gradient(to bottom, #027dc02b, #30cddd61);
	border-color: #027dc0;
}

button.enquiry-btn.btn:hover .star-1 {
	top: -80%;
	left: -30%;
	width: 30px;
	filter: drop-shadow(0 0 10px #fff);
	z-index: 2;
}

button.enquiry-btn.btn:hover .star-2 {
	top: -25%;
	left: 10%;
	width: 20px;
	filter: drop-shadow(0 0 10px #fff);
	z-index: 2;
}

button.enquiry-btn.btn:hover .star-3 {
	top: 55%;
	left: 30%;
	width: 10px;
	filter: drop-shadow(0 0 10px #fff);
	z-index: 2;
}

button.enquiry-btn.btn:hover .star-4 {
	top: 30%;
	left: 80%;
	width: 15px;
	filter: drop-shadow(0 0 10px #fff);
	z-index: 2;
}

button.enquiry-btn.btn:hover .star-5 {
	top: 25%;
	left: 100%;
	width: 20px;
	filter: drop-shadow(0 0 10px #fff);
	z-index: 2;
}

.fil0 {
	fill: #fff;
}

.enquiry .social {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 0 3rem;
}

.enquiry .social a {
	display: block;
}

.enquiry .social a i {
	font-size: 2rem;
	color: #fed580;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.enquiry .social a i:hover {
	color: #ffffff !important;
	box-shadow: 0 0 30px 0px #ffffff;
}

.enquiry-info-side .book-cover-layout-decorate-1 {
	position: absolute;
	top: 2rem;
	left: 2rem;
	height: 2px;
	width: 50px;
	background: #fff;
	box-shadow: 0 0 20px 2px #fed580;
}

.enquiry-info-side .book-cover-layout-decorate-2 {
	position: absolute;
	top: 1rem;
	left: 3rem;
	height: 80px;
	width: 2px;
	background: #fff;
	box-shadow: 0 0 20px 2px #fed580
}

.enquiry-info-side .book-cover-layout-decorate-3 {
	position: absolute;
	top: 2rem;
	right: 2rem;
	height: 2px;
	width: 50px;
	background: #fff;
	box-shadow: 0 0 20px 2px #fed580;
}

.enquiry-info-side .book-cover-layout-decorate-4 {
	position: absolute;
	top: 1rem;
	right: 3rem;
	height: 80px;
	width: 2px;
	background: #fff;
	box-shadow: 0 0 20px 2px #fed580
}

/*---------------------------- TICK-ANIMATION CSS START -----------------------------*/

.animation-ctn {
	text-align: center;
	margin: 1rem 0;
}

@-webkit-keyframes checkmark {
	0% {
		stroke-dashoffset: 100px;
	}

	100% {
		stroke-dashoffset: 200px;
	}
}

@-ms-keyframes checkmark {
	0% {
		stroke-dashoffset: 100px;
	}

	100% {
		stroke-dashoffset: 200px;
	}
}

@keyframes checkmark {
	0% {
		stroke-dashoffset: 100px;
	}

	100% {
		stroke-dashoffset: 0px;
	}
}

@-webkit-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 480px;
	}

	100% {
		stroke-dashoffset: 960px;

	}
}

@-ms-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 240px;
	}

	100% {
		stroke-dashoffset: 480px;
	}
}

@keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 480px;
	}

	100% {
		stroke-dashoffset: 960px;
	}
}

@keyframes colored-circle {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 100;
	}
}

.inlinesvg .svg svg {
	display: inline;
}

.icon--order-success svg polyline {
	-webkit-animation: checkmark 2s ease-in-out 2s backwards infinite;
	animation: checkmark 2s ease-in-out 2s backwards infinite;
}

.icon--order-success svg circle {
	-webkit-animation: checkmark-circle 2s ease-in-out backwards infinite;
	animation: checkmark-circle 2s ease-in-out backwards infinite;
}

.icon--order-success svg circle#colored {
	-webkit-animation: colored-circle 2s ease-in-out 2s backwards infinite;
	animation: colored-circle 2s ease-in-out 2s backwards infinite;
}

/*---------------------------- TICK-ANIMATION CSS COMPLETE -----------------------------*/

/*---------------------------- VALIDATION CSS START -----------------------------*/

.form-control {
	padding: unset !important;
	font-size: unset !important;
	font-weight: unset !important;
	line-height: unset !important;
	color: unset !important;
	background-color: unset !important;
	border: none !important;
}

.form-control.error small {
	display: block;
}

.form-control.error input,
.form-control.error select,
.form-control.error textarea {
	border: 1px solid #ff6341;
}

.form-control.success input,
.form-control.success select,
.form-control.success textarea {
	border: 1px solid #2fff86;
}

/*---------------------------- VALIDATION CSS COMPLETE -----------------------------*/

/*---------------------------- EARTH-CAROUSEL CSS START -----------------------------*/

.for-drag-container {
	height: 350px;
	width: 100%;
}

.drag-container,
.spin-container {
	position: absolute;
	top: 5%;
	left: 0;
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	transform-style: preserve-3d;
	transform: rotateX(-5deg);
	z-index: 100;
}

.drag-container .spin-container {
	top: 20%;
	left: 10%;
}

.drag-container .spin-container img {
	transform-style: preserve-3d;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	border-radius: 10px;
	padding: 0.2rem;
	background: linear-gradient(45deg, #0061ff, #60efff);
	cursor: pointer;
}

#ground {
	position: absolute;
	top: 100%;
	left: 50%;
	height: auto !important;
	width: 100%;
	-webkit-transform: translate(-50%, -50%) rotateX(90deg);
	transform: translate(-50%, -50%) rotateX(90deg);
	background: -webkit-radial-gradient(center center, farthest-side, #9993, transparent);
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}

	to {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}

	to {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}

@-webkit-keyframes spinRevert {
	from {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}

	to {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

@keyframes spinRevert {
	from {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}

	to {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

/*---------------------------- EARTH-CAROUSEL CSS COMPLETE -----------------------------*/

/*---------------------------- MODAL CSS START -----------------------------*/

.modal-backdrop.show {
	opacity: 0.8 !important;
}

.modal-body {
	padding: 0 !important;
}

/*---------------------------- MODAL CSS START -----------------------------*/

.changble-for-profile-img {
	height: auto;
	width: 450px;
	border-radius: 20px;
	background: linear-gradient(45deg, #6d1d6e, #019add);
	padding: 0.2rem;
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 0 20px 0 #019bdd7f;
}

.changble-for-profile-img img {
	height: auto;
	width: 100%;
	border-radius: 40px;
	border: 2px solid #019add;
}

.changble-for-profile-address-part {
	height: auto;
	width: 100%;
	padding: 0 0 1rem;
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.changble-for-profile-address {
	height: auto;
	width: 50%;
	border: 2px solid #019bdda5;
	text-align: center;
	cursor: pointer;
	padding: 0 0 1rem;
	border-radius: 20px 0 20px 0;
	backdrop-filter: blur(10px);
	background: #00000050;
	position: relative;
}

.changble-for-profile-address:hover,
.changble-for-profile-address.active {
	background: linear-gradient(45deg, #3637d5, #e60aed);
}

.changble-for-profile-address .changble-for-profile-address-icon {
	width: 50px;
	padding: 0.5rem 0;
	text-align: center;
	border-top: 4px solid #6d1d6e;
	margin-bottom: 0.2rem;
	background: #00000020;
	border-radius: 0 0 20px 20px;
}

.changble-for-profile-address .changble-for-profile-address-icon i {
	color: #fff;
	font-size: 1.5rem;
}

.changble-for-profile-address h3 {
	font-size: 1.5rem;
	line-height: 1.7rem;
	color: #fff;
	font-weight: 700;
	background-image: linear-gradient(45deg, #019add, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.4rem;
}

.changble-for-profile-address p {
	font-size: 0.85rem !important;
	line-height: 1.4rem !important;
	padding: 0 0.5rem;
}

.changble-for-profile-address p a {
	color: #fff;
}

.need-for-responsive-profile {
	display: none;
}

.not-need-for-responsive-profile {
	display: flex;
}

.changble-for-profile {
	border: 2px solid #019add;
	backdrop-filter: blur(20px);
	background: #00000030;
	border-radius: 20px;
	text-align: center;
	padding: 0.8rem 2rem;
}

.changble-for-profile h4 {
	font-size: 2.4rem;
	line-height: 2.5rem;
	color: #fff;
	font-weight: 700;
	background-image: linear-gradient(45deg, #019add, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0;
}

.changble-for-profile p {
	text-align: justify;
	font-size: 0.9rem !important;
	height: 350px;
	overflow-y: auto;
	margin: 0.8rem 0 !important;
}

.changble-for-profile p span {
	font-weight: 500;
}

.changble-for-profile .changble-for-profile-contact-part {
	height: auto;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.changble-for-profile .changble-for-profile-contact-part i {
	font-size: 1.5rem;
	padding: 0.5rem;
	border-radius: 50%;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
}

.changble-for-profile .changble-for-profile-contact-part h6 {
	font-size: 1.4rem;
	line-height: 1.5rem;
	font-weight: 700;
	font-style: italic;
	margin: 0.5rem 0;
}

.changble-for-profile .changble-for-profile-contact-part h6 a {
	color: #fff;
	background-image: linear-gradient(45deg, #019add, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-product-box .product-info.changble-for-why-choose {
	background: linear-gradient(-45deg, #6d1d6e94, #019bddd5);
	text-align: center;
	padding: 1rem 2rem;
	border-radius: 40px;
	border: 1px solid #ffffff90;
}

.feature-product-box .product-info.changble-for-why-choose p {
	font-size: 0.7rem;
	line-height: 0.7rem;
	color: #fff;
	font-weight: 600;
	background-image: linear-gradient(to bottom, #fff, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: capitalize;
}

.feature-product-box .product-img.changble-for-why-choose-img {
	border: 1px solid #0179b8;
	background: linear-gradient(to bottom, #027fc0e6, transparent);
	box-shadow: 0 0 20px 0 #0179b8;
}

.feature-product-box .product-img.changble-for-why-choose-img .product-img-circle {
	background: linear-gradient(338deg, #26fffb, #ffffff);
	padding: 0;
}

.feature-product-box .product-img.changble-for-why-choose-img .product-img-circle img {
	width: 100px;
	object-fit: unset;
	aspect-ratio: unset;
	transform: scale(0.65);
}

.changble-for-products {
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 0 0 1rem;
}

.products-main-box {
    height: 87vh;
    width: 32%;
    box-shadow: 0 0 50px 5px #5b94fe7e;
    border: 1px solid #6da1ff;
    border-radius: 40px;
    position: relative;
}

.products-main-box .products-main-box-img {
	height: 200px;
    width: 300px;
    border-radius: 40px;
    border: 1px solid #ffffff70;
    margin: 1.5rem auto 0;
}



.products-main-box.small .products-main-box-img.jio-img,
.products-main-box.small .products-main-box-img.vi-img {
	aspect-ratio: 1;
	object-fit: cover;
}



.products-main-box .products-main-box-info .cover-glowing-line {
    height: 2px;
    background: linear-gradient(to left, transparent, #fed580, transparent);
    margin: 0.3rem auto !important;
    box-shadow: 0 0 30px 0px #fed580;
    width: 80%;
}


.products-main-box .products-main-box-info {
	height: 100%;
	width: 100%;
	padding: 1rem;
	backdrop-filter: blur(1px);
	text-align: left;
	cursor: pointer;
	border-radius: 0 40px 40px 0;
	transition: all 0.4s ease;
}

.products-main-box .products-main-box-info img {
	width: 50px;
}

.products-main-box .products-main-box-info .chips-part .chips {
    padding: 0.2rem 0.5rem;
}

.products-main-box .products-main-box-info h1 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #fff;
	font-weight: 700;
	background-image: linear-gradient(to bottom, #7abaff, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.2rem;
}

.products-main-box .products-main-box-info p {
	font-size: 0.9rem;
	line-height: 1.2rem;
	color: #fff;
	font-weight: 100;
	margin-bottom: 0.8rem;
	font-style: italic;
}

.products-main-box .products-main-box-info h6 {
	padding: 0.5rem 0;
	background: linear-gradient(to left, transparent, #00000030, transparent);
	font-size: 0.8rem;
	line-height: 1.2rem;
	color: #fff;
	font-weight: 500;
	margin: 0.5rem 0 0;
	font-style: italic;
}

.products-main-box .products-main-box-info h6 i {
	padding-right: 0.2rem;
}

.products-main-box .show-screenshot {
	position: absolute;
	bottom: -2rem;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	transition: all 0.5s ease;
	border-radius: 40px;
}

.products-main-box:hover .show-screenshot {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}

.enquiry-info-side .enquiry-info.updated h2 {
	position: relative;
	margin: 0 auto 1rem;
	width: 400px;
	overflow: hidden;
	padding: 0.5rem 0;
	background: #003db8d1;
}

.enquiry-info-side .enquiry-info.updated h2::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	height: 100%;
	width: 100%;
	background: linear-gradient(to left, transparent, #feeed4a8, transparent);
	transform: translateX(-100%);
	transform-origin: left;
	animation: textHighlighter 5s ease-out infinite;
}

@keyframes textHighlighter {
	0% {
		transform: translateX(100%);
		transform-origin: right;
	}

	50% {
		transform: translateX(-100%);
		transform-origin: left;
	}

	100% {
		transform: translateX(100%);
		transform-origin: right;
	}
}

.need-for-responsive-new {
	display: none; 
}

.not-need-for-responsive-new {
	display: flex;
}

/*---------------------------- CUSTOM-SCROLLBAR CSS START -----------------------------*/

::-webkit-scrollbar {
	width: 0;
}

::-webkit-scrollbar-track {
	background: none;
}

::-webkit-scrollbar-thumb {
	background: none;
}

::-moz-scrollbar {
	width: 0;
}

::-moz-scrollbar-track {
	background: none;
}

::-moz-scrollbar-thumb {
	background: none;
}

/*---------------------------- CUSTOM-SCROLLBAR CSS COMPLETE -----------------------------*/


/*---------------------------- BACK-BTN CSS START -----------------------------*/

.back {
	position: absolute;
    top: 5%;
    left: 2%;
	border: 2px solid #22b2ff;
    background: linear-gradient(to bottom, #027dc0, #30cddd);
    border-radius: 5px;
	text-align: center;
	padding: 0.2rem 1.5rem;
	cursor: pointer;
	z-index: 100;
}
.back a {
	color: #fff;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}

.back a i {
	font-size: 1rem;
	margin-right: 0.5rem;
}

.back a:hover{
	color: #fff;	
}

.back:hover{
	background: none;	
}

/*---------------------------- BACK-BTN CSS COMPLETE -----------------------------*/


/*---------------------------- CAROUSEL CSS START -----------------------------*/

.carousel-container {
	height: auto;
	width: 70%;
	margin: 0 auto;
    flex-direction: row;
	align-items: center;
	justify-content: flex-start;
    flex-wrap: nowrap;
	display: none;
}

.carousel {
	height: auto;	
    overflow: hidden;
    white-space: nowrap;
	display: flex;
    flex-direction: row;
	align-items: center;
	justify-content: flex-start;
    flex-wrap: nowrap;
}

#carousel-column-A .carousel-item-new,
#carousel-column-B .carousel-item-new,
#carousel-column-C .carousel-item-new {
    background: linear-gradient(-45deg, #0065a3, transparent);
	color: #fff;
}

.carousel-item-new {
    display: block;
	height: auto;
	width: 120px;
	background: #fff;
	padding: 0.2rem 0.5rem;
	text-align: center;
	border-radius: 5px;
	font-size: 0.8rem;
	border: 1px solid #0179b8;
	margin: 0 0.5rem;
}

.carousel-item.active {
    color: #fff;
}

.carousel-item-new img {
	height: auto;
	width: 100%;
	transform: scale(1.0);
	aspect-ratio: 3/2;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.carousel-item-new img:hover {
	transform: scale(1.1);
}

/*---------------------------- CAROUSEL CSS COMEPLETE -----------------------------*/

/*-------------------------------- Brand ------------------------------------*/
.brand-img{
        display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
}

.brand-boder{
    height: auto;
    width: 950px;
    padding: 0.5rem;
    background: radial-gradient(circle 331px at 1.4% 52.9%, #ffec02 0%, #ffdf02 33.6%, #ffbb1d 61%, #ffaf07 100.7%);
}

.brand-boder.mnc {
    height: 90vh;
    width: 900px;
    overflow: auto;
}
.brand-img .brand-boder.width-ppt {
    width: 1130px;
}

.brand-boder img{
    width: 100%;
    height: auto;
}


.new-h1 h1{
      font-size: 2.5rem;
    line-height: 2rem;
    color: #fff;
    font-weight: 700;
    background-image: linear-gradient(to bottom, #faa61a, #fff) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 1rem;
}

/*-------------------------------- Brand ------------------------------------*/

.chips-part.chips-hover .chips:hover{
    background: none;
}


.enquiry-info-side .enquiry-info {
    height: auto;
    width: 100%;
    text-align: center;
    padding: 1rem 0 0;
}

.testi-form h1.testi-form-head {
    font-size: 3rem;
    line-height: 3rem;
    color: #fff;
    font-weight: 700;
    background-image: linear-gradient(to bottom, #faa61a, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}

.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-inner {
    border: 2px solid #019add;
    backdrop-filter: blur(5px);
    background: #00000030;
    padding: 0.8rem 2rem;
}

.testi-scroll h3.wpmtst-testimonial-heading {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.strong-view.wpmtst-default div.wpmtst-testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-image {
    margin: 0.5rem 0 0.5rem;
    border-radius: 50%;
    float: unset;
}

.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-content p:last-of-type {
    overflow-wrap: anywhere;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}

.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-field {
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: capitalize;
    background-image: linear-gradient(0deg, #019add, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0 !important;
}

.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-image img {
    background: none repeat scroll 0 0 #ffffff69;
    border: 1px solid #ffffff;
    padding: 2px;
    margin: 0 !important;
    border-radius: 50%;
}



.testi-scroll .strong-content.strong-grid.columns-2 .wpmtst-testimonial, .testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-inner {
    border-radius: 20px;
}



.testi-form [type="file"]::-webkit-file-upload-button {
  padding: 0.8em 1.5em 0.8em 1.2em;
  color: #ffffff;
  background: #ad5389;
  background: linear-gradient(
    0deg,
    rgb(120, 47, 255) 0%,
    rgb(185, 132, 255) 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em rgb(184, 146, 255);
  border-radius: 5%;
}
.testi-scroll .strong-view.wpmtst-default .wpmtst-testimonial-heading {
    filter: brightness(100);
}


.testi-scroll {
    height: 80vh;
    width: 100%;
    overflow: auto;
    padding-bottom: 3rem;
}
