.loader-element {
    width: 48px;
    height: 48px;
    border: 5px solid #fff;
    border-bottom-color: #ff3d00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.banner-image {
    width: 100%;
    height: 70vh !important;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner-text h1 {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* banner responsive style */
@media (max-width: 768px) {
    .banner-image {
        height: 70vh !important;
    }

    .banner-text {
        height: 70%;
        align-items: end;
    }

    .banner-text h1 {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

@media (min-width: 1201px) {
    .banner-image {
        height: 100vh !important;
    }

    .banner-text {
        height: 70%;
        align-items: end;
    }
}
