.contact-us {
    flex-direction: column;
}
.contact-us .container {
    justify-content: center;
}
.contact-us .container .map {
    width: 60%;
    margin: 0 0 0 50px;
    z-index: 999;
}
.contact-us .container .map iframe {
    filter: invert(1) hue-rotate(180deg) brightness(0.8);
    width: 100%;
    height: 316px;
    border: none;
}
.contact-form {
    position: relative;
    z-index: 9;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 15px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.151);
    background-color: rgba(209, 174, 255, 0.041);
    backdrop-filter: blur(9px);
}
.contact-form textarea  {
    height: 140px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--transparent-white);
    font-weight: 300;
    letter-spacing: 1px;
}
.contact-form .main-button {
    background: linear-gradient(to right,  #00eeffce, transparent);
    width: 100%;
    font-family: "Winky Sans", sans-serif;

}
@media (max-width: 950px) {
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        color: var(--text-color);
        font-size: 11px;
    }
    .contact-form .main-button {
        font-size: 12px;
    }
}
@media (max-width: 700px) {
    .contact-us .container {
        flex-direction: column;
        width: 90%;
    }
    .title {
        text-align: center;
    }
    .special-head {
        top: 0px;
        font-size: 55px;
        opacity: .8;
    }
    .contact-form {
        width: 100%;
        margin-bottom: 40px;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .contact-us .container .map-and-form {
        flex-direction: column;
    }
    .contact-us .container .map {
        width: 100%;
        margin: 0;
        margin-top: 50px;
        position: relative;
    }
    .contact-form form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        color: var(--text-color);
        font-size: 13px;
        backdrop-filter: blur(0px);
    }
    .contact-form button {
        width: 200px;
        margin: 0;
        font-size: 13px;
        letter-spacing: 1px;
        cursor: none;
    }
}
