body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --primary: #0098da;
  --primary-dark: #284259;
  --primary-lit: #effaff;
  --borderRadius: 4px;
  --transi: all 0.6s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #29445c;
  margin-top: 0px;
  font-weight: 500;
}

p {
  color: #545b69;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: normal;
}

a {
  text-decoration: none;
}

.form-label {
  color: #b1b1b1;
  text-transform: capitalize;
}

.form-select {
  background: transparent;
  color: white;
}

.form-select option {
  color: black;
}

.prodOption i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: white;
}

.sectionHeadingDiv {
  text-align: center;
}
.sectionHeadingDiv .sectionHeading {
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 28px;
  position: relative;
}
.sectionHeadingDiv .sectionHeading::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 80px;
  border-radius: 16px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.secGap {
  padding: 50px 0;
}

.mainBtn {
  border-radius: 4px;
  padding: 8px 20px;
  border: 1px solid var(--primary-dark);
  transition: var(--transi);
  background: white;
  text-transform: uppercase;
  width: 50%;
  display: flex;
  align-items: center;
}
.mainBtn a {
  font-size: 16px;
  color: var(--primary-dark);
  display: flex;
  justify-content: center;
  width: 100%;
}
.mainBtn:hover {
  border: 1px solid var(--primary);
  background: var(--primary);
}
.mainBtn:hover a {
  color: white;
}

.header-btn {
  border: 1px solid transparent;
  padding: 6px 10px;
  text-transform: uppercase;
  border-radius: var(--borderRadius);
  cursor: pointer;
  color: white !important;
  display: flex;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transi);
  background: var(--primary);
  text-decoration: none;
}
.header-btn:hover {
  background-position: left;
  border: 1px solid white;
  background: var(--primary-dark);
}

.header-btn img,
.login-btn img {
  margin-right: 8px;
}

.login-btn {
  padding: 8px 16px;
  text-transform: capitalize;
  background: white;
  border: 1px solid #0077cc;
  border-radius: var(--borderRadius);
  font-size: 16px;
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transi);
}
.login-btn:hover {
  background: #0077cc;
  color: white;
}

.navbar {
  padding: 0;
  background: white;
  border-bottom: 1px solid rgba(0, 119, 204, 0.168627451);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1215686275);
}
.navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
  margin-right: 44px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark);
  transition: var(--transi);
  padding: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  border-top: 5px solid var(--primary);
  border-radius: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 20px;
  transition: var(--transi);
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover {
  background: var(--primary);
  color: white;
}

.carousel-control-next,
.carousel-control-prev {
  height: 15%;
  top: 50%;
}
.carousel-control-next i,
.carousel-control-prev i {
  font-size: 44px;
}

.whatWeOfferSection {
  background: rgba(0, 109, 255, 0.0509803922);
  margin-top: 40px;
}
.whatWeOfferSection .single-offers {
  background: white;
  margin-top: 24px;
  position: relative;
}
.whatWeOfferSection .single-offers .offers-img {
  position: relative;
  transition: var(--transi);
  overflow: hidden;
}
.whatWeOfferSection .single-offers .offers-img img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: var(--transi);
  border-radius: 12px;
}
.whatWeOfferSection .single-offers .offers-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.whatWeOfferSection .single-offers .offers-cap h3 {
  font-size: 20px;
  font-weight: 500;
  transition: var(--transi);
  background: var(--primary-dark);
  color: white;
  padding: 10px;
  margin-bottom: 0;
  width: 100%;
  border-radius: 0 0 12px 12px;
}
.whatWeOfferSection .single-offers .offers-cap h3:hover {
  background: var(--primary);
}
.whatWeOfferSection .single-offers .offers-cap p {
  text-align: justify;
  font-size: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.whatWeOfferSection .single-offers .offers-cap .header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 14px !important;
}

.form-control {
  background: transparent;
  border: 1px solid var(--primary-lit);
  color: #969fa3;
  margin-bottom: 10px;
}
.form-control:focus {
  box-shadow: none;
}


.footerArea {
  background: #1b2f48;
  position: relative;
}
.footerArea .footer-links {
  position: relative;
  z-index: 11;
}
.footerArea .footer-links.quickLinks {
  margin-left: 40px;
}
.footerArea .footer-links ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.footerArea .footer-links ul li {
  display: flex;
  align-items: center;
}
.footerArea .footer-links ul li:not(:last-child) {
  margin-bottom: 16px;
}
.footerArea .footer-links ul li a {
  color: #b1b1b1;
  transition: var(--transi);
}
.footerArea .footer-links ul li a:hover {
  color: white;
}
.footerArea .footer-links ul li a i {
  padding: 8px;
  border-radius: 4px;
}
.footerArea .footer-links.social-links ul {
  justify-content: end;
}
.footer-bottom-area {
  background: var(--primary-dark);
  padding: 10px 0;
}
.footer-bottom-area p {
  color: white;
  margin-bottom: 0;
  font-size: 14px;
}
.footer-bottom-area p.CopyrightLeft {
  text-align: start;
}
.footer-bottom-area p.CopyrightRight {
  text-align: end;
}
.footer-bottom-area p.CopyrightRight a {
  margin-left: 4px;
}

.CopyrightLeft {
  color: white;
  margin-bottom: 0;
  font-size: 14px;
  text-align: end;
}

.footerHeading {
  text-transform: capitalize;
  margin-bottom: 30px;
  font-size: 22px;
}

.page_heading {
  background: rgba(0, 103, 147, 0.6705882353);
}
.page_heading .bread_heading {
  padding: 44px 0;
  color: #fffbd4;
  font-size: 32px;
  text-align: center;
  margin-bottom: 0;
}

.aboutUsDiv .aboutImageDiv .firstAbout {
  position: relative;
  z-index: 11;
  height: 340px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.aboutUsDiv .aboutTextDiv p {
  text-align: justify;
}

.principalPillars .principalPillarsImageDiv {
  position: relative;
  background-position: center;
  height: 500px;
  width: 100%;
}
.principalPillars .principalPillarsImageDiv svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.principalPillars .pillarsHeading h1 {
  font-size: 60px;
  font-weight: 700;
  background-image: url("../images/JC_imgs/pillerText-Image2.webp");
  background-position: bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.road-map-main {
  margin: 50px 0 51px;
}
.road-map-main .road-map-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 175px;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper {
    margin-bottom: 25px;
    height: auto;
    display: block;
  }
}
.road-map-main .road-map-wrapper::before {
  content: "";
  width: 100%;
  clear: both;
  display: block;
}
.road-map-main .road-map-wrapper::after {
  content: "";
  width: 100%;
  clear: both;
  display: block;
}
.road-map-main .road-map-wrapper .road-map-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 25px solid transparent;
  border-top-color: #73d1fa;
  border-right-color: #73d1fa;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: 11;
}
@media (max-width: 992px) {
  .road-map-main .road-map-wrapper .road-map-circle {
    position: unset;
    border: 14px solid #7a7bd7;
  }
}
.road-map-main .road-map-wrapper .road-map-circle .road-map-circle-text {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ff5e02;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: #fff;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1294117647);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.road-map-main .road-map-wrapper .road-map-card {
  width: 40%;
  background: #f7f7f7;
  padding: 16px;
  z-index: 1;
  position: absolute;
  right: -70px;
  border-radius: 6px;
}
.road-map-main .road-map-wrapper .road-map-card .triangle-left {
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-right: 36px solid #73d1fa;
  border-bottom: 0px solid transparent;
  border-radius: 2px;
  position: absolute;
  top: 3px;
  left: -10.8%;
  z-index: -1;
}
.road-map-main .road-map-wrapper .road-map-card .triangle-right {
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-left: 36px solid #3ca1cc;
  border-bottom: 0px solid transparent;
  border-radius: 2px;
  position: absolute;
  top: 3px;
  right: -10.8%;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper .road-map-card {
    width: 100%;
    margin-top: 30px;
    position: unset;
  }
  .road-map-main .road-map-wrapper .road-map-card::before {
    content: "";
    width: 20px;
    height: 30%;
    top: 50%;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media (max-width: 425px) {
  .road-map-main .road-map-wrapper .road-map-card {
    top: 45%;
  }
}
.road-map-main .road-map-wrapper .road-map-card .card-head {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 15px;
  color: var(--primary-dark);
}
.road-map-main .road-map-wrapper .road-map-card .card-text {
  color: var(--primary-dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .road-map-main .road-map-wrapper .road-map-card .card-text {
    -webkit-line-clamp: 4;
  }
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-circle {
  border-bottom-color: #3ca1cc;
  border-left-color: #3ca1cc;
  border-top-color: transparent;
  border-right-color: transparent;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-circle {
    border-color: #7a7bd7;
  }
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card {
  left: -70px;
}
.road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
  right: -17%;
  left: unset;
}
@media (max-width: 991px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
    content: "";
    width: 20px;
    height: 30%;
    top: 50%;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media (max-width: 425px) {
  .road-map-main .road-map-wrapper:nth-of-type(even) .road-map-card::before {
    top: 45%;
  }
}

.contactUsPage .contactUsPageTop {
  padding: 60px 0;
}
.contactUsPage .contactUsPageTop .contactDetails .contactLeft {
  background: white;
  box-shadow: 1px 1px 16px rgba(0, 0, 0, 0.2392156863);
  padding: 30px 50px;
  border-radius: 8px;
  border: 1px solid transparent;
  height: 100%;
}
.contactUsPage .contactUsPageTop .contactDetails .contactLeft h4 {
  font-size: 28px;
}
.contactUsPage .contactUsPageTop .contactDetails .contactRight {
  background: var(--primary-dark);
  padding: 30px;
  border-radius: 8px;
}
.contactUsPage .contactUsPageTop .contactDetails .contactRight .header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: var(--transi);
  background: var(--primary) !important;
  border: 1px solid transparent;
}
.contactUsPage .contactUsPageTop .contactDetails .contactRight .header-btn:hover {
  background: var(--primary-dark) !important;
  border: 1px solid var(--primary-lit);
}
.contactUsPage .contactUsPageTop .contactDetails .contactRight .sectionHeading {
  color: white;
}

.contactLeftUL {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.contactLeftUL li {
  color: var(--primary-dark);
}
.contactLeftUL li:not(:last-child) {
  margin-bottom: 28px;
}
.contactLeftUL li span {
  font-size: 18px;
  margin-right: 12px;
}
.contactLeftUL li span i {
  padding: 15px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--primary-lit);
}
.contactLeftUL li span i.fa-location-dot {
  padding: 16px 18px;
}
.contactLeftUL li strong {
  font-size: 19px;
  opacity: 0.75;
  font-weight: 600;
}
.contactLeftUL li div {
  margin-top: 12px;
}
.contactLeftUL li a {
  margin-bottom: 0;
  text-align: start;
  color: var(--primary);
}

.productPage .aboutTextDiv .aboutTopContent {
  padding: 16px;
  background: var(--primary-dark);
  color: white;
  margin-bottom: 30px;
  border-radius: 8px;
}
.productPage .aboutTextDiv .aboutTopContent p {
  color: white;
  margin-bottom: 20px;
  text-align: justify;
}
.productPage .aboutTextDiv .aboutTopContent ul {
  margin-top: 10px;
  margin-bottom: 0px !important;
  position: relative;
}
.productPage .aboutTextDiv .aboutTopContent ul::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #0371a3;
  left: 12px;
  top: 0;
}
.productPage .aboutTextDiv .aboutTopContent ul li {
  display: flex;
  position: relative;
}
.productPage .aboutTextDiv .aboutTopContent ul li::after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--primary-lit);
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.productPage .aboutTextDiv .aboutTopContent ul li::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 1px solid var(--primary);
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.productPage .aboutTextDiv .aboutTopContent ul li:not(:last-child) {
  margin-bottom: 20px;
}
.productPage .aboutTextDiv .aboutTopContent ul li strong {
  white-space: nowrap;
  margin-right: 8px;
  color: var(--primary);
}
.productPage .aboutTextDiv .aboutTopContent ul li p {
  margin-bottom: 0;
}
.productPage .aboutImageDiv {
  display: block !important;
}
.productPage .aboutImageDiv .header-btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  width: 65%;
  margin: 20px auto 0;
  padding: 10px;
  text-transform: capitalize !important;
}

.table {
  border-collapse: initial;
}
.table tbody tr {
  background: #c7e1eb;
}

.table-bordered {
  border: 0px solid white !important;
}

.carousel-indicators [data-bs-target] {
  height: 10px !important;
  width: 10px !important;
  border-radius: 50% !important;
  background-color: var(--primary) !important;
}
.carousel-indicators [data-bs-target] .active {
  background-color: var(--primary-dark) !important;
}

.tableDark {
  background: var(--primary);
  color: white;
  height: 76px;
}
.tableDark tr {
  vertical-align: middle;
}/*# sourceMappingURL=style.css.map */