@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

@font-face {
	font-family: 'OptimusPrincepsSemiBold';
	src: url('../fonts/OptimusPrincepsSemiBold.eot');
	src: url('../fonts/OptimusPrincepsSemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/OptimusPrincepsSemiBold.woff2') format('woff2'),
		url('../fonts/OptimusPrincepsSemiBold.woff') format('woff'),
		url('../fonts/OptimusPrincepsSemiBold.ttf') format('truetype'),
		url('../fonts/OptimusPrincepsSemiBold.svg#OptimusPrincepsSemiBold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'OptimusPrinceps';
	src: url('../fonts/OptimusPrinceps.eot');
	src: url('../fonts/OptimusPrinceps.eot?#iefix') format('embedded-opentype'),
		url('../fonts/OptimusPrinceps.woff2') format('woff2'),
		url('../fonts/OptimusPrinceps.woff') format('woff'),
		url('../fonts/OptimusPrinceps.ttf') format('truetype'),
		url('../fonts/OptimusPrinceps.svg#OptimusPrinceps') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}


html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	background: #fff;
	overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--gry-color: #5D5D5D;
	--theme-color: #F15A29;
	--primary-color: #bcbec0;
}

p {
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
	color: var(--gry-color);
}

h1,
h2,
h3,
h5 {
	color: var(--black);
	font-family: 'OptimusPrincepsSemiBold';
}


.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

section {
	padding: 5rem 0;
}

.themeBtn {
	background: var(--theme-color);
	font-size: 1.125rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 400;
	display: inline-block;
	padding: 1.063rem 2.563rem;
	border-radius: 30px;
	line-height: normal;
}

.themeBtn:hover,
.navbar-nav .nav-item:last-child .nav-link:hover {
	box-shadow: inset 11rem 0 0 0 var(--primary-color);
	background: var(--primary-color);
	color: var(--black);
}

.headingOne {
	font-size: 3.125rem;
	color: var(--black);
	letter-spacing: 0;
}

.headingTwo {
	font-size: 1.625rem;
	color: var(--theme-color);
	letter-spacing: 0;
	font-weight: 400;
	position: relative;
}

.headingThree {
	font-size: 5rem;
	color: var(--black);
	text-align: center;
	margin-bottom: 2rem;
}

.headingTwo::before {
	position: absolute;
	width: 327px;
	content: '';
	height: 1px;
	background-color: var(--theme-color);
	right: 13rem;
	bottom: 7px;
}

/* header start */
header {
	position: relative;
	z-index: 11;
}

a.navbar-brand {
	margin-bottom: -20px;
}

.navbar-brand {
	position: relative;
}

.navbar-brand::before {
	position: absolute;
	content: '';
	background: var(--white);
	top: 13px;
	width: 240px;
	height: 100%;
	clip-path: polygon(50% 0%, 95% 3%, 100% 43%, 100% 74%, 32% 100%, 32% 100%, 8% 66%, 0 64%, 0 0);
	right: -66px;
}

.navbar-nav {
	align-items: center;
	gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 500;
	padding: 0 0;
	margin: 0 0;
	display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
	color: var(--theme-color);
}

.navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 0.813rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 400;
	display: inline-block;
	padding: 0.875rem 1.663rem;
	border-radius: 30px;
}

.navbar .nav-item.drop-down {
	position: relative;
	z-index: 1;
}

.navbar .drop-down>a:after {
	content: '\f0d7';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-left: 5px;
}

.navbar .drop-down ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
}

.navbar .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .drop-down li {
	min-width: 200px;
	position: relative;
	list-style: none;
}

.navbar .drop-down ul a {
	padding: 10px 20px;
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	color: #151515;
	display: block;
}

.navbar .drop-down ul a:hover {
	background: var(--theme-color);
	color: #fff;
}

/* header end */



/* slider start */

.mainSlider {
	height: 983px;
	position: relative;
	z-index: 1;
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.mainHead {
	font-size: 5.563rem;
	color: var(--white);
	line-height: 100px;
	margin: 0;
	text-transform: uppercase;
}

.mainHead span {
	font-size: 4.938rem;
}

.slideContent p {
	color: var(--white);
}


.mainSlider .swiper-pagination {
	bottom: 180px;
	left: 0;
	width: 34%;
}

.mainSlider .swiper-pagination-bullet {
	height: 25px;
	width: 25px;
	display: inline-block;
	opacity: 1;
	border: 2px solid transparent;
	background: transparent;
	position: relative;
}

.mainSlider .swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	right: 0;
	background: #fff;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.mainSlider .swiper-pagination-bullet-active {
	position: relative;
	border: 2px solid var(--white);
	background: transparent !important;
}

.mainSlider .swiper-pagination-bullet-active:before {
	background: var(--white);
}

figure.banner-bottom {
	position: absolute;
	bottom: -64px;
	left: 17rem;
}

/* slider end */


/* about sec start */
.about {
	padding: 9rem 0;
}

.about p+p {
	margin-top: 2.5rem;
}

.about figure {
	position: relative;
}

.about figure::before {
	position: absolute;
	content: '';
	right: -20px;
	bottom: -20px;
	height: 272px;
	width: 292px;
	background-color: var(--theme-color);
	z-index: -1;
}

.about figure img {
	border: 5px solid var(--white);
	box-shadow: 0 7px 20px #00000030;
}

/* about sec end */

/* services sec start */
.services {
	background: url(../images/servicebg.webp) center/cover no-repeat;
	padding: 13rem 0 10rem;
	position: relative;
}

.services .headingThree {
	color: var(--white);
}

.ser-wrp {
	position: relative;
}

.ser-cont {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	bottom: 20px;
}

.ser-cont h6 {
	font-size: 2.313rem;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}

.services .themeBtn {
	text-align: center;
	display: block;
	margin: 3rem auto 0 auto;
}

.services .themeBtn:hover {
	box-shadow: inset 11rem 0 0 0 var(--black);
	background: var(--black);
	color: var(--white);
}
.services p {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

figure.servie-top {
	position: absolute;
	top: 20px;
	right: 17rem;
	z-index: -1;
}

.ser-wrp figure {
	position: relative;
	overflow: hidden;
}

.ser-wrp figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.ser-wrp figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.ser-wrp:hover figure::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.ser-wrp:hover figure img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.ser-wrp:hover h6 {
	color: var(--theme-color);
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/* services end start */



/* video-sec-start */
.video {
	text-align: center;
}


.vdeo-img a div {
	height: 67px;
	width: 67px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--white);
	border-radius: 100%;
	margin-right: 0;
	position: relative;
	z-index: 1;
	border: 2px solid var(--white);
}

.vdeo-img a div::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background: var(--white);
	animation: anscale 1s infinite linear;
	z-index: -1;
}

@keyframes anscale {
	0% {
		opacity: 1;
		transform: scale(0.8);
	}

	100% {
		opacity: 0;
		transform: scale(1.8);
	}
}

.vdeo-img img a {
	position: relative;
	margin: 0;
}

.vdeo-img figure a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video img {
	width: 100%;
}

.video .themeBtn {
	margin-top: 4rem;
}


.video .swiper-button-next:after {
	content: '\f30b';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	color: var(--white);
	font-size: 2rem;


}

.video .swiper-button-prev:after {
	content: '\f30a';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	color: var(--white);
	font-size: 2rem;
}

.video .swiper-button-next:hover,
.video .swiper-button-:hover {
	background-color: var(--theme-color);
}

.video .swiper-button-next {
	top: 42%;
	right: 11rem;
	left: inherit;
	margin: 0 auto;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 5px solid var(--white);
	background: #BCBEC0;
}

.video .swiper-button-prev {
	top: 42%;
	left: 11rem;
	right: inherit;
	margin: 0 auto;
	text-align: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 5px solid var(--white);
	background: #BCBEC0;
	opacity: 1;
}

.videoslider .swiper-slide.swiper-slide-active {
	transform: scale(1.2) translateZ(0) !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.videoslider .swiper-slide.swiper-slide-next, .videoslider .swiper-slide.swiper-slide-prev {
	transform: scale(0.8) translateZ(0);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.videoslider {
	padding: 3.125rem 0;
}

/* video-sec-end *


/* solution sec start */
.solution {
	position: relative;
}

.solution::before {
	position: absolute;
	content: '';
	left: 0;
	background: #FAFAFA;
	width: 60%;
	height: 75%;
	top: 0;
}

.solution .headingTwo {
	color: var(--black);
}

.solution2 figure {
	margin-top: -23rem;
}


.solution2 .sol-wrp {
	margin-top: 2rem;
}

.sol-wrp .headingTwo:before {
	width: 277px;
	background-color: var(--black)
}

/* solution sec end */

/* testimonials sec start */
.testimonials {
	background: url(../images/testumonialsbg.webp) center/cover no-repeat;
	position: relative;
	padding: 9.438rem 0;
}

.testimonials .headingThree {
	color: var(--white);
}

.testi-wrp {
	text-align: center;
}

.testi-wrp p {
	color: var(--white);
	margin: 0;
}

.testi-wrp h4 {
	color: var(--white);
	font-size: 1.813rem;
}

.testi-wrp h6 {
	color: var(--white);
	font-size: 1.313rem;
}

.testi-wrp span i {
	color: #FFC02F;
}

.testi-wrp span {
	margin: 1rem 0;
	display: block;
}

.testimonials .mySwiper1 {
	padding: 3rem 0;
	margin-top: 4rem;
}

.testimonials .mySwiper1 .swiper-slide {
	display: flex;
	justify-content: center;
	position: relative;
	width: 14% !important;
}

.testimonials .mySwiper1 .swiper-wrapper {
	justify-content: center;
}

.testimonials .mySwiper1 .swiper-slide-thumb-active {
	transform: scale(1.4);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.testimonials .mySwiper1 .swiper-slide-thumb-active::before {
	content: '';
	position: absolute;
	left: 0;
	top: -11px;
	right: 0;
	border: 2px solid var(--white);
	background: transparent !important;
	width: 127px;
	height: 127px;
	border-radius: 50%;
	right: 0;
	margin: 0 auto;
}

.testimonials .mySwiper1 .swiper-slide {
	cursor: pointer;
}

figure.testi-top {
	position: absolute;
	top: 21px;
	left: 14%;
	z-index: -1;
}

/* testimonials sec end */



/* faq sec strt */
.faq {}

.faq .headingThree {
	text-align: left;
	margin: 0;
}



.faq #accordion .card {
	border: none;
	border-bottom: 1px solid #E3E3E3;
	background: transparent;
	margin: 0;
	border-radius: unset;
	padding: 2rem 0;
}

.faq #accordion .card .btn-link {
	--height: 5rem;
	--width: 4.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	color: var(--black);
	padding: 0;
	border: 0;
	font-size: 1.75rem;
	border-radius: 5px;
	text-decoration: none;
	overflow: hidden;
	border-bottom-left-radius: 0;
	text-align: left;
}

.faq #accordion .card .btn-link span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--height);
	margin-right: 2rem;
	font-size: 1.875rem;
}

.faq #accordion .card .btn-link i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black);
	width: var(--width);
	height: var(--height);
	margin-left: auto;
	border-radius: 50%;
	background: 000;
	font-size: 2rem;
	height: 2rem;
	width: 2rem;
}

.faq #accordion .card .btn-link i::before {
	content: "\f0de";
}

.faq #accordion .card .btn-link.collapsed i::before {
	content: "\f0dd";
}

.faq #accordion .card .btn-link.collapsed i {
	color: var(--black);
	height: 2rem;
	width: 2rem;
	font-size: 2rem;
}

.faq #accordion .card+.card {
	margin-top: 0;
}

.faq #accordion .card .card-body {
	padding: 1rem 4rem 0.5rem 0rem;
}

.faq #accordion .card .card-body p {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	line-height: 33px;

}
.faq .headingThree {
    font-size: 4rem;
}


/* faq sec end */

/* clinet-logo start */
.clinet-logo {
	padding: 2rem 0 8rem;
}

.clinet-logo ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
}

.clinet-logo ul li {
	border-radius: 10px;
	border: 1px solid #DFDFDF;
	padding: 25px;
}

.clinet-logo ul li:hover {
	box-shadow: 0 0 49px #00000052;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* clinet-logo end*/



/* Footer Sec Css Start */

footer {
	padding-top: 10rem;
	position: relative;

}

footer::before {
	background-color: var(--black);
	position: absolute;
	content: '';
	clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

footer h3 {
	font-size: 2.5rem;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 2rem;
	font-weight: 600;
}

.links {
	display: flex;
	flex-flow: column wrap;
	gap: 1rem 0;
	margin: 0;
	max-height: 240px;
	gap: 20px 70px;
}

footer .links li a {
	font-size: 1.125rem;
	color: var(--white);
	text-transform: uppercase;
}

footer ul li a:hover {
	color: var(--theme-color);
}

footer p {
	font-size: 1.125rem;
	color: var(--white);
}

.contactInfo li a strong {
	font-size: 1rem;
	color: var(--white);
	font-weight: 400;
}

.contactInfo li a strong span {
	display: block;
	font-weight: 500;
}

.contactInfo li a {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.contactInfo li+li {
	padding-top: 1.5rem;
}

.copyRight p {
	font-size: 1rem;
	margin: 0;
}

.socialLinks {
	display: flex;
	justify-content: end;
	gap: 12px;
}

.socialLinks li a {
	background-color: var(--white);
	color: #757c86;
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	border-radius: 50px;
}

.socialLinks li a:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.copyRight {
	border-top: 1px solid #5a5a5a;
	margin-top: 3rem;
	padding: 1rem 0;
	position: relative;
}

#return-to-top {
	position: absolute;
	right: 30px;
	border: 1px solid var(--white);
	height: 70px;
	width: 70px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 10px;
	border-radius: 50%;
	font-size: 1.5rem;
}

#return-to-top:hover {
	background-color: var(--theme-color);
}

#return-to-top i {
	color: var(--white);
}

figure.footer-top {
	position: absolute;
	top: 9px;
	right: 17rem;
	z-index: -1;
}

/* Footer Sec Css End */


/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: var(--white);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--theme-color);
}

/* Inner Pages Css Start */

.innerBanner {
	position: relative;
}

.innerBanner .overlay {
	position: absolute;
	text-align: left;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banBottom {
	position: absolute;
	bottom: -3.5rem;
	z-index: -1;
}

.companySec figure::before {
	display: none;
}

.aboutInner {
	padding-bottom: 5rem;
}

.srvInner .row+.row {
	padding-top: 5rem;
}

.solutionInner .solution2 figure {
	margin-top: 0;
}

.solutionInner {
	margin-top: 8rem;
}

.videoWrap a div {
	height: 90px;
	width: 90px;
	font-size: 20px;
}

.videos {
	margin: 2rem 0;
}

.videoInner {
	padding: 7rem 0;
}

.faqInner {
	padding: 8rem 0;
}

.supportInner:before {
	display: none;
}

.supportInner .sol-wrp .headingTwo:before {
	right: 9rem;
}

.supportInner {
	padding: 9rem 0 6rem 0;
}

.learnInner .sol-wrp .headingTwo:before {
	left: 5rem;
}

.cont-wrap {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}

.cont-wrap figure {
	background: var(--theme-color);
	height: 101px;
	width: 101px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 8px rgb(241 90 41 / 70%);
}

.contact .form-group {
	margin-bottom: 2.5rem;
}

.contact .form-control {
	border: none;
	border-bottom: 1px solid #707070;
	border-radius: 0;
	font-size: 1.5rem;
	height: 60px;
}

.contact .themeBtn {
	border: unset;
}

.serviceHead h2 {
	font-size: 1.75rem;
	margin: 0;
	font-family: 'Poppins';
	font-weight: 400;
}

.serviceHead h3 {
	font-size: 3.4375rem;
}

.serviceHead {
	text-align: center;
	margin-top: 4rem;
}
.tex span {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tex a h3 {
	font-size: 1.375rem;
	text-transform: uppercase;
	font-family: 'Poppins';
	font-weight: 600;
}

.tex a p {
	font-size: 1rem;
	color: var(--black);
	line-height: 1.6;
}

.contact .form-control::placeholder {
	color: rgb(0 0 0 / 50%);
}

.contact {
	padding-top: 2rem;
}

.mapSec {
	padding-top: 8rem;
}

.testimonialInner .testi-wrp p,
.testimonialInner .testi-wrp h4,
.testimonialInner .testi-wrp h6 {
	color: var(--black);
}

.testimonialInner .testi-wrp p {
	font-style: italic;
}

.testImg img {
    border: 2px solid var(--theme-color);
    border-radius: 100%;
}

.testImg {
    border: 2px solid var(--theme-color);
    width: fit-content;
    margin: auto;
    border-radius: 50%;
    padding: 10px;
    margin-top: 1.3rem;
}

.testimonialInner .testi-wrp h6 {
    font-size: 1.5625rem;
    font-weight: 400;
}

.testimonialInner .testi-wrp h4 {
    font-size: 2.125rem;
}

.testimonialInner .testi-wrp span {
    margin: 10px 0 7px 0;
}

.testimonialInner .row + .row {
    padding-top: 4rem;
}

.testimonialInner {
    padding: 10rem 0 8rem 0;
}
ul.servicelist {
    margin-bottom: 2rem;
}

ul.servicelist li {
    margin-bottom: 1rem;
    list-style: disc;
}
/* Inner Pages Css End */
.privacyPage {
    padding: 7rem 0;
}

.privacyPage h6 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 600;
    margin: 1.5rem 0;
}

.privacyPage h5 {
    font-size: 2rem;
    color: #242424;
    font-weight: 600;
    margin: 1.5rem 0;
}

.privacyPage p {
    font-size: 1.125rem;
    color: var(--gry-color);
    line-height: 1.9;
    font-weight: 500;
}

.privacyPage ul li {
    font-size: 1rem;
    color: #777777;
    line-height: inherit;
    font-weight: 500;
    list-style: disc;
    margin-left: 1.05rem;
}

.privacyPage ul li + li {
    margin-top: 1rem;
}

.privacyPage p a {
    color: #333333;
    border-bottom: 1px solid;
}

.privacyPage {
    /* background: #f4f4f4; */
}

.privacyPage ul {
    padding: 0 0 1rem;
}

ul.privacylist li a {
    font-size: 1.125rem;
    color: #fff;
    text-transform: capitalize;
}

ul.privacylist {
    display: flex;
    justify-content: space-between;
}
ul.termlist {
    display: flex;
}

ul.termlist li a {
    font-size: 1rem;
    color: #fff;
}
ul.termlist {
    gap: 1rem;
}
.tex span div {
    width: 50px;
}
.tex span a {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}
.tex span+span {
    margin-top: 8px;
}
.tex h3 {
    font-size: 1.375rem;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: 600;
}