/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Local Font */


:root {
    --white: #fff;
    --black: #000;
    --primary: #22488C;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: clip;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

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

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;

}

.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;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */

/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--black);
    font-size: 15rem;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--primary);
}


/* PRELOADER */



/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 0.9375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: unset;
    line-height: normal;
    letter-spacing: 1px;
    border: none;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}



/* NAV HEADER CSS */

header {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--primary);
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 24px 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

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

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

.slideOne .btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

li.nav-item i {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 950px;
}

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

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.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;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 4.6875rem;
    font-weight: bold;
    text-transform: uppercase;
}

a.playbtns i {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 20%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
}

a.playbtns span {
    font-size: 0.9375rem;
    color: #fff;
    font-weight: 500;
}

a.playbtns span strong {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255 / 71%);
}

a.playbtns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slideOne h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#bnr-video, #bnr-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* !MAIN HERO SLIDER CSS */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    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: 20px;
}


/* !SEARCH BAR CSS */


/* call-section */
.call-section {
    padding: 0;
    margin-top: -9rem;
}

.callswrap {
    background: rgb(33 37 110 / 12%);
    padding: 35px 23px;
    display: flex;
    align-items: center;
    gap: 26px;
    backdrop-filter: blur(18px);
    transition: 0.5s ease;

    box-shadow: inset 0 1em 5em rgb(253 253 253 / 24%);
}

.callswrap figure {
    background: #fff;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.callcntct h2 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #fff;
}

.callcntct h5 {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 71%);
    font-weight: 300;
    margin: 0;
}

.callswrap:hover {
    background: #22488C;
    border-top: 1px solid #fff;
    transition: 0.5s ease;
}

.callswrap {

    border-top: 1px solid transparent;

}

/* call-section */

.mainHead {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.headingani .char {
    display: inline !important;
}

.subHead {
    font-size: 1.9375rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #949DAA;
}

/* about-section */
.about-cntnt h4 {
    font-size: 19px;
    font-weight: 500;
    color: #000;
    margin-bottom: 27px;
    line-height: 1.6;
    width: 100%;
}

.about-cntnt p {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 2;
}

.about-cntnt h5 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #000936;
}

.about-section {
    padding: 5.9rem 0;
}

.about-section figure img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* about-section */


/* service-section */
.service-section {
    background: url(../images/servicebg.webp)center/cover no-repeat;
    padding: 5rem 0 3rem 0;
}

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 0;
    margin-bottom: 56px;
}

.service-top .themeBtn {
    border: 1px solid var(--primary);
    background: transparent;
}

.service-heading .mainHead {
    color: #fff;
    margin: 0;
}

.service-heading .subHead {
    color: #fff;
}

.serv-wrap figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sercntnt h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}

.sercntnt {
    margin: 23px 0 75px 0;
}

/* service-section */


/* staff */
.staff-head {
    text-align: center;
    margin-bottom: 2rem;
}

.staff-wrap figure img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.staff-cntnt h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
}

.staff-cntnt h5 {
    font-size: 1.125rem;
    color: #707070;
    margin: 0;
}

.staff-cntnt {
    margin-top: 24px;
}

/* staff */

/* service-react */
.service-react {
    background: #0A3480;
    padding: 84px 0;
}

.serv-react-wrap .mainHead {
    color: #fff;
    text-transform: capitalize;
}

.service-react .themeBtn {
    background: #040C37;
}

/* service-react */

/* professional */
section.professional-head {
    padding: 0 0 4rem 0;
}

.professional-head h2 {
    font-size: 15.625vw;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7D7D7D;
    -webkit-text-fill-color: white;
    line-height: 1;
}

.professional-head h3 {
    font-size: 11.458vw;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7D7D7D;
    -webkit-text-fill-color: white;
    line-height: 0.6;
}

/* professional */


/* project */
.project-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.project-top .btn-group {
    gap: 1rem;
}

a.themeBtn.btbn-bdr {
    border: 1px solid var(--primary);
    background: #fff;
    color: #000;
}

.projectwrap figure img {
    width: 100%;
}

.projectwrap {
    margin-bottom: 30px;
}

/* project */


/* explore-career */
.explore-career {
    background: url(../images/careerbg.webp) center/cover no-repeat;
    padding: 8rem 0;
}

.projects-heading .mainHead {
    color: #fff;
}

.projects-heading .subHead {
    color: #fff;
}

.career-top .themeBtn {
    border: 1px solid #fff;
    background: transparent;
}



.career-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.career-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

ul.explore-listing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.explore-wrap p {
    font-size: 1.375rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

ul.explore-listing li {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
}

ul.explore-listing li+li {
    border-left: 1px solid #fff;
    padding: 0 10px;
}

.explore-wrap {
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
    margin-bottom: 45px;
}

/* explore-career */

/* Footer Css Start */

footer {
    background: url(../images/footerbg.webp)center/cover no-repeat;
    padding-top: 5.5rem;
}

.footLogo p {
    color: var(--white);
    line-height: 2;
    font-size: 0.875rem;
    margin: 0.625rem 0 0 0;
}

footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: capitalize;
}



footer ul li a:hover {
    color: #000;
}

.links li+li {
    margin-top: 10px;
}

.links li a {
    text-transform: capitalize;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgb(255 255 255 / 90%);
}




.footForm input {
    height: 55px;
    width: 100%;
    padding-left: 1.5rem;
    outline: unset;
    box-shadow: unset;
    font-size: 0.875rem;
    color: #fff;
    border: 1px solid #ffffff59;
    background: transparent;
}

.footForm input::placeholder {
    color: rgb(255 255 255 / 50%);
}

.footForm .themeBtn {
    font-size: 1rem;
    text-transform: uppercase;
    outline: unset;
    border: unset;
    width: 180px;
    border: 1px solid var(--white);
    background: transparent;
}

.copyRight {
    background: rgb(255 255 255 / 15%);
    margin-top: 4.5rem;
    padding: 1.5rem 0;
}


.copyRight p {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgb(255 255 255 / 71%);
    margin: 0;
    line-height: 1.6;
}

.footLogo p {
    font-size: 1rem;
    color: rgb(255 255 255 / 70%);
    line-height: 1.6;
    font-weight: 300;
    margin-top: 2rem;
}

.links li a i {
    margin-right: 10px;
}

ul.fotterbtm-center li a {
    font-size: 1rem;
    font-weight: 300;
    color: rgb(255 255 255 / 70%);
}

ul.socialLinsks {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 65px;
}

ul.socialLinsks li a i {
    color: #fff;
    background: transparent;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 71%);
}

.right-ftr h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

form.footForm {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.col-md-3.ftoorlast p {
    font-size: 0.9375rem;
    color: rgb(255 255 255 / 71%);
}



.ftoorlast button.themeBtn {
    background: #fff;
    border: unset;
    color: #000;
}

ul.Contact.info li a {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 71%);
}

ul.Contact.info li+li {
    margin-top: 3.25rem;
}

.copyRight p span {
    color: #fff;
    text-transform: uppercase;
}

ul.fotterbtm-center {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

ul.fotterbtm-center li a {
    text-decoration: underline !important;
}

.topftr-row {
    border-bottom: 1px solid rgb(255 255 255 / 19%);
    padding-bottom: 65px;
    margin-bottom: 68px;
}

ul.Contact.info li a {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Footer Css End */
.themeBtn:hover {
    background: #000;
    color: #fff;
}

a.themeBtn.btbn-bdr:hover {
    background: var(--primary);
    color: #fff;
}

.career-top .themeBtn:hover {
    background: #fff;
    color: #000;
}

section.service-react .themeBtn:hover {
    background: #fff;
    color: #000;
}

section.service-section .themeBtn:hover {
    background: #fff;
    color: #000;
}

.slideOne .themeBtn:hover {
    background: #fff;
    color: var(--primary);
}

.navbar-nav .nav-item .nav-link:hover {
    color: #000;
}


ul.socialLinsks li:hover a i {
    background: #fff;
    color: #000;
}

.ftoorlast button.themeBtn:hover {
    background: #000;
    color: #fff;
}


/* Innerpages */
.main-slider--inner {
    height: 730px;
}

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

.list-link i {
    margin-right: 0.25rem;
}

.contact-form :is(input, textarea) {
    width: 100%;
    border: 1px solid #EBEBEB;
    outline: none;
    resize: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.contact-info ul li a {
    color: #262626;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-info ul li a:hover {
    color: var(--primary);
}

.map {
    filter: grayscale(1);
}

/* Staaf Section Start */

.staffInner .row+.row {
    margin-top: 50px;
}

.staffInner p {
    margin-top: 20px;
}

.staaf-img img {
    width: 100%;
    height: 100%;
}


/* Staaf Section End */

/* Faq Sec Css Start */
.faqSec #accordion .card {
    border: none;
    padding: 0rem 1rem;
    background: transparent;
    margin-bottom: 1.5rem;
    border-radius: unset;
}

.faqSec #accordion .card .btn-link {
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    border: 0;
    font-size: 1.125rem;
    border-radius: unset;
    border-bottom-left-radius: 0;
    text-align: left;
    margin-bottom: 12px;
    padding: 0.5rem 0;
}

.faqSec #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;
}

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

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

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

.faqSec #accordion .card .btn-link {
    border-bottom: 4px solid var(--primary);
}

.faqSec #accordion .card .btn-link i {
    color: var(--primary);
}

.faqSec #accordion .card .btn-link.collapsed {
    border-bottom: 4px solid var(--primary);
    background: #f6fbff;
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: var(--primary);
}

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

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

.faqSec #accordion .card .card-body p {
    color: #666666;
    font-size: 1rem;
    margin: 0;
    line-height: 33px;
}

.topfaq {
    text-align: center;
}

.topfaq h2 {
    font-size: 40px;
    font-weight: 600;
    color: #333333;
}

.topfaq h4 {
    font-size: 20px;
    font-weight: 600;
    color: #666666;
}

.topfaq h4 span {
    color: var(--primary);
}

.topfaq {
    margin-bottom: 3rem;
}

.faqbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

a.themeBtn.bdrbtn {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

/* Faq Sec Css End */

.themeBtn.btntwo {
    margin: 4rem auto 0;
    display: block;
    width: fit-content;
}