a,
a:hover
{
    -webkit-transition: color .4s;
            transition: color .4s;
}

body
{
    font-family: 'DIN Next W01',sans-serif;
}

body.modal-open
{
    overflow: hidden;
}

body.modal-open .bgfixed
{
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,.95);
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)
{
    body.modal-open
    {
        overflow: visible;
    }
}

@media screen and (max-width:720px)
{
    body.modal-open
    {
        overflow: visible;
    }
}

.section-title
{
    display: none;
}

.full-height
{
    height: 100%;
}

hr.line
{
    margin: 0 auto;

    border: none;
    border-top: 1px solid #000;
}

.parallax
{
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.container
{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.v-center
{
    position: absolute;
    top: 50%;

    width: 100%;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.layout-table
{
    display: table;

    width: 100%;

    table-layout: fixed;
}

.layout-td
{
    display: table-cell;

    vertical-align: top;
}

.site-container
{
    z-index: 0;

    overflow-x: hidden;

    width: 100%;
    margin: 0;

    -webkit-transition: margin .5s ease-out,-webkit-filter .4s,-webkit-filter .6s .3s,-webkit-transform .4s .5s, margin .5s ease-out,filter .4s,filter .6s .3s,-webkit-transform .4s .5s;
            transition: margin .5s ease-out,filter .4s,filter .6s .3s,transform .4s .5s;
}

.site-container.scaled
{
    overflow: hidden;
}

.site-container.open-right
{
    margin: 0 0 0 -100%;

    -webkit-transition: margin .5s ease-out;
            transition: margin .5s ease-out;
}

.about
{
    position: fixed;
    z-index: 200;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    overflow: scroll;

    width: 100%;
    height: 100%;
    margin: 0 0 0 100%;

    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);

    background: #222;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.about .col
{
    -webkit-transition: all .4s 1s;
            transition: all .4s 1s;
    -webkit-transform: translate3d(0,75px,0);
            transform: translate3d(0,75px,0);

    opacity: 0;
}

.about .container
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.site-container.open-right .about .col
{
    -webkit-transition: all .6s .5s;
            transition: all .6s .5s;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);

    opacity: 1;
}

.site-container.open-right .about .col-2
{
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
}

.about .col-1
{
    width: 55%;

    color: #fff;
}

.about .col-1 h1
{
    font-size: 40px;
    font-weight: 100;
    line-height: 1.3;

    text-transform: uppercase;
}

.about .col-1 .line
{
    width: 45px;
    margin: 35px 0;

    border-color: #fff;
}

.about .col-1 p
{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;

    margin: 0 0 1.4em 0;
}

.about .col-1 p:last-child
{
    margin: 0;
}

.about .col-2
{
    font-size: 14px;
    line-height: 1.6;

    width: 30%;
    margin: 17px 0 0 0;

    color: #fff;
}

.about .col-2 a
{
    display: inline-block;

    margin: 0 0 8px 0;

    text-decoration: none;

    color: #fff;
    border-bottom: 1px solid #fff;
}

.about .social
{
    margin: 15px 0 0 0;
}

.about .social a
{
    margin: 0 10px 0 0;

    color: #827a78;
    border: none;
}

.about .social a:hover
{
    color: #fff;
}

.nav-close
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    width: 40px;
    height: 100%;

    background: #000;
}

.nav-close > a
{
    font-size: 12px;
    font-weight: 500;
    line-height: 1;

    position: absolute;
    top: 80px;
    right: 3px;

    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff;
}

@media screen and (max-width:720px)
{
    .about .col-1 h1
    {
        font-size: 20px;
    }

    .about .col-1 p
    {
        font-size: 12px;
    }

    .about .col-1 p:not(:first-of-type)
    {
        display: none;
    }

    .about .container
    {
                flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
    }

    .about .col
    {
        width: 100%;
    }
}

.main-header
{
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 15px 0;

    text-align: center;

    background: #fff;
}

.main-header .container
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.main-header h1
{
    font-size: 14px;
    font-weight: 600;

    margin: 6px 0 0 0;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-header h1 a
{
    text-decoration: none;

    color: inherit;
}

.main-header .col-1,
.main-header .col-3
{
    visibility: hidden;

    -webkit-transition: all .4s;
            transition: all .4s;

    opacity: 0;
}

.main-header .col-3
{
    text-align: right;
}

.main-header .col-3 a
{
    font-size: 12px;
    font-weight: 500;

    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
}

.main-header .col-3 a:hover
{
    color: #e7e3db;
}

.main-header .nav-toggle
{
    display: block;
    float: left;

    width: 25px;
}

.main-header .nav-toggle .bar
{
    display: block;

    width: 100%;
    height: 3px;
    margin: 3px 0;

    background: #000;
}

.main-header .nav-toggle:hover .bar
{
    background: #e7e3db;
}

.main-header .back-to-top
{
    float: left;

    margin: 2px 0 0 20px;

    text-decoration: none;

    color: #000;
}

.main-header .back-to-top:hover
{
    color: #e7e3db;
}

@media screen and (max-width:999px)
{
    .main-header
    {
        position: fixed;
        top: 0;
        bottom: auto;
    }

    .main-header h1
    {
        font-size: 8px;
    }

    .main-header .col-1,
    .main-header .col-3
    {
        visibility: visible;

        opacity: 1;
    }

    .main-header .col-3
    {
        display: none;
    }
}

.alt-layout .main-header
{
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: auto;

    width: 100%;
}

.alt-layout .main-header .col-1,
.alt-layout .main-header .col-3
{
    visibility: visible;

    -webkit-transition: all .4s;
            transition: all .4s;

    opacity: 1;
}

.intro
{
    position: relative;

    height: 100vh;

    -webkit-transition: opacity .4s;
            transition: opacity .4s;

    opacity: 0;
}

.intro.fade-in
{
    opacity: 1;
}

.intro .navigation
{
    font-size: 12px;
    font-weight: 400;

    position: absolute;
    z-index: 5;

    width: 100%;
    padding: 15px 15px;

    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: #fff;
}

.intro .navigation .col-1
{
    width: 15%;

    text-align: left;
}

.intro .navigation .col-2
{
    width: 78%;
}

@media screen and (max-width: 1279px) {
    .intro .navigation .col-2 {
        width: 100%;
    }
}

.intro .navigation .col-3
{
    width: 15%;
}

@media screen and (max-width: 1194px) {
    .intro .navigation .col-3 {
        width: 0;
    }

    .intro .navigation .col-1 {
        width: 8%;
    }
}

.intro .navigation a
{
    display: inline-block;

    margin: 0 20px;

    text-decoration: none;

    color: #000;
}

.intro .navigation a:hover
{
    color: #e7e3db;
}

.intro .navigation .logo-nest svg
{
    position: relative;
    top: 1px;

    display: inline-block;

    width: 30px;
    height: 10px;

    fill: #000;
}

.intro .navigation .logo-nest:hover svg
{
    fill: #e7e3db;
}

.intro .navigation .harwood-link-wrapper {
    position: relative;
}

.intro .navigation .harwood-link-wrapper a {
    position: absolute;
    top: -15px;
    left: 40px;
    margin: 0;
    background-color: #000;
    width: 30px;
    height: 75px;
    -webkit-transition: background-color .4s;
    transition: background-color .4s;
}

.intro .navigation .harwood-link-wrapper a:hover {
    background-color: #DBB9A1;
}

.intro .navigation .harwood-link-wrapper a svg {
    margin-left: 5.5px;
    margin-top: 44.5px;
    width: 19px;
    height: 18px;
}

.intro .nav-about
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    width: 40px;
    height: 100%;

    background: #000;
}

.intro .nav-about > a
{
    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    position: absolute;
    top: 80px;
    right: 3px;

    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff;
}

.intro .nav-about > a:hover
{
    color: #827a78;
}

.intro .nav-about .social
{
    position: absolute;
    bottom: 80px;
    left: 0;

    width: 100%;
}

.intro .nav-about .social a
{
    font-size: 12px;

    display: block;

    margin: 10px 0 0 0;

    text-align: center;

    color: #fff;
}

.intro .nav-about .social a:hover
{
    color: #827a78;
}

.intro .navigation .nav-close
{
    visibility: hidden;

    opacity: 0;
}

.intro .project-link
{
    position: absolute;
    bottom: 17%;

    width: 100%;

    text-align: center;
}

.intro .project-link .header a
{
    text-decoration: none;

    color: #fff;
}

.intro .project-link .header h1
{
    font-size: 35px;
    font-weight: 200;
    line-height: 1.2;

    margin: 0 0 15px 0;
}

.intro .project-link .header .view
{
    font-size: 9px;
    font-weight: 500;

    display: inline-block;

    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro .project-link .header .view > i
{
    font-size: 20px;

    display: block;

    margin: 0 0 2px 0;
}

@media screen and (max-width:999px) {
    .intro .navigation {
        display: none;
    }
    .intro
    {
        height: 80vh;
    }
    .intro .nav-about .social
    {
        bottom: 25px;
    }
} 

@media screen and (max-width:720px)
{
    .intro
    {
        height: 70vh;
    }

    .intro .nav-about .social
    {
        bottom: 10px;
    }
}

.side-navigation
{
    font-weight: 200;

    position: fixed;
    z-index: 151;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    margin: 0 0 0 -100%;

    -webkit-transition: margin .5s ease-out;
            transition: margin .5s ease-out;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
    text-align: left;
    text-transform: lowercase;

    background: #222;
}

.side-navigation .v-center > a
{
    font-size: 60px;

    display: block;

    margin: 15px 0;

    -webkit-transition: all .4s;
            transition: all .4s;
    -webkit-transform: translate3d(0,75px,0);
            transform: translate3d(0,75px,0);
    text-decoration: none;

    opacity: 0;
    color: #fff;
}

.side-navigation .v-center
{
    position: absolute;
    top: 50%;

    width: 100%;
    padding: 0 5%;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.side-navigation .nav-close
{
    visibility: visible;

    opacity: 1;
}

.side-navigation .nav-close > a
{
    color: #fff;
}

.side-navigation .v-center > a:hover
{
    color: #827a78;
}

.side-navigation .logo-nest svg
{
    display: inline-block;

    width: 135px;
    height: 46px;
    margin: 10px 0 0 0;

    fill: #fff;
}

.site-container.open-left .side-navigation
{
    margin: 0;

    -webkit-transition: margin .5s ease-out;
            transition: margin .5s ease-out;
}

.site-container.open-left .side-navigation .v-center > a
{
    -webkit-transition: -webkit-transform .6s .7s,opacity .6s .7s;
            transition:         transform .6s .7s,opacity .6s .7s;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);

    opacity: 1;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(1)
{
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(2)
{
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(3)
{
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(4)
{
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(5)
{
    -webkit-transition-delay: 1.6s;
            transition-delay: 1.6s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(6)
{
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(7)
{
    -webkit-transition-delay: 2s;
            transition-delay: 2s;
}

.site-container.open-left .side-navigation .v-center > a:nth-child(8)
{
    -webkit-transition-delay: 2.2s;
            transition-delay: 2.2s;
}

@media screen and (max-width:720px)
{
    .side-navigation .v-center > a
    {
        font-size: 40px;
    }
}

.section-text
{
    padding: 150px 0;

    background: #e7e3db;
}

.section-text h2
{
    font-size: 52px;
    font-weight: 200;
    line-height: 1.3;

    max-width: 800px;

    text-transform: uppercase;

    color: #000;
}

.section-text p
{
    font-size: 14px;
    line-height: 1.7;

    max-width: 550px;
    margin: 0 0 1.4em 0;
}

.section-text p:last-child
{
    margin: 0;
}

.section-text hr.line
{
    width: 35px;
    margin: 20px 0;

    border-color: #393c41;
}

.section-text-alt
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.section-text-alt h2
{
    max-width: 53%;
}

.section-text-alt h2 a
{
    text-decoration: none;

    color: #000;
    border-bottom: 2px solid #fff;
}

@media screen and (max-width:999px)
{
    .section-text
    {
        height: auto;
        padding: 50px 0;
    }

    .section-text h2
    {
        font-size: 25px;

        max-width: 100%;
    }

    .section-text p
    {
        font-size: 10px;
    }
}

.section-residential
{
    background: #e7e3db;
}

.section-commercial
{
    background: #000;
}

.portfolio
{
    position: relative;

    overflow: hidden;

    height: 100vh;

    background: #e7e3db;
}

.portfolio .header
{
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;

    width: 90%;
    max-width: 405px;

    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);
}

.portfolio .header a
{
    display: block;

    padding: 25px 25px 25px 25px;

    -webkit-transition: background .4s;
            transition: background .4s;
    /*min-height:270px;*/
    text-decoration: none;

    background: #000;
    background: rgba(255,255,255,.9);
}

.portfolio .header a:hover
{
    -webkit-transition: background .4s;
            transition: background .4s;

    background: rgba(255,255,255,1);
}

.portfolio .header h1
{
    font-size: 45px;
    font-weight: 200;
    line-height: 1;

    margin: 0 0 5px 0;

    text-transform: lowercase;

    color: #000;
}

.portfolio .header .view
{
    font-size: 9px;
    font-weight: 500;

    display: inline-block;

    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
}

.portfolio .header .view > i
{
    font-size: 20px;

    display: block;

    margin: 0 0 2px 0;
}

.portfolio .in-progress
{
    font-size: 10px;

    display: block;

    padding: 10px 25px 8px 25px;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff;
    background: rgba(0,0,0,.85);
}

.portfolio .slides
{
    position: absolute;

    width: 100%;
}

.portfolio .slide
{
    position: relative;

    height: 100vh;

    border-right: 10px solid #fff;
}

@media screen and (max-width:720px)
{
    .portfolio .header h1
    {
        font-size: 30px;
    }

    .portfolio,
    .portfolio .slide
    {
        height: 50vh;
    }
}

.quote
{
    position: relative;

    height: 100vh;
    padding: 15% 0 0 0;

    background: #ccc;
}

.quote .content
{
    max-width: 305px;
    min-height: 300px;
    padding: 35px;

    color: #fff;
    border: 2px solid #fff;
}

.quote .content h1
{
    font-size: 50px;
    font-weight: 200;

    margin: 0 0 15px 0;
}

.quote .content p
{
    font-size: 14px;
    line-height: 1.7;

    max-width: 115px;
}

.quote-balancing
{
    background: url(../images/texture-1.jpg) center center;
    background-size: cover;
}

.quote-support
{
    background: url(../images/texture-3.jpg) center center;
    background-size: cover;
}

.quote-support .content p
{
    max-width: 200px;
}

.services
{
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    height: 100vh;

    background: #222;
    background-size: cover;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.services .container
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.services .col
{
    width: 30%;
}

.services .service
{
    margin: 45px 0;

    color: #fff;
}

.services .service h2
{
    font-size: 14px;

    margin: 0 0 10px 0;

    text-transform: uppercase;

    color: #f18c80;
}

.services .service h2 .fa-angle-right
{
    margin: 0 0 0 10px;

    -webkit-transition: -webkit-transform .4s;
            transition:         transform .4s;
}

.services .service h2:hover .fa-angle-right
{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.services .service p
{
    font-size: 14px;
    line-height: 1.5;
}

.services .service a
{
    text-decoration: none;

    color: inherit;
}

.services .service a:hover
{
    color: #827a78;
}

@media screen and (max-width:720px)
{
    .services
    {
        height: auto;
        padding: 40px 0;
    }

    .services .container
    {
                flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
    }

    .services .col
    {
        width: 100%;
        margin: 0;
    }

    .services .service
    {
        margin: 0 0 30px 0;
    }

    .services .service h2
    {
        font-size: 12px;
    }

    .services .service p
    {
        font-size: 12px;
    }

    .services .col:last-child .service:last-child
    {
        margin: 0;
    }
}

.press .view
{
    font-size: 10px;
    font-weight: 800;

    display: inline-block;

    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
}

.press .view > i
{
    font-size: 20px;

    display: block;

    margin: 0 0 2px 0;
}

.view-single-portfolio
{
    position: fixed;
    z-index: 100;
    top: 0;

    visibility: hidden;
    overflow: scroll;

    width: 100%;
    height: 100%;
    padding: 5%;

    -webkit-transition: all .4s;
            transition: all .4s;

    opacity: 0;
}

.view-single-portfolio .scroll-down
{
    font-size: 10px;
    font-weight: 500;

    float: right;

    margin: 32px 0 0 0;

    letter-spacing: 1px;
    text-transform: uppercase;

    background: none;
}

.view-single-portfolio.open
{
    top: 0;

    visibility: visible;

    -webkit-transition: all .4s .4s;
            transition: all .4s .4s;

    opacity: 1;
}

.view-single-portfolio h1
{
    font-size: 45px;
    font-weight: 200;
    line-height: 1;

    margin: 0 0 35px 0;

    text-transform: lowercase;
}

.view-single-portfolio .nav-close
{
    position: fixed;
    z-index: 200;

    background: transparent;
}

.view-single-portfolio .nav-close > a
{
    color: #000;
}

.view-single-portfolio .nav-close > a:hover
{
    color: #e7e3db;
}

.view-single-portfolio .row
{
    margin: 0 0 85px 0;

    -webkit-transition: opacity 1s 1s;
            transition: opacity 1s 1s;

    opacity: 0;
}

.view-single-portfolio .action-visible .row
{
    -webkit-transition: opacity 1s 1s;
            transition: opacity 1s 1s;

    opacity: 1;
}

.view-single-portfolio .two-up .col
{
    float: left;

    width: 48%;
}

.view-single-portfolio .two-up .col:last-child
{
    float: right;

    margin: 85px 0 0 0;
}

.view-single-portfolio .col img
{
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;
}

/*added width:100%; - bcb*/

.view-single-portfolio .col a
{
    position: relative;

    display: inline-block;

    width: 100%;

    text-transform: uppercase;

    color: #000;
}

/*added width:100%; - bcb*/

.view-single-portfolio .col a:hover img
{
    position: relative;

    -webkit-transition: opacity 1s;
            transition: opacity 1s;

    opacity: .2;
}

.view-single-portfolio .col a:before
{
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;

    content: 'view article';
    -webkit-transition: opacity .5s;
            transition: opacity .5s;
    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);

    opacity: 0;
}

.view-single-portfolio .col a:hover:before
{
    -webkit-transition: opacity .5s;
            transition: opacity .5s;

    opacity: 1;
}

.view-single-portfolio .row.one-up img,
.view-single-portfolio .row.two-up img
{
    max-width: 100%;
}

.view-single-portfolio .row.one-up.alt img
{
    width: auto;
}

.view-single-portfolio .close
{
    text-align: center;
}

.view-single-portfolio .close a
{
    font-size: 11px;
    font-weight: 500;

    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
}

.view-single-portfolio .close a:hover
{
    color: #e7e3db;
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)
{
}

@media screen and (max-width:720px)
{
    .view-single-portfolio h1
    {
        font-size: 30px;

        margin-bottom: 10px;
    }

    .view-single-portfolio .scroll-down
    {
        display: block;
        float: none;

        margin: 5px 0;
    }

    .view-single-portfolio .row
    {
        margin-bottom: 10px;
    }

    .view-single-portfolio .two-up .col:last-child
    {
        margin: 0;
    }
}

.view-single-portfolio img
{
    -webkit-transition: all .5s .25s;
            transition: all .5s .25s;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);

    opacity: 1;
}

.view-single-portfolio .col-2 img
{
    -webkit-transition: all .5s .45s;
            transition: all .5s .45s;
}

.view-single-portfolio img.hidden
{
    -webkit-transform: translate3d(0,150px,0);
            transform: translate3d(0,150px,0);

    opacity: 0;
}

.spinner
{
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: 100%;

    -webkit-transition: all .4s .5s;
            transition: all .4s .5s;

    opacity: 0;
    background: rgba(255,255,255,.8);
}

.action-loading .spinner
{
    visibility: visible;

    -webkit-transition: all .4s;
            transition: all .4s;

    opacity: 1;
}

.main-footer
{
    padding: 75px 0;

    color: #fff;
    background: #222;
}

.main-footer .group:first-child
{
    margin: 0 0 40px 0;
}

.main-footer a
{
    text-decoration: none;

    color: #fff;
}

.main-footer a:hover
{
    color: #827a78;
}

#gform_2  {
display: flex;
flex-direction: column;
outline: none;
}

@media (min-width: 960px){
    #gform_2 {
flex-direction: row;
align-items: flex-end;
    }
}

.gfield_label  {
    font-weight: 200 !important;
}
.gform_wrapper ul.gform_fields li.gfield{
    padding-right: 0 !important;
}

.gfield_required{
    display: none;
}
.gform_wrapper .gform_footer{
    padding: 0 !important;
}


#input_2_1{
  padding: 5px 17px;
   font-size:20px;
   border: solid 2px #000;
   color: black;
   outline: none;
}
#gform_submit_button_2{
    background: black;
    border: solid 1px #000;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    height: 37px;
}
@media (min-width: 960px){
    #gform_submit_button_2 {
margin-top: 0;
width: 100%;
    max-width: 64px;
    }
}
.main-footer .col-1
{
    font-size: 28px;
    font-weight: 200;
    line-height: 1.4;
    float: left;
    width: 55%;
}
@media (min-width: 960px){
    .main-footer .col-1{
        width: 78%;
    }
   
}

.main-footer .col-1 p a
{
    border-bottom: 1px solid #fff;
}

.main-footer .col-2
{
    float: right;

    width: 22%;
    margin: -10px 0 0 0;
    
    
}

@media (min-width: 768px){
    .main-footer .col-2 {
        margin: 155px 0 0 0;
    }
}
.main-footer .col-2 p
{
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-footer .social a
{
    margin: 0 10px 0 0;
}

.main-footer p.cite
{
    font-size: 8px;
}

.main-footer hr.line
{
    margin: 8px 0 15px 0;

    border-color: #fff;
}

.main-footer p.property-rights
{
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5;

    max-width: 310px;
    margin-top: 10px;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #827a78;
}

/*added by bcb*/

.navigation-contact a
{
    font-size: 30px;

    display: inline-block;

    border-bottom: 1px solid transparent;
}

.navigation-contact a:hover
{
    color: #cf7a70;
    border-color: #fff;
}

@media screen and (max-width:720px)
{
    .main-footer .col-1,
    .main-footer .col-2
    {
        float: none;

        width: 100%;
    }

    .main-footer .col-1
    {
        font-size: 24px;

        margin: 0 0 35px 0;
    }
}

.slick-prev,
.slick-next
{
    position: absolute;
    z-index: 5;
    top: 50%;

    width: 70px;
    height: 30px;

    text-indent: -999999px;

    border: none;
}

.slick-prev
{
    left: 0;

    background: #fff url(../images/icon-arrow-left.png) no-repeat center center;
    background-size: 26px 9px;
}

.slick-next
{
    right: 0;

    background: #fff url(../images/icon-arrow-right.png) no-repeat center center;
    background-size: 26px 9px;
}

@media screen and (max-width:720px)
{
}

.section-form
{
    padding: 115px 0 50px 0;
}

.section-form .success
{
    font-size: 30px;
}

.form-contact .text
{
    width: 100%;
    padding: 4px 3px;

    border: 1px solid #000;
    border-radius: 0;

    -webkit-appearance: none;
}

.form-contact .text:focus
{
    outline: none;
}

.form-contact .text.error
{
    border-color: red;
}

.form-contact .boxes
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.form-contact .boxes:not(:last-child)
{
    margin: 0 0 45px 0;
}

.form-contact .boxes .box
{
    width: 48%;
}

.form-contact .subboxes
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.form-contact .subboxes .subbox
{
    margin: 0 25px 0 0;
}

.form-contact .subboxes:not(:last-child)
{
    margin: 0 0 35px 0;
}

.form-contact legend
{
    font-size: 14px;

    margin: 0 0 14px 0;
}

.form-contact legend.titled
{
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-contact label
{
    font-size: 14px;

    margin: 0 0 12px 0;
}

.form-contact .element:not(:last-child)
{
    margin: 0 0 10px 0;
}

.form-contact .element-full
{
    width: 100%;
}

.form-contact .element-full label
{
    display: block;
}

.form-contact .element-inline
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

.form-contact .element-inline label
{
    margin: 0 10px 0 0;
}

.form-contact .element-inline .text
{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.form-contact .form-options
{
    list-style: none;
}

.form-contact .form-options input
{
    position: relative;

    margin: 0 5px 0 0;
}

.form-contact .form-options input:before
{
    position: absolute;
    top: -5%;
    left: -5%;

    width: 105%;
    height: 105%;

    content: ' ';

    border: 1px solid #000;
    background: #fff;
}

.form-contact .form-options input:checked:before
{
    background: #e7e3db;
}

.form-contact .form-options li:not(:last-child)
{
    margin: 0 0 11px 0;
}

.form-contact fieldgroup
{
    width: 100%;
}

.form-contact .spacer:not(:last-child)
{
    margin: 0 0 20px 0;
}

.form-contact .action
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
            justify-content: flex-end;
}

.form-contact .button
{
    font-size: 14px;

    display: inline-block;

    padding: 15px 35px 12px 35px;

    text-transform: uppercase;

    color: #fff;
    border: 2px solid #cebd94;
    background: #000;
}

.form-contact .button:hover
{
    border-color: #000;
    background: #cebd94;
}

@media screen and (max-width:720px)
{
    .form-contact .boxes .box,
    .form-contact .boxes .subbox
    {
        width: 100%;
        margin: 0;
    }

    .form-contact .boxes .box:first-child
    {
        margin: 0 0 25px 0;
    }

    .form-contact .boxes .subbox:first-child
    {
        margin: 0 0 15px 0;
    }
}

/*bcb temporary edit below*/
body .view-single-portfolio img.hidden { opacity: 1 !important; 
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.overlay{
    display: none;
position: fixed;
    top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  width: 100%;
  height: 100%;
}

.overlay--active{
    display: block;
}

.newsletter-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s;
    background: #fff;
    position: fixed;
    inset: 0;
    margin: auto;
    width: 80%;
    height: fit-content;
    z-index: 100;
    font-family: 'DIN Next W01',sans-serif;
}

.newsletter-popup--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 1s;
}
.newsletter-popup--inactive {
    opacity: 0;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 1s;
    z-index: -10;
}

@media (min-width: 960px){
    .newsletter-popup {
        display: flex;
        flex-direction: row-reverse;
        max-height: 87vh;
        max-width: 825px;
    }
   
}
@media (min-width: 768px) and (min-height: 1000px){
    .newsletter-popup {
        height: fit-content;
    }
   
}

.form-popup__content{
    padding: 20px;
    text-align: center;
    line-height: 1.7;
}
@media (min-width: 768px){
    .form-popup__content{
        padding: 40px;
    }
}

@media (min-width: 960px){
    .form-popup__content{
        width: 100%;
       display: flex;
       flex-direction: column;
       justify-content: center;
       padding: 90px 60px 70px;
    }
}

.newsletter-popup .h2{
    font-size: 37px;
    font-weight: 200;
    line-height: 1.3;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}
@media (min-width: 960px){
    .newsletter-popup .h2{
        font-size: 52px;
        margin-bottom: 50px;
    }
    
}

.form-popup__close {
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 20px;
    width: 100%;
    max-width: 20px;
}


@media (min-width: 960px){
.form-popup__description-container {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
}
}

@media (min-width: 768px){
    .form-popup__description {
        padding: 0 75px;
    }
}


@media (min-width: 960px){
    .form-popup__description {
        padding: 0 25px;
    }
}

@media (min-width: 960px){
#gform_wrapper_3 {
    margin-top:50px;
    }
}
#input_3_1{
    padding: 5px 17px; 
   font-size:20px;
   border: solid 2px #000;
   color: #000;
   text-align: center;
   margin-bottom: 25px;
   outline: none;
}

@media (min-width: 960px){
    #input_3_1{
        text-align: left;
        max-width: 325px;
    }
}

@media (min-width: 960px){
    #newsletter-popup .ginput_container{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}


#gform_submit_button_3{
    color: #fff;
    border: solid 2px #000;
    background: #000;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

@media (min-width: 768px){
    
#gform_submit_button_3{
    width: 100%;
    height: 37px;
    
}
}
@media (min-width: 960px){
    #gform_submit_button_3{
        text-align: center;
    max-width: 150px;
    }
}


.form-popup__img{
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}
@media (min-width: 960px){
    .form-popup__img{
        max-height: 100%;
        max-width: 350px;
        max-width: 44%;
        }
}


@media (min-width: 768px){
    #newsletter-popup .gform_footer {
        display: flex;
        justify-content: center;
    }
}
.gform_confirmation_message_3{
    margin-top: 50px;
}