*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body{
	overflow-x:hidden;
}
a:hover {
    color: #ffd701;
}
a{
	text-decoration: none;
}

/* Root Styling */
:root{
    --Font: "Outfit", sans-serif;
}
h2{
    font-family: var(--Font);
    font-size:clamp(20px,2.292vw,50px);
}
h3{
    font-family: var(--Font);
    font-size:clamp(20px,2.292vw,50px);
}
p{
    font-family: var(--Font);
    font-size: clamp(16px,0.938vw,24px);
    line-height:24px;
}

.container{
    width: 85%;
}

header{
	position: relative;
    z-index: 1;
    padding: 10px 4%;
}
nav{
	justify-content: end;
}

.sticky{
	position: fixed;
	top:0;
	left: 0;
	background-color: #fff;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	z-index: 999;
}

.newClass{
	position: fixed;
	top:0;
	left: 0;
	background-color: #fff;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	z-index: 999;
}

.sticky ul li a{
	color: #000 !important;
}

.newClass ul li a{
	color: #000 !important;
}
.hero-banner header ul li a{
	padding-bottom: 5px;
	border-radius: 0;
	border-bottom: 2px solid transparent;
}

.hero-banner header ul li a:hover{
	border-bottom: 2px solid #25c0dd;
	color: #25c0dd !important;
}

.hero-banner header ul{
	gap:25px;
}

.hero-banner header ul li a:hover
 {
    background-color: transparent;
    color: #25c0dd;
}

.hero-banner header ul li a{
	margin-bottom: 0;
	padding:0;
	text-decoration:none;
	background-color:transparent;
	color:#fff;
	font-family:"Outfit", sans-serif;
	font-weight:400;
}

.hero-banner header nav{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

/* Banner Section */

.hero-banner{
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-banner::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}

.hero-banner .bg-image-hero{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.hero-banner .bg-image-hero img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-banner .container{
   position: relative;
   z-index: 2;
}

.hero-banner .banner-logo{

}


.hero-banner .banner-logo img{
    width: 200px;
}
.hero-banner h1{
  font-family: var(--Font);
  font-size: clamp(20px,3.542vw,70px);
  color: #fff;
}

.banner-heading{
    margin: 15% 0px 5% 0px;
}

.hero-banner h6{
    color: #fff;
    font-family: var(--Font);
    font-size: clamp(16px,1.823vw,30px);
    line-height: 1.5;
}

.hero-banner a{
   padding: 18px 50px;
   border-radius: 50px;
   background-color: #25c0dd;
   color: #fff;
   display: block;
   width: fit-content;
   margin-bottom: 20px;
   font-family: var(--Font);
}

.hero-banner a:hover{
    background-color: #fff;
    color: #25c0dd;
}

.hero-banner p{
    color: #fff;
    font-family: var(--Font);
    margin-bottom: 20px;
}

.parllalx-banner-bottom{
    background-image: url(../images/bottombanner.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 5% 0;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}
.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: unset;
    box-shadow:unset;
}

footer{
/*     text-align: center; */
    padding: 4% 0px 2% 0px !important;
	background-color: #000;
}

.about-section{
	background-color:#FDD900;
}

.about-heading h2{
    font-family: var(--Font);
    font-size:clamp(20px,2.292vw,50px);
}

.about-section .about-content{
    font-family: var(--Font);
    font-size: clamp(16px,0.938vw,24px);
    line-height: 24px;
}

.about-section .about-content p{
    font-weight: 300;
}

.about-section .about-content a{
    color: #25c0dd;
    padding-bottom: 2px;
    text-decoration-thickness: 0.5px;
}

.accordion-common .apply-btn a{
    padding: 18px 50px;
   border-radius: 50px;
   background-color: #25c0dd;
   color: #fff;
   display: block;
   width: fit-content;
   margin-bottom: 20px;
   font-family: var(--Font);
}

.accordion-common .apply-btn a:hover{
    background-color: #fff;
    color: #25c0dd;
    border: 1px solid #25c0dd;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
}

.accordion-item{
    border: none;
    border-bottom: 1px solid #000;
}
.accordion-sec-image{
	display:flex;
	justify-content:center;
}
.parllalx-banner-bottom h2{
    color: #fff;
    padding: 0px 0% 5% 0px;
}

.parllalx-banner-bottom p{
    color: #fff;
}

.parllalx-banner-bottom button{
   padding: 18px 50px;
   font-size:16px;
   border-radius: 50px;
   background-color: #25c0dd;
   color: #fff;
   display: block;
   border:0px;
   width: fit-content;
   margin-bottom: 20px;
   font-family: var(--Font);
}

.parllalx-banner-bottom button:hover{
    background-color: #fff;
    color: #25c0dd;
    border: 1px solid #25c0dd;
}


.parllalx-banner-bottom::before{
  position: absolute;
  z-index: 1;
  color: #000; 
  height: 100%;
  width: 100%;
  opacity: 0.5;
}


footer h3{
    font-family: var(--Font);
    font-size:clamp(20px,2.292vw,50px);
}

footer p{
    font-family: var(--Font);
    font-size: clamp(16px,0.938vw,24px);
    line-height:24px;
}

footer span{
font-family: var(--Font);
display: block;
margin: 15px 0px;
font-size: clamp(16px,0.938vw,24px);
}

.modal-header .btn-close {
    background-color: transparent !important;
}
.form-logo{
	width:50% !important;
}
.copyright{
	text-align:center;
	color:#fff;
    padding: 2% 0px 0px 0px;
}
footer img.img-fluid.footer-logo {
    width: 70%;
}

.footer-social-icon .icon{
display:flex;
padding: 0.5rem 0rem;
}
.footer-social-icon .icon img{
	width:5%;
	height:5%;
}
.footer-social-icon .icon span{
	padding-left:1rem;
	margin: 0rem;
	color:#fff;
}

ul.footer-links{
    display: flex;
	flex-wrap: wrap;
}
.footer-links li a{
    
	font-family: var(--Font);
    font-size: clamp(16px,0.938vw,24px);
    line-height:24px;
	font-weight:400;
	margin-right: 2.5rem;
	text-decoration:none;
	color:#fff !important;
}

.footer-links li a:hover{
    color: #ffd701;
	text-decoration:none;
}
.icon a
 {
    text-decoration: none;
}

.footer-info h3{
	color:#fff;
}
.footer-logo-section span{
		color:#fff;
}
.footer-logo-section p{
	color:#fff;
	margin-bottom: 1rem;
}
.subscribe h3{
	color:#fff;
    padding: 5% 0px 1.5% 0px;
}
.note{
	padding:4% 0px;
}
.note p{
	color:#fff;
}

.custom-form-inline {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  gap: 10px; /* space between input and button */
}

.custom-form-inline .form-group {
  margin: 0;
}

.custom-form-inline input[type="email"] {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 20px;
}

.custom-form-inline input[type="submit"] {
      padding: 10px 28px;
    border-radius: 28px;
  font-size: 14px;
  cursor: pointer;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-primary{
	background-color: #25c0dd;
    border: #25c0dd;
}

.col-lg-6.ps-lg-5.business-section {
    flex-wrap: wrap;
    align-content: center;
}

/* form */

.form-control:focus {
    color: none;
    background-color: #fff;
    border-color: unset;
    outline: unset;
    box-shadow: none;
}

footer .col-lg-7{
	display: flex;
    align-items: start;
    margin-top: 70px;
}

@media screen and (max-width: 991px){
	.hero-banner header nav{
		display: none;
	}
	
	.hero-banner .banner-logo img{
		margin: 0 !important;
	}
	
	.offcanvas-body{
		z-index: 999999;
	}
}


ul li{
	font-family: var(--Font);
    font-size: clamp(16px, 0.938vw, 24px);
}