@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


body {
    margin: 0px;
    overflow: auto;
}
body.mobile-menu-open {
    overflow: hidden;
}

main {
    font-family: "Noto Serif";
    letter-spacing: 0.18em;
}

/* BACK TO TOP BUTTON */
#myBtn {
    display: none; 
    position: fixed; 
    bottom: 80px; 
    right: 25px; 
    z-index: 2; 
    border: none; 
    outline: none; 
    background-color: white; 
    color: black; 
    cursor: pointer; 
    padding: 10px; 
    border-radius: 10px; 
    font-size: 15px; 
    text-transform: uppercase;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    max-width: 100px;
  }
  #myBtn:hover {
    background-color: #f1f1f1; 
    box-shadow: none;
  }

/* TOP MENU */
.top-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 20px 40px 20px 40px;
}
    .logo-title-container {
        text-align: center;
    }
        .menu-logo {
            font-size: 17px;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            margin-top: 0px;
            margin-bottom: 0px;
            text-decoration: none;
            color: black;
        }
        .page-title {
            font-size: 15px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: #aca5a5;

            /* margin-top: 0px; */
            margin:0px;
        }
    .menu-items {
        display: none;
        }
    @media screen and (min-width: 850px) {
        .menu-items {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 30px;
        }    
    }
    .menu-item {
        font-size: 13px;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        color: black;
    }
    .menu-item:hover {
        color: rgb(81, 81, 81);
    }

/* MOBILE MENU */
    .hamburger {
        display: block;
        width: 35px;
        cursor: pointer;
        appearance: none;
        background: none;
        outline: none;
        border: none;
        z-index: 4;
    }
    .hamburger .bar, .hamburger:after, .hamburger:before {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background-color: black;
        margin: 4px 0px;
        transition: 0.4s;
    }
    .hamburger.is-active:before  {
        transform: rotate(-45deg) translate(-3px, 5px);
    }
    .hamburger.is-active:after  {
        transform: rotate(45deg) translate(-4px, -7px);
    }
    .hamburger.is-active .bar{
        opacity: 0;
    }
    .mobile-nav{
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        min-height: 100vh;
        display: block;
        z-index: 3;
        padding-top: 120px;
        transition: 0.4s;
        background-color: #ffff;
    }
    .mobile-nav.is-active{
        left: 0;
    }
    .mobile-nav.closed {
        display: none;
    }
    .mobile-nav a {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 16px;
        text-align: center;
        margin: 0 auto 16px;
        padding: 12px 16px;
        text-decoration: none;
        color: black;
    }

    .mobile-nav a:hover {
        color: rgb(81, 81, 81);
    }
    .logo-mobile-menu-container {
        width: 100vw;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }
    .logo-mobile-menu {
        max-width: 200px;
        height: auto;
        max-height: 97px;
    }
    @media screen and (min-width:850px) {
        .mobile-nav{
            display: none;
        }

        .hamburger{
            display: none;
        }
    }
    @media screen and (max-width:849px) {
        .top-menu {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            margin: 20px 20px 20px 20px;
        }
        .menu-logo {
            font-size: 13px;
        }
        .page-title {
            font-size: 11px;
        }
    }

/* Hero Image */
@media screen and (min-width:850px) {
    .hero {
        height: 90vh;
        width: 100vw;
        background-image: url("./images/iStock-629692094-2048x1365.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Image Mobile*/
.hero-mobile {
    display: none;
}
@media screen and (max-width:849px) {
    .hero {
        display: none;
    }
    .hero-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-mobile-image-container {
        height: auto;
        width: 100vw;
    }
    .hero-mobile-image-container img{
        height: 100%;
        width: 100%;
    }
}
.logo-container-mobile {
    max-width: 80vw;
}

.logo-container {
    max-width: 80vw;
}

.logo {
    width: 100%;
    height:100%;
}

/* MONADA */
.section-wrapper {
    margin: 0px 40px 20px 40px;
    padding-top: 50px;
}
.text-header {
    color: #1c1c1c;
    font-size: 1em;
    font-weight: 700;
    font-family: 'Open Sans';
}
.text {
    color: black;
    font-size: 0.9em;
    font-family: 'Open Sans';
    letter-spacing: 0.02em;
    line-height: 25px;
}
.horizontal-line {
    border-bottom: 1px solid rgb(222, 222, 222);
}

/* TA MANITARIA MAS */
@media screen and (min-width:850px) {
    .hero-mobile-ta-manitaria-mas {
        display: none;
    }
    .ta-manitaria-mas-hero {
        height: 90vh;
        width: 100vw;
        background-image: url("./images/ta-manitaria-mas-hero.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 200px;
    }
    .ta-manitaria-mas-hero-text {
        color: white;
        font-size: 7vw;
        font-family: "Noto Serif";
        letter-spacing: 0.1em;
        line-height: 4vw;
        text-align: center;
        text-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    }
}
@media screen and (max-width:849px) {
    .ta-manitaria-mas-hero {
        display: none;
    }
    .hero-mobile-ta-manitaria-mas { 
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
    }
}

/* EPIKOINWNIA/CONTACT */
.contact-section-wrapper {
    margin: 0px 40px 20px 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.contact-container {
    text-align: center;
}
.span-italic {
    font-style: italic;
}
.contact-span {
    font-weight: 700;
}
.email-color {
    color: #3e8492;
    font-weight: 700;
}

/* FOOTER */
footer {
    background-color: #f4f4f4;
    position: absolute;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text {
    text-align: center;
    color: #b1b1b1;
    letter-spacing: 0.1em;
}

/* SLIDER */
.sliders-parent-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.slider-parent-container {
    max-width: 420px;
    width: 50%;
    height: 100%;
}
.slider-headline {
    text-align: center;
}
.slider {
    position: relative;
    height: 100%;
    max-width: 450px;
    max-height: 676px;
    height: 100%;
    overflow: hidden;
  }
  
  .slider-container {
    display: flex;
    width: 400%;
    /* height: 100%; */
    transition: transform 0.5s ease;
  }
  
  .slider-container img {
    width: 25%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider-nav-prev {
    position: absolute;
    top: 45%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1;
  }
  .slider-nav-next {
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .slider-nav-prev button, .slider-nav-next button {
    background: transparent;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    text-shadow: 4px -0.5px 0px rgba(114, 114, 114, 0.2);
  }
  
  .slider-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .slider-thumbnails img {
    width: 50px;
    height: 80px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    opacity: 0.5;
  }
  
  .slider-thumbnails img.active {
    opacity: 1;
  }
  
  @media screen and (max-width:849px) {
    .slider-parent-container {
        width: 100%;
        height: 100%;
    }
    .slider-nav-prev button, .slider-nav-next button {
        display: none;
      }
}
/* SYSKEYASIA */
.packaging-image-container {
    text-align: center;
    margin-top: 100px;
}
.packaging-image-container img {
    width: 100%;
    max-width: 600px;
    height: 100%;
}
@media screen and (max-width:849px) {
    .packaging-image-container {
        margin-top: 20px;
    }
}
/* MANITARIA SLIDER */
.manitaria-sliders-parent-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.ta-manitaria-mas-slider-parent-container {
    max-width: 850px;
    width: 100%;
    height: 100%;
}
.slider-headline {
    text-align: center;
}
.ta-manitaria-mas-slider {
    position: relative;
    max-width: 850px;
    height: auto;
    overflow: hidden;
  }
  
  .slider-container {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .slider-container img {
    width: 25%;
    height: 100%;
    object-fit: cover;
  }
  
  .manitaria-slider-nav-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1;
  }
  .manitaria-slider-nav-next {
    position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .manitaria-slider-nav-prev button, .manitaria-slider-nav-next button {
    background: transparent;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    text-shadow: 4px -0.5px 0px rgba(114, 114, 114, 0.2);

  }
  
  .slider-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px 10px;
  }
  
  .slider-thumbnails img {
    max-width: 45px;
    max-height: 70px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    opacity: 0.5;
  }
  
  .slider-thumbnails img.active {
    opacity: 1;
  }
  
  @media screen and (max-width:849px) {
    .slider-parent-container {
        width: 100%;
        height: 100%;
    }
    @media screen and (max-width:849px) {
        .slider-parent-container {
            width: 100%;
            height: 100%;
        }
        .manitaria-slider-nav-prev button, .manitaria-slider-nav-next button {
            display: none;
          }
    }
}