*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;

}
body{
    background-color: rgb(255, 247, 247);
}

/* MAIN */

.intro-strip{
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #004666b7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-strip h1{
    flex-grow: 1;
    text-align: center;
    font-size: 54px;
    color: whitesmoke;
}
.contactInfo{
    position: relative;
    height: 600px;
}
.contactInfo p{
    margin: 60px;
    font-size: 22px;
}
.contactInfo p:first-of-type{
    margin: 60px;
    font-size: 42px;
    font-weight: 600;
    color: #004666da;
}

/* Footer */

footer{
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 250px;
    height: auto;
    background-color: rgb(240, 240, 240);
}

#navbar-logo {
    max-width: 250px !important;
    margin-left: 50px;
}

#footer-logo {
    max-width: 350px !important;
    margin-left: 50px;
}

@media screen and (max-width: 685px){
    footer {
        min-height: 350px;
    }

    #navbar-logo {
        margin-left: 0px;
    }
    
    #footer-logo {
        margin-left: 0px;
    }
}

#contact{
width: 33.3%;
}

#footer-container{
    margin: 0 40px;
    position: relative;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#logo-footer p{
    font-size: 40px;
    color: gray;
}

.copyright{
    position: absolute;
    display: block;
    height: 20px;
    width: 100%;
    color: rgb(136, 136, 136);
    background-color: rgb(70, 70, 70);
    bottom: 0;
    right: 0;
}
.copyright p {
    text-align: center;
    color: white;
    background-color: #666;
}
.email a{
    color: #006594;
}
.email:hover{
    text-decoration: underline;
}

