.search-form-wrapper {
    display: none;
}

.search-form-wrapper.active {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
    display: grid;
}

.search-form-wrapper.active > * {
    grid-area: 1/1/-1/-1;
}

.search-form-wrapper.active .opacity {
    background-color: #000;
    opacity: .5;
}

.search-form-wrapper.active .close-button {
    z-index: 2;
    align-self: flex-start;
    justify-self: flex-end;
    margin: 2rem 2rem 0 0;
    color: #fff;
    font-size: 4rem;
}

.search-form-wrapper.active .search-form {
    align-self: center;
    justify-self: center;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 50rem;
}

.search-form-wrapper.active .search-form input {
    width: 100%;
    border: none;
    background: unset;
    border-bottom: 2px solid #fff;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    padding-right: 2rem;
}

.search-form-wrapper.active .search-form .submit-button {
    display: table;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    padding: 1rem;
    border-radius: 24px;
}

.site-footer {
    height: 61.6rem;
    /* padding: 12rem 0 32.2rem; */

    display: grid;
}

.site-footer > * {
    grid-area: 1/1/-1/-1;
}

.site-footer .background {
    display: grid;
    height: 100%;
}

.site-footer .background > * {
    grid-area: 1/1/-1/-1;
}

.site-footer .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer .background .opacity {
    background-color: #BC887E;
    opacity: 0.87;
}

.site-footer .footer-container {
    height: 100%;
    width: 100%;
    max-width: 131.2rem;
    margin: 0 auto;
    padding-top: 12rem;
    /* padding: 12rem 0 32.2rem; */
    z-index: 2;
}

.site-footer .footer-container .logo-wrapper {
    display: block;
    width: 10.6rem;
    height: 5.4rem;
}

.site-footer .footer-container .logo-wrapper svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer .footer-container .content-wrapper {
    display: flex;
    margin-top: 3.5rem;
}

.site-footer .footer-container .column.text {
    max-width: 34.9rem;
    width: 100%;
    margin-right: 2.5rem;
}

.site-footer .footer-container .column .text-wrapper {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
}

.site-footer .footer-container .column .text-wrapper p {
    margin: 0;
}

.site-footer .footer-container .content-wrapper .column:nth-child(2) {
    /* margin-right: 14.1rem; */
    margin-right: 10rem;
}

.site-footer .footer-container .content-wrapper .footer-menu ul li a {
    color: #89532F;
    font-size: 1.6rem;
    font-weight: 300;
}

.site-footer .footer-container .content-wrapper .footer-menu ul li:not(:first-child) {
    margin-top: 2.5rem;
}

.site-footer .footer-container .content-wrapper .column.contact-us {
    margin-left: 6.4rem;
    width: 100%;
    max-width: 42.5rem;
}

.site-footer .footer-container .content-wrapper .column.contact-us .title-wrapper {
    color: #89532F;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper p {
    margin: 0;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper {
    display: grid;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper > * {
    grid-area: 1/1/-1/-1;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper .button-wrapper {
    align-self: flex-end;
    justify-self: flex-end;
    display: flex;
    z-index: 2;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper .button-wrapper p {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper input {
    width: 100%;
    border: none;
    background-color: #F1DBD9;
    font-size: 1.6rem;
    color: #BC887E;
    font-weight: 300;
    padding: .7rem 0 .7rem 1.2rem;
    border-radius: 38px;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper .button-wrapper input {
    background-color: #E3B9B4;
    color: #282828;
    padding: .7rem 2.1rem;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper .button-wrapper input:hover {
    cursor: pointer;
}

.site-footer .footer-container .content-wrapper .column.contact-us .wpcf7 .line-wrapper input::placeholder {
    color: #BC887E;
}

@media (max-width: 1350px) {
    .site-footer .footer-container {
        padding: 12rem 1.5rem 0;
    }
}

@media (max-width: 800px) {
    .site-footer .footer-container .content-wrapper {
        flex-direction: column;
    }

    .site-footer .footer-container .column.text {
        max-width: unset;
    }

    .site-footer .footer-container .content-wrapper .column:not(:last-child) {
        margin-top: 3rem;
    }

    .site-footer .footer-container .content-wrapper .column:nth-child(2) {
        margin-right: 0;
    }

    .site-footer .footer-container .content-wrapper .column.contact-us {
        margin-left: 0;
        max-width: unset;
        margin-top: 3rem;
    }
}