html body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.main-content{
    margin-top: 4rem;
    padding: 30px;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-color: rgb(238, 236, 231); */
}
.background-image {
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 300px; /* You must set a specified height */
    background-position-y: top;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
}
.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.411) 40%,rgba(255, 255, 255, 0.39) 60%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}
.intro-image{
    width: 25%;
    height: auto;
}
.logo-container{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 50px;
}
.row-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 50px;
}
.social-links a{
    font-size: 120px;
    color: rgb(224, 127, 0);
}
.business-card-content{
    margin-top: 4rem;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.business-card{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.business-card-link{
    font-size: 120px !important;
    color: rgb(224, 127, 0) !important;
    transition: color ease-in-out 0.1s;
}
.business-card-link:hover{
    color: rgb(85, 85, 85) !important;
}
    
.introduction-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.maps{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid darkslategray;
    border-radius: 18px;
    background-color: #f5f5f5;
}

/* EXTRAS */

.title-jazz{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
    padding: 25px;
    text-align: center;
    width: 100%;
    border-left: solid 2px rgb(224, 127, 0)
}
.nice-box{
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    text-align: center;
    min-height: 500px;
    flex-grow: 1;
}
.btn{
    transition: box-shadow ease-in-out 0.25s;
}
.btn:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
.card{
    min-height: 350px !important;
}