/*
 Theme Name:  Divi Child Theme
 Theme URI:    https://divilife.com
 Description:  Child Theme for Divi
 Author:       Tim Strifler
 Author URI:   https://divilife.com
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/



/*Hide Title descriptions on mouse hover*/
img	{
        	pointer-events: none;
		}

/* Make the row a flex container so columns stretch equally */
.et_pb_row {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  align-items: stretch; /* ensures all columns in the row are same height */
}

/* Make each image-bottom column a flex column */
.image-bottom {
  display: flex;
  flex-direction: column;
}

/* Push the last module (image) to the bottom */
.image-bottom .et_pb_module:last-child {
  margin-top: auto;
}


.et_pb_menu--style-centered .et_pb_menu__menu>nav>ul, .et_pb_menu--style-centered .et_pb_menu__wrap {
 
    justify-content: right;
}

.et_pb_menu .et_mobile_nav_menu 
{
	margin-top:-180px;
}
/*tablet*/
@media only screen 
and (min-width : 750px) 
and (max-width : 1024px) {
	
.mobile-reverse-row {
    display: flex;
    flex-direction: column-reverse;
  }	
}

/*mobile*/
@media only screen 
and (min-width : 140px) 
and (max-width : 750px) {

.et_pb_menu .et_mobile_nav_menu 
{
	margin-top:-150px;
}	

.mobile-reverse-row {
    display: flex;
    flex-direction: column-reverse;
  }	
}
