@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Lato", sans-serif;
  background-image: url("../img/12.jpg");
  background-size: cover;
  margin: 0;
  padding: 0;
  color: #1c1413;
}
@media (max-width: 1100px) {
  body {
    font-size: calc(5px + 1.5vw);
  }
  body h1,
  body h2 {
    font-size: calc(10px + 1.5vw);
  }
  body p {
    font-size: initial;
  }
}
body main {
  overflow: hidden;
}

h1,
h2,
label {
  white-space: nowrap;
}

h1 {
  font-weight: 900;
}

h2 {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #1c1413;
}

header {
  background-color: rgba(171, 212, 247, 0.75);
  display: flex;
  padding: 1vh 15vw;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
header .logo__container {
  width: 7vw;
  height: 7vw;
  max-height: 70px;
  max-width: 70px;
}
header .logo__container .logo {
  width: 100%;
  height: 100%;
}
header .nav ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
}
header .nav ul li {
  font-weight: 900;
}
header .nav ul li:hover {
  text-decoration: underline;
}

footer {
  background-color: rgba(171, 212, 247, 0.75);
  padding: 1vh 15vw;
  display: flex;
  flex-direction: column;
}
footer #contact {
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
  font-weight: 900;
  margin-bottom: 1vh;
}
@media (max-width: 1100px) {
  footer #contact {
    display: none;
  }
}
footer .footer__contact__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .footer__contact__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
footer .footer__contact__container .map-container {
  padding-right: 5vw;
  width: 34vw;
  max-height: 340px;
  max-width: 660px;
  min-height: 120px;
  min-width: 240px;
  aspect-ratio: 16/9;
}
@media (max-width: 1100px) {
  footer .footer__contact__container .map-container {
    padding: 0;
  }
}
footer .footer__contact__container .map-container .map {
  height: 100%;
  width: 100%;
}
footer .footer__contact__container .footer__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1100px) {
  footer .footer__contact__container .footer__contact {
    display: none;
  }
}
footer .footer__contact__container .footer__contact .contact-title {
  font-weight: 900;
}
footer .footer__contact__container .footer__contact span {
  padding: 1vh 0;
}
footer .footer__contact__container .footer__contact__address {
  display: flex;
  flex-direction: column;
}
footer .footer__contact__container .footer__logo {
  max-height: 10vh;
  max-height: 100%;
  translate: 30%;
}
@media (max-width: 1100px) {
  footer .footer__contact__container .footer__logo {
    display: none;
  }
}
footer .footer__contact__container .footer__logo img {
  width: 100%;
}
footer .footer__line {
  display: block;
  height: 2px;
  background-color: #1c1413;
  margin: 1vh 0;
  border-radius: 1px;
}
footer .footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer__nav .nav-list {
  list-style: none;
  margin: 0;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-evenly;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
  font-weight: 700;
}
footer .footer__nav .legal {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 700px) {
  footer .footer__nav .legal__copyright, footer .footer__nav .legal__notices {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */