
/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@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');

:root {
	--white: #fff;
	--black: #000;
	--primary: #1d6bda;
	--secondary: #0d0f38;
}

::selection {
	background-color: var(--secondary);
	color: var(--white);
}

/* General Styling */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Poppins", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}


body {
	overflow-x: clip;
}

a,
button {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
}

p {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Poppins", sans-serif;
}

section {
	position: relative;
	padding: 5rem 0;
}

.color-primary {
	color: var(--primary);
}

.color-secondary {
	color: var(--secondary);
}


/* LENIS */
html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* PRELOADER */
.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(--black);
	z-index: 11113;
}

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

.preLoader video {
	width: 100%;
}



/* SEARCHPOPUP */
.searchPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	transition: all 0.5s ease-in-out;
	transform: translate(0, -100%) scale(0, 0);
	opacity: 0;
	z-index: 999999;
}

.searchPopup.open {
	transform: translate(0, 0) scale(1, 1);
	opacity: 1;
}

.searchPopup input[type="search"] {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: fit-content;
	color: var(--white);
	background: #414141bd;
	font-size: 3.125rem;
	line-height: 65px;
	text-align: center;
	border: none;
	padding: 0 1.875rem;
	outline: none;
}

/* .searchPopup .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
	background-color: limegreen;
	border: var(--black);
} */

.searchPopup .close {
	position: fixed;
	top: 15px;
	right: 15px;
	color: var(--white);
	opacity: 1;
	padding: 0.75rem 1.25rem;
	font-size: 27px;
}

.srch-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
}

.srch-btn .themeBtn {
	padding: 15px 120px;
	font-size: 1.25rem;
	margin-top: 1rem;
}

/* THEMEBTN */
.themeBtn {
	background: #1d6bda;
	border-radius: 50px;
	padding: 9px 15px;
	color: #fff;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: auto;
	font-size: 14px !important;
}

.themeBtn:hover {
	background-color: rgb(55 65 81);
	color: var(--white);
}

/* .themeBtn:hover {
	transform: translateY(-10px);
} */

/* HEADINGS */
.sectionHeading {
	font-size: 3.75rem;
	font-weight: 600;
	text-transform: capitalize;
}

.heading {
	font-size: 2.75rem;
	font-weight: 600;
	text-transform: capitalize;
}

.subHeading {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* HEADER */
.header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	padding: 1rem 0;
	transition: 0.3s ease-in-out;
}

.header-main__logo {
	width: 180px;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.navbar-collapse {
	gap: 1.5rem;
	justify-content: end;
}

/* BANNER */

.banner {
	height: 1080px;
	display: flex;
	align-items: center;
	padding: 0;
}

.banner>video {
	position: absolute;
	inset: 0;
	width: 100%;
}

.bannerContent {
	margin-top: 8rem;
}

.banner h3 {
	color: rgb(255 255 255);
	font-size: 1.5rem;
	line-height: 2rem;
	margin-bottom: 1rem;

}

.banner h3 span {
	background: #1d6bda;
	padding: 0 .5rem;
}

.banner h1 {
	font-size: 1.875rem;
	color: var(--white);
	font-weight: 600;
	line-height: 2.25rem;
}

.banner p {
	color: var(--white);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	padding-top: 1rem;
}

.banner h4 {
	color: rgb(255 255 255);
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 2rem;
	margin-top: 2rem;
}

.banner-brand-img {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
}

.banner-contact {
	background: rgb(156 163 175 / 54%);
	border-radius: 1rem;
	padding: 2rem 2rem;
	position: relative;
}

.banner-contact-img img:nth-child(1) {
	width: 103px;
	position: absolute;
	top: -2.6rem;
	left: -3rem;
}

.banner-contact-img img:nth-child(2) {
	width: 82px;
	position: absolute;
	top: -2rem;
	right: -1rem;
}

.banner-conatct_content h4 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	margin: 0;
}

.banner-conatct_content h5 {
	width: 80%;
	color: var(--white);
	font-size: 15px;
	line-height: 20px;
}

.banner-conatct_content h5 span {
	color: var(--white);
}

.banner-form :is(input, textarea, select) {
	width: 100%;
	font-size: .875rem;
	line-height: 1.25rem;
	padding: .5rem 1rem;
	border: 0;
	border-radius: .75rem;
	margin-bottom: 1rem;
}

.banner-form input,
textarea::placeholder {
	text-align: start;
	color: lightgray;
}

.banner-form .themeBtn {
	width: 100%;
	border-radius: .75rem;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5rem !important;
	border: 0;
}

.banner-contact-img-bg {
	position: absolute;
	bottom: -2rem;
	right: -3rem;
}

.banner-contact-img-bg img {
	width: 328px;
	height: 400px;
}

/* Brand Section Start */

.brand {
	padding: 2rem 0 1rem;
	border-bottom: .1px solid #d7d7d7;
}

.brand h3 {
	line-height: 24px;
	font-weight: 700;
	font-size: 1.25rem;
}

/* Brand Section End */

/* About Section Start */
.about-content h3 {
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
}

.about-content p {
	font-size: 1.25rem;
	font-size: 17px;
	padding-top: .75rem;
}

.about-btn-content {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.about-btn {
	background-color: var(--secondary);
}

.about-slider-card {
	display: flex;
	gap: 2rem;
	border: 1px solid #919090;
	border-radius: .75rem;
}

.about-slider-card-img img {
	width: 100%;
	height: 100%;
}

.about-slider-card p {
	padding: 2rem 0;
	font-size: 17px;
	text-align: center;
}

.about .swiper-button-prev:after {
	content: "\f177";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	border-radius: 15px;
	padding: .2rem 1rem;
	background: var(--secondary);
	color: var(--white);
	font-size: 2rem;
}



.about .swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: -3rem;
	top: 50%;
	transform: translateY(-50%);
}

.about .swiper-button-next:after {
	content: "\f178";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	border-radius: 15px;
	padding: .2rem 1rem;
	background: var(--secondary);
	color: var(--white);
	font-size: 2rem;
}

.about .swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: -3rem;
	top: 50%;
	transform: translateY(-50%);
}

/* About Section End */

/* our porfolio start */
.our-porfolio {
	background-color: #092f65;
}

.our-porfolio-border {
	border-bottom: 2px solid rgb(75 85 99 / 1);
	padding-bottom: 3rem;
}

.our-porfolio h2 {
	font-weight: 800;
	color: var(--white);
	text-align: center;
	margin-bottom: 5rem;
}

.our-porfolio h3 {
	color: var(--white);
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 500;
	margin: 5rem 0 2rem;
}

.our-porfolio .swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 0;
	transform: translateY(-50%);
}

.our-porfolio .swiper-button-prev:after {
	content: "\f060";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	border-radius: 50%;
	padding: .3rem .4rem;
	background: var(--white);
	color: var(--black);
	font-size: 1.7rem;
}

.our-porfolio .swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 0rem;
	transform: translateY(-50%);
}


.our-porfolio .swiper-button-next:after {
	content: "\f061";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	border-radius: 50%;
	padding: .3rem .4rem;
	background: var(--white);
	color: var(--black);
	font-size: 1.7rem;
}

/* our porfolio end */

/* Our Story Section */

.our-story {
	background-color: #1d6bda;
}

.packagesSec h3,
.our-story h3 {
	text-align: center;
	color: var(--white);
	font-size: 3rem;
	line-height: 1;
}

.our-story h3 {
	text-align: center;
	color: var(--white);
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 1rem;
}

.our-story p {
	color: var(--white);
	text-align: center;
	width: 55%;
	margin: 0 auto;
	margin-bottom: 3rem;
}

.our-story video {
	width: 100%;
}

/* Our Story End */


/* Why Quit Section */
.why-quit {
	background-color: #374151;
}

.why-quit-img {
	text-align: end;
	width: 100%;
	aspect-ratio: 1;
	margin-top: -9rem;
}

.why-quit .about-content h3 {
	color: var(--white);
}

.why-quit .about-content p {
	color: var(--white);
}

/* Why Quit end */
.looking-for-answer h3 {
    text-align: center;
    font-size: 2.3rem;
    color: var(--black);
    font-weight: 600;
}

.looking-for-answer #accordion .card {
	border: none;
	padding: 0rem 1rem;
	background: rgb(226 232 240/1);
	margin-bottom: 1.5rem;
	border-radius: unset;
	}
  
  .looking-for-answer #accordion .card .btn-link {
	font-weight: 500;
	--height: 3.5rem;
	--width: 4.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	color: #1a1a1a;
	border: 0;
	font-size: 14px;
	border-radius: unset;
	text-decoration: none;
	overflow: hidden;
	border-bottom-left-radius: 0;
	text-align: left;
	/* border-bottom: 3px solid #231F20; */
	margin-bottom: 12px;
  }
  
  .looking-for-answer #accordion .card .btn-link i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	width: var(--width);
	height: var(--height);
	margin-left: auto;
	border-radius: 50%;
	background: 000;
	font-size: 1rem;
	height: 2rem;
	width: 2rem;
  }
  
  .looking-for-answer #accordion .card .btn-link i::before {
	content: "\f068";
  }
  
  .looking-for-answer #accordion .card .btn-link.collapsed i::before {
	content: "\f067";
  }
  
  .looking-for-answer #accordion .card .btn-link.collapsed i {
	color: var(--primary);
	height: 2rem;
	width: 2rem;
	font-size: 1rem;
  }
  
  .looking-for-answer #accordion .card .btn-link {
	/* border-bottom: 4px solid #00c19c; */
	margin-top: 1rem;
	}
  
  .looking-for-answer #accordion .card .btn-link i {
	color: var(--white);
	background: var(--primary);
	}
  
  .looking-for-answer #accordion .card .btn-link.collapsed {
	border-bottom: rgb(209 213 219/ 1);
	background: rgb(226 232 240/ 1);
	}
  
  .looking-for-answer #accordion .card .btn-link.collapsed i {
	color: var(--white);
	}
  
  .looking-for-answer #accordion .card+.card {
	margin-top: 0;
  }
  
  .looking-for-answer #accordion .card .card-body {
	padding: 0rem 4rem 0.5rem 0rem;
  }
  
  .looking-for-answer #accordion .card .card-body p {
	color: #666666;
	font-size: 13px;
	margin: 0;
	line-height: 33px;
  }

  /* Contact Start */

 .contact .container {
    border: 5px solid var(--primary);
    border-radius: 120px;
    background: rgb(229 231 235 / 1);
}

.contact h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 600;
}

.popForm .contact-form :is(input, textarea),
  .contact .contact-form :is(input, textarea) {
	width: 100%;
	font-size: .875rem;
	line-height: 1.25rem;
	padding: .5rem 1rem;
	border: 0;
	border-radius: .75rem;
	margin-bottom: 1rem;
}

.contact-form input,
textarea::placeholder {
	text-align: start;
	color: lightgray;
}

.contact-form .themeBtn {
	width: 100%;
	border-radius: .70rem;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5rem !important;
	border: 0;
}
/* Contact end */

/* Footer Start */
footer.footer {
    background: url(../images/footer-bg.webp);
	padding: 2rem 0;
}

.footer-border-right {
	border-right: 1px solid #c7c2c3;
}

p.para {
    color: var(--white);
    margin-top: 2rem;
}

.quickList h2 {
    color: var(--white);
}

.quickList li {
    color: var(--white);
}

.quickList li a {
    color: var(--white);
    margin-bottom: 1rem;
}

.calFoter li a {
    color: var(--white);
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calFoter h4 {
    color: var(--white);
}

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

.copyRight p {
    text-align: center;
    color: var(--white);
    margin-top: 5rem;
}

.copyRight p span {
    color: var(--primary);
}

.packagesSec h3{
font-size: 2.25rem;
}
.packagesSec p{
	font-size: 1.25rem;
	color: var(--black);
	text-align: center;
}

.cardBox{
	background-color: #d6d6d6;
    border-radius: 26px;
    color: #0d0f38;
    transition: .3s ease-in-out;
    width: 370px;
    font-weight: 700;
    border: 1px solid #747474;
	/* padding: 2rem 1.25rem; */
}
.cardHeader{
	color: #0d0f38;
	background-color: #f1efef;
	border-top-right-radius: 26px;
	border-top-left-radius: 26px;
	text-align: center;
	padding: 1rem;
}

.cardHeader del{
	text-decoration: line-through red !important;
}

.cardHeader h4{
	font-size: 1.5rem;
}

.price{
	color: #000;
	padding: 4px 30px;
	border-radius: 10px;
	background-color: #d6d6d6;
	transition: .4s ease-in-out;
	font-size: 1.5rem;
}

.cardContent ul {
    height: 275px;
    overflow-y: scroll;
    /* overflow-x: hidden; */
    padding-left: 2rem;
}

.cardContent h5{
	font-size: 1.25rem;
	font-weight: 600;
}
.cardContent ul li{
	margin: 1rem 0;
	font-weight: 500;
}

/* width */
.cardContent ul::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  .cardContent ul::-webkit-scrollbar-track {
	/* box-shadow: inset 0 0 5px grey; */
	border-radius: 10px;
  }
  
  /* Handle */
  .cardContent ul::-webkit-scrollbar-thumb {
	background: #0d0f38;
	border-radius: 10px;
  }

.cardBox .themeBtn {
    text-align: center;
    display: block;
    width: 65%;
    background: #fff;
    color: #000;
    margin:  auto;
    margin-top: 3rem;
}

.CardFooter{
	background-color: #f1efef;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 1px solid #747474;
	margin: 0 auto;
	padding: 6px 13px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.CardFooter p{
	color: #1d6bda;
	line-height: 18px;
	font-size: 16px;
}
.CardFooter a{
	font-size: 1rem;
	color: var(--black);
}
.border-line {
    border-right: 2px solid #1d6bda;
    height: 55px;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker{50%{opacity:0;color:var(--primary)}}

.cardBox:hover{
	color: #fff;
    -webkit-transform: scale(1.3);
    transform: scale(1.04);
    transition: .4s ease-in-out;
}

.cardBox:hover .cardContent{
	background-color: var(--primary);
	
 
}
.cardBox:hover .cardContent ul h5,
.cardBox:hover .cardContent ul li{
	color: var(--white);
}
.cardContent {
    padding: 3rem 0 1rem 0rem;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
th, td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: center;
}
th {
	background-color: #f4f4f4;
}
.check {
	color: green;
	font-weight: bold;
}
.cross {
	color: red;
	font-weight: bold;
}
.section-title {
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
}

td.text-left {
    background: #d6d6d6;
    font-size: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

th.first {
    background: var(--white);
    border: 0;
}

th.second {
    background: var(--primary);
    color: var(--white);
    border-top-right-radius: 17px;
    border-top-left-radius: 17px;
    border: 0;
    padding: 1rem;
    font-size: 1.25rem;
}

th.third {
    background: var(--secondary);
}

.collapseBtn {
	text-transform: capitalize;
	padding: 1rem 2rem;
}

.themeBtn.collapsed i {
    transform: rotate(180deg);
}

.collapseBtn i {
    margin-left: .7rem;
}

.collapseBtn i {
    margin-left: .7rem;
    transition: all 300ms ease-in-out;
}

.stepSection h3{
	font-size: 1.875rem;
    line-height: 2.25rem;
	text-align: center;

}

.stepsWrap {
    display: flex;
    position: absolute;
    left: 15%;
    top: 26%;
}
.step {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	transition: 0.3s all;
}

.stepTop {
    position: absolute;
    left: 55%;
    top: 41%;
    z-index: -1;
}

.hexa {
    position: relative;
}

.stepIcon {
    position: absolute;
    left: 35%;
    top: 35%;
    filter: invert(50%) sepia(65%) saturate(1081%) hue-rotate(183deg) brightness(90%) contrast(108%);
}

.stepBottom {
    position: absolute;
    left: 55%;
    bottom: 41%;
    z-index: -1;
}

.step:nth-child(even) {
    top: 9rem;
    left: -2rem;
}
.stepLeft {
    left: -4rem;
    top: 0.3rem;
}

.step:nth-child(4) {
    left: -5.8rem;
    top: 9.2rem;
}

.step:nth-child(5) {
    left: -7.5rem;
    top: .5rem;
}

.step:nth-child(6) {
    left: -9rem;
    top: 9.5rem;
}

.step:nth-child(7) {
    left: -10.5rem;
    top: 0.8rem;
}

.step:nth-child(8) {
    left: -12rem;
    top: 9.8rem;
}

.step h4 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step h4 span {
    font-size: 3.125rem;
	font-weight: 600;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    color: #fff;
	transition: 0.3s all;
}

.stepSection {
    padding-top:  2rem;
    padding-bottom: 45rem;
}

.bottomheading{
	margin-top: 5rem;
}

.topheading{
	margin-bottom: 5rem;
}

.step .topheading:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #324056;
    border-radius: 100%;
    background: #fff;
    top: 25%;
    left: 45%;
	transition: 0.3s all;

}
.step .bottomheading:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #324056;
    border-radius: 100%;
    background: #fff;
    bottom: 25%;
    left: 45%;
	transition: 0.3s all;

}

.step:hover{
	transform: translateY(-10px);
}

.step:hover .bottomheading:after,
.step:hover .topheading:after{
	background-color: var(--primary);
}
.step:hover h4 span{
color: var(--primary);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary);
}
#exampleModal .modal-content {
    width: 1200px;
	padding: 3rem;
    background-color: #3334346b !important;
    backdrop-filter: blur(4px);
    border: 6px solid #2c9384;
    border-radius: 60px;
}

#exampleModal .modal-dialog {
    max-width: 1200px;
    margin-top: 10rem;
}
#exampleModal h5{
	text-align: center;
font-size: 1.5rem;
line-height: 2rem;
color: var(--white);
}
#exampleModal p{
	color: var(--white);
text-align: center;
}
.close {
    position: absolute;
    right: -7%;
    top: -12%;
    background-color: #1d6bda !important;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 15px;
}
.badgeImg {
    position: absolute;
    top: -25%;
    width: 10%;
    right: 0;
}
td.text-left {
    padding-left: 6.4rem;
}

.stepSlider{
	display: none;
}

.stepbox {
    border: 8px solid var(--primary);
    width: 100%;
    background: #c8d9f059;
    text-align: center;
    padding: 5rem 0;
    border-radius: 10px;
}

.stepbox img {
    filter: invert(50%) sepia(65%) saturate(1081%) hue-rotate(183deg) brightness(90%) contrast(108%);
}
.stepbox h5 {
    font-size: 1.75rem;
    margin-top: 1rem;
}