.home-promotional-banner-section {
    width: 100%;
}

.home-promotional-banner-section .inner-container {
    width: 100%;
    background-color: #EDF2F5;
    display: grid;
    grid-template-columns: 45% 55%;
    border: 1px solid #000;
    border-radius: 20px;
    overflow: hidden;
}

.home-promotional-banner-section .details-container {
    padding: var(--std-padding);
}

.home-promotional-banner-section .details-container .title-container .main-title {
    font-size: 55px;
    font-weight: 600;
    color: var(--theme-color-2);
}

.home-promotional-banner-section .image-container {
    height: 100%;
}

.home-promotional-banner-section .image-container .image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* .home-promotional-banner-section .inner-container details */

/********** Media Queries ************/

/* Large laptop */
@media screen and (max-width:1400px) {}

/* Small laptop */
@media screen and (max-width:1200px) {}

/* Tablet */
@media screen and (max-width:992px) {}

@media screen and (max-width:768px) {
    .home-promotional-banner-section .inner-container {
        grid-template-columns: 100%;
    }

    .home-promotional-banner-section .image-container {
        height: 300px;
    }

    .home-promotional-banner-section .image-container .image {
        border-radius: 0;
    }
}

/* Large mobile */
@media screen and (max-width:576px) {}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/********** Media Queries END **********/