.experience_article1 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.article1_section1_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.article1_section1_grid>div {
    background-color: #E4EBDD;
    border-radius: 10px;
}

.article1_section1_grid>div img{
    width: 100%; 
    height: 100%; 
    object-fit:cover; 
    border-radius: 10px;
}

.exp_grid_text {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foundation_image { 
    height: 600px;
}

.foundation_image img{ 
    height: 600px; object-fit: cover;
}

/****************MEDIA QUERIES FOR ALL DEVICE SIZES*****************/
/* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {}

/* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .article1_section1_grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

/* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .article1_section1_grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        grid-auto-flow: row;
    }

    .article1_section1_grid>div img{
        width: 100%; 
        height: 200px; 
        object-fit:cover; 
        border-radius: 10px;
    }

    .exp_grid_text {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article1_section1_grid>div:nth-child(3) {
        grid-row: 4
    }

    .article1_section1_grid>div:nth-child(4) {
        grid-row: 3
    }

    .article1_section1_grid>div:nth-child(7) {
        grid-row: 8
    }

    .article1_section1_grid>div:nth-child(8) {
        grid-row: 7
    }

    .article1_section1_grid>div:nth-child(11) {
        grid-row: 12
    }

    .article1_section1_grid>div:nth-child(12) {
        grid-row: 11
    }
        
    .foundation_image { 
        height: 200px; 
    }

    .foundation_image img{ 
        height: 200px;  object-fit: cover;
    }
}

/*##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px*/
@media (min-width: 320px) and (max-width: 480px) { 
    .article1_section1_grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        grid-auto-flow: row;
    }

    .article1_section1_grid>div img{
        width: 100%; 
        height: 200px; 
        object-fit:cover; 
        border-radius: 10px;
    }

    .exp_grid_text {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article1_section1_grid>div:nth-child(3) {
        grid-row: 4
    }

    .article1_section1_grid>div:nth-child(4) {
        grid-row: 3
    }

    .article1_section1_grid>div:nth-child(7) {
        grid-row: 8
    }

    .article1_section1_grid>div:nth-child(8) {
        grid-row: 7
    }

    .article1_section1_grid>div:nth-child(11) {
        grid-row: 12
    }

    .article1_section1_grid>div:nth-child(12) {
        grid-row: 11
    }

        
    .foundation_image { 
        height: 200px; 
    }

    .foundation_image img{ 
        height: 200px;  object-fit: cover;
    }
 }

/****************MEDIA QUERIES FOR ALL DEVICE SIZES*****************/