body {
  font-family: "Poppins";
}

.hero-container {
  background: linear-gradient(28.25deg, #005683 20.94%, #238abe 65.96%);
}

.footer-container {
  background: linear-gradient(0.9deg, #005683 31.89%, #238abe 109.12%),
    linear-gradient(0deg, #707070, #707070);
  font-family: "Poppins";
}

.about-container {
  background: linear-gradient(31.94deg, #005683 38.44%, #238abe 102.48%);
}

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

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

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

/* navbar */
.navbar-container {
  background: transparent;
  background-color: inherit;
  position: inherit;
  width: 100%;
  top: 0;
  transition: background-color 0.3s ease;
  isolation: isolate;
}

.navbar-gradient {
  background: #005683;
  position: fixed;
  width: 100%;
  top: 0;
  transition: background-color 0.3s ease;
}

.menu-content {
  list-style-type: none;

  /* Remove bullets */
  padding: 0;

  /* Remove padding */
  margin: 0;

  /* Remove margins */
}

.menu-content li {
  transition: all 0.2s ease-in-out;
}

.menu-content li:hover {
  transform: scale(0.95);
}

.menu-content li a {
  color: white !important;
  text-decoration: none;
}

.mobile-menu-close-icon {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-size: 2rem;
  color: white;
}

.mobile-menu-close-icon:hover,
.burger-menu:hover {
  cursor: pointer;
  opacity: 0.7;
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(28.25deg, #005683 20.94%, #238abe 65.96%);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-container ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  font-size: 1.4em;
}

.mobile-menu-container ul li a {
  color: white;
  text-decoration: none;
}

.navbar-hidden {
  display: none;
}

/* text elements */
.title {
  font-family: Poppins;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
}

.text {
  font-family: Poppins;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: center;
}

.category {
  display: block;
  font-family: Poppins;
  font-size: 19px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
}

.subtitle-h2 {
  font-family: Poppins;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0em;
}

.subtitle-h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
}

.subtitle-orange {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #e8490e;
}

.blue-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #435288;
}

a.blue-text:hover {
  color: #435288;
  opacity: 0.7;
}

.footer-title {
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 55px;
}

.footer-text {
  font-family: Poppins;
  font-size: 19px;
  line-height: 29px;
  letter-spacing: 0em;
}

.orange-text {
  color: #e8490e;
}

.link:hover,
.ul-no-bullets li a:hover {
  color: white;
  opacity: 0.7;
}

.ul-no-bullets {
  list-style-type: none;
  padding: 0;
}

.ul-no-bullets li {
  opacity: 0.7;
}

.ul-no-bullets li a {
  color: white;
  text-decoration: none;
}

.svg-list {
  list-style-type: none;
  padding-left: 0;
}

.svg-list li:before {
  content: "";
  display: inline-block;
  width: 20px;

  /* set width of your SVG */
  height: 20px;

  /* set height of your SVG */
  margin-right: 5px;

  /* add some spacing between SVG and text */
  background: url("./images/check.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

  /* align SVG and text vertically */
  margin-top: 4px;
}

.svg-list li:last-child:before {
  content: "";
  display: inline-block;
  width: 20px;

  /* set width of your SVG */
  height: 20px;

  /* set height of your SVG */
  margin-right: 5px;

  /* add some spacing between SVG and text */
  background: url("./images/plus.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

  /* align SVG and text vertically */
  margin-top: 4px;
}

.disabled-link:hover {
  opacity: 0.7;
  cursor: not-allowed;
}

/* cards */
.features-card {
  border-radius: 12px;
  box-shadow: 0px 1px 3px 3px #00000029;
  flex: 1;
  flex-grow: 1;
}

.solution-container {
  box-shadow: 0px 1px 3px 3px #00000029;
  border-radius: 12px;
}

.solution-container-blue {
  background-color: #155f85;
  color: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.code-container {
  background-color: #0a0f24;
  color: white;
  border-radius: 12px;
  font-size: 0.8rem;
  background-color: white;
  color: black;
  min-height: 280px;
}

.why-container {
  box-shadow: 0px 1px 3px 3px #00000029;
  border-radius: 12px;
  width: 100%;
}

.adjustable-feature {
  font-family: Poppins;
  font-size: 19px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
  color: #0d142f;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* buttons */
.contact-btn {
  background-color: #e8490e;
  color: white;
  border: 1px solid #e8490e;
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease-in-out;
}

.contact-btn:hover {
  background-color: #e8490e;
  border: 1px solid #e8490e;
  opacity: 1;
  transform: scale(0.95);
}

.login-btn {
  background-color: transparent;
  color: white;
  border: 2px solid #e8490e;
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease-in-out;
}

.login-btn:hover {
  /* border: 1px solid #e8490e; */
  transform: scale(0.95);
}

.orange-btn-style {
  background-color: #e8490e;
  color: white;
  border: 1px solid #e8490e;
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease-in-out;
}

.primary-button-blue {
  background-color: #1d5582;
  color: white;
  border: 1px solid #1d5582;
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease-in-out;
}

.secondary-button-blue {
  background-color: transparent;
  color: #1d5582;
  border: 2px solid #1d5582;
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease-in-out;
}

/* features */
.unbreakable {
  white-space: nowrap;
}

/* hero section */
.hero-div {
  background-image: url("images/hero_globe.svg");
  background-repeat: no-repeat;
  background-size: 250%;
  background-position-x: 45%;
  background-position-y: 165%;
}

.cookie-consent {
  position: fixed;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 41;
  padding: 60px;
  align-items: flex-end;
  justify-content: center;
}

.cookie-consent > div {
  background-color: white;
  width: 80%;
  /* margin: auto; */
  position: sticky;
  bottom: 60px;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  gap: 1rem;
}

.cookie-consent p,
.cookie-consent a {
  color: #1d5582;
}

.cookie-consent a:hover {
  color: #1d5582;
  opacity: 0.8;
}

.cookie-consent svg {
  height: fit-content;
}

.consent-buttons {
  display: flex;
  flex-direction: column;
  flex-basis: max-content;
  justify-content: flex-start;
  gap: 1rem;
}

.consent-buttons button {
  white-space: nowrap;
}

.first-consent-container {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .text {
    font-family: Poppins;
    font-size: 19px;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
  }

  .title {
    font-family: Poppins;
    font-size: 48px;
    line-height: 72px;
    letter-spacing: 0em;
    text-align: left;
  }

  .why-container {
    flex: 1;
    flex-shrink: 1;
  }

  .subtitle-h2 {
    font-size: 48px;
    line-height: 55px;
  }

  .code-container {
    font-size: 1rem;
    min-height: 400px;
  }

  .hero-div {
    /* background-image: url("images/hero_globe.svg");
    background-repeat: no-repeat; */
    background-size: 180%;
    background-position-x: -4.5%;
    background-position-y: 2rem;
  }
}

@media (max-width: 767px) {
  .features-card {
    min-height: 13rem;
  }

  .cookie-consent {
    padding: 10px;
  }

  .cookie-consent > div {
    flex-direction: column;
    min-width: 90%;
    width: fit-content;
    align-items: center;
  }

  .first-consent-container {
    display: flex;
    gap: 1rem;
  }
}
