@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --primaryFont: "Plus Jakarta Sans", sans-serif;
  --secondaryfont: "Inter", sans-serif;
  --white: #ffffff;
  --black: #1F1F1F;
  --primaryColor: #00F1FF;
  --secondaryColor: #00555A;


}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--secondaryfont);
}

/* body {
  overflow-x: hidden;
} */

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  font-family: var(--bodyFont);
}

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

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
  font-weight: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 100px;
}

.fadeup {
  opacity: 0;
  transform: translateY(20px);
}

.faderight {
  opacity: 0;
  transform: translateX(20px);
}

/* ===================== common css start ====================== */

/* =====================header start============================ */
.headerarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.4s all ease-in-out;
}

.topbar {
  background: var(--primaryColor);
  padding: 15px 0px;
  max-height: 100px;
  overflow: hidden;
  transition: 0.5s;
}

/* .stickyheader .topbar {
  padding: 0;
  max-height: 0;
  transition: 0.5s;
} */
.topWrapper {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

a.quickLinks {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.socialBar {
  display: flex;
  gap: 15px;
  align-items: center;
}

.socialBar a {
  color: var(--black);
  font-size: 16px;
  display: inline-block;
  line-height: 1;
}

.socialBar li {
  line-height: 1;
}

.navouter {}

.navInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s all ease-in-out;
}

.navWrapper {
  display: flex;
  align-items: center;
  gap: 66px;
}

.navWrapper ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.navWrapper ul li a {
  color: var(--white);
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

.navWrapper ul li a:hover {
  color: var(--primaryColor);
  transition: 0.5s;
}

a.brandLogo {
  position: relative;
  transition: 0.4s all ease-in-out;
}

a.brandLogo img {
  width: 269px;
  /* initial size */
  transition: 0.4s all ease-in-out;
}

/* .stickyheader a.brandLogo img {
    bottom: -81px;
    transition: 0.5s;
} */
.bookBtn {
  background: #111827CC;
  border: 1px solid var(--primaryColor);
  color: var(--white) !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 11px 19px;
  transition: 0.5s;
}

.bookBtn:hover {
  background: var(--primaryColor);
  transition: 0.5s;
}

.headMail {
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  color: var(--white);
  transition: 0.5s;
}

.headMail:hover {
  color: var(--primaryColor);
  transition: 0.5s;
}

.headMail i {
  color: var(--primaryColor);
  margin-right: 10px;
}

.closeBtn,
.mobBtn,
.navBg {
  display: none;
}

.headerarea .container-fluid {
  padding: 0 200px;
}

/* ===========header close============ */
/* ===========banner start============ */
.bannerItem {
  position: relative;
}

.bannerItem::after {
  width: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 24%;
}

.bannerOverley {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.bannerOverley h1 {
  font-family: var(--secondaryfont);
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}

.bannerOverley h2 {
  font-family: var(--secondaryfont);
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}

.bannerOverley p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}

.bannerOverley h6 {
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  margin-top: 40px;
}

.primaryBtn {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor) !important;
  border-radius: 44px;
  color: #000;
  padding: 9px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  transition: 0.5s;
}

.primaryBtn:hover,
.secondaryBtn {
  color: #fff;
  background: transparent;
  transition: 0.5s;
}

.secondaryBtn:hover {
  background: var(--primaryColor);
  color: #000;
  transition: 0.5s;
}

.btnWrapper {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin-top: 50px;
  gap: 8px;
}

.heroBanner .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
  transition: 0.5s;
}

.heroBanner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primaryColor);
  transition: 0.5s;
  transform: scale(1.4);
}

.heroBanner .swiper-pagination {
  bottom: 40px;
}

/* =======hero banner close==== */

/* =======justice sec start==== */
section.justicesec {
  padding: 140px 0 120px;
}

.justiceimgWrapper,
.jusriceContent {
  padding: 0 20px;
  position: relative;
}

.jusriceContent::before {
  content: "";
  background: #E6EEEF;
  height: 100%;
  width: 1px;
  top: 0;
  left: -10px;
  position: absolute;
}

.justiceTitle {
  text-align: right;
}

.justiceTitle h6 {
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0%;
  color: var(--white);
  display: inline-block;
  background: var(--secondaryColor);
  padding: 5px 20px;
}

.justiceTitle h2 {
  font-weight: 500;
  font-size: 85px;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  color: var(--secondaryColor);
  margin-bottom: 40px;
}

.jusriceContent p em {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 50px;
  display: block;
}

.jusriceContent ul {
  display: inline-grid;
  gap: 15px;
}

.jusriceContent ul li {
  display: flex;
  gap: 30px;
  align-items: center;
}

.jIcon {
  width: 95px;
  aspect-ratio: 1;
  background: #E6EEEF;
  border-radius: 20px;
  display: inline-grid;
  place-content: center;
}

.jContent h6 {
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0%;
  color: var(--secondaryColor);
  margin-bottom: 15px;
}

.jContent p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.jImgInner {
  max-width: 500px;
  margin-left: auto;
}

/* =======justice sec close==== */
.next_sec {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.next_sec h2 {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #1F1F1F;
  font-family: var(--primaryFont);
}

.next_sec p {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #1F1F1F;
  font-style: italic;
  font-family: var(--secondaryfont);
  padding-top: 18px;
  padding-bottom: 40px;
}

.next_crd {
  transition: 0.4s all ease-in-out;
}

.next_crd:hover {
  transform: translateY(-5px);
}

.next_crd img {
  width: 100%;
}

.next_crd h5 {
  font-size: 25px;
  color: #00555A;
  font-weight: 600;
  font-family: var(--secondaryfont);
  padding-top: 30px;
  position: relative;
  padding-left: 20px;
}

.next_crd h5::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #00F1FF;
  left: 5px;
  top: 50%;
  transform: translate(-50%, 100%);
}

.next_crd p {
  font-size: 15px;
  font-weight: 400;
  color: #1F1F1F;
  padding-top: 20px;
  font-family: var(--secondaryfont);
  font-style: normal;
  text-align: left;
  line-height: 20px;
  padding-left: 22px;
  padding-bottom: 0;
}

.context_sec {
  background: url('../images/Context-Aware-AI.webp')no-repeat;
  background-size: cover;
  padding: 120px 0 140px;
  background-position: right;
}

.context_sec h2 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  font-family: var(--primaryFont);
}

.context_sec p {
  font-size: 18px;
  font-weight: 300;
  color: #DFE9EA;
  font-family: var(--secondaryfont);
  font-style: italic;
  line-height: 30px;
  padding-top: 18px;
  width: 570px;
  padding-bottom: 49px;
  transition: 0.4s all ease-in-out;
}

.context_sec p span {
  font-weight: 600;
}


.context_card {
  border-radius: 20px;
  background: #0000004D;
  backdrop-filter: blur(30px);
  padding: 85px 25px;
  text-align: center;
  overflow: hidden;
  height: 270px;
  width: 287px;
  transition: 0.4s all ease-in-out;
}

.context_card img {
  transition: 0.4s all ease-in-out;
}

.context_card:hover h6 {
  margin-top: 0;
}

.context_card:hover p {
  margin-top: -35px;
}

.context_card:hover img {
  margin-top: -260px;
}

.context_card p {
  padding-bottom: 0px;
  width: auto;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-style: normal;
  transition: 0.4s all ease-in-out;
}

.context_card h6 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: var(--secondaryfont);
  line-height: 20px;
  padding-top: 20px;
  margin-top: 60px;
  transition: .4s all ease-in-out;
}

.self_sec {
  background: url('../images/self-bg.png')no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 0px;
}

.self_sec h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1F1F1F;
  font-family: var(--primaryFont);
  text-align: center;
}

.self_sec p {
  text-align: center;
  font-size: 18px;
  padding-top: 18px;
  font-weight: 300;
  color: #1F1F1F;
  font-style: italic;
  font-family: var(--secondaryfont);
  padding-bottom: 37px;
}

.self_sec .left {
  font-size: 25px;
  font-weight: 600;
  color: #00555A;
  font-family: var(--secondaryfont);
  text-align: right;
}

.self_sec .left-para {
  font-size: 16px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--secondaryfont);
  text-align: right;
  padding-top: 20px;
  font-style: normal;
  line-height: 22px;
  padding-bottom: 0;
}



.self_sec .right {
  font-size: 25px;
  font-weight: 600;
  color: #00555A;
  font-family: var(--secondaryfont);
  text-align: left;
}

.self_sec .right-para {
  font-size: 16px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--secondaryfont);
  text-align: left;
  padding-top: 20px;
  font-style: normal;
  line-height: 22px;
  padding-bottom: 0;
}

.self_sec img {
  margin-bottom: -50px;
}

.system_sec {
  background: url('../images/system-bg.png')no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 130px;
  background-position: center;
}

.system_sec h3 {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-family: var(--primaryFont);
}

.system_sec p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  font-style: italic;
  font-family: var(--secondaryfont);
  text-align: center;
  line-height: 30px;
  padding-top: 18px;
  width: 770px;
  margin: 0 auto;
}

.system_sec h2 {
  font-size: 55px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-family: var(--secondaryfont);
  padding-top: 50px;
}

.system_sec h6 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: var(--secondaryfont);
  width: 568px;
  margin: 0 auto;
  padding-top: 10px;
  line-height: 38px;
  text-align: center;
}

.solve_sec {
  padding-top: 120px;
  padding-bottom: 100px;
}

.solve_sec h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1F1F1F;
  text-align: center;
  font-family: var(--primaryFont);
}

.solve_sec p {
  font-size: 18px;
  font-weight: 300;
  font-family: var(--secondaryfont);
  text-align: center;
  padding-top: 18px;
  width: 680px;
  margin: 0 auto;
  color: #1F1F1F;
  line-height: 30px;
  font-style: italic;
}

.solve_tablets .tblet {
  width: 100%;
  transition: 0.4s all ease-in-out;
}

.solve_tablets .tblet.first:hover {
  background-color: #000;
}

.solve_tablets .tblet.scnd:hover {
  background-color: #000;
}

.solve_tablets .tblet.third:hover {
  background-color: #000;
}

.solve_tablets {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.solve_tablets .tblet.first {
  background-color: #006C72;
  padding: 15px 45px;
  border-radius: 90px;
  display: flex;
  width: fit-content;
  gap: 15px;
}

.solve_tablets .tblet p {
  width: auto;
  padding-top: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: var(--secondaryfont);
  font-style: normal;
  margin: auto;
  text-align: center;
}

.solve_tablets .tblet img {
  min-width: 30px;
  height: 30px;
}

.solve_tablets .tblet.scnd {
  background-color: #00AEB8;
  padding: 15px 25px;
  border-radius: 90px;
  display: flex;
  width: fit-content;
  gap: 15px;
}

.solve_tablets .tblet.third {
  background-color: #6DAFB3;
  padding: 15px 72px;
  border-radius: 90px;
  display: flex;
  width: fit-content;
  gap: 15px;
}

.ai_cards .card {
  background-color: #F9F9F9;
  border-radius: 20px;
  padding: 30px;
  width: auto;
  border: none;
  transition: 0.4s all ease-in-out;
}

.ai_cards .card:hover {
  background-color: #e1e1e1;
  transform: translateY(-5px);
}

.ai_cards .card p {
  width: auto;
}

.ai_cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 30px;
}

.ai_cards h4 {
  font-size: 25px;
  font-weight: 600;
  color: #00555A;
  font-family: var(--secondaryfont);
}

.ai_cards p {
  font-size: 16px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--secondaryfont);
  padding-top: 20px;
  font-style: normal;
  line-height: 22px;
  text-align: left;
}

.anchore_sec {
  background: url('../images/anchor-bg.png')no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.anchore_sec h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1F1F1F;
  text-align: center;
  padding-top: 11px;
  font-family: var(--primaryFont);
}

.anchore_sec p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  width: 770px;
  margin: 0 auto;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  padding-top: 18px;
  text-align: center;
  font-style: italic;
}

.anchore_sec p span {
  font-weight: 600;
}

.anchore_tab {
  justify-content: center;
  border-bottom: none;
  gap: 10px;
  margin-top: 40px;
}

.anchore_tab li .nav-link {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #00555A !important;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondaryfont);
  /* background: transparent; */
  color: #00555A !important;
}

.anchore_tab li .nav-link.active {
  background-color: #00555a !important;
  color: #fff !important;
}

.ancr_logo {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.ancr_logo li img {
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  height: 80px;
  width: 149px;
  object-fit: contain;
  box-shadow: 0px 0px 30px 0px #00555A1A;
}

.anchore_inner {
  position: relative;
  padding-bottom: 120px;
}

.anchore_inner::before {
  position: absolute;
  content: "";
  background: url('../images/eclepse.png')no-repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-position: bottom;
  background-size: contain;
  z-index: -1;
}

.anchore_inner figure {
  padding-top: 70px;
}

.lead_sec {
  background-color: #E6EEEF;
  padding: 100px 0 0px;
  overflow-x: hidden;
}

.lead_sec h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1F1F1F;
  text-align: center;
  font-family: var(--primaryFont);
}

.lead_sec p {
  font-size: 18px;
  text-align: center;
  color: #1F1F1F;
  font-family: var(--secondaryfont);
  padding-top: 25px;
  font-style: italic;
  font-weight: 300;
}

.lead_sec p span {
  font-weight: 600;
}

.lead_sec h6 {
  font-size: 16px;
  font-weight: 400;
  padding-top: 30px;
  line-height: 25px;
  color: #1F1F1F;
  font-family: var(--secondaryfont);
  text-align: center;
}

.lead_sec .lead_btns {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 120px;
}

.lead_sec .lead_btns .first {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  border-radius: 50px;
  background-color: #00F1FF;
  padding: 10px 20px;
  transition: 0.4s all ease-in-out;
  border: 1px solid #00F1FF;
}

.lead_sec .lead_btns .first:hover {
  background-color: transparent;
  border: 1px solid #1F1F1F;
}

.lead_sec .lead_btns .second {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  border-radius: 50px;
  border: 1px solid #1F1F1F;
  padding: 10px 20px;
  transition: 0.4s all ease-in-out;
}

.lead_sec .lead_btns .second:hover {
  background-color: #00F1FF;
  border: 1px solid #00F1FF;
}

.site_footer {
  background: #E6EEEF url('../images/ftr-bg.png') no-repeat;
  background-size: cover;
  margin: 0 23px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 120px 0px 0px;
  overflow-x: hidden;
}

.site_footer .address {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 22px;
}

.site_footer .address h6 {
  text-align: left;
  color: #fff;
  padding-top: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondaryfont);
  line-height: 27px;
}

.site_footer .address a {
  text-align: left;
  color: #fff;
  padding-top: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--secondaryfont);
  line-height: 27px;
}

.site_footer h3 {
  font-size: 30px;
  font-weight: 600;
  color: #00F1FF;
  font-family: var(--secondaryfont);
}

.site_footer p {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondaryfont);
  text-align: left;
  color: #E6EEEF;
  padding-top: 22px;
  padding-bottom: 35px;
  font-style: normal;
}

.site_footer h4 {
  font-size: 25px;
  font-weight: 600;
  color: #E6EEEF;
  font-family: var(--secondaryfont);
  padding-bottom: 28px;
}

.site_footer ul li {
  padding-bottom: 10px;
}

.site_footer ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: var(--secondaryfont);
  transition: 0.4s all ease-in-out;
}

.site_footer ul li a:hover {
  color: #00F1FF;
}

.site_footer h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: var(--secondaryfont);
  font-weight: 400;
  line-height: 27px;
}

.site_footer h5 span {
  font-weight: 600;
}

.ftr_btm {
  border-top: 1px solid #FFFFFF33;
  margin-top: 90px;
  padding: 33px 0;
  display: flex;
  justify-content: space-between;
}

.ftr_btm h5 {
  font-size: 14px;
  font-weight: 400;
  color: #E6EEEF;
  line-height: normal;
}

.ftr_btm p {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #E6EEEF;
  line-height: normal;
  padding: 0;
}

.ftr_btm p a {
  font-weight: 700;
  color: #00F1FF;
}

.floating {
  position: fixed;
  right: 30px;
  top: 30%;
  z-index: 11;
}

.floating ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.floating ul li a img {
  transition: 0.4s all ease-in-out;
}

.floating ul li a img:hover {
  transform: rotate(360deg);
}


.inner_bnr figure {
  position: relative;
}

.inner_bnr figure img {
  width: 100%;
}

.inner_bnr figure .inr_bnr_text {
  position: absolute;
  top: 50%;
}

.inner_bnr figure .inr_bnr_text h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  font-family: var(--primaryFont);
}

.what_sec {
  padding: 120px 0;
  overflow-x: hidden;
}

.what_sec .what_left {
  display: flex;
  gap: 20px;
}

.what_sec .what_left .frst .aqua {
  height: 18.7px;
  width: 100%;
  background-color: #00F1FF;
  margin-top: 4.67px;
}

.what_sec .what_left .frst .light {
  height: 18.7px;
  width: 100%;
  background-color: #CBFCFF;
  margin-top: 4.67px;
}

.what_sec .what_left .scnd .aqua {
  height: 18.7px;
  width: 100%;
  background-color: #00F1FF;
  margin-bottom: 4.67px;
}

.what_sec .what_left .scnd .light {
  height: 18.7px;
  width: 100%;
  background-color: #CBFCFF;
  margin-bottom: 4.67px;
}


.what_sec .what_right h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1F1F1F;
  font-family: var(--primaryFont);
}

.what_sec .what_right h2 span {
  color: #00555A;
}

.what_sec .what_right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  padding-top: 30px;
}

.what_sec .what_right p span {
  font-weight: 700;
}

.msn_vsn_sec {
  padding: 314px 0 0;
  background-color: #F9F9F9;
  position: relative;
  margin-top: -224px;
}

.msn_sec .msn_vsn {
  background: url('../images/Mission-Vision.webp')no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  padding: 40px;
  margin-bottom: 0px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.msn_vsn_blk {
  display: flex;
  gap: 28px;

}

.msn_vsn_blk figure {
  background-color: #00F1FF;
  height: 70px;
  width: 70px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.msn_vsn_blk .txt {
  width: 432px;
}

.msn_vsn_blk .txt h4 {
  font-size: 40px;
  font-weight: 600;
  color: #FFFFFF;
  font-family: var(--primaryFont);
}

.msn_vsn_blk .txt p {
  color: #BBBBBB;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: var(--secondaryfont);
  padding-top: 30px;
}

.msn_vsn_blk.scnd {
  padding-top: 45px;
}

.team_sec {
  padding: 120px 0;
}

.team_sec h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: var(--primaryFont);
  text-align: center;
  padding: 8px 25px;
  background-color: #00555A;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 0px;
}

.team_sec h5 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--secondaryfont);
  color: #00555A;
  padding-top: 18px;
}

.team_sec p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  padding-top: 13px;
  padding-bottom: 10px;
}

.team_sec .gradient_line {
  height: 2px;
  width: 170px;
  background: linear-gradient(90deg, #00F1FF 0%, #FFFFFF 100%);
}

.team_sec .scnd {
  margin-top: 80px;
}

.prgrm_sec {
  padding: 120px 0;
}

.prgrm_sec h2 {
  color: #1F1F1F;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--bodyFont);
  text-align: center;
}

.prg_card {
  padding-top: 50px;
}

.prgrm_sec h2 span {
  color: #00555A;
}

.prgrm_sec .prg_bx {
  box-shadow: 3px 0px 30px 0px #0000000D;
  padding: 30px;
  height: 100%;
}

.prgrm_sec .prg_bx h3 {
  font-size: 25px;
  font-weight: 600;
  color: #00555A;
  font-family: var(--primaryFont);
}

.prgrm_sec .prg_bx h6 {
  font-size: 16px;
  font-weight: 400;
  color: #1F1F1F;
  padding: 15px 0;
  font-family: var(--bodyFont);
}

.prgrm_sec .prg_bx ul {
  padding-left: 16px;
}

.prgrm_sec .prg_bx ul li {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #1F1F1F;
  line-height: 24px;
  position: relative;
  padding-bottom: 15px;
}

.prgrm_sec .prg_bx ul li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #1F1F1F;
  border-radius: 50%;
  left: -14px;
  top: 8px;
}

.prgrm_sec .prg_bx ul li span {
  font-weight: 600;
}

.prgrm_sec .prg_bx ul li:last-child {
  padding-bottom: 0;
}

.team_sec img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.team_sec h6 {
  font-size: 14px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--bodyFont);
  padding-bottom: 15px;
  height: 78px;
}

.team_sec a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryfont);
  color: #1F1F1F;
  border-radius: 50px;
  background-color: #00F1FF;
  padding: 5px 15px;
  transition: 0.4s all ease-in-out;
  border: 1px solid #00F1FF;
  margin-top: 15px;
}

.team_sec a:hover {
  background-color: transparent;
  border: 1px solid #1F1F1F;
}


.modal-header h1 {
  font-size: 20px;
  font-weight: 500;
  color: #00555A;
  font-family: var(--primaryFont);
}

.modal-header button {
  opacity: 1;
  border: 1px solid #ff0000;
  border-radius: 50%;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");

}

.msn_sec {
  padding-bottom: 120px;
}

.mentor h6 {
  padding-top: 13px;
}

.contact_sec {
  padding: 120px 0;
  overflow-x: hidden;
}

.cntct_address {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
}

.cntct_address figure {
  background-color: #E6EEEF;
  border-radius: 20px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cntct_address h5 {
  font-size: 20px;
  color: #00555A;
  font-family: var(--bodyFont);
  font-weight: 600;
}

.cntct_address p {
  color: #1F1F1F;
  font-size: 16px;
  padding-top: 15px;
  line-height: 23px;
  font-family: var(--bodyFont);
}

.cntct_address a {
  color: #1F1F1F;
  font-size: 16px;
  padding-top: 15px;
  line-height: 23px;
  font-family: var(--bodyFont);
}

.contact_sec h2 {
  font-size: 40px;
  color: #1F1F1F;
  font-family: var(--primaryFont);
  padding-bottom: 40px;
  font-weight: 600;
  line-height: 55px;
}

.contact_right {
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  border-top: none;
}

.contact_right .nav-link.active {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  font-family: var(--bodyFont);
  background-color: #00555A;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  text-align: center;
}

.contact_right .nav-link {
  font-size: 16px;
  color: #1F1F1F;
  font-weight: 600;
  font-family: var(--bodyFont);
  background-color: #E8E8E8;
  border-top-right-radius: 0px;
  text-align: center;
  width: 100%;
}

.contact_right ul {
  width: 100%;
  border-radius: 0;
}

.contact_right ul li {
  width: 50%;
}

.contact_right form {
  padding: 30px;
}

.contact_right form input {
  width: 100%;
  border: none;
  background-color: #F9F9F9;
  border-radius: 5px;
  padding: 10px 20px !important;
  font-size: 15px;
  color: #1F1F1F;
  font-family: var(--bodyFont);
  font-weight: 500;
}

.contact_right form input::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--bodyFont);
}

.contact_right form textarea {
  width: 100%;
  border: none;
  background-color: #F9F9F9;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  color: #1F1F1F;
  font-family: var(--bodyFont);
  font-weight: 500;
}

.contact_right form textarea::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #1F1F1F;
  font-family: var(--bodyFont);
}

.upload-box {
  border: 1px dashed #D2D2D2;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  background: #fafafa;
  position: relative;
}

/* .file-row p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
} */

.file-row p br {
  display: none;
}

.upload-btn {
  background: #E8E8E8;
  padding: 7px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #1F1F1F;
  min-width: 98px;
}

.upload-btn:hover {
  background: #e6e6e6;
}

.file-name {
  color: #7D7D7D;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.note {
  margin-top: 14px;
  font-size: 13px;
  color: #1F1F1F;
  font-family: var(--bodyFont);
}

input[type="file"] {
  display: none;
}

.remove-btn {
  display: none;
  cursor: pointer;
  font-size: 10px;
  color: red;
  font-weight: bold;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #dbdbdb;
  padding: 3px 5px;
  border-radius: 4px;
}

.remove-btn img {
  filter: invert(0) brightness(0);
  height: 10px !important;
  width: 10px !important;
}

.remove-btn:hover {
  color: darkred;
}

.contact_right form .upload {
  font-size: 15px;
  font-weight: 500;
  color: #1F1F1F;
  font-family: var(--bodyFont);
  padding-bottom: 10px;
}

.contact_right form .wpcf7-submit {
  width: fit-content;
  background-color: #00F1FF;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  font-family: var(--bodyFont);
  border: none;
  transition: 0.4s all ease-in-out;
  border: 1px solid #00F1FF;
}

.contact_right form .wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #1F1F1F;
}

.contact_right form .wpcf7-spinner {
  position: absolute;
  top: 88%;
}

.contact_right form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  font-weight: normal;
  display: block;
  padding-top: 3px;
}

.contact_right form .row {
  margin-bottom: 0 !important;
}

.contact_right form .wpcf7-response-output {
  margin: 1em 0em 0em !important;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  font-size: 13px;
  text-align: center;
}

.site_footer .address span {
  color: #fff;
}

.navWrapper ul li.current-menu-item a {
  color: #00F1FF;
}

.modal-body p {
  padding-top: 0;
}


/* .headerarea.scrolled {
  position: sticky;
  background-color: #000;
} */


.headerarea.scrolled {
  position: fixed;
  background-color: #000000d9;
  transition: 0.4s all ease-in-out;
  backdrop-filter: blur(5px);
}

.headerarea.scrolled .navInner a img {
  width: 150px;
}

.inner_bnr figure::after {
  width: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 24%;
}


.site_footer .address:first-of-type {
  align-items: start !important;
}