.form_section{
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 5px;
}
.form_heading{
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.form_heading .icon{
    height: 45px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow);
    border-radius: 5px;
}
.input-group{
    margin-bottom: 20px;
}
.input-group input{
    height: 55px;
    width: 100%;
    border: none;
    padding-left: 15px;
    outline: none;
    font-size: 15px;
}
.input-group textarea{
    width: 100%;
    border: none;
    padding: 15px;
    outline: none;
    font-size: 15px;
}
.c_links{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.c_links .icon{
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
}
.c_links a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.c_links p{
    width: 80%;
    margin: auto 0;
}
.social_links ul{
    padding-left: 0;
    display: flex;
}
.social_links ul li{
    text-decoration: none;
    list-style: none;
    font-size: 17px;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #e1e1e1;
    transition: .4s all;
    cursor: pointer;
}
.social_links ul li a{
    color: #000;
}
.social_links ul li:hover{
    background-color: var(--yellow);
}

.map {
    height: 450px;
    border-radius: 20px;
}
.map iframe{
    border-radius: 20px;
}

@media screen and (max-width: 1199px) {
    .form_section {
        padding: 30px 20px;
    }
    .form_heading .icon {
        height: 42px;
        width: 40%;
    }
}