* {
    box-sizing: border-box;
}

*[id]:before { 
  content: "";
  display: block;
  height: 95px; /* Set the Appropriate Height */
  margin-top: -95px; /* Set the Appropriate Height */
  visibility: hidden;
}

img {
    max-width:100%;
}

body {
    margin: 0;
    background: #fff;

    font-family: "adelle-sans",sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: #141313;
}

p {
    margin: 5px 0 5px 0 !important;
}

a,
a:visited,
a:focus,
a:hover,
a:active {
    color: #141313;
    background: inherit;
    background-color: inherit;
    text-decoration: none;
}

/* How to Stop Apple iOS Devices From Styling Phone Numbers */
/* http://geoffmuskett.com/css-styling-for-phone-numbers-on-iphone-and-ipad/ */
/* <a class="tel" tabIndex="-1" href="tel:0266816877" rel="nofollow">02 6681 6877</a> */
a[href^=tel],
.tel,
.tel:visited,
.tel:focus,
.tel:hover,
.tel:active {
    color: inherit!important;
    background: inherit!important;
    cursor: default!important;
    text-decoration: none!important;
}


/* header */
/* source: https://codepen.io/mutedblues/pen/MmPNPG */

.header {
    /*                box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);*/
    position: fixed;
    width: 100%;
    z-index: 3;

    width: 100%;
    background: #fff;
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: transparent;
}
.header li {
    background-color: #fff;
    height: 42px;
}

.header li.header-contact {
    height: auto;
}

.header li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;

    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: #c0af97;

    text-transform: uppercase;
    letter-spacing: 1px;
}
.header li.header-contact {
    padding-top: 20px;
}
.header li.header-contact a {
    font-weight: 300;
    font-style: normal;
    color: #fff !important;
    background-color: #003152 !important;

    text-transform: none;
    letter-spacing: normal;
}
.header li.header-contact a.contact-tel {
    padding: 10px 0 0 0;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 2px;
    padding-top: 0px;
    padding-bottom: 10px;
}

.header li.header-contact a.contact-email {
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    padding-top: 18px;
}

.header li a:hover,
.header .menu-btn:hover {
    color: #003152;
}

.header .logo {
    display: block;
    float: left;
    padding: 20px 20px 10px 20px;
    text-decoration: none;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    margin-top: 10px;
}

.header .menu-icon .navicon {
    background: #c0af97;
    display: block;
    height: 5px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #c0af97;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: #003152;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before,
.header .menu-btn:checked ~ .menu-icon .navicon:after {
    background: #003152;
}

.header .menu-icon .navicon:before {
    top: 10px;
}

.header .menu-icon .navicon:after {
    top: -10px;
}

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 500px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.display-mobile-menu-only { display: inline-block; } /* default display mobile menu only elements */

@media (min-width: 1023px) {
    
    .display-mobile-menu-only { display: none; } /* hide mobile menu only elements */

    .header {
        background: linear-gradient(to right, #fff 0%, #fff 50%, #003152 50%, #003152 100% );
    }
    .header li {
        float: left;
        height: 85px;
    }
    .header li a {
        padding: 0px 15px 0px 15px;
        line-height: 85px;
    }
    .header li.header-contact {
        padding-top: 0px;
    }
    .header li.header-contact a {
        padding: 0 30px;
        height: 36px;
    }
    .header li.header-contact a.contact-tel {
        line-height: 30px;
        padding: 0;
        padding-top: 6px;
    }
    .header li.header-contact a.contact-email {
        padding-top: 21px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }
}

@media (min-width: 1180px) {
    .header li a {
        padding: 0px 30px 0px 30px;
    }
}

/*  END MENU  */            

.main-content-container {
    padding-top: 70px;
}

.gallery-container {
    margin: auto;
    padding: 40px;
    width: auto;
    max-width: 580px;
}
.gallery-container h3 {
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #3498db;
    font-size: 36px;
    line-height: 60px;
    margin: 5px;
    padding: 1%;
    position: relative;
    text-align: center;
}
.gallery-container .slider-for h3 {
    line-height: 300px;
}

.slick-current img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-nav .slick-slide {
    margin: 0 1px;
}

.slider-nav .slick-slide img {
    width: 55px;
    height: 55px;
}

.slider-nav {
    width: 100%;
}

.slick-slider.slider-nav .slick-track {
    display: table;
    margin: 0 auto;
}

.slick-slider.slider-nav .slick-slide:focus {
    outline: none;
}

.slick-prev:before, 
.slick-next:before {
    color: #003152 !important;
}

/* TIMBER SHUTTERS */
.gallery-container .timber h3.first {
    background-image: url('../images/01-timber-shutters-alstonville-01-basswood-Alltone-Shutters.png');
}
.gallery-container .timber h3.second {
    background-image: url('../images/01-timber-shutters-alstonville-02-basswood-Alltone-Shutters.jpg');
}
.gallery-container .timber h3.third {
    background-image: url('../images/01-timber-shutters-alstonville-03-basswood-Alltone-Shutters.jpg');
}
.gallery-container .timber h3.fourth {
    background-image: url('../images/01-timber-shutters-alstonville-04-Alltone-Shutters.jpg');
}
.gallery-container .timber h3.fifth {
    background-image: url('../images/01-timber-shutters-alstonville-05-Alltone-Shutters.jpg');
}

/* CEDAR SHUTTERS */
.gallery-container .cedar h3.first {
    background-image: url('../images/02-cedar-shutters-alstonville-01-Alltone-Shutters.jpg');
}
.gallery-container .cedar h3.second {
    background-image: url('../images/02-cedar-shutters-alstonville-02-Alltone-Shutters.jpg');
}
.gallery-container .cedar h3.third {
    background-image: url('../images/02-cedar-shutters-alstonville-03-Alltone-Shutters.jpg');
}
.gallery-container .cedar h3.fourth {
    background-image: url('../images/02-cedar-shutters-alstonville-04-Alltone-Shutters.jpg');
}
.gallery-container .cedar h3.fifth {
    background-image: url('../images/02-cedar-shutters-alstonville-05-Alltone-Shutters.jpg');
}

/* PVC SHUTTERS */
.gallery-container .pvc h3.first {
    background-image: url('../images/03-pvc-shutters-alstonville-01-coolum-pvc-Alltone-Shutters.jpg');
}
.gallery-container .pvc h3.second {
    background-image: url('../images/03-pvc-shutters-alstonville-02-premium-pvc-Alltone-Shutters.jpg');
}
.gallery-container .pvc h3.third {
    background-image: url('../images/03-pvc-shutters-alstonville-03-prime-pvc-Alltone-Shutters.jpg');
}
.gallery-container .pvc h3.fourth {
    background-image: url('../images/03-pvc-shutters-alstonville-04-prime-pvc-Alltone-Shutters.jpg');
}
.gallery-container .pvc h3.fifth {
    background-image: url('../images/03-pvc-shutters-alstonville-05-project-pvc-Alltone-Shutters.jpg');
}

/* VERI SHADES */
.gallery-container .veri-shades h3.first {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-01-bedroom-veri-shades.jpg');
}
.gallery-container .veri-shades h3.second {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-02-dark-bedroom-veri-shades.jpg');
}
.gallery-container .veri-shades h3.third {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-03-dark-dining-veri-shades.jpg');
}
.gallery-container .veri-shades h3.fourth {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-04-dining-veri-shades.jpg');
}
.gallery-container .veri-shades h3.fifth {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-05-living-veri-shades.jpg');
}
.gallery-container .veri-shades h3.sixth {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-06-timber-window-veri-shades.jpg');
}
.gallery-container .veri-shades h3.seventh {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-07-walk-through-veri-shades.jpg');
}

.shutter-types-container {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

div.dropdown {
    display: none;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 0 20px;
}

div.dropdown-header {
    width: 100%;
    overflow: hidden;
    margin: 0 0 13px 0;
}

div.dropdown-header h2 {
    width: 100%;
    height: 89px;
    line-height: 89px;
    -epub-hyphens: none;

    font-family: "mislab-std",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    line-height: 89px;
    color: #fff;

    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    orphans: 1;
    page-break-after: auto;
    page-break-before: auto;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    text-shadow: 2px 2px 3px rgba(010, 010, 010, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    widows: 1;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

div.dropdown-header.timber h2 {
    background-image: url('../images/01-timber-shutters-alstonville-section-header-bg-03-mobile-375x89.jpg');
}
div.dropdown-header.timber:hover h2 {
    cursor: pointer;
}

div.dropdown-header.cedar h2 {
    background-image: url('../images/02-cedar-shutters-alstonville-section-header-bg-03-mobile-375x89.jpg');
}
div.dropdown-header.cedar:hover h2 {
    cursor: pointer;
}

div.dropdown-header.pvc h2 {
    background-image: url('../images/03-pvc-shutters-alstonville-section-header-bg-03-mobile-375x89.jpg');
}
div.dropdown-header.pvc:hover h2 {
    cursor: pointer;
}

div.dropdown-header.veri-shades h2 {
    background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-section-header-bg-03-mobile-375x89.jpg');
}
div.dropdown-header.veri-shades:hover h2 {
    cursor: pointer;
}

h1.match-p {
    margin: 0;
    background: #fff;
    font-family: "adelle-sans",sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: #141313;
    float: left;
    max-width: 430px;
}

h3 {
    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    line-height: 34px;
    color: #003152;
    margin-bottom: 5px !important;
}

.shutter-type-container h3 {
    margin-bottom: 10px !important;
}

.faqs-alstonville-shutters-container h3 {
    margin-bottom: 0 !important;
}
.contact-alstonville-shutters-container h3 {
    margin-bottom: 15px !important;
}

h4 {
    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    color: #c0af97;

    margin-top: 15px;
    margin-bottom: 0px !important;
}

ul.features {
    font-family: "adelle-sans",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: #c0af97;

    padding-left: 20px;
    margin-top: 0px;
}

@media (min-width: 900px) {

    div.shutter-type-text {
        float: left;
        width: 50%;
    }
    div.shutter-type-gallery {
        float:right;
        width:50%;
    } 
}

.about-alstonville-shutters-container,
.faqs-alstonville-shutters-container,
.contact-alstonville-shutters-container {
    display: block;
    clear: both;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: auto;
}

.about-alstonville-shutters-container .container-inner {
    overflow: auto;
}

.about-alstonville-shutters-container h3 {
    max-width: 430px;
}

.about-alstonville-shutters-container .container-inner .column.about-left {
    float: left;
    max-width: 430px;
}
.about-alstonville-shutters-container .container-inner .column.about-right {
    float: right;
    text-align: center;
}

.about-alstonville-shutters-container .container-inner p {
    float: left;
    max-width: 430px;
}

a.button-link {
    display: inline-block;
    float: right;
    border: 2px solid #003152;
    padding: 6px 0!important;
    width: 220px;
    margin: 0 auto;
    text-align: center;
    border-radius: 25px;
    cursor: pointer;

    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px!important;
    line-height: 24px!important;
    color: #c0af97;
    background: #fff;
    margin-top: 7px;
    margin-bottom: 30px;
    margin-right: 30px;
}

a.button-link:hover {
    background: #c0af97;
    color: #fff;
}

a.button-link.reversed {
    float: none;
    width: 240px;
    color: #fff;
    background: #003152;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0px;
}
a.button-link.reversed:hover {
    background: #fff;
    color: #003152;
}
.quality-shutters-alstonville-container {
    display: block;
    clear: both;
    width: 100%;
    margin: 40px auto;
    padding: 10px 15px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url('../images/04-quality-sutters-alstonville-bg-01-desktop-1920x200.png');
}

/* responsive layout - when the screen is less than 1200px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1200px) {
    .quality-shutters-alstonville-container {
        background-image: url('../images/04-quality-sutters-alstonville-bg-02-tablet-1200x200.png');
    }
}

.quality-shutters-alstonville-container-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.quality-shutters-alstonville-container-inner h3 {
    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 28px;
    line-height: 30px;
    color: #003152;

    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
}

.quality-shutters-alstonville-container-inner span.qaulity-point {
    font-family: "adelle-sans",sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: #003152;
}

.quality-shutters-alstonville-container-inner span.qaulity-point-separator {
    display: inline-block;
    font-family: "adelle-sans",sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #003152;
    padding-top: 5px;
}

.faqs-alstonville-shutters-container h4 {
    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    color: #c0af97;

    margin-bottom: 10px;
}

.faqs-alstonville-shutters-container .container-inner .column.faqs-left {
    float: left;
    max-width: 430px;
}
.faqs-alstonville-shutters-container .container-inner .column.facebook-right {
    float: right;
    text-align: center;
}

.faqs-alstonville-shutters-container .faqs {
    float: left;
    max-width: 430px;
}

.faqs-alstonville-shutters-container .facebook-feed {
    float: right;
    min-width: 240px;
    text-align: center;

    margin: 30px auto;
/*    padding-right: 33%;*/
}

.basic-graphics-frame {
    /*    max-height: 260px;*/
    overflow: hidden;
    border: 1px solid #000000;
    margin: 0 !important;
    padding: 0 !important;
}

/* Facebook Feed override */
html#facebook body div.clearfix.a_urnp3aht2._4d-l{
    display: none !important;
}

.contact-alstonville-shutters-container {
    text-align: center;
    margin: 50px auto 70px auto;
}

/*
.contact-alstonville-shutters-container a.tel.contact-tel {
    font-family: "adelle-sans-condensed",sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 2px;
    color: #003152 !important;
}
*/

.contact-alstonville-shutters-container, 
.contact-alstonville-shutters-container a, 
.contact-alstonville-shutters-container a.contact-email,
.contact-alstonville-shutters-container a.tel.contact-tel {
    display: block;
    font-family: "adelle-sans",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: #003152;
}

.footer-container {
    display: block;
    clear: both;
    width: 100%;
    margin: 40px auto 0px auto;
    padding: 10px 15px;

    background-color: #003152;
    color: #fff;
}

.footer-container-inner {
    max-width: 760px;
    margin: 30px auto;
}

.footer-container-inner a {
    background-color: #003152 !important;
    color: #fff !important;
}

/* create 3 columns */
.footer-container-inner .column {
    float: left;
    width: 33.33%;
}

.footer-container-inner .column.social,
.footer-container-inner .column.nav-links,
.footer-container-inner .column.contact {

    font-family: "adelle-sans",sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px!important;
    line-height: 22px!important;
    color: #fff !important;
}

.footer-container-inner .column.social {
    text-align: center;
    width: 30.33%;
}
.footer-container-inner .column.nav-links {
    width: 33.33%;
}
.footer-container-inner .column.contact {
    width: 36.33%;
}

ul.footer-nav-links {
    list-style-type: none;
    padding-left: 0px;
    margin-top: 5px;
    margin-bottom: 0px;
}

.footer-container-inner .column.nav-links a {
    display: block;
    color: #c0af97 !important;
    margin: 0 !important;
    padding: 3px !important;
}

.footer-container-inner .column.contact a.gds {
    font-size: 12px!important;
}

/* clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.display-mobile-only { display: inline-block; } /* default mobile first display */
.display-tablet-only { display: none; } /* hide tablet only elements */
.display-desktop-only { display: none; } /* hide desktop only elements */
.display-desktop-tablet { display: none; } /* hide deskop+tablet elements */

/* responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 755px) {

    .about-alstonville-shutters-container {
        max-width: 100%;
        margin: 0 auto;
    }
    .about-alstonville-shutters-container .container-inner .column.about-left {
        float: none;
        width: 100%;
        max-width: 100%;
    }
    .about-alstonville-shutters-container .container-inner .column.about-right {
        float: none;
        width: 100%;
        text-align: center;
    }
    .about-alstonville-shutters-container .container-inner p {
        float: left;
        max-width: 100%;
    }
    .about-alstonville-shutters-container .container-inner .column.about-right a.button-link {
        float: none;
        margin-top: 27px;
        margin-bottom: 0px;
        margin-right: 0px;
    }

    .faqs-alstonville-shutters-container {
        max-width: 100%;
        margin: 0 auto;
    }
    .faqs-alstonville-shutters-container .container-inner .column.faqs-left {
        float: none;
        width: 100%;
        max-width: 100%;
    }
    .faqs-alstonville-shutters-container .container-inner .column.facebook-right {
        float: none;
        width: 100%;
        text-align: center;
    }
    .faqs-alstonville-shutters-container .container-inner p {
        float: none;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-alstonville-shutters-container {
        
    }
    
    .footer-container-inner .column.social,
    .footer-container-inner .column.nav-links,
    .footer-container-inner .column.contact {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 600px) {

    .display-mobile-only { display: none; } /* hide mobile only elements */
    .display-tablet-only { display: inline-block; } /* display tablet elements */
    .display-desktop-tablet { display: inline-block; } /* show deskop+tablet elements */
    .display-desktop-only { display: none; } /* hide desktop only elements */
}

@media (min-width: 1020px) {

    div.dropdown-header h2 {
        height: 171px;
        line-height: 171px;
    }

    div.dropdown-header.timber h2 {
        background-image: url('../images/01-timber-shutters-alstonville-section-header-bg-01-desktop-1200x171.jpg');
    }

    div.dropdown-header.cedar h2 {
        background-image: url('../images/02-cedar-shutters-alstonville-section-header-bg-01-desktop-1200x171.jpg');
    }

    div.dropdown-header.pvc h2 {
        background-image: url('../images/03-pvc-shutters-alstonville-section-header-bg-01-desktop-1200x171.jpg');
    }

    div.dropdown-header.veri-shades h2 {
        background-image: url('../images/04-veri-shades-northern-rivers-nsw-alstonville-shutters-section-header-bg-01-desktop-1200x171.jpg');
    }

    .faqs-alstonville-shutters-container .facebook-feed {
        margin:0 auto;
        padding: 1%;
        border: 1px solid #000;
    }
}

@media (min-width: 1023px) {

    .display-mobile-only { display: none; } /* hide mobile only elements */
    .display-tablet-only { display: none; } /* hide tablet only elements */
    .display-desktop-only { display: inline-block; } /* show desktop elements */
    .display-desktop-tablet { display: inline-block; } /* show deskop+tablet elements */
}

img#alstonville-shutters-logo {
  width: 205px;
}

img#phone-icon-white,
img#phone-icon-blue {
  width: 24px;
}

img.social-icon {
  width: 26px;
}

/* TO TOP */
#toTop { display:none; text-decoration:none; position:fixed; bottom:10px; right:10px; overflow:hidden; width:46px; height:46px; border:none; text-indent:100%; background:url('ui.totop.png') no-repeat left top; }
#toTopHover { background:url('ui.totop.png') no-repeat left -46px; width:46px; height:46px; display:block; overflow:hidden; float:left; opacity: 0; -moz-opacity: 0; filter:alpha(opacity=0); }
#toTop:active, #toTop:focus { outline: none; }