* {
  box-sizing: border-box;
  outline: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #002452;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 1.94px;
  font-size: 35px;
  line-height: 1;
}

.logo__wake {
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}

.logo__up {
  font-weight: 500;
  color: #fff;
}

.logo--footer .logo__wake {
  -webkit-text-stroke-color: #fff;
}

.logo--footer {
  font-size: 42px;
  letter-spacing: 2.36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid #fff;
  border-radius: 1000px;
  background: transparent;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}

.btn:hover {
  background: #fff;
  color: #002452;
  transition: 0.9s;
}

.btn--outline {
  padding: 18px 30px;
  font-size: 13px;
  letter-spacing: 0.52px;
}

.btn--sm {
  padding: 16px 27px;
  font-size: 12px;
  letter-spacing: 0.48px;
}

.btn--submit {
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.56px;
}

.btn--submit img {
  width: 19px;
  height: 11px;
}

/* Section title */
.section-title {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: capitalize;
  color: #002452;
}

/* Hero */
.hero {
  position: relative;
  min-height: 549px;
  background-color: #002452;
  padding: 30px 48px 60px;
  display: flex;
  flex-direction: column;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
}

.hero__title {
  margin: 0;
  line-height: 0;
  opacity: 0;
  animation: hero-fade-up 0.8s ease forwards;
}

.hero__title img {
  width: 100%;
  max-width: 524px;
  height: auto;
}

.hero__cta {
  opacity: 0;
  animation: hero-fade-up 0.7s ease 0.55s forwards;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Options */
.options {
  padding: 65px 0;
  background: #fff;
}

.options .section-title {
  margin-bottom: 35px;
}

.options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.option-card {
  border: 1px solid #b6bdc7;
  border-radius: 12px;
  padding: 39px 24px 32px;
  text-align: center;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-card__icon {
  width: 55px;
  height: 55px;
  margin-bottom: 36px;
}

.option-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.option-card__title {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #002452;
  margin-bottom: 10px;
  line-height: 25px;
}

.option-card__text {
  font-size: 21px;
  color: #3e5069;
  line-height: 30px;
}

.option-card__text strong {
  font-weight: 600;
}

/* Contact */
.contact {
  background-color: #002452;
  padding: 66px 0 80px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1020px;
}

.contact__title {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

.contact__underline {
  width: 114px;
  height: 5px;
  background: #fff;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-field {
  position: relative;
}

.form-field__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 12px 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #fff;
  resize: none;
}

.form-field__input::placeholder {
  color: #fff;
  opacity: 1;
}

.form-field--textarea .form-field__input {
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #fff;
  cursor: pointer;
}

.form-checkbox input {
  accent-color: #fff;
}

.status-message {
  font-size: 13px;
  color: #fff;
  margin: 0;
}

/* Team */
.team {
  padding: 65px 0;
  background: #fff;
}

.team .section-title {
  margin-bottom: 35px;
}

.team__grid {
  display: flex;
  justify-content: center;
  gap: 77px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 153px;
}

.team-card__photo {
  width: 153px;
  height: 145px;
  border: 1px solid #b6bdc7;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.team-card__name {
  font-size: 27px;
  font-weight: 500;
  color: #000;
  line-height: 32px;
}

.team-card__role {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #3e5069;
  line-height: 24px;
}

.team-card__socials {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.team-card__socials a {
  display: flex;
  width: 24px;
  height: 24px;
}

.team-card__socials img {
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background-color: #001633;
  padding: 57px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.72px;
  line-height: 26px;
}

.footer__nav a:hover {
  opacity: 0.8;
}
