@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*------------------------------------------------*/
/* Variable STYLES */
/*------------------------------------------------*/

:root {
    /* Color Palette */
    --color-h1: #111;  
    --color-h2: #333;  
    --color-h3: #00a9e1;
    --color-text: #111;
    
    --color-link: #666; 
    --color-hover: #00a9e1;  
    
    --color-hr-border: #00a9e1;  
    
    --button-bg-link:#00a9e1;  
    --button-bg-hover: #FFF;
    
    /* Typography */
    --font-family-base: "montserrat", sans-serif;
    --font-family-heading: "Roboto Slab", serif;
    --font-size-normal: 1rem;

    /* Top Level Menu */
    --color-topmenu-link: #111;
    --color-topmenu-hover:#;
    --color-topmenu-border-link: 2px solid transparent;
    --color-topmenu-border-hover: 2px solid #00a9e1;

    --font-size-topmenu: 20px;
    --background-color-up: transparent;
    --background-color-down: transparent;
    --font-weight-topmenu: 400;
    }


/*------------------------------------------------*/
/* Global STYLES */
/*------------------------------------------------*/

a, a:link, a:visited, a:active {
    color:var(--color-link);
    text-decoration: none; 
	-webkit-transition:all ease .3s; 
	transition:all ease .3s;

}

a:hover {
        color:var(--color-hover); 
        text-decoration: none;
		-webkit-transition:all ease .3s; 
		transition:all ease .3s;
}

body {

}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 34px;
	color:var(--color-h1);
	font-family: var(--font-family-heading);	
	font-weight:800;
}

h2 {
    font-size: 24px;
	color:var(--color-h2);
	font-weight:600;
	font-family: var(--font-family-base);
}

h3 {
    font-size: 20px;
    color:var(--color-h3);
	font-weight:400;
}

h4 {
    font-size: 18px;
    color: #111;
}

h5  {
    font-size: 14px;
    color: #111;
}

h6  {
    font-size: 13px;
    color: #666;
}

p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: var(--color-hr-border);
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

div, p {line-height:24px; font-size:16px;}

td {color:var(--color-text);padding:5px;line-height:18px; font-size:var(--font-size-normal);font-family: var(--font-family-base);}

ul li {
    font-size:var(--font-size-normal); 
	color:#222;
	margin-bottom: 8px;
	}

ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
	font-size:var(--font-size-normal); 
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}


/*------------------------------------------------*/
/* Responsive Video and Image STYLE */
/*------------------------------------------------*/

img {
	max-width: 100%;
	height:auto;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




.imglg{ transition: all .2s ease-in-out; }
.imglg:hover { transform: scale(1.02); }


.page-break-section {box-shadow:none !important;}


/* ==============================================
   CHEVRON (Custom Arrow for Dropdowns)
   ============================================== */

/* Prepare dropdown link for arrow positioning */
#dnnMenu .dropdown-toggle {
    position: relative;
    padding-right: 30px; /* Space for arrow */
}z

/* Replace Bootstrap triangle */
#dnnMenu .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .25s ease;
    border-top: none;
    border-left: none;
}

/* Rotate arrow when open */
#dnnMenu li.show > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(225deg);
}



/* ==============================================
   TOP LEVEL NAVIGATION (DESKTOP BASE)
   ============================================== */

#dnnMenu .topLevel {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dnnMenu .topLevel > li {
    position: relative;
}

#dnnMenu .topLevel > li > a {
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 8px;
    background: var(--background-color-up);
    color: var(--color-topmenu-link);
    border-bottom: var(--color-topmenu-border-link);
    transition: all .3s ease;
    font-size: var(--font-size-topmenu);
    font-weight: var(--font-weight-topmenu);
    font-family:var(--font-family-heading);
    display: inline-block;
}

/* Hover / Active / Open */
#dnnMenu .topLevel > li > a:hover,
#dnnMenu .topLevel > li > a:focus,
#dnnMenu .topLevel > li.active > a,
#dnnMenu .topLevel > li.show > a {
    color: var(--color-topmenu-hover);
    background: var(--background-color-down);
    border-bottom: var(--color-topmenu-border-hover);
}



/* ==============================================
   DESKTOP DROPDOWN STYLING
   ============================================== */

@media (min-width: 993px) {

    #dnnMenu .dropdown-menu {
        border-radius: 0;
        background: #f5f5f5;
        padding: 0;
        margin-top: 0;
        border: none;
        min-width: 220px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    #dnnMenu .dropdown-menu li {
        border-bottom: 1px solid #e1e1e1;
    }

    #dnnMenu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    #dnnMenu .dropdown-menu li > a {
        display: block;
        padding: 10px 16px;
        color: #333;
        font-size: 15px;
        text-align: left;
        transition: background .2s ease, color .2s ease;
    }

    #dnnMenu .dropdown-menu li > a:hover {
        background: #e9e9e9;
        color: #111;
    }

}



/* ==============================================
   NAVBAR TOGGLER (Mobile Button)
   ============================================== */

.navbar-toggler {
    margin-bottom: 3px;
    margin-top: 0; /* Adjust if needed */
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}



/* ==============================================
   MOBILE NAVIGATION (≤ 992px)
   ============================================== */

@media (max-width: 992px) {

    /* Stack menu vertically */
    #dnnMenu .topLevel {
        width: 100%;
        text-align: center;
    }

    #dnnMenu .topLevel > li {
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Remove desktop underline styling */
    #dnnMenu .topLevel > li > a,
    #dnnMenu .topLevel > li.show > a,
    #dnnMenu .topLevel > li.active > a {
        border-bottom: none !important;
        background: transparent;
        margin: 0;
        padding: 14px 0;
        width: 100%;
        display: block;
    }

    /* Larger arrow for touch */
    #dnnMenu .dropdown-toggle::after {
        right: 18px;
        width: 10px;
        height: 10px;
    }

    /* Mobile dropdown container */
    #dnnMenu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #eeeeee;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Center dropdown links */
    #dnnMenu .dropdown-menu li > a {
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

    #dnnMenu .dropdown-menu li:last-child > a {
        border-bottom: none;
    }

}




/*------------------------------------------------*/
/* Global Button Styles */
/*------------------------------------------------*/


.MoreButton a:link, .MoreButton a:visited {
  padding: 16px 25px;
  text-align: center;
  color: #FFF;
  font-size:20px;
  display: inline-block;  border-radius:40px;
  border:1px solid var(--button-bg-link);
  background:var(--button-bg-link);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; transition:all ease .5s;
}

.MoreButton a:hover, .MoreButton a:active {
  padding: 16px 25px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: inline-block;
  border:1px solid var(--button-bg-link);
  border-radius:40px;
  background:var(--button-bg-hover);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; transition:all ease .5s;
}



/*------------------------------------------------*/
/* Header STYLES */
/*------------------------------------------------*/

.menuwrap {padding:12px 0;}

.headerwrap {background:#00a9e1;padding:10px 0 10px 0;}
.headertext {text-align:center;padding:7px 0;}
.headertext h1 {color:#FFF;font-size:22px;text-align:center;padding-top:20px;}
.headertext h1 span {color:#FFF;font-size:16px;text-align:right;font-weight:400;font-family:var(--font-family-base);}

.logo {text-align:center;margin:0 auto;text-align:center;}

.menupad {padding-top:10px;}


/*------------------------------------------------*/
/* Main Content STYLES */
/*------------------------------------------------*/


.showcasewrap {
	background:url('images/showcase-responsive_bg.webp');
    width:100%;
    background-size:cover;
    background-position:top center;
    
}

.showcasetext {border-left:1px solid #00a9e1;margin:10% 0 14% 0;}

.showcasetext h2 {font-weight:600;font-size:58px;color:#111;line-height:1.1;font-weight:400;}
.showcasetext h2 span {display:block;}

.call-btn {
    background: #3c3c3c;
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    text-decoration: none;
    gap: 12px;
    cursor: pointer;
}

.call-btn:hover {
    background: #2f2f2f;
    color: #fff;
}

/* ICON */
.call-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon i {
    font-size: 16px;
}

/* TEXT */
.call-top {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.call-bottom {
    font-size: 14px;
    color: #ddd;
}


.drywall-feature {
    position: relative;
}

/* IMAGE STACK */
.image-wrapper {
    position: relative;
    z-index: 2;
}

.main-image {
    border-radius: 20px;
    width: 100%;
}

/* BLUE OFFSET BACKGROUND */
.image-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    background: #1ea4c6;
    border-radius: 20px;
    bottom: -25px;
    right: -25px;
    z-index: 1;
}

/* CTA BAR */
.gallery-cta {
    position: relative;
    margin-top: 15px;
    z-index: 3;
}

.gallery-cta a {
    display: inline-block;
    background: #1ea4c6;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
}

.drywall-feature {
    position: relative;
}

/* IMAGE STACK */
.image-wrapper {
    position: relative;
    z-index: 2;
}

.main-image {
    border-radius: 20px;
    width: 100%;
}

/* BLUE OFFSET BACKGROUND */
.image-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    background: #1ea4c6;
    border-radius: 20px;
    bottom: -25px;
    right: -25px;
    z-index: 1;
}

/* CTA BAR */
.gallery-cta {
    position: relative;
    margin-top: 15px;
    z-index: 3;
    text-align:right;
}

.gallery-cta a {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    text-align:right;
}
.gallery-cta a::after {
    content: "→";
    margin-left: 10px;
    display: inline-block;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-cta a:hover::after {
    transform: translateX(8px);
    opacity: 1;
}

@media (min-width: 992px) {
    .drywall-content {
        padding-left: 50px;
    }
}

/* RIGHT SIDE LIST */
.drywall-list {
    list-style: none;
    padding-left: 0;
    
}

.drywall-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

/* BULLET ICON */
.drywall-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-weight: bold;
}

/* LOWER TITLE BLOCK */
.drywall-title {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.drywall-highlight {
    color:#00a9e1;
    font-weight: 600;
    letter-spacing: 1px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
    .image-bg {
        display: none;
    }

    .drywall-title {
        font-size: 36px;
    }
}

.welcometext {text-align:center;}
.welcometext img {border-radius:50%;margin-top:-170px;box-shadow: 0 -25px 20px 1px rgba(0,0,0,0.2);}

.welcometext h1 {color:#111;font-size:72px;font-weight:400;font-family:var(--font-family-heading);line-height:.9;}
.welcometext h1 span {color:#ad9669;font-size:30px;font-weight:400;font-family:var(--font-family-base);display:inline-block;}

.welcometext a:link, .welcometext a:visited {
    color: #111;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}

.welcometext a:hover, .welcometext a:active{
    color:#ec271c;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}

.sloganwrap {padding-bottom:45%;background:transparent;}

.testimonialtext {text-align:center; margin-top:-100px;}

.testimonialtext h2 {color:#00a9e1;font-size:42px;font-weight:400;font-family:var(--font-family-heading);}
.testimonialtext p {text-align:center;}

.mainwrap {padding:50px 0;}


.service-block {
    margin-bottom: 25px;
}

.service-block h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.service-block p {
    color: #555;
    line-height: 1.6;
}
/*------------------------------------------------*/
/* Footer Content STYLES */
/*------------------------------------------------*/

.footertopwrap {
	background:#212121;
	padding:15px 0;
    border-top:solid 15px #00a9e1;
}

.footerwrap {
    padding:25px 0;
	background:#FFF;
}

.footerlinks {padding-top:10px;font-size:18px;color:#DDD;text-align:center;}
.footerlinks h3 {font-size:20px;color:#DDD;text-align:left;font-weight:600;}
.footerlinks p {font-size:16px;color:#DDD;text-align:left;}

.footerlinks ul {
	list-style:none;
	margin:0;
	padding:10px 0 0 0;
    border-left:1px solid #00a9e1;
}

.footerlinks ul li {
	list-style:none;
	margin:0;
}


.footerlinks li { text-align:left;font-size:18px;padding-bottom:10px;}

.footerlinks li a:link, .footerlinks li a:visited {padding-left:7px;color:#DDD;font-size:18px;-webkit-transition:all ease .5s; transition:all ease .5s;}
.footerlinks li a:hover, .footerlinks li a:active{padding-left:10px;color:#00a9e1;font-size:18px;-webkit-transition:all ease .5s; transition:all ease .5s;}

.footerlinks a:link, .footerlinks a:visited {color:#DDD;font-size:22px;}
.footerlinks a:hover, .footerlinks a:active{color:#00a9e1;font-size:22px;}

.login {color:#666;font-size:12px;}
.login li {color:#00a9e1;font-size:12px;}


a.login:link {color:#666; font-size:12px; text-decoration:none;}
a.login:visited {color:#666; font-size:12px; text-decoration:none;}
a.login:active {color:#ad9669; font-size:12px; text-decoration:none;}
a.login:hover {color:##00a9e1; font-size:12px; text-decoration:underline;}

.copyright {font-size: 12px;color: #666;text-align:center;}

a.copyright:visited {color: #666; font-size:12px; text-decoration:none;}
a.copyright:active {color: #666; font-size:12px; text-decoration:none;}
a.copyright:link {color: #666; font-size:12px; text-decoration:none;}
a.copyright:hover {color: #00a9e1; font-size:12px; text-decoration:underline;}

.wecontrol {
    text-align: center;
    font-size: 11px;
    padding-top: 10px; 
	color: #666;

}

.wecontrol ul { 

  margin:0;
  padding:0;
}

.wecontrol ul li { 
  display: inline; 
  color: #666; 
  margin:0;
  padding:0;
}

.wecontrol ul li a
{
   text-decoration: none;
   padding: 3px;
   color: #666;
}

.wecontrol ul li a:hover {
    color:#ad9669;
    text-decoration:underline;
}

/*------------------------------------------------*/
/* @media Display STYLES */
/*------------------------------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .testimonialtext {text-align:center; margin-top:0;}
}

/* Small Devices, Tablets */

@media only screen and (max-width : 768px) {
   .showcasetext h2 {font-weight:600;font-size:40px;color:#111;line-height:1.1;font-weight:400;} 

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  
}


/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

