body{
	font-family: open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif;
    color: #222;
}
ul, li{
	list-style: none;
	padding: 0;
	margin: 0;
}
a, a:hover{
	text-decoration: none !important;
}
a{
    color: #222;
}
a:hover{
    color: #45479e;
}
p{
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 1rem;
    text-align: justify;
}
img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

/*--------------------------------------------------------------------------*/
/* GLOBAL */
/*--------------------------------------------------------------------------*/

.background-1{
    background-image: url('../img/bg-1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.flex-100vh{
    height: 100vh;
    min-height: 550px;
    display: flex;
    align-items: center;
}
.bg-lighter,
.bg-darker,
.bg-darkest{
    position: relative;
}
.bg-lighter::before,
.bg-darker::before,
.bg-darkest::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg-lighter::before{
	background-color: rgba(255,255,255,.1);
}
.bg-darker::before{
	background-color: rgba(0,0,0,.15);
}
.bg-darkest::before{
	background-color: rgba(0,0,0,.5);
}
.bg-lighter>*,
.bg-darker>*,
.bg-darkest>*{
    position: relative;
    z-index: 1;
}
.bottom-shadow{
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}
.bottom-shadow-big{
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.overflow{
    overflow: hidden;
}
.btn-site{
    background-color: #000;
    color: #fff;
    border: none;
    outline: none !important;
    cursor: pointer;
    padding: 9px 20px 10px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color .3s ease;
}
.btn-site:hover{
    background-color: #45479e;
}

/*--------------------------------------------------------------------------*/
/* .header */
/*--------------------------------------------------------------------------*/

.header{
    position: fixed;
    top: 0;
    right: 0;
    width: 375px;
    height: 100vh;
    transform: translateX(315px);
    transition: all .55s ease;
    z-index: 99;
}
@media only screen and (max-width:374px){.header{width:320px;transform:translateX(260px);}}
.header.active{
    transform: translateX(0);
}
.hamburger{
    width: 60px;
    height: 60px;
    background-color: rgba(155,155,155,.3);
    float: left;
    cursor: pointer;
    position: relative;
    transition: background-color .2s ease;
}
.hamburger:hover{
    background-color: rgba(155,155,155,.5);
}
.hamburger span{
    position: absolute;
    left: 15px;
    width: calc(100% - 30px);
    height: 3px;
    background-color: #fff;
    transition: all .3s ease, visibility .1s ease;
}
.hamburger .beef span{
    transition-delay: .3s;
}
.hamburger .beef span:nth-child(1){
    top: calc(50% - 11px);
}
.hamburger .beef span:nth-child(2){
    top: calc(50% - 1px);
}
.hamburger .beef span:nth-child(3){
    top: calc(50% + 9px);
}
.header.active .hamburger .beef span:nth-child(1),
.header.active .hamburger .beef span:nth-child(3){
    top: calc(50% - 1px);
    transition-delay: 0s;
}
.header.active .hamburger .beef span{
    visibility: hidden;
}
.hamburger .old-beef span{
    transition-delay: 0s;
    top: calc(50% - 1px);
}
.header.active .hamburger .old-beef span:nth-child(1),
.header.active .hamburger .old-beef span:nth-child(2){
    transition-delay: .3s;
}
.header.active .hamburger .old-beef span:nth-child(1){
    transform: translate(0) rotate(-45deg);
}
.header.active .hamburger .old-beef span:nth-child(2){
    transform: translate(0) rotate(45deg);
}
.header-navigation{
    float: right;
    width: calc(100% - 60px);
    background-color: #fff;
    height: 100%;
    padding: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}
.header-navigation li{
    margin-bottom: 8px;
}
.header-navigation li a{
    display: block;
    padding: 15px 20px;
    color: #41516a;
    text-transform: uppercase;
    font-size: 14px;
}
.header-navigation li.active a,
.header-navigation li a:hover{
    background-color: #45479e;
    color: #fff;
}

/*--------------------------------------------------------------------------*/
/* .main-screen */
/*--------------------------------------------------------------------------*/

.main-text{
    background-color: #fff;
    padding: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.main-text h4{
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}
.main-text ul{
    padding-left: 20px;
}
.main-text li{
    list-style: disc;
}
.main-form input,
.main-form select,
.main-form textarea{
    width: 100%;
    background-color: rgba(255,255,255,.7);
    border: 1px solid transparent;
    outline: none;
    margin-bottom: 15px;
    padding: 9px 12px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
    transition: background-color .3s ease;
}
.main-form select{
    background-color: #fff;
}
.main-form textarea{
    height: 130px;
    resize: none;
}
.main-form input.focus,
.main-form textarea.focus{
    background-color: #fff;
}
.new-validate__success,
.new-validate__error{
    background-color: #fff;    
    padding: 40px 50px !important;
    border-radius: 5px;
}
.new-validate__success *,
.new-validate__error *{
    text-align: center;
    margin-bottom: 0;
}
.new-validate__success h3{
    color: green;
    opacity: .75;
    margin-bottom: 20px;
}
.new-validate__error h3{
    color: red;
    opacity: .75;
    margin-bottom: 20px;
}

.phone{
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1;
}
.phone a{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

/*--------------------------------------------------------------------------*/
/* .second-screen */
/*--------------------------------------------------------------------------*/

.second-screen{
    padding: 80px 0;
}
.second-screen h2{
    text-align: center;
    font-weight: 700;
    color: #45479e;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.second-screen h4{
    margin-bottom: 1rem;
}
.second-screen p{
    margin-bottom: 0;
}

/*--------------------------------------------------------------------------*/
/* .subscription-page */
/*--------------------------------------------------------------------------*/

.sub-wrapper{
    background-color: #fff;
    padding: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.unsubscribe-check-wrapper{
    display: block;
    border: 1px solid transparent;
    padding-left: 20px;
    margin-bottom: 2.5rem;
}
.subscription-page h2{
    text-align: center;
    font-weight: 700;
    color: #45479e;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.sub-wrapper label[for=unsubscribe-email]{
    margin-bottom: .25rem;
}
.sub-wrapper input[type=checkbox]{
    cursor: pointer;
}
.sub-wrapper input[type=text]{
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
    outline: none;
    padding: 8px 12px;
    box-shadow: none !important;
    transition: border-color .2s ease;
}
.sub-wrapper input[type=text]:focus{
    border-color: #45479e;
}
#emailInput{
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------------------*/
/* .faq-page */
/*--------------------------------------------------------------------------*/

.faq-page{
    background-attachment: fixed;
    padding: 60px 0;
    color: #fff;
}
.faq-page h3{
    font-weight: 700;
    margin: 1rem 0;
}
.faq-page .col-lg-4:nth-child(-n+3) h3{
    margin-top: 0;
}
.faq-page p{
    margin-bottom: 0;
}

/*--------------------------------------------------------------------------*/
/* .footer */
/*--------------------------------------------------------------------------*/

.footer{
    padding: 22px 0 20px;
}
.footer a{
    transition: color .15s ease;
}
.contact-info{
    float: left;
}
.copy{
    float: right;
}

/*--------------------------------------------------------------------------*/
/* !media-query */
/*--------------------------------------------------------------------------*/

@media only screen and (max-width:991px) {
    .main-screen{
        padding: 60px 0;
        height: auto;
    }
    .main-text{
        margin-bottom: 60px;
    }
    .second-screen h4{
        margin: 1rem 0;
    }
    .second-screen .col-lg-4:first-child h4{
        margin-top: 0;
    }
    .contact-info,
    .copy{
        float: none;
        text-align: center;
    }
    .phone{
        top: 9px;
    }
}
@media only screen and (max-width:767px){
    .faq-page h3{
        font-size: 1.5rem;
    }
    .second-screen h2,
    .subscription-page h2{
        font-size: 1.75rem;
    }
    .faq-page .col-lg-4:nth-child(2) h3,
    .faq-page .col-lg-4:nth-child(3) h3{
        margin-top: 1rem;
    }
    .phone{
        top: 13px;
    }
    .phone a{
        font-size: 24px;
    }
}
