a{
    color: #FFF;
    opacity: 0.9;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
    opacity: 1;
}


div#main {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.logo-wrap{
    width: auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    margin: 1em 0px;
}

.company-name{
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	color: #FFF;
	text-align: left;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo{
    max-width: 55px;
    margin-right: 13px;
}

span.text-address{
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9em;	
	color: #999;
	text-align: center;
	font-weight: 300;
}
.text-address.mobile-only {
    margin: 2em 0;
}


.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
}
.social-text{
    color: #FFF;
    margin-right: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    display: none;
}
.social-links a{
    transition: all 0.19s ease-in-out;
    margin-left: 10px;
    display: inline-flex;
}
.social-links a:hover{
    opacity: 0.7;
}

.social-links svg {
    width: 30px;
    height: 30px;
}

.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}



/* Note: Design for a width of 768px */
@media only screen and (min-width: 48em) {
    
    .logo-wrap{
        margin: 1.7em 0px;
    }

    .logo{
        max-width: 70px;
        margin-right: 20px;
    }

    .company-name{
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 3px;
    }

    div#main {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    span.text-address{
        text-align: right;   
    }


    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }


    .social-text{
        display: block;
    }

}



/* Note: Design for a width of 960px */
@media only screen and (min-width: 60em) {


    .logo-wrap{
        align-items: center;
        justify-content: flex-end;
    }

    .company-name{
        font-size: 18px;
        width: 215px;
    }

    .logo{
        max-width: 100px;
        margin-right: 20px;
    }


    .social-links svg {
        width: 33px;
        height: 33px;
    }

}



  /* Note: Design for a width of 1200px */
@media only screen and (min-width: 75em)  {


}









.delay-150 {
    animation-delay: 0.15s;
}
.delay-250 {
    animation-delay: 0.25s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-750 {
    animation-delay: 0.75s;
}

.delay-1000 {
    animation-delay: 1s;
}


.slow {
    animation-duration: 2s !important;
    animation-fill-mode: both;
}