@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-style: normal;
  overflow-x: hidden;
}

:root {
  --font-primary-color: #1E247D;
  --font-secondary-color: #66C4E0;
  --font-global-color: #484848;
  --font-global-white-color: #ffffff;
}

p {
  font: normal normal normal 16px/22px Jost;
  letter-spacing: -0.03px;
  color: var(--font-global-color);
}

@media (max-width: 991px) {
  p {
    font: normal normal normal 14px/20px Jost;
  }
}

img {
  max-width: 100%;
}

.img-responsive {
  width: 100%;
}

.btn-primary {
  background: transparent linear-gradient(180deg, #1E247D 0%, #2EBDE8 100%) 0% 0% no-repeat padding-box;
  border-color: #66C4E055;
  border: 1px solid;
  border-radius: 20px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font: normal normal 500 14px/20px Jost;
  letter-spacing: 0.28px;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1E247D;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary-dark {
  background: transparent linear-gradient(180deg, #071633 0%, #375784 100%) 0% 0% no-repeat padding-box;
  border-color: #071633;
  border: 1px solid;
  border-radius: 20px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font: normal normal 500 14px/20px Jost;
  letter-spacing: 0.28px;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #071633;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary-dark:hover::before {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .btn-primary-dark {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary-dark-sm {
  background: transparent linear-gradient(180deg, #071633 0%, #375784 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #071633;
  border-radius: 20px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font: normal normal 500 12px/14px Jost;
  letter-spacing: 0.28px;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-dark-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #071633;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary-dark-sm:hover::before {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .btn-primary-dark-sm {
    width: 100%;
    justify-content: center;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font: normal normal 500 14px/20px Jost;
  letter-spacing: 0.28px;
  color: #1E247D;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  background-color: transparent;
  border: 0;
}

.btn-secondary .arrow-wrap {
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:visited, .btn-secondary:focus-visible, .btn-secondary:active {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: 0;
  color: #1E247D;
}

.btn-secondary:hover .arrow-wrap, .btn-secondary:focus .arrow-wrap, .btn-secondary:visited .arrow-wrap, .btn-secondary:focus-visible .arrow-wrap, .btn-secondary:active .arrow-wrap {
  transform: translateX(8px);
}

@media (max-width: 767px) {
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.btn-secondary.btn-secondary-white,
.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font: normal normal 500 14px/20px Jost;
  letter-spacing: 0.28px;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  background-color: transparent;
  border: 0;
}

.btn-secondary.btn-secondary-white .arrow-wrap,
.btn-secondary-white .arrow-wrap {
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}

.btn-secondary.btn-secondary-white:hover,
.btn-secondary-white:hover {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: 0;
  color: #66C4E0;
  text-decoration: underline;
}

.btn-secondary.btn-secondary-white:hover .arrow-wrap,
.btn-secondary-white:hover .arrow-wrap {
  transform: translateX(8px);
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .btn-secondary.btn-secondary-white,
  .btn-secondary-white {
    width: 100%;
    justify-content: center;
  }
}

.btn-auto {
  min-width: auto;
  padding: 0 34px;
}

@media (max-width: 991px) {
  .DesktopView {
    display: none !important;
  }
}

.MobileView {
  display: none !important;
}

@media (max-width: 991px) {
  .MobileView {
    display: block !important;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.show-animation {
  opacity: 1;
  transform: translate(0) scale(1);
}

.left-right-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .left-right-section {
    flex-wrap: wrap;
    gap: 0;
  }
}

.left-right-section .left-section {
  width: 50%;
}

@media (max-width: 991px) {
  .left-right-section .left-section {
    width: 100%;
  }
}

.left-right-section .right-section {
  width: 50%;
}

@media (max-width: 991px) {
  .left-right-section .right-section {
    width: 100%;
  }
}

.left-right-section .img-boxshadow {
  box-shadow: 0px 3px 18px #66C4E062;
  border-radius: 40px;
}

.left-right-section .right-section-right {
  text-align: right;
}

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

.section-heading {
  font: normal normal 600 38px/41px Jost;
  letter-spacing: -0.46px;
  color: var(--font-primary-color);
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .section-heading {
    font: normal normal 600 32px/38px Jost;
  }
}

.section-heading span {
  color: var(--font-secondary-color);
}

.section-heading-white {
  font: normal normal 600 38px/41px Jost;
  letter-spacing: -0.46px;
  color: var(--font-global-white-color);
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .section-heading-white {
    font: normal normal 600 32px/38px Jost;
  }
}

.section-heading-white span {
  color: var(--font-secondary-color);
}

.heading-half-circle {
  width: 124px;
  height: auto;
  margin-bottom: 7px;
}

@media (max-width: 991px) {
  .heading-half-circle {
    width: 110px;
  }
}

@media (max-width: 991px) {
  .hero-banner {
    padding-top: 80px;
  }
}

.hero-banner .hero-slider-section {
  position: relative;
  height: calc(100dvh - 136px);
}

@media (max-width: 991px) {
  .hero-banner .hero-slider-section {
    height: calc(100dvh - 80px);
  }
}

@media (max-width: 375px) {
  .hero-banner .hero-slider-section {
    min-height: calc(100dvh - 80px);
    height: auto;
    padding: 30px 0;
  }
}

.hero-banner .hero-slider-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner .hero-slider-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .hero-slider-section .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(70, 109, 121, 0.5);
}

.hero-banner .hero-slider-section .container {
  position: relative;
  z-index: 5;
}

.hero-banner .hero-slider-section .hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-banner .hero-slider-section .hero-content .btn-primary {
  border: 0;
  height: 34px;
  font-size: 12px;
  transition: all .3s ease-in-out;
  padding: 0;
  width: 160px;
}

.hero-banner .hero-slider-section .hero-content .btn-primary .white-arrow {
  margin-left: 7px;
  opacity: 0;
  visibility: hidden;
  width: 0;
  transition: all .3s ease-in-out;
}

.hero-banner .hero-slider-section .hero-content .btn-primary:hover {
  transition: all .3s ease-in-out;
  background: #66C4E0;
}

.hero-banner .hero-slider-section .hero-content .btn-primary:hover .white-arrow {
  margin-left: 7px;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
  width: auto;
}

.hero-banner .hero-slider-section .hero-content .btn-primary:hover::before {
  display: none;
}

.hero-banner .hero-slider-section .hero-content .btn-secondary.btn-secondary-white,
.hero-banner .hero-slider-section .hero-content .btn-secondary-white {
  font-size: 12px;
}

.hero-banner .hero-slider-section h5 {
  max-width: 540px;
  font: normal normal normal 18px/24px Jost;
  letter-spacing: -0.04px;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero-banner .hero-slider-section p {
  max-width: 540px;
  margin: 0 0 36px 0;
  font: normal normal 300 16px/21px Jost;
  letter-spacing: -0.03px;
  color: #FFFFFF;
}

.hero-banner .hero-slider-section p b {
  font-weight: 600;
}

.BringVov {
  background-size: cover !important;
  background-position: center center !important;
  padding: 90px 0;
  width: 100%;
}

.BringVov p {
  text-align: center;
  font: normal normal normal 16px/21px Jost;
  letter-spacing: -0.03px;
  color: #FFFFFF;
  max-width: 784px;
  margin: 0 auto;
}

.sky-bg {
  background: linear-gradient(90deg, rgba(30, 36, 125, 0) 0%, rgba(102, 196, 224, 0.18) 100%);
}
