@keyframes fadeIn {
    0% {
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    90%{
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    100% { 
        opacity: 1; 
    }
}

.navbar-container {
    background-color: rgb(241, 240, 235);
    height: 120px;
}

.navbar-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo {
    width: 90px;
}

.menu-icon-container {
    display: none;
}

.link-container {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 1.5%;
    animation: fadeIn 2s;
    animation-delay: 0s;
}

.link-container a {
    margin-left: 15px;
    margin-right: 15px;
    color: rgb(186, 176, 165);
    font-weight: bold;
    font-size: larger;
    text-decoration: none;
}

.link-container a:hover{
    font-weight: bold;
    text-decoration: none;
    color: rgb(4, 106, 144);
}

.link-active {
    color: rgb(4, 106, 144) !important;
    text-decoration: none;
    font-size: larger;
}

.header-img {
    width: 100%;
    height: 89vh;
    object-fit: cover;
}

.footer {
    background-color: rgb(241, 240, 235);
    height: 360px;
    width: 100%;
}

.contact-us {
    padding-top: 70px;
    height: 300px;
}

.contact-us p {
    color: rgb(80, 80, 80);
    font-size: large;
    font-weight: bold;
    text-align: center;
}

.cantact-us-button-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cantact-us-button-container a {
    color: rgb(80, 80, 80);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
    height: 50px;
    width: 150px;
    border-radius: 0px;
}

.cantact-us-button-container a:hover {
    color: white;
    background-color: rgb(4, 106, 144);
}

.cantact-us-button-container img {
    height: 30px;
    margin-right: 10px;
    filter: invert(90%);
}

.cantact-us-button-container a:hover img {
    filter: invert(0%);
}

.p-iva-container {
    height: 40px;
    font-size: small;
    color: rgb(186, 176, 165);
    text-align: center;
}

.no-display {
    display: none !important;
}


/*TABLET*/
@media screen and (max-width:990px) {

    .navbar-logo {
        height: 80px;
        width: 80px;
    }

    .menu-icon-container {
        height: 120px;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .menu-icon {
        width: 50px;
    }

    .link-container {
        height: 0px;
        transition-duration: 0.2s;
        opacity:0;
        position: relative;
        z-index: 100;
    }

    .link-container a {
        display: none;
    }

    .link-container-open {
        position: relative;
        max-height: 250px ;
        width: 100%;
        background-color: rgb(186, 176, 165);
        transition-duration: 0.2s;
        opacity: 1;
        z-index: 100;
    }

    .link-container-open a {
        padding: 10px;
        color: rgb(241, 240, 235);
        font-weight: bold;
        font-size: larger;
        text-decoration: none;
        display: grid;
        justify-content: center;
    }

    .link-container-open a:hover{
        color: rgb(80, 80, 80);
    }

    .link-active {
        color: rgb(80, 80, 80) !important;
    }
}

/*MOBILE*/
@media screen and (max-width:767px) {

    .navbar-logo-container {
        justify-content: left;
    }

    .navbar-logo {
        height: 90px;
        width: 90px;
    }

    .menu-icon-container {
        height: 120px;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .menu-icon {
        width: 50px;
    }

    .link-container {
        height: 0px;
        transition-duration: 0.2s;
        opacity:0;
    }

    .link-container a {
        display: none;
    }

    .link-container-open {
        max-height: 250px;
        width: 100%;
        background-color: rgb(186, 176, 165);
        transition-duration: 0.2s;
        opacity: 1;
    }

    .link-container-open a {
        padding: 10px;
        color: rgb(241, 240, 235);
        font-weight: bold;
        font-size: larger;
        text-decoration: none;
        display: grid;
        justify-content: center;
    }

    .link-container-open a:hover{
        color: rgb(80, 80, 80);
    }

    .link-active {
        color: rgb(80, 80, 80) !important;
    }

    .header-img {
        height: 75vh;
    }
}