body.home-page {
    margin: 0;
    font-family: Helvetica, sans-serif !important;
    background: var(--main-bg-color) !important;
}
  
/*
Parallax
*/
header {
    min-height: 40em;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

header::before {
    content: '';
    background: linear-gradient(
      0deg,
      var(--main-bg-color),
      rgba(0, 0, 0, 0)
    );
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}
  
#MaskingImage {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.images {
    height: 100vh;
    overflow: hidden;
}
  
.images img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 130%;
    transition: 0.1s;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.img1 { z-index: 7; }
.img2 { z-index: 6; }
.img3 { z-index: 5; }
.img4 { z-index: 4; }
.img5 { z-index: 3; }
.img6 { z-index: 2; }
.img7 { z-index: 1; }
  
/*
Main body
*/


.title {
    font-size: 6em;
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 5;
    user-select: none;
    pointer-events: none;
    width: 400px;
}

/* .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: white;
    text-align: center;
} */

.description{
    font: bold;
    color: #fff;
}

.carousel-item img {
    height: 500px !important;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .title {
        width: 300px;
    }
}