@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');

body{
	font-family: 'Roboto', sans-serif !important;
}
body.overflow{
    overflow: hidden;
}
ul, li{
	list-style: none;
	padding: 0;
	margin: 0;
}
a, a:hover{
	text-decoration: none !important;
}
p{
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 1rem;
}
img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

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

.section{
    padding: 80px 0;
}
.darker,
.bg-light-white{
    position: relative;
}
.darker>*,
.bg-light-white>*{
    position: relative;
    z-index: 1;
}
.darker:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.55);
}
.bg-light-white:before{
    content: "";
    position: absolute;
    top: -30px;
    left: -50%;
    width: 200%;
    height: calc(100% + 60px);
    background-color: rgba(255,255,255,.35);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.flex{
    display: flex;
}

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

.header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: transparent;
    z-index: 99;
}
.phone{
    float: left;
    position: relative;
    line-height: 80px;
    padding-left: 33px;
}
.phone:before{
    content: "\f095";
    position: absolute;
    top: 0;
    left: 0;
    font-family: fontawesome;
    font-size: 30px;
    transform: translateY(1px);
    color: #fff;
}
.phone a{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.header nav{
    float: right;
}
.header nav ul{
    margin-bottom: 0;
    font-size: 0
}
.header nav ul li{
    font-size: initial;
    display: inline-block;
}
.header nav ul li a{
    display: block;
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.phone a span,
.header nav ul li a span{
    position: relative;
}
.phone a span:before,
.header nav ul li a span:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width .4s ease;
}
.phone a:hover span:before,
.header nav ul li a:hover span:before,
.header nav ul li.active a span:before{
    width: 100%;
}

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

.main-screen{
    height: 100vh;
    min-height: 605px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-image: url('../img/bg-1.jpg');
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}
.main-left{
    padding-right: 10px;
}
.main-left form{
    margin-bottom: 0;
}
.sub-wrapper input[type="text"],
.main-left input,
.main-left select,
.main-left textarea{
    width: 100%;
    background-color: rgba(255,255,255,.75);
    padding: 14px 20px 12px;
    border: 1px solid #d0d0d0;
    outline: 0;
    margin-bottom: 15px !important;
    color: #272727;
    border-radius: 0;
    box-shadow: none !important;
    transition: background-color .3s ease;
}
.main-left select{
    padding: 15px 20px 14px;
}
.main-left textarea{
    height: 130px;
    margin-bottom: 8px;
    resize: none;
}
.sub-wrapper input[type="text"]::placeholder,
.main-left input::placeholder,
.main-left textarea::placeholder{
    color: #999;
}
.sub-wrapper input[type="text"]:focus,
.main-left input:focus,
.main-left select:focus,
.main-left textarea:focus{
    background-color: #fff;
}
.unsubscribe-btn,
.main-left button{
    background-color: #b5816d;
    border: 0;
    outline: 0 !important;
    cursor: pointer;
    width: 100%;
    height: 52px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    transition: background-color .3s ease;
    padding: 0 30px;
}
.unsubscribe-btn:hover,
.main-left button:hover{
    background-color: #986b5a;
}
.unsubscribe-btn:active,
.main-left button:active{
    transform: scale(.9);
}
.main-right{
    margin-left: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #272727;
}
.main-right h4{
    text-transform: uppercase;
    margin-bottom: 16px;
}
.main-right ul{
    padding-left: 20px;
}
.main-right li{
    list-style: disc;
}

.new-validate__error,
.new-validate__success{
    background-color: #6d4d41;
}
.new-validate__error p,
.new-validate__success p{
    margin-bottom: 0;
}

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

.second-screen h4{
    margin-bottom: 20px;
}
.second-screen h4.second-title{
    text-transform: uppercase;
    text-align: center;
    color: #986b5a;
    margin-bottom: 50px;
}
.second-screen p{
    margin-bottom: 0;
}
.second-screen .col-lg-4 *{
    text-align: justify;
}

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

.sub-wrapper{
    color: #272727;
}
.sub-wrapper h2{
    text-align: center;
    margin-bottom: 50px;
}
.sub-wrapper input[type="checkbox"]{
    width: 14px;
    height: 14px;
    outline: 0;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 5px;
    transform: translateY(1.4px);
    cursor: pointer;
}
.unsubscribe-check-wrapper{
    border: 1px solid transparent;
    margin-bottom: 0;
}
.unsubscribe-btn{
    display: table;
    width: auto;
    margin: 50px auto 0;
}

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

.main-screen.faq-page{
    height: auto;
    padding: 140px 0 60px;
    color: #fff;
}
.faq-page.back-img:before{
    background-color: #000;
    opacity: .6;
}
.main-screen.faq-page h3{
    margin-bottom: 20px;
}
.main-screen.faq-page p{
    margin-bottom: 20px;
}
.main-screen.faq-page .col-lg-4:nth-last-child(-n+2) p{
    margin-bottom: 0;
}

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

.footer{
    background-color: #272727;
    padding: 30px 0 26px;
    color: #fff;
    position: relative;
}
.footer a{
    color: #fff;
    transition: color .3s ease;
}
.footer a:hover{
    color: #52b387;
}
.footer .copy{
    text-align: right;
}

/*--------------------------------------------------------------------------*/
/* MEDIA-QUERY */
/*--------------------------------------------------------------------------*/

@media only screen and (max-width:1199px){
    .main-right{
        margin-left: 0;
    }
    .main-left{
        margin-right: 0;
    }
}

@media only screen and (max-width:991px){
    .main-screen.start-screen,
    .main-screen.faq-page{
        height: auto;
        padding: 110px 0 30px;
    }
    .main-screen .col-lg-6:first-of-type{
        order: 2;
    }
    .main-screen .col-lg-6:last-of-type{
        order: 1;
    }
    .main-right ul{
        margin-bottom: 25px;
    }
    .section{
        padding: 40px 0;
    }
    .second-screen h4.second-title{
        margin-bottom: 30px;
    }
    .second-screen p{
        margin-bottom: 30px;
    }
    .second-screen .col-lg-4:last-of-type p{
        margin-bottom: 0;
    }
}

@media only screen and (max-width:767px){
    .hamburger{
        float: right;
        position: relative;
        height: 80px;
        width: 30px;
    }
    .hamburger span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #fff;
        border-radius: 5px;
        cursor: pointer;
    }
    .hamburger span:nth-of-type(1){
        top: calc(50% + 7px);
    }
    .hamburger span:nth-of-type(2){
        top: calc(50% - 2px);
    }
    .hamburger span:nth-of-type(3){
        top: calc(50% - 11px);
    }
    .header nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #272727;
        display: none;
    }
    .header nav ul{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .header nav ul li{
        display: block;
        width: 100%;
    }
    .header nav ul li a{
        width: 100%;
        color: #fff;
        height: 60px;
        line-height: 60px;
    }
    .header nav ul li a:hover,
    .header nav ul li.active a{
        background-color: #fff;
        color: #272727;
    }
    .close-nav{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    .close-nav span{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 4px;
        border-radius: 5px;
        background-color: #fff;
    }
    .close-nav span:nth-of-type(1){
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .close-nav span:nth-of-type(2){
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .faq-page h3{
        font-size: 1.35rem;
    }
    .main-screen.faq-page p{
        margin-bottom: 20px !important;
    }
    .main-screen.faq-page .col-lg-4:last-child p{
        margin-bottom: 0 !important;
    }
}

@media only screen and (max-width:575px){
    .footer{
        padding-bottom: 55px;
    }
}
