html {

}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

a:hover {
    text-decoration: none;
}

.left {
    position: relative;
    height: 100vh;
}

.left .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}

.left .logo img {
    width: 70%;
    height: 70%;
}

.right {
    background-color: #009fe3;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.right .content {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70%;
    bottom: 17%;
}

.right .content h1 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 8vh;
    margin: 0 0 30px 0;
}

.right .content a {
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 3vh;
    position: relative;
    display: inline-block;
}

.right .content a:after {
    content: "";
    bottom: -10px;
    height: 2px;
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s;
}

.right .content a:hover:after {
    width: 100%;
}

@media (max-width: 768px) and (min-width: 767px) {
    .right .content {
        bottom: 30%;
    }
    .right .content h1 {
        font-size: 5vh;
    }
    .right .content a {
        font-size: 2vh;
    }
}

@media (max-width: 767px) {
    .left, .right {
        position: relative;
        height: 50vh;
    }
    .right .content {
        text-align: center;
    }
}


















