@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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #006272;
    --secondary: #333333;
}

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

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

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
}

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


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

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


/* loader */


/* navigation css */

.topWrap {
    display: flex;
    justify-content: end;
    gap: 6.25rem;
}

.topWrap li a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topWrap li a span small {
    font-size: 0.875rem;
}

.topWrap li a span {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: grid;
    line-height: 1.32;
}

.topWrap li a div {
    border: 1px solid var(--white);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    background: transparent;
    transition: 0.5s ease-in-out;
}

.topWrap li a:hover div {
    background: var(--white);
    color: var(--black);
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
    padding-top: 2rem;
}

header:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #000000, #00000000);
    width: 57%;
    height: 187px;
    right: 0;
    top: 0;
    opacity: 0.7;
}

.navbar {
    background: var(--white);
    border-radius: 100px;
    height: 100px;
    padding: 0 2.1875rem 0 3.75rem;
    margin-top: 1.5rem;
}
.navbar-toggler {
    color: var(--white);
}

.navbar-brand {
    margin: 0;
}

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

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

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 3px;
    bottom: -5px;
    transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.headBtn {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    display: inline-block;
    padding: 1rem 1.65em;
    border-radius: 50px;
}

.headBtn:hover {
    background: var(--black);
    color: var(--white);
}


/* navigation css */


/* slider css */

.mainSec {
    background: url(../images/mainBan.png)right/contain no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

.mainSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 43%;
    height: 100%;
    border-bottom-right-radius: 24%;
    left: 0;
    top: 0;
}

.banContent {
    margin-top: 8rem;
}

.wllcm {
    font-size: 1.625rem;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    text-align: center;
    display: block;
    margin-left: 8rem;
}

.wllcm:before {
    content: "";
    position: absolute;
    background: #CCB892;
    width: 230px;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -8rem;
}

.mainHead {
    color: var(--black);
    font-size: 4.375rem;
    font-weight: 700;
}

.banContent p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 2;
}

.themeBtn {
    background: var(--white);
    display: inline-block;
    color: var(--black);
    border-radius: 50px;
    padding: 0.875rem 1.9em;
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}

.themeBtn1 {
    background: var(--primary);
    color: var(--white);
}

.themeBtn1:hover {
    background: var(--black);
}


/* slider css */


/* About Sec Css Start */

.aboutSec {
    padding: 6.875rem 0;
    background: #fff;
    border-radius: 0 0px 0 90px;
    z-index: 99;
}

.aboutContent span:before {
    left: 0rem;
}

.aboutContent span {
    margin-left: 0rem;
}

.abtLine {
    color: var(--primary);
    font-size: 1.375rem;
}

.abtLine:before {
    background: var(--primary);
}

.aboutContent p {
    font-size: 1.125rem;
    color: #828282;
    line-height: 2;
    width: 91%;
}


/* About Sec Css End */


/* Service Sec Css Start */

.serviceSec {
    background: var(--primary);
    padding: 10.625rem 0 6.25rem 0;
    margin-top: -5rem;
    z-index: 9;
}

.serviceHeading {
    text-align: center;
    margin-bottom: 2rem;
}

.serviceHeading p {
    color: var(--white);
    line-height: 2;
}

.srvLine {
    margin: 0;
}

.srvLine:before,
.srvLine:after {
    background: var(--white);
    right: 18%;
    width: 183px;
    height: 2px;
}

.srvLine:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 29.5%;
}

.serviceContent h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

.serviceContent p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.8;
}

.serviceContent a {
    color: var(--white);
    font-size: 1.125rem;
    text-decoration: underline !important;
    position: relative;
    display: block;
}

.serviceContent a:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 311px;
    height: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.serviceContent {
    margin-top: 1.25rem;
}

.serviceSlider .swiper-slide:nth-child(odd) .serviceWrap figure img {
    border-top-left-radius: 110px;
}

.serviceSlider .swiper-slide:nth-child(even) .serviceWrap figure img {
    border-bottom-right-radius: 100px;
}

.serviceSec .swiper-button-next,
.serviceSec .swiper-button-prev {
    border: 1px solid var(--white);
    width: 60px;
    height: 60px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    top: 30%;
}

.serviceSec .swiper-button-next:after,
.serviceSec .swiper-button-prev:after {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.serviceSec .swiper-button-next {
    right: -6rem;
}

.serviceSec .swiper-button-prev {
    left: -6rem;
}


/* Service Sec Css End */


/* Team Sec Css Start */

.teamSec {
    background: #F5F5F5;
    padding: 6.25rem 0 13rem 0;
}

.teamSec span:before,
.teamSec span:after {
    background: var(--primary);
}

.teamSec span:after {
    right: 26.7%;
}

.teamSlider {
    margin: 0.75rem 0 3.5rem 0;
}

.staff-card img {
    width: 194px;
    height: 194px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    position: relative;
}

.teamSlider .swiper-slide-active .staff-card img {
    border-color: #CCB892;
}

.staff-card {
    text-align: center;
    margin: 0 -1.25rem;
}

.teamSliderText p {
    color: #828282;
    font-size: 1.125rem;
    line-height: 2;
    text-align: center;
}

.teamSlider .swiper-slide {
    transform: scale(0.8);
    transition: 0.5s ease;
    z-index: 1;
}

.teamSlider .swiper-slide-active {
    transform: scale(1);
    z-index: 3;
}


/* Team Sec Css End */


/* Client Sec Css Start */

.clientSec {
    background: var(--white);
    border-radius: 0 100px 0 0;
    margin-top: -5rem;
}

.clientBox p {
    color: #828282;
    line-height: 2;
    font-size: 1.125rem;
}

.clientBox h3 {
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--primary);
}

.clientBox span:before {
    width: 156px;
    height: 2px;
    left: -11rem;
}

.clientBox span {
    margin-left: 11rem;
    text-align: left;
}

.clientSlider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: var(--primary);
    opacity: 1;
}

.clientSlider .swiper-pagination {
    display: flex;
}

.clientSlider {
    padding-bottom: 2rem;
}


/* Client Sec Css End */


/* Talk Sec Css Start */

.talkSec {
    background: #FCFCFC;
    padding-top: 8.125rem;
    z-index: 1;
}

.talkBox:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: var(--white);
    box-shadow: 0 0 25px rgb(201 201 201 / 25%);
    border-radius: 100%;
    right: -4rem;
    top: -5rem;
    z-index: -1;
}

.talkContent span:before {
    width: 165px;
    left: -6rem;
}

.talkContent span {
    margin-left: 6rem;
}

.talkContent p,
.talkBox p {
    font-size: 11px;
    line-height: 24px;
    color: #828282;
    text-align: justify;
}

.talkContent ul li a span {
    margin: 0;
    display: grid;
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
}

.talkContent ul li a {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.talkContent ul li a div {
    background: var(--primary);
    width: 67px;
    height: 67px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    border: 1px dashed var(--white);
}

.talkContent ul li a span small {
    color: #828282;
    font-size: 1rem;
}

.talkContent ul li+li {
    margin-top: 2.5rem;
}

.talkContent ul {
    margin-top: 2rem;
}

.talkBox h2 {
    font-size: 3.4375rem;
}

.talkBox .form-control {
    border: 1px solid #D9D9D9;
    /*margin-bottom: 20px;*/
    padding-left: 2rem;
    color: #D9D9D9;
    outline: none;
    box-shadow: none;
}

.talkBox input {
    /*height: 63px;*/
    border-radius: 50px;
}

.talkBox textarea {
    border-radius: 40px;
    padding-top: 1.3rem;
}

.talkBox .form-control::placeholder {
    color: #D9D9D9;
}

.talkBox .themeBtn {
    border: unset;
    padding: 0.875rem 3em;
}

.talkBox {
    background: var(--white);
    box-shadow: 0 4px 24px #A3A3A3;
    padding: 2.8125rem 2.5rem;
    position: relative;
}

.talkSec iframe {
    display: block;
    margin-top: -9rem;
}


/* Talk Sec Css End */


/* Footer Css Start */

footer {
    background: var(--primary);
    padding-top: 5rem;
}

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

footer h3 {
    font-size: 1.5625rem;
    color: var(--white);
    padding-bottom: 1.2rem;
    font-weight: bold;
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.links li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 10px;
    margin-top: 10px;
}

.contactInfom li a {
    color: var(--white);
    line-height: 1;
}

.contactInfom li a span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 3px;
}

.contactInfom li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

.socialLinks li a {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
}

.socialLinks li a span {
    text-decoration: underline !important;
}

.socialLinks li a i {
    background: rgb(255 255 255 / 20%);
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.125rem;
    transition: 0.5s ease-in-out;
}

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

.socialLinks li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 0.875rem;
    margin-top: 0.875rem;
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 1.125rem;
}

.copyRight {
    border-top: 1px solid rgb(223 223 224 / 50%);
    margin-top: 2.5rem;
    padding: 1.2rem 0;
}

.footerPara {
    margin: 2.5rem 0 0;
    color: var(--white);
}


/* Footer Css End */

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


/* inner pages css start */

.mainSec.innerBanner {
    background: url(../images/inerbg1.jpg) no-repeat top center/ cover;
    height: 716px;
    display: flex;
    background-position: right;
    background-size: 80%;
    border-bottom-right-radius: 130px;
}

.aboutSec.aboutPage .row+.row {
    margin-top: 2rem;
}

.clientSec.clientWho {
    margin: 0;
}

.radiusImg img {
    border-bottom-right-radius: 120px;
    border-top-left-radius: 120px;
    height: 530px;
    object-fit: cover;
}

.aboutSec.whatwePage .mainHead.secHeading {
    font-size: 3.75rem;
    font-weight: 600;
}

.aboutSec.whatwePage p {
    margin: 0;
    width: 100%;
}

.aboutSec.whatwePage .row+.row {
    margin-top: 5rem;
}

.mainSec.innerBanner .mainHead {
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.teamSec.teamPage .teamSliderText p {
    margin: 0 0 2rem;
}

.termsPage h2 {
    font-size: 3rem;
}

.termsPage {
    padding: 4rem 0;
}

.talkBox .form-group {
    /*display: flex;*/
    align-items: flex-start;
    gap: 1rem;
}

.talkBox .form-group input {
    width: 20px;
    margin: 0;
    height: 20px;
}

.talkBox .form-group label {
    line-height: 1.2;
    color: var(--black);
}

.talkBox .form-group label a {
    color: var(--black);
    text-decoration: underline !important;
}

.formPara {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

#termsPrivacy {
    display: none;
} 

.talkBox.talkBox--text p {
    text-align: left;
}