/* START IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* END IMPORT */

/* START STD TAGS */
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

body {
	display: block;
	position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(216, 216, 216);
    color: #222;
}
/* END STD TAGS */


/* START POPUP MENU */
#popup-menu {
	display: block;
	position: fixed;
	background-color: #ccc;
	top: 0;
	right: 0px;
	width: 240px;
	height: 100%;
	z-index: 999999;
	transition: all 0.25s;
}

#popup-menu .popup-menu-links {
	width:220px;
}	

#popup-menu a {
	display: block;
	background-color: #ccc;
	padding: 6px;
	text-decoration: none;
}	

.no-popup-menu {
    margin-right: -240px;
}
/* END POPUP MENU */


/* START HEADER */
#header {
    display: flex;
    position: fixed;
    overflow: hidden;
	background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 120px;
    transition: 0.2s;
    justify-content: center;
    z-index: 9999;
}

#header a {
    display: block;
    color: rgb(70, 70, 70);
    text-align: center;
    padding: 8px;
    text-decoration: none;
    font-size: 16x;
    line-height: 22px;
    border-radius: 4px;
    white-space: nowrap;
    margin: 4px;
}

#header a:hover {
    background-color: #ddd;
    color: black;
}
  
#header a.active {
    background-color: #2E86D7;
    color: white;
}

#header a.logo {
    font-size: 22px;
    font-weight: bold;
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-size: auto;
    width: 264px;
    height: 52px;
    line-height: 22px;
    display: block;
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
}

#header a.quote {
    background-color: #333333;
    color: white;
    width: 120px;
    margin-left: 8px;
}

#header a.phone {
    background-color: #042ad5;
    color: white;
    width: 120px;
    margin-right: 8px;
}

#header .header-logo {
    display: none;
    flex-grow: 1;
    align-items: center;
}

#header span.logo-caption {
    font-size: 14px;
    color: #042ad5;
    display: none;
}

#header .header-quote {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

#header .header-phone {
    display: flex;
    align-items: center;
}

#header .header-nav {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

#header .header-menu {
    display: none;
    align-items: center;
}
/* END HEADER */


/* START HEADER SPACER */
#header-spacer 
{
	display: block;
	width: 100%;
	height: 120px;
	background-color: #bbb;
}
/* END HEADER SPACER */


/* START MARKETING */
#marketing {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #222;
    color: #bbb;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
	background-image: url('../img/marketingBackground.jpg');
	background-repeat: none;
	background-position: center;
}

#marketing .marketing-pulse {
    opacity: 0;
    animation: fadeInKeyframes 6s normal forwards;
    -moz-animation: fadeInKeyframes 6s normal forwards;
    -webkit-animation: fadeInKeyframes 6s normal forwards;
    -o-animation: fadeInKeyframes 6s normal forwards;
}

#marketing .marketing-pulse-text {
	background-color: rgba(0, 0, 0, 0.75);
	padding: 8px;
	border-radius: 4px;
}
/* END MARKETING */


/* START ABOUT */
#about {
    display: block;
    position: relative;
    width: 100%;
}

#about .about-title {
    display: block;
    position: relative;
    background-color:#042ad5;
    color: white;
    text-align: center;
    justify-content: center;
    justify-items: center;
    padding: 4px;
    font-size: 13px;
}

#about .about-info {
    display: block;
    position: relative;
    background-color:#fff;
    color: #222;
    text-align: center;
    justify-content: center;
    justify-items: center;
    padding: 4px;
    font-size: 16px;
}

#about .about-caption {
    color: #042ad5;
}
/* END ABOUT */


/* START SOCIAL */
a.social {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #222;
    color: white;
    text-align: center;
    text-decoration: none;
    line-height: 32px;
    border-radius: 4px;
    white-space: nowrap;
    margin: 8px;
    background-repeat: no-repeat;
    background-size: auto;
}

a.social:hover {
    background-color: #042ad5;
}

a.facebook_icon 
{
	background-image: url('../img/social/facebook_icon_black.svg');
	text-indent: -9999px;
}

a.facebook_icon:hover
{
	background-image: url('../img/social/facebook_icon_blue.svg');
}

a.instagram_icon 
{
	background-image: url('../img/social/instagram_icon_black.svg');
	text-indent: -9999px;
}

a.instagram_icon:hover
{
	background-image: url('../img/social/instagram_icon_blue.svg');
}

a.yelp_icon 
{
	background-image: url('../img/social/yelp_icon_black.svg');
	text-indent: -9999px;
}

a.yelp_icon:hover
{
	background-image: url('../img/social/yelp_icon_blue.svg');
}

a.youtube_icon 
{
	background-image: url('../img/social/youtube_icon_black.svg');
	text-indent: -9999px;
}

a.youtube_icon:hover
{
	background-image: url('../img/social/youtube_icon_blue.svg');
}

.social-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

#social {
    display: flex;
    background-color: #444;
    color: white;
    justify-content: center;
    justify-items: center;
    text-align: center;
    width: 100%;
}
/* END SOCIAL */


/* START CONTENT */
#content {
	display: block;
	position: relative;
	width: 100%;
}

#content .content-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 260px;
    width: 100%;
    color: #222;
}

#content .content-row-alt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 260px;
    color: white;
    background-color: #042ad5;
    width: 100%;
}

#content .content-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: center;
    justify-items: center;
    text-align: center;
    padding: 20px;
	min-width: 340px;
}

#content .content-image {
	display: block;
	width: 320px;
	height: 212px;
	background-repeat: no-repeat;
	background-size: auto;
	margin: auto auto;
}

#content .content-image-businessAdvantage {
	background-image: url('../img/businessAdvantage.svg');
}

#content .content-image-walkInWelcome {
	background-image: url('../img/walkInWelcome.svg');
}

#content .content-image-serviceOffer {
	background-image: url('../img/serviceOffer.svg');
}

#content div.servicesRef {
	text-align: center;
	display: block;
	position: relative;
}

#content a.servicesRef {
	color: #042ad5;
	position: relative;
	padding: 4px;
	width: 160px;
	background-color: #bbb;
	display: inline-block;
}

#content a.servicesRef:visited {
	color: #042ad5;
}

#content a.servicesRef:hover {
	color: #fff;
	background-color: #042ad5;
}
/* END CONTENT */


/* START CUSTOMERS */
#customers {
    display: block;
    width: 100%;
    background-color: #444;
    color: white;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

#customers .customers-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

#customers span.customers-recommend {
    font-size: 24px;
    font-weight: bold;
}

#customers .customers-users 
{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: center;
    justify-items: center;
    text-align: center;
}

#customers .customers-user {
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
	background-color: #202020;
	width: 380px;
	height: 250px;
	margin: 8px;
}

#customers .customers-user-icon {
	display: inline-block;
	width: 120px;
	height: 130px;
	background-image: url('../img/userIcon.svg');
	background-repeat: none;
}

#customers .customers-user-testimony {
}

#customers .customers-spacer {
    display: block;
    background-color: #444;
    height: 20px;
}
/* END CUSTOMERS */


/* START COMMERCIAL SERVICES */
#services {
    display: block;
    min-height: 400px;
    width: 100%;
	background-image: url('../img/serviceIconCollage.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 720px 230px;
}

#services .services-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

#services .services-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#services .services-icon-spacer {
	display: block;
	position: relative;
	height: 240px;
	width: 100%;
}
#services-spacer {
	display: block;
	height: 22px;
	background-color: #042ad5;
	width: 100%;
}
/* END SERVICES */


/* START CONTACT */
#contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;    
}

#contact .contact-form {
    background-color: white;
    color: #222;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: center;
    justify-items: center;
    text-align: center;
	min-width: 400px;
}

#contact h1 {
    color:  #042ad5;
}

#contact span.contact-hours {
    color:  #042ad5;
}

#contact .contact-map {
    background-color: #042ad5;
    color: white;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: center;
    justify-items: center;
    text-align: center;
	min-width: 400px;
	min-height: 300px;
}
/* END CONTACT */


/* START QUOTE */
#quote {
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #444;
    color: #fff;
    text-align: center;
}

#quote .quote-info {
    padding: 8px;
    font-weight: 600;
    font-size: 20px;
}

#quote .quote-required {
    color: #202020;
}

#quote input, textarea {
    width: 80%;
    font-size: 20px;
    border-radius: 4px;
    margin-top: 6px;
    padding: 3px;
    border: 1px solid #222;
    color: #777;
    background-color: #333;
    resize: none;
}

#quote input[type=submit] {
    background: #222;
    color: white;
    border-radius: 4px;
    border: 0;
}

#quote input[type=submit]:hover {
    background: #042ad5;
}
/* END QUOTE */


/* START CONNECT */
#connect {
    display: block;
    position: relative;
    background-color: white;
    width: 100%;
}

#connect .connect-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    background-color: white;
    text-align: center;
    width: 100%;
}

#connect .connect-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    justify-items: center;
    background-color: white;
    text-align: center;
    width: 100%;
}

#connect .connect-info {
    color: #042ad5;
}

#connect .connect-social {
    color: #222;
}
/* END CONNECT */


/* START FOOTER SPACER */
#footer-spacer 
{
	display: block;
	position: relative;
	width: 100%;
	height: 50px;
	background-color: #bbb;
}
/* END FOOTER SPACER */


/* START FOOTER */
#footer {
	display: flex;
	position: fixed;
	overflow: hidden;
	background-color: #222;
	color: #ccc;
	height: 50px;
	width: 100%;
	bottom: 0;
	font-size: 13px;
	text-align: center;
    align-items: center;
	z-index: 9998;
    justify-content: center;
}
/* END FOOTER */


/* START ANCHOR REFERENCE OFFSET HACK (negates the fixed header distance)*/
.anchorRef  
{
	display: hidden;
	position: relative;
	top: -76px;
}
/* END ANCHOR REFERENCE OFFSET HACK */


/* START HOVER UNDERLINE ANIMATION */
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #042ad5;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #042ad5;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.hover-underline-animation-alt {
    display: inline-block;
    position: relative;
    color: #222;
}

.hover-underline-animation-alt::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #222;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation-alt:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
/* END HOVER UNDERLINE ANIMATION */


/* START ANIMATION KEYFRAMES */
@keyframes fadeKeyframes {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeInKeyframes {
    0% { opacity: 0; }
    50% { opacity: 0.5f; }
    100% { opacity: 1; }
}
/* END ANIMATION KEYFRAMES */


/* START MEDIA QUERIES */
@media screen and (max-width: 580px) {
    #header .header-logo {
        display: flex;
    }

    #header .header-menu {
        display: flex;
    }

    #header .header-nav {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    #header .header-quote {
        display: none;
    }

    #header .header-phone {
        display: none;
    }

    #header .header-nav {
        flex-grow: unset;
    }
}

@media print {
    #popup-menu { display: none; }
}
/* END MEDIA QUERIES */