/* OD Site Core utilities */
/*. BORDER RADIUS GLOBAL */
/*.od-border-radius--large {
	border-radius: var(--od-border-radius-default);
}
.od-border-radius--small {
	border-radius: var(--od-border-radius-small);
}*/
.od-global-image-radius #main-content .et_pb_image_wrap {
  border-radius: var(--od-image-radius);
  overflow: hidden;
}
.od-global-image-radius #main-content .od-image-radius--none .et_pb_image_wrap {
  border-radius: 0;
  overflow: hidden;
}
/* ANIMATED BOTTOM BORDER ON TITLES */
:is(h1, h2, h3, h4, h5, h6).od--aniBottomBorder, .od--aniBottomBorder :is(h1, h2, h3, h4, h5, h6) 
{
    width: fit-content;
  }  
:is(h1, h2, h3, h4, h5, h6).od--aniBottomBorder::after, .od--aniBottomBorder :is(h1, h2, h3, h4, h5, h6)::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width .2s ease-in-out;
	margin-top: 20px;	
}
:is(h1, h2, h3, h4, h5, h6).od--aniBottomBorder:hover::after, .od--aniBottomBorder :is(h1, h2, h3, h4, h5, h6):hover::after {
	width: 100%;
}
/* BACKGROUND VIDEO VERTICAL POSITION */
.od-bgvideo .et_pb_section_video_bg .mejs-video {
	max-height: 100%;
}
.od-bgvideo.od--positionCenter .et_pb_section_video_bg video {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.od-bgvideo.od--positionBottom .et_pb_section_video_bg video {
	position: absolute;
	top: 100%;
	transform: translateY(-100%);
}
/* CHANGE COLUMN ORDER ON MOBILE */
/* on row: .od-change-column-order*/
.od--changeColumnOrder.et_pb_row {
	display: flex;
	flex-wrap: wrap;
}
.od--changeColumnOrder .et_pb_column:first-child {
}
.od--changeColumnOrder .et_pb_column:last-child {
}	
@media only screen and (max-width: 980px) {
.od--changeColumnOrder .et_pb_column:first-child {
	order: 2;
	margin-bottom: 0 !important;	
}
.od--changeColumnOrder .et_pb_column:last-child {
	order: 1;
	margin-bottom: 30px;
}
}