body {
    padding-top: 80px;
}

#LottieContainer {
    width: 100vw;
    height: 1100vh;
    margin-bottom: 50px;
}

#Lottie {
    position: sticky;
    top: 80px;
    /* width: 100%; */
    height: calc(100vh - 80px);
    aspect-ratio: 16/9;
}


.read-more {
    position: relative;
    width: 100%;
}

.read-more-main {
    width: 100%;
    height: auto;
}


.read-more-btn {
    position: absolute;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    bottom: 45%;
    height: 10vw;
    width: 10vw;
}

.read-more-btn:hover {
    transform: translateY(-10px) scale(1.05);
}

.read-more-btn img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.read-more-btn p {
    font-size: 1rem;
    color: rgba(103, 140, 76, 1);
    bottom: -0.5em;
    margin: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    text-wrap: nowrap;
}

.video-container {
    width: 100%;
    height: auto;
    position: relative;
}

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

.video-iframe {
    position: absolute;
    top: 51%;
    left: 64.2%;
    transform: translate(-50%, -50%);
    width: 56.5vw;
    height: 31.9vw;
    aspect-ratio: 16/9;
    border-radius: 10px;
}