@import url("https://fonts.googleapis.com/css2?family=Barlow: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=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #00797f;
    --secondary: #00797f;
}

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

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

/* How to add New font */
/* @font-face {
  font-family: "Font Name";
  src: url("../fonts/fontpath.ttf");
} */

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jcfs {
    justify-content: flex-start;
}

.jcfe {
    justify-content: flex-end;
}

.jcsb {
    justify-content: space-between;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    /* font-family: "Poppins", sans-serif; */
    /*font-family: "Roboto", sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

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

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 90px;
    transition: 0.3s ease-in-out;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    background: #e6feff;
    box-shadow: 15px 15px 38px 0px rgba(0, 0, 0, 0.09);
    transition: 0.3s ease-in-out;
    padding: 1rem 10%;
}

header.sticky {
    position: fixed;
}

.navbar-nav {
    gap: 1rem 1.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1b1e;
    text-transform: capitalize;
    line-height: 1;
    padding: 0;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--secondary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
    color: #00797f;
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    justify-content: center;
    gap: 1.5rem;
}

.openSearch {
    color: #1b1d21;
    font-size: 1.5rem;
}

.topInfo {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topInfo li {
    padding: 0 1rem 0 0;
    border-right: 1px solid #dbdbdb;
}

.topInfo li a {
    display: flex;
    color: #00797f;
    font-size: 1rem;
    align-items: center;
    gap: 1rem;
}

.topInfo li h3 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--black);
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    margin: 0;
}

.topInfo li h3 span {
    color: #76767d;
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.socialList {
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.socialList li a {
    color: var(--white);
    font-size: 1rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 3px;
    display: inline-grid;
    place-items: center;
    background: #00797f;
}

.socialList li a:hover {
    background: #b3fbff;
    color: #00797f;
}

.themeBtn {
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: 1em 1.5em;
    text-transform: capitalize;
    background: #007980;
    border: 1px solid #007980;
}

.themeBtn:hover {
    background: #b3fbff;
    color: #007980;
}

.reveal {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.heading {
    color: #0e2a36;
    font-size: 2.625rem;
    /*font-family: "Barlow", sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #00797f;
    text-transform: capitalize;
}

.heading span {
    display: block;
    color: #00797f;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
    padding: 0px 0px 0px 9px;
    border-left: 5px solid #00797f;
}

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

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

.aboutSec {
    background: #f6f6f6 url(../images/aboutBg.png) top center;
    padding: 3rem 0;
}

.aboutSec figure {
    position: relative;
}

.aboutSec figure .exp {
    display: inline-flex;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #007980;
    /* border-radius: 5px; */
    color: #ffffff;
    font-weight: 600;
    align-items: center;
    padding: 5px 30px;
}

.aboutSec figure .exp h3 span {
    font-size: 4.375rem;
    padding-left: 10px;
    border-right: 2px solid #beb1b1;
    padding-right: 12px;
}

.aboutSec figure .exp h3 {
    letter-spacing: 0.1em;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    font-family: "Roboto", sans-serif;
    gap: 1rem;
    text-shadow: 0px 7px 0px rgb(0 0 0 / 10%);
    color: #fff;
    text-align: left;
}

.ourServices::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    opacity: 0.3;
    background: url(../images/blue-Shape.png) bottom right/auto no-repeat;
}

.servBox {
    height: 230px;
    border-radius: 5px !important;
    border-left: 2px solid #dee9fe;
    transition: background 0.4s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 10px 0px 10px;
    margin-bottom: 2rem;
    padding: 0.75rem;
    display: block;
    width: 100%;
}

.servBox .imgWrap {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

.servBox .imgWrap figure img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.servBox .imgWrap figure img {
    transition: 0.3s ease-in-out;
}

.servBox .imgWrap h3 {
    color: #007980;
    width: fit-content;
    transition: 0.3s ease-in-out;
    font-family: "Roboto", Sans-serif;
    font-size: 1.375rem;
    margin: 0;
    font-weight: 500;
}

.servBox p {
    font-size: 0.9375rem;
}

.servBox:hover {
    background: #b3fbff;
}

/*.servBox:hover p,*/
/*.servBox:hover .imgWrap h3 {*/
/*    color: var(--white);*/
/*}*/

/* Choose Section */
.chooseSec {
    background: #e9e9e9;
}

.chooseSec .heading span {
    width: fit-content;
    margin: 0 auto;
}

.chooseTabs {
    width: 100%;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.chooseTabs .nav-item .nav-link {
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #161617;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid #d7d7d7;
}

.chooseTabs .nav-item .nav-link.active {
    color: #4b83fc;
    border-color: #4b83fc;
}

.offerBox {
    padding: 29px 29px 29px 29px;
    position: relative;
    transition: all 0.3s linear;
    box-shadow: 8px 8px 30px 0 rgb(0 0 0 / 12%);
    border-radius: 5px;
}

.offerBox .iconWrap {
    margin-bottom: 30px;
    width: 4rem;
    height: 4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(75, 131, 252, 0.1);
    color: #00797f;
    font-size: 2rem;
}

.offerBox h3 {
    color: #1b1d21;
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s linear;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

.offerBox p {
    color: #60626d;
    font-family: "Open Sans", Sans-serif;
    font-size: 1rem;
}

.offerBox a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #00797f;
}

.offerBox a i {
    font-size: 1.125rem;
    transition: all 0.3s linear;
}

.offerBox a:hover i {
    margin-right: 0.5rem;
}

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

.offerBox:hover h3,
.offerBox:hover p,
.offerBox:hover a {
    color: var(--white);
}

.offerBox:hover .iconWrap {
    color: #ffffff;
    background: #ffffff1a;
}

/* caseStudySec */
.caseStudySec {
    background: url(../images/linner.jpg) top/auto no-repeat;
    margin: 0 0 3rem;
}

.caseStudySec p,
.caseStudySec .heading span,
.caseStudySec .heading {
    color: var(--white);
}

.caseStudySec .container-fluid {
    padding: 0 3rem;
}

.studyCard {
    text-align: center;
    overflow: hidden;
    transition: all 0.3s linear;
    box-shadow: 8px 8px 30px 0 rgb(0 0 0 / 12%);
    border-radius: 5px;
    margin-bottom: 4rem;
    background: #fff;
}

.studyCard .content {
    padding: 30px;
    text-align: center;
}

.studyCard .content h3 {
    color: #1b1d21;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    text-transform: capitalize;
}

.studyCard a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #00797f;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.studyCard a i {
    font-size: 1.5rem;
}

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

.swiper-teams,
.swiper-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.swiper-teams .swiper-pagination-bullet,
.swiper-bullets .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    display: inline-block;
    margin: 0 1rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: #9d9ea2;
}

.swiper-teams .swiper-pagination-bullet-active::before,
.swiper-bullets .swiper-pagination-bullet-active::before {
    content: "";
    border: 1px solid rgba(157, 158, 162, 0.5);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: absolute;
    left: -0.75rem;
    top: -0.75rem;
    transition: all 0.3s linear;
}

.swiper-teams .swiper-pagination-bullet-active,
.swiper-bullets .swiper-pagination-bullet-active {
    background: var(--primary);
    position: relative;
}

/* Team Section */
.teamSection {
    padding-top: 0;
}

.teamSection .heading {
    margin-bottom: 0;
}

.teamSection .heading span {
    width: fit-content;
    margin: 0 auto;
}

.teamCard {
    position: relative;
}

.team-info {
    text-align: center;
    position: absolute;
    bottom: 0;
    background: var(--white);
    padding: 28px 30px;
    transition: all 0.3s linear;
    position: absolute;
    left: 50%;
    width: calc(100% - 40px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 6px 6px 13px 0 rgb(0 0 0 / 15%);
}

.team-info h3 {
    margin-bottom: 5px;
    font-weight: 600;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    color: #1b1d21;
    font-size: 1.5rem;
}

.team-info p {
    color: #00797f;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.team-info ul.socialIo {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.team-info ul.socialIo li a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #1b1d21;
    border: 1px solid rgba(11, 11, 11, 0.2);
    border-radius: 50%;
}

.team-info ul.socialIo li a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.teamCard:hover .team-info {
    opacity: 1;
    bottom: 1rem;
    visibility: visible;
}

.swiper-teams {
    margin-top: 3rem;
}

/* reviewSection */
.reviewSection {
    padding-top: 0;
}

.reviewSection::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    opacity: 0.2;
    background: url(../images/blue-Shape2.png) left top/auto no-repeat;
}

.reviewCard {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 8px 8px 30px 0 rgb(0 0 0 / 12%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviewCard P {
    padding: 33px 39px;
    font-size: 1.125rem;
    color: #5f5f5f;
    line-height: 36px;
    margin-bottom: 0;
}

.reviewCard .userInfo {
    padding: 33px 39px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.reviewCard .userInfo figure {
    width: 90px;
    position: relative;
    border-radius: 50%;
    height: 90px;
}

.reviewCard .userInfo figure::after {
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    background: var(--secondary);
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.reviewCard .userInfo h3 {
    width: 60%;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1b1d21;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

/* pricingSec */
.pricingSec {
    background: #f7f7f7;
}

.pricingSec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    opacity: 0.2;
    background: url(../images/software-shape.png) left top/auto no-repeat;
}

.pricingSec .heading span {
    width: fit-content;
    margin: 0 auto;
    line-height: initial;
}

.priceCard {
    padding: 5rem 1.5rem;
    background: #f8faff;
    transition: 0.15s ease-in-out;
    margin-right: 15px;
    box-shadow: 0 10px 35px rgb(38 42 76 / 10%);
}

.priceCard.lighblue {
    background: #edf6ff;
}

.priceCard img {
    height: 62px;
    width: 62px;
    object-fit: contain;
}

.priceCard h3 {
    color: #1a1a1b;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 20px;
}

.priceCard p {
    font-size: 2.25rem;
    font-weight: 500;
    color: #0554f2;
}

.priceCard ul li {
    font-size: 1rem;
    display: flex;
    color: #1a1b1e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.priceCard ul li i {
    color: #0554f2;
    margin-right: 1rem;
}

.priceCard .themeBtn {
    background: transparent;
    color: var(--primary);
    padding: 1.25em 2em;
    margin-top: 1rem;
}

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

.priceCard:hover {
    background: var(--primary);
    transform: translateY(-1.5rem);
}

.priceCard:hover p,
.priceCard:hover ul li,
.priceCard:hover ul li i,
.priceCard:hover h3 {
    color: var(--white);
}

.priceCard:hover .themeBtn {
    border-color: var(--white);
    color: var(--white);
}

/* contactSec */
.contactSec {
    background: #f6f9ff;
}

.contactSec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    opacity: 0.27;
}

.contactInfo {
    padding: 4rem 20px;
    border-radius: 10px;
    background: url(../images/contact.jpg);
}

.listWrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.listWrap figure img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.listWrap figure.email {
    background: var(--white);
    border-radius: 50%;
}

.listWrap figure.email img {
    filter: none;
}

.listWrap h3 {
    width: 80%;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    pointer-events: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.listWrap h3 span {
    display: block;
    color: var(--white);
    font-family: "Roboto", Sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
}

.contactInfo .themeBtn {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
    width: 100%;
    justify-content: center;
    border-radius: 6px;
    text-align: center;
}

.contactSec .form-group .form-control {
    color: #666666;
    border: 1px solid #dbdbdb;
    padding: 11px 24px;
    height: 3.75rem;
    background: transparent;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    border-radius: 3px;
}

.contactSec form .themeBtn {
    display: block;
    width: 100%;
    background: var(--secondary);
    text-align: center;
}

.contactSec form .themeBtn:hover {
    background: var(--white);
}

footer {
    position: relative;
    padding-top: 6rem;
    background: #00797f;
    z-index: 1;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: -1;
    background-image: url(../images/line.png);
    opacity: 0.8;
}

footer .footerlogo {
    max-width: 200px;
}

footer p.footerDesc {
    color: #c0c1c2;
    line-height: 2;
    margin-top: 1rem;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

footer h3 {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.75rem;
}

footer .links li a {
    font-size: 1rem;
    color: #c0c1c2;
    text-transform: none;
    font-weight: 400;
    display: inline-block;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

footer .socialList {
    justify-content: start;
}

footer .socialList li a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    background-color: #24262f;
    color: var(--white);
    border-radius: 50%;
}

footer .socialList li a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.footerInfo li a {
    display: inline-flex;
    align-items: flex-start;
    gap: 1rem;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.footerInfo li a p {
    color: var(--white);
    color: #ffffff;
    font-family: "Inter", Sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.footerInfo li a i {
    font-size: 1.5rem;
    color: var(--secondary);
    display: none;
}

.footerInfo li a span {
    color: #c0c1c2;
    display: block;
    margin-bottom: 0rem;
    font-size: 1rem;
    font-weight: 400;
}

.copyRight {
    background: var(--black);
    text-align: center;
    padding-top: 0.5rem;
    margin-top: 6rem;
    align-items: center;
}

.copyRight .container {
    border-top: 1px solid rgb(202 202 202/30%);
    padding: 1.5rem 0;
    margin-top: 0.5rem;
}

.copyRight p {
    text-align: center;
    color: #929399;
    font-weight: 400;
    margin: 0;
    font-size: 0.9375rem;
    /*font-family: "Barlow", Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

.roleback {
    display: inline-grid;
    place-items: center;
    background: #4b83fc;
    border: 1px solid #4b83fc;
    color: var(--white);
    width: 46px;
    height: 46px;
    position: absolute;
    right: 5rem;
    bottom: 2rem;
    font-size: 1.25rem;
    border-radius: 6px;
}

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

/*Inner Pages Start*/
/*About Us Page CSS Start*/
.banner {
    position: relative;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .overlay h2 {
    font-size: 2.75rem;
    font-weight: 600;
    font-family: "Silk Serif";
    color: var(--white);
    text-align: left;
    margin: 0;
}

.secHeading {
    font-size: 2.75rem;
    font-weight: 600;
    font-family: "Silk Serif";
}

.aboutIner .row {
    margin-block: 5rem;
}

.aboutIner p {
    color: #999999;
}

.countSec {
    background-image: url('../images/countBg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.countSec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000008a;
}

.countBox h2 {
    font-size: 4.3125rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.countBox h2 span {
    font-size: 1.4rem;
    display: block;
}

.aboutIner h6 {
    color: #00797f;
    font-size: 0.8rem;
    background: #ebebeb;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #00797f;
}

/*About Us Page CSS End*/
/*Testimonials Page CSS STart*/
.reviewsIner {
    padding: 8rem 0;
}

/*Testimonials Page CSS End*/
/*Services Page CSS Start*/
.serviceSec h4 {
    font-size: 2.625rem;
    font-weight: 500;
    text-transform: capitalize;
}

.serviceSec p {
    color: #6f6f6f;
    line-height: 2;
}

.service-two {
    background: #e9e9e9;
}

/*Services Page CSS End*/
/*Inner Pages End*/

.aboutIner ul li span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.aboutIner ul {
    margin-top: 5rem;
}

.aboutIner ul li hr {
    height: 5px;
    border: none;
    background: #efefef;
    border-radius: 10px;
    position: relative;
    margin: 1rem 0 0;
}

.aboutIner ul li {
    position: relative;
}

.aboutIner ul li + li {
    margin-top: 1rem;
}

.aboutIner ul li hr:before {
    content: '';
    position: absolute;
    left: 0;
    height: 5px;
    background: #00797f;
    border-radius: 10px;
}

.aboutIner ul li:nth-child(1) hr:before {
    width: 60%;
}

.aboutIner ul li:nth-child(2) hr:before {
    width: 76%;
}

.aboutIner ul li:nth-child(3) hr:before {
    width: 45%;
}

.aboutIner ul li .percentBox {
    position: absolute;
    background: #00797f;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -15px;
    color: #fff;
}

.aboutIner ul li:nth-child(1) .percentBox {
    left: 60%;
    transform: translateX(-60%);
}

.aboutIner ul li:nth-child(2) .percentBox {
    left: 76%;
    transform: translateX(-76%);
}

.aboutIner ul li:nth-child(3) .percentBox {
    left: 45%;
    transform: translateX(-45%);
}

.aboutIner ul li .percentBox:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00797f;
    bottom: -10px;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1111111;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader video {
    width: 100%;
    height: 100%;
    display: flex;
    background: #00797f;
    object-fit: contain;
}

.scroll-down {
    top: -450px;
}

.studyCard .content p {
    color: #000;
}

.scroll-up {
    top: 0;
}

.priceBox h2 {
    font-size: 3.125rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.priceSec .row {
    gap: 3rem 0;
}

.priceBox {
    box-shadow: 0px 0px 12px 0px #0000001f;
    padding: 2rem 1rem;
    border-radius: 20px;
}

.priceBox h2 img {
    padding-right: 2rem;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.priceBox ul {
    padding-right: 2rem;
}


.priceBox ul li p {
    font-size: 1rem;
    margin: 0.25rem;
}

.priceBox ul li span {
    font-size: 1.2rem;
    color: #4085F4;
    font-weight: 500;
}

.serviceSec h5 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-two ul {
    list-style-type: disc;
    list-style-position: inside;
    line-height: 2.3;
    color: #6f6f6f;
    margin: 2rem 0;
}

.teamCard img {
    height: 600px;
    object-fit: cover;
}

.priceBox ul li p {
    margin: 0;
}

.priceBox ul li {
    line-height: 2;
}

.priceBox h3 {
    font-size: 1.325rem;
    text-align: center;
    margin: 1rem 0;
}

.grenBox ul li span {
    color: #178500;
}

.redBox ul li span {
    color: #D20C19;
}

.blueBox ul li span {
    color: #00009C;
}

.box-height {
}

.box-height-2 {
    min-height: 490px;
}

.priceHome .priceBox {
    /* margin: 1rem; */
}

.priceHome .row:last-of-type {
    gap: 2rem 0;
}

.priceHome .container > .row:last-of-type > [class*='col-'],
.priceSec .container > .row > [class*='col-'] {
    display: flex;
}

.priceHome .row:last-of-type [class*='col-'] .priceBox,
.priceSec .container > .row > [class*='col-'] .priceBox {
    height: 100%;
    width: 100%;
}

.priceHome .row:last-of-type [class*='col-']:nth-child(1) .priceBox i.fas,
.priceSec .row:last-of-type [class*='col-']:nth-child(1) .priceBox i.fas {
    color: #11f3ff;
}

.priceHome .row:last-of-type [class*='col-']:nth-child(2) .priceBox i.fas,
.priceSec .row:last-of-type [class*='col-']:nth-child(2) .priceBox i.fas {
    color: #11E4F3;
}

.priceHome .row:last-of-type [class*='col-']:nth-child(3) .priceBox i.fas,
.priceSec .row:last-of-type [class*='col-']:nth-child(3) .priceBox i.fas {
    color: #10D8E6;
}

.priceHome .row:last-of-type [class*='col-']:nth-child(4) .priceBox i.fas,
.priceSec .row:last-of-type [class*='col-']:nth-child(4) .priceBox i.fas {
    color: #0EC0CD;
}

.partnerSec h4 {
    font-size: 5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.priceHead {
    box-shadow: 0px 0px 12px 0px #0000001f;
    padding: 2rem 1rem;
    border-radius: 20px;
}

.priceSilver ul li p {
    font-size: 1.4rem;
}

.partnerSec ul li {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.8;
}


.partnerSec ul li a {
    font-weight: 500;
    color: #000;
    padding-left: 1rem;
}

.partnerSec h5 {
    font-size: 3rem;
    text-transform: uppercase;
}

.siteColr {
    color: #007980 !important;
}

.mapSec iframe {
    filter: grayscale(1);
}

.mapSec iframe:hover {
    filter: brightness(1);
}

.chooseSec [class*='col-'],
.reviewSection [class*='col-'] {
    display: flex;
    justify-content: center;
}

.banner img {
    height: 450px;
    object-fit: cover;
}
