.contact-us {
    flex-direction: column;
}
.contact-us .container {
    flex-direction: column;
}
.contact-us .container .content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.contact-us .container .map {
    width: 100%;
}
.contact-us .container .map iframe {
    filter: invert(1) hue-rotate(180deg) brightness(0.8);
    width: 100%;
    height: 450px;
    border: none;
}
.contact-form {
    width: 400px;
    height: 600px;
    background-color: var(--secondary-color);
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.432);
    position: absolute;
    right: 100px;
    z-index: 9;
}
.contact-form h1 {
    padding: 45px 30px 15px 30px;
    color: white;
    font-family: "Kurale", serif;
    font-weight: 100;
    font-size: 18px;
}
.contact-form h1 span{
    color:  var(--primary-color);
;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 30px;
    font-size: 13px;
    letter-spacing: 0;
    outline: none;
    border: none;
    background-color: var(--secondary-color);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.171);
    font-family: "Kurale", serif;
    transition: .8s;
}
.contact-form textarea  {
    height: 200px;
    border: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--transparent-white);
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-form .button i {
    color:  var(--primary-color);
;
    margin-left: 7px;
    font-size: 15px;
}
.contact-form .button {
    position: relative;
    padding: 15px 25px;
    overflow: hidden;
    background-color: white;
}
.contact-form .button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:  var(--primary-color);
;
    transform: translateX(-100%);
    transition: .5s;
}
.contact-form .button:hover::before {
    transform: translateX(0%);
}
.contact-form .button span,
.contact-form .button i {
    z-index: 9999;
    position: relative;
    transition: .3s;
}
.contact-form .button span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 100;
}
.contact-form .button:hover span, 
.contact-form .button:hover i {
    color: white;
}
.contact-form .button a {
    padding: 0;
    z-index: 9999;
    background-color: transparent;
    position: relative;
    transition: .5s;
}
.highlight {
    outline: 2px solid rgb(255, 255, 255);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.685);
    transition: outline 0.3s, box-shadow 0.3s;
}  

@media (max-width: 1200px) { 
    .contact-us .container {
        width: 900px;
    }
}
@media (max-width: 1000px) { 
    .contact-us .container {
        width: 800px;
    }
}
@media (max-width: 900px) {
    .contact-us .container {
        flex-direction: column;
        width: 90%;
        margin: auto;
        position: relative;
}
    .special-head {
        top: 0px;
        font-size: 55px;
        opacity: .8;
    }
    .contact-form {
        width: 100%;
        margin-bottom: 40px;
        align-items: center;
        display: flex;
        flex-direction: column;
        position: relative;
        left: 0 !important;
    }
    .contact-us .container .map-and-form {
        flex-direction: column;
    }
    .contact-us .container .map {
        width: 100%;
        margin: 0 auto;
        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;
    }
    .contact-form {
        height: 500px;
        left: 0%;
}
    .contact-form h1 {
        width: 100%;
        text-align: start;
        padding: 30px 20px;
    }
    .contact-form input, .contact-form textarea {
        padding: 20px;
        color: white;
        font-size: 17px;
    }
    .contact-form .main-button {
        width: 100%;
    }
}
