.home-video-row .wrap.clearfix.box_size_container,
.little-ivy-image-right-row .wrap.clearfix.box_size_container
{
    display: flex;
    flex-direction: row;
}
 .littleivy-video-wrap{
     position: relative;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     height: 20vw;
     width: 35vw;
 }

.littleivy-video-wrap iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    user-select: none;
    pointer-events: none ;
}

.littleivy-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f3f3;
}

.littleivy-image-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text-left-container .md-text-content p.littleivy-intro-text {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    color: black;
    margin: 0;
}

.littleivy-full-screen-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f3f3;
}

.littleivy-full-screen-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none !important;
}
.home-full-screen-video.sectionOverlay .box_size_container{
    width: 100% !important;
    padding: 0;
    margin: 0;
}

.littleivy-books-section {
    width: 100%;
    background: #fff;
}

.littleivy-books-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: auto auto;
    column-gap: 70px;
    row-gap: 70px;

    align-items: center;
}

.littleivy-books-title h2 {
}

.littleivy-books-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.littleivy-books-image-top {
    width: 100%;
    justify-self: end;
}

.littleivy-books-image-bottom {
    width: 100%;
    justify-self: start;
}

.littleivy-books-text {
    width: 70%;
    justify-self: center;
}

.littleivy-books-text p {
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .home-video-row .wrap.clearfix.box_size_container
    {
        flex-direction: column;
    }
    .little-ivy-image-right-row .wrap.clearfix.box_size_container{
        flex-direction: column-reverse;
    }

    .littleivy-video-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .littleivy-video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .littleivy-full-screen-video-wrap {
        position: relative;
        width: 100vw;
        height: 100svh;
        aspect-ratio: auto;
        overflow: hidden;
        background: #f3f3f3;
        left: 50%;
        transform: translateX(-50%);
    }

    .littleivy-full-screen-video-wrap iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.78svh;
        height: 100svh;
        min-width: 100vw;
        min-height: 100svh;
        transform: translate(-50%, -50%);
        border: 0;
        display: block;
        pointer-events: none !important;
    }

    .intro-text-left-container .md-text-container.md-align-left {
        justify-content: flex-start;
    }
    .intro-text-left-container div.md-text{
        margin: 0;
    }
    .intro-text-left-container div.md-text-content p{
        text-align: left !important;
    }
    .intro-text-left-container .shortcode-btn{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .littleivy-books-section {
        padding: 0;
    }

    .littleivy-books-grid {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .littleivy-books-title h2 {
        font-size: 40px;
        line-height: normal;
        text-align: left;
    }

    .littleivy-books-image-top,
    .littleivy-books-image-bottom,
    .littleivy-books-text {
        width: 100%;
        justify-self: stretch;
    }

    .littleivy-books-text p {
        text-align: left;
    }
}