
/* <!--___________________________________________________FOOTER_______________________________________________--> */

#contact{
    background-color: #40513B;
    width: auto;
    color: white;
}   
#footerbox{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2rem;

}

.innerfooter{
    flex-basis: 30%;
    text-align: center;
    margin-bottom: 10px;
}

.innerfooter.footlogo{
    flex-basis: 10%;
}

.innerfooter.contact{
    flex-basis: 25%;
}

.innerfooter.socialmedia{
    flex-basis: 15%;
}

.innerfooter.map {
    flex-basis: 20%;
    width: 100%; 
}
iframe{
    width: 100%;
    height: 15rem;
} 
    

.innerfooter h3 {
    color: #EDF1D6;
    padding-bottom: 2rem;
    font-size: 25px;
    font-family: var(--primaryFont);
}

.vertical{
    display: inline-block;
    border-left: 1px solid #ccc;
    height: 14rem;
    padding-right: 0rem;
    margin-bottom: 15px;
}

#footerlogo{
    height: 10rem;
    width: 10rem;
}

#footer-icons {
    margin-bottom: 15px;
}

#footer-icons a{
    padding: 0rem 5px;
    color: white;
}

.contact span {
    padding-right: .5rem;
}

.contact li:nth-child(1) {
    padding-bottom: 1rem;
}

.contact li {
    font-size: 18px;
    list-style-type: none;
    font-family:var(--secondaryFont);
    
}

#credit {
    height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: darkgrey;
    background-color: black;
    text-align: center;
    font-family: var(--primaryFont);
    padding: 10px 0;
}

#credit span {
    position: relative;
    bottom: 20px;
}

.creator-logo {
    height: 50px;
}


@media only screen and  (max-width: 780px) {

    #footerbox {
        flex-direction: column;
        align-items: center;
    }
    
    .innerfooter{
        flex-basis: 80%;
        text-align: center;
    }

    .innerfooter:last-child {
        margin-bottom: 0;
    }

    .vertical{
        display: none;
    }

    #footerlogo {
        height: 6rem;
        width: 6rem;
        padding-left: 0rem;
    }

    .innerfooter h3 {
        padding: 10px;
    }

    .contact li:nth-child(1) {
        padding-bottom: 0rem;
    }
}



@media only screen and (max-width: 480px) {
    
    iframe{
        width: 20rem;
        height: 12rem;
    } 
    #credit{
        font-size: x-small;
        
    }
    .contact li {
        flex-wrap: wrap;
        font-size: 16px;
        list-style-type: none;
        
    }
    
}

@media only screen and (max-width: 350px) {
    iframe{
        width: 12rem;
        height: 8rem;
    }
}

@media only screen and (max-width: 240px) {
    iframe{
        width: 7rem;
        height: 10rem;
    }
}    























