* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
    font-family: 'Poppins';
    color: #000;
    background-color: #D1D1D1;
}

/* -------------------- FONTS -------------------- */
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.woff2') format('woff2'),
        url('../font/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Bold.woff2') format('woff2'),
        url('../font/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


h1 {
	font-size: 30px;
    margin: 10px 0 0;
}

h1 span {
    color: red;
}

h2 {
	font-weight: normal;
    font-size: 18px;
    color: #fff;
    margin: 35px 0 0;
    text-transform: uppercase;
}

h3 {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
}

a {
	color: #000;
	text-decoration: none;
    font-size: 20px;
    margin-top: 12px;
    display: block;
    opacity: 0.8;
}

a:before {
    content: '';
    background-image: url('../images/envelope.svg');
    background-size: 20px;
    width: 20px;
    height: 19px;
    display: block;
    position: relative;
    left: -30px;
    top: 24px;
    opacity: 0.8;
}


/* -------------------- MAIN -------------------- */
header {
    height: 95px;
    background-color: #fff;
}

.container {
	width: 100%;
	padding: 0 120px;
	margin: 0 auto;
}

.profileBox {
    position: relative;
    padding-left: 190px;
    float: left;
    padding-top: 20px;
}

.profile {
    position: absolute;
    left: 0;
    height: 150px;
    width: 150px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid #CCCCCC;
}

.contact {
    float: right;
}

.clearfix {
    clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

.backgroundImage {
    background-image: url(../images/background.jpg);
    width: 100%;
    background-size: 100%;
    height: 0;
    background-position: center 60%;
    padding-bottom: 47%;
    position: relative;
    z-index: -1;
}

.backgroundImage .container {
    position: absolute;
    bottom: 0;
}

.backgroundImage p {
    position: absolute;
    font-size: 9.7vw;
    letter-spacing: 20px;
    line-height: 9.7vw;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    bottom: -1.6vw;
    margin: 0;
}

.grey {
    background-color: #D1D1D1;
    border-top: 50px solid #fff;
    padding: 30px 0;
}

.l-hide {
    display: none;
}

@media screen and (min-width: 1700px) {
    .backgroundImage {
        padding-bottom: 0;
        height: 800px;
    }
}

@media screen and (max-width: 1500px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1200px) {
    .backgroundImage {
        background-position: center 64%;
        padding-bottom: 50%;
    }
}

@media screen and (max-width: 1000px) {
    .backgroundImage {
        padding-bottom: 55%;
    }
    
    .backgroundImage p {
        letter-spacing: 15px;
    }
    
    .contact {
        display: none;
    }
    
    .l-hide {
        display: block;
    }
    
    a {
        padding-left: 30px;
        margin-top: 0;
    }
}

@media screen and (max-width: 800px) {
    header {
        height: 70px;
    }
    
    .profileBox {
        padding-left: 130px;
    }
    
    .profile {
        height: 100px;
        width: 100px;
    }
    
    h1 {
        font-size: 25px;
        margin: 0;
    }
    
    h2 {
        font-size: 14px;
        margin-top: 25px;
    }
    
    h3 {
        font-size: 30px;
    }
    
    .backgroundImage {
        padding-bottom: 70%;
    }
    
    .backgroundImage p {
        font-size: 9vw;
        line-height: 9vw;
    }
}

@media screen and (max-width: 680px) {
    .backgroundImage p {
        letter-spacing: 10px;
    }
    
    .grey {
        border-top: 30px solid #fff;
    }
}

@media screen and (max-width: 550px) {
    .container {
        padding: 0 30px;
    }
    
    .backgroundImage p {
        bottom: -1.3vw;
    }
    
    a {
        margin-top: -10px;
    }
}

@media screen and (max-width: 460px) {
    header {
        height: 61px;
    }
    
    .profileBox {
        padding-left: 105px;
    }
    
    .profile {
        height: 80px;
        width: 80px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        margin-top: 20px;
    }
    
    h3 {
        font-size: 25px;
    }
    
    a {
        font-size: 16px;
        padding-left: 25px;
        margin-top: 5px;
    }
    
    a:before {
        background-size: 16px;
        width: 16px;
        height: 15px;
        top: 20px;
        left: -25px;
    }
    
    .backgroundImage p {
        font-size: 9.5vw;
        line-height: 9.5vw;
        letter-spacing: 5px;
        bottom: -1.6vw;
    }
}

@media screen and (max-width: 360px) {
    h1 {
        font-size: 20px;
    }
}



