@font-face {
    font-family: 'BVR';
    src: url('LibreBaskerville-Regular.eot');
    src: url('LibreBaskerville-Regular.woff2') format('woff2'),
        url('LibreBaskerville-Regular.woff') format('woff'),
        url('LibreBaskerville-Regular.ttf') format('truetype'),
        url('LibreBaskerville-Regular.svg#LibreBaskerville-Regular') format('svg'),
        url('LibreBaskerville-Regular.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OSR';
    src: url('OpenSans-Regular.eot');
    src: url('OpenSans-Regular.woff2') format('woff2'),
        url('OpenSans-Regular.woff') format('woff'),
        url('OpenSans-Regular.ttf') format('truetype'),
        url('OpenSans-Regular.svg#OpenSans-Regular') format('svg'),
        url('OpenSans-Regular.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OSL';
    src: url('OpenSans-Light.eot');
    src:url('OpenSans-Light.woff') format('woff'),
        url('OpenSans-Light.ttf') format('truetype'),
        url('OpenSans-Light.svg#OpenSans-Light') format('svg'),
        url('OpenSans-Light.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    color: white;
    padding: 0;
    margin: 0;
}

h1{
    font-family: 'BVR';
    text-transform: uppercase;
    font-size: 25px;
}

h2{
    font-family: 'OSL';
    text-transform: capitalize;
    font-size: 22px;
}

p, p a{
    font-family: 'OSL';
    font-size: 15px;
    text-align: justify;
}
p.p-content{
    margin-top: 30px;
}

.landing{
    width: 100%;
    height: 100%;
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 0;
}

.wave{
    width: 100%;
    height: 100%;
    background-image: url('../images/header-wave.svg');
    background-size: cover;
    background-position: center center;
    position: relative;
}

.menu{
    position: absolute;
    top: 30px;
    left: calc(8.333333% + 34px);
    padding: 0;
    font-family: 'OSR';
    font-size: 11px;
    color: #999;
}

.nav{
    display: block;
}

.nav li a{
    color: #999;
    text-decoration: none;
}

.nav li a:hover, .nav li a:foucs, .nav li a:active{
    color: white;
    text-decoration: none;
}

.nav li{
    margin-bottom: 7px;
    list-style: none;
    cursor: pointer;
}

.nav li a:before{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 10px;
    border-top: 1px solid white;
    margin-top: 7px;
    width: 0px;
    right: 100%;
    margin-right: 30px;
    transition: width 0.3s;
}

.nav li a:hover:before{
    width: 200px;
}

.nav li a:hover{
    color: white !important;
}

.menu-bar-mob{
    opacity: 0;
    z-index: -1111;
    background: white;
    position: relative;
    top:-100px;
    border-bottom: solid 1px black;
    text-align: right;
    padding-right: 30px;
}

.menu-bar-mob.show{
    opacity: 1;
    z-index: 9;
    top:15px;
}

.menu-bar-mob li a{
    color: #999;
    text-decoration: none;
    font-size: 12px;
}

.menu-bar-mob li a:hover, .menu-bar-mob li a:foucs, .menu-bar-mob li a:active{
    color: white;
    text-decoration: none;
}


.scroll{
    width: 18px;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}

.scroll img{
    position: relative;
    top: 0;
}

.scroll:hover img{
    top:30px;
}

.menu-bar {
    height: 100px;
    border-bottom: solid 1px black;
    padding: 0;
    top: 0;
    width: 100%;
    background: white;
    z-index: 10;
}

.menu-bar-fix{
    position: fixed;
}

.menu-bar-logo{
    margin-top: 26px;
}

.menu-bar-logo img{
    width: 100px;
    float: left;
}

.menu-bar-menu{
    padding: 0;
    font-family: 'OSR';
    font-size: 11px;
    color: black;
    text-align: right;
}

.menu-bar-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100px;
}

.menu-bar-menu li{
    display: inline-flex;
    list-style: none;
    cursor: pointer;
    height: 100px;
    text-align: right;
}

.menu-bar-menu li a{
    margin: 44px 30px 0 30px;
    /* padding: 0 30px 0 30px; */
    /* text-align: right; */
    position: relative;
    color: black;
    text-decoration: none;
}

.menu-bar-menu li a:before{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    border-right: 0px solid white;
    border-left: 0px solid white;
    width: 0;
    height: 4px;
    margin-top: 53px;
    transition: 0.3s;
    background: black;
    left: 50%;
}

.menu-bar-menu li:hover a:before{
    width: 80%;
    border-right: 7px solid white;
    border-left: 7px solid white;
    left: 10%;
}

.about, .bio, .sales, .flag
{
    width: 100%;
    min-height: 90%;
    color: #333;
    padding-top: 60px;
}

.about h1:after{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    height: 1px;
    margin-top: 38px;
    transition: 0.3s;
    background: black;
    width: 100%;
    left: -191px;
}

.about-wave{
    position: absolute;
    right:0;
    width: 90%;
    background-image: url(../images/wave.svg);
    background-size: cover;
}

.about-img img{
    position: absolute;
    width: 80%;
    top: 50px;
    padding-left: 15px;
}

.bio
{
    padding-top: 20px;
    min-height: 50%;
}

.bio p{
    margin-bottom: 5px;
}

.bio-wave{
    position: absolute;
    right:0;
    width: 100%;
    height: 116%;
    background-image: url(../images/wave.svg);
    background-size: cover;
}

.bio-img{
    z-index: 1;
    top: 20px;
}

.bio-matt{
    margin-top: 2%;
}

.bio h1:after{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    height: 1px;
    margin-top: 38px;
    transition: 0.3s;
    background: black;
    width: 54%;
    left: -191px;
}

.bio h2{
    margin-top: 20px;
}

.bio p a{
	color: #333;
}

.bio p a:hover{
	color: #333;
}

.sales{
    margin-bottom: 100px;
}

.sales h1:after{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    height: 1px;
    margin-top: 38px;
    transition: 0.3s;
    background: black;
    width: 122%;
    left: -151px;
}

.sales-wave{
    position: absolute;
    right:0;
    width: 90%;
    height: 190%;
    background-image: url(../images/wave.svg);
    background-size: cover;
}

.sales-img img{
    position: absolute;
    width: 100%;
    top: 50px;
    right: 0;
    padding-left: 15px;
}

.sales-img-1{
    margin-top: 50px;
}

.sales-img-2{
    margin-top: 150px;
}
.sales-img-3{
    margin-top: 100px;
}

.contact{
    width: 100%;
    padding: 100px 0;
    background-image: url('../images/ontat.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    text-align: center;
}

.contact .wave{
    height: 120%;
    top: -10%;
    position: absolute;
}

.contact hr{
    width: 2px;
    height: 50px;
    position: absolute;
    left: 50%;
    margin: 0;
    background: white;
}

hr.top{
    top:0;
}

hr.bottom{
    bottom:0;
}

.contact p {
    text-align: center;
}

.contact p a{
	color: white;
}

.contact p a:hover{
	color: white;
}

.flag{
    margin-top: 100px;
}

.flag h1:after{
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    position: absolute;
    height: 1px;
    margin-top: 38px;
    transition: 0.3s;
    background: black;
    width: 60%;
    left: -151px;
}

.flag-img img{
    z-index: 1;
    position: absolute;
    width: 100%;
    padding-left: 15px;
    top: 130px;
    right: 0;
}

.flag-wave{    
    position: absolute;
    right:0;
    width: 90%;
    height: 165%;
    background-image: url(../images/wave.svg);
    background-size: cover;
}

.footer{
    background: black;
    color: white;
    min-height: 150px;
    height: auto;
    position: relative;
}

.footer img{
    width: 100px;
}

.footer p{
    margin-bottom: 0;
    margin-left: 30px;
}

.footer .fa{
    position: absolute;
    top:0;
    line-height: 20px;
}

.footer .fa-facebook,.footer .fa-whatsapp{
    float: right;
    position: initial;
    margin-left: 20px;
    color: white;
}

.footer .phone,
.footer .email,
.footer .social{
    position: relative;
    float: right;
}
.footer .phone{
    margin-right: 50px;
}

.footer .email{
	margin-right: 30px;    
}

.footer .email p a{
	color: white;
}

.footer .email p a:hover{
	color: white;
}

@media (max-width:991px){
    h1{
        font-size: 20px;
    }
    h1:after{
        margin-top: 30px !important;
    }
    .fa-bars{
        font-size: 26px;
        margin-top: 26px;
        cursor: pointer;
    }
    .flag {
        margin-top: 20px;
    }
    .flag-img img {
        top: 90px;
    }
    .footer p{
        padding-bottom: 10px;
    }
}

@media (max-width:768px){
    .menu{
        top: 15px;
        left:30px;
    }    
    .logo img{
        width: 150px;
        margin-bottom: 30px;
    }
    .menu-bar{
        height: 80px;
    }
    .menu-bar-logo {
        margin-top: 19px;
    }
    .scroll img{
        position: relative;
        top: 50px;
    }

    .scroll:hover img{
        top:80px;
    }

    .bio h1:after{
        left: -60px;
    }
    .flag-img img {
        top: 50px;
    }
    .footer{
        min-height: 200px;
    }
    .footer .fa-facebook,.footer .fa-whatsapp{
        margin-left: 15px;
    }

    .footer .phone, .footer .email, .footer .social {
        width: initial;
    }    

    .footer{
        min-height: 350px;
        text-align: justify;
        text-align: center;
    }
    .footer img {
        margin-bottom: 20px;
    }
    .footer p{
        text-align: justify;
        text-align: center;
        margin-left: 0px;
    }

    .footer .fa {
        left: 48%;
        position: initial;
    }
    .footer .fa-facebook,.footer .fa-whatsapp{
        margin-left: 0px;
        float: none;
    }

    .footer .fa-facebook{
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .footer .phone, .footer .email, .footer .social {
        margin-right: 0px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .landing{
        background-attachment: scroll;
    }
    .contact{
        background-attachment: scroll;
    }
    .wave{
        background-attachment: scroll;
    }
}

@media(max-width: 576px){
    h1, h2{
        font-size: 18px;
    }
    h1:after {
        margin-top: 24px !important;
    }
    p{
        font-size: 13px;
    }
    p.p-content {
        margin-bottom: 0px;
    }
    p.p-content:last-child {
        margin-bottom: 20px;
    }
    .nav li {
        margin-bottom: 2px;
    }

    .sales-img-1, .sales-img-2, .sales-img-3{
        margin-top: 30px;
    }
}