/*
 Theme Name:     OSXplain Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Customizations to Divi © OSXplain
 Author:         Thomas Endfellner
 Author URI:     https://osxplain.de
 Template:       Divi
 Version:        1.1.3
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */

/*
 * Columns
 *
 * Can be applied to these modules:
 *  • Text
 *  • Toggle, Accordeon
 *  • Tabs
 */

.ox-columns-2 .et_pb_text_inner,
.ox-columns-2 .et_pb_toggle_content,
.ox-columns-2 .et_pb_tab_content  {
     columns: 20em 2;
     column-gap: 4em;
}
.ox-columns-3 .et_pb_text_inner,
.ox-columns-3 .et_pb_toggle_content,
.ox-columns-3 .et_pb_tab_content  {
     columns: 16em 3;
     column-gap: 4em;
}
.ox-columns-4 .et_pb_text_inner,
.ox-columns-4 .et_pb_toggle_content,
.ox-columns-4 .et_pb_tab_content  {
     columns: 10em 4;
     column-gap: 4em;
}

/*
 * Image zoom on hover
 *
 * Can be applied to these modules:
 *  • Image
 *  • Person
 */

.ox-image-zoom .et_pb_image_wrap,
.ox-image-zoom .et_pb_team_member_image {      
	overflow: hidden;     
}
.ox-image-zoom img {
	transition: all 0.5s; 
	-moz-transition: all 0.5s; 
	-webkit-transition: all 0.5s; 
}
	
.ox-image-zoom img:hover {
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}