@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
.header {
  padding: 20px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .header__inner {
    padding: 25px 90px !important;
    align-items: flex-end;
  }
}
.header__logo {
  width: 200px;
}
.header__logo img {
  width: 100%;
	max-width:200px;
	height:100%;
  object-fit: contain;
}
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  outline: none;
}
.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__nav {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  max-height: 0;
  background-color: #333333;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.4s ease;
  z-index: 5;
  overflow: hidden;
  padding: 0 30px;
  opacity: 0;
}
.header__nav.active {
  max-height: 400px;
  padding: 30px;
  opacity: 1;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    max-height: none;
    background-color: transparent;
    display: block;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    overflow: visible;
  }
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
@media (min-width: 1024px) {
  .header__menu {
    display: flex;
    justify-content: flex-end;
  }
}
.header__menu li {
  margin: 10px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.05s;
}
.header__menu li:nth-child(1) {
  transition-delay: 0.05s;
}
.header__menu li:nth-child(2) {
  transition-delay: 0.1s;
}
.header__menu li:nth-child(3) {
  transition-delay: 0.15s;
}
.header__menu li:nth-child(4) {
  transition-delay: 0.2s;
}
.header__menu li:nth-child(5) {
  transition-delay: 0.25s;
}
.header__menu li:nth-child(6) {
  transition-delay: 0.3s;
}
.header__menu li:nth-child(7) {
  transition-delay: 0.35s;
}
.header__menu li:nth-child(8) {
  transition-delay: 0.4s;
}
.header__menu li:nth-child(9) {
  transition-delay: 0.45s;
}
.header__menu li:nth-child(10) {
  transition-delay: 0.5s;
}
.header__menu li a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  text-transform: lowercase;
  position: relative;
  display: flex;
  align-items: center;
}
.header__menu li a:before {
  content: "+";
  margin-right: 10px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__menu li a:hover:before {
  opacity: 1;
}
@media (min-width: 1024px) {
  .header__menu li {
    margin: 0 20px;
    opacity: 1;
    transform: none;
  }
  .header__menu li:last-child {
    margin-right: 0;
  }
  .header__menu li a {
    color: #000;
    font-size: 16px;
    text-transform: lowercase;
    transition: color 0.3s ease;
  }
  .header__menu li a:before {
    content: none;
  }
  .header__menu li a:hover {
    color: #666;
  }
}
.active .header__menu li {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 60px 0 25px;
}
.footer__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 24px;
}
.footer__copyright {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e61d12;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    text-align: left;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__links a {
  color: #e61d12;
  font-size: 1.875rem;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__inner {
  padding-inline: 0 !important;
}
@media (min-width: 768px) {
  .hero__inner {
    padding-inline: inherit;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    height: 840px;
  }
}
.hero__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (min-width: 1024px) {
  .hero__slide {
    height: auto;
  }
}
.hero__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2/1;
}
@media (min-width: 1024px) {
  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    aspect-ratio: unset;
  }
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__gradient {
  display: none;
}
@media (min-width: 1024px) {
  .hero__gradient {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(252, 246, 238, 0.9) 40%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
  }
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: #fff;
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .hero__content {
    background-color: transparent;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .hero__content .container {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.hero__content-inner {
  padding: 0;
}
@media (min-width: 1024px) {
  .hero__content-inner {
    margin-left: 100px;
    max-width: 500px;
  }
}
.hero__title {
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .hero__title {
    margin-bottom: 30px;
  }
}
.hero__text {
  font-size: 1.125rem;
  line-height: 30px;
  color: #000;
  font-weight: 300;
}
.hero__navigation {
  position: absolute;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  top: 150px;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 1024px) {
  .hero__navigation {
    display: inline;
    top: 0;
    left: 0;
    height: 100%;
    transform: none;
  }
  .hero__navigation .container {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
}
.hero__prev, .hero__next {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  position: absolute;
  transform: translateY(-50%);
  z-index: 20;
  top: 50%;
}
.hero__prev:before, .hero__next:before {
  content: "";
  width: 26px;
  height: 26px;
  border-left: 3px solid #2b2b2b;
  border-bottom: 3px solid #2b2b2b;
  border-radius: 0px 0px 0px 7px;
  display: block;
}
@media (min-width: 768px) {
  .hero__prev, .hero__next {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .hero__prev, .hero__next {
    top: 50%;
  }
}
.hero__prev {
  left: 20px;
}
.hero__prev:before {
  transform: rotate(45deg);
  margin-right: -4px;
}
@media (min-width: 1024px) {
  .hero__prev {
    left: 30px;
  }
}
.hero__next {
  right: 20px;
}
.hero__next:before {
  transform: rotate(225deg);
  margin-left: -4px;
}
@media (min-width: 1024px) {
  .hero__next {
    right: 30px;
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.error-404__header {
  font-size: 7.5rem;
  font-weight: 700;
  margin-top: 10vh;
}
.error-404__subheader {
  font-size: 3.5rem;
  font-weight: 400;
  margin-top: 12px;
}
.error-404__link {
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: underline !important;
  margin-bottom: 20vh;
}

.kontakt {
  padding: 0 0 30px;
}
@media (min-width: 1024px) {
  .kontakt {
    padding: 0 0 60px;
  }
}
.kontakt .container {
  padding-inline: 0 !important;
}
@media (min-width: 768px) {
  .kontakt .container {
    padding-inline: 20px !important;
  }
}
.kontakt__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .kontakt__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .kontakt__content {
    gap: 100px;
  }
}
.kontakt__header {
  background-color: #efebe6;
  width: 100%;
  padding: 72px 0;
}
.kontakt__info {
  margin-top: 16px;
}
.kontakt__left {
  width: 100%;
}
@media (min-width: 768px) {
  .kontakt__left {
    width: 35%;
  }
}
.kontakt__right {
  width: 100%;
}
@media (min-width: 768px) {
  .kontakt__right {
    width: 60%;
  }
}
.kontakt__emails {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .kontakt__emails {
    padding: 0;
    margin-bottom: 0;
  }
}
.kontakt__email-title {
  font-size: 1.125rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .kontakt__email-title {
    font-size: 1.25rem;
  }
}
.kontakt__email-link {
  color: #e61d12;
  font-weight: 400;
}
.kontakt__location {
  margin-bottom: 64px;
  position: relative;
  padding: 0;
}
.kontakt__location:last-child {
  margin-bottom: 0;
}
.kontakt__location-media {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .kontakt__location-media {
    flex-direction: row;
  }
}
.kontakt__location-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #000;
}
@media (min-width: 768px) {
  .kontakt__location-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
}
.kontakt__location-map {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kontakt__location-map {
    width: 50%;
  }
}
.kontakt__location-map iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: none;
}
.kontakt__location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .kontakt__location-details {
    flex-direction: row;
    width: 50%;
  }
}
.kontakt__location-address {
  font-size: 1.125rem;
  line-height: 30px;
  color: #000;
  font-weight: 300;
  width: 100%;
}
.kontakt__location-image {
  width: 100%;
  overflow: hidden;
}
.kontakt__location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-page {
  padding: 0 0 30px;
}
@media (min-width: 1024px) {
  .single-page {
    padding: 0 0 60px;
  }
}
.single-page .container {
  padding-inline: 0 !important;
}
@media (min-width: 768px) {
  .single-page .container {
    padding-inline: 20px !important;
  }
}
.single-page__content {
  padding: 60px 0;
}
.single-page__content p {
  max-width: 1000px;
}
.single-page__header {
  background-color: #efebe6;
  width: 100%;
  padding: 72px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Myriad Pro";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

p,
span {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 0;
  resize: none !important;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-inner {
  width: 100%;
  max-width: 1532px;
  margin: 0 auto;
  padding: 0 20px;
}
