body {
  font-family: "Montserrat", serif;
  background-color: #faf7f2;
  color: #222222;
  margin: 0;
}
body h1,
body h2 {
  font-family: "DM Serif Display", serif;
}
body .sectionTitle {
  font-size: 3rem;
  position: relative;
  display: inline-block;
}
body .sectionTitle::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222222;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}
body footer {
  text-align: right;
  font-size: 10px;
  padding: 12px;
}
body a {
  text-decoration: none;
  color: #222222;
}

@media (min-width: 37.5rem) {
  body .sectionTitle::after {
    width: 120%;
  }
}
@media (min-width: 90rem) {
  body .sectionTitle {
    font-size: 5rem;
  }
}
.header {
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  background-image: url("img/header-background.webp");
  height: 75vh;
  background-position: 70%;
  background-size: cover;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  z-index: 10;
}
.menu__logo {
  text-decoration: none;
  font-family: "DM Serif Display", serif;
  color: #faf7f2;
  letter-spacing: 0.1em;
  z-index: 3;
  width: 100px;
}
.menu__logo img {
  width: 100%;
}
.menu__navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-200%);
  z-index: 2;
  transition: all 1s ease-in-out;
}
.menu__navigation.show {
  transform: translateY(0);
  background-color: #529371;
}
.menu__navigation__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  gap: 24px;
  padding: 0;
}
.menu__navigation__links li {
  display: flex;
}
.menu__navigation__links li a {
  text-decoration: none;
  color: #faf7f2;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.menu__navigation__links li a:hover {
  color: #529371;
}
.menu__navigation__links li a.active {
  color: #529371;
}

.hamburger {
  display: flex;
  align-items: center;
  height: 24px;
  right: 36px;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
  position: fixed;
}
.hamburger__inner {
  transition: all 0.5s ease-in-out;
  border: 0;
  position: relative;
  width: 36px;
}
.hamburger__inner::before, .hamburger__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 2px solid #faf7f2;
  transition: all 0.5s ease-in-out;
}
.hamburger__inner::before {
  top: -6px;
}
.hamburger__inner::after {
  bottom: -6px;
}

.hamburger.show .hamburger__inner::before {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.show .hamburger__inner::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 62rem) {
  .menu {
    padding: 48px;
  }
  .menu__logo {
    width: 200px;
  }
  .menu__navigation {
    position: static;
    height: auto;
    transform: none;
    justify-content: flex-end;
  }
  .menu__navigation__links {
    flex-direction: row;
    margin: 0;
    gap: 24px;
  }
  .menu__navigation__links li a {
    font-size: 1.2rem;
  }
  .hamburger {
    display: none;
  }
}
.strefa {
  text-align: center;
}
.strefa h1 {
  margin: 40px 0;
}
.strefa__ms {
  display: flex;
  justify-content: center;
  padding: 0 30px 20px;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
}
.strefa__ms p {
  margin: 4px 0;
}
.strefa__ms p:nth-last-of-type(1) {
  margin-top: 30px;
}
.strefa__ms span {
  margin: 10px 0;
  font-size: 1.2rem;
}
.strefa__ms___icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  padding: 6px 0;
}
.strefa__ms___icons___icon {
  width: 2rem;
}
.strefa__ms___icons___icon svg {
  width: 100%;
  fill: #222222;
  transition: all 0.5s ease-in-out;
}
.strefa__ms___icons___icon svg:hover {
  fill: #529371;
}
.strefa__ms a {
  transition: all 0.5s ease-in-out;
}
.strefa__ms a:hover {
  color: #529371;
}

.swiper {
  width: 100%;
  height: 60vh;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #529371;
}
.swiper .swiper-wrapper {
  height: 100%;
}
.swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  text-align: center;
  margin-top: 40px;
}
.about__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about__info___img {
  width: 100%;
  max-width: 600px;
}
.about__info___img img {
  width: 100%;
}
.about__info___txt {
  padding: 0 12px;
  max-width: 600px;
}

@media (min-width: 62rem) {
  .about__info {
    flex-direction: row;
  }
  .about__info___img {
    width: 50%;
    max-width: 800px;
  }
  .about__info___txt {
    width: 50%;
    padding: 0 60px;
  }
}
.contact {
  text-align: center;
  background-color: #529371;
  padding: 40px 0;
  color: #faf7f2;
  margin-top: 40px;
}
.contact h2::after {
  background-color: #faf7f2;
}
.contact__wrapper {
  display: grid;
  gap: 36px;
}
.contact__info {
  letter-spacing: 0.1em;
}
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  gap: 24px;
  width: 90%;
  max-width: 600px;
}
.contact__form input,
.contact__form textarea {
  background-color: #529371;
  border: none;
  border-bottom: solid 1px #faf7f2;
  padding-bottom: 12px;
  width: 100%;
  color: #faf7f2;
  box-sizing: border-box;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom: solid 1px #faf7f2;
  box-shadow: 0 2px 0 #faf7f2;
}
.contact__form___status {
  margin: 16px auto;
  font-size: 1.2rem;
}
.contact__form button {
  align-self: center;
}

@media (min-width: 62rem) {
  .contact__wrapper {
    gap: 60px;
  }
}
.location {
  text-align: center;
  margin-top: 40px;
}
.location__map {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location__map iframe {
  width: 95%;
  max-width: 600px;
  height: 300px;
}

.button, .button-light {
  background-color: #529371;
  color: #faf7f2;
  border: 1px solid transparent;
  padding: 24px 36px;
  border-radius: 40px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  cursor: pointer;
}
.button a, .button-light a {
  text-decoration: none;
  color: #faf7f2;
  transition: all 0.5s ease-in-out;
}
.button:hover, .button-light:hover {
  background-color: #faf7f2;
  border-color: #529371;
}
.button:hover a, .button-light:hover a {
  color: #529371;
}

.button-light {
  background-color: #faf7f2;
  color: #529371;
}
.button-light:hover {
  color: #faf7f2;
  background-color: #529371;
  border-color: #faf7f2;
}

/*# sourceMappingURL=style.css.map */
