.banner-golf{
    display: flex;
    width: 100%;
    height: 600px;
    overflow-y: hidden;
    align-items: end;
    justify-content: center;
    padding-bottom: 5%;
    position: relative;
}

.banner-golf > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.golf-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 70px 0 70px 0;
    gap: 10px;
}

.golf-description > h1{
    color: #8C0352;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.golf-description > h2{
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.golf-description > p {
    width: 80%;
    text-align: justify;
    color: #A3A3A3;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 3px;
}

@media screen and (max-width:650px) {
    .banner-golf{
        padding-bottom: 7%;
    }
}

@media screen and (max-width:400px) {
    .banner-golf{
        padding-bottom: 9%;
    }
}