.main_content{
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 15vh;
    width: 70vw;
}
.banner_text{
    margin-bottom: 7vh;
}
.main_div{
    display: grid; 
    justify-content: center;
    width: 100vw;
}

.banner_text h5{
    color: #fafafa;
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
}

.placeholder_img{
    box-sizing: content-box;
    background-color: aliceblue;
    height: 80vh;
    width: 100%;
    object-fit: fill;
    width: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 1s ease-out forwards;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.trending_text{
    margin-top: 4vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
}

.trending_text div{
    display: flex;
    flex-direction: column;
}

.trending_text div h5{
    color: #fafafa;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-align: left;
}
.trending_text div p{
    color: #C9C9C9;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.second_banner_text{
    width: 80vw;
}
.second_banner_text h5{
    color: #fafafa;
    margin-top: 10vh;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
}

.second_banner_text p {
    margin-top: 3vh;
    color: #c9c9c9;
    text-align: center;
}

.gradient_v2{
    width: 100vw;
    height: 120vh;
    position: absolute;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(89, 83, 124, .2));
}

.benefits{
    width: 100%;
}

.benefits .row .col ul{
    list-style-type: none;
}

.benefits .row{
    margin-top: 10vh;
}

.benefits .row .col ul li{
    font-family: 'Lato', sans-serif;
    color: #fafafa;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5vh;
}

.benefits_text{
    margin-top: 10vh;
    box-sizing: content-box;
    background-color: #2e2b4077;
    width: 100%;
    padding:5vh 3vh 5vh 3vh;
    height: 30vh;
}
.benefits_info h3{
    font-family: 'Lato', sans-serif;
    color: #fafafa;
    font-weight: 700;
}
.benefits_info p{
    font-family: 'Lato', sans-serif;
    color: #C9C9C9;
}

.placeholder_img2{
    height: 25vw;
    object-fit: fill;
    width: auto;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.carousel{
    margin-top: 5vh;
}

.carousel-item {
    text-align: center;
}

.carousel-item h3{
    color: #fafafa;
    font-family: 'Lato', sans-serif;
    font-size: 4rem;
}

.carousel-item h5{
    color: #fafafa;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.carousel-item p {
    color: #c9c9c9;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .main_content {
        width: 90vw;
        margin-top: 150px;
    }
    .banner_text h5 {
        font-size: 2rem;
    }
    .second_banner_text h5 {
        margin-top: 70px;
    }
    .placeholder_img {
        max-width: 600px;
        width: 100%;
        height: auto;
    }
    .placeholder_img2{
        height: auto;
        width: 100%;
    }
    .trending_text {
        width: 100%;
        max-width: 600px;
    }
    .trending_text div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefits .row {
        margin-top: 50px;
        flex-direction: column-reverse;
        gap: 20px
    }
    .gradient_v2 {
        height: 650px;
    }
    .benefits_text {
        margin-top: 50px;
        height: auto;
    }
    .benefits_text .row {
        flex-direction: column;
    }
    .benefits .row .col ul {
        padding-inline-start: 0;
        text-align: center;
    }
    .benefits_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}