textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
a{
    color: inherit;
    text-decoration: none;
}
header{
    width: 100%;
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}
header.whiteBg{
    background: #fff;
}
header .inner{
    display: block;
    width: 100%;
    max-width: 1200px;
    line-height: 5rem;
    margin: 0 auto;
}
header .logo{
    float: left;
    height: 5rem;
}
header .logo a{
    display: inline-block;
    height: 5rem;
}
header .logo img{
    display: inline-block;
    height: 70%;
    width: auto;
    vertical-align: middle
}
header nav{
    float: right;
    text-align: right;
    line-height: 5rem;
}
header nav ul{
    list-style: none;
}
header nav li{
    height: 3rem;
    vertical-align: middle;
    display: inline-block;
    line-height: 3rem;
}
header nav li a{
    padding: 0 .5rem;
    height: 3rem;
    color: #fff;
    background-color: transparent;
    display: block;
    line-height: 3rem;
}
header.whiteBg nav li a{
    color: #000;
}
header nav li a:hover{
    color: #000;
    background-color: #fff;
}
header.whiteBg nav li a:hover{
    color: #fff;
    background-color: #000;
}
.video-bg{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-bg iframe{
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}
.videoHolder{
    position: relative;
    min-width: 100%;
    min-height: 100vh;
    padding-bottom: 56.25%;
    z-index: 1;
    width: 400%
}
.video-bg .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2;
}
.video-bg .content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
}
.video-bg .content h1{
    text-align: center;
    display: block;
    font-weight: 400;
    margin-bottom: 2rem;
}
.video-bg .content a{
    display: inline-block;
    padding: .5rem 2rem;
    border: .1rem solid #fff;
    background-color: transparent;
    transition: .3s ease all;
}
.video-bg .content a:hover{
    background-color: #fff;
    color: #000;
}
main.navOnTop{
    margin-top: 5rem;
}
.bgdiv{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/img/phw.png);
}
.fullWidthPic{
    width:100%;
    height: 0;
    padding-bottom: calc(100vh - 5rem - 50vh);
}
.half{
    float: left;
    width: 50%;
    height: auto;
    min-height: 50vh;
    position: relative;
}
.half .inner{
    display: block;
    margin: auto;
    padding: 3rem 0;
    width: 70%;
}
.half.whiteBg{
    color: #000;
}
.half.blackBg{
    color: #fff;
    background-color: #000;
}
.half h2{
    margin-bottom: 3rem;
    display: block;
    text-align: center;
}
.half p{
    text-align: justify;
    margin-bottom: 1rem;
}
.thirdsContainer{
    min-height: calc(100vh - 5rem);
    align-items: stretch;
    padding: 10vh 0;
}
.oneThird{
    background-image: url(assets/img/pl.png);
}
.twoThird{
    display: block;
    margin: auto;
    width: 70%;
    max-width: 1200px;
    padding: 0 4rem;
    background: #fff;
}
.twoThird span{
    display: block;
    margin: 1rem 0;
}
.twoThird .inner{
    padding: 3rem 0;
}
.twoThird h1{
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 400;
}
p{
    text-align: justify;
}
.halfContainer{
    display: flex;
}
.formHolder {
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 5rem 3rem;
    background-color: #d1d1d1;
}
.formHolder .instructions{
    font-weight: 600;
    padding-bottom: 2rem;
    font-size: 1.3rem;
    text-align: justify;
}
.formHolder label{
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}
.formHolder input,
.formHolder textarea{
    width: 100%;
    height: 3rem;
    border: none;
    -webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.45);
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.45);
    margin: .5rem 0 1rem;
    padding: 0 2rem;
}
.formHolder textarea{
    min-height: 6rem;
    padding: 2rem;
}
.formHolder input[type="submit"]{
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.radioHolder{
    text-align: center;
    padding: 2rem 0;
}
.radioHolder label{
    display: inline-block;
    width: auto;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.radioHolder label:before{
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-color: #dedede;
    border: 4px solid #dedede;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 .5rem 0 2rem;
    box-sizing: border-box;
}
.radioHolder input[type=radio]:checked + label:before{
    background-color: #000;
}
.radioHolder input{
    display: none;
}
.textareaHolder{
    display: none;
}
.show{
    display: block;
}
.businessCard {
    display: block;
    width: 90%;
    max-width: 500px;
    margin: 10rem auto;
    background: #000;
    color: #fff;
    padding: 2rem;
    font-weight: 300;
}
.businessCard h1{
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-left: 1.5rem;
}
.businessCard span{
    display: block;
    margin: .25rem 1.5rem;
}
.businessCard span b{
    font-weight: 400;
}
.picGrid {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.threePics img{
    width: 22%;
}
.threePics img.mid{
    width: 45%;
}
.instaScreenshots img{
    width: 30%;
}
.fullWidthImage{
    width: 100%;
}
.thirdsContainer h2 {
    font-weight: 300;
    margin-top: 3rem;
    display: block;
    margin-bottom: .5rem;
}
.consultationButton {
    text-align: center;
    padding: 1rem 0;
}
.consultationButton a{
    display: inline-block;
    border: 2px solid #000;
    color: #000;
    background-color: #fff;
    transition: .3s ease all;
    padding: .5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .9rem
}
.consultationButton a:hover{
    background-color: #000;
    color: #fff;
}
@media (max-width: 1199px){
    header{
        background-color: transparent;
        transition: .3s ease background-color;
    }
    header .inner{
        width: 100%;
        padding: 0 3rem;
    }
    header nav{
        position: absolute;
        right: -100%;
        top: 5rem;
        background-color: #fff;
        width: 30%;
        text-align: center;
        z-index: 10;
        transition: .7s ease right;
        height: calc(100vh - 5rem);
        overflow: auto;
    }
    header.in nav{
        right: 0;
    }
    header .overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        background-color: rgba(0,0,0,0.6);
        opacity: 0;
        height: 100vh;
        display: none;
    }
    header.whiteBg .overlay{
        top: 5rem;
        height: calc(100vh - 5rem);
    }
    header.in .overlay{
        opacity: 1;
        display: block;
    }
    header nav li{
        display: block;
        margin: 1rem 0;
        height: auto;
    }
    header .menuToggle{
        position: absolute;
        right: 3rem;
        width: 3rem;
        height: 2rem;
        top: 1.5rem;
        background: url(assets/img/menu_w.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: .5s ease background-image;
    }
    header.whiteBg .menuToggle{
        background-image: url(assets/img/menu.png)
    }
    /*header.whiteBg.in .menuToggle{
        background-image: url(assets/img/close.png);
    }
    header.in .menuToggle{
        background-image: url(assets/img/close_w.png);
    }*/
    header nav li a{
        color: #000;
        line-height: 1.5rem;
        padding: .75rem 0;
    }
    .businessCard{
        padding: 2rem .25rem;
    }
}
@media(max-width: 700px){
    .fullWidthPic{
        padding-bottom: 70%;
    }
    .halfContainer{
        display: block;
    }
    .half{
        width: 100%;
    }
    .oneThird{
        display: none;
    }
    .twoThird{
        width: 80%;
    }
    .twoThird .inner{
        padding: 1rem 0;
    }
    .formHolder {
        padding: 3rem;
    }
    .radioHolder label{
        padding: .5rem 0;
    }
    header nav{
        width: 50%;
    }
    .thirdsContainer h2{
        margin-top: 1rem;
    }
    .videoHolder iframe{
        display: none;
    }
    .videoHolder{
        background-image: url(assets/img/girl.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 500px){
    .formHolder .instructions{
        font-size: 1rem;
    }
    .formHolder label{
        font-size: .8rem;
    }
    header nav{
        width: 100%;
    }
    header .inner{
        padding: 0 .5rem;
    }
    .half .inner{
        width: 90%;
    }
    .formHolder {
        padding: 3rem 1rem;
    }
    .video-bg .content h1{
        font-size: 1.4rem;
    }
    .twoThird{
        padding: 0 1rem;
    }
    .twoThird{
        width: 95%;
    }
    header nav{
        width: 70%;
    }
    header .menuToggle{
        right: .5rem;
        top: 1.85rem;
        height: 1.5rem;
    }
    .businessCard {
        margin: 3rem auto 0;
        padding: 2rem .25rem;
    }
    header .logo img{
        height: 50%;
    }
}
@media(max-width: 350px){
    header nav{
        width: 100%;
    }
    header .inner{
        padding: 0 0;
    }
    header .logo img{
        height: 50%;
    }
}
@media (min-height: 800px){
    .half .inner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}