<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: Divi Child Theme
Template: Divi
Author: Jonathan Carone
*/
/* Theme customization starts here */

/*HEADER SHADOW*/

#main-header {
    box-shadow: none !important;
}
/*Footer*/
.cd-footer a,
.cd-footer p {
    color: #fff;
    font-size: 14px !important;
}

/*Menu CTA Button*/
.cta-menu a {
  font-weight: 700 !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-weight: 700; 
    letter-spacing: 1px !important;
    background-color: #ff6a14;
    color: #fff !important;
    border: 2px solid #ff6a14;
    border-radius: 15px !important;
    
}

.et-fixed-header #top-menu .cta-menu a  {
     color: #fff !important;
}

.et_fixed_nav #et-top-navigation .cta-menu a {
    color: #ffffff !important;
}

#top-menu {
    margin-top: -10px !important;
    margin-bottom: 8px;
}


/*CHANGE COLUMN ORDER MOBILE*/
@media all and (max-width: 980px) {
/*** wrap row in a flex box ***/
.custom_row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
flex-wrap: wrap;
}
 
/*** custom classes that will designate the order of columns in the flex box row ***/
.first-on-mobile {
-webkit-order: 1;
order: 1;
}
 
.second-on-mobile {
-webkit-order: 2;
order: 2;
}
 
.third-on-mobile {
-webkit-order: 3;
order: 3;
}
 
.fourth-on-mobile {
-webkit-order: 4;
order: 4;
}
/*** add margin to last column ***/
.custom_row:last-child .et_pb_column:last-child {
margin-bottom: 30px;
}

 
}





/*VERTICAL ALIGN*/

.vertical-align {
    margin-top: auto;
    margin-bottom: auto;
}

.ds-vertical-align { 
display: flex; 
flex-direction: column; 
justify-content: center;
}



/*INLINE BUTTONS*/

.btn-inline .et_pb_column {
    text-align:center;
}

.btn-inline .et_pb_button_module_wrapper {
    display: inline-block !important;
    margin: 5px;
    text-align: center;
}


.btn-inline2 .et_pb_column {
    text-align:left;
}

.btn-inline2 .et_pb_button_module_wrapper {
    display: inline-block !important;
    margin: 5px;
    text-align: center;
border: 3px
}

/*BUTTON HOVER*/

.et_pb_button {

font-weight: 600;
font-style: normal;
transition: all 0.3s ease-in-out 0s, opacity 500ms ease 0s, transform 500ms ease 0s  !important;
opacity: 1;
transform: translateX(0px) translateY(0px) translateZ(0px);
display: block;
box-shadow: 0 10px 20px 0 rgba(54,54,57,.1) !important;
    
}
    
    .et_pb_button:hover{
transition: all 0.3s ease-in-out 0s, opacity 500ms ease 0s, transform 500ms ease 0s;
    opacity: 1;
    transform: translateX(0px) translateY(-5px) translateZ(0px);
    box-shadow: 0 10px 20px 0 rgba(54,54,57,.25) !important;
}
</pre></body></html>