.contact {
    background: rgb(2, 26, 71);
    padding: 60px 140px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact .detail {
    width: 50%;
    margin-bottom: 30px;
}

.contact .detail .heading-div {
    display: flex;
    align-items: center;
    /* border:1px solid white; */
    gap: 10px
}

.contact .detail .heading-div p {
    font-size: 21px;
    color: white;
    margin-top: 10px;
}


.contact .detail .heading-div img {
    width: 35px;
}

.detail .point {
    font-size: 18px;
    margin: -6px 52px 0;
}

.map-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    gap: 50px;
}

.map-details {
    width: 45%;
}

.map-details-heading {
    font-size: 21px;
    color: white;
}

.map-details .point {
    font-size: 18px;
}

.map-container {
    flex: 1;
    display: flex;
    min-width: 300px;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1050px) {

    .contact {
        background: rgb(2, 26, 71);
        padding: 20px;
    }
    .contact .detail {
        width: 100%;
    }
    .details {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .contact .detail .heading-div p {
        font-size: 17px;
        margin-top: 5px;
    }
    
    
    .contact .detail .heading-div img {
        width: 24px;
    }
    
    .detail .point {
        font-size: 16px;
        margin: -6px 38px 0;
    }
    .map-div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        width: 100%;
        gap: 10px;
    }

    .map-details {
        width: 100%;
    }
    .map-details-heading {
        font-size: 17px;
    }
    
    .map-details .point {
        font-size: 16px;
    }

    .map-container {
        flex: 1;
        display: flex;
        min-width: 100%;
        height: 270px;
        border-radius: 8px;
        overflow: hidden;
    }
}