body {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	color: #4F4F4F;
	background-color: #EAE7E7;
    /*background-color: #e8e8e8; - changed to #EAE7E7*/
	/*background changed to white from #e4e4e4*/
    /*background: linear-gradient(to bottom, #f0f0f0 0%, #dbdbdb 100%);*/
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
	color: #4F4F4F; /*per branding pdf*/
}

h1 {
    font-size: 50px;
}
a, a:hover {
    color: #4f4f4f;
}

img {
	max-width: 100%;
	height: auto;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #e8e8e8;
}
.header__logo {
    display: inline-block;
    position: relative;
    top: 18px;
}
.header__logo img {
    max-width: 300px;
}
.header {
    width: 100%;
    z-index: 100;
    text-align: center;
    padding-top: 25px;
}

#home .header {
    position: absolute;
    top: 0;
    left: 0;
}
.header__container {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 48px;
    left: 56px;
    -webkit-transition: width 0.5s ease 2s, opacity 0.5s ease 2s, border-color .3s ease 0s;
    transition: width 0.5s ease 2s, opacity 0.5s ease 2s, border-color .3s ease 0s;
    z-index: 100;
    overflow: hidden;
}
.header__menu {
    /*border: 1px solid #979797;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    width: 40px;
    height: 40px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    font-size: 25px;
    color: #fff;
    background-color: #4f4f4f;
    border-radius: 100%;
}
/* Login buttons header*/
.login-buttons{
	display: flex;
    justify-content: flex-end;
    margin-top: -35px;
	}
.client-login{
    color: #fff !important;
    background-color: #4f4f4f;
	margin-right:10px;
	padding: 9px 15px;
    border-radius: 5px;
    font-size: 15px;
	}
	.advisor-login{
    color: #fff !important;
    background-color: #4f4f4f;
	padding: 9px 15px;
    border-radius: 5px;
    font-size: 15px;
    margin-right: 10px;
	}
	.advisor-login:hover{
	 color:#fff !important;
	 }
	 .client-login:hover{
	 color:#fff !important;
	  }
	  @media (min-width: 767px) and (max-width: 900px){
		  .login-buttons{
    justify-content: center;
    margin-top: 25px;
	}
		  }
	@media (max-width:766px) {
		.login-buttons{
    justify-content: center;
    margin-top: 10px;
	}
		}
.panel-menu:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.panel-menu {
    width: calc(100vw - 64px);
    height: calc(100vh - 48px);
    position: fixed;
    top: 24px;
    left: 32px;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: opacity .4s ease-out 0s, -webkit-transform 0s linear .4s;
    transition: opacity .4s ease-out 0s, -webkit-transform 0s linear .4s;
    transition: opacity .4s ease-out 0s, transform 0s linear .4s;
    transition: opacity .4s ease-out 0s, transform 0s linear .4s, -webkit-transform 0s linear .4s;
    z-index: 101;
    font-size: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), color-stop(88%, #e5e5e5), to(#d5d5d5));
    background: linear-gradient(to bottom, #f1f1f1 0%, #e5e5e5 88%, #d5d5d5 100%);
    background-size: auto;
    background-position: center, center;
    background-repeat: no-repeat;
}
.panel-menu:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.panel-menu_active {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .4s ease-out 0s, -webkit-transform 0s linear 0s;
    transition: opacity .4s ease-out 0s, -webkit-transform 0s linear 0s;
    transition: opacity .4s ease-out 0s, transform 0s linear 0s;
    transition: opacity .4s ease-out 0s, transform 0s linear 0s, -webkit-transform 0s linear 0s;
}
.panel-menu__content {
    font-size: 0;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}
.panel-menu__part {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
}
.panel-menu__close {
    position: absolute;
    top: 24px;
    left: 24px;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    background: none;
    outline: none;
    border: 1px solid #EAE7E7;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.panel-menu__close:before, .panel-menu__close:after {
    content: "";
    width: 20px;
    height: 1px;
    background: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-backface-visibility: hidden;
    top: 19px;
}
.panel-menu__close:before {
    -webkit-transform: rotate(-45deg) translate3d(-50%, -50%, 1px);
    transform: rotate(-45deg) translate3d(-50%, -50%, 1px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.panel-menu__close:after {
    -webkit-transform: rotate(45deg) translate3d(-50%, -50%, 1px);
    transform: rotate(45deg) translate3d(-50%, -50%, 1px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.nav {
    margin-left: 246px;
}
.ccm-ui .nav {
    margin-left: initial !important;
}
.nav__item {
    font: bold 65px/1.61 "Cera PRO", Arial, Helvetica, sans-serif;
    color: #4F4F4F;
    display: block;
    text-decoration: none;
    position: relative;
}
.nav__item:before {
    content: "";
    display: block;
    width: 67px;
    height: 1px;
    background: #EAE7E7;
    position: absolute;
    top: 48px;
    left: -90px;
    opacity: 1;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.nav__item:hover {
	color: inherit;
	text-decoration: none;
}
.nav__item_active:before,
.nav__item:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.btn-slider  {
    margin-top: 30px;
    padding: 15px 80px;
    font-size: 12px;
    color: #4f4f4f;
    border-radius: 0;
    border: 1px solid #4f4f4f;
}
.hero {
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
#video_background {
    overflow: hidden;
    opacity: 1;
    z-index: 0;
    background-color: #fff;
    width: 100%;
}
.hero .text-overlay {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    text-align: left;
    color
}
.hero .text-overlay h1 {
    line-height: 1.15;
    font-size: 70px;
    font-weight: 900;
    color: #4f4f4f;
}
.hero .text-overlay p {
    width: 75%;
}
.hero .btn-slider  {
    margin-top: 30px;
    padding: 15px 80px;
    font-size: 12px;
    color: #4f4f4f;
    border-radius: 0;
    border: 1px solid #4f4f4f;
}
.hero .btn-slider:hover {
    color: #fff;
    background-color: #4f4f4f;
}
.typed-cursor {
    font-weight: 300;
    position: relative;
    top: 0px;0
}   
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
.hero .text-overlay span.yellow-copy {
    background-color: #ffff00;
    padding: 0 7px;
    margin-right: 2px;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@-moz-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
#page-content .container .container,
.container .container {
	width: 100%;
}
#main-content {
    /*margin: 10px 0;*/
}
.home-top-section {
    background-color: #fff;
}
.box-content h2 {
    margin: 0 0 5px;
    font-size: 28px;
    font-weight: 300;
    color: #4f4f4f;
}
.box-content a {
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
    display: inline-block;
}
#footer {
    padding: 50px 0;
    text-align: center;
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}
.delay-1 {
animation-delay: .25s;
}
.delay-2 {
animation-delay: .65s;
}
.delay-3 {
animation-delay: 1.15s;
}
.home-top-section,
.home-mid-section {
    position: relative;
    overflow: hidden;
}
.column-content .container {
    width: 80%;
}
.column-content > div {
    /*min-height: 240px;*/
    padding: 3em 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.column-content .container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}*/
.home-column-text {
    color: #fff;
    -webkit-text-shadow: 0px 0px 15px rgba(0,0,0,0.25);
    -moz-text-shadow: 0px 0px 15px rgba(0,0,0,0.25);
    text-shadow: 0px 0px 15px rgba(0,0,0,0.25);
    margin-bottom: 5px;
    margin: 0 auto;
    text-align: center;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 400;
    padding: 2% 0;
}
.home-column-text a {
    color: #efefef;
}
.home-column-text p {
    font-size: 21px;
}
.home-column-text h1,
.home-column-text a {
    font-size: 50px;
	font-weight: 400;
	color: #fff;
    transition: all 0.2s ease 0s;
    line-height: 1;
}
.home-column-text h1 a:hover {
    font-size: 1.15em;
}

.home-column-text h1 a:hover {
    text-decoration: none;
}
#page-content {
    padding: 3% 0;
}
.f18-light {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 300;
}
.divider hr {
    width: 65px;
    border-top: 1px solid #cccccc;
}

p.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
#footer .social-links i.fa {
    font-size: 30px;
}
.ccm-block-social-links ul.list-inline li {
    margin: 0 7px;
}
/*==========HOME SECTIONS=======*/
.section {
    padding: 10em 0;
}
#section-1 article {
    padding: 0 5em;
    font-size: 20px;
    line-height: 1.65;
}
a#who {
    margin-top: -180px;
    padding-bottom: 180px;
    display: block;
}
a#what {
    margin-top: -240px;
    padding-bottom: 240px;
    display: block;
}
a#where {
    margin-top: -200px;
    padding-bottom: 200px;
    display: block;
}
a#when {
    margin-top: -200px;
    padding-bottom: 200px;
    display: block;
}
a#why {
    margin-top: -190px;
    padding-bottom: 190px;
    display: block;
}
#section-2 {
}
.parallax-window {
    position: relative;
    padding: 10em 0;
}
div#section-2a{
    background: #f8f8f8;
    padding: 4em 0 4em;
}
#section-2a > div.container > div:nth-child(1) > div{
    padding-top: 2em;
}
#section-2a > div:nth-child(2) > div{
    padding: 0 0 4em;
}
div#section-2a div.container {
    background: #e8e8e8;
}
#section-2a div.wow.fadeInLeftBig img.ccm-image-block.img-responsive, #section-2a div.wow.fadeInRightBig img.ccm-image-block.img-responsive{
    margin:0 auto !important;
    padding-top:5px;
    padding-bottom:5px;
    max-width:200px;
}
.ccm-custom-style-parallax {
    background-attachment: fixed;
    position: absolute;
    top: 0px;
    right: 0px;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
    opacity: 1;
    z-index: -1;
}
.overlay-button {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 60px 40px;
}
.overlay-button p {
    margin-bottom: 0
}
a.link {
    padding: 5px 20px;
    display: block;
    text-transform: uppercase; 
    font-size: 16px;
    letter-spacing: 1.25px;
}
.overlay-button a.link:hover {
    text-decoration: underline;
}
#section-1,
#section-3,
#section-5 {
    background-color: #f5f5f5;
}
#section-4 .column-content div[class*='ccm-custom-style'] {
    padding: 1.5em 0;
}
/*=====================BAck to top Styles================================*/

#elevator_item {
width: 40px;
position: fixed;
right: 15px;
bottom: 10px;
-webkit-transition: opacity .4s ease-in-out;
-moz-transition: opacity .4s ease-in-out;
-o-transition: opacity .4s ease-in-out;
opacity: 1;
z-index: 100020;
display: none;
}
#elevator_item.off {
opacity: 0;
visibility: hidden
}
#elevator {
display: block;
width: 40px;
height: 40px;
background: url(images/double-arrow-up-white.png) center center no-repeat;
background-size: 15px 15px;
background-color: #4f4f4f;
box-shadow: 0 1px 3px rgba(0,0,0,.2);
cursor: pointer;
}
#elevator:hover {
}
#elevator:active {
}
/*===full-with-banner styles====*/
#page-title {
    padding: 1% 0;
}
.page-template-full-with-banner #page-content {
    padding-top: 0;
}
.page-template-full-with-banner h2 {
    margin-bottom: 30px;
}

.btn-primary {
    border-radius: 5px;
    background-color: #4f4f4f;
    border: 1px solid #2e4047;
    text-transform: uppercase;
    padding: 8px 25px;
    margin-top: 10px;
    color: #ffffff;
    white-space: normal;
    transition: all 0.5s ease 0s;
}
.btn-primary a {
    color: #ffffff;
}
.btn-primary:hover {
    text-decoration: none;
    background-color: #ffffff;
}
.btn-primary:hover {
    color: #4f4f4f;
}
.btn-primary a:hover {
    text-decoration: none;
}

.btn.btn-default {
    border-radius: 5px;
    background-color: #4f4f4f;
    border: 1px solid #2e4047;
    text-transform: uppercase;
    padding: 8px 25px;
    margin-top: 10px;
    color: #ffffff;
    white-space: normal;
    transition: all 0.5s ease 0s;
}
.btn.btn-default a {
    color: #ffffff;
}
.btn.btn-default:hover {
    text-decoration: none;
    background-color: #ffffff;
}
.btn.btn-default:hover a {
    color: #4f4f4f;
}
.btn.btn-default a:hover {
    text-decoration: none;
}
.btn.btn-big {
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 24px;
    text-transform: uppercase;
    min-width: 275px;
    font-weight: 700;
    text-decoration: none;
    background: #4f4f4f;
    color: #fff;
    transition: all 0.5s ease 0s;
    border: 1px solid #4F4F4F;
    white-space: normal;
}
.btn.btn-big:hover {
    background-color: #ffffff;
    color: #4F4F4F;
    border: 1px solid #4F4F4F;
}
#section-4 .btn.btn-big {
    /*background-color: #cfcfcf;*/
	background-color: #EAE7E7;
    color: #242424;
    text-shadow: none;
}
#section-4 .btn.btn-big:hover {
    color: #EAE7E7;
    background-color: #242424;
}
.fifth {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 100%;
}
.map {
/*    width: 750px;*/
    height: 475px;
    margin: 0 auto; 
}
.map svg {
    width: 100%;
}
/*=============== CONTACT PAGE ==========*/
.form-wrapper{
    background-color: rgba(255, 255, 255, 0.75);
    padding: 3em 3em 2.75em;
    margin: auto; /*3em auto;*/
    font-size: 16px;
    max-width: 675px;
}
.form-wrapper h1, .ccm-form h1 {
    margin: 0 0 15px;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 1;
}
.contact-form-wrapper, .ccm-dashboard-express-form {
    max-width: 450px;
    margin: 2.5em auto 1em;
}
.contact-form-wrapper .form-actions {
    text-align: center;
    margin-top: 25px;
}
.contact-form-wrapper .btn-primary, .ccm-dashboard-express-form div.form-actions button.btn-primary,  div > div.ccm-block-express-form > div > form > div.form-actions > button {
    padding: 10px 50px;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
}
.contact-form-wrapper .control-label, .form-group label.control-label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400 !important;
}
.contact-form-wrapper div.form-group {
    margin-bottom: 20px !important;
}
.contact-form-wrapper .form-control, div.form-group input.form-control.ccm-input-text, div.form-group input.form-control.ccm-input-tel, div.form-group input.form-control.ccm-input-email, div.form-group textarea.form-control, div.form-inline .ccm-input-date {
    border-radius: 0;
}

.contact-form-wrapper input.form-control {
    height: 40px;
}
.contact-form-wrapper textarea.form-control {
    height: 100px;
}
.contact-form-wrapper .form-control:hover, .ccm-dashboard-express-form div.form-group input.form-control.ccm-input-text:hover, .ccm-dashboard-express-form div.form-group input.form-control.ccm-input-tel:hover, .ccm-dashboard-express-form div.form-group input.form-control.ccm-input-email:hover, .ccm-dashboard-express-form div.form-group textarea.form-control:hover, .ccm-dashboard-express-form div.form-inline .ccm-input-date:hover, .ccm-dashboard-express-form .form-inline select.form-control:hover {
    border-color: #777;
    border-style: dashed;
}
.contact-form-wrapper .ccm-dashboard-express-form .form-control:focus:hover {
    border: 0;
}
.ccm-dashboard-express-form span.text-muted.small {
    font-size: 75% !important;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight:normal;
}
.ccm-dashboard-express-form div.ccm-block-type-form .small {
opacity: .50;
font-size: 84% !important;
    text-transform: uppercase;
}


div.form-actions{
    margin: 0 auto;
    text-align:center;
       padding: 10px 50px;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
}
/*div.form-group span.text-muted.small {
    color: #777;
}*/

.hero-banner {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.hero-banner > video {
    position: relative;
    top: -30%;
    right: 0px;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    opacity: 0.85;
}
div.page-template-new-landing-page div#section-1 {
    padding: 2em 0;
}
div.page-template-new-landing-page footer {
    background-color: #f5f5f5;
}
.reveal.large {
    width: 100%;
}

div.page-template-new-landing-page .parallax-window {
    position: relative;
    padding: 2em 0 4em;
}
div.page-template-new-landing-page button.btn.btn-info.btn-lg {
    margin: 0 auto;
    text-align: center;
    display: block;
}
img.thmbVid.img-responsive {
    display: block;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}
img.thmbVid.img-responsive {
    position: relative;
}
.page-template-new-landing-page #main-content {
    padding: 5% 0;
}
 
/*replace the content value with the
corresponding value from the list below*/
 
.playIcon {
    content: "\f01d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #fff;
    font-size: 64px;
    position: absolute;
    top: 35% !important;
    display: block;
    margin: 0 auto;
    left: 45%;
}
.onepage-nav {
    text-align: center;
    list-style: none;
    padding: 0!important;
}
.onepage-nav li {
    display: inline-block;
    margin: 0 10px;
}
.onepage-nav li a {
    font-size: 16px;
    color: #3e3e3e;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    transition: all .3s ease;
}
.onepage-nav li a:hover {
    border-bottom: 2px solid #3aa8a9;
}
.btn-turq.btn {
    text-transform: uppercase;
    color: #fff;
    border-radius: 0;
    font-size: 20px;
    line-height: 20px;
    font-family: Cooper Hewitt;
    padding: 15px 20px;
    transition: all .2s ease;
}

.btn-turq {
    color: #fff;
    background-color: #3aa8a9;
    border-color: #3aa8a9;
}
.onepage-nav li a.btn:hover {
    color: #3aa8a9;
    border-bottom: 1px solid #3aa8a9;
    padding: 15px 20px;
    background: transparent;
}
/*-------------401k button style-------------*/
#section-2a a {
    font-size: 16px;
    color: #3e3e3e;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    transition: all .3s ease;
}

#section-2a a.btn-turq.btn {
    text-transform: uppercase;
    color: #fff;
    border-radius: 0;
    font-size: 20px;
    line-height: 20px;
    font-family: Cooper Hewitt;
    padding: 15px 20px;
    transition: all .2s ease;
}

#section-2a.btn-turq {
    color: #fff;
    background-color: #3aa8a9;
    border-color: #3aa8a9;
}
#section-2a a.btn.btn-turq:hover {
    color: #3aa8a9;
    border-bottom: 1px solid #3aa8a9;
    padding: 15px 20px;
    background: transparent;
}

/*-------------End 401k button style-------------*/

.reveal {
    background-color: #343434;
    border: none;
    overflow: visible;
    padding: .3125rem;
    padding-top: 3.75rem;
}
.reveal-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1005;
    background-color: rgba(0,0,0,0.8);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.reveal .close-button {
    background: white;
    border-radius: 100%;
    display: block;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 2rem;
    transition: 0.2s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 2.5rem;
    z-index: 2;
}
.embed-container {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
}
iframe.js-modal-vimeo {
    width: 100%;
    height: 80%;
    min-height: 300px;
}
.reveal>:last-child {
    margin-bottom: 0;
}
.reveal .embed-container {
    margin-top: 0;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media screen and (min-width: 40em) {
.reveal.large {
    width: 70%;
}
.reveal .close-button {
    height: 3.125rem;
    left: auto;
    right: -2.8125rem;
    top: -2.8125rem;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 3.125rem;
}
}
@media (min-width: 1399px) {
    .hero-banner > video{
        top: -75%;
    }
}
@media (max-width: 767px) {
    #page-content {
        padding-top: 0;
    }
    .hero-banner {
        height: 150px;
    }
    .hero-banner {
        background-image: url(video/contact-page/contact-video-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .hero-banner > video {
        display: none;
    }
}
@media (min-width: 768px) {
    .fifth {
        width: 20%;
    }
    #section-5 p {
        text-align: justify;
    }
    /*.column-content > div {
        height: 290px;
    }*/
}
@media (min-width: 992px) {
    .box-content {
        padding: 0 10%;
        text-align: left;
    }
    /*.column-content > div {
        height: 480px;*/
    }
    .home-column-text {
        font-size: 60px;
    }
    .narrow {
        padding: 2% 10%;
    }
}
@media (min-width: 1200px) {
    .box-content {
        padding: 0 15%;
        text-align: justify;
    }
}
@media (min-width: 1430px) {
  .hero {
    height: 750px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hero .text-overlay .container {
        width: 650px;
    }
}
@media screen and (max-width: 1200px) {	
	.panel-menu {
	    overflow-y: auto;
	    padding: 0 80px;
	    -webkit-box-sizing: border-box;
	    box-sizing: border-box;
	    -webkit-overflow-scrolling: touch;
	    background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), color-stop(88%, #e5e5e5), to(#d5d5d5));
	    background: linear-gradient(to bottom, #f1f1f1 0%, #e5e5e5 88%, #d5d5d5 100%);
	}
	.panel-menu:before {
	    display: none;
	}
	.panel-menu__close:before, .panel-menu__close:after {
	    top: 19px;
	}
	.panel-menu__content {
	    display: block;
	    margin-top: 120px;
	}
	.panel-menu__part {
	    width: 100%;
	    display: block;
	}
	.header {
	    padding-top: 20px;
	}
	.nav {
	    margin-left: 0;
	}
	.nav__item {
	    font-size: 65px;
	    line-height: 105px;
	}
	.nav__item_active {
	    opacity: .7;
	}
	.nav__item:before {
	    display: none;
	}
}
@media (max-width: 1059px) {
    #video_background {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 991px) {
    .hero .text-overlay {
        margin-top: 2em;
    }
    .hero .text-overlay h1 {
        font-size: 2em;
    }
    .hero .text-overlay p {
        width: 100%;
    }
    .home-column-text h1 a {
        font-size: 32px;
    }
    .column-content > div {
        padding: 1em 0;
    }
    .section,
    .parallax-window {
        padding: 6em 0;
    }
    .home-column-text h1, .home-column-text a {
        font-size: 42px;
    }
    a#who {
        margin-top: -120px;
        padding-bottom: 120px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 37px;
    }
	.panel-menu__close {
	    width: 32px;
	    height: 32px;
	}
	.panel-menu {
	    overflow-y: auto;
	    padding: 0 24px;
	    -webkit-box-sizing: border-box;
	    box-sizing: border-box;
	    background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), color-stop(88%, #e5e5e5), to(#d5d5d5));
	    background: linear-gradient(to bottom, #f1f1f1 0%, #e5e5e5 88%, #d5d5d5 100%);
	    width: 100%;
	    height: 100%;
	    left: 0;
	    top: 0;
	}	
	.panel-menu__close:before, .panel-menu__close:after {
	    top: 15px;
	}
	.nav__item {
		font-size: 40px;
	    line-height: 60px;
	}
	.header {
	    padding: 25px 0 20px;
        background-color: #dfdfdf;
	}
	.header__container {
	    left: 24px;
	    top: 24px;
	    width: 32px;
	    height: 32px;
	}
	.header__menu {
	    top: 0;
	    left: 0;
	    width: 32px;
	    height: 32px;
	    position: relative;
	    font-size: 20px;
	}
    .header__logo {
        top: -3px;
    }
	.header__logo img {
	    width: 200px;
        margin: 0 auto 0 10%;
	}
    .hero {
        background-image: url(images/homebackground.png);
        background-size: cover;
        padding: 4em 1em;
    }
    #video_background {
        display: none;
    }
    .hero .text-overlay,
    #home .header {
        position: relative;
    }
    .hero .text-overlay {
        margin-top: 0;
    }
    .hero .text-overlay h1 {
        font-size: 1.5em;
        line-height: 1;
        margin-bottom: 5px;
    }
    .hero .btn-slider {
        padding: 10px 30px;
        margin-top: 5px;
    }
    .hero .text-overlay p {
        width: 100%;
        line-height: normal;
        font-size: 12px;
    }
    .box-content {
        padding: 0 5% 30px;
    }
    .section,
    .parallax-window {
        padding: 4em 0;
    }
    .btn.btn-big {
        font-size: 18px;
    }
    #section-1 article {
        padding: 0 15px;
        font-size: 18px;
        line-height: 1.45;
    }
    .overlay-button {
        margin: 20px 0;
    }
    #section-5 .col-sm-6 {
        margin-bottom: 80px;
    }
    a#what,
    a#who,
    a#why,
    a#where  {
        margin-top: -80px;
        padding-bottom: 80px;
    }
    a#when{
        margin-top: -50px;
        padding-bottom: 50px;
    }
    .form-wrapper {
        padding: 2em;
    }
}
@media (max-width: 599px) {
    .map {
        height: 350px;
    }
}


@media (max-width:479px) {
    .hero .text-overlay {
        font-size: 1em;
    }
    .hero .text-overlay h1 {
        font-size: 1.75em;
        margin: 0;
    }
    .hero .btn-slider {
        padding: 5px 10px;
        font-size: 12px;
        margin-top: 5px;
    }
    .btn.btn-big {
        min-width: initial;
        padding: 20px 40px;
    }
    .map {
        height: 250px;
    }
	
}
@media (max-width: 399px) {
    .map {
        height: 220px;
    }
}