.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 1rem;
  font-family: DM Serif Text, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: DM Serif Text, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.home-hero {
  color: #fff;
  max-height: 60dvh;
  display: none;
  position: relative;
  overflow: hidden;
}

.home-img {
  width: 97%;
}

.hero-gradient {
  z-index: 1;
  background-image: radial-gradient(circle at 70% -50%, #01b5a5 24%, #104a7c 58%, #002638 87%);
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: absolute;
  inset: 0%;
}

.svg, .svg-2 {
  width: 100%;
}

.hero-base {
  z-index: 3;
  color: #fff;
  clip-path: polygon(0 150px, 100% 20px, 100% 100%, 0 100%);
  justify-content: center;
  height: 100dvh;
  display: flex;
  position: relative;
  transform: none;
}

.hero-white-bg {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: absolute;
  top: 0;
}

.hero-end-overlay {
  background-color: #01b5a5;
  width: 3%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.navbar {
  z-index: 2;
  background-color: #fff;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  top: 0;
  left: 0;
}

.brand {
  width: 250px;
}

.hidden {
  display: none;
}

.container {
  max-width: none;
  padding-left: 3rem;
  padding-right: 3rem;
}

.hero-content-overlay {
  justify-content: flex-start;
  align-items: center;
  padding-left: 3rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-content-inner {
  border-left: 1px solid #fff;
  padding-left: 3rem;
}

.container-2 {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-left: 3rem;
  margin-right: 3rem;
  display: flex;
  position: relative;
}

.link-white {
  color: #fff;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.5rem;
  }

  .hero-base {
    clip-path: polygon(0 120px, 100% 50px, 100% 100%, 0 100%);
  }

  .hidden {
    display: none;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-base {
    clip-path: polygon(0 100px, 100% 50px, 100% 100%, 0 100%);
  }

  .brand {
    width: 200px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content-inner {
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .hero-base {
    clip-path: polygon(0 100px, 100% 80px, 100% 100%, 0 100%);
  }
}


