.img-fluid {
    width: 100%;
    height: auto;
}

.image-container {
    position: relative;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
}

.image-container h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white !important;

    text-transform: uppercase;
}


.hero-section {
    margin-top: -100px;
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
    text-align: left;
}

.hero-section .home-content {
    z-index: 2;
    margin-left: 5%;
}

.hero-section .home-content .date {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2000px;
}

.hero-section .home-content .title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/****************************
        NEXT EVENTS
*****************************/
.home-content .main-events {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.home-content .up-comping-events .btn {
    margin-top: 50px;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-down svg {
    width: 80px;
    height: 80px;
    fill: white;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-down span {
    animation: bounce 2s infinite;
    color: white;
    display: inline-block;
}


/***************************
        OUR SERVICES
****************************/
.home-content .our-services .services {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}


/***************************
          GALLERY
****************************/
.home-content .gallery .images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 65px;
}

.home-content .rent .rent-image {
    display: flex;
}

/***************************
        CONTACT
****************************/

.home-content .contact .contact-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 50px;
}

.home-content .contact .contact-content .contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 30%;
}

.home-content .contact .contact-content .contact-form input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 0;
}

.home-content .contact .contact-content .contact-form button {
    width: 100%;
}

.home-content .contact .contact-content .contact-form .form {
    margin-top: 20px;
    width: 100%;
}

.home-content .contact .contact-content .contact-form .form .checkbox {
    display: flex;
    gap: 10px;
}

.home-content .contact .contact-content .contact-form .form .checkbox input {
    width: 20px;
    height: 20px;
}

.home-content .contact .contact-content .contact-form .form .checkbox label {
    text-align: left;
}

.home-content .contact .contact-map {
    flex-basis: 70%;
}

.home-content .contact .contact-map iframe {
    width: 100%;
    height: 100%;
}

.home-content .contact .contact-info {
    display: flex;
    flex-direction: column;
}

.home-content .contact .contact-info .address {
    text-decoration: underline white;
    color: white;
    margin-bottom: 30px;
}


/***************************
        SCROLL-BUTTON
****************************/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top:hover {
    background-color: #555;
}
