/* 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 */
.animated-bottom-border, .animated-bottom-border h1, .animated-bottom-border h2, .animated-bottom-border h3 {
    width: fit-content;
  }  
.animated-bottom-border:after, .animated-bottom-border h1:after, .animated-bottom-border h2:after, .animated-bottom-border h3:after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width .2s ease-in-out;
	margin-top: 20px;	
}
.animated-bottom-border:hover:after, .animated-bottom-border h1:hover:after, .animated-bottom-border h2:hover:after, .animated-bottom-border h3:hover:after {
	width: 100%;
}
/* BACKGROUND VIDEO VERTICAL POSITION */
.od-bgvideo-position .et_pb_section_video_bg .mejs-video {
	max-height: 100%;
}
.od-bgvideo-position.od-bgvideo--center .et_pb_section_video_bg video {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.od-bgvideo-position.od-bgvideo--bottom .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-change-column-order.et_pb_row {
	display: flex;
	flex-wrap: wrap;
}
.od-change-column-order .et_pb_column:first-child {
}
.od-change-column-order .et_pb_column:last-child {
}	
@media only screen and (max-width: 980px) {
.od-change-column-order .et_pb_column:first-child {
	order: 2;
	margin-bottom: 0 !important;	
}
.od-change-column-order .et_pb_column:last-child {
	order: 1;
	margin-bottom: 30px;
}
}