@charset "utf-8";
/*
navy:          #0b1867;
gray:          #cac9c9;
orange:        #e07700;
search gray:   #e8e8e8;
footer black:  #202020;
facebook blue: #3c5b9b;
twitter blue:  #2daae1;
pinterest red: #cb2027;
*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
.clear {
    clear:both;
}
img {
    max-width: 100%;
    margin-bottom: -4px;
}
/* HEADER */
header {
    padding: 15px;
}
header .wrap {
    width:70%;
    margin: 0 auto;
    display:flex;
}
#logo {
    transition: 0.2s all ease;
}
#logo:hover {
    opacity: 0.7;
}
header .right {
    flex: 1;
    display:flex;
    justify-content: flex-end;
    align-items: center;
}
header .button {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 0 20px;
    letter-spacing: 1px;
    background: #e07700;
}
header .button:hover {
    background: #0b1867;
}
header #phone {
    font-weight:700;
    display:flex;
    color: #0b1867;
}
/*
header #phone:hover {
    opacity: 0.7;
}
header #phone:hover .icon {
    transform: scale(1.1);
}
*/
header #phone .icon {
    width: 21px;
    height:21px;
    background:url("images/icon-phone.svg") center/contain no-repeat;
    margin:0 3px 0 0;
}
/* NAVIGATION */
#hamburger {
    width: 30px;
    height: 30px;
    margin: 0 0 0 15px;
    background: url("images/hamburger.png") center/cover no-repeat;
    cursor: pointer;
    display: none;
    transition: 0.2s all ease;
}
#hamburger:hover {
    opacity: 0.7;
}
#nav-exit {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100000!important;
    color: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    border-radius: 100%;
    cursor: pointer;
    display: none;
}
#nav-exit::before {
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
    top: 1px;
    left: 6px;
    position: absolute;
    font-size: 0.9em;
    font-weight: 700;
}
#nav {
    background:#0b1867;
    position: relative;
}
#nav ul {
    margin: 0 auto;
    width: 79%;
    list-style: none;
    display:flex;
    padding: 0;
}
#nav li {
    flex: 1 1 auto;
    display:flex;
    justify-content: center;
}
#nav a {
    display:inline-block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 0;
    position: relative;
}
#nav a::after {
    content: "";
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    font-weight: 700;
    transition: 0.2s width ease;
}
#nav a:hover::after{
    width: 100%;
}
#nav ul ul {
    display:none!important;
}
/* FEATURED IMAGE/TITLE */
#featimg {
    position:relative;
    height: 250px;
    overflow: hidden;
}
#featimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#featimg h1 {
    position: absolute;
    margin: 0;
    padding: 0 15px;
    width: 100%;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0px 0px 7px #000;
}
#page .wrap {
    width: 70%;
    margin: 0 auto;
    display:flex;
}
#sidebar {
    background: #cac9c9;
    padding: 2%;
    width: 275px;
}
#sidebar h3 {
    color: #0b1867;
    margin: 0 0 25px 0;
}
#content {
    padding: 2% 2% 100px 2%;
    color: #0b1867;
    flex: 1;
    font-size: 1.1em;
}
#content h2 {
    margin: 0 0 25px 0;
    text-transform: uppercase;
}
#content h2 span {
    font-weight: 400;
}
#content p {
    line-height: 25px;
}
/* CALLOUTS */
#callouts {
    position: relative;
    margin: 2% 0 0 0;
}
#callouts::before {
    content: "";
    width: 10px;
    height: 70%;
    background: #0b1867;
    position: absolute;
    top: 10%;
    left: 45px;
}
#callouts .item {
    display:flex;
    padding: 2% 0;
}
#callouts .icon {
    width: 100px;
    height: 100px;
    position: relative;
}
#callouts .resale .icon {
    background: #0b1867 url("images/icon-resale.png") center/70% no-repeat;
}
#callouts .maint .icon {
    background: #0b1867 url("images/icon-maintenance.png") center/70% no-repeat;
}
#callouts .energy .icon {
    background: #0b1867 url("images/icon-energy.png") center/70% no-repeat;
}
#callouts .text {
    padding: 0 0 0 2%;
    flex: 1;
}
#callouts h4 {
    margin: 0 0 15px 0;
    text-transform: uppercase;
}
#callouts p {
    margin: 0;
}
/* TYPES OF SIDING */
#types {
    position: relative;
}
#types h2 {
    text-align: center;
    position: absolute;
    width: 100%;
    text-transform: uppercase;
    color: #0b1867;
    margin: 0;
    top: -40px;
}
#types .wrap {
    display:flex;
}
#types .image {
    width: 50%;
}
#types .image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
#types .info {
    background: #d7d7d7;
    padding: 5% 16% 5% 5%;
    width: 50%;
    color: #0b1867;
}
#types h3 {
    text-transform: uppercase;
    margin: 0;
    font-size: 1.5em;
}
#types p {
    margin: 5px 0;
    font-size: 1.1em;
    line-height: 25px;
}
#types a {
    color: #e07700;
}
#types a:hover {
    opacity: 0.7;
}
#types a.button {
    margin: 20px 0;
    display: inline-block;
    padding: 15px 25px;
    background: #0b1867;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
#types a.button:hover {
    background: #e07700;
}
/* FOOTER */
footer {
    background: #202020;
    color: #fff;
    padding: 2% 2% 15px 2%;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #e07700;
}
footer p {
    line-height: 23px;
}
footer .wrap {
    width: 70%;
    margin: 0 auto 5% auto;
    display: flex;
}
footer .third {
    flex: 1;
}
#lower-foot {
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
    text-align: center;
}
footer .right {
    display:flex;
    justify-content: flex-end;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ul li a {
    padding: 3px 0;
    display:block;
}
#social {
    display:flex;
}
#social a {
    margin: 0 10px 0 0;
}
#social .icon {
    width: 30px;
    height: 30px;
    transition: 0.1s all ease;
}
#social .fb {
    background: #3c5b9b url("images/icon-facebook.svg") center/auto 75% no-repeat;
}
#social .fb:hover {
    background: #3c5b9b url("images/icon-facebook.svg") center/auto 80% no-repeat;
    opacity: 0.8;
}
#social .twt {
    background: #2daae1 url("images/icon-twitter.svg") center/auto 65% no-repeat;
}
#social .twt:hover {
    background: #2daae1 url("images/icon-twitter.svg") center/auto 70% no-repeat;
    opacity: 0.8;
}
#social .pin {
    background: #cb2027 url("images/icon-pinterest.svg") center/auto 75% no-repeat;
}
#social .pin:hover {
    background: #cb2027 url("images/icon-pinterest.svg") center/auto 80% no-repeat;
    opacity: 0.8;
}
/* FORM STYLES */
#marketsharpmFormDiv {
/*    width: 525px;*/
}
#marketsharpmFieldSetDiv {
/*    margin: 10px;*/
}
#marketsharpmFieldSet {
    border: none;
    margin: 0;
    padding: 0;
}
#marketsharpmFieldSet p {
    margin: 0 0 5px 0;
}
#marketsharpmFieldSet p.left {
    width: 50%;
    float: left;
}
#marketsharpmFieldSet p.right {
    width: 48%;
    float: left;
    margin-left: 2%;
}
#marketsharpmFormDiv label {
/*    width: 9em;*/
/*    float: left;*/
/*    width: 100%;*/
    font-weight: 700;
    text-align: left;
    margin: 8px 0.5em 4px 0;
    display: block;
    text-transform: uppercase;
    color: #0b1867;
    font-size: 0.8em;
}
#marketsharpmFormDiv input, #marketsharpmFormDiv textarea {
    border-spacing: 0px;
    margin: 0px;
    padding: 8px;
    space: 0px;
    width: 100%;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #0b1867;
}
#marketsharpmFormDiv input[type="submit"] {
    text-align: center;
    margin: 20px 0 0 0em;
    display:block;
    width: 100%;
    border: none;
    background: #e07700;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.2s all ease;
}
#marketsharpmFormDiv input[type="submit"]:hover {
    background: #0b1867;
}
#marketsharpmFormDiv label.error {
    color: red;
    float: none;
    display: inline;
    margin-left: 0.5em;
}
#marketsharpmFormDiv p input.error {
    background-color: #FFFFD5;
    border-bottom-color: red;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-left-color-ltr-source: physical;
    border-left-color-rtl-source: physical;
    border-left-color-value: red;
    border-left-style-ltr-source: physical;
    border-left-style-rtl-source: physical;
    border-left-style-value: solid;
    border-left-width-ltr-source: physical;
    border-left-width-rtl-source: physical;
    border-left-width-value: 2px;
    border-right-color-ltr-source: physical;
    border-right-color-rtl-source: physical;
    border-right-color-value: red;
    border-right-style-ltr-source: physical;
    border-right-style-rtl-source: physical;
    border-right-style-value: solid;
    border-right-width-ltr-source: physical;
    border-right-width-rtl-source: physical;
    border-right-width-value: 2px;
    border-top-color: red;
    border-top-style: solid;
    border-top-width: 2px;
                border-right-color: red;
    border-right-style: solid;
    border-right-width: 2px;
                border-left-color: red;
    border-left-style: solid;
    border-left-width: 2px;
    color: red;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}
#marketsharpmFormDiv div.error {
    text-align: center;
    color: red;
}
#marketsharpmFormDiv .hidden {
    display: none;
}
/* MEDIA QUERIES */
@media screen and (max-width:1200px){
    header .wrap {
        width: 100%;
    }
    #nav-exit, #hamburger {
        display: block;
    }
    #nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100000!important;
        width: 100%;
        box-shadow: 0px 8px 10px rgb(0,0,0,0.5);
    }
    #nav ul {
        flex-direction: column;
        margin: 0;
        width: 100%;
        background: #fff;
    }
    #nav li {
        display:block;
        flex:none;
        width: 100%;
    }
    #nav a {
        display:block;
        background: #0b1867;
        border-bottom: 2px solid rgba(255,255,255,0.2);
    }
    #nav a::after {
        display:none!important;
    }
    #nav a:hover {
        opacity: 0.8;
    }
    #page .wrap {
        width: 100%;
    }
    footer .wrap {
        width: 100%;
    }
    #types .info {
        padding: 5%;
    }
}
@media screen and (max-width:800px){
    header {
        padding: 5px;
    }
    #phone .num {
        display:none;
    }
    #phone .icon {
        width: 30px!important;
        height: 30px!important;
    }
    #logo {
        width: 150px;
    }
    header a.button {
        font-size: 0.8em;
        margin: 0 10px 0 0;
    }
    #hamburger {
        margin: 0 0 0 10px;
    }
    #page .wrap {
        flex-direction: column;
    }
    #content {
        order: -1;
        padding: 3%;
    }
    #callouts {
        margin: 3% 0;
    }
    #sidebar {
        order: 1;
        width: 100%;
        margin: 0 0 70px 0;
        padding: 5% 3%;
    }
    #sidebar h3 {
        text-align: center;
    }
    #types .wrap{
        flex-direction: column;
    }
    #types .image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 200px;
    }
    #types .info {
        width: 100%;
        padding: 3% 40px;
    }
    footer .wrap {
        flex-direction: column;
    }
    footer .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .middle, footer .right {
        display:none;
    }
    #lower-foot {
        font-size: 0.8em;
    }
}
@media screen and (max-width:400px){
    #logo {
        width: 125px;
    }
    header a.button {
        font-size: 0.6em;
        margin: 0 5px 0 0;
        padding: 8px;
    }
    header #phone .icon {
        width: 25px!important;
        height: 25px!important;
    }
    #hamburger {
        width: 25px;
        height: 25px;
        margin: 0 0 0 5px;
    }
    #callouts .icon {
        width: 75px;
        height: 75px;
    }
    #callouts::before {
        left: 35px;
        height: 65%;
        top: 5%;
    }    
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
    img {
    	border: none!important;
    	height: auto!important;
    	object-fit: none!important;
    	width: 100%!important;
    }
}