.hero-image {
    display: flex;
    background: url(../Images/hero.jpg);
    height: 50vh;
    background-position: center center;
    background-size: cover;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:1218px) {
    .hero-image {
        height: 35vh;
    }
}

.hero-image-text {
    text-decoration: none;
    background: rgb(0, 0, 0, 0.5);
    border-top: 4px solid white;
    padding: 20px 20px;
    color: white;
    text-transform: uppercase;
    font-size: 35px;
    transition: 0.5s;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width:1218px) {
    .hero-image-text {
        font-size: 20px;
        padding: 10px 10px;
    }
}

@media screen and (max-width:425px) {
    .hero-image-text {
        font-size: 15px;
        padding: 5px 5px;
    }
}

.hero-image-text:hover {
    background: rgb(88, 87, 87);
}

.logo-box img {
    height: 25vh;
    margin: 20px 10px 20px 10px;
}

@media screen and (max-width:1218px) {
    .logo-box img {
        height: 15vh;
    }
}

@media screen and (max-width:425px) {
    .logo-box img {
        height: 10vh;
    }
}

.logo-box {
    display: flex;
    flex-direction: column;
    background: rgb(0, 0, 0);
    border: 4px solid white;
    max-width: 40%;
}