@charset "UTF-8";

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #394b58;
    --bs-btn-border-color: #394b58;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #50dfcc;
    --bs-btn-hover-border-color: #50dfcc;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #50dfcc;
    --bs-btn-active-border-color: #50dfcc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #394b58;
    --bs-btn-disabled-border-color: #394b58;
}

/* Form page styles */
.contact__form input,
.contact__form select,
.contact__form textarea {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    line-height: 1.25;
    margin-bottom: 5px !important;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4) !important;
}

.contact__form .row.g-3 {
    margin-bottom: 15px;
}

.contact__form .row.g-3:last-of-type {
    margin-bottom: 5px;
}

.contact__form .btn_wrapper {
    padding-top: 5px;
}

/* Mobile header spacing */
@media (max-width: 991px) {
    .sec-title-wrapper {
        margin-top: 80px;
    }
}

.sec-title-2 {
    position: relative;
    z-index: 1;
} 