@charset "UTF-8";
/* CSS Document */

/* ======= Forms ======= */

/*.contact {
    padding: 0 30px;
}*/

.contact form label {
/*    color: #E2001C !important;*/
    text-transform: uppercase;
}

.contact form input[type=text],
.contact form input[type=email],
.contact form input[type=tel],
.contact form textarea {
    background-color: #F1F2F2 !important;
    border: none !important;
    border-radius: 3px !important;
}

.contact form input[type=text],
.contact form input[type=email],
.contact form input[type=tel] {
    height: 40px !important;
}

.contact .frm_button_submit {
    background-color: #fff !important;
    border: solid #C3081C 2px !important;
    color: #000 !important;
    box-shadow: none !important;
    text-transform: uppercase !important;
    padding: 10px !important;
    border-radius: 5px !important;
}

.contact .frm_submit.frm_flex button {
    background-color: #FFF !important;
}

/* ======= Service Select ======= */ 

.service_select {
    padding: 0 20px 20px;
    background: rgb(254,252,242);
    background: -moz-linear-gradient(0deg, rgba(254,252,242,1) 50%, rgba(255,255,255,1) 50%);
    background: -webkit-linear-gradient(0deg, rgba(254,252,242,1) 50%, rgba(255,255,255,1) 50%);
    background: linear-gradient(0deg, rgba(254,252,242,1) 50%, rgba(255,255,255,1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fefcf2",endColorstr="#ffffff",GradientType=1);
}

.service_select .inner {
    background-color: #000;
/*    padding: 30px 9vw 15px 11vw;*/
    padding: 20px;
}

.service_select h2:before {
    display: none;
}

.service_select .frm_checkbox {
    padding: 8px 0;
}

/* Hiding redundant label - may have to revise for accessibiluty */
#field_zs2zw_label {
    display: none;
}

.frm_form_field.frm_four_col .frm_opt_container {
    grid-template-columns: repeat(1, 1fr);
}

.service_select h2,
.service_select p,
.service_select label {        
    color: #FFF !important;
}

.service_select label {
    font-size: 1em !important;
}

.frm_submit.frm_flex {
    justify-content: center;
}

.frm_submit.frm_flex button {
    background-color: #000 !important;
    border: solid #C3081C 2px !important;
    color: #fff;
    box-shadow: none !important;
    text-transform: uppercase;
}

.frm_submit.frm_flex button:hover {
    background-color: #C3081C !important;
    color: #FFF !important;
    border: solid #C3081C 2px !important;
}

/* ======= Stats ======== */

.stats > div {
    border-left: #C3081C solid 2px;
    padding: 4vw;
}

.stats > div:first-child {
    border: none;
}

/* ======= Accordions ======== */

.acc_wrapper {
/*    transition: all 0.5s;*/
/*    padding: 20px 20px 20px;*/
/*    margin: 15px 0;*/
}

.acc_wrapper:has(.on) {
/*    margin-bottom: 12px;    */
}

.open_button {
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    left: 0;
    border-bottom: solid 1px #000;
    padding: 12px;
    margin: 0;
}

.open_button:hover {
    color: #E3001C;    
}

.open_button:before {
    content: '+';
    margin-right: 12px;
    position: absolute;
    right: 12px;
}

.open_button.on {
    color: #E3001C;    
/*    background-color: gold;*/
}

.open_button.on:before {
    content: '–';
    margin-right: 9px;
}

.inside_content {
    padding: 30px 12px 12px;  
    line-height: 1.2;  
}

.inside_content a:before {
    content: '';
    
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
    background-size: auto 100%;
/*    right: 0;*/
}

/* ======= Fancy Box ======= */

/* remove white bg for floating videos */
.fancybox-content {
    background-color: transparent !important;
    max-width: 1400px !important;
}

.fancybox-toolbar {
    top: 12px !important;
    right: 12px !important;
}

.fancybox-button {
    background: #C3081C !important;
    color: #FFF !important;
    height: 60px !important;
    width: 60px !important;
}


/* ======= Footer ======= */ 

footer {
    background-color: #000;
    color: #FFF !important;
    padding: 30px;
}

footer .col {
    padding: 0 30px 30px;
    text-align: center;
}

footer .col.links a {
    color: #FFF;
}

footer.post1086 {
    background-color: #C3081C !important;
}

/* ======= Responsive Styles ========= */

@media(min-width:768px) {

    .contact .form-field {
        padding-right: 5px;
    }

    /* ======= Service Select ======= */ 

    .service_select .inner {
        border-radius: 30px;
        padding: 30px 9vw 15px;
    }

    .frm_form_field.frm_four_col .frm_opt_container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(min-width:992px) {

    /* ======= Service Select ======= */ 
    .frm_form_field.frm_four_col .frm_opt_container {
        grid-template-columns: repeat(3, 1fr);
    }    

    /* ======= Footer ======= */ 
    footer .col.links {
        text-align: right;
    }
}

@media(min-width:1280px) {

    /* ======= Service Select ======= */ 
    .frm_form_field.frm_four_col .frm_opt_container {
        grid-template-columns: repeat(4, 1fr);
    }    
}