/* HERO SECTION
**********************************/

.hero-section {
    position: relative;
    width: 100%;
}


.hero-section img {
    width: 100%;
}
@media(max-width: 767.98px) {
.hero-content {
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px
}
}

@media(min-width: 768px) {
.hero-content {
    position: absolute;
    left: 50%; 
    bottom: 15px;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
}

a.hero-bttn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    background-color: #0000d7;
    font-size: 16px;
    max-width: max-content;
}

a.hero-bttn:hover {
    background-color: #0000bd;
    color: #fff;
    text-decoration: none;
}