body {
    font-family: 'Poppins', sans-serif !important;
}

.background_images {
    background: url('./images/banner-bg.jpg') no-repeat center;
    background-size: cover;
}

.background_images_for_list_items {
    background: url('./images/index-02.jpg') no-repeat center;
    background-size: cover;
}

.background_images_roof_hero {
    background: url('./images/commercial-roof-hero-1.png') no-repeat center;
    background-size: cover;
}

.background_images_metal_roof_hero {
    background: url('./images/metal-roofing-1.png') no-repeat center;
    background-size: cover;
}
.background_images_roof_coating {
    background: url('./images/roof-coating.png') no-repeat center;
    background-size: cover;
}

.background_images_about_us {
    background: url('./images/about.png') no-repeat center;
    background-size: cover;
}
.background_images_epdm {
    background: url('./images/epdm-roofing-banner.png') no-repeat center;
    background-size: cover;
}

.background_images_contact_us {
    background: url('./images/contact-us-bg.jpg') no-repeat center;
    background-size: cover;
}

.background_images_roof_repair {
    background: url('./images/roof-repain-01.png') no-repeat center;
    background-size: cover;
}

.background_images_top_roof_hero {
    background: url('./images/tpo.png') no-repeat center;
    background-size: cover;
}

.logo-style img {
    margin: 10px 0px;
    height: 130px;
}
.comercial-roofing-service img{
    height: 300px;
    width: 100%;
}
.center-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 32px;
    color: #0071bc;
}

.bg-color {
    background-color: #0071bc;
}

.text-color {
    color: #0071bc;
}

/* #toggle_menu_items {
	transition: transform 10s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hidden {
	opacity: 0;
	height: 0;
	overflow: hidden;
} */
.topbar {
    z-index: 99999 !important;
}

#toggle_menu_items {
    z-index: 999;
}

#toggle_menu_items li {
    position: relative;
    z-index: 999999 !important;
    transition: all linear .3s;
}

#toggle_menu_items ul {
    position: absolute;
    background: #275CA5;
    display: none;
    margin-top: 0px;
    z-index: -99;
    width: 283px;
    transition: all linear .3s;
    padding-bottom: 20px;

}

#toggle_menu_items li:hover ul {
    display: block;
    transition: all linear .3s;

}

#toggle_menu_items li ul li {
    padding: 7px 0px;
    padding-left: 30px;
    color: #fff;
    transition: all linear .3s;
    border-bottom: 1px solid #fff;
}

#toggle_menu_items li ul li:hover {
    background: #0E2A60;
}

.industry {
    text-align: center;
    padding: 30px 0px;

}

.industryText {
    font-size: 36px;
    text-align: center;
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
    line-height: 50px;
    font-weight: bold;
    max-width: 1520px;
}

.centerclm {
    width: 30%;
    margin-top: 50px;
}



/* roofing photo */
a.lightbox img {
    height: 150px;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
    margin: 94px 20px 20px 20px;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
    position: fixed;
    top: -100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    overflow: hidden;

}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 0%;
    max-width: 0%;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
    box-sizing: border-box;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;

}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: white;
    color: black;
    text-decoration: none;
    position: absolute;
    top: -80px;
    right: 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
    opacity: 1;
    top: 0;
    bottom: 0;
    overflow: scroll;
}

.lightbox-target:target img {
    max-height: 100%;
    max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
    top: 0;
}
.web-nav {
    display: block;
}
/*======== large device =========*/
@media (min-width: 992px) and (max-width: 1199.98px) {}


/*======== medium device =========*/
@media (min-width: 768px) and (max-width: 991.98px) {}


/*======== small device =========*/
@media (min-width: 576px) and (max-width: 767.98px) {}


/*======== Extra small device =========*/
@media (max-width: 575.98px) {
    .center-nav-text {
        display: none;
    }

    .web-nav {
        display: none;
    }
}