html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --theme-primary: #ffffff;
  --theme-secondary: #090909;
  --theme-text: #070707;
  --theme-accent: #3997F7;
  --theme-accent-two: #002583;
  --theme-accent-three: #005DBC;
  --theme-accent-four: #eff7ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
}

.btn {
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  line-height: .875rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .3s ease-in-out;
}

.btn:hover {
  filter: saturate(1.5);
}

.btn--primary {
  color: var(--theme-primary);
  background-color: var(--theme-accent);
  border-color: var(--theme-accent);
}

.btn--secondary {
  color: var(--theme-accent-three);
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}

.btn--tertiary {
  color: var(--theme-primary);
  background-color: var(--theme-accent-three);
  border-color: var(--theme-accent-three);
}

.btn--outline {
  color: var(--theme-primary);
  background-color: transparent;
  border-color: var(--theme-primary);
}

.title {
  font-size: 2rem;
  font-weight: 600;
}

.title--primary {
  color: var(--theme-primary);
}

.title--primary .resalt {
  color: var(--theme-accent);
}

.title--secondary {
  color: var(--theme-secondary);
}

.title--secondary .resalt {
  color: var(--theme-accent-three);
}

.title--tertiary {
  color: var(--theme-accent-two);
}

.title--tertiary .resalt {
  color: var(--theme-accent);
}


/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.header__logo {
  aspect-ratio: 251/89;
}

.header__logo img {
  width: 100%;
  max-width: 9.375rem;
  height: auto;
  aspect-ratio: 251/89;
}

.menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  list-style: none;
}

.menu__item {
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--theme-secondary);
}

@media (width >=768px) {
  .menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}

@media (width >=1024px) {
  .header__logo img {
    max-width: 12.5rem;
  }
}


/* FOOTER */
.footer {
  color: var(--theme-primary);
  background-color: var(--theme-accent);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 1rem;
}

.footer__texts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 3rem;
  align-items: flex-start;
}

.footer__cta .content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer__cta .content div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__cta span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--theme-accent-two);
  background-color: var(--theme-primary);
  border-radius: 9999px;
}

.footer__cta span svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer__copyright {
  text-align: center;
}

.schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  color: var(--theme-accent);
  text-align: center;
  border-radius: 2.5rem;
  background-color: var(--theme-accent-four);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}

.schedule__title {
  width: 100%;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--theme-accent-two);
  background-color: var(--theme-primary);
  border-radius: 9999px;
}

.schedule__paragraph {
  color: #7495BC;
}

.schedule__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  list-style: none;
}

.schedule__list .resalt {
  font-weight: 500;
  color: var(--theme-accent-two);
}

.schedule hr {
  width: 100%;
  border-color: #737EAC;
}

.schedule__emergency {
  font-weight: 500;
}

.schedule__socials {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  list-style: none;
}

.schedule__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--theme-accent-three);
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid var(--theme-accent-three);
}

@media (width >=768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .schedule {
    width: 45%;
    max-width: 320px;
  }

  .footer__texts {
    flex-grow: 1;
    width: 55%;
  }

  .footer__copyright {
    text-align: right;
  }
}

@media (width >=1024px) {
  .footer__content {
    height: 330px;
  }

  .schedule {
    gap: 2rem;
    margin-top: -10rem;
  }

  .footer__cta {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}