section.contact-header {
    background: #8C5A5C;
    padding: 100px 0;
    position: relative;
}
.messageapp-btns{
    transform: translateY(120%);
}
section.contact-header .container{
    position: relative;
    z-index: 1;
}
section.contact-header h1 {
    color: #fff;
    margin-bottom: 30px;
}
section.contact-assist {
    padding: 100px 0;
}
section.contact-assist h2{
    color: var(--brownred);
    margin-bottom: 40px;
}

.form-details > div {
    width: 100%;
}
.form-details {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
}
form input::placeholder, form textarea::placeholder {
    color: #fff;
}

form input, form textarea {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid #c69c9d !important;
    color: #fff;
    outline: none;
    border-radius: 0 !important;
}
.form-buttons input {
    visibility: hidden !important;
}
.form-buttons {
    display: flex;
    flex-wrap: wrap;
}
form textarea {
    min-height: 150px;
    max-height: 200px;
    height: 100%;
    resize: none;
}
.hide-form-button {
    position: absolute;
    z-index: 1;
}
.form-buttons > p {
    position: relative;
    z-index: 5;
    cursor: pointer;
}
section.contact-assist .flex > div {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
a.assist-item span {
    height: 25px;
}

a.assist-item {
    display: flex;
    width: 50px;
    height: 50px;
    background: var(--brownred);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
a.assist-item svg {
    width: 100%;
    fill: white;
    height: 25px !important;
    max-width: 25px !important;
}
.assist-icon {
    display: flex;
    gap: 20px;
}
section.contact-assist .flex {
    justify-content: center;
    gap: 20px;
}
span.assist-icon img {
    width: 100%;
    max-width: 50px;
    height: 50px;
    object-fit: contain;
}
section.contact-assist a.cta1:hover:before {
    top: 50%;
}
.location-content * {
    margin-bottom: 20px;
    color: var(--brownred);
}
.location-content {
    width: 40%;
}
section.contact-location-details {
    padding: 100px 0 100px;
    position: relative;
    margin-bottom: 100px;
}
.map {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
}

@media only screen and (max-width: 991.5px){
    section.contact-header, section.contact-assist {
        padding: 50px 0;
    }
}
@media only screen and (max-width: 767.5px){
    .form-details {
        flex-wrap: wrap;
    }
    .form-buttons p, .form-buttons a, .location-content a {
        width: 100% !important;
    }
    section.contact-assist .flex {
        flex-wrap: wrap;
    }
    .map {
        position: relative;
        width: 100%;
        height: 250px;
    }
    .location-content {
        width: 100%;
        margin-top: 50px;
    }
    section.contact-location-details {
        padding: 50px 0;
        margin-bottom: 0;
    }
}