.flexbase50 {
  flex: 0 0 50%;
}

.sectionflex {
  display: flex;
}

.section-gap {
  gap: 2rem;
}

.mgt {
  margin-top: -15vh;
}

.marginbottom {
  margin-bottom: 10rem;
}

.pb {
  padding-bottom: 15rem;
}

.sec-padding-tp {
  padding-top: 15rem;
}

.mgb {
  margin-bottom: 10rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media (width <= 75em) {
  html {
    font-size: 56%;
  }
}

@media (width <= 56.25em) {
  html {
    font-size: 48%;
  }
}

@media (width <= 37.5em) {
  html {
    font-size: 38%;
  }
}

body {
  color: #575757;
  background-color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.custom-btn {
  color: #585858;
  cursor: pointer;
  background: #5c8fc677;
  border: none;
  border-radius: 5px;
  outline: none;
  width: auto;
  height: auto;
  padding: 10px 25px;
  font-family: montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 1s;
  display: inline-block;
  position: relative;
  box-shadow: inset 0 0 2px #ffffff80, 7px 7px 20px #0000001a,
    4px 4px 5px #0000001a;
}

.btn-13 {
  color: #ddd;
  z-index: 1;
  background-color: #899bd8;
  background-image: linear-gradient(315deg, #0147858f 0%, #0286c4 74%);
  border: none;
}

.btn-13:after {
  content: "";
  z-index: -1;
  background-color: #00050d;
  background-image: linear-gradient(315deg, #0161b6 0%, #86d9ff 74%);
  border-radius: 5px;
  width: 100%;
  height: 0;
  transition: all 1s;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: -2px -1px 10px #fff9;
}

.btn-13:hover {
  color: #fff;
}

.btn-13:hover:after {
  height: 100%;
  top: 0;
}

.btn-13:active {
  top: 2px;
}

.btn-16:after {
  content: "";
  direction: rtl;
  z-index: -1;
  width: 0;
  height: 100%;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: -7px -7px 20px #fff9, -4px -4px 5px #fff9, 7px 7px 20px #0002,
    4px 4px 5px #0001;
}

.btn-16:hover {
  color: #000;
}

.btn-16:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-16:active {
  top: 2px;
}

.popnav,
.popnav-check {
  display: none;
}

.popnav-label {
  z-index: 2000;
  background-color: #084e8b;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  display: flex;
  position: fixed;
  top: 1.5rem;
  right: 2rem;
}

.popnav-bg {
  z-index: 1000;
  opacity: 1;
  background-image: radial-gradient(#021035, #95d1ff);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  transition: all 0.6s cubic-bezier(0.67, 0.2, 0.24, 0.97);
  position: fixed;
  top: 3rem;
  right: 3rem;
}

.popnav-nav {
  z-index: 1500;
  opacity: 0;
  width: 0;
  height: 100vh;
  transition: all 0.6s cubic-bezier(0.87, -0.25, 0.08, 1.25);
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
}

.popnav-list {
  text-align: center;
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popnav-item {
  margin-bottom: 1rem;
}

.popnav-link:link,
.popnav-link:visited {
  text-transform: uppercase;
  color: #fff;
  backface-visibility: hidden;
  background-image: linear-gradient(105deg, #0000 50%, #fff 50%);
  background-size: 220%;
  padding: 2rem;
  font-size: 3rem;
  text-decoration: none;
  transition: all 0.5s;
  display: inline-block;
}

.popnav-link:hover,
.popnav-link:active {
  color: #010b3f;
  background-position: 100%;
  transform: translateX(1rem);
}

.popnav-check:checked ~ .popnav-bg {
  transform: scale(130);
}

.popnav-check:checked ~ .popnav-nav {
  opacity: 1;
  width: 100%;
}

.popnav-icon {
  background-color: #fff;
  flex: none;
  width: 3.5rem;
  height: 2px;
  margin-right: 4px;
  transition: all 0.6s;
  display: inline-block;
  position: relative;
}

.popnav-icon:after,
.popnav-icon:before {
  content: "";
  background-color: #fff;
  width: 3.5rem;
  height: 1.5px;
  transition: all 0.6s;
  position: absolute;
}

.popnav-icon:after {
  top: 0.8rem;
}

.popnav-icon:before {
  top: -0.8rem;
}

.popnav-label:hover .popnav-icon:after {
  top: 1rem;
}

.popnav-label:hover .popnav-icon:before {
  top: -1rem;
}

.popnav-check:checked + .popnav-label .popnav-icon {
  background-color: #0000;
}

.popnav-check:checked + .popnav-label .popnav-icon:after {
  top: 0;
  transform: rotate(135deg);
}

.popnav-check:checked + .popnav-label .popnav-icon:before {
  top: 0;
  transform: rotate(225deg);
}

.nav {
  z-index: 1000;
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
}

.navlogobox {
  padding: 1.2rem 3rem;
  line-height: 1;
}

.logo {
  width: 4.5rem;
}

@media (width <= 37.5em) {
  .logo {
    width: 6rem;
  }
}

.navlist {
  color: #fff;
  align-items: center;
  gap: 2rem;
  margin-right: 3rem;
  list-style: none;
  display: flex;
}

.navlist__listitem {
  align-items: center;
  height: 100%;
  margin-bottom: 2px;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  list-style: none;
  display: flex;
  position: relative;
}

.navlist__listitem:before {
  content: "";
  background-color: #6186dc59;
  width: 3px;
  height: 100%;
  transition: transform 0.4s, width 0.6s cubic-bezier(1, -0.01, 0, 1) 0.2s,
    color 1s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0);
}

.navlist__listitem:hover:before {
  width: 100%;
  transform: scaleY(1);
}

.navlist__link:link,
.navlist__link:visited {
  z-index: 10;
  color: currentColor;
  text-decoration: none;
  position: relative;
}

.navlist__link:hover,
.navlist__link:active {
  color: currentColor;
  text-decoration: none;
}

.main {
  max-width: 100%;
  height: 100vh;
  position: relative;
}

.main-logobox {
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 50%;
  padding: 0 5rem;
  display: flex;
  position: absolute;
  top: 45%;
}

@media (width <= 75em) {
  .main-logobox {
    max-width: 60%;
    top: 40%;
    transform: translateY(-50%);
  }
}

@media (width <= 56.25em) {
  .main-logobox {
    max-width: 200%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (width <= 37.5em) {
  .main-logobox {
    max-width: 200%;
    top: 57%;
    transform: translateY(-50%);
  }
}

.headerlogo {
  max-width: 100%;
  animation-name: moveleft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  display: block;
  position: relative;
  left: 0%;
}

.button {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
}

@media (width <= 75em) {
  .button {
    top: 55%;
  }
}

@media (width <= 56.25em) {
  .button {
    top: 60%;
  }
}

@media (width <= 37.5em) {
  .button {
    top: 68%;
  }
}

.link:link,
.link:visited {
  color: #fff;
  text-transform: uppercase;
  background-color: #3a4e95;
  border-radius: 0.2rem;
  padding: 1rem 4rem;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.5s;
  animation: 1s movert;
}

.link:link:hover,
.link:visited:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 10px 3px #1638c289;
}

.link:link:active,
.link:visited:active {
  color: #5ea7fa;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px #72737489;
}

.slogan {
  color: #f0f8ff;
}

.nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #52525263;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header {
  clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  background-image: linear-gradient(to right, #fff0, #00000067),
    url("hero3kweb.da71825b.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  margin-bottom: 4rem;
  position: relative;
}

.section {
  background-color: #f0f8ff;
}

.sec3 {
  min-height: 80vh;
}

.footer {
  background: linear-gradient(45deg, #021035, #518dbb);
  max-width: 100%;
  min-height: 40vh;
}

:root {
  --col1: #989;
}

.section__heading {
  color: #0000;
  background: linear-gradient(45deg, #000, #076eff);
  -webkit-background-clip: text;
  margin-bottom: -1rem;
  font-size: 4.5rem;
  transition: all 0.5s;
  display: inline-block;
}

.section__heading:hover {
  text-shadow: 0 12px 15px #20202071;
  background-color: #8e6a3a;
  transform: translateY(-0.5rem);
}

.section__subhead {
  color: #5a5a5a;
  margin-bottom: 2.5rem;
  font-size: 3rem;
}

.section__subhead:hover {
  transition: all 0.5s;
}

.section__textbox {
  flex-shrink: 0;
  width: 50%;
  padding: 5rem;
  font-size: 1.8rem;
}

@media (width <= 37.5em) {
  .section__textbox {
    width: 100%;
    padding: 5rem 8rem;
  }
}

.section__imagebox {
  width: 50%;
  padding: 0 7rem;
}

@media (width <= 37.5em) {
  .section__imagebox {
    width: 80%;
    padding-top: 5rem;
  }
}

.section__image {
  max-width: 100%;
}

.sec1 {
  align-items: center;
  overflow: hidden;
}

@media (width <= 37.5em) {
  .sec1 {
    flex-direction: column;
  }
}

.sec2 {
  align-items: center;
  display: flex;
}

@media (width <= 37.5em) {
  .sec2 {
    flex-direction: column-reverse;
  }
}

.imagebox {
  flex: 0 0 50%;
  width: 100%;
  min-height: 50rem;
  position: relative;
}

.imagebox-photo {
  z-index: 10;
  width: 50%;
  transition: all 0.5s;
  position: absolute;
}

.imagebox-photo--1 {
  top: 5%;
  left: 25%;
}

.imagebox-photo--2 {
  top: 25%;
  left: 5rem;
}

.imagebox-photo--3 {
  top: 20%;
  right: 5rem;
}

.imagebox-photo--4 {
  top: 25rem;
  left: 26%;
}

.imagebox-photo:hover {
  z-index: 20;
  transform: scale(1.1);
}

.imagebox-photo:not(:hover),
.imagebox:hover .imagebox-photo:not(:hover) {
  transform: scale(0.9);
}

.sec2-5 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.sec2-5-wrap {
  text-align: center;
}

.images {
  place-content: center;
  gap: 5rem;
  display: flex;
}

.images-sub {
  justify-content: center;
  gap: 5rem;
  display: flex;
}

@media (width <= 37.5em) {
  .images {
    flex-direction: column;
  }
}

.image {
  line-height: 0;
  transition: transform 1s cubic-bezier(0.2, 0, 0.29, 1.5);
  display: block;
  box-shadow: 0 0 20px #a2a2a2;
}

.image:hover {
  transition-delay: 0s;
  transform: scale(1.5);
}

.imagez {
  height: 50rem;
}

.sec3 {
  background-image: url("Background.1daab3e9.webp");
  background-position: center;
  background-size: cover;
  align-items: center;
  padding: 10rem 0;
  transform: skewY(-3deg);
}

.cardcont {
  perspective: 100rem;
  justify-content: space-evenly;
  align-items: center;
  gap: 7rem;
  max-width: 100rem;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
}

.cardcont-skew {
  transform: skewY(3deg);
}

@media (width <= 37.5em) {
  .cardcont {
    flex-direction: column;
  }
}

.card {
  text-align: center;
  background-color: #c6e3fe;
  border-radius: 1rem;
  flex: 0 0 30%;
  padding: 4rem;
  transition: all 0.4s;
}

@media (width <= 37.5em) {
  .card {
    max-width: 50%;
  }
}

.card-img {
  width: 13rem;
  height: 13rem;
}

.card-head {
  font-size: 2rem;
}

.card-desc {
  font-size: 1.5rem;
}

.card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 0 3rem #235cfb;
}

.sec4 {
  min-height: 100vh;
  margin-top: -5vh;
  padding-bottom: 5vh;
  display: flex;
}

.subsec4 {
  flex: 0 0 100%;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  max-width: 120rem;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
}

@media (width <= 37.5em) {
  .subsec4 {
    flex-direction: column;
    min-height: 120vh;
    margin-top: 10vh;
  }
}

.cardflip {
  flex: 1 0 20%;
}

@media (width <= 37.5em) {
  .cardflip {
    flex: 0 0 30%;
    width: 30rem;
    height: auto;
  }
}

.cardr {
  perspective: 90rem;
  color: #2a2a2a;
  min-height: 30rem;
  padding-top: 15rem;
  position: relative;
}

.cardr__side {
  backface-visibility: hidden;
  border-radius: 1rem;
  width: 100%;
  min-height: 50rem;
  transition: all 1s;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 0 0 5rem #0000003f;
}

.cardr__side--front {
  background: linear-gradient(to bottom right, #5a9ff9, #fbfbfb);
}

.cardr__side--back {
  color: #fff;
  background: linear-gradient(to bottom right, #5a8ff9, #0e1833);
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 2rem;
  display: flex;
  transform: rotateY(-180deg);
}

.cardr:hover .cardr__side--front {
  transform: rotateY(180deg);
}

.cardr:hover .cardr__side--back {
  transform: rotateY(0);
}

.cardr-img {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  width: 100%;
}

.cardr-desc {
  text-align: center;
  padding: 1rem 2rem 3rem;
}

.cardr-desc-head {
  color: #fff;
  background: linear-gradient(to bottom right, #0097fb, #0e1833);
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 1rem 4rem;
  display: inline-block;
}

.cardr-desc-head-back {
  text-align: center;
  min-height: 100%;
  padding-bottom: 3rem;
  font-size: 2rem;
}

.cardr-desc-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
  list-style: none;
  display: flex;
}

.cardr-desc-info li {
  text-transform: uppercase;
  padding: 0.5rem 0;
}

.cardr-desc-info li:not(:last-child) {
  border-bottom: 1px solid #00000035;
}

.cardr-desc-info-back {
  text-align: center;
  font-size: 8rem;
}

.cardr-desc-back {
  justify-content: space-between;
  min-height: 100%;
  display: flex;
}

.pr {
  color: #2f539a;
  text-align: center;
  border: 2px solid #74a4f5;
  border-radius: 3rem;
  width: 50%;
  margin-top: 1rem;
  padding: 0.5rem 3rem;
  font-size: 1.6rem;
  display: inline-block;
}

@keyframes moveleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  80% {
    opacity: 0.8;
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes movert {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    opacity: 0.8;
    transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (width <= 50rem) {
  .popnav {
    z-index: 2000;
    display: block;
  }

  .navlist {
    display: none;
  }
}

.center {
  text-align: center;
}

.width {
  width: clamp(60%, 80%, 120rem);
}

.neg-marg {
  margin-top: -10vh;
}

.noborder {
  border: none !important;
}

.footer {
  background: linear-gradient(45deg, #021035, #518dbb);
}

.footer-sub {
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  min-height: 40vh;
  padding: 4rem 4rem 1rem;
  display: flex;
}

@media (width <= 37.5em) {
  .footer-sub {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
}

.footer-logobox {
  flex: 0 0 35%;
  padding: 2rem;
}

@media (width <= 56.25em) {
  .footer-logobox {
    flex: 0 0 50%;
  }
}

.footer-logo {
  width: 90%;
}

.footer-desc {
  letter-spacing: 2px;
  text-align: center;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: #fff;
  margin-top: 1rem;
  font-size: 1.2rem;
}

@media (width <= 37.5em) {
  .footer-list {
    gap: 2rem;
    display: flex;
  }
}

.footer-listitem {
  z-index: 1;
  list-style: none;
  position: relative;
}

.footer-listitem-contact {
  letter-spacing: 3px;
  color: #f1f1f1;
  font-size: 1.3rem;
  list-style: none;
}

.footer-listitem:before {
  z-index: -1;
  content: "";
  background-color: #f1f1f1;
  width: 1px;
  height: 0;
  transition: width 0.6s cubic-bezier(0.77, -0.01, 0.16, 0.99) 0.6s, height 0.6s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-listitem:hover:before {
  width: 100%;
  height: 100%;
}

.footer-listitem:hover .footer-links {
  color: #030721;
}

.footer-links:link,
.footer-links:visited {
  text-align: center;
  letter-spacing: 1rem;
  color: #fff;
  padding: 2rem;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 2s;
  display: inline-block;
}

.footer-links:hover,
.footer-links:active {
  color: #030721;
}

.footer-contact {
  text-align: center;
  justify-content: center;
  gap: 10rem;
  padding: 0 0.5rem 2rem;
  display: flex;
}

@media (width <= 37.5em) {
  .footer-contact {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
}

.footer-social {
  text-align: center;
  justify-content: center;
  gap: 3.5rem;
  padding-bottom: 4rem;
  display: flex;
}

@media (width <= 37.5em) {
  .footer-icons {
    gap: 4rem;
    height: 2rem;
  }
}

.footer-img {
  height: 2rem;
}

@media (width <= 37.5em) {
  .footer-img {
    height: 1.5rem;
  }
}

.flex {
  color: #fff;
  letter-spacing: 1rem;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
}

@media (width <= 37.5em) {
  .flex {
    border: none;
    flex: 0 0 60%;
    padding: 0.5rem 1rem;
  }
}

.highsadf {
  background-color: #030721;
}

.page {
  position: relative;
}

.grid {
  display: grid;
}

.grid2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid4 {
  grid-template-columns: repeat(4, 1fr);
}

.gridcent {
  place-items: center;
}

.grid-gap {
  gap: 3rem;
}

.hero {
  clip-path: ellipse(100% 55% at 48% 44%);
  background: linear-gradient(45deg, #030a1e, #3e8ecc);
  align-content: center;
  align-items: center;
  min-height: 100vh;
}

@media (width <= 56.25em) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-desc {
  /* padding: 6rem; */
}

@media (width <= 56.25em) {
  .hero-desc {
    text-align: center;
  }
}

.hero-head {
  background: linear-gradient(to right bottom, #019eff, #a200ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* color: #fff; */
  padding: 3rem;
  font-size: 5rem;
  line-height: 1.3;
}

.hero-details {
  padding: 1rem 3rem;
  color: #fff;
  font-size: 2rem;
}

.hero-img {
  filter: brightness(95%);
  padding: 5rem;
}

@media (width <= 56.25em) {
  .hero-img {
    padding: 15rem;
  }
}

.mockup {
  width: 100%;
}

.features {
  text-align: center;
  padding: 10rem 0;
}

.features-heading {
  padding: 0rem 2rem;
  letter-spacing: 1rem;
  color: #1d367c;
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
  line-height: 6rem;
}

.features-desc {
  margin: 2rem auto 0 auto;
  font-size: 1.8rem;
}

.features-row {
  justify-content: center;
  margin: 5rem auto 0;
}

@media (width <= 56.25em) {
  .features-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15rem;
    padding: 0 10rem;
  }
}

@media (width <= 37.5em) {
  .features-row {
    grid-template-columns: 1fr;
    row-gap: 10rem;
  }
}

.card-grid {
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  align-items: center;
  width: 90%;
  min-height: 40rem;
  padding: 5rem 1.5rem;
  transition: translate 1s, background-image 1s;
  display: flex;
  box-shadow: 0 0 3rem #00000015;
}

.card-grid:hover {
  opacity: 0;
  translate: 0 -3rem !important;
}

@media (width <= 37.5em) {
  .card-grid {
    max-width: 35rem;
  }
}

.card-image {
  height: 14rem;
}

.card-description {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.7rem;
  font-weight: bold;
}

.card-description-sm {
  text-transform: none;
  padding: 2rem;
  font-size: 1.6rem;
}

.email-row {
  gap: 2rem;
  margin: 5rem 0;
}

@media (width <= 56.25em) {
  .email-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6rem;
    padding: 0 10rem;
  }
}

@media (width <= 37.5em) {
  .email-row {
    grid-template-columns: 1fr;
    row-gap: 6rem;
  }
}

.email-cont {
  background-color: #ebebeb;
  border-radius: 2rem;
  justify-content: center;
  width: 90%;
  min-height: 30rem;
  padding: 2rem;
  display: flex;
}

@media (width <= 37.5em) {
  .email-cont {
    max-width: 35rem;
  }
}

.email-image {
  height: 30rem;
}

.modal {
  z-index: 100;
  height: 90%;
  transition: all 0.5s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.modalimage {
  z-index: 9000;
  height: 100%;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-close {
  color: #fff;
  background: #e5e5e5;
  width: 3rem;
  height: 3rem;
  position: fixed;
  top: 50vh;
  left: 30vh;
}

.bg {
  height: 11rem;
}

.sm {
  height: 8rem;
  margin-top: 0.5rem;
}

.close-modal {
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 5rem;
  position: absolute;
  top: 1.2rem;
  right: 2rem;
}

.modalmain {
  z-index: 10;
  background-color: #fff;
  border-radius: 5px;
  width: 70%;
  max-height: 50rem;
  padding: 6rem;
  transition: all 1s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 3rem 5rem #0000004d;
}

.terms {
  overflow: scroll;
}

.overlay {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 5;
  background-color: #0009;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  left: 0;
}

.term-heading {
  font-weight: bold;
}

.hero2 {
  background-image: url("alt-hero-content.5ad3f44f.webp");
  background-position: 60%;
  background-size: cover;
  min-height: 100vh;
}
.hero2-head {
  background: linear-gradient(to right bottom, #ff6a00, #ff0084);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* color: #fff; */
  padding: 3rem;
  font-size: 5rem;
  line-height: 1.3;
}

.slider-cont {
  width: 100%;
  padding: 10rem 5rem;
}

@media (width <= 37.5em) {
  .slider-cont {
    min-height: 10rem;
  }
}

.slider {
  max-width: 120rem;
  min-height: 75rem;
  margin: 0 auto 0;
  position: relative;
  overflow: hidden;
}

@media (width <= 37.5em) {
  .slider {
    min-height: 37rem;
    margin-top: 5rem;
  }
}

.slide {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 10rem;
  transition: transform 1s;
  display: flex;
  position: absolute;
  top: 0;
}

.slide > img {
  border-radius: 5rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.slider__btn {
  z-index: 10;
  color: #333;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
  padding: 1.5rem;
  font-family: inherit;
  position: absolute;
  top: 50%;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  display: flex;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.dots__dot {
  opacity: 0.5;
  cursor: pointer;
  background-color: #595959;
  border: none;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  margin-right: 1.75rem;
  transition: all 0.5s;
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  opacity: 1;
  background-color: #032446;
}

/*# sourceMappingURL=index.b2625c6b.css.map */
