@font-face {
    font-family: 'GothamMedium';
    src: url('../fonts/GothamMedium/GothamMedium.eot');
    src: url('../fonts/GothamMedium/GothamMedium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamMedium/GothamMedium.woff') format('woff'),
        url('../fonts/GothamMedium/GothamMedium.ttf')  format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Bold.eot');
    src: url('../fonts/Gotham/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham/Gotham-Bold.ttf')  format('truetype'),
        url('../fonts/Gotham/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    overflow: hidden;
}

.content{
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-position: 50% 20%;
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.top{
    display: block;
    height: 40%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(39, 46, 48, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo{
    position: relative;
    width: 50vh;
    height: auto;
    max-width: calc(100% - 30px);
}

.title{
    text-transform: none ;
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
    font-size: 3.2vh;
    line-height: 3.8vh;
    text-align: center;
    color: #9ec83f;
    margin-top: 40px;
    font-family: 'GothamMedium';
}

.subtitle{
    text-transform: none;
    font-family: 'Gotham';
    font-weight: normal ;
    font-size: 2.9vh;
    line-height: 3.3vh;
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
}

.bottom{
    display: block;
    height: 30%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(39, 46, 48, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.desc, .desc a{
    font-family: "GothamMedium";
    font-weight: normal;
    font-size: 2.9vh;
    line-height: 3.8vh;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.desc span, .desc a{
    color: #ff902c;
}

.rs{
    display: flex;
    margin-top: 30px;
}

.rs a:first-child{
    margin-right: 40px;
}

.rs img{
    width: 8vh;
    height: auto;
}

br.none{
    display: none;
}

@media screen and (max-width: 720px) {

    .logo{
        width: 34vh;
    }
    
    .title{
        font-size: 2.5vh;
        line-height: 3vh;
        margin-top: 30px;
    }

    .subtitle{
        font-size: 2vh;
        line-height: 2.5vh;
        margin-top: 20px;
    }

    .top{
        height: 35%;
    }

    .desc, .desc a{
        font-size: 2vh;
        line-height: 2.8vh;
    }

    .rs{
        margin-top: 10px;
    }

    .rs img{
        width: 6vh;
        height: auto;
    }

    .bottom{
        justify-content: flex-start;
        padding: 15px 0;
        height: 33%;
    }

    br.none{
        display: block;
    }

}