:root {
  --orange: #ff7954;
  --dark-blue: #014f70;
  --white: white;
  --text: #000000;
  --blue-green: #194f67;
  --background-gray: #f9f9f9;
  --background-orange: #fff2ee;
  --background-blue: #e6eef1;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

/* layout */
.wrapper {
  width: 100%;
}

.container {
  max-width: 1140px;
  width: 90%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-fit {
  width: fit-content;
}

.relative {
  position: relative !important;
}

.overflow-hidden {
  overflow: hidden;
}

/* flex boxes */

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.items-start {
  align-items: start;
}

.items-stretch {
  align-items: stretch;
}

.flex-grow {
  flex-grow: 1;
}

.gap-xs {
  gap: 0.5rem;
}

.gap-s {
  gap: 1rem;
}

.gap-md {
  gap: 1.5rem;
}

.opacity-0 {
  opacity: 0;
}

/* text */

.h1 {
  font-family: "Content", system-ui;
  font-weight: bold;
  font-size: 65px;
  line-height: 1em;
}

.h2 {
  font-family: "Content", system-ui;
  font-weight: bold;
  font-size: 50px;
  line-height: 1em;
}

.titles {
  font-family: "Content", system-ui;
  font-weight: bold;
  font-size: 22px;
  line-height: 1em;
}

.p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.sub-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.link {
  text-decoration: none;
  color: var(--dark-blue);
}

.link:hover {
  color: var(--orange);
}

.text-white {
  color: var(--white);
}

.text-orange {
  color: var(--orange);
}

.text-blue {
  color: var(--dark-blue);
}

.text-black {
  color: var(--text);
}

.text-center {
  text-align: center;
}

.no-text-decorations {
  text-decoration: none;
}

/* elements */

.btn {
  font-size: 16px;
  border: 1px solid var(--dark-blue);
  padding: 0.8rem 2rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background-color: var(--dark-blue);
}

.btn-primary:hover {
  color: var(--dark-blue);
  background-color: var(--white);
}

.btn-secondary {
  color: var(--dark-blue);
  background-color: var(--white);
}

.btn-secondary:hover {
  color: var(--white);
  background-color: var(--dark-blue);
}

@media (min-width: 640px) and (max-width: 1023px) {
  .h1 {
    font-size: 45px;
  }

  .h2 {
    font-size: 35px;
  }

  .titles {
    font-size: 16px;
  }

  .p {
    font-size: 14px;
  }

  .sub-text {
    font-size: 11px;
  }
}

@media (max-width: 639px) {
  .h1 {
    font-size: 42px;
  }

  .h2 {
    font-size: 28px;
  }

  .titles {
    font-size: 20px;
  }

  .p {
    font-size: 14px;
  }

  .sub-text {
    font-size: 11px;
  }

  .btn {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
  }
}
