* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.img-container {
    width: 50%;
    /* border: 2px solid rebeccapurple; */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
}

.text-container {
    /* border: 2px solid rgb(131, 153, 51); */
    width: 50%;
    margin: auto 0;
}

.text-container p {
    text-align: justify;
}

.section {
    width: 90%;
    margin: 0 auto;
    display: flex;
    /* border: 2px solid rgb(255, 0, 0); */
    flex-direction: row-reverse;
    padding: 10px;
    gap: 30px;
    min-height: 200px;
    margin-bottom: 40px;

}

.img1 {
    grid-column: 1/span 6;
    grid-row: 1/span 4;
}

.img2 {
    grid-column: 7/span 6;
}

.img3 {
    grid-column: 7/span 6;
}

.img4 {
    grid-column: 7/span 2;
}

.img5 {
    grid-column: 9/span 2;
}

.img6 {
    grid-column: 11/span 2;
}

.img7 {
    grid-column: 7/span 6;
}





/* footer start */
.footer {
    background-color: #000000;
}

.footer-container {
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    flex-wrap: wrap;
}

input[type="text"],
input[type="button"] {
    width: 80%;
    border: none;
    outline: none;
    padding: 8px;
}

input[type="button"] {
    background-color: #FFA400;
    margin-top: 5px;
}

.box-container {
    width: 25%;
    flex-basis: 200px;
}

/* footer down */
.footer-down {
    background-color: #808080;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-down div>a {
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

.footer-down-container {
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 20px 40px;
}

.hide{
    display: none;
}
@media only screen and (max-width: 576px) {
    .section {
        flex-direction: column-reverse;
    }

    .img-container,
    .text-container {
        margin: 0 auto;
        width: 100%;
    }

    .text-container {
        text-align: center;
    }

    .text-container p {
        text-align: justify;
    }
    .footer-down-container{
        flex-direction: column;
        text-align: center;
    }
    .footer-button{
        margin-bottom: 10px;
    }
    .box-container{
        margin: 0 auto;
    }
}


@media only screen and (min-width: 576px) and (max-width: 992px) {
    .section {
        flex-direction: column-reverse;
    }

    .img-container,
    .text-container {
        margin: 0 auto;
        width: 100%;
    }

    .text-container {
        text-align: center;

    }
}