/*
Theme Name: Divi Child
Theme URI: https://example.com/
Description: A child theme for Divi
Author: Your Name
Author URI: https://example.com/
Template: Divi
Version: 1.0.0
*/

/* Custom CSS goes here */



/* iPad Pro screen */
@media screen and (min-width: 1024px) and (max-width: 1366px) {

	/* Fix Schedule a Consultation button - one line */
	.et_pb_button_0_tb_header,
	a.et_pb_button.et_pb_button_0_tb_header {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 12px 15px !important;
    line-height: 1.2em !important;
  	}
	
	/* home schedule a consultation */
	.et_pb_section.et_pb_section_6.et_section_regular {
    padding: 30px 50px !important;
	}

	/* footer */
	.et_pb_row_0_tb_footer.et_pb_row > div:first-child {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    padding-right: 20px !important;
	}

}

/* for iPad Mini  */
@media screen and (min-width: 768px) and (max-width: 991px) {

	.et_pb_row_0_tb_footer.et_pb_row > div:first-child {
		width: 40%;
		display: flex;
		flex-wrap: wrap;
		column-gap: 15px;
		padding-right: 20px !important;
	}


}

/* -------------------------------
Schedule button for mobile menu
----------------------------------*/
/* Hide on desktop */
.et-menu .mobile-cta-btn {
  display: none !important;
}

/* Show only on mobile as button */
@media (max-width: 980px) {
  .et_mobile_menu .mobile-cta-btn {
    display: block !important;
  }
  .et_mobile_menu .mobile-cta-btn a {
    background-color: #f7931e !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    text-align: center !important;
    margin: 10px 20px !important;
    display: block !important;
  }
}

/* -------------------------------
Menu items on ipad pro
----------------------------------*/
/* ipad pro screen */
@media screen and (min-width: 1024px) and (max-width: 1366px) {

	.main-nav-menu .et-menu.nav {
	  white-space: nowrap !important;
	  flex-wrap: nowrap !important;
	}

	.main-nav-menu .et_pb_menu__wrap {
	  flex-wrap: nowrap !important;
	}

	.et_pb_row.et_pb_row_1_tb_header.et_pb_row--with-menu.et_pb_row_3-4_1-4 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

/* -------------------------------
Arrow list - bolder darker arrows
----------------------------------*/
ul.arrow-list li::before {
  content: '→ ' !important;
  font-family: sans-serif !important;
  margin-right: 8px !important;
  color: #333333 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}