.main-hero-cont {
    display: grid;
    gap: 4rem;
    grid-template-columns: 50% 50%;
    grid-template-rows: 35rem;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    overflow: hidden;
    padding: 2rem 6rem;
    color: black;
    background-color: white;
}
.main-hero-cont .left-cont,
.main-hero-cont .right-cont {
    width: 28rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.main-hero-cont .left-cont {
    justify-self: right;
    overflow: hidden;
}
.main-hero-cont .right-cont {
    justify-self: left;
}
#slide_1,
#slide_2 {
    width: 28rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 600ms ease-in-out;
}
#slide_2 .main-para > :nth-child(2) {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
}
#slide_2 .main-para > :nth-child(3) {
    line-height: 1.75rem;
}
#slide_2 > p {
    color: var(--distro-light-green-2);
    font-weight: 600;
}
.slide_left {
    left: -30rem !important;
}
.main-hero-cont .left-cont #slide_1 > p {
    font-weight: 600;
    width: 20rem;
}
.main-para {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 2;
}
.main-para h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
#lm-btn {
    padding-inline: 1rem;
    height: 2.5rem;
    border: none;
    background-color: var(--distro-light-green-2);
    font-weight: 500;
    margin-block: 0.5rem;
    width: 10rem;
}
#store_mock_up_img {
    height: 28rem;
}
#store_mock_up_img_cont {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 30rem;
    border-radius: 1rem;
    overflow: hidden;
    height: 18em;
    margin-bottom: 2rem;
}
.main-hero-cont #dg-logo {
    width: 8rem;
}
@media screen and (max-width: 860px) and (min-width: 500px) {
    .main-hero-cont {
        padding: 1rem;
        gap: 2rem;
    }
    .main-hero-cont .left-cont {
        width: 20rem;
    }
    .main-hero-cont .right-cont {
        width: 20rem;
    }
    #store_mock_up_img {
        height: 20rem;
    }
    #store_mock_up_img_cont {
        width: 90%;
        height: 12rem;
        border-radius: 1rem;
    }
    .main-hero-cont .images-cont {
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 500px) {
    .main-hero-cont {
        max-width: 100vw;
        grid-template-columns: 1fr;
        grid-template-rows: min-content min-content;
        padding: 0;
        height: fit-content;
        gap: 1rem;
    }
    .main-hero-cont .left-cont,
    .main-hero-cont .right-cont {
        width: 100vw;
    }
    .main-hero-cont .left-cont {
        height: fit-content;
        padding: 2rem 1rem;
        justify-self: normal;
    }
    .main-hero-cont .right-cont {
        position: relative;
        height: 18rem;
        overflow: hidden;
    }
    #store_mock_up_img_cont {
        width: 90vw;
    }
    #slide_1,
    #slide_2 {
        width: 100%;
        height: fit-content;
    }
    #slide_1 > p {
        font-size: 1.25rem;
        width: 16rem !important;
    }
    .main-para h1 {
        width: 18rem;
        font-size: 2.5rem;
        height: fit-content;
    }
    #lm-btn {
        width: 14rem;
        margin-top: 1rem;
    }
    #store_mock_up_img_cont {
        width: 100vw;
        border-radius: 0;
        margin: 0;
    }
    #images-cont {
        width: 100vw;
    }
    #images-cont #dg-logo {
        --img-width: 10rem;
        width: var(--img-width);
        position: absolute;
        bottom: 1rem;
        left: calc((100vw / 2) - (var(--img-width) / 2));
        -webkit-filter: drop-shadow(2px 2px 3px #222);
        filter: drop-shadow(2px 2px 3px #0f0e0e);
    }
}
