@font-face {
  font-family: "hellix";
  src: url("../fonts/Hellix-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "hellix";
  src: url("../fonts/Hellix-SemiBold.otf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "hellix";
  src: url("../fonts/Hellix-Medium.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "hellix";
  src: url("../fonts/Hellix-Regular.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Hellix";
  src: url("../fonts/Hellix-Light.otf");
  font-weight: 300;
  font-style: normal;
}
* {
  font-family: "Hellix" !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hellix";
  scroll-behavior: smooth;
  position: relative;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #06c7bc, #1e77c4);
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.heading span.sub-heading {
  text-transform: uppercase;
  font-size: 18px;
  color: #1e77c4;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 3px;
}
@media (min-width: 768px) {
  .heading span.sub-heading {
    font-size: 20px;
  }
}
.heading span.sub-heading.simple {
  letter-spacing: unset;
  font-size: 16px;
}
@media (min-width: 768px) {
  .heading span.sub-heading.simple {
    font-size: 18px;
    font-weight: 400;
  }
}
.heading h2 {
  font-weight: 600;
  color: #081c40;
  font-size: 28px;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  .heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .heading h2 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .heading h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .heading h2 {
    font-size: 46px;
  }
}
.heading h6 {
  font-weight: 500;
  color: #081c40;
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .heading h6 {
    font-size: 18px;
  }
}
.heading p {
  color: #545a63;
  font-size: 16px;
  margin-top: 20px;
}

.error {
  font-size: 12px;
  color: rgb(141, 0, 0);
}

.scrollspy-example {
  position: relative;
  height: 100vh;
  overflow-y: auto;
}

.light-bg {
  background-color: #daf7f8;
}

a {
  text-decoration: none;
}

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

figure {
  margin-bottom: 0;
}

section {
  overflow: hidden;
  padding: 60px 0;
  scroll-margin-top: 55px;
}
@media (min-width: 768px) {
  section {
    scroll-margin-top: 75px;
    padding: 80px 0;
  }
}

.custom-btn {
  border: 0;
  border-radius: 30px;
  color: #fff !important;
  font-size: 18px;
  background-color: transparent;
  outline: 0;
  display: inline-block;
  padding: 8px 20px 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 1200px) {
  .custom-btn {
    padding: 12px 34px 14px;
  }
}
.custom-btn::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  z-index: -1;
  left: 0;
  transition: 0.4s;
  background: #00f1d8;
  pointer-events: none;
  background: linear-gradient(98deg, #00f1d8 0%, #0da3bf 50%, #00f1d8 100%);
}
.custom-btn:hover::before {
  transform: translateX(-50%);
}
.custom-btn.white {
  background: #fff;
  color: #06c7bc !important;
  transition: 0.4s;
}
.custom-btn.white:hover {
  background-color: #06c7bc;
  color: #fff !important;
}
.custom-btn.white::before {
  display: none;
}
.custom-btn.blue {
  background: #1e76c4;
  color: #fff !important;
  transition: 0.4s;
}
.custom-btn.blue:hover {
  background-color: #fff;
  color: #1e76c4 !important;
}
.custom-btn.blue::before {
  display: none;
}

.splide__pagination li button {
  background-color: #fff;
  opacity: 0.3;
  width: 12px;
  height: 12px;
}
@media (min-width: 576px) {
  .splide__pagination li button {
    width: 15px;
    height: 15px;
  }
}
.splide__pagination li button.is-active {
  transform: unset;
  opacity: 1;
}

header {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 0 40px 0px rgba(30, 119, 196, 0.3411764706);
}
@media (min-width: 768px) {
  header {
    padding: 22px 0;
  }
}
@media (min-width: 992px) {
  header {
    padding: 0;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .logo a.navbar-brand img {
  width: 175px;
}
@media (min-width: 768px) {
  header nav .logo a.navbar-brand img {
    width: 200px;
  }
}
@media (min-width: 992px) {
  header nav .logo a.navbar-brand img {
    width: 260px;
  }
}
@media (min-width: 1200px) {
  header nav .logo a.navbar-brand img {
    width: 280px;
  }
}
@media (min-width: 1450px) {
  header nav .logo a.navbar-brand img {
    width: 300px;
  }
}
header nav .main-nav ul {
  display: none;
  align-items: center;
}
@media (min-width: 992px) {
  header nav .main-nav ul {
    display: flex;
  }
}
header nav .main-nav ul li {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 1450px) {
  header nav .main-nav ul li {
    margin: 0 10px;
  }
}
header nav .main-nav ul li:has(a.active)::after {
  opacity: 1;
}
header nav .main-nav ul li:has(a.active) a {
  color: #06c7bc;
}
header nav .main-nav ul li::after {
  content: "";
  transition: 0.4s;
  position: absolute;
  width: 80%;
  height: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 241, 216);
  background: linear-gradient(98deg, #00f1d8 0%, #00bcf9 100%);
  opacity: 0;
}
header nav .main-nav ul li:last-child a {
  color: #fff;
  padding: 8px 20px 10px;
}
@media (min-width: 1200px) {
  header nav .main-nav ul li:last-child a {
    padding: 12px 34px 14px;
  }
}
header nav .main-nav ul li:last-child::after {
  display: none;
}
header nav .main-nav ul li:hover::after {
  opacity: 1;
}
header nav .main-nav ul li:hover a {
  color: #06c7bc;
}
header nav .main-nav ul li a {
  color: #081c40;
  transition: 0.4s;
  padding: 0 12px;
  font-size: 16px;
}
@media (min-width: 1200px) {
  header nav .main-nav ul li a {
    font-size: 18px;
    padding: 0 15px;
  }
}
header nav .main-nav .toggle-menu {
  border: 0;
  outline: 0;
  background-color: transparent;
  margin-top: 3px;
}
@media (min-width: 992px) {
  header nav .main-nav .toggle-menu {
    display: none;
  }
}
header nav .main-nav .toggle-menu i, header nav .main-nav .toggle-menu svg {
  font-size: 20px;
  color: #178ec2;
}

section.banner {
  padding-top: 120px;
}
@media (min-width: 768px) {
  section.banner {
    padding-top: 160px;
  }
}
section.banner .banner-slider .splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
section.banner .banner-slider .splide__slide img.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}
section.banner .banner-slider .splide__slide .heading {
  padding-top: 80px;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__slide .heading {
    padding-top: 100px;
  }
}
section.banner .splide__pagination {
  bottom: 1.6rem;
}
section.banner .splide__pagination li {
  margin: 0 4px;
}
@media (min-width: 576px) {
  section.banner .splide__pagination li {
    margin: 0;
    margin-bottom: 15px;
  }
}
@media (min-width: 576px) {
  section.banner .splide__pagination {
    bottom: 0;
  }
}
@media (min-width: 992px) {
  section.banner .splide__pagination {
    right: 3rem;
  }
}
@media (min-width: 1200px) {
  section.banner .splide__pagination {
    right: 6rem;
  }
}

section.features {
  background: rgb(3, 185, 187);
  background: linear-gradient(98deg, #03b9bb 0%, #178ec2 100%);
}
section.features .feature-card {
  position: relative;
  padding-bottom: 25px;
  height: 100%;
}
section.features .feature-card::before {
  content: "";
  height: 2px;
  width: 100px;
  background-color: #06c7bc;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.features .feature-card figure {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
section.features .feature-card figure img {
  width: 100%;
}
section.features .feature-card .feature-card-content h3 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
}
section.features .feature-card .feature-card-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}

section.about-us {
  position: relative;
  z-index: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  section.about-us {
    padding: 100px 0;
  }
}
section.about-us img.about-bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  width: 100%;
  margin-top: 60px;
  height: 500px;
  -o-object-position: right;
     object-position: right;
}
@media (min-width: 992px) {
  section.about-us img.about-bg-img {
    -o-object-position: right;
       object-position: right;
    width: 47%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin-top: 0;
  }
}
section.about-us .mission-vision-wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}
@media (min-width: 992px) {
  section.about-us .mission-vision-wrap {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    width: 150%;
    margin-left: -50%;
  }
}
section.about-us .mission-vision-wrap .ms-card {
  border-radius: 6px;
  height: 100%;
  padding: 20px;
  background-color: #fff;
}
@media (min-width: 992px) {
  section.about-us .mission-vision-wrap .ms-card {
    padding: 25px 20px;
  }
}
section.about-us .mission-vision-wrap .ms-card h4 {
  color: #081c40;
  font-weight: 700;
  font-size: 26px;
}
@media (min-width: 576px) {
  section.about-us .mission-vision-wrap .ms-card h4 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  section.about-us .mission-vision-wrap .ms-card h4 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  section.about-us .mission-vision-wrap .ms-card h4 {
    font-size: 32px;
  }
}
section.about-us .mission-vision-wrap .ms-card h6 {
  color: #178ec2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
section.about-us .mission-vision-wrap .ms-card p {
  margin-bottom: 0;
  color: #545a63;
}

section.our-services {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.our-services {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  section.our-services {
    padding-bottom: 100px;
  }
}
section.our-services .slider-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}
section.our-services .slider-btn-wrap button {
  width: 40px;
  height: 40px;
  border: 0;
  outline: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 24px 4px rgba(8, 28, 64, 0.0509803922);
}
@media (min-width: 768px) {
  section.our-services .slider-btn-wrap button {
    width: 60px;
    height: 60px;
  }
}
section.our-services .slider-btn-wrap button:first-child {
  margin-right: 25px;
}
section.our-services .slider-btn-wrap button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.our-services img.services-bg-logo {
  position: absolute;
  z-index: -1;
  top: 60px;
  right: -80px;
  pointer-events: none;
  opacity: 0.1;
  width: 95%;
}
@media (min-width: 576px) {
  section.our-services img.services-bg-logo {
    width: 65%;
  }
}
@media (min-width: 768px) {
  section.our-services img.services-bg-logo {
    top: 80px;
  }
}
section.our-services .services-slider-wrap {
  padding: 10px;
}
@media (min-width: 576px) {
  section.our-services .services-slider-wrap {
    padding: 0;
  }
}
section.our-services .services-slider-wrap .services-slider .service-card {
  position: relative;
  height: 450px;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
section.our-services .services-slider-wrap .services-slider .service-card:hover span.serivce-tag {
  opacity: 0;
}
section.our-services .services-slider-wrap .services-slider .service-card:hover .service-details-wrap {
  top: 0%;
}
section.our-services .services-slider-wrap .services-slider .service-card:hover .service-details-wrap::before {
  opacity: 0.6;
}
section.our-services .services-slider-wrap .services-slider .service-card:hover .service-details-wrap h4 {
  font-size: 22px;
}
section.our-services .services-slider-wrap .services-slider .service-card:hover .service-details-wrap p {
  opacity: 1;
  font-size: 14px;
}
section.our-services .services-slider-wrap .services-slider .service-card figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
section.our-services .services-slider-wrap .services-slider .service-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.our-services .services-slider-wrap .services-slider .service-card span.serivce-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(8, 28, 64, 0.6784313725);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.4s;
}
section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap {
  padding: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  top: 77%;
  transition: 0.4s;
}
section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap::before {
  content: "";
  top: 0;
  background: linear-gradient(0deg, #00f1d8 0%, #00bcf9 100%);
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}
section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap span {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
}
@media (min-width: 768px) {
  section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap span {
    font-size: 16px;
  }
}
section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap h4 {
  text-transform: capitalize;
  color: #fff;
  margin-top: 4px;
  font-size: 20px;
}
@media (min-width: 768px) {
  section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap h4 {
    font-size: 22px;
  }
}
section.our-services .services-slider-wrap .services-slider .service-card .service-details-wrap p {
  margin-bottom: 0;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: 0.4s;
}
section.our-services .splide__pagination {
  bottom: -4rem;
  display: none;
}
@media (min-width: 576px) {
  section.our-services .splide__pagination {
    display: flex;
  }
}
section.our-services .splide__pagination li {
  margin: 0 8px;
}
section.our-services .splide__pagination li button {
  background-color: #178ec2;
}

section.home-cta {
  background-image: url("/assets/images/homepage/home-page-new/vacine-study-survey.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: unset;
}
section.home-cta .heading h4 {
  margin-top: 24px;
  font-weight: 300;
  font-size: 20px;
}
@media (min-width: 576px) {
  section.home-cta .heading h4 {
    font-size: 22px;
  }
}
section.home-cta .cta-btn-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  section.home-cta .cta-btn-wrap {
    flex-direction: row;
  }
}

section.home-cta-2 {
  background-image: url("/assets/images/homepage/cta/get_a_consultatiopn_banner.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: unset;
}
section.home-cta-2 .heading h4 {
  margin-top: 24px;
  font-weight: 300;
  font-size: 20px;
}
@media (min-width: 576px) {
  section.home-cta-2 .heading h4 {
    font-size: 22px;
  }
}
section.home-cta-2 .cta-btn-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  section.home-cta-2 .cta-btn-wrap {
    flex-direction: row;
  }
}

section.special-interest {
  background-color: #daf7f8;
}
section.special-interest .heading h2 {
  max-width: 620px;
}
section.special-interest .speacial-interest-card {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 3px 30px 0px rgb(207, 236, 239);
}
section.special-interest .speacial-interest-card .icon {
  width: 90px;
}
section.special-interest .speacial-interest-card .icon img {
  width: 100%;
}
section.special-interest .speacial-interest-card .card-content {
  margin-left: 0;
}
@media (min-width: 992px) {
  section.special-interest .speacial-interest-card .card-content {
    margin-left: 30px;
  }
}
@media (min-width: 1700px) {
  section.special-interest .speacial-interest-card .card-content {
    margin-left: 10px;
  }
}
section.special-interest .speacial-interest-card .card-content .card-heading {
  color: #1D3977;
  font-size: 22px;
  font-weight: 600;
}
section.special-interest .speacial-interest-card .card-content .card-text {
  color: #545a63;
}

section.our-partners {
  background: #05b4bb;
  background-image: url("../images/our-partner-banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
section.our-partners .heading {
  text-align: center;
}
section.our-partners .heading span {
  color: #fff;
}
section.our-partners .heading h2 {
  color: #fff;
}
section.our-partners .partners-slider {
  margin-top: 50px;
}
section.our-partners .partners-slider figure {
  width: 80%;
}
section.our-partners .partners-slider figure img {
  width: 100%;
}

section.feedback {
  background-color: #D8F5F7;
}
section.feedback .reviews {
  margin-top: 40px;
  background-color: #fff;
}
section.feedback .reviews .left {
  padding: 20px 30px;
}
@media (min-width: 576px) {
  section.feedback .reviews .left {
    display: flex;
    padding: 50px 40px;
  }
}
section.feedback .reviews .left figure {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  section.feedback .reviews .left figure {
    margin-right: 40px;
  }
}
section.feedback .reviews .left .reviews-slider {
  margin-bottom: 65px;
}
section.feedback .reviews .left .reviews-slider .splide__pagination {
  padding: 0;
  bottom: -50px;
  left: 0;
  right: unset;
}
section.feedback .reviews .left .reviews-slider .splide__pagination li .splide__pagination__page {
  margin-right: 15px;
  background-color: #D2E4F3;
  width: 15px;
  height: 15px;
}
section.feedback .reviews .left .reviews-slider .splide__pagination li .splide__pagination__page.is-active {
  background-color: #3386CA;
  opacity: unset;
  transform: none;
}
section.feedback .reviews .left .reviews-slider .review p {
  color: #081c40;
  font-size: 18px;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  section.feedback .reviews .left .reviews-slider .review p {
    font-size: 24px;
  }
}
section.feedback .reviews .left .reviews-slider .review p::after {
  content: "";
  width: 50px;
  height: 4px;
  position: absolute;
  bottom: -30px;
  left: 0;
  background: rgb(0, 241, 216);
  background: linear-gradient(98deg, rgb(0, 241, 216) 0%, rgb(0, 188, 249) 100%);
}
section.feedback .reviews .left .reviews-slider .review h5 {
  color: #081c40;
  font-weight: 600;
}
section.feedback .reviews .left .reviews-slider .review span {
  color: #1e77c4;
}
section.feedback .reviews .right {
  position: relative;
  display: block;
}
section.feedback .reviews .right figure {
  margin-top: -100px;
}
section.feedback .reviews .right figure img {
  width: 400px;
}
@media (min-width: 1200px) {
  section.feedback .reviews .right figure {
    margin-top: -100px;
  }
  section.feedback .reviews .right figure img {
    width: 494px;
  }
}
section.feedback .reviews .right .image-content {
  width: 320px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  padding: 15px 20px;
  transform: translateX(-50%);
  background: rgb(9, 72, 141);
  background: linear-gradient(50deg, rgb(9, 72, 141) 50%, rgb(2, 47, 94) 100%);
  display: flex;
  color: #fff;
  align-items: center;
}
section.feedback .reviews .right .image-content h3 {
  font-size: 60px;
  font-weight: 800;
  margin-right: 20px;
}
section.feedback .reviews .right .image-content p {
  margin-bottom: 0;
  font-size: 20px;
}

section.contact-us {
  background: #05b4bb;
  background: linear-gradient(50deg, #178ec2 10%, #05b4bb 100%);
}
section.contact-us .heading span {
  color: #fff;
}
section.contact-us .heading h2 {
  color: #fff;
}
section.contact-us .heading p {
  color: #fff;
}
section.contact-us .our-locations h3 {
  color: #fff;
  margin: 20px 0;
  font-size: 20px;
}
section.contact-us .our-locations .location .location-icon {
  background: #fff;
  min-width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 23px;
  color: #178FC2;
  margin-right: 20px;
}
section.contact-us .our-locations .location .location-info h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}
section.contact-us .our-locations .location .location-info h4 span {
  font-weight: 300;
  font-size: 18px;
}
section.contact-us .our-locations .location .location-info p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}
section.contact-us .our-locations .location .location-info a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
section.contact-us .contact-form-wrap {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
}
@media (min-width: 768px) {
  section.contact-us .contact-form-wrap {
    padding: 30px;
  }
}
section.contact-us .contact-form-wrap .conatct-form-wrapper h4 {
  color: #072D58;
  font-size: 20px;
  font-weight: 600;
}
section.contact-us .contact-form-wrap .conatct-form-wrapper p {
  color: #545a63;
}
section.contact-us .contact-form-wrap .conatct-form-wrapper form .form-group {
  margin-bottom: 20px;
}
section.contact-us .contact-form-wrap .conatct-form-wrapper form input {
  height: 50px;
  border-radius: 8px;
  border-color: #e7e7e7;
}
section.contact-us .contact-form-wrap .conatct-form-wrapper form input:focus {
  box-shadow: none;
}
section.contact-us .contact-form-wrap .conatct-form-wrapper form textarea {
  height: 80px;
  border-radius: 8px;
  border-color: #e7e7e7;
}
@media (min-width: 576px) {
  section.contact-us .contact-form-wrap .conatct-form-wrapper form textarea {
    height: 150px;
  }
}
section.contact-us .contact-form-wrap .conatct-form-wrapper form textarea:focus {
  box-shadow: none;
}

footer {
  padding: 80px 0px 30px;
  background-color: #07214E;
  position: relative;
  overflow: hidden;
}
footer .footer-bg-logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  width: 50%;
}
@media (min-width: 992px) {
  footer .footer-bg-logo {
    display: block;
  }
}
footer .footer-top {
  position: relative;
  z-index: 2;
}
footer .footer-top .left .footer-logo {
  width: 300px;
}
@media (min-width: 576px) {
  footer .footer-top .left .footer-logo {
    width: 500px;
  }
}
footer .footer-top .left .footer-logo img {
  width: 100%;
}
footer .footer-top .left .footer-tagline {
  color: #fff;
  line-height: 2.2rem;
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
}
footer .footer-top .left .contact-wrapper {
  margin-top: 50px;
}
footer .footer-top .left .contact-wrapper .contact {
  position: relative;
  color: #fff;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  footer .footer-top .left .contact-wrapper .contact {
    margin-bottom: 0;
  }
}
footer .footer-top .left .contact-wrapper .contact p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}
footer .footer-top .left .contact-wrapper .contact h5 {
  font-size: 20px;
}
footer .footer-top .left .contact-wrapper .contact h5 a {
  color: #fff;
}
footer .footer-top .left .contact-wrapper .contact::after {
  content: "";
  position: absolute;
  bottom: -25px;
  width: 50px;
  height: 3px;
  background: rgb(0, 240, 217);
  background: linear-gradient(90deg, #00f0d9 48%, #00bdfa 100%);
}
footer .footer-top .left .contact-wrapper .social {
  color: #fff;
}
footer .footer-top .left .contact-wrapper .social p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}
footer .footer-top .left .contact-wrapper .social .links {
  display: flex;
  margin-top: 20px;
}
footer .footer-top .left .contact-wrapper .social .links .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgb(5, 96, 121);
  background: linear-gradient(90deg, #056079 46%, #055083 100%);
  color: #fff;
  font-size: 18px;
  margin-right: 20px;
  transition: 0.4s;
}
footer .footer-top .left .contact-wrapper .social .links .link svg, footer .footer-top .left .contact-wrapper .social .links .link i {
  transition: 0.4s;
  transform: scale(1);
}
footer .footer-top .left .contact-wrapper .social .links .link:hover {
  background: #06c7bc;
}
footer .footer-top .left .contact-wrapper .social .links .link:hover svg, footer .footer-top .left .contact-wrapper .social .links .link:hover i {
  transform: scale(1.1);
}
footer .footer-top .right {
  display: block;
}
@media (min-width: 992px) {
  footer .footer-top .right {
    display: flex;
    justify-content: flex-end;
  }
}
footer .footer-top .right .join-us {
  background: #072D58;
  width: 295px;
  display: flex;
  justify-content: center;
  padding: 30px 0px;
  border-radius: 15px;
}
footer .footer-top .right .join-us .wrapper h2 {
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  font-size: 45px;
  max-width: 250px;
  margin-top: 35px;
}
footer .footer-top .right .join-us .wrapper h2::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 50px;
  height: 4px;
  background: rgb(0, 240, 217);
  background: linear-gradient(90deg, #00f0d9 48%, #00bdfa 100%);
}
footer .footer-top .right .join-us .wrapper .custom-btn {
  display: block;
  text-decoration: none;
  text-align: center;
}
footer .footer-top .right .join-us .wrapper .custom-btn:hover {
  color: #fff;
}
footer .footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
footer .footer-bottom .wrapper {
  display: block;
  text-align: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  footer .footer-bottom .wrapper {
    display: flex;
    text-align: left;
  }
}
footer .footer-bottom .wrapper p {
  color: #fff;
  font-size: 16px;
}
footer .footer-bottom .wrapper p a {
  color: #06c7bc;
  text-decoration: none;
}

.side-nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  transition: 0.4s;
  background-color: #fff;
  overflow: hidden;
  z-index: 1100;
}
.side-nav .side-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 142, 194, 0.1411764706);
  padding-bottom: 15px;
}
.side-nav .side-nav-header .logo a img {
  width: 200px;
}
.side-nav .side-nav-header button {
  border: 0;
  outline: 0;
  background-color: transparent;
}
.side-nav .side-nav-header button svg, .side-nav .side-nav-header button i {
  font-size: 24px;
  color: #178ec2;
}
.side-nav .side-nav-body {
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 142, 194, 0.1411764706);
}
.side-nav .side-nav-body ul li {
  margin-bottom: 5px;
}
.side-nav .side-nav-body ul li a.link {
  display: inline-block;
  font-size: 18px;
  padding: 10px 0;
  color: #081c40;
  transition: 0.4s;
  position: relative;
}
.side-nav .side-nav-body ul li a.link::before {
  content: "";
  transition: 0.4s;
  position: absolute;
  width: 80%;
  height: 2px;
  bottom: 0;
  left: 0;
  border-radius: 6px;
  background: rgb(0, 241, 216);
  background: linear-gradient(98deg, #00f1d8 0%, #00bcf9 100%);
  opacity: 0;
}
.side-nav .side-nav-body ul li a.link:hover {
  color: #06c7bc;
}
.side-nav .side-nav-body ul li a.link:hover::before {
  opacity: 1;
}
.side-nav .sidenav-bg-logo {
  position: absolute;
  z-index: -1;
  top: 0px;
  right: -80px;
  pointer-events: none;
  opacity: 0.1;
  width: 100%;
}
@media (min-width: 576px) {
  .side-nav .sidenav-bg-logo {
    width: 70%;
  }
}
.side-nav.opened {
  left: 0;
}

#survey-modal .modal-dialog-scrollable .modal-content {
  padding: 0.5rem 1rem;
  border-radius: 15px;
}
#survey-modal .modal-dialog-scrollable .modal-content .modal-body .survey-wrap {
  padding: 30px 0;
}
#survey-modal .modal-dialog-scrollable .modal-content .modal-body .survey-wrap.first {
  border-bottom: 1px solid rgba(94, 157, 213, 0.2);
}
#survey-modal .modal-dialog-scrollable .modal-content .modal-body h2.modal-title {
  font-size: 26px;
}
@media (min-width: 768px) {
  #survey-modal .modal-dialog-scrollable .modal-content .modal-body h2.modal-title {
    font-size: 32px;
  }
}
#survey-modal .modal-dialog-scrollable .modal-content .modal-body h2.modal-title span.sub-heading {
  font-size: 16px;
  color: #1e77c4;
}
@media (min-width: 576px) {
  #survey-modal .modal-dialog-scrollable .modal-content .modal-body h2.modal-title {
    font-size: 36px;
  }
  #survey-modal .modal-dialog-scrollable .modal-content .modal-body h2.modal-title span.sub-heading {
    font-size: 20px;
  }
}
#survey-modal .modal-dialog-scrollable .modal-content .modal-body p {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.min.css.map */