@font-face {
    font-family: ProximaNova;
    font-weight: 400;
    font-style: normal;

    src: url('../fonts/ProximaNova-Reg.woff') format('woff'),
    url('../fonts/ProximaNova-Reg.otf') format('opentype');
}

@font-face {
    font-family: ProximaNova;
    font-weight: 500;
    font-style: normal;

    src: url('../fonts/ProximaNova-Semibold.woff') format('woff'),
    url('../fonts/ProximaNova-Semibold.ttf') format('truetype');
}

@font-face {
    font-family: ProximaNova;
    font-weight: 600;
    font-style: normal;

    src: url('../fonts/ProximaNova-Bold.woff') format('woff'),
    url('../fonts/ProximaNova-Bold.otf') format('opentype');
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

.content {
    min-height: 100%;
    font-family: 'ProximaNova', sans-serif;
    background-color: rgba(0,0,0,0.5);
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

@media screen and (max-width: 1366px) {
    .content {
        padding-top: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .content {
        padding-top: 45px;
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .content {
        padding-top: 20px;
        padding-bottom: 60px;
        text-align: left;
        height: auto;
    }
}

.wrap {
    max-width: 952px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .wrap {
        margin-top: 0;
        padding-left: 80px;
        padding-right: 80px;
        align-self: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .wrap {
        top: auto;
        transform: none;
        margin-top: 27px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

h1 {
    margin: 0;
    font-size: 60px;
    margin-bottom: 8px;
}

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

@media screen and (max-width: 1024px) { 
    h1 {
        margin-bottom: 18px;
        max-width: 480px; 
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        margin-left: 0;
        font-size: 35px;
        max-width: 310px;
    }
}

.subtitle {
    font-size: 26px;
    margin: 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 1366px) {
    .subtitle {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .subtitle {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

p {
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    p {
        font-size: 18px;
    }
}

.button {
    margin-top: 20px;
    display: inline-block;
    height: 48px;
    padding: 14px 32px;
    transition: all 0.1s ease-out;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: black;
    background-color: white;
}

@media screen and (max-width: 1366px) {
    .button {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .button {
        margin-top: 20px;
    }
}

.button:hover {
    background-color: black;
    color: white;
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 62px;
}

@media screen and (max-width: 767px) {
    .logo {
        height: 46px;
    }
}

.logo-wrap {
    width: 100%;
}