@font-face {
  font-family: "ITCAvantGardePro-Md";
  font-style: normal;
  font-weight: normal;
  src: local("ITCAvantGardePro-Md"), url("../fonts/ITCAvantGardePro-Md.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "ITCAvantGardePro-Md", "Lato", sans-serif;
  color: #000000;
  max-width: 100dvw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 28px;
}
html *,
body * {
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  html,
  body {
    overflow-x: unset;
  }
}

.nav-bar ul,
.nav-bar li,
.footer ul,
.footer li {
  list-style: none;
  padding: 0;
  text-decoration: none;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #ffc603;
  opacity: 0.8;
  transition: all 0.1s;
}

u {
  text-decoration: none;
}

h1 {
  font-size: 22px;
  font-weight: bold;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  border-bottom: 5px #ffc603 solid;
  padding-bottom: 15px;
  height: fit-content;
  width: fit-content;
}

h3 {
  font-size: 18px;
  font-weight: bold;
}

p {
  font-size: 18px;
}
p a {
  border-bottom: 2px #ffc603 solid;
}

.bold {
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.place {
  padding: 0 15px;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .place {
    grid-column: 2/-2;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .place {
    grid-column: 3/-3;
  }
}

.image {
  width: 100%;
  height: auto;
}

.cta {
  display: flex;
  align-items: center;
  max-width: fit-content;
  font-size: 18px;
  border: 2px #ffc603 solid;
  border-radius: 35px;
  padding: 8px 20px;
  background-color: white;
  transition: all 0.3s;
}
.cta .arrow-right {
  color: white;
  margin-left: -25px;
  opacity: 0;
  transition: all 0.3s;
}
.cta:hover {
  background-color: #ffc603;
  color: white;
}
.cta:hover .arrow-right {
  margin-left: 15px;
  opacity: 1;
}

.text-wrapper ul {
  padding-left: 15px;
}

.width-75 {
  width: max(75%, min(450px, 100%)) !important;
}

.p-t-0 {
  padding-top: 0;
}

.p-b-0 {
  padding-bottom: 0;
}

.p-t-40 {
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .p-t-40 {
    padding-top: 40px;
  }
}

.p-b-40 {
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .p-b-40 {
    padding-bottom: 40px;
  }
}

.p-t-80 {
  padding-top: 40px;
}
@media (min-width: 1024px) {
  .p-t-80 {
    padding-top: 80px;
  }
}

.p-b-80 {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-b-80 {
    padding-bottom: 80px;
  }
}

.beige {
  background-color: #f5f3e7;
}

.nav-bar {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 20px 0;
  overflow-y: auto;
}
.nav-bar.active {
  height: 100vh;
  background-color: #f5f3e7;
  transition: all 0.3s;
  background-image: url("../images/s.svg");
  background-size: cover;
  background-position: center;
}
.nav-bar .container {
  width: 100%;
  z-index: 1;
  justify-content: space-between;
  height: fit-content;
  align-items: center;
}
.nav-bar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar .logo {
  margin: 10px 0 0 25px;
  max-width: 150px;
  width: 250px;
  height: 34px;
  object-fit: contain;
  top: 30px;
  left: 10px;
  position: absolute;
}
@media (min-width: 768px) {
  .nav-bar .logo {
    width: 250px;
  }
}
.nav-bar .burger {
  background: #ffc603;
  padding: 15px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
  margin-left: auto !important;
}
.nav-bar .burger .line.middle {
  transition: all 0.3s;
}
.nav-bar .burger:hover {
  cursor: pointer;
}
.nav-bar .burger:hover .line.middle {
  transition: margin 0.3s;
  margin: 5px -10px;
}
.nav-bar .burger.active .line.upper {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-bar .burger.active .line.middle {
  opacity: 0;
}
.nav-bar .burger.active .line.lower {
  transform: rotate(45deg) translate(-5px, -6px);
}
.nav-bar .burger .line {
  transition: transform 0.3s, opacity 0.3s;
  width: 100%;
  height: 3px;
  background-color: #f5f3e7;
  margin: 5px 0;
}
@media (min-width: 1024px) {
  .nav-bar .burger {
    background: #ffc603;
    padding: 15px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
    margin-left: auto !important;
  }
  .nav-bar .burger .line.middle {
    transition: all 0.3s;
  }
  .nav-bar .burger:hover {
    cursor: pointer;
  }
  .nav-bar .burger:hover .line.middle {
    transition: margin 0.3s;
    margin: 5px -10px;
  }
  .nav-bar .burger.active .line.upper {
    transform: rotate(-45deg) translate(-10px, 12px);
  }
  .nav-bar .burger.active .line.middle {
    opacity: 0;
  }
  .nav-bar .burger.active .line.lower {
    transform: rotate(45deg) translate(-10px, -12px);
  }
  .nav-bar .burger .line {
    transition: transform 0.3s, opacity 0.3s;
    width: 100%;
    height: 6px;
    background-color: #f5f3e7;
    margin: 10px 0;
  }
}
.nav-bar #menu-navigation-menu {
  position: absolute;
  left: -500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  z-index: 30;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .nav-bar #menu-navigation-menu {
    gap: 45px;
  }
}
.nav-bar #menu-navigation-menu.active {
  left: 50%;
  top: 15%;
  transform: translate(-50%, 0);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.nav-bar #menu-navigation-menu > .menu-item {
  position: relative;
  font-size: 22px;
}
@media (min-width: 1024px) {
  .nav-bar #menu-navigation-menu > .menu-item {
    font-size: 35px;
  }
}
.nav-bar #menu-navigation-menu > .menu-item .menu-item {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .nav-bar #menu-navigation-menu > .menu-item .menu-item {
    font-size: 22px;
  }
}
.nav-bar #menu-navigation-menu > .menu-item div {
  position: absolute;
  top: 0px;
  right: -45px;
}
.nav-bar #menu-navigation-menu > .menu-item div .chevron {
  transition: transform 0.3s;
  width: 28px;
  height: 28px;
  fill: #ffc603;
}
.nav-bar #menu-navigation-menu > .menu-item div .chevron.active {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.nav-bar #menu-navigation-menu > .menu-item div .chevron:hover {
  cursor: pointer;
}
.nav-bar .sub-menu {
  transition: max-height 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 100;
  max-height: 0;
  overflow: hidden;
  position: relative;
  top: 10px;
}
@media (min-width: 1024px) {
  .nav-bar .sub-menu {
    top: 20px;
    gap: 5px;
  }
}
.nav-bar .sub-menu.active {
  max-height: 500px;
  transition: max-height 0.6s ease;
}
.nav-bar .sub-menu > .menu-item {
  font-size: 20px;
}

.footer {
  background-color: #f5f3e7;
  padding: 80px 0 60px 0;
  background-image: url("../images/footer-image.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  justify-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer {
    justify-items: normal;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .footer {
    background-size: contain;
  }
}
.footer .logo {
  margin-bottom: 60px;
  width: 250px;
  height: 34px;
}
@media (min-width: 640px) {
  .footer .link-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.footer .address-wrapper {
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .footer .address-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .footer .address-wrapper {
    margin: 0 40px 0 0;
  }
}
.footer .address-wrapper > p {
  font-size: 16px;
  margin: 0;
  text-align: center;
}
@media (min-width: 640px) {
  .footer .address-wrapper > p {
    text-align: left;
  }
}
.footer .address-wrapper > p:last-child {
  margin-top: 10px;
}
.footer .social-media-icons {
  margin-top: 5px;
}
.footer #menu-footer-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
  margin: 0;
  gap: 15px 20px;
}
@media (min-width: 640px) {
  .footer #menu-footer-menu {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .footer #menu-footer-menu {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 40px;
  }
}

.header {
  position: relative;
  padding-top: 80px;
  min-height: min(115dvh, 175dvw);
  max-width: 100dvw;
  overflow: hidden;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .header {
    padding-top: 0;
  }
}
.header .headline {
  font-size: 35px;
  line-height: 46px;
}
@media (max-width: 400px) {
  .header .headline {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 400px) {
  .header .subline {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .header {
    min-height: min(800px, 90vh);
  }
}
.header .header-image-container {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.header .header-image-container::before {
  content: " ";
  display: none;
  width: 15vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  z-index: 5;
}
@media (min-width: 1280px) {
  .header .header-image-container::before {
    display: block;
  }
}
@media (min-width: 768px) {
  .header .header-image-container {
    bottom: unset;
    top: 0;
  }
}
.header .header-image-container .header-image {
  width: 100%;
  object-fit: cover;
  height: 50dvh;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .header .header-image-container .header-image {
    margin-top: 0;
    height: min(800px, 90vh);
  }
}
.header .mobile {
  left: 0;
  display: block;
  position: absolute;
  transform: translate(-22%, 5%);
  max-width: 150dvw;
  max-height: 200dvh;
  min-height: 180dvh;
  bottom: 0;
}
@media (min-width: 768px) {
  .header .mobile {
    display: none;
    min-height: unset;
  }
}
.header .desktop {
  position: absolute;
  display: none;
  height: auto;
  left: 50%;
  width: 2000px;
  transform: translate(-80%, -88%);
}
@media (min-width: 768px) {
  .header .desktop {
    display: block;
  }
}
.header .text-container {
  position: absolute;
  top: -30dvh;
  transform: translateY(-50%);
}
@media (max-width: 470px) {
  .header .text-container {
    top: -30dvh;
  }
}
@media (max-width: 452px) {
  .header .text-container {
    top: -25dvh;
  }
}
@media (max-width: 434px) {
  .header .text-container {
    top: -23dvh;
  }
}
@media (max-width: 400px) {
  .header .text-container {
    top: -25dvh;
  }
}
@media (max-width: 398px) {
  .header .text-container {
    top: -23dvh;
  }
}
@media (max-width: 380px) {
  .header .text-container {
    top: -18dvh;
  }
}
@media (max-width: 362px) {
  .header .text-container {
    top: -14dvh;
  }
}
@media (max-width: 344px) {
  .header .text-container {
    top: -12dvh;
  }
}
@media (max-width: 326px) {
  .header .text-container {
    top: -12dvh;
  }
}
@media (max-width: 320px) {
  .header .text-container {
    top: -8dvh;
  }
}
@media (min-width: 768px) {
  .header .text-container {
    position: unset;
    transform: unset;
  }
}
.header .text-wrapper {
  z-index: 1;
  max-width: 35ch;
}
@media (min-width: 768px) {
  .header .text-wrapper {
    position: relative;
    bottom: 130%;
  }
}
@media (min-width: 1024px) {
  .header .text-wrapper {
    max-width: 65ch;
  }
}

.slider {
  padding-block: 40px;
  justify-items: center;
}
@media (min-width: 1024px) {
  .slider {
    padding-block: 80px;
  }
}
@media (min-width: 768px) {
  .slider {
    justify-items: center;
  }
}
.slider .swiper {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .slider .swiper {
    height: 600px;
  }
}
.slider .swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 160px;
}
.slider .swiper-slide .text-wrapper ul {
  padding-left: 25px !important;
}
@media (min-width: 768px) {
  .slider .swiper-slide {
    flex-direction: row;
    gap: 170px;
  }
}
@media (min-width: 1280px) {
  .slider .swiper-slide {
    gap: 180px;
  }
}
.slider .swiper-slide img {
  display: block;
  max-width: 300px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .slider .swiper-slide img {
    max-width: 480px;
  }
}
.slider .text-wrapper {
  padding-right: 15px;
}
@media (min-width: 768px) {
  .slider .text-wrapper {
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  .slider .text-wrapper {
    max-width: 500px;
  }
}
@media (min-width: 1536px) {
  .slider .text-wrapper {
    max-width: 600px;
  }
}
.slider .text-wrapper li {
  font-size: 23px;
  line-height: 40px;
}
.slider .text-wrapper .description {
  margin-bottom: 36px;
}
.slider .swiper-pagination {
  position: unset;
  margin-top: 60px;
  transform: translateX(0) !important;
}
@media (min-width: 768px) {
  .slider .swiper-pagination {
    margin-top: 20px;
  }
}
.slider .swiper-pagination-bullet {
  background-color: #ffc603;
  width: 20px;
  height: 20px;
}

.focus-gallery {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .focus-gallery {
    padding-block: 80px;
  }
}
.focus-gallery .gallery-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .focus-gallery .gallery-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .focus-gallery .text-wrapper {
    max-width: 300px;
  }
}
.focus-gallery .text-wrapper .description {
  margin-bottom: 36px;
}
.focus-gallery .cta {
  margin-bottom: 25px;
}
.focus-gallery .gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  height: 400px;
}
@media (min-width: 768px) {
  .focus-gallery .gallery {
    max-width: calc(100% - 315px);
  }
}
.focus-gallery .gallery .gallery-image {
  transition: width 0.3s ease-in-out;
  cursor: pointer;
  object-fit: cover;
}
.focus-gallery .gallery .gallery-image.active {
  outline: none;
}

.info-grid {
  padding-block: 20px;
  justify-items: center;
  /*  .element-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      @include respond-to(md) {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 80px;
      }

      @include respond-to(2xl) {
        grid-template-columns: 1fr 1fr 1fr 1fr;
      }
    }*/
}
.info-grid .place {
  width: 100%;
}
.info-grid .headline {
  border: none;
}
@media (min-width: 1024px) {
  .info-grid {
    padding-block: 40px;
  }
}
.info-grid .element-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: space-between;
  margin-inline: 15px;
}
@media (min-width: 768px) {
  .info-grid .element-wrapper {
    margin-inline: 0px;
  }
}
.info-grid .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: inherit;
  max-width: 100%;
  margin-top: 15px;
}
.info-grid .text-wrapper .cta {
  margin-top: auto;
}
@media (min-width: 768px) {
  .info-grid .text-wrapper {
    max-width: calc(50% - 30px);
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .info-grid .text-wrapper {
    max-width: calc(25% - 30px);
    margin-top: 0px;
  }
}
.info-grid .text-wrapper .image {
  width: 100%;
  max-width: 300px;
}
.info-grid .text-wrapper .headline {
  align-self: flex-start;
  margin: 0;
  padding-bottom: 5px;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .info-grid .text-wrapper .headline {
    width: 100%;
  }
}
.info-grid .text-wrapper .subline {
  margin: 0;
}
.info-grid .text-wrapper .description {
  margin-bottom: 25px;
}

.element-1 .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
@media (min-width: 768px) {
  .element-1 .container {
    flex-direction: row;
    justify-content: flex-start;
    gap: 50px;
  }
}
.element-1 .col-direction {
  flex-direction: column !important;
  gap: 0px !important;
}
.element-1 .col-direction h2.headline {
  width: unset !important;
  min-width: unset !important;
  max-width: fit-content !important;
  margin-bottom: 0px !important;
}
.element-1 .text-wrapper {
  width: fit-content;
}
@media (min-width: 768px) {
  .element-1 .headline {
    margin-bottom: 45px;
  }
}
.element-1 .headline-wrapper {
  min-width: 260px;
  width: 260px;
}
.element-1 .description {
  margin-bottom: 36px;
}
.element-1 .header-auto.headline-wrapper {
  width: auto;
  max-width: 100%;
  min-width: unset;
}
.element-1 .header-auto.headline-wrapper h2 {
  width: fit-content;
  min-width: 100%;
  max-width: fit-content;
}
.element-1 .header-big.headline-wrapper {
  width: 550px;
  max-width: 100%;
}
.element-1 .header-normal.headline-wrapper {
  width: 260px;
}
.element-1 .header-small.headline-wrapper {
  width: 150px;
}
.element-1 .header-off.headline-wrapper {
  display: none;
}

.element-2 {
  margin-block: 80px;
}
.element-2 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .element-2 .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 768px) {
  .element-2 .text-wrapper {
    max-width: 600px;
  }
}
@media (min-width: 1536px) {
  .element-2 .text-wrapper {
    max-width: 600px;
  }
}
.element-2 .image {
  object-fit: contain;
  height: auto;
  margin-bottom: 40px;
  max-width: 350px;
}
@media (min-width: 1024px) {
  .element-2 .image {
    margin-bottom: 0;
    max-width: 40%;
  }
}

.element-4 {
  padding-block: 40px;
  margin-top: 80px;
  /*
    .image {
      object-fit: contain;
      height: auto;
      margin-block: 40px;
      max-width: 300px;

      @include respond-to(sm) {
        max-width: 40%;
      }

      @include respond-to(md) {
        margin-bottom: 0;
        max-width: 350px;
      }
    }
  */
}
@media (min-width: 1024px) {
  .element-4 {
    padding-block: 80px;
  }
}
.element-4 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) {
  .element-4 .container {
    gap: 150px;
    align-items: stretch;
  }
}
.element-4 .element {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  justify-content: space-around;
}
@media (min-width: 1024px) {
  .element-4 .element {
    flex-flow: row-reverse;
    gap: 50px;
  }
  .element-4 .element::after {
    content: "";
    position: absolute;
    bottom: -75px;
    left: 0;
    width: 70%;
    height: 4px;
    background-color: #ece9d9;
  }
  .element-4 .element:nth-child(odd) {
    flex-direction: row;
  }
}
.element-4 .element:nth-child(odd)::after {
  left: unset;
  right: 0;
}
.element-4 .element:last-child::after {
  display: none;
}
@media (min-width: 1024px) {
  .element-4 .text-wrapper {
    max-width: 60%;
  }
}

.jobs {
  padding-block: 40px;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .jobs {
    padding-block: 80px;
  }
}
.jobs .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jobs .job-panel {
  border-bottom: 4px #ece9d9 solid;
  padding-bottom: 50px;
}
.jobs .job-panel:last-child {
  border-bottom: none;
}

.lead {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .lead {
    padding-block: 80px;
  }
}
.lead .lead-gallery {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 0 100px;
}
@media (min-width: 640px) {
  .lead .lead-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .lead .lead-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.lead a:hover {
  color: black;
  opacity: 1;
}
.lead .people-container {
  position: relative;
}
.lead .people-container:hover .image {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.lead .people-container:hover .text-container {
  opacity: 1;
  transition: all 0.3s ease;
}
.lead .image-container {
  aspect-ratio: 1/1.3;
  max-width: 250px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .lead .image-container {
    max-width: unset;
  }
}
.lead .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.lead .text-container {
  transition: all 0.3s ease;
}
.lead .text-container .headline {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 40px 0 0 0;
}
.lead .text-container .description {
  margin: 5px 0 40px 0;
  font-size: 0.9rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .lead .text-container {
    position: absolute;
    opacity: 0;
    width: 100%;
    background-color: #ede6d6;
    background: rgba(237, 230, 214, 0.7);
    bottom: 0;
    left: 0;
  }
  .lead .text-container .headline {
    margin: 20px 0 5px 20px;
    font-size: 1rem;
  }
  .lead .text-container .description {
    margin: 0 0 20px 25px;
  }
}

.team {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .team {
    padding-block: 80px;
  }
}
.team .gallery {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 0 100px;
}
@media (min-width: 640px) {
  .team .gallery {
    grid-template-columns: repeat(2, 1fr);
    justify-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .team .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.team a:hover {
  color: black;
  opacity: 1;
}
.team .panel {
  position: relative;
  min-height: 350px;
}
.team .panel .image {
  transition: all 0.3s ease;
}
.team .panel:hover .image {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.team .panel:hover .text-container {
  opacity: 1;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .team .panel {
    min-height: 280px;
  }
}
.team .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: end;
  gap: 10px;
  width: 100%;
}
.team .info .headline {
  font-size: 30px;
  font-weight: bold;
}
.team .info .description {
  font-size: 20px;
  font-weight: 400;
  margin-left: 35px;
}
.team .image-container {
  aspect-ratio: 1/1.3;
  max-width: 300px;
  overflow: hidden;
  height: 100%;
}
.team .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .text-container {
  transition: all 0.3s ease;
}
.team .text-container .headline {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 40px 0 0 0;
}
.team .text-container .description {
  margin: 5px 0 40px 0;
  font-size: 0.9rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .team .text-container {
    position: absolute;
    opacity: 0;
    width: 100%;
    background-color: #ede6d6;
    background: rgba(237, 230, 214, 0.7);
    bottom: 0;
    left: 0;
  }
  .team .text-container .headline {
    margin: 20px 0 5px 20px;
    font-size: 1rem;
  }
  .team .text-container .description {
    margin: 0 0 20px 25px;
  }
}

.benefits {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .benefits {
    padding-block: 80px;
  }
}
.benefits .headline {
  padding: 0 0 10px 0;
  margin-left: 15px;
}
.benefits .wrapper {
  padding-top: 80px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .benefits .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .benefits .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits .wrapper {
    gap: 70px 60px;
  }
}
.benefits .panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.benefits .panel a {
  display: contents;
}
.benefits .image-container {
  aspect-ratio: 1/1;
  max-width: 150px;
  width: 100%;
  margin-inline: auto;
}
.benefits .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .contact-info {
    padding-block: 80px;
  }
}
.contact-info .headline {
  align-self: flex-start;
}
.contact-info .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .contact-info .wrapper {
    flex-direction: row;
    gap: 50px;
  }
}
.contact-info .contact-wrapper {
  max-width: 300px;
  margin: 0 0 18px 0;
}
.contact-info .contact-wrapper:last-child {
  margin: 0;
}
.contact-info .contact-wrapper .contact {
  margin: 0;
}
.contact-info .image-container {
  max-width: 350px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .contact-info .image-container {
    margin-top: 0;
  }
}
.contact-info .image-container .image {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.employee {
  padding-block: 40px;
  margin: 0;
  background-image: url("../images/s.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 100dvh;
}
@media (min-width: 1024px) {
  .employee {
    padding-block: 80px;
  }
}
.employee .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .employee .wrapper {
    flex-direction: row;
    gap: 50px;
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .employee .wrapper {
    grid-column: 3/-3;
  }
}
.employee .image {
  justify-content: space-between;
}
@media (min-width: 768px) {
  .employee .image {
    max-width: 600px;
  }
}
.employee .text-wrapper .headline {
  font-size: 40px;
  border-bottom: 5px #ffc603 solid;
  padding-bottom: 15px;
  max-width: fit-content;
  line-height: 60px;
}
.employee .text-wrapper .subline {
  padding-bottom: 35px;
}
.employee .text-wrapper span {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .employee .text-wrapper {
    max-width: 65ch;
  }
}

.download {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .download {
    padding-block: 80px;
  }
}
.download .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 640px) {
  .download .wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
}
.download .download-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download .image {
  border-radius: 100%;
  aspect-ratio: 1/1;
  max-width: 200px;
}
.download .download-link {
  display: flex;
  gap: 15px;
}

.timeline {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .timeline {
    padding-block: 80px;
  }
}
@media (min-width: 768px) {
  .timeline .wrapper {
    position: relative;
  }
  .timeline .wrapper::before {
    content: "";
    background-image: url("../images/circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -92%);
    width: 50px;
    height: 50px;
  }
  .timeline .wrapper::after {
    content: "";
    background-image: url("../images/circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 92%);
    width: 50px;
    height: 50px;
  }
}
.timeline .item {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding-bottom: 80px;
  align-items: center;
}
.timeline .item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .timeline .item {
    flex-direction: row;
  }
  .timeline .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .timeline .item:nth-child(even) .text-wrapper {
    position: relative;
    max-width: 40%;
  }
  .timeline .item:nth-child(even) .text-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -45%;
    width: 20%;
    height: 3px;
    background-color: #ffc603;
  }
  .timeline .item:nth-child(odd) .text-wrapper {
    position: relative;
    max-width: 40%;
    width: 40%;
  }
  .timeline .item:nth-child(odd) .text-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -45%;
    width: 20%;
    height: 3px;
    background-color: #ffc603;
  }
  .timeline .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #ffc603;
  }
  .timeline .item .timeline-image-link {
    display: contents;
  }
  .timeline .item .image {
    max-width: 40%;
    max-height: 350px;
    object-fit: contain;
  }
}
.timeline .headline {
  border: none;
  padding-bottom: 0;
  font-size: 45px;
}
.timeline .image {
  max-width: 300px;
  height: auto;
}

.balls {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .balls {
    padding-block: 80px;
  }
}
.balls .ball-container {
  display: none;
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .balls .ball-container {
    display: block;
  }
}
.balls .ball {
  position: absolute;
  border-radius: 50%;
  background-color: #ffc603;
  will-change: transform;
}
.balls .wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 640px) {
  .balls .wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.balls .text-container {
  background-image: url("../images/bubbles.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .balls .text-container {
    height: unset;
    background-image: none;
  }
}
.balls .headline {
  min-width: 250px;
}

.contact-cta {
  padding-block: 40px;
  height: 100%;
  display: flex;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .contact-cta {
    padding-block: 80px;
  }
}
.contact-cta .wrapper {
  position: relative;
  max-width: fit-content;
  margin: 0 auto;
  width: 100%;
}
.contact-cta .description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 50%;
  padding: 20px;
  top: -85px;
  left: -11px;
  background-color: rgba(255, 198, 3, 0.7);
  backdrop-filter: blur(5px);
  aspect-ratio: 1/1;
  z-index: 10;
}
@media (min-width: 1024px) {
  .contact-cta .description-wrapper {
    padding: 60px;
    top: -109px;
    left: -89px;
    max-width: 180px;
  }
}
.contact-cta .description-wrapper .description {
  max-width: 130px;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-cta .description-wrapper .description {
    font-size: 18px;
    line-height: 25px;
    top: -109px;
    left: -89px;
  }
}
.contact-cta .image-container {
  width: 320px;
  position: relative;
}
@media (min-width: 768px) {
  .contact-cta .image-container {
    width: 430px;
  }
}
@media (min-width: 1024px) {
  .contact-cta .image-container {
    width: 530px;
  }
}
.contact-cta .image-container .contact-cta-bubble {
  border-radius: 50%;
  background-color: #ffc603;
  aspect-ratio: 1/1;
  position: absolute;
  text-align: center;
}
.contact-cta .image-container .contact-cta-bubble.small {
  width: 75px;
  height: 75px;
}
.contact-cta .image-container .contact-cta-bubble.medium {
  width: 125px;
  height: 125px;
}
.contact-cta .image-container .contact-cta-bubble.top-right-1 {
  top: 0;
  right: 0;
}
.contact-cta .image-container .contact-cta-bubble.top-right-2 {
  top: 100px;
  right: -75px;
}
.contact-cta .image-container .contact-cta-bubble.bottom-left-1 {
  bottom: 40px;
  left: 0;
}
.contact-cta .image-container .image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.contact-cta .link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  max-width: 15ch;
  background-color: rgba(255, 198, 3, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 25px;
  transition: color 0.3s ease;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-cta .link {
    font-size: 20px;
    max-width: 15ch;
    padding: 40px;
    line-height: 30px;
  }
}
.contact-cta .link .link-title-wrapper {
  position: relative;
  bottom: 5px;
}
.contact-cta .link .arrow-line {
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.contact-cta .link .arrow-head {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.contact-cta .link:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}
.contact-cta .link:hover .arrow-line {
  width: 50px;
  transform: scaleX(2.5);
  transition: transform 0.3s ease;
}
.contact-cta .link:hover .arrow-head {
  transform: translateX(33px);
  transition: transform 0.3s ease;
}
.contact-cta .link .arrow-right {
  width: 25px;
  height: 25px;
  margin: 0 auto;
  bottom: -25px;
  overflow: visible;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .contact-cta .link .arrow-right {
    margin: 20px auto 0 auto;
  }
}

.verein-buttons {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .verein-buttons {
    padding-block: 80px;
  }
}
.verein-buttons .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 640px) {
  .verein-buttons .wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.verein-buttons .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.verein-buttons .popup-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 8px;
  display: none;
  background-image: url(../images/s.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
}
.verein-buttons .popup-content {
  position: relative;
}
.verein-buttons .popup-close {
  position: sticky;
  margin-left: auto;
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.verein-buttons .popup-close:hover svg {
  fill: #f5f3e7;
}

.apply {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .apply {
    padding-block: 80px;
  }
}
.apply .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .apply .wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.apply .headline-wrapper {
  min-width: 270px;
  width: 270px;
}
.apply .infos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
  padding-bottom: 60px;
}
@media (min-width: 640px) {
  .apply .infos {
    grid-template-columns: 1fr 1fr;
  }
}
.apply input {
  border: none;
  border-bottom: 2px solid #ffc603;
  padding-bottom: 7px;
  outline: none;
}
.apply .upload-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .apply .upload-wrapper {
    flex-direction: row;
  }
}
.apply .upload-box {
  width: 200px;
  text-align: center;
  color: white;
}
.apply .upload-box br {
  display: none;
}
.apply .upload-box .description {
  color: black;
}
.apply .upload-box svg {
  max-width: 40px;
}
.apply .upload-box input {
  display: none;
  position: relative;
}
.apply .upload-box .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -40px;
  left: -100px;
  width: 200px;
}
.apply .upload-box .dropdown-container {
  cursor: pointer;
  background: #ffc603;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.1s;
}
.apply .upload-box .dropdown-container strong {
  display: block;
}
.apply .upload-box #arrow {
  transition: all 0.3s;
}
.apply .upload-box:hover {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
.apply .upload-box:hover #arrow {
  transform: translateY(-30px);
  transition: all 0.3s;
}
.apply .accept {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.apply .accept .acceptance {
  accent-color: #ffc603;
}
.apply .accept a {
  border-bottom: 2px solid #ffc603;
  padding-bottom: 3px;
}
.apply .accept .wpcf7-submit {
  cursor: pointer;
  display: inline-block;
  align-items: center;
  color: black;
  max-width: fit-content;
  font-size: 18px;
  border: 2px #ffc603 solid;
  border-radius: 35px;
  padding: 8px 20px;
  background-color: white;
  transition: all 0.3s;
}
.apply .accept .wpcf7-submit:hover {
  background-color: #ffc603;
  color: white;
}
.apply .wpcf7-spinner {
  display: none;
}

#wpcf7-f232-p16-o1 {
  background-image: url("../images/s.svg");
  background-position: center;
  background-repeat: no-repeat;
}
#wpcf7-f232-p16-o1 .acc_dse {
  display: inline;
}
#wpcf7-f232-p16-o1 .wpcf7-response-output {
  margin: 0em 0.5em 1em !important;
}
#wpcf7-f232-p16-o1 .test {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#wpcf7-f232-p16-o1 textarea {
  border: none !important;
  border-bottom-width: medium !important;
  border-bottom-style: none !important;
  border-bottom-color: currentcolor !important;
  border-bottom: 2px solid #ffc603 !important;
  padding: 15px 10px !important;
  outline: none !important;
  width: 100% !important;
}
#wpcf7-f232-p16-o1 .contact {
  padding: 120px 0 80px 0;
}
#wpcf7-f232-p16-o1 .contact .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 450px) {
  #wpcf7-f232-p16-o1 .contact .wrapper {
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  #wpcf7-f232-p16-o1 .contact .wrapper {
    flex-direction: row;
  }
}
#wpcf7-f232-p16-o1 .contact .text-wrapper {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  #wpcf7-f232-p16-o1 .contact .text-wrapper .headline {
    font-size: 28px;
  }
}
#wpcf7-f232-p16-o1 .contact .text-wrapper .contact-detail-wrapper {
  margin-bottom: 10px;
}
#wpcf7-f232-p16-o1 .contact .text-wrapper .contact-detail-wrapper:last-child {
  margin-bottom: 0;
}
#wpcf7-f232-p16-o1 .contact .text-wrapper .contact-detail-wrapper p {
  margin: 0;
}
#wpcf7-f232-p16-o1 .contact .infos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
  overflow: hidden;
}
@media (min-width: 450px) {
  #wpcf7-f232-p16-o1 .contact .infos {
    grid-template-columns: 1fr 1fr;
  }
}
#wpcf7-f232-p16-o1 .contact p:nth-child(5) {
  grid-column: 1/-1;
}
#wpcf7-f232-p16-o1 .contact p:nth-child(5) input,
#wpcf7-f232-p16-o1 .contact p:nth-child(5) textaera {
  padding-bottom: 60px;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper {
  grid-column: 1/-1;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper .wpcf7-list-item {
  margin: 0;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper .wpcf7-list-item label {
  display: flex;
  gap: 28px;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper .wpcf7-list-item input {
  max-width: 15px;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper .wpcf7-submit {
  margin-top: 40px;
  cursor: pointer;
  display: inline-block;
  align-items: center;
  color: black;
  max-width: fit-content;
  font-size: 18px;
  border: 2px #ffc603 solid;
  border-radius: 35px;
  padding: 8px 20px;
  background-color: white;
  transition: all 0.3s;
}
#wpcf7-f232-p16-o1 .contact .submit-wrapper .wpcf7-submit:hover {
  background-color: #ffc603;
  color: white;
}
#wpcf7-f232-p16-o1 .contact input,
#wpcf7-f232-p16-o1 .contact .dropdown-menu {
  border: none;
  border-bottom: 2px solid #ffc603;
  padding: 15px 10px;
  outline: none;
  width: 100%;
}

.contact-widget {
  display: none;
  position: fixed;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  height: 150px;
  width: 150px;
  background: #ffc603;
  border-radius: 50%;
  transition: all 0.5s;
  font-size: 20px;
  z-index: 15;
}
@media (min-width: 1024px) {
  .contact-widget {
    display: block;
  }
}
.contact-widget:hover, .contact-widget.active {
  left: 10px;
  transition: left 0.5s;
}
.contact-widget:hover .text, .contact-widget.active .text {
  opacity: 1;
  transition: opacity 0.3s;
}
.contact-widget:hover .image, .contact-widget.active .image {
  right: 30px;
  opacity: 0;
  transition: all 0.3s;
}
.contact-widget .image {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  transition: all 0.3s;
}
.contact-widget .text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  line-height: 20px;
  transition: opacity 0.3s;
}

.image-container.image-bubble-container {
  max-width: unset;
}
.image-container.image-bubble-container .image {
  max-width: unset;
}

.image-bubble-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-block: 50px;
  overflow: visible;
}
.image-bubble-container .main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  clip-path: circle(50%) !important;
  position: relative !important;
  z-index: 1 !important;
}
.image-bubble-container .bubble {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  background-size: auto 300px;
  background-repeat: no-repeat;
}
.image-bubble-container .bubble.bubble-yellow {
  background-color: #ffc603;
  background-image: unset;
}
.image-bubble-container .bubble1 {
  width: 30px;
  height: 30px;
  top: 40px;
  left: 30px;
  background-position: top left;
}
.image-bubble-container .bubble2 {
  width: 50px;
  height: 50px;
  top: 10px;
  right: 20px;
  background-position-x: -305px;
  background-position-y: -10px;
}
.image-bubble-container .bubble3 {
  width: 30px;
  height: 30px;
  top: 45px;
  right: -10px;
}
.image-bubble-container .bubble4 {
  width: 45px;
  height: 45px;
  bottom: -15px;
  left: 180px;
}
.image-bubble-container .bubble5 {
  width: 60px;
  height: 60px;
  bottom: 0px;
  right: 190px;
  z-index: 15;
  background-position-x: -125px;
  background-position-y: -240px;
}
.image-bubble-container .bubble6 {
  width: 30px;
  height: 30px;
  bottom: 50px;
  right: 270px;
  z-index: 15;
  background-position-x: -75px;
  background-position-y: -220px;
}

.google-maps-link {
  max-height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  aspect-ratio: 16/9;
}
.google-maps-link:hover {
  opacity: 1;
}
.google-maps-link .google-maps-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.map-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.map-overlay .map-overlay-content {
  background-color: #f5f3e7;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.map-overlay .map-overlay-content p {
  margin-bottom: 20px;
  font-size: 16px;
}
.map-overlay .map-overlay-content button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.map-overlay .map-overlay-content .accept-button {
  background-color: #ffc603;
  color: #000000;
}
.map-overlay .map-overlay-content .cancel-button {
  background-color: #000000;
  color: #fff;
}

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