/**
 * Contact page, based on the Uluwatu contacts layout.
 */
.section-contacts {
    padding: 40px 0;
}

.section-contacts > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1480px;
}

.contact-page__locations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.contact-page__details {
    width: calc(100% - 950px);
    padding-right: 150px;
}

.contact-page__details > .section-title {
    margin: 0 0 30px;
    font-family: 'Reforma', Times New Roman, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    text-transform: uppercase;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item > p {
    margin: 0 0 15px;
    font-family: 'ChronicleDisp-R', Times New Roman, serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-transform: capitalize;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    color: #3D0B20;
    font-family: 'ChronicleDisp-R', Times New Roman, serif;
    font-size: 24px;
    line-height: 32px;
    transition: color .25s;
}

.contact-detail:hover {
    color: #E24285;
}

.contact-detail__icon {
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 32px;
    margin-right: 10px;
}

.contact-detail__icon svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-item--phone-email .contact-detail--email {
    margin-top: 0;
}

.contact-socials .bottom-info--list-social {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact-socials .bottom-info--item-social {
    margin-right: 12px;
    margin-left: 0;
}

.contact-socials .bottom-info--item-social:last-child {
    margin-right: 0;
}

.contact-socials .bottom-info--item-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.bottom-info--item-social a:hover {
    background-color: #E24285;
}

.contact-page__map {
    width: 100%;
    max-width: 950px;
}

.contact-page__map iframe {
    display: block;
    width: 100%;
    height: 627px;
    border: 0;
}

.contact-page__form-section {
    padding: 120px 0;
    background: #fff;
}

.contact-page__form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page__form-heading {
    margin-bottom: 40px;
    text-align: center;
}

.contact-page__form-heading h2 {
    margin: 0 0 10px;
    color: #1f1e21;
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 54px;
    text-transform: uppercase;
}

.contact-page__form-heading p {
    margin: 0;
    font-family: 'ChronicleDisp-R', Times New Roman, serif;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
}

.contact-page__form .form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

.contact-page__form .form-row:after {
    display: block;
    clear: both;
    content: '';
}

.contact-page__form .form-col {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
}

.contact-page__form .form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page__form .form-input,
.contact-page__form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 0 11px;
    margin: 0;
    color: #a5a19e;
    font-family: 'ChronicleDisp-R', Times New Roman, serif;
    font-size: 16px;
    line-height: 32px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #1f1e21;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.contact-page__form .form-input::placeholder,
.contact-page__form textarea::placeholder {
    color: #a5a19e;
    opacity: 1;
}

.contact-page__form textarea {
    height: 45px;
    resize: vertical;
}

.contact-page__form .contact-form-recaptcha {
    margin-bottom: 40px;
}

.contact-page__form .contact-form-submit {
    margin-bottom: 0;
    text-align: center;
}

.contact-page__form .form-btn {
    display: block;
    width: 100%;
    min-width: 100%;
    min-height: 60px;
    padding: 15px 30px;
    margin: 0;
    color: #fff;
    background: #1f1e21;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-page__form .form-btn:hover {
    color: #fff;
    background: #E24285;
}

@media screen and (max-width: 1280px) {
    .contact-page__details {
        width: calc(100% - 560px);
        padding-right: 30px;
    }

    .contact-page__map {
        max-width: 560px;
    }
}

@media screen and (max-width: 991px) {
    .section-contacts > .container {
        flex-wrap: wrap;
    }

    .contact-page__locations {
        flex-wrap: wrap;
    }

    .contact-page__details {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }

    .contact-page__map {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .contact-item {
        margin-bottom: 24px;
    }

    .contact-item > p {
        margin-bottom: 10px;
        font-size: 22px;
        line-height: 26px;
    }

    .contact-detail {
        font-size: 13px;
        line-height: 26px;
    }

    .contact-detail__icon {
        flex-basis: 24px;
        width: 24px;
        height: 26px;
        margin-right: 10px;
    }

    .contact-detail__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-socials .bottom-info--item-social a {
        width: 38px;
        height: 38px;
    }

    .contact-page__map iframe {
        height: 236px;
    }

    .contact-page__form-section {
        padding: 40px 0;
    }

    .contact-page__form {
        padding: 0 15px;
    }

    .contact-page__form-heading {
        margin-bottom: 24px;
    }

    .contact-page__form-heading h2 {
        margin-bottom: 10px;
        font-size: 35px;
        line-height: 42px;
    }

    .contact-page__form-heading p {
        font-size: 12px;
        line-height: 22px;
    }

    .contact-page__form .form-col {
        margin-bottom: 24px;
    }

    .contact-page__form .form-input,
    .contact-page__form textarea {
        padding-bottom: 10px;
        font-size: 12px;
        line-height: 24px;
    }

    .contact-page__form textarea {
        height: 36px;
    }

    .contact-page__form .contact-form-recaptcha {
        margin-bottom: 24px;
    }

    .contact-page__form .form-btn {
        min-height: 42px;
        padding: 10px 20px;
        font-size: 12px;
    }
}
