/* * {
    outline: red 1px dotted; 
} */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

.modal-backdrop {   
    --bs-backdrop-opacity: 0.9 !important;
}


.logo img{
    max-width: 350px;   
}


header .container-menu {
    background-color: white;
    width: 100%;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar {
    padding: 10px 0;
}

.navbar a {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-link, .dropdown-item{
    font-size: 1rem; 
    color: rgb(54, 54, 54);    
}


.nav-link:hover, .dropdown-item:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: rgb(0, 77, 11);
} 

.dropdown-item:hover {
    background-color: white;
}

.dropend:hover > .dropdown-menu {
    display: block; 
    border: 0;
}

.dropdown-menu, .navbar-nav .nav-item .dropdown-menu{
    border-radius: 0; 
    border: 0;
}

.icons-custom {
    font-size: 3rem;
    color: lightslategray;
    cursor: pointer;
    display: none;        
} 

#check {
    display: none; 
}

.dropend .dropdown-toggle {
    margin-left: 9px; 
}

.dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

input::placeholder {
    color: lightgrey;     
}

.spacing{
    margin-right: 1.5rem;
}
/*------------------------------------------------------------------------------*/
/* BREAKPOINTS
/*------------------------------------------------------------------------------*/

@media screen and (max-width:1024px) {

    header .container-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    header .navbar-collapse {
        justify-content: center;
        align-items: center;
    }

    .icons-custom{
        margin: 10px;     
        font-size: 40px;
        color: #004d0b;   
        display: inline-flex;        
    } 

    .logo img{
        max-width: 280px;   
    }

    .color-dropend{
        background-color: rgb(205, 205, 205) !important;
    }

    #check:checked~.icons-custom #menu-icon {
        display: none;
    }

    .icons-custom #close-icon{        
        display: none;        
    } 

    #check:checked~.icons-custom #close-icon {
        display: block;
    }   

    #check:not(:checked) ~ .navbar .collapse {
        display: block; 
        height: 0; 
        overflow: hidden; 
        transition: height 0.3s  ease-in-out; 
    } 

    .spacing{
        margin-right:0;
    }
       
    .navbar-nav .nav-item, .dropdown-item {
        margin-left: 0;
        margin-right: 0;
        text-align: center; 
    }
    .navbar-nav .nav-link {
        text-align: center;
    }

    .dropend:hover > .dropdown-menu {
        position: static; 
        display: block; 
        left: 50%;         
        margin: 0; 
        padding: 0;     
        margin-bottom: 0;   
    }

    .nav-item.dropend .dropdown-menu {
        display: none;
    }

    .dropend .dropdown-toggle {
        margin-left: 0; 
    }

    .dropdown-menu.mt-2 {
        margin-top: 0;
        margin-bottom: 0; 
        padding: 0; 
    }

    .dropdown-menu{
        background-color: rgb(245, 245, 245);
    }    

    .dropdown-item:hover {
        background-color: transparent !important;
    }   
}



