/*Main Css */

:root {
--primary: #1F2937;
--secondary: #F5B400;
--white: #fff;

--font-heading: 'Alegreya', serif;
--font-accent: 'Alegreya', serif;
--font-body: 'Alegreya', serif;
--icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
background: var(--primary);
color: #fff;
text-shadow: none;
}

::-webkit-scrollbar {
width: 5px;
background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: none;
}

::-webkit-scrollbar-track-piece {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
display: none;
}

[class^="box-"].showfirst {
display: block;
}

body {
font-family: var(--font-body);
overflow-x: hidden;
font-size: 19px;
color: var(--body-color);
font-weight:
400;
line-height: 29.8px;
letter-spacing: 0.2px;
}

body.inner-header {
padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
display: block;
color: var(--secondary);
text-transform: capitalize;
}

h1 {
font-size: 56.3px;
font-weight: 400;
line-height: 61.9px;
letter-spacing: -2.82px;
color: #F0EFFB;
}

h2 {
font-size: 52.5px;
font-weight: 400;
line-height: 54.7px;
letter-spacing: -2.34px;
}

h2 span.text-bold {
font-weight: bold;
}

h4 {
font-size: 26px;
line-height: 1.12;
}

h6 {
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

.text-primary {
color: var(--primary) !important;
}

.text-secondary {
color: var(--secondary) !important;
}

.btn {
padding: 12px 30px;
text-transform: capitalize;
font-family: 'Space Grotesk' !important;
font-size: 14px;
border-radius: 0;
}

.btn:focus,
.btn:active:focus {
box-shadow: none;
}

.btn i {
font-size: 14px;
font-weight: 600;
}

.btn-primary {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border:hover,
.btn-primary-border:active,
.btn-primary-border:focus {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-secondary {
background-color: var(--secondary);
border: 1px solid var(--secondary);
color: #000000 !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
background-color: transparent;
border: 1px solid var(--secondary);
color: var(--primary) !important;
}

.btn-dark {
background-color: var(--dark);
border: 1px solid var(--dark);
color: var(--white) !important;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
background-color: transparent;
border: 1px solid var(--dark);
color: var(--dark) !important;
}

*:hover,
*:focus,
* {
outline: none !important;
}

img {
max-width: 100%;
height: auto;
}

a,
input[type="submit"] {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
display: inline-block;
cursor: pointer;
text-decoration: none;
}

span {
display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
font-family: var(--font-body);
font-weight: 400;
}

::-webkit-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-ms-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
opacity: 1;
}

/* Padding Classes */
.pad-zero {
padding: 0px;
}

.pad-l-zero {
padding-left: 0px;
}

.pad-r-zero {
padding-right: 0px;
}

.ovr-hiddn {
overflow: hidden;
}

.overlay:after {
content: "";
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}

.overlay {
display: none;
}

.overlay.active {
display: block;
}

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 15px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

/*header css*/

/* header {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
position: fixed;
background: transparent;
z-index: 1;
left: 0;
right: 0;
top: 0;
}
header.sticky{
background: white;
box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
top: 0;
} */

.main-header {
width: 100%;
padding-top: 35px;
position: absolute;
z-index: 99;
}

/* .menuWrap {
display: flex;
align-items: center;
justify-content: center;
} */

.desktop-header .menuWrap {
display: flex;
align-items: center;
justify-content: end;
}

.logo {
display: inline-block;
}

.logo img {
display: block;
}

/* Hamburger Menu */
.menu-Bar {
width: 30px;
height: 20px;
cursor: pointer;
position: absolute;
right: 15px;
top: 0;
bottom: 0px;
margin: auto;
z-index: 22;
display: none;
}

.menu-Bar span {
display: block;
height: 4px;
width: 100%;
background: var(--white);
position: absolute;
transition: 0.6s all;
border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
top: 0;
}

.menu-Bar span:nth-child(2) {
top: 8px;
transform-origin: left;
}

.menu-Bar span:nth-child(3) {
top: 16px;
}

.menu-Bar.open span:nth-child(1) {
transform: rotate(45deg);
top: 12px;
transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
width: 0;
opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
transform: rotate(-45deg);
top: 12px;
transform-origin: right-center;
}

/* Menu Css */
.menu {
font-size: 0px;
display: inline-block;
vertical-align: middle;
}

.menu-callnow {
color: var(--primary) !important;
background: transparent;
}

.menu-callnow i {
color: var(--dark) !important;
line-height: 2;
}

.menu>li {
display: inline-block;
vertical-align: middle;
padding: 0 0 0 30px;
}

.menu>li>a {
display: block;
font-family: var(--font-body);
font-size: 16px;
line-height: 19px;
font-weight: 500;
color:
#ffffff;
}

.btn-header {
background: var(--primary);
color: white !important;
padding: 15px 20px;
border-radius: 8px;
font-weight: 400 !important;
}

.btn-header:hover {
transform: scale(1.03);
}

.menu>li :hover>a,
.menu>li.active>a {
color: #adadad;
}

@keyframes scale-display {
0% {
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
}

@keyframes scale-display--reversed {
0% {
display: inline-flex;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}

99% {
display: inline-flex;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
display: none;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
}

@keyframes btotreverse {
0% {
top: 75px;
opacity: 1;
}

100% {
top: 115px;
opacity: 0;
}
}

@keyframes btot {
0% {
top: 115px;
opacity: 0;
}

100% {
top: 40px;
opacity: 1;
}
}

/* Main Banner CSS */

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 15px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

span.count {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.counter span.text-white {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.form-select,
.form-select:focus {
background: transparent;
border: 1px solid #626262;
border-radius: 24px;
padding: 8px 34px 8px 29px;
color: #ddd;
font-size: 13px;
margin-bottom: 18px;
color: var(--bg-light);
box-shadow: none;
}

.slick-center button.slick-prev.slick-arrow {
position: absolute;
top: 96%;
left: 50%;
font-size: 0px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
z-index: 0;
}

.slick-center button.slick-prev.slick-arrow::before {
content: "\f177";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow {
position: absolute;
top: 92%;
right: 4%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 2;
}

.slick-center button.slick-next.slick-arrow {
position: absolute;
top: 96%;
right: 46%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 0;
}

.slick-center button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

/* .slider-for img{
width: 100%;
object-fit: cover;
object-position: center;
height: 454px;
margin-bottom: 16px;
}

.slider-nav img{
height: 174px;
width: 100%;
object-fit: cover;
object-position: center;
} */

.slick-center img {
width: 100%;
height: 500px;
}

.slick-center .slick-list.draggable {
padding: 0 24% 0 !important;
}

.slick-center .slick-slide {
margin: 0 70px;
}

.slick-center .slick-current img {
position: relative;
top: -41px;
}

.sliderDiv {
background-size: cover;
height: 1200px;
width: 100%;
background-repeat: no-repeat;
}

.socail-icons {
display: flex;
}

ul.socail-icons li i {
color: #fff;
font-size: 18px;
font-weight: 300;

}

ul.socail-icons li {
margin-right: 10px;
}

a.logo {
font-size: 35px;
color: var(--white) !important;
font-family: var(--font-heading);
}

/* inner pages */

.inner-banner {
display: flex;
justify-content: center;
align-items: center;
padding-top: 220px;
padding-bottom: 170px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.inner-banner .content h1 {
text-align: center;
}

.inner-banner .content span {
text-align: center;
display: block;
color: #fff;
}

/* inner pages */

.footer-border {
height: 1px;
margin: 61.5px 83px 29px 177px;
background-color: rgba(255, 255, 255, 0.1);
margin-top: 60px;
}

.menu-Bar a.logo {
font-size: 45px;
font-weight: 600;
font-stretch: normal;
font-style: normal;
line-height: 1.31;
letter-spacing: normal;
text-align: left;
color: #1dd3b0;
}

.menu>li>a:hover {
color: #a9a9a9;
}

ul.breadcrumb-menu {
display: block;
text-transform: uppercase;
}

ul.breadcrumb-menu li {
display: inline-block;
vertical-align: middle;
position: relative;
color: var(--primary);
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

ul.breadcrumb-menu li a {
color: var(--dark-light);
}

ul.breadcrumb-menu li+li {
margin-left: 0px;
}

ul#counter {
display: flex;
align-items: center;
gap: 7rem;
/* padding: 24px 36px; */
/* border-radius: 8px; */
/* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
/* background-color: #222; */
/* margin-top: -112px;*/
}

.counter-wrapper .counter {
display: flex;
align-items: center;
gap: 20px;
}

.counter-wrapper .counter span.count {
font-weight: 700;
font-size: 45px;
color: #000;
}

ul#counter li .counter>div {
font-weight: 600;
line-height: 1;
font-size: 38px;
color: #fff;
/* padding-bottom: 10px; */
flex-shrink: 0;
}

ul#counter li {
background-repeat: no-repeat;
background-position: center;
width: 100%;
text-align: center;
line-height: 28px;
display: flex;
align-items: center;
justify-content: center;
}

ul#counter li .counter span.text {
font-family: var(--font-body);
font-size: 14px;
line-height: 2;
letter-spacing: normal;
text-align: left;
color: var(--white);
font-weight: normal;
}

ul#counter li:nth-child(1) .counter>div {
color: #ec4e52;
}

ul#counter li:nth-child(2) .counter>div {
color: #ebd142;
}

ul#counter li:nth-child(3) .counter>div {
color: #62a488;
}

.counter span.text-dark {
font-weight: 600;
font-size: 30px;
}

/* ------- */

.index-slider-news button.slick-prev.slick-arrow {
position: absolute;
top: 23%;
left: -68px;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
z-index: 2;
line-height: 0;
border-radius: 50%;
}

.index-slider-news button.slick-prev.slick-arrow::before {
content: "\f104";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.index-slider-news button.slick-next.slick-arrow {
position: absolute;
top: 23%;
right: -70px;
border: none;
background-color: transparent;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
background-color: transparent;
line-height: 0;
border-radius: 50%;
z-index: 2;
}

.index-slider-news button.slick-next.slick-arrow::before {
content: "\f105";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.form-control {
border: 1px solid #D2D2D2;
margin-bottom: 20px;
border-radius: 0;
height: 35px;
}

/* Accordian */

.accordion-list {
position: relative;
}

.accordion-list li {
padding: 0px 0px 22px 2px;
cursor: pointer;
width: 100%;
margin: 0 auto;
border-bottom: 0;
background: white;
box-shadow: none;
border-radius: 0px;
margin-bottom: 0rem;
}

ul.accordion-list li span {
display: flex;
position: relative;
}

.accordion-list li h3 {
color: var(--secondary);
display: flex;
align-items: center;
font-size: 16px;
font-weight: 700;
line-height: 30px;
margin-right: 14px;
}

.accordion-list li.active h3 {
color: var(--primary);
font-size: 20px;

}

ul.accordion-list li h3:after {
content: "\f078";
font-family: "Font Awesome 5 Pro";
position: absolute;
right: 0;
right: 0;
color: var(--secondary);
transition: all 0.3s ease-in-out;
font-size: 14px;
font-weight: 900;
top: 0;
}

.accordion-list li.active h4::after {
color: #9CA3AF;
content: "\f077";
}

ul.accordion-list li.active h3:after {
content: "\f077";
color: var(--primary);
}

.answer p {
margin-top: 16px;
color: #555555;
font-size: 16px;
font-weight: 400;
line-height: 30px;
}

/* Accordian */

/* Subscription */

.subscribe {
border: solid 1px #c9cbd6;
height: 60px;
margin-top: 18px;
border-radius: 5px;
position: relative;
overflow: hidden;
}

.subscribe button.btn-subscribe {
text-transform: uppercase;
display: inline-block;
height: 58px;
border-radius: 0;
border: none;
background: var(--primary);
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding: 0 35px;
font-size: 13px;
font-weight: 600;
line-height: 1.23;
text-align: center;
color: var(--white);
}

.subscribe input.form-control {
border: none;
/* width: 100%; */
padding: 8px 13px;
height: 100%;
margin: 0;
display: inline-block;
color: var(--secondary);
background-color: transparent;
padding-right: 9.5rem;
}

/* Subscription */

.sec-pad {
padding-top: 100px;
padding-bottom: 100px;
}

/* topbar */

.top-bar {
padding: 15px 0;
background: var(--primary);
}

.top-social-icons {
display: flex;
justify-content: end;
gap: 20px;
}

.top-contact-info {
display: flex;
gap: 22px;
}

.top-contact-info li {
display: flex;
gap: 10px;
align-items: baseline;
}

.top-contact-info li a {
color: var(--white);
}

.top-social-icons li a i {
color: var(--white);
}

/* topbar */

/* contact page */

.contactIconBg li {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.contactIconBg .icon {
width: 50px;
height: 50px;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--white);
background-color: var(--primary);
}

/* contact page */

.related-slider span.arr-left {
top: 35%;
position: absolute;
left: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

.related-slider span.arr-right {
top: 35%;
position: absolute;
right: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

footer {
background-color: #222222;
}

footer .border-top {
border-top: 1px solid #808080 !important;
}

.f-logo {
font-size: 30px;
text-align: left;
color: var(--white);
font-family: var(--font-heading);
line-height: normal;
}

.f-logo:hover {
color: var(--white);
}

.f-logo-content {
margin-top: 7px;
font-size: 16px;
font-weight: 400;
line-height: 33px;
letter-spacing: 0.5px;
color: var(--white);
}

.f-menu {
margin-top: 30px;
}

.f-menu .f-icon-box {
display: flex;
align-items: baseline;
gap: 20px;
margin-bottom: 10px;
}

.f-menu .f-icon-box a,
.f-menu .f-icon-box p {
color: var(--white);
}

.f-menu .f-icon-box i {
color: var(--white);
}

ul.f-menu li a {
color: var(--white);
font-size: 14px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0.5px;
margin-bottom: 14px;
}

ul.f-menu li a:hover {
color: var(--primary);
}

.footer-content {
padding-top: 35px;
padding-bottom: 70px;
}

footer h6 {
font-family: var(--font-heading);
color: var(--white);
position: relative;
font-size: 22px;
font-weight: 700;
line-height: 24px;
}

.copyright {
padding-top: 11px;
padding-bottom: 11px;
background: var(--primary);
}

.copyright p {
font-family: var(--font-body);
font-size: 16px;
line-height: 28px;
letter-spacing: normal;
font-weight: 400;
}

.mainBanner {
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
}

.menuWrap {
display: flex;
gap: 1rem;
justify-content: end;
align-items: center;
}

.menuRight ul {
display: flex;
gap: 18px;
align-items: center;
    margin-inline: 1.5rem;
}

.menuRight ul li a:hover {
    background: #fff;
}

.menuRight ul li a:hover i {
    color: var(--primary);
}

/* .menuRight ul li.last {
margin-left: 1rem;
} */

.menuRight ul li a {
height: 35px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--white);
border-radius: 100px;
width: 35px;
font-size: 14px;
}

.menuRight ul li a i {
color: var(--white);
}

/* .menuRight ul li:last-child a {
color: #fff;
height: 100%;
width: 100%;
border: 0;
border-radius: 0;
} */



.menuWrap .btn-primary:hover {
    color: #fff !important;
    border: 1px solid;
}

/* ==============================
Main Banner
================================= */

.mainBanner {background-image: linear-gradient(rgb(5 30 52 / 20%), rgb(5 30 52 / 20%)), url(../images/hero-bg.png);background-position: center center;background-repeat:
no-repeat;background-size: cover;min-height: 540px;display: flex;align-items: center;position: relative;z-index:
1;height: 1000px;}

.mainBanner .hero-content {
max-width: 570px;
position: relative;
z-index: 999;
}

.mainBanner .hero-content p {
max-width: 520px;
margin: 18px 0 25px;
line-height: 1.7;
}

.mainBanner .btns {
display: flex;
align-items: center;
gap: 12px;
}

.mainBanner .btn-secondary {
background: #f2b632;
border: 1px solid #f2b632;
color: #fff;
border-radius: 0;
padding: 9px 20px;
cursor: pointer;
}

.mainBanner .btn-secondary:hover {
background: #d99d1e;
border-color: #d99d1e; 
}

.mainBanner .btn-secondary-border {
background: transparent;
border: 1px solid #f2b632;
color: #f2b632;
border-radius: 0;
padding: 9px 20px;
}

.mainBanner .btn-secondary-border:hover {
background: #f2b632;
color: #fff;
}

/* ==============================
About Section
================================= */

.about {
background: #f8f8fc;
}

.about .abt-img {
overflow: hidden;
}

.about .abt-img img {
display: block;
}

.about .content {
padding-left: 25px;
}

.about .top-title {
display: block;
color: #e9aa22;
margin-bottom: 12px;
}

.about .content h2 {
max-width: 650px;
margin-bottom: 15px;
color: #14253b;
}

.about .content p {
max-width: 500px;
line-height: 1.7;
margin-bottom: 18px;
}

.about .content ul {
margin: 0;
padding: 0;
list-style: none;
}

.about .content ul li {
position: relative;
padding-left: 18px;
margin-bottom: 8px;
}

.about .content ul li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: #e9aa22;
}

/* ==============================
testimonials Section
================================= */

section.testimonials {
background-color: #123C69;
}

section.testimonials .top h2 {
color: var(--white);
text-align: center;
margin-bottom: 2rem;
}

.ql-card {
background-color: var(--white);
padding: 45px;
text-align: center;
}

.ql-card p {
font-size: 27px;
}

.ql-card span {
font-size: 16px;
display: block;
margin-top: 12px;
}

.qlSlide .slick-prev,
.qlSlide .slick-next {
position: absolute;
bottom: 35%;
transform: translateY(-50%);
z-index: 10;
background: none;
border: none;
font-size: 19px;
color: var(--primary);
cursor: pointer;
background: var(--secondary);
width: 50px;
height: 50px;
border-radius: 100px;
line-height: 1;
}

.qlSlide .slick-prev:hover,
.qlSlide .slick-next:hover {
background-color: var(--secondary);
}

.qlSlide .slick-prev i,
.qlSlide .slick-next i {
font-weight: 300;
font-size: 20px;
}

.qlSlide .slick-prev {
left: -5%;
}

.qlSlide .slick-next {
right: -5%;
}

/* ==============================
Compliance Marquee
================================= */

.compliance-marquee {
padding: 7px 0 !important;
background: #07345f;
overflow: hidden;
}

.compliance-marquee .content {
width: 100%;
overflow: hidden;
white-space: nowrap;
}

.compliance-marquee .top-title {
display: inline-block;
padding-left: 100%;
color: #fff;
white-space: nowrap;
animation: complianceMarquee 25s linear infinite;
font-size: 24px;
line-height: 1;
padding-top: 1rem;
}

@keyframes complianceMarquee {
0% {
transform: translateX(0);
}

100% {
transform: translateX(-100%);
}
}

/* ==============================
Services Section
================================= */

.services {
background: #fff;
overflow: hidden;
}

.services .top {
text-align: center;
margin: 0 auto 35px;
}

.services .top .top-title {
display: block;
margin-bottom: 10px;
color: #333;
}

.services .top h2 {
color: var(--primary);
margin-bottom: 15px;
}

.services .top h2 span {
color: var(--secondary);
}

.services .top p {
margin: 0 auto 20px;
line-height: 1.7;
}

.services .btn-secondary {
background: var(--primary);
border: 1px solid var(--primary);
color: #fff;
border-radius: 0;
padding: 8px 22px;
}

.services .btn-secondary:hover {
background: var(--secondary);
border-color: var(--secondary);
}

.services .service-card {
height: 100%;
margin-bottom: 25px;
background: #f2f2fa;
}

.services .serImg {
overflow: hidden;
}

.services .serImg img {
display: block;
width: 100%;
height: auto;
}

.services .txt {
padding: 26px 25px 30px;
}

.services .txt h3 {
color: var(--primary);
margin-bottom: 10px;
font-size: 32px;
}

.services .txt p {
line-height: 1.6;
margin-bottom: 12px;
font-size: 18px;
margin-block: 25px 15px;
}

.services .txt span {
display: block;
line-height: 22px;
}

.services .service-card:hover .serImg img {
transform: scale(1.03);
transition: 0.4s ease;
}

/* ==============================
Why Choose Us
================================= */

.choose {
background: #f1f1fb;
}

.choose .choose-left {
padding-right: 25px;
}

.choose .choose-left .txt {
margin-bottom: 25px;
}

.choose .top-title {
display: block;
color: #333;
margin-bottom: 10px;
}

.choose .choose-left h2 {
color: var(--primary);
margin-bottom: 15px;
}

.choose .choose-left h2 span {
color: var(--secondary);
}

.choose .choose-left p {
line-height: 1.7;
margin-bottom: 15px;
}

.choose .chooseImg {
overflow: hidden;
}

.choose .chooseImg img {
display: block;
width: 100%;
}

.choose .choose-right {
background: #fff;
padding: 25px 28px;
min-height: 36vw;
}

.choose .choose-right ul {
padding: 0;
margin: 0;
list-style: none;
}

.choose .choose-right li {
position: relative;
margin-bottom: 24px;
}

.choose .choose-right li:last-child {
margin-bottom: 0;
}

.choose .choose-right li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: var(--secondary);
}

.choose .choose-right li p {
margin: 0 0 10px;
color: var(--primary);
font-size: 24px;
padding-left: 20px;
}

.choose .choose-right li span {
display: block;
line-height: 1.6;
}

.choose .btn-primary {
background: var(--primary);
border: 1px solid var(--primary);
color: #fff;
border-radius: 0;
padding: 8px 20px;
}

.choose .btn-primary:hover {
background: var(--secondary);
border-color: var(--secondary);
}

/* ==============================
Industries Section
================================= */

.industries {
background: #ffffff;
}

.industries .top {
margin: 0 auto 40px;
text-align: center;
}

.industries .top>.row>.col-md-12>span {
display: block;
color: var(--primary);
margin-bottom: 10px;
}

.industries .top h2 {
color: var(--primary);
margin-bottom: 15px;
}

.industries .top p {
margin: 0 auto;
line-height: 1.7;
}

.industries .industries-card {
height: 100%;
min-height: auto;
margin-bottom: 25px;
padding: 30px 25px;
background: #123C69;
text-align: center;
transition: 0.3s ease;
margin-bottom: 10px;
}

.industries .industries-card img {
width: auto;
height: auto;
margin-bottom: 18px;
}

.industries .industries-card h3 {
color: #ffffff;
margin-bottom: 10px;
font-size: 30px;
}

.industries .industries-card p {
margin: 0;
line-height: 1.35;
color: #fff;
}

.industries .industries-card:hover {
transform: translateY(-5px);
}

.industries .btns {
margin-top: 2rem;
text-align: center;
}

/* ==============================
Our Process Section
================================= */

.process {
background: #f1f1fb;
}

.process .process-left {
padding-right: 35px;
}

.process .top-title {
display: block;
color: #333;
margin-bottom: 10px;
}

.process .process-left h2 {
color: var(--primary);
margin-bottom: 15px;
}

.process .process-left h2 span {
color: var(--secondary);
}

.process .process-left p {
max-width: 600px;
line-height: 1.4;
margin-bottom: 18px;
}

.process .btn-primary {
background: var(--primary);
border: 1px solid var(--primary);
color: #fff;
border-radius: 0;
padding: 8px 22px;
margin-bottom: 25px;
}

.process .btn-primary:hover {
background: var(--secondary);
border-color: var(--secondary);
}

.process .process-img {
width: 100%;
overflow: hidden;
}

.process .process-img img {
display: block;
width: 100%;
height: auto;
}

/* ==============================
Process Right
================================= */

.process .process-right {
padding-left: 20px;
}

.process .process-right ul {
margin: 0;
padding: 0;
list-style: none;
}

.process .process-right li {
margin-bottom: 25px;
position: relative;
}

.process .process-right li:last-child {
margin-bottom: 0;
}

.process .process-no {
color: var(--primary);
position: absolute;
}

.process .process-txt {
flex: 1;
}

.process .process-txt p {
margin: 0 1px 3px 36px;
color: var(--primary);
font-size: 23px;
}

.process .process-txt span {
display: block;
line-height: 1.6;
margin-top: 10px;
max-width: 534px;
}

/* ==============================
Ready CTA Section
================================= */

.ready {
position: relative;
background-image: linear-gradient(rgb(7 30 50 / 18%), rgb(7 30 50 / 18%)), url(../images/ready-bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}

.ready .txt {
max-width: 950px;
margin: 0 auto;
}

.ready h2 {
color: #fff;
margin-bottom: 15px;
}

.ready p {
color: #fff;
max-width: 600px;
margin: 0 auto 22px;
line-height: 1.7;
}

.ready .btns {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
}

.ready .btn-secondary {
background: var(--secondary);
border: 1px solid var(--secondary);
color: #fff;
border-radius: 0;
padding: 8px 22px;
min-width: 220px;
}

.ready .btn-secondary:hover {
background: #d39b1d;
border-color: #d39b1d;
}

.ready .btn-secondary-border {
background: transparent;
border: 1px solid var(--secondary);
color: var(--secondary);
border-radius: 0;
padding: 8px 22px;
min-width: 220px;
}

.ready .btn-secondary-border:hover {
background: var(--secondary);
color: #fff;
}

/* ========== FOOTER ========== */
.footer-section {
background-color: #ffffff;
color: #ffffff;
padding: 70px 0 0;
}

.footer-section .footer-logo {
color: var(--primary);
margin-bottom: 20px;
font-size: 35px;
}

.footer-section .footer-logo span {
color: var(--secondary);
}

.footer-section p {
color: var(--primary);
line-height: 1.7;
margin-bottom: 0;
}

.footer-section h6 {
color: var(--secondary);
margin-bottom: 22px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: #f5a623;
}

.footer-contact {
list-style: none;
padding: 0;
margin: 0;
}

.footer-contact li {
color: var(--primary);
margin-bottom: 12px;
line-height: 1.6;
}

.footer-bottom {
border-top: 1px solid rgb(139 139 139 / 10%);
margin-top: 50px;
padding: 25px 0;
text-align: center;
}

.footer-bottom p {
margin: 0;
color: #8a94a6;
font-size: 15px;
color: var(--primary) !important;
}

ul.footer-social-icons {
display: flex;
margin-top: 20px;
}

ul.footer-social li a {
font-size: 16px;
line-height: 1.5;
text-align: left;
color: var(--white);
margin-bottom: 15px;
}

ul.footer-social li a i {
color: var(--primary);
margin-right: 17px !important;
}

ul.footer-social li a:hover {
color: var(--primary);
}

ul.footer-social-icons li {
margin-right: 12px;
}

ul.footer-social-icons li a {
color: var(--white);
background-color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
height: 38px;
width: 38px;
border-radius: 0;
}

ul.footer-social-icons li a i {
font-size: 18px;
}

/* ==============================
Projects Section
================================= */

.projects-card img {
display: block;
}

.projects-card h5 {
font-size: 35px;
margin-top: 1rem;
color: var(--primary);
}

/* ==============================
Projects Detials Section
================================= */

.projectDetailImg img,
.projectDetailImg {
display: block;
width: 100%;
margin-block: 15px;
}

/* ==============================
FAQ Section
================================= */

section.faq {
background-color: var(--primary);
}

section.faq .top h2 {
text-align: center;
color: var(--white);
padding-bottom: 3rem;
}

.faq .accordion {
text-align: left;
}

.faq .at-tab {
display: none;
/* border-bottom: 1px solid #dddddd; */
border-top: none;
background-color: transparent;
padding: 0px 6px 30px;
padding: 0px 5px 20px;
}

.faq .at-tab p {
color: #fff;
max-width: 860px;
font-weight: 400;
font-size: 18px;
line-height: 22.14px;
max-width: 400px;
}

.faq .at-title {
cursor: pointer;
position: relative;
transition: background-color 0.3s ease;
padding: 20px 5px 0;
}

.faq .at-title.active,
.faq .at-title:hover {
color: #fff;
}

/* .at-title:hover {
background-color: #e0e0e0;
} */

.faq .at-title:after {
content: "\f067";
font-family: "Font Awesome 5 Pro";
position: absolute;
top: 50%;
transform:
translateY(-50%);
right: 0px;
transition: all 0.3s ease-in-out;
font-size: 14px;
font-weight: 700;
width: 31px;
height: 31px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
border-radius: 5px;
}

.faq .at-title.active:after {
content: "\f068";
}

.faq .at-item {
border-radius: 0 !important;
margin-bottom: 0px;
border-radius: 20px;
margin-bottom: 20px;
overflow: hidden;
border-bottom: 1px solid #fff;
}

.faq .at-title h2 {
display: flex;
align-items: center;
padding: 3px 1px 24px 0px;
background-color: transparent;
color: #ffffff;
max-width: 880px;
font-weight: 400;
font-size: 20px;
line-height: 100%;
vertical-align: middle;
letter-spacing: 0.2px;
}

.at-title.active::after {
background: var(--secondary);
color: var(--primary);
}

.at-title.active .at-tab {
display: block !important;
}

/* ==============================
Contact Section
================================= */

.get-in-form .form-control,
.get-in-form .form-select {
padding: 10px 10px 10px 10px;
opacity: 0.7;
border: 0;
border-bottom: solid 1px var(--primary);
margin-bottom: 30px;
height: 50px;
font-family: var(--font-body);
border-radius: 0;
font-size: 16px;
color: var(--primary) !important;
background: #1f29370d;
}

.get-in-form .btn-submit i {
font-weight: 500;
}

.get-in-form textarea.form-control {
height: 120px !important;
}

.map1 iframe {
width: 100%;
height: 550px;
display: block;
}

section.contact-us h2 {
color: var(--primary);
margin-bottom: 2rem;
}