.body{
    background-color: #eee;
}

.grid-container{
    width: 80%;
    margin-left: 10%;
}

.container{
    width: 100%;
    margin: 50px auto;
    padding: 10px;
}

.container .heading{
    text-align: center;
    font-size: 2rem;
    padding: 10px;
}

.container .flex{
    width: 100%;
    display: flex;
    padding: 50px;
    gap: 50px;
}

.flex p{
    font-size: 1.2rem;
    padding-top: 15px;
    line-height: 30px;
    font-weight: 600;
    color: #525252;
}

.container .flex1{
    display: flex;
    flex-direction: row-reverse;
    padding: 50px;
    gap: 50px;
}

.flex1 p{
    font-size: 1.2rem;
    padding-top: 15px;
    line-height: 30px;
    font-weight: 600;
    color: #525252;
}

.address{
    display: flex;
    align-items: center;
    gap: 10px;
}

.address .icon{
    background-color: #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 12px;
    font-size: 1.5rem;
}


@media (max-width: 1024px) {
    
    .grid-container{
        width: 100%;
        margin-left: 0%;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .container{
        width: 90%;
    }
    .grid-container{
        z-index: -1000;
    }
    .container .flex {
        flex-direction: column-reverse;
    }
    .container .flex1 {
        flex-direction: column-reverse;
    }
    .image{
        width: 100%;
    }
}

@media (min-width: 300px) and (max-width: 769px) {
    .header{
        height: 80vh;
    }
    .grid-container{
        margin-top: -450px;
    }
    .container .heading{
        font-size: 1.5rem;
    }
    .container .flex{
        flex-direction: column-reverse;
        padding: 20px;
    }
    .container .flex1{
        flex-direction: column-reverse;
        padding: 20px;
    }
    .image img{
        width: 100%;
    }
    .address h1{
        font-size: 1.5rem;
    }
    .flex p{
        font-size: 1rem;
        line-height: 25px;
    }
    .flex1 p{
        font-size: 1rem;
        line-height: 25px;
    }
}
