.contact_section {
    background: linear-gradient(var(--teritary) 65%, #fff 35%);
    padding: 50px;
}

.contact_section h1, .contact_section p {
    color: var(--teritary-text);
}

.form_section {
    margin-top: 40px;
    display: block;
    width: 100%;
    box-shadow: 0 0 7px 5px #00000036;
}

.form_flex {
    display: flex;
    background-color: var(--teritary-text);
    width: 100%;

}



.address_section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    padding: 0;
}

.address_section ul li {
    display: flex;
}

.address_section ul span {
    margin-right: 10px;
}

.address_section svg {
    stroke: #fff;
}

.embed_map iframe {
    width: 100%;
    height: 250px;
}

.contact_info_section {
    background-color: var(--teritary);
    padding: 10px 20px;
    width: 400px;
}

.contact_info_section .heading {
    color: #fff;
}

.contact_info_section li {
    color: #fff;
    margin-bottom: 10px;
}

.address_section {
    margin-top: 25px;
}

.address_section svg {
    stroke: var(--teritary);
    stroke-width: 0.5;
}

.social_icon {
    display: flex;
    column-gap: 10px;
}

.social_icon svg {
    color: #fff;
}

.embed_map {
    margin-top: 5px;
}

@media(max-width: 768px) {
    .form_flex {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact_info_section {
        width: 100%;
        padding-bottom: 25px;
    }
}

@media(max-width:991px) {
    .contact_section {
        flex-direction: column-reverse;
        margin-top: 0px;
        padding: 30px 10px;
        background: linear-gradient(var(--teritary) 50%, #fff 50%);
    }

    .embed_map iframe {
        width: 100%;
    }

}

.address_section a, .address_section a:hover {
    color: #fff !important;
}