/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');

/* Local Font */

@font-face {
    font-family: "Trajan Pro";
    src: url("../fonts/trajanpro.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Trajan Pro";
    src: url("../fonts/trajanoro-bold.otf");
    font-weight: 700;
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #63B54C;
    --secondary: #010C5A;
    /* Font Variable */
    --font-text: "Jost", sans-serif;
    --font-heading: "Trajan Pro";
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.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 */

.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(--white);
    z-index: 11113;
}

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


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.9125em 2.295em;
    border-radius: 1.75rem;
    letter-spacing: 0.5px;
    line-height: normal;
    border: 2px solid transparent;
    transition: 0.5s ease;
}

.themeBtn:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0px 05px rgba(99, 181, 76, 0.2);
    color: var(--primary);
}

.themeBtn.blue {
    background: var(--secondary);
}

.themeBtn.blue:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0px 05px rgba(1, 12, 90, 0.3);
    color: var(--secondary);
}

.heading {
    font-size: 3.625rem;
    color: var(--black);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.heroText .heading {
    font-size: 1.9rem;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0.7rem 0 0.7rem;
    font-style: italic;
}

.heroText h2 {
    font-size: 1.88rem;
    font-weight: 500;
}

.heading span {
    font-weight: 700;
    font-size: 3.75rem;
}

.heading2 {
    font-size: 3.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.subtitle {
    font-size: 1.625rem;
    display: block;
    font-family: var(--font-text);
    font-weight: 500;
    margin-bottom: 1.375rem;
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    position: relative;
    width: 100%;
    padding: 0.875rem 0;
    background-color: var(--white);
    transition: 0.3s ease-in-out;
    z-index: 111;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    margin-left: -2rem;
}

.navbar-nav {
    gap: 2.8rem;
    margin-right: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #6B6B6B;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 0%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary);
    max-width: 100px;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
    max-width: 100px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown>a:before {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding-left: 0;
    position: absolute;
    right: -16px;
}

.navbar .dropdown ul li a:hover {
    background: var(--primary);
    color: var(--white);
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-section {
    background: url('../images/mainhero-img.webp') center center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    height: 1000px;
    padding-bottom: 200px;
    border-bottom-right-radius: 200px;
}

.main-section::before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 180px;
    background: url('../images/path.webp') bottom right/contain no-repeat;
    position: absolute;
    bottom: 179px;
    right: 0;
}

.heroText h5 {
    font-size: 1.875rem;
    font-weight: 500;
    font-family: var(--font-text);
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
}

.heroText p {
    font-size: 1.125rem;
    color: var(--black);
    font-style: italic;
    line-height: 1.8;
    max-width: 576px;
}

.main-section .obj {
    top: 50%;
    right: 15%;
    z-index: 2;
    /* animation: mobilemove 2s infinite; */
}


/* !MAIN HERO SLIDER CSS */


/* ABOUT SECTION */

.about-section {
    border-radius: 200px 0 0 200px;
    background-color: var(--white);
    margin-block: -180px;
    padding: 74px 0 107px;
    z-index: 1;
    overflow: hidden;
}

.about-section p {
    color: #707070;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-img {
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1.375rem;
    width: 645px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
}

.about-img img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: -1.5rem;
    border-radius: 50%;
    border: 5px solid var(--white);
}

.obj {
    position: absolute;
}

.about-section .obj {
    left: 0;
    bottom: 0;
}


/* !ABOUT SECTION */


/* SERVICES SECTION */

.services-section {
    background-color: #EFF8ED;
    padding: 138px 0 16rem;
    margin-bottom: -180px;
    border-radius: 200px 0 0 200px;
    background-color: var(--white);
    margin-block: -180px;
}

.services-section::before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 180px;
    background: url('../images/path.webp') bottom right/contain no-repeat;
    position: absolute;
    top: 179px;
    transform: scaleY(-1);
    right: 0;
}

.services-card {
    text-align: center;
    margin-top: 2.25rem;
}

.services-card figure {
    max-width: 354px;
    margin: auto;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0rem 1.125rem 0 0rem #E1E1E1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
}

.services-card figure img {
    transition: 0.5s ease;
    width: 354px;
    height: 354px;
    border-radius: 50%;
    object-fit: cover;
}

.services-card:hover figure {
    box-shadow: 0rem 1.125rem 0 0rem var(--primary);
}

.services-card:hover figure img {
    transform: scale(1.05) !important;
}

.services-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-card a.link {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    padding: 3px 5px;
    background: linear-gradient(to bottom, transparent 10%, var(--primary) 10%);
    background-size: 90% 2px;
    background-position-y: 100%;
    background-position-x: center;
    background-repeat: no-repeat;
    transition: 0.5s ease;
}

.services-card a.link:hover {
    color: var(--white);
    background-size: 100% 120%;
}

.services-card:hover a.link {
    animation: moveline 0.75s infinite alternate;
}

@keyframes moveline {
    0% {
        background-position-y: 100%;
    }
    100% {
        background-position-y: 95%;
    }
}


/* !SERVICES SECTION */


/* FUNCTIONALITY SECTION */

.functionality-section {
    background-color: #EFF8ED;
    border-bottom-left-radius: 200px;
}

.functionality-section::before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 180px;
    background: url('../images/path.webp') bottom right/contain no-repeat;
    position: absolute;
    top: -179px;
    transform: scaleX(-1);
    left: 0;
}

.functionality-section .text {
    color: #828282;
    font-size: 1.125rem;
    text-align: center;
    width: 88%;
    margin: auto;
    line-height: 1.8;
    margin-top: 8px;
    margin-bottom: 2.25rem;
}

.main-figure {
    width: 350px;
    aspect-ratio: 1;
    background-color: var(--white);
    border-radius: 50%;
    border: 11px solid #EFEFEF;
    display: grid;
    place-items: center;
    margin: auto;
    overflow: hidden;
}

.main-figure img {
    width: 240px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-top: 1.25rem;
    margin-left: -1rem;
}

.function-list li {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    position: relative;
    z-index: 1;
    transition: all 300ms ease-in-out;
}

.function-list li:hover {
    transform: scale(1.05);
}

.function-list li+li {
    margin-top: 5.25rem;
}

.function-list li figure {
    width: 120px;
    aspect-ratio: 1;
    background-color: var(--secondary);
    border: 10px solid #EFEFEF;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    transition: all 300ms ease-in-out;
}

.function-list li figure:hover {
    background-color: var(--primary);
}

.function-list li figure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 86px;
    height: 6px;
    background-color: #EFEFEF;
}

.function-list li figure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 78px);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 6px solid #EFEFEF;
    border-radius: 50%;
}

.function-list.list2 li figure::before {
    left: auto;
    right: 100%;
}

.function-list.list2 li figure::after {
    left: auto;
    right: calc(100% + 78px);
}

.function-list li div {
    max-width: 300px;
    flex: 1;
}

.function-list li p {
    margin: 0;
    color: var(--black);
    line-height: 1.75;
    font-size: 1.125rem;
    font-weight: 500;
}

.function-list.list1 li {
    flex-direction: row-reverse;
}

.function-list.list1 li:nth-child(odd) {
    margin-right: -90px;
}

.function-list.list1 li:nth-child(1) figure::before {
    transform: translateY(-50%) rotate(45deg);
    transform-origin: left bottom;
}

.function-list.list1 li:nth-child(1) figure::after {
    top: calc(100% + 16px);
    left: calc(100% + 56px);
}

.function-list.list2 li:nth-child(1) figure::before {
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right bottom;
}

.function-list.list2 li:nth-child(1) figure::after {
    top: calc(100% + 16px);
    right: calc(100% + 56px);
}

.function-list.list1 li:nth-child(3) figure::before {
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: left top;
}

.function-list.list1 li:nth-child(3) figure::after {
    top: -1rem;
    left: calc(100% + 56px);
}

.function-list.list2 li:nth-child(3) figure::before {
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right top;
}

.function-list.list2 li:nth-child(3) figure::after {
    top: -1rem;
    right: calc(100% + 56px);
}

.function-list.list1 li p {
    text-align: right;
}

.function-list.list2 li:nth-child(odd) {
    margin-left: -90px;
}


/* !FUNCTIONALITY SECTION */


/*  */

.process-item.process-icon {
    position: relative;
    /* margin-top: 60px; */
}


/* .process-item.process-icon.process-icon1 {
    margin-top: 120px;
} */

.process-item.process-icon .icon {
    width: 120px;
    position: absolute;
    top: 50%;
    left: -5rem;
    transform-origin: top left;
    transform: rotate(0deg) translateY(-50%);
    filter: brightness(0) saturate(100%) invert(64%) sepia(4%) saturate(5431%) hue-rotate(58deg) brightness(92%) contrast(87%);
    opacity: 0.75;
    /* filter: brightness(0) saturate(100%);
    /* animation: iconarrow 2s infinite linear; */
}


/* .process-item.process-icon.process-icon1 .icon {
    animation-delay: 1s;
} */

@keyframes iconarrow {
    0%,
    100% {
        transform: rotate(-56deg) translateY(-50%);
    }
    50% {
        transform: rotate(-60deg) translateY(-50%);
    }
}

@keyframes mobilemove {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.process-item figure {
    position: relative;
    text-align: center;
    z-index: 1;
}


/* .process-item figure img {
    animation: mobilemove 2s infinite linear;
}

.process-item.process-icon figure img {
    animation-delay: 1s;
}

.process-item.process-icon.process-icon1 figure img {
    animation-delay: 2s;
} */

.process-item figure::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    aspect-ratio: 1;
    background: linear-gradient(0deg, var(--primary) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
}

.process-item .process-content {
    text-align: center;
    max-width: 200px;
    margin: auto;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.process-item .process-content span.count {
    width: 60px;
    aspect-ratio: 1;
    background: #818AC1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 2.125rem;
    font-weight: 700;
    margin: auto;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
    margin-bottom: 6px;
    opacity: 0;
    visibility: hidden;
}

.process-item .process-content h5 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.375;
    margin: 0;
}


/* Footer Css Start */

footer {
    background: var(--secondary);
    padding-top: 2.5rem;
}

.newsletter {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    gap: 1.75rem;
    padding: 1rem 2rem;
    margin-bottom: 4rem;
}

.newsletter form {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 1;
}

.newsletter input {
    width: 100%;
    border: 0;
    font-size: 1.5rem;
}

.newsletter .themeBtn {
    border-radius: 10px;
}

.newsletter input:focus {
    box-shadow: none;
}

footer h3 {
    font-weight: 500;
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 2.25rem;
}

footer h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2.25rem;
}

.footerLogo img {
    width: 400px;
}

footer ul li a {
    color: #fff;
    font-size: 1rem;
}

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

.links li+li {
    padding-top: 4px;
}

.contactLinks li a span {
    display: block;
}

.contactLinks li+li {
    margin-top: 2rem;
}

.copyRight {
    border-top: 1px solid var(--white);
    margin-top: 3.5rem;
    padding: 2rem 0;
    background-color: #000840;
}

ul.links li {
    margin-bottom: 1rem;
}

ul.ftrlist {
    display: flex;
    flex-flow: column;
    margin: 0;
    max-height: 183px;
    gap: 14px 3rem;
    margin-top: 1.75rem;
}

.copyRight .socialLink {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.copyRight .socialLink a {
    color: var(--white);
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.copyRight .socialLink a:hover {
    background-color: var(--primary);
}

.copyRight p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0;
    text-align: center;
}

.termslink {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
}

.termslink a {
    font-size: 1.25rem;
}

.termslink a:hover {
    text-decoration: underline !important;
}


/* Footer Css End */


/* inner pages css start */

.inerBaner {
    padding: 6rem 0 10rem;
}

.inerBaner>img {
    display: none;
}

.inerBaner h2 {
    position: absolute;
    top: 35%;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 3.625rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

.aboutPage {
    padding-top: 0;
    padding-bottom: 2.5rem;
}

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

.mainHeading {
    text-align: center;
    font-size: 2.375rem;
    margin: 0 5rem;
    line-height: 1.4;
}

.procesCard {
    background: #F1F8EE;
    border-radius: 20px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 16%);
    padding: 3rem 3rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.procesCard h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.procesCard p {
    font-size: 14px;
    color: #707070;
    margin: 0;
    font-weight: 500;
}

.aboutPage .row+.row .col-md-6 {
    margin-bottom: 3rem;
}

.inerBaner1 h2 {
    top: 27%;
}

.aboutPage.medicalPage .heading span {
    font-size: 3.625rem;
}

.medicalPage {
    text-align: center;
    border-radius: 0 0 200px 0;
    background-color: #ffffff;
    margin-block: -180px;
    padding: 74px 0 90px;
    z-index: 1;
    overflow: hidden;
}

.aboutPage.medicalPage .heading {
    margin: 0 0 0.5rem;
}

.aboutPage.medicalPage p {
    font-size: 1.125rem;
    font-style: italic;
    margin: 0 0.5rem;
    line-height: 1.8;
}

.interactMain {
    padding-top: 17rem;
    background: #EFF8ED;
    border-radius: 0;
}

.interactMain:before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 180px;
    background: url(../images/path.webp) bottom right/contain no-repeat;
    position: absolute;
    top: 179px;
    transform: scale(-1);
    left: 0;
}

.sectionHeading {
    text-align: center;
    font-size: 3.75rem;
    font-weight: bold;
}

.globalContent .heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 0.6rem;
}

.globalContent ul li {
    font-size: 1.125rem;
    color: #707070;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding-left: 1.7rem;
}

.globalContent ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.globalContent ul li+li {
    margin: 5px 0 0;
}

.interactMain .sectionHeading {
    margin: 0 0 2rem;
}

.interactMain .flex-row-reverse .about-img::after {
    left: inherit;
    right: 0.625rem;
}

.globalContent p {
    font-size: 1.125rem;
    color: #707070;
    font-style: italic;
    margin: 0 0 0px;
    padding-left: 30px;
}

.keyPage {
    text-align: left;
    padding: 7rem;
}

.keyPage .about-img img:nth-child(2) {
    right: inherit;
    left: 0;
}

.keyPage .about-img:after {
    left: inherit;
    right: 0;
}

.gmtBox {
    padding: 3rem 2.75rem 4.375rem;
    background: #F1F8EE;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
    border-radius: 1.25rem;
    height: 100%;
    transition: 0.5s ease;
}

.gmtBox ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gmtBox ul h2 {
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.5s ease;
}

.gmtBox p {
    font-size: 14px;
    line-height: 2.14;
    color: #707070;
    font-style: italic;
    margin: 0;
    transition: 0.5s ease;
}

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

.gmtBox img {
    transition: 0.5s ease;
}

.gmtBox:hover p,
.gmtBox:hover h2 {
    color: var(--white);
}

.gmtBox:hover img {
    filter: brightness(0) invert(1);
}

.interactMain .row {
    gap: 2.25rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item figure {
    width: 100px;
    height: 100px;
    background: var(--primary);
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(99, 181, 76, 0.4);
}

.contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.contact-item h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: #666666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.625;
}

.contact-item a:hover {
    color: var(--primary);
}

.contactpageform .form-control {
    border: 0;
    border-bottom: 1px solid #707070;
    padding: 1.375rem 0;
    border-radius: 0;
    margin-bottom: 2.25rem;
    resize: none;
    font-size: 1.25rem;
    transition: 0.5s ease;
}

.contactpageform input.form-control {
    height: 4.625rem;
}

.contactpageform .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contactpageform .form-control::placeholder {
    color: var(--black);
    opacity: 0.5;
}

.contactpageform .themeBtn {
    border-radius: 10px;
}

.map iframe {
    width: 100%;
    height: 690px;
    display: block;
}

.reviewCard .icon {
    margin-bottom: -1.25rem;
    margin-left: 1.625rem;
}

.review-box {
    padding: 2rem 1.75rem 2rem 1rem;
    /* background: url('../images/reviewpath.png') no-repeat; */
    /* background-size: 100% 100%; */
    /* height: 100%; */
    border: 1px solid #b3b3b3;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.review-box p.text {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-rating ul {
    display: flex;
    gap: 8px;
    color: #F5AB1A;
}

.review-rating h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 4rem;
    margin-top: 4px;
}

.review-user h4 {
    font-size: 1.125rem;
    margin: 0;
}

.review-user p {
    font-size: 11px;
    font-style: italic;
    font-weight: 500;
    color: #828282;
    margin: 0;
}

.review-card1 h3 {
    font-size: 2.5rem;
    font-style: italic;
    font-family: 'Jost';
    font-weight: 400;
}

.review-section {
    background-color: #E5E6EE;
    overflow: hidden;
    padding: 6.375rem 0 3.875rem;
}

.figure-review {
    position: absolute;
    top: 0;
    right: 0;
}

.review-card1 .user-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0 1rem;
}

.review-card1 .user-detail h6 {
    font-size: 17px;
    margin: 0;
}

.review-card1 .user-detail p {
    font-size: 11px;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.review-card1 .text1 {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.68;
    margin-bottom: 1.75rem;
}

.reviewSlider1 .swiper-pagination {
    display: flex;
    gap: 10px;
    bottom: 0;
}

.reviewSlider1 .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    border: 1px solid #707070;
    opacity: 1;
    margin: 0 !important;
    background-color: transparent;
    transition: 0.5s ease;
}

.reviewSlider1 .swiper-pagination-bullet-active {
    background-color: var(--primary);
}


/* inner pages css end */


/* modal css start */

.banerModal .modal-dialog {
    max-width: 45%;
}

.banerModal .modal-dialog .close {
    all: unset;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    opacity: 1;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 11;
    cursor: pointer;
}

.banerModal .modal-dialog .modal-body {
    padding: 3rem 2.5rem;
}

.banerModal .modal-dialog .modal-body p {
    margin: 0;
    font-size: 1.125rem;
}


/* modal css end */

.aboutPage.aiPage {
    /* margin-top: -5rem; */
    padding-bottom: 4rem;
}

.aboutPage.aiPage p {
    font-size: 1.165rem;
}

.banerModal.scribeModal .modal-dialog {
    max-width: 60%;
}

.banerModal.scribeModal .modal-dialog h4 {
    font-size: 1.7rem;
    margin: 1rem 0;
    font-weight: bold;
}

.banerModal.scribeModal .modal-dialog p {
    margin: 0 0 10px;
}

.banerModal.scribeModal .modal-body {
    padding: 3rem 2.5rem 1.5rem;
}

ul.gmtList li {
    list-style: disc;
    font-size: 1.125rem;
    margin-left: 1.2rem;
}

ul.gmtList li+li {
    margin-top: 1.5rem;
}

.flexibleHeading {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 1rem;
}

.revolutionContent h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.6rem;
}

.revolutionContent p {
    font-size: 1.125rem;
}

.interactMain .row+.row {
    margin-top: 4rem;
}

.aboutPage.reviewPage .reviewCard {
    margin-bottom: 2.5rem;
}

.aboutPage.reviewPage .swiper-button-prev {
    left: 11rem;
    color: var(--primary);
}

.aboutPage.reviewPage .swiper-button-next {
    right: 11rem;
    color: var(--primary);
}

.inerBaner.testiBanner {
    padding: 5rem 0;
}
.navbar-toggler {
    width: fit-content;
}
.navbar-toggler span{
    color: var(--black);
}