/* ******************************** */
/* LOGO*/
/* ******************************** */

.background-image {
  position: relative;
  background-image: url(../images/bck.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: calc(100vh - var(--header-height));
  min-height: 833px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.logo {
  height: 25rem;
  position: relative;
  left: 0;
  top: 0;
}

.logo-container {
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  left: 2rem;
  z-index: 1;
}

/* ******************************** */
/* RESPONSIVE NAVIGATION*/
/* ******************************** */

/*=============== REUSABLE CSS CLASSES ===============*/
.nav-container {
  max-width: 1120px;
  margin-inline: 2.3rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: var(--z-fixed);
}


/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 2.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 2.25rem;
  cursor: pointer;
  transition:
    opacity 0.1s,
    transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {

  
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition:
      top 0.4s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }

  .section-natelier {
    margin-left: 0
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 5.5rem;
  pointer-events: initial;
  visibility: visible;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 2.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu */
.dropdown__item:hover .dropdown__menu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.section-natelier {
  color: hsl(0, 0%, 100%);
  max-width: 130rem;
  margin: 24rem auto;
  margin-top: 0;
  padding: 12.8rem 3.2rem 3.2rem 0;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {

  .nav-container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  .section-natelier {
  margin-top: 0;
}

  .nav-container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item {
    position: relative;
  }

  .dropdown__menu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s,
      top 0.3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }
}

/* ******************************** */
/* EXPENDABLE BEHANDLINGER*/
/* ******************************** */

.expendable {
  --xy-padding: 14px;
  --border-radius: 6px;

  margin: 1em 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  display: grid;
  align-items: flex-start;
}

.expendable-open .expendable-content-wrapper {
  grid-template-rows: 1fr;
}

.expendable-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--xy-padding);
  user-select: none;
  color: rgb(254, 220, 255);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  cursor: pointer;
}

.expendable-title {
  font-weight: bold;
}

.expendable-content {
  line-height: 1.4;
  font-size: 0.85em;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
}

.expendable-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.expend-nav-list {
  list-style: none;
}

/* ******************************** */
/*  POP UP*/
/* ******************************** */
.pop-up {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  width: min(600px, 90vw);
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.pop-up.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 999;
}

.pop-up-header {
  padding: 2rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #114825;
}

.pop-up-body {
  padding: 2.4rem;
  background-color: #fff;
}

.pop-up-ok {
  display: flex;
  padding: 1.6rem 2.4rem 2.4rem;
  align-items: center;
  justify-content: center;
  background-color: #f7f5f9;
}

.pop-up-button {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  padding: 1.4rem 2.8rem;
  background-color: #114825;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.pop-up-button:hover {
  background-color: #0f3f20;
  transform: translateY(-1px);
}

.pop-up-h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin: 0;
}

.pop-up-text {
  font-family: var(--body-font);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
}

.x-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

#overlay {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}
/* ******************************** */
/* NATELIER SECTION*/
/* ******************************** */


.section-natelier {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  margin-left: 25rem;
  padding: 12rem 0 6rem;
  padding-top: 35rem;
}

.natelier-description {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  max-width: 70rem;
  font-weight: 500;
  color: hsl(0, 0%, 0%);
}

.heading-on-background {
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 7.4rem;
  line-height: 1.05;
  margin-top: 7rem;
  margin-bottom: 3.2rem;
  font-family: "Playfair Display", serif;
}

.step-img-box {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section-map iframe {
  width: 100%;
  max-width: 100%;
  min-height: 35rem;
  border: 0;
}

@media screen and (max-width: 1118px) {
  .background-image {
    min-height: 70vh;
  }

  .heading-on-background {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.15;
  }

  .natelier-description {
    font-size: 2.5rem;
  }

  .section-natelier {
    padding: 8rem 0 4rem;
  }

  .step-img-box {
    min-height: auto;
  }

  .grid--2-cols > .step-text-box {
    order: 1;
  }

  .grid--2-cols > .step-img-box {
    order: 2;
  }

  .grid--footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4rem;
  }

  .footer-logo-natelier {
    height: 12rem;
    margin-bottom: 1rem;
  }

  .social-links {
    justify-content: flex-start;
    gap: 1.6rem;
  }

  .section-map {
    padding: 4rem 0;
  }

  .section-map iframe {
    min-height: 30rem;
  }
}

@media screen and (max-width: 767px) {
  .heading-on-background {
    font-size: 3.6rem;
  }

  .natelier-description {
    font-size: 1.8rem;
  }

  .section-natelier {
    padding: 6rem 0 3rem;
  }

  .footer {
    padding: 4rem 1.5rem 3rem;
  }

  .footer .grid--footer {
    grid-template-columns: 1fr;
  }

  .footer-logo-natelier {
    max-height: 10rem;
  }

  .logo {
    height: 20rem;
    left: 1rem;
  }

  .section-map iframe {
    min-height: 24rem;
  }
}

/* ******************************** */
/* HOW IT WORKS SECTION*/
/* ******************************** */

.section-how {
  padding: 9.6rem 0;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-img {
  width: 80%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: filter 0.3s;
  position: relative;
  z-index: 1;
}

.step-img-box:hover .step-img {
  filter: blur(5px);
}

.step-img-box.no-hover:hover .step-img,
.step-img.no-hover {
  filter: none;
}

.btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  line-height: 1;
  min-width: max-content;
}

@media screen and (max-width: 767px) {
  .step-img-box:hover .step-img,
  .step-img-box .step-img {
    filter: none;
  }

  .step-img-box .btn-overlay,
  .step-img-box:hover .btn-overlay,
  .step-img-box .btn-overlay:hover {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
  }
}

.step-img-box:hover .btn-overlay,
.step-img-box .btn-overlay:hover {
  opacity: 1;
}

/* ******************************** */
/* MAP SECTION*/
/* ******************************** */

.section-map {
  background-color: black;
  padding: 4.8rem;
}

.map-box {
  align-items: center;
}

.map-heading,
.map-description {
  color: white;
  margin-bottom: 3.2rem;
}

.map-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.map {
  border-radius: 20px;
  border: none;
  width: 60rem;
  height: 40rem;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.map:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ******************************** */
/* FOOTER*/
/* ******************************** */

.footer {
  padding-top: 6rem;
  padding-bottom: 4rem;
  border-top: 1px solid #e4e4e4;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.footer-logo-natelier {
  margin-top: -3rem;
  margin-bottom: -6rem;
  margin-left: 1rem;
  height: 20rem;
  left: 3rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1.6rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;

}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/* ******************************** */
/* ABOUT US*/
/* ******************************** */
.about-us-text {
  margin-bottom: 4rem;
}

/* ******************************** */
/* CENNIK*/
/* ******************************** */

.heading-secondary-cennik {
  font-weight: 700;
  color: #114825;
  letter-spacing: -0.5px;
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  margin-top: 7.2rem;
}

.cennik-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.cennik-list-last {
  margin-bottom: 4rem;
}

/* ******************************** */
/* KOTAKT*/
/* ******************************** */

.kontakt-container {
  display: flex;
  margin-left: 2rem;
  align-items: center;
}

.kontakt-image {
  height: 50px;
  width: 50px;
  margin-right: 1rem;
}
.kontakt-link {
  text-decoration: none;
  cursor: pointer;
  color: #555;
}

.section-contact-form {
  padding: 6rem 0;
  background-color: #f8f6fb;
}

.section-contact-form .heading-secondary {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #114825;
}

.contact-form {
  max-width: 84rem;
  margin: 0 auto;
  display: grid;
  row-gap: 2rem;
}

.form-group {
  display: grid;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: #333;
  border: 1px solid #dcd8e6;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
  min-height: 16rem;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  padding: 1.4rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #114825;
  border: none;
  border-radius: 10rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #0f3f20;
  transform: translateY(-1px);
}

@media screen and (min-width: 768px) {
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }

  .contact-form .form-group:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .section-contact-form {
    padding: 4rem 1.5rem;
  }
}

.btn-view-more {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #dab0d7;
  color: #0f3f20;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s;
}

.btn-view-more:hover {
  background-color: #c5a0c8;

}

.section-testimonials {
  padding: 6rem 0 4rem;
  background-color: #f7f3f8;
}

.section-testimonials .container {
  max-width: min(85rem, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.testimonial-heading {
  margin-bottom: 3rem;
  max-width: 56rem;
}

.testimonials-wrapper {
  justify-content: center;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 1px solid rgba(19, 80, 41, 0.2);
  background-color: rgba(19, 80, 41, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-dot.active {
  background-color: #135029;
  transform: scale(1.2);
}

.testimonial-dot:focus {
  outline: 2px solid #135029;
}

.testimonials-track > .testimonial-card,
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.testimonial-card {
  position: relative;
  background-color: #ffffff;
  padding: 3rem 3rem 5rem;
  border-radius: 2.4rem;
  box-shadow: 0 24px 56px rgba(34, 37, 44, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  scroll-snap-align: center;
  overflow: visible;
}

.testimonial-photo {
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8d7e9;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1.85rem;
  line-height: 2.05;
  color: #2f2f2f;
  white-space: normal;
  word-break: break-word;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.testimonial-author {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  margin: 0;
  font-weight: 700;
  color: #135029;
}

@media screen and (max-width: 1200px) {
  .section-testimonials .container {
    max-width: 70rem;
  }

  .testimonials-track {
    max-width: 58rem;
  }

  .testimonials-track > .testimonial-card,
  .testimonial-card {
    max-width: 58rem;
    flex: 0 0 58rem;
  }
}

@media screen and (max-width: 992px) {
  .section-testimonials .container {
    max-width: 100%;
  }

  .testimonials-track {
    max-width: 100%;
  }

  .testimonials-track > .testimonial-card,
  .testimonial-card {
    max-width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    padding: 2rem 1.5rem 4rem;
    align-items: flex-start;
  }

  .testimonial-photo {
    width: 9rem;
    height: 9rem;
    margin: 0 auto;
  }

  .testimonial-text {
    text-align: left;
  }

  .testimonial-author {
    position: static;
    width: 100%;
    text-align: right;
    margin-top: 1.2rem;
  }
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-control {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid rgba(19, 80, 41, 0.15);
  background-color: #ffffff;
  color: #135029;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.testimonial-control:hover {
  background-color: #eff7ef;
  transform: scale(1.05);
}

.testimonial-control i {
  font-size: 2rem;
}

.testimonial-control--prev {
  margin-left: 0.5rem;
}

.testimonial-control--next {
  margin-right: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .testimonials-wrapper {
    gap: 0.5rem;
  }

  .testimonial-control {
    width: 3.8rem;
    height: 3.8rem;
  }
}

@media screen and (max-width: 767px) {
  .section-testimonials {
    padding: 3rem 0 2rem;
  }

  .testimonials-track {
    gap: 1rem;
  }

  .testimonial-card {
    min-width: 90%;
    padding: 1.8rem 1.5rem 2rem;
    gap: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-photo {
    width: 11.25rem;
    height: 11.25rem;
    margin: 0 auto;
  }

  .testimonial-text {
    font-size: 1.55rem;
    line-height: 1.8;
  }

  .testimonial-author {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 1.4rem;
    align-self: flex-start;
  }
}

@media screen and (max-width: 540px) {
  .section-testimonials {
    padding: 2.5rem 0 1.5rem;
  }

  .testimonial-card {
    min-width: 95%;
    padding: 1.5rem 1rem 1.8rem;
  }

  .testimonial-text {
    font-size: 1.45rem;
  }

  .testimonial-control {
    width: 3.4rem;
    height: 3.4rem;
  }
}

@media screen and (max-width: 1118px) {
  .section-natelier {
    margin-left: 0;
    padding: 0;
    
  }

  .background-image {
    height: calc(100vh - var(--header-height) - 80rem);
  }

  .logo {
  height: 20rem;
  display: none;
  }

  .natelier-description {
    display: none;
  }

  .heading-on-background {
    margin-top: 0;
    font-size: 2.9rem;
  }

  .btn {
    margin-bottom: 1rem;
  }

  .natelier-text-box {
    margin-bottom: 4rem;
  }

  .background-image {
    align-items: flex-end;
  }

  .footer {
    padding-top: 1rem;
  }

  .footer-logo-natelier {
    margin: 0;
    display: none;
  }

  .section-how {
    padding-bottom: 0;
  }

  .heading-secondary {
    font-size: 3.5rem;
  }

  .section-how .heading-on-background {
    font-size: 3rem;
  }

  .section-how .heading-secondary {
    font-size: 2.5rem;
  }

  /* dropdown on mobile devices */
  .dropdown__item:hover .dropdown__menu {
    max-height: 0;
  }

  .dropdown__item.active .dropdown__menu {
    max-height: 1000px;
  }

  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(0deg);
  }

  .dropdown__item.active .dropdown__arrow {
    transform: rotate(180deg);
  }

  .step-img {
    max-width: 400px;
  }
}


@media screen and (max-width: 1700px) {
  .heading-on-background {
    margin: auto;
    margin-top: 10rem;
    margin-bottom: 5rem;
  }
}