body {
    font-family: "Montserrat", sans-serif;
}
a, button {
    transition: all 0.3s ease 0s;
}
.contact-wrap {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.contact-form>.row {
    margin: 0 7px;
}
.contact-form>.row>* {
    padding: 0 7px;
}
form.contact-form {
    background-color: #023233;
    color: #d3b16f;
}
.form-row-input {
    position: relative;
}
.form-row-input .form-control {
    background-color: #023233;
    color: #d3b16f;
    border: 1px solid #d3b16f;
    border-radius: 0;
    margin: 0 0 15px;
}
.form-row-input .form-control::placeholder {
    color: #d3b16f;
    text-transform: uppercase;
}
.form-row-input .form-control:focus {
    box-shadow: none;
}
/* disclaimer msg */
.disclaimer-msg {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 20px;
    position: relative;
}
.disclaimer-msg p,
.disclaimer-msg a,
.disclaimer-msg label {
    margin: 0;
    font-size: 12px;
    color: #d3b16f;
}
.form-checkbox label,
.disclaimer-msg p {
    max-width: calc(100% - 26px);
    width: 100%;
    margin-left: auto;
    margin-bottom: 0;
}
.disclaimer-msg a {
    text-decoration: none;
}
.disclaimer-msg a:hover {
    color: #ffffff;
    text-decoration: none;
}
.form-checkbox {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.form-checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 99;
}
.form-checkbox label::before, .form-checkbox label::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #d3b16f;
    background: #fff0;
    position: absolute;
    top: 3px;
    left: 0;
}
.form-checkbox label::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    font-size: 12px;
    text-align: center;
    color: #023233;
    background-color: #d3b16f;
    opacity: 0;
}
.form-checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}
/* cta */
.click-action {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #d3b16f;
    border: 2px solid #023233;
    color: #023233;
    text-transform: uppercase;
    font-weight: 600;
}
.click-action:hover,
.click-action:focus {
    background-color: transparent;
    color: #d3b16f;
    border-color: #d3b16f;
}
button:focus {
    outline: none;
}
@media only screen and (max-width: 991px) {
    .click-action {
        width: 130px;
        height: 130px;
    }
}
@media only screen and (max-width: 479px) {
    .click-action {
        width: 115px;
        height: 115px;
    }
}
/* error message */
label.label1 {
    font-weight: 500;
    color: red;
    font-size: 12px;
    margin: 0;
    position: absolute;
    bottom: -17px;
    left: 0;
}