@media screen and (max-width: 1023px) {
  /* UNIVERSAL */
  section {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
  }

  h2 {
    font-size: 2.25rem;
    font-weight: bold;
    font-family: DokoSans-bold;
  }

  h3 {
    font-size: 1.125rem;
    font-weight: bold;
    font-family: DokoSans-bold;
  }

  /* HEADER */
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    background-color: white;
    height: 3.75rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }

  .header-container {
    padding: 0 1.25rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 63.125rem;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .nav-left {
    display: none;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .logo a {
    display: flex;
  }

  .hamburger {
    display: inline-block;
    position: relative;
  }

  .hamburger a.main-nav-toggle {
    display: block;
    width: 1.75rem;
    height: 1rem;
    position: relative;
    top: 0;
    left: 0;
  }

  .hamburger a.main-nav-toggle:after,
  .hamburger a.main-nav-toggle:before {
    content: "";
    position: absolute;
    top: 0;
    height: 0;
    border-bottom: 0.125rem solid #000;
    width: 100%;
    left: 0;
    right: 0;
    transition: all ease-out 0.3s;
  }

  .hamburger a.main-nav-toggle:after {
    top: 100%;
  }

  .hamburger a.main-nav-toggle i {
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 0.125rem;
    background-color: #000;
    width: 100%;
    position: absolute;
    top: 50%;
    transition: all ease-out 0.1s;
  }

  .hamburger a.main-nav-toggle.active-menu:after {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 50%;
  }

  .hamburger a.main-nav-toggle.active-menu:before {
    transform: rotate(45deg);
    transform-origin: center;
    top: 50%;
  }

  .hamburger a.main-nav-toggle.active-menu i {
    opacity: 0;
  }

  .mobile-nav {
    position: fixed;
    top: 3.75rem;
    right: 0;
    width: 60%;
    height: calc(100% - 3.75rem);
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-nav a {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #663911;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 0.125rem solid transparent;
    font-family: DokoSans-bold;
  }

  .mobile-nav a:hover {
    border-bottom: 0.125rem solid #d5b25f;
  }

  .mobile-nav.hidden {
    transform: translateX(100%);
  }

  .mobile-nav.show {
    transform: translateX(0);
  }

  .mobile-overlay {
    position: fixed;
    top: 3.75rem;
    left: 0;
    width: 100%;
    height: calc(100% - 3.75rem);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .mobile-overlay.hidden {
    display: none;
  }

  html.no-scroll,
  body.no-scroll {
    overflow: hidden;
  }

  /* SECTION: TUBA */
  section.tuba {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    margin-bottom: -25%;
  }

  section.tuba img.top {
    width: 100%;
  }

  section.tuba img.bottom {
    width: 100%;
    transform: translateY(-35%);
  }

  /* SECTION: TRUBICE */
  section.trubice img.trubice {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .bg-element-middle {
    top: -30%;
    position: absolute;
    left: 0;
    width: 28%;
  }

  .bg-element-bottom {
    top: 23%;
    position: absolute;
    right: 0;
    width: 28%;
  }

  /* SECTION: PUFNICE */

  /* SECTION: GALLERY */
  .swiper-section {
    margin: 3.75rem auto;
    padding: 0 0rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
  }

  .swiper {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 6.25rem !important;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto;
  }

  .swiper-slide {
    transition: transform 0.4s ease;
  }

  .swiper-slide-active {
    opacity: 1;
  }

  .swiper-slide-prev,
  .swiper-slide-next {
    filter: blur(0.125rem);
    transform: scale(0.6) !important;
  }

  .swiper-buttons-wrapper {
    position: absolute;
    right: 50%;
    bottom: 3.125rem;
  }

  .swiper-button-prev {
    right: 5vw !important;
    left: auto !important;
    background-image: url("../img/gallery/arrow_left.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 2.75rem !important;
    height: 2.75rem !important;
  }

  .swiper-button-next {
    left: 5vw !important;
    right: auto !important;
    background-image: url("../img/gallery/arrow_right.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 2.75rem !important;
    height: 2.75rem !important;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none !important;
    content: none !important;
  }

  /* SECTION: PARTNERS */
  section.partners {
    align-items: center;
    gap: 1.25rem;
  }

  section.partners a {
    width: 60%;
    height: 3.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
    max-width: 20rem;
    border: 0.0625rem solid #764c29;
    transition: background-color 0.25s;
  }

  section.partners a:first-child {
    background-color: #ffc247;
    border: 0.0625rem solid #764c29;
  }

  section.partners a:first-child img {
    transform: translateY(-0.125rem)
  }

  section.partners a:first-child:hover {
    background-color: #e7af3f;
  }

  section.partners a:nth-child(2) {
    background-color: #33D085;
    border: 0.0625rem solid #764c29;
  }

  section.partners a:nth-child(2) img {
    height: 1.675rem;
    transform: translateY(0.125rem)
  }

  section.partners a:nth-child(2):hover {
    background-color: #2ca76b;
  }

  section.partners a:last-child {
    background-color: #00c2e8;
    border: 0.0625rem solid #764c29;
  }

  section.partners a:last-child img {
    transform: translateY(-0.0625rem)
  }

  section.partners a:last-child:hover {
    background-color: #02a5c5;
  }

  /* SECTION: ABOUT US */
  section.about-us {
    padding-bottom: 4rem;
    padding-top: 8rem;
  }

  div.about-us {
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 1.25rem;
  }

  .about-us .texts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    line-height: 1.75rem;
  }

  .about-us .photograph {
    width: 72%;
    padding-top: 4rem;
  }

  /* SECTION: CONTACT */
  section.contact {
    padding-top: 4rem;
    padding-bottom: 8rem;
    color: var(--text);
    background-color: white;
  }

  div.contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 1.25rem;
    box-sizing: border-box;
    width: 100%;
    gap: 3rem;
  }

  .contact .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 1.75rem;
  }

  .contact .mails {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact .mail {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact .details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    line-height: 1.5rem;
  }

  /* FOOTER */
  .footer {
    background-color: #3b2414;
    color: white;
    padding: 1.5625rem 0;
    line-height: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 63.125rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }

  .footer-text {
    font-size: 0.9375rem;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5625rem;
  }

  .footer-socials a {
    display: flex;
    font-size: 2.25rem;
    color: white;
    font-weight: 500;
  }
}
@media screen and (min-width: 0px) and (max-width: 640px) {
  .container {
    max-width: 640px;
  }
  .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.6875rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .container {
    max-width: 640px;
  }
  /* SECTION: TUBA */
  section.tuba {
    padding-top: 5rem;
  }

  /* SECTION: CONTACT */
  .contact .wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 768px;
  }

  /* SECTION: CONTACT */
  .contact .wrapper {
    flex-direction: row;
  }
}
