.contact-content {
    margin-top: 40px;
}

.contact-content h2 {
    font-family: 'big_caslonmedium';
}

.contact-content .heading p {
    margin-top: 20px;
}

.common-form {
    padding: 0 1.875vw 0;
    box-sizing: border-box;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
}

.common-form h3 {
    color: #000;
    font-family: 'big_caslonmedium';
    font-size: 1.458vw;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 .208vw;
}

.common-form h4 {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25vw;
    margin: 0 0 .625vw;
}

.common-form h4 strong {
    font-weight: 700;
}

.common-form h5 {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25vw;
    margin: 0 0 4px;
}

.common-form p {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25vw;
    margin: 0 0 1.25vw;
}

.common-form a {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25vw;
    margin: 0 0 1.25vw;
    text-decoration: none;
}

.common-form .field-area {
    display: flex;
    flex-wrap: wrap;
}

.common-form .field-block {
    width: 100%;
    margin: 0 0 1.25vw;
}

.common-form .field-block input[type="text"],
.common-form .field-block input[type="email"],
.common-form .field-block input[type="number"],
.common-form .field-block input[type="date"],
.common-form textarea {
    border: 1px solid #575757;
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25vw;
    padding: .313vw .625vw;
    box-sizing: border-box;
    width: 100%;
    background: none;
    outline: none;
    resize: none;
}

.common-form .field-block-slider {
    display: none;
}

.common-form .field-block-slider.active {
    display: block;
}

.common-form label.radio {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.563vw;
    margin: .313vw 1.146vw 0 0;
    padding-left: 1.458vw;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.common-form label.radio::before {
    content: '';
    width: 1.042vw;
    height: 1.042vw;
    border-radius: 1.042vw;
    background: url('../images/radio-icn.svg') no-repeat left top;
    background-size: 1.042vw !important;
    position: absolute;
    left: 0;
    top: .26vw;
}

.common-form label.radio.checked::before {
    background: url('../images/radio-un-icn.svg') no-repeat left top;
}

.common-form label.radio input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
}

.common-form .field-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.common-form label.checkbox {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: .833vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.563vw;
    margin: .313vw 0 .521vw;
    padding-left: 1.458vw;
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;

    box-sizing: border-box;
}

.common-form label.checkbox::before {
    content: '';
    width: .938vw;
    height: .938vw;
    background: url('../images/checkbox-icn.svg') no-repeat left top;
    background-size: .938vw !important;
    position: absolute;
    left: 0;
    top: .26vw;
}

.common-form label.checkbox.checked::before {
    background: url('../images/checkbox-selected-icn.svg') no-repeat left top;
}

.common-form label.checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
}

.common-form-submit {
    color: #FFF;
    text-align: center;
    font-size: .625vw;
    width: 100%;
    box-sizing: border-box;
    padding: .521vw;
    background-color: var(--brown);
    border: none;
    cursor: pointer;
    margin: 1.042vw 0 1.563vw;
}

.close-common {
    position: absolute;
    top: 1.875vw;
    right: 36px;
    cursor: pointer;
}

.common-form-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: none;
}

@media (min-width: 768px) {

    .common-form {
        max-width: 52.083vw;
    }
    
    .common-form h2 {
        text-align: left;
    }
    
    .common-form p {
        text-align: left;
    }

    .common-form-container {
        width: 26.042vw;
        margin-right: 5.208vw;
    }

    .common-form .heading {
        width: calc(100% - 26.042vw - 5.208vw);
    }
}

@media (max-width: 767px) {
    .common-form {
        width: 80%;
        box-sizing: border-box;
        padding: 0px;
    }

    .common-form-container {
        margin-bottom: 30px;
    }

    .common-form .heading {
        margin: 0 auto;
    }

    .close-bespoke {
        top: 10px;
        right: 10px;
    }

    .common-form h3 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .common-form p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .common-form a{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .common-form h4,
    .common-form h5,
    .common-form label.radio {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .common-form .field-area {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .common-form .field-block {
        width: 100%;
    }

    .common-form .field-block input[type="text"], .common-form .field-block input[type="email"], .common-form .field-block input[type="number"], .common-form .field-block input[type="date"], .common-form textarea {
        padding: 5px 10px;
        font-size: 14px;
        line-height: 24px;
    }

    .common-form label.radio,
    .common-form label.checkbox {
        padding-left: 30px;
        margin-right: 20px;
    }

    .common-form label.radio::before,
    .common-form label.checkbox::before {
        width: 20px;
        height: 20px;
        background-size: 20px !important;
    }

    .common-form label.checkbox {
        font-size: 14px;
        line-height: 24px;
        width: calc(100% - 20px);
    }

    .common-form-submit {
        font-size: 13px;
        line-height: 18px;
        padding: 10px;
    }
}