:root {
    --accent-color-alpha: #111;
    --accent-color: #00caca;
    --cta-color: #1a1a1a;
    /* --blue-color: #24a0f6;
    --red-color: #c92e2a; */
    --light-gray: #979797;
    --dark-gray: #444444;

}

* {
    box-sizing: border-box;
}

body,
html {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 18px;
}


/************ Globals ***************/

p {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.5em;
}

h1 {
    font-size: 48px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin: 20px 0;
}

h2 {
    font-size: 36px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin: 20px 0;
}

h3 {
    font-size: 28px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin: 20px 0;
}

h4 {
    font-size: 20px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin: 20px 0;
}



.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.flex-col-2,
.flex-column-2 {
    width: 100%;
    flex-basis: 490px;
    flex-grow: 1;
}

.grid-row,
.list-row {
    display: grid;
    gap: 15px;
    justify-content: center;
    align-content: stretch;
    margin-inline: auto;
}

.content-wrapper-sm {
    width: 98.5%;
    max-width: 1300px;
    margin: auto;
padding-inline: 2%;
}

.content-wrapper-md {
    width: 98.5%;
    max-width: 1400px;
    margin: auto;
padding-inline: 3%;
}

.content-wrapper {
    width: 98.5%;
    max-width: 1500px;
    margin: auto;
padding-inline: 5%;
}

.content-wrapper-lg {
    width: 98.5%;
    max-width: 1800px;
    margin: auto;
padding-inline: 5%;
}

.request-wrapper {
    max-width: 1100px;
    width: 96%;
    margin: 50px auto;
padding-inline: 2%;
}


/***** GSAP Animations *****/
.gsap-fade,
.gsap-from_left,
.gsap-from_right {
    opacity: 0;
}

.gsap-fade img {
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}


/****** Site Button *****/

.sb-container,
.sb_container {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.site_button {
    cursor: pointer;
    padding: 8px;
    background: var(--cta-color);
    box-shadow: 0 2px 3px -1px #333;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    margin: 20px auto 15px;
    font-size: 17px;
    max-width: fit-content;
    text-align: center;
    position: relative;
    border-radius: 0;
    border: 2px solid #ccc;
}

.site_button:hover {
    background-color: var(--accent-color-alpha);
    opacity: 1;
}

.site_button a {
    color: #ffffff;
    text-decoration: none;
    margin: auto;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}

.site_button:hover a {
    color: #ffffff;
}


/**** Site Button Hover Effect ****/
/*****
.site_button::before,
.site_button::after {
  position: absolute;
  content: "";
}


.site_button::before {
    background-color: var(--accent-color-alpha);
    transition: 0.3s ease-out;
    top: 0; bottom: 0; left: 0; 
    height: 100%; width: 0%;
  }
  
  .site_button a:hover {
    color: rgb(255,255,255);
    transition: 0.2s 0.1s;
  }

  .site_button:hover::before {
    width: 100%;
  }

****/

.site_button .material-symbols-outlined {
    vertical-align: middle;
    font-size: 1.55rem;
}


/****** Underline Design ******/
.underline-multi {
    display: block;
    position: relative;
    width: 30px;
    height: 5px;
    background: #000000;
}

.h2-underline {
    display: block;
    position: relative;
    width: 175px;
    height: 5px;
    margin: 15px auto;
    background: var(--accent-color);
}

.h2-underline.grey-underline {
    border: 3px solid #737373;
}

.h2-underline.white-underline {
    border: 3px solid #ffffff;
}

.h2-underline:before {
    left: -100px;
}

.h2-underline:after {
    right: -100px;
}

.h3-underline {
    width: 200px;
    height: 3px;
    background-color: #e1e1e1;
    margin-block: 8px;
}


.h2-underline-multi:before,
.h2-underline-multi:after {
    content: "";
    position: absolute;
    background: inherit;
    background: inherit;
    width: 30px;
    height: 5px;
}

.h2-underline-multi:before {
    left: -80px;
    bottom: 0;

}

.h2-underline-multi:after {
    right: -80px;
    bottom: 0;

}


/* -- Infobar -- */

.infobar-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    height: 42px;
}

.infobar_wrapper {
    display: none;
}

.infobar-contact a {
    color: #ffffff;
}

.infobar-contact p {
    margin: 0;
}

.infobar-contact-icon {
	margin-right: 12px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	color: #ffffff;
	width: 43px;
	height: 41px;
	background: var(--accent-color);
}

.infobar-contact-icon .infobar-contact-sm a {
    color: #fff;
}

.infobar-contact-icon i {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
}

.infobar-contact-icon svg {
    padding: 11px 8px;
}

.infobar-contact {
    display: flex;
    align-items: center;
}

.infobar-contact-sm {
    display: none;
}

.infobar-estimate {
    font-weight: 800;
    color: #ffffff;

}

.infobar-estimate:hover,
.infobar-estimate:focus {
    color: #fff;
}

/************** Header *****************/

.header_wrapper {
    position: relative;
    border-top: none !important;
    z-index: 100;
    padding: 20px 50px;
    top: 42px;
    background: #ffffff;
    height: 140px !important;
    position: sticky;
    transition: top 0.3s;
}

.header {
    width: 100%;
    max-width: 2000px;
    height: auto;
}

.logo {
    position: absolute;
    top: -2px;
    left: 20px;
    z-index: 200;
    width: 260px;
    padding: 15px;
}

.logo img {
    width: 100%;
    min-height: 90px;
    max-width: 200px !important;
}

.mobile_logo {
    max-width: 200px;
    margin: -2px auto;
    text-align: center;
}

.mobile_logo img {
    width: 100%;
    max-width: 235px;
    margin-inline: auto;
}

.header-estimate {
    padding: 10px;
    display: none;
}



.header-estimate a {
    color: #fff;
    font-weight: 600;
}

.menu_wrapper {
	max-width: 100% !important;
	width: 100%;
	top: 62px;
	right: 0;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    font-size: 20px !important;
    font-weight: 600;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    height: 100%;
    position: relative;
    text-transform: uppercase;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    text-align: center;
    padding: 0px;
    margin-right: 10px;
}


.menu ul li a {
    color: #3e3e3e;
    padding: 5px;
}

.menu ul li a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.menu ul li a:hover .menu ul li ul li a {
    color: var(--accent-color);
}


.menu ul li ul li {
    background-color: #f1f1f1;
}

.menu ul li ul li a {
    color: var(--accent-color) !important;
}

.menu ul li ul li:hover {
    background: #5f5f5f;
    color: var(--accent-color);
}

.menu ul li ul li:hover~a {
    color: #ffffff;
}

.menu ul li ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}



/* Nav Animation */


.menu li:before,
.menu li:after {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    height: 2px;
    width: 45%;
    background-color: var(--accent-color);
    position: absolute;
    content: '';
    opacity: 0;
}

.menu li:before {
    top: 0;
    left: 0;
}

.menu li:after {
    bottom: 0;
    right: 0;
}

.menu li:hover:before,
.menu li.hover:before,
.menu li:hover:after,
.menu li.hover:after {
    opacity: 1;
}

.menu li:hover:before,
.menu li.hover:before {
    left: 45%;
}

.menu li:hover:after,
.menu li.hover:after {
    right: 45%;
}

.menu li:hover {

    background: transparent !important;
    color: var(--light-gray);
    transition: .3s;

}

.mobile_menu_icon {
    background: var(--accent-color) !important;
}



.highlighted-item {
    background-color: var(--accent-color) !important;
    border-radius: 0;
}

.menu ul li ul .highlighted-item a {
    color: #ffffff !important;
}

.menu ul li ul .highlighted-item a:hover {
    color: var(--accent-color) !important;
}

.maincontent {
    display: block !important;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.boxbody {
    border-width: 0px;
    margin-top: 12px;
}

.boxheader {
    border-radius: 0px;
    color: #111111;
    background-color: rgba(239, 239, 239, 1.0);
    border-style: solid;
    border-width: 0px;
    border-left-width: 8px;
    border-color: var(--accent-color);
}

.map_wrap {
    box-shadow: none !important;
}

/***** HOME PAGE *****/

.home-global,
.home-section {
    padding: 75px 0;
}

.home-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.9rem;
}

.h2-heading {
    font-weight: 600;
    text-align: center;
    color: var(--accent-color-alpha);
}


.h2-subtitle {
    font-size: 20px;
    text-align: center !important;
    color: var(--dark-gray);
}

.footer_bottom_row_wave {
    height: 100px;
    overflow: hidden;
    margin-top: -50px;
    z-index: 2;
    position: relative;
}

.footer_wrapper .footer_bottom_row_wave .shape-fill {
    fill: var(--accent-color) !important;
}



    /*  SLANT UP  */

    .slant-up {
        width: 100%;
        height: 60px;
        position: absolute;
        left: 0px;
        background: linear-gradient(to right bottom, #f7f7f7 49%, #fff 50%), linear-gradient(-50deg, #fff 16px, #000 0);
    }



    /* SLANT DOWN  */

    .slant-down {
        width: 100%;
        height: 60px;
        position: absolute;
        left: 0px;
        background: linear-gradient(to left bottom, #fff 49%, #f7f7f7 50%);
    }



/******** Hero Banner / Intro Content ******/


  /*** Home Hero Video Section ***/

  .hero-video-content {
	position: relative;
	height: auto;
	min-height: 400px;
	max-height: 700px;
	overflow: hidden;
	background: url(/imageserver/UserMedia/markferguson/hero-bg100.jpg);
}

.hero-video-container {
	position: relative;
	min-height: 400px;
	overflow: hidden;
}


.hero-video-overlay {
	position: absolute;
	width: 100%;
	background: #0000009c;
	top: 0;
	bottom: 0;
	z-index: 9;
}

.hero-video-container video {
	display: block;
	min-height: 700px;
	width: 100%;
}

.hero-video-row-wrapper {
	position: absolute;
	max-width: 100%;
	width: 100%;
	text-align: center;
	top: 10%;
}

.hero-video-row.flex-row {
	position: relative;
	top: 20%;
	z-index: 9;
	max-width: 1300px;
	margin-inline: auto;
	padding-inline: 20px;
	width: 98.5%;
}

.hero-video-text {
	width: 100%;
	text-align: center;
	margin-top: 5%;
	z-index: 99;
	color: #fff;
}

.hero-video-text h1 {
    font-size: 55px;
}

.hero-video-text h1 span {
    font-size:40px;
    color: #fff;
}

.hero-video-text p {
	font-size: 20px;
	/* font-style: italic; */
	max-width: 50ch;
	margin: 25px auto;
	font-weight: 400;
}

.hero-video-text h1 {
    width: fit-content;
    font-size: 44px;
    text-align: start;
}


.hero-video-text p {
    width: 100%;
    margin: auto;
    letter-spacing: 1px;
    width: 100%;
    line-height: 1.7em;
    text-align: start;

}

.intro-sub {
    text-align: center !important;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    margin: 0px auto 25px !important;
    font-size: 20px;
    font-weight: 400;
}

.intro-list {
    width: fit-content;
}

.intro-right {
    text-align: center;
    margin: 30px auto;
}

.hero-video-text .sb_container {
    display: none;
}

.intro-para.mobile {
    display: none;
}



/* Horizontal Estimate */
.global_1342 {
    display: none;
}

/***** HOME PAGE *****/

.home-global,
.home-section {
    padding: 75px 0;
}

.home-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.9rem;
}

.h2-sup-title {
    color: #7d7d7d;
    text-align: center;
}


.h2-subtitle {
    font-size: 20px;
    text-align: center !important;
    color: var(--dark-gray);
    max-width: 90ch;
    width: 100%;
    margin: 20px auto;
}

.footer_bottom_row_wave {
    height: 100px;
    overflow: hidden;
    margin-top: -50px;
    z-index: 2;
    position: relative;
}

.footer_wrapper .footer_bottom_row_wave .shape-fill {
    fill: var(--accent-color) !important;
}



/******** Hero Banner / Intro Content ******/
.hero-banner {
    overflow: hidden;
    max-height: 720px;
}

.intro-bg video.cover {
    width: 100%;
    min-width: 240vh;
    height: auto;
}


.intro-content {
    width: 100%;
    padding: 5%;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.95) 35%, rgba(23, 23, 23, 0.35) 100%);
    height: 100%;
    color: #ffffff;
    text-align: center;
    max-height: 720px;
    min-height: 720px;
}

.intro-content .content-wrapper {
    position: relative;
    top: 60px;
}


.intro-bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 720px;
    min-height: 720px;

}

.intro-content .underline-multi {
    margin-left: 100px;
}

.intro-row {
	gap: 35px;
	justify-content: center;
	align-items: center;
	margin-top: 0px;
	max-width: 1300px;
	margin-inline: auto;
}

.intro-row .flex-col-2 {
    width: 100%;
    flex-basis: 400px;
    flex-grow: 1;
}



.intro-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-flow: row nowrap;
    margin: auto;
}

.intro-list-item h3,
.intro-list-item span {
    font-weight: 600;
}

.intro-list-item h3 {
    font-size: 26px;
}

.intro-list-item span {
	padding: 3px;
	border-radius: 5px;
}



.hero-video-text .sb_container {
    display: none;
}


.intro-right {
    text-align: center;
    margin: 30px auto;
}



/* -- Home - Estimate Box */

.estimate-box {
	background: #000;
	margin: auto;
	padding: 25px;
	color: #fff;
	max-width: 500px;
	text-align: center;
	position: relative;
	z-index: 2;
	top: 0;
	-webkit-box-shadow: 2px 2px 15px 5px rgba(0,0,0,.15);
	box-shadow: 2px 2px 15px 5px rgba(0,0,0,.15);
}


.estimate-box h3 {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
}


.estimate-heading {
    color: var(--accent-color);
    margin: 10px 0;
    font-weight: bold;
}

.estimate-box .form_field_wrapper {
    padding: 3px;
    margin-bottom: 8px;
}

.estimate-box .form_field_wrapper:hover {
    background: none;
}

.estimate-box .form_field_content {
    width: 100% !important;

}

.estimate-box .form_field_text,
.form_field_select,
.estimate-box .form_field_textarea {
    width: 100%;
    background: #ffffff;
}

.estimate-box .required_field_element {
    display: none;
}

.estimate-box .required_field {
    width: 100% !important;
}


.estimate-box .thank_you_content {
    background: var(--accent-color);
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.estimate-box .form_field_title {
    display: none;
}


.estimate-box .btn.btn-primary {
    border: 3px solid #ffffff;
    color: #ffffff;
    background: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    width: 40%;
    padding: 12px 0;
}

.estimate-box .btn.btn-primary:hover {
    background-color: var(--cta-color);
    border-color: var(--cta-color);
}

/* Inspection Section  */
.inspection-section h2 {
    font-size: 42px;
}



/* Home Intro Section */
.home-intro-image {
    text-align: center;
    margin-inline: auto;
}

.home-intro-image img {
    max-width: 700px;
    width: 100%;
    margin: auto;
    border-radius: 5px;
    margin-top: 45px;
}





/********** GAF Section **********/
.gaf-section {
	padding: 20px 0 40px;
	/* z-index: 1; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0% 70%, rgba(255, 255, 255, 0.97) 90% 100%), url(/imageserver/UserMedia/american/gaf-bg-main.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	z-index: 9;
	border-style: solid;
	border-image-slice: 1;
	border-width: 4px 0px 0px;
	border-image-source: linear-gradient(90deg, rgba(0,253,253,1) 14%, rgba(0,231,231,1) 29%, rgba(0,193,193,1) 75%);
}

.gaf-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gaf-certs-wrapper {
    text-align: center;
}

.gaf-content .gaf-certs-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: -70px;
}

.gaf-content .site_button,
.rft-content .site_button {
    margin: auto;
    text-align: center;
}

.gaf-content h1 span {
    color: var(--accent-color);
}

.gaf-content p {
    max-width: 120ch;
    width: 100%;
}

.gaf-content p span {
    font-weight: 900;
    color: var(--accent-color);
}






/***** SERVICES SECTION *****/

.home-svc-section {
    padding-block: 70px;
    position: relative;
    background-image: linear-gradient(180deg, rgba(253, 253, 253, 0.97) 0% 20%, rgba(255, 255, 255, 0.1) 40% 75%, rgba(253, 253, 253, 0.44) 85% 100%), url(/imageserver/UserMedia/Precision/2023/abstract-bg007.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.home-svc-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px auto 30px;
}

.svc-item-wrapper {
    text-align: center;
}

.svc-item-icon {
    margin: auto;
    border: 4px solid #fff;
    border-radius: 9px;
    transform: rotate(45deg);
    padding: 7px 0px;
    width: 100px;
    transition: all 0.3s linear;
    background: var(--accent-color);
}

.svc-item-icon:hover {
    background: #fff;
    transform: rotate(0deg);
    border-color: var(--accent-color);
}

.svc-item-icon svg {
    transform: rotate(-45deg);
    padding: 8px;
}

.svc-item-icon:hover svg path {
    fill: var(--accent-color) !important;
}

.svc-item-icon:hover svg {
    transform: none;
}

.svc-item-icon span {
    font-size: 65px;
    border: 2px solid #aaa;
    border-radius: 50%;
    padding: 10px;
}

/***** GAF Homeviewer Section *****/
.gaf-homeviewer {
    padding: 60px 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-style: solid;
	border-image-slice: 1;
	border-width: 4px 0px 0px;
	border-image-source: linear-gradient(90deg, rgba(0,253,253,1) 14%, rgba(0,231,231,1) 29%, rgba(0,193,193,1) 75%);
}

.gaf-homeviewer h2 {
    text-align: center;
    margin: 20px auto auto;
    font-weight: 600;
}

.homeviewer-row {
    flex-direction: row-reverse;
    padding: 45px 10px;
}

.homeviewer-image {
    text-align: center;
    margin-inline: auto;
}

.homeviewer-image img {
    margin: auto;
    max-width: 425px;
    width: 100%;
    border-radius: 5px;
}

.homeviewer-text {
    padding: 10px 20px;
    text-align: center;
}



/***** Why Us Content ******/
.why-overview-section {
    position: relative;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0% 70%, rgba(255, 255, 255, 0.97) 90% 100%), url(/imageserver/UserMedia/trconstruction/banner-bg004.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    
}


.why-section {
    position: relative;
    text-align: center;
    margin: 50px auto 35px;
}

.why-section .why-us-row {
    grid-template-columns: repeat(3, 1fr);
    margin: 60px auto 35px;
}

.why-us-column h4 {
    color: var(--accent-color);
    font-weight: 600;
}



/***** Review Section ********/

.review-section {
	position: relative;
	padding: 40px 0px;
	background: var(--accent-color);
        margin-top: 40px;
}

.review-content {
    padding-block: 20px;
}

.review-title {
    text-align: center;
}

.review-title .h2-heading {
    color: #fff;
}

.review-title .h2-underline,
.review-title .h2-underline::after,
.review-title .h2-underline::before {
    background: #fff;
}

.review-card-main {
    padding: 15px 8px;
    max-width: 560px;
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    -webkit-box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.08);
    box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.08);
    transition: all ease-in 0.3s;
    border: 2px solid #000000;
    background: #ffffff;
}

.review-card-main:hover {
    -webkit-box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 2px 9px 64px 2px rgba(0, 0, 0, 0.16);
}

.review-card-main.colored-card {
    color: #fff !important;
    background: #4c709d;
}



.review-content ul {
    list-style: none;
    margin: 0px auto 30px;
    padding: 0px;
}

.review-content ul li {
    display: inline;
}

.review-content h1 {
    text-align: center;
}

.review-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-lines: 7;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    overflow: hidden;
}


.review-row {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    margin: 40px auto;
}

.card-info-row {
    display: flex;
    gap: 12px;
    width: fit-content;
    margin: 20px auto;
    align-items: center;
}

.card-info-row img {
    max-width: 30px;
    max-height: 30px !important;
}

.card-info-row h3 {
    font-size: 17px;
}

.material-symbols-outlined.review-star {
    font-variation-settings:
        'FILL' 1;
    color: #fbbc04;

}




/******** Rooftroop Section **********/
.rooftroop-content {
    background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.83) 0% 30%, rgb(255, 255, 255) 50% 100%), url(/imageserver/UserMedia/prestige/rft-bg002.jpg);
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.rooftroop-section:las {
    max-width: 85%;
    text-align: center;
    padding-block: 20px;
    margin-inline: auto;
}



.rooftroop-section h1 {
    color: #000000;
}

.rooftroop-section h2:last-of-type {
    color: #000000;
}

.rooftroop-section p {
    max-width: 90%;
    text-align: center;
    color: #000000;
    margin: auto;
}

.rooftroop-section strong {
    color: red;
}

.rooftroop-section .site_button {
    margin: 20px auto;
}



/*********** Footer **********/
.footer_wrapper {
    position: relative;
    background: #151515;
    border-top: none;
}

.footer {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.footer-col1 {
    padding-right: 10%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 70px;
    padding-top: 35px;
    margin-inline: auto;
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    background-color: var(--accent-color);
    color: #fff;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
}

.bottom-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.bottom-link {
    color: #ffffff;
}

.contact-address {
    margin-bottom: 35px;
}

.footer-social {
    margin-bottom: 35px;
}

.sitemap_item {
    font-size: 16px;
    border-bottom: 0px;
}

.footer-top h1 {
    font-size: 36px;
}

.footer-top h2 {
    font-size: 28px;
}

.footer-top h3 {
    font-size: 20px;
}

.contact-address p {
    font-size: 16px;
}

.footer-phone {
    color: #000000;
}

.footer-contact {
    display: flex;
    margin: 30px 0;
}

.footer-contact-icon {
    color: var(--accent-color);
    margin-right: 12px;
}

.footer-contact p {
    margin: 0;
}

.footer-license p {
    font-weight: 600;
}

.footer-license p span {
    color: var(--accent-color);
}

.footer-top .temp_module_wrap {
    min-height: 30px;
}

/***** Interior Pages Content *****/
.interior-banner {
	position: relative;
	background-image: url(/imageserver/UserMedia/markferguson/hero-bg100.jpg);
	background-color: #2b2b2b;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	color: #ffffff;
	text-align: center;
	padding: 85px 0px 70px;
	border: 10px solid;
	border-image-slice: 1;
	border-width: 0px 0px 6px;
	border-image-source: linear-gradient(to left, #00f9f9, #00c1c1);
}



.interior-banner h1 {
    color: #ffffff;
}

.interior-title h1 span {
    color: #ffffff;
}

.interior-title h3 span {
    color: #ececec;
}

.interior-banner p {
    max-width: 150ch;
    margin: 20px auto 0px;
}

.interior-intro-para {
    max-width: 110ch;
    width: 96%;
    margin: 40px auto auto;
    padding: 40px;
    border-radius: 5px;
    line-height: 1.6;
    font-weight: 500;
}

.interior-h2 {
    text-align: center;
}


/* Services Overview  */
.services-overview-section {
    padding-block: 30px 65px;
}

.services-overview-intro {
    background: #eee;
    padding: 15px 10px;
    border-radius: 5px;
}

.services-overview-intro {
    max-width: 110ch;
    width: 100%;
    margin: 20px auto;
}

.services-overview-image img {
    border-radius: 5px;
}

.services-overview-text p {
    text-align: left;
}


/* Services Pages */
.interior-content-section {
    padding-block: 50px;
    margin-inline: auto;
}


.interior-list-item i {
    display: inline !important;
    vertical-align: middle;
    font-size: 35px;
    margin-right: 10px;
    color: var(--accent-color);
    padding: 2px;
    border-radius: 4px;
}

.interior-products-col h2 {
    text-align: center;
    font-weight: 600;
}


.interior-image-container {
    text-align: center;
    float: right;
    width: 43vw;
    margin: 12px;
    background-color: #fff;

}


.interior-image-container img {
    width: 100%;
    margin: 12px;
    border-radius: 5px;

}

.services-section {
    padding-block: 60px;
    margin-top: 40px;
}

.interior-svc-title {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
}

.interior-list-item .h3-underline {
    background-color: var(--accent-color-alpha);
}


.interior-product-text p {
    max-width: 100ch;
    width: 100%;
    margin: 25px auto;
}

.interior-product-image {
    text-align: center;
    margin: auto;
}

.interior-product-image img {
    max-width: 415px;
    width: 100%;
    border: 2px solid #fff;
    margin: auto;
    border-radius: 5px;
}

.products-section {
	padding: 65px 15px;
	background-image: linear-gradient(180deg, rgba(17, 17, 17, 0.886) 0%, rgba(0, 0, 0, 0.891) 100%), url(/imageserver/UserMedia/markferguson/shingles-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #ffffff;
	clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 100%);
}

.products-text-header {
    text-align: center;
}


.product-cards-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
    padding-block: 30px;
}


.product-card-container {
    text-align: center;
    margin: auto;
    transition: all .3s linear;
}

.product-card-overlay {
	visibility: hidden;
	background: #00cacad8;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	text-decoration: none !important;
}

.overlay-text {
	color: #fff;
	text-decoration: none;
	font-size: 35px;
	font-weight: 600;
	/* top: 30%; */
	position: relative;
	margin: auto;
	top: 23%;
}

.product-card-container:hover .product-card-overlay {
    visibility: visible;
}


.product-card-container img {
    max-width: 250px;
    width: 100%;
    border: 2px solid #fff;
    margin: auto;
    border-radius: 5px;
}

.product-card-container .site_button.square {
    background-color: #fff;

}

.product-card-container .site_button.square a {
    color: var(--accent-color);

}

.product-card-container .site_button.square:hover {
    background-color: var(--accent-color-alpha);

}

.product-card-container .site_button.square:hover a {
    color: #ffffff;

}

.product-card-container {
	margin: auto;
}

.product-card-container:hover {
    transform: translateY(-8px);
}

.roof-list {
    font-weight: 600;
}

.comm-roofs {
    grid-template-columns: 1fr 1fr 1fr;
}

.roof-type-item {
    margin: auto;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.roof-type-item img {
    margin: auto;
    width: 100%;
}


/* Contact Page */

.contact-right {
    padding: 36px;
}

.contact-left h3 {
    text-align: center;
}

.contact-left {
    padding-right: 5%;
}

.contact-left .estimate-form {
    padding: 36px;
    background-color: #ffffff;
    box-shadow: 0px 3px 4px 6px rgba(0, 0, 0, 0.08);
}


.beforeAfterContainer {
    margin-block: 45px 30px;
}



/******* MEDIA QUERIES *******/

@media (max-width: 2000px) {

    .hero-video-container video {
        width: 2200px!important;
    }
}



@media (min-width: 1280px) {
    .tile__divider {
        height: 27px;
    }

    .tile__divider::before {
        width: 280px;
    }

    .tile__divider::after {
        width: calc(100% - 306px);
    }

    .tile__divider-line {
        left: 279px;
    }

}

@media (max-width: 1200px) {


    .header_wrapper {
        height: 160px !important;
    }



    .logo {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }

    .logo img {
        width: 100%;
        max-width: 195px !important;
        min-height: 80px;
    }

    .menu_wrapper {
        max-width: 100% !important;
        width: 100%;
        top: 88px;
        right: 0;
    }

    .menu ul {
        text-align: center;
        list-style: none;
    }

    .menu ul li {
        padding: 0px !important;
    }

    .menu ul li a {
        font-size: .85em;
    }

    .menu ul li:hover>ul {
        top: 42px;
    }


}



@media (max-width: 1127px) {
    .intro-left {
        margin-top: 30px;
    }

    .intro-left p {
        line-height: 1.5em;
    }

}


@media (max-width: 1055px) {
    .intro-left {
        margin-top: 120px;
    }

    .intro-left .sb_container {
        display: block;
    }

    .hero-video-content {
        position: relative;
        height: 100%;
        min-height: unset;
        max-height: unset;
        overflow: visible;
        padding: 60px 0px;
        background-color: #222;
        background-blend-mode: multiply;
    }

    .hero-video-overlay {
        display: none;
    }

    .hero-video-row-wrapper {
        position: relative;
        max-width: 100%;
        width: 100%;
        text-align: center;
        top: 10%;
    }

    .hero-video-container {
        position: relative;
        min-height: auto;
        overflow: visible;
        height: auto;
    }

    .hero-video-container video {
        display: none!important;
    }

    .hero-video-text h1 {
        font-size: 42px;
        text-align: center;
        margin-inline: auto;
    }

    .intro-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-inline: auto;
        gap: 5px 30px;
    }

    .intro-list-item {
        margin: unset;
    }

    .gaf-row {
        padding: 0 !important;
    }

    .gaf-left {
        display: none;
    }

    .gaf-right {
        width: 100%;
        padding: 0;
        background-image: url(/imageserver/UserMedia/orsgeneral/gaf-charcoal-roof.jpg);
        background-color: #333333;
        background-blend-mode: multiply;
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        color: #ffffff;
    }

    .gaf-right-content {
        background-color: #00000000;
        left: 0;
        width: 100%;

    }

    .gaf-left {
        height: 515px;
        margin-bottom: 25px;
    }

    .gaf-right-content .h2-heading {
        color: #dbdbdb;
    }
}





@media (max-width:981px) {

    .infobar-contact-icon {
        margin: 0 6px;
    }

    .infobar-contact-lg {
        display: none;
    }

    .infobar-contact-sm {
        display: block;
    }

    .header_wrapper {
        height: 146px !important;
    }

    .review-row {
        grid-template-columns: 1fr;
    }


    .contact-left .estimate-form {
        padding: 18px;
    }

    .estimate-form .form_field_wrapper {
        flex-wrap: wrap;
    }

    
    .product-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-top {
        grid-template-columns: 1fr;
    }

    .bottom-info {
        grid-template-columns: 1fr;
    }

    .footer-col2 {
        display: none;
    }

    .contact-address h4 {
        display: none;
    }

    .footer-social h4 {
        display: none;
    }

}


@media (max-width:953px) {
    .interior-image-container {
        float: none;
        margin: auto;
        width: 100%;
    }

    .interior-image-container img {
        max-width: 575px;
        width: 100%;
        margin: auto;

    }
}

@media (max-width:900px) {
    .services-card {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .home-svc-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-section .why-us-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-us-column p {
        max-width: 54ch;
        width: 100%;
        margin: auto;
    }

}



@media (max-width:767px) {

    .hero-banner {
        overflow: hidden;
        max-height: 560px;
    }

    .intro-bg {
        max-height: 560px;
        min-height: 560px;
    }


    .why-list {
        grid-template-columns: 1fr;
    }

    .why-us-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .bottom-info {
        grid-template-columns: 1fr;
    }

    .footer-col2 {
        display: none;
    }

    .contact-address h4 {
        display: none;
    }

    .footer-social h4 {
        display: none;
    }

}


@media(max-width: 760px) {


    .interior-product-cards {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .infobar-row {
        display: flex;
        justify-content: center;
    }

    .infobar-estimate {
        margin: 0 15px 0 5px;
    }

    .infobar-col {
        position: initial;
    }

    .infobar-phone-list {
        width: 100%;
    }

    .header_wrapper {
        height: 140px !important;
        top: 58px;
    }

    .intro-left h1 {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .intro-list {
        display: grid;
        grid-template-columns: 1fr;
        margin-inline: auto;
        gap: 5px 30px;
    }

    .home-svc-row {
        grid-template-columns: repeat(2, 1fr);
    }


    .interior-list-item h3 {
        font-size: 24px;
    }


    .product-cards-row {
        grid-template-columns: repeat(1, 1fr);
    }


}

@media (max-width:550px) {

    .infobar-row {
        justify-content: flex-end;
    }
}


@media (max-width:480px) {

    .home-svc-row {
        grid-template-columns: repeat(1, 1fr);
    }


    .gaf-left {
        height: 300px;
    }

    .gaf-right-content {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .bottom-info {
        grid-template-columns: 1fr;
    }

    .footer-col2 {
        display: none;
    }

    .contact-address h4 {
        display: none;
    }

    .footer-social h4 {
        display: none;
    }

}