footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40dvh;
    background-color: #fe6300;

    @media(max-height: 600px) and (orientation: landscape){
        height: 50dvh;
    }

    @media (min-width: 768px) and (min-height: 600px){
        height: 20dvh;
    }

    @media (min-width: 1000px){
        height: 27dvh; 
    }

    @media (min-width: 1200px) and (orientation: landscape){
        height: 40dvh; 
    }
}

.footer-upper--section{
    display: flex;
    flex-direction: column;
    flex: 6;
    width: 100%;
    gap: 5%;
    font-family: "Montserrat";
    color: #F2E4CE;
    text-align: center;

    @media (min-width: 768px) and (min-height: 600px){
        flex-direction: row;
        width: 90%;
        gap: 1%;
    }

    @media(orientation: landscape){
        flex-direction: row;
        width: 80%;
    }
}

a{
    font-family: "Montserrat";
    color: #F2E4CE;
    scroll-behavior: smooth;
}

.footer-content-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: 1.6vh;
    line-height: 200% !important;

    @media(orientation: landscape){
        height: 90%;
    }

    @media(max-height: 600px) and (orientation: landscape){
        font-size: 1vw; 
        padding: 0% 0%;
    }

    @media (min-width: 768px) and (min-height: 600px){
        font-size: 0.8vh;
    }
  
    @media (min-width: 1000px){
        font-size: 0.7vw; 
    }
}

.footer-content-container-title{
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex: 1;
    width: 100%;
    margin-top: 5%;
}


.footer--text{
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    flex: 4;
    width: 100%;
}

.footer-below--section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8dvw;
    font-family: "Montserrat";
    flex: 1;
    width: 100%;
    background-color: #F2E4CE;
    color: #fe6300;
    font-weight: bold;

    @media(orientation: portrait){
        font-size: 1dvh;
    }
}

.hide-portrait-orientations{
    @media screen and (orientation: portrait){
        display: none;
    }

    @media (min-width: 768px) and (min-height: 600px){
        display: flex;
    }
}

li{
    list-style-type: none;
}

.newsletter-contact-text--container{
    font-size: 0.8vw;
    font-weight: 400;
}

.newsletter-contact-input--contianer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1.5;
    width: 100%;
}

.newsletter-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25%;
    width: 85%;
    border-radius: 15px;
    overflow: hidden;
    background-color: #F2E4CE;
}

.newsletter-section--input{
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 60%;
    margin: 0% 0% 0% 5%;
    outline: none;
    text-decoration: none;
    background-color: transparent;
    border: none;
}

.newsletter-section-submit--button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100%;
    font-family: "Montserrat";
    color: #F2E4CE;
    font-size: 90%;
    background-color: #0165AB;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.newsletter-section-submit--button:hover{
    cursor: pointer;
    background-color: #03497a;
}