/* -- Roboto-Family -- */
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* -- Drephonic-Family -- */
@font-face {
  font-family: "Drephonic";
  src: url("../font/drephonic.ttf") format("truetype");
  font-style: normal;
}

/* -- Poppins-Family -- */
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
}

:root {
  --background: #f6f6f6;
  --primary: #01e5a0;
  --primary-hover: #27cb98;
  --text: #27282d;
  --secondary: #061f39;
  --text-white: #ffffff;
}

body {
  margin: 0;
  width: 100vw;
}

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

html,
body {
  height: 100vh;
  overflow-x: hidden;
}

*,
body {
  box-sizing: border-box;
  font-family: "Drephonic", "Arial", sans-serif;
  color: var(--text);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 1rem;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 10px;
  padding-right: 5px;
}

::-webkit-scrollbar-track {
  background-color: white;
  margin-top: 6.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #65a3cc;
  border-radius: 5px;
  border: 2px solid white;
  background-clip: initial;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #061f39;
}

.hero-container {
  width: 100%;
  background-color: #112439;
  margin-top: 6.5rem;
  padding: 10rem 0 10rem 0;
}

.hero-container > div {
  margin: auto;
  padding: 0 5rem;
  max-width: 159rem;
}

.back-link,
.back-link > a {
  color: white;
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 3.5rem;
}

.back-link > a {
  text-decoration: underline;
}

.hero-content {
  display: flex;
  gap: 10rem;
  justify-content: space-between;
}

.hero-content > div {
  flex: 1;
  max-width: 50%;
}

.hero-content > .hero-imgs {
  position: relative;
}

.hero-content h4 {
  font-size: 7rem;
  line-height: 8rem;
  color: white;
  margin: 0;
  font-weight: 400;
}

.hero-subheader {
  color: var(--primary);
}

.hero-content h4.hero-subheader {
  color: var(--primary);
  margin-bottom: 3rem;
}

.hero-desc {
  color: white;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-family: "Roboto";
  font-weight: 300;
  margin-bottom: 11.5rem;
  white-space: nowrap;
}

.hero-content .btn-primary {
  padding: 2rem 6rem;
}

.content {
  width: 95%;
  margin: auto;
  padding: 10rem 5rem;
  max-width: 159rem;
}

.content > h4 {
  color: var(--secondary);
  font-size: 4.5rem;
  line-height: 5.5rem;
  text-align: center;
  margin: 0;
  margin-bottom: 10rem;
  white-space: nowrap;
  font-weight: 400;
}

.blue-box {
  background: #c4ddff;
  border-radius: 1.5rem;
  padding: 4rem 4.4rem;
  margin: 6rem auto;
  width: 95%;
  max-width: 159rem;
  display: flex;
  justify-content: space-between;
}

.blue-box h4 {
  color: #112439;
  font-size: 4rem;
  font-weight: 400;
  line-height: 6.7rem;
  margin-top: 0;
  margin-bottom: 0;
}

.blue-box button {
  padding: 2rem 6rem;
  color: #061f39;
  font-size: 1.8rem;
  line-height: 2rem;
}

@media (max-width: 1700px) {
  .hero-container > div,
  .blue-box {
    max-width: 133rem;
  }

  .hero-content {
    gap: 5rem;
  }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .hero-container > div,
  .blue-box {
    max-width: 113rem;
  }

  .hero-desc {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 7.5rem;
    white-space: initial;
  }

  .hero-content h4 {
    font-size: 5rem;
    line-height: 6rem;
  }

  .content > h4 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }

  .blue-box h4 {
    font-size: 3.3rem;
  }

  .blue-box h4 span {
    font-size: 5rem;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
  .hero-container > div,
  .blue-box {
    max-width: 93rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-desc {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 7.5rem;
    white-space: initial;
  }

  .hero-content h4 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .hero-desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .content > h4 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .blue-box h4 {
    font-size: 2.5rem;
  }

  .blue-box h4 span {
    font-size: 4rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-container > div {
    max-width: 75rem;
    padding: 0 3rem;
  }

  .hero-desc {
    margin-bottom: 4.5rem;
  }

  .content > h4 {
    font-size: 2.1rem;
    line-height: 3rem;
    margin-bottom: 7.5rem;
  }

  .blue-box {
    max-width: 75rem;
    padding: 2rem 2.5rem;
    text-align: center;
  }

  .blue-box h4 {
    font-size: 3rem;
    line-height: 4.2rem;
  }

  .blue-box h4 span {
    font-size: 4rem;
    line-height: 4.2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-content > div {
    max-width: 100%;
    text-align: center;
  }

  .content {
    padding: 5rem 1rem;
  }

  .content > h4 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 5rem;
    white-space: initial;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
