* {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
}

.container-mobile {
    display: none; 
}
.mobile-nav, .mobile-menu{
    display: none;
}

@media only screen and (max-width: 480px) {
    .slide-container{
        position: relative;
        max-width: 100%;
        height: 350px;
        overflow: hidden;
    }
    .mobile-nav, .mobile-menu{
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .container-mobile {
        display: block;
        width: 100%;
        position: relative;
    }

    .mobile-nav {
        display: flex;
        padding: 10px 0px 10px 0px;
        align-items: center;
        position: absolute;
        z-index: 2000;
    }

    .container-mobile nav button {
        background-color: transparent;
        border: none;
        float: left;
    }

    .div-top-logo {
        width: 40px;
        height: auto;
    }

    .mobile-menu {
        display: none; 
        position: fixed;
        left: -250px; 
        top: 0;
        width: 250px;
        height: 100%;
        background-color: #00ac4e;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        z-index: 1000;

    }

    .mobile-menu.active {
        left: 0; 
        display: block; 
    }

    .navigation-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        overflow: hidden;
        padding: 10px 0px;
    }

    .nav-dropdown-wrapper {
        position: relative;
        width: 100%; 
        float: left;
    }
    .nav-dropdown-wrapper:hover .dropdown-menu-content{
        display: none;
    }

    .nav-dropdown-button {
        background: none;
        border: none;
        color: white;
        padding: 14px 16px;
        cursor: pointer;
        text-align: left;
        width: 100%;
    }

    .dropdown-menu-content {
        display: none; 
        position: relative; 
        background-color: #f9f9f9;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); 
        z-index: 3000; 
        top: 100%; 
        left: 0; 
        transition: max-height 0.3s ease;
    }

    .dropdown-menu-content a {
        color: #00ac4e; 
        padding: 12px 16px; 
        text-decoration: none; 
        display: block; 
    }

    .dropdown-menu-content a:hover {
        background-color: #ddd; 
        display: block;
    }

    #hamburger-btn {
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    #hamburger-btn img {
        width: 30px;
    }
    .div-top-login-mobile{
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .slide-container {
        position: relative;
        max-width: 100%;
        height: 350px;
        overflow: hidden; 
    }
    .mySlides {
        width: 100%;
        height: 100%;
    }
    .mySlides img {
        height: 100%;
    }

    .dot-container {
        position: absolute;
        top: 90%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        display: flex;
        gap: 10px; 
        z-index: 1; 
    }
    .w3-badge {
        height: 8px; 
        width: 8px; 
        border-radius: 50%; 
        background-color: rgba(255, 255, 255, 0.7); 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .w3-badge:hover {
        background-color: #00ac4e; 
    }
    .w3-badge.active {
        background-color: #00ac4e;
        scale: 1.5; 
        transition: 0.8s;
    }
    .slide {
        position: relative; 
    }
    
    .slide-caption {
        position: absolute;
        bottom: 40px; 
        left: 50%; 
        transform: translateX(-50%); 
        color: white; 
        background-color: rgba(0, 0, 0, 0.5); 
        padding: 10px 10px 60px 10px; 
        border-radius: 5px; 
        text-align: center; 
        width: calc(100% - 40px); 
        background-color: transparent;
        font-weight: bold;
        font-family: Helvetica, Helvetica, Arial, sans-serif;
        font-size: 26px;
    }
    .mobile-nav-button-div{
        width: max-content;
        height: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }
    .button-search img{  
        width: 20px;
        height: 20px;
        cursor: pointer;
        background-color: transparent;
    }
}
@media only screen and (max-width: 992px){
    .container-mobile {
        display: block;
        width: 100%;
        position: relative;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        padding: 10px 0px 10px 0px;
        background-color: transparent;
        align-items: center;
        position: absolute;
        z-index: 1000;
        width: 100%;
    }

    .container-mobile nav button {
        background-color: transparent;
        border: none;
        float: left;
    }

    .div-top-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        height: auto;
    }

    .mobile-menu {
        display: none; 
        position: fixed;
        left: -250px; 
        top: 0;
        width: 250px;
        height: 100%;
        background-color: #00ac4e;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .mobile-menu.active {
        left: 0; 
        display: block; 
    }

    .navigation-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        overflow: hidden;
        width: 100%;
        padding: 10px 0px;
    }

    .nav-dropdown-wrapper {
        position: relative;
        width: 100%; 
        float: left;
    }
    .nav-dropdown-wrapper:hover .dropdown-menu-content{
        display: none;
    }

    .nav-dropdown-button {
        background: none;
        border: none;
        color: white;
        padding: 14px 16px;
        cursor: pointer;
        text-align: left;
        width: 100%;
    }

    .dropdown-menu-content {
        display: none; 
        position: relative; 
        background-color: #f9f9f9; 
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); 
        z-index: 3000; 
        top: 100%; 
        left: 0; 
        transition: max-height 0.3s ease;
    }

    .dropdown-menu-content a {
        color: #00ac4e; 
        padding: 12px 13px; 
        text-decoration: none; 
        display: block; 
    }

    .dropdown-menu-content a:hover {
        background-color: #ddd; 
        display: block;
    }

    #hamburger-btn {
        background: none;
        border: none;
        cursor: pointer;
        z-index: 999;
        padding: 14px 16px;
    }

    #hamburger-btn img {
        width: 30px;
    }
    .div-top-login-mobile{
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .slide-container {
        position: relative;
        max-width: 100%;
        height: 350px;
        overflow: hidden; 
    }
    .mySlides {
        width: 100%;
        height: 100%;
    }
    .mySlides img {
        height: 100%;
    }

    .dot-container {
        position: absolute;
        top: 90%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        display: flex;
        gap: 10px; 
        z-index: 1; 
    }
    .w3-badge {
        height: 8px; 
        width: 8px; 
        border-radius: 50%; 
        background-color: rgba(255, 255, 255, 0.7); 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .w3-badge:hover {
        background-color: #00ac4e; 
    }
    .w3-badge.active {
        background-color: #00ac4e;
        scale: 1.5; 
        transition: 0.8s;
    }
    .slide {
        position: relative; 
    }
    
    .slide-caption {
        position: absolute;
        bottom: 40px; 
        left: 50%; 
        transform: translateX(-50%); 
        color: white; 
        background-color: rgba(0, 0, 0, 0.5); 
        padding: 10px 10px 60px 10px; 
        border-radius: 5px; 
        text-align: center; 
        width: calc(100% - 40px); 
        background-color: transparent;
        font-weight: bold;
        font-family: Helvetica, Helvetica, Arial, sans-serif;
        font-size: 26px;
    }
    .mobile-nav-button-div{
        width: max-content;
        height: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;

    }
    .button-search img{  
        width: 20px;
        height: 20px;
        cursor: pointer;
        background-color: transparent;
    }
}
