/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.24.0.1706092103
Updated: 2024-01-24 11:28:23
*/

/*make Divi Builder text style settings sticky on scroll*/
.mce-panel .mce-stack-layout-item.mce-first {
	position: sticky!important;
	top: -60px;
}

/*---------------Menu CTA Button---------------*/
 #top-menu li a:hover {opacity: 1!important;}
             .menu-cta a {
	background-color: #deaa57;
	color: #fffefc!important;
	height: 42px;
    padding: 12px!important;
	margin: auto;
    border-radius: 50px;
    text-align: center;
}
 .menu-cta a:hover {
    background-color: #deaa57;
    color: #fffefc!important;
}
.et_header_style_left #et-top-navigation {
    padding-top: 16px!important;
} 
 .et_header_style_left .et-fixed-header #et-top-navigation {
    padding-top: 6px!important;
}
 
/*---------------CTA Button Color on Fixed Navigation---------------*/
 #main-header.et-fixed-header .menu-cta a {
color: #fff !important;
}
 
/*---------------Menu CTA Button Mobile Settings---------------*/
 @media only screen and (max-width: 980px) {
.menu-cta a {
    background-color: #deaa57;
    }
}

@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;
}
 
}