.banner {
    height: 100vh;
    background: url("../assets/drfImg/20190527_122826.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .banner {
        background: url("../assets/drfImg/IMG_3411.jpeg") no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.banner::before {
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 1s ease;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner .text {
    text-align: center;
    padding-bottom: 120px;
}

.banner .text p {
    font-size: x-large;
}

.go-to-helper {
    cursor: pointer!important;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 50px;
}

.banner .go-to {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: xx-large;
}

.go-to-mobile {
    display: none;
}

@media (min-width: 1201px) {
    .banner .go-to {
        display: block;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        font-size: xx-large;
    }
}

@media (max-width: 1200px) {
    .go-to{
        display: none;
    }
    .go-to-mobile {
        display: block;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        font-size: xx-large;
    }
    .go-to-helper {
        padding-top: 20px;
        text-align: center;
        padding-bottom: 130px;
    }
}

.banner .go-to:before {
    font-family: FontAwesome, sans-serif;
    content: "\f078";
    opacity: 0.33;
    cursor: pointer;
}

.banner h1 {
    line-height: 80px;
    font-weight: 300;
    margin-bottom: 10px;
}

.mobile-title {
    line-height: 80px;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 48px;
    font-family: 'Oswald', sans-serif;
}

.mobile-logo {
    padding-top: 15px;
}

.mobile-media {
    display: none;
}

@media (max-width: 1200px) {
    .mobile-media {
        display: block;
    }
}