/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* SEO */

:root {
	--basefontsize: 18px;
}

.badge {
	font-size: 16px; 
}

.slider-title h1 {
	display: inline-block;
	font-size: 18px;
	color: #AAA;
}

/* Asymmetric background */
.asymmetric {
	position: relative;
	background-color: #F9F9F9;
	overflow: visible !important;
}

.asymmetric::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #F9F9F9;
	transform-origin: top;
	-webkit-transform-origin: top;
	-webkit-transform: skewY(-3deg);
	-moz-transform: skewY(-3deg);
	-ms-transform: skewY(-3deg);
	-o-transform: skewY(-3deg);
	transform: skewY(-3deg);
	z-index: 1;
}

.asymmetric::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #F9F9F9;
	transform-origin: bottom;
	-webkit-transform-origin: bottom;
	-webkit-transform: skewY(3deg);
	-moz-transform: skewY(3deg);
	-ms-transform: skewY(3deg);
	-o-transform: skewY(3deg);
	transform: skewY(3deg);
	z-index: 1;
}

/* Oblique background */
.asymmetric2 {
	position: relative;
	background-color: #F9F9F9;
	overflow: visible ;
}

.asymmetric2::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #F9F9F9;
	transform-origin: 0;
	-webkit-transform-origin: 0;
	-webkit-transform: skewY(1.7deg);
	-moz-transform: skewY(1.7deg);
	-ms-transform: skewY(1.7deg);
	-o-transform: skewY(1.7deg);
	transform: skewY(1.7deg);
	z-index: 1;
}

.asymmetric2::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #F9F9F9;
	transform-origin: 0;
	-webkit-transform-origin: 0;
	-webkit-transform: skewY(-1.7deg);
	-moz-transform: skewY(-1.7deg);
	-ms-transform: skewY(-1.7deg);
	-o-transform: skewY(-1.7deg);
	transform: skewY(-1.7deg);
	z-index: 1;
}


.t-rotate-text {
    font-size: 1.1em;
	font-weight: bold;
    color: #FE9603;
}

.promo-eumed h3 {
    font-size: 0.875rem;
	text-transform: uppercase;
}

.promo-eumed p {
    font-size: 30px;
	margin-bottom: 0;
	font-weight: 700;
	letter-spacing: 1px;
	color: #333;
}

.promo-section::before {
	content: '';
    position: absolute;
    top: -17%;
    left: 45%;
    width: 80%;
    height: 451px;
    background-size: 1280px 451px;
    background-repeat: no-repeat;
	background-image: url('/mdssts/images/hero/hero-3.svg') ;
}


/* Team */

.team {
	cursor: pointer;
}

.team-title h4 {
    display: block;
    margin-bottom: 0;
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 600;
}

.team-title span {
    font-weight: 500;
    letter-spacing: 2px;
	font-style: normal;
}

/* Hotspot */
.hotspot-img { position: relative; }

.hotspot-img img { opacity: .6; }

.hotspot-img .hot-spot {
	position: absolute;
	width: 12px;
	height: 12px;
	top: 5px;
	left: 5px;
	text-align: center;
	background-color: rgba(254, 150, 3, 0.8); /* rgba(68, 170, 172, 0.8); */
	border: 1px solid #FFF;
	border-radius: 100%;
	cursor: pointer;
	transition: transform .3s ease;
}

.hotspot-img .hot-spot .circle {
	display: block;
	position: absolute;
	top: 47%;
	left: 47%;
	width: 5em;
	height: 5em;
	margin: -2.5em auto auto -2.5em;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-radius: 50%;
	background: #fE9603; /* #44aaac; */
	opacity: 0;
	z-index: -1;
	-webkit-animation: pulsate 3.5s ease-out infinite;
	animation: pulsate 3.5s ease-out infinite;
}

.hotspot-img .hot-spot:nth-child(2) .circle { animation-delay: 2s; }
.hotspot-img .hot-spot:nth-child(3) .circle { animation-delay: 3.5s; }
.hotspot-img .hot-spot:nth-child(4) .circle { animation-delay: 5.2s; }
.hotspot-img .hot-spot:nth-child(5) .circle { animation-delay: 6.4s; }
.hotspot-img .hot-spot:nth-child(6) .circle { animation-delay: 8s; }
.hotspot-img .hot-spot:nth-child(7) .circle { animation-delay: 9.2s; }
.hotspot-img .hot-spot:nth-child(8) .circle { animation-delay: 11s; }
.hotspot-img .hot-spot:nth-child(9) .circle { animation-delay: 13s; }
.hotspot-img .hot-spot:nth-child(10) .circle { animation-delay: 15s; }

.hotspot-img .hot-spot .tooltip {
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
	opacity: 0;
	display: none;
	left: 0;
	padding: 8px 10px;
	position: absolute;
	top: 20px;
	width: auto;
	z-index: 999;
	box-shadow: 0 10px 80px rgba(0,0,0,0.1), 0 10px 50px rgba(0,0,0,0.1);
	-webkit-transform: translateY(3px);
	-ms-transform: translateY(3px);
	-o-transform: translateY(3px);
	transform: translateY(3px);
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.hotspot-img .hot-spot.hotspot-tooltip-open .tooltip {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.hotspot-img .hot-spot .tooltip.ontop {
	top: auto;
	bottom: 35px;
}

.hotspot-img .hot-spot .tooltip  p {
	font-size: 13px;
	line-height: 1.3rem !important;
	margin-bottom: 0;
	white-space: nowrap;
	color: #666 !important;
	text-transform: capitalize;
}

@-webkit-keyframes
	pulsate {  0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0.8;
	}
	 45% {
		-webkit-transform: scale(1.75);
		transform: scale(1.75);
		opacity: 0;
	}
}
@keyframes
	pulsate {  0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0.8;
	}
		45% {
		-webkit-transform: scale(1.75);
		transform: scale(1.75);
		opacity: 0;
	}
}

/* Images caption & copyright */
.c-image a {
	position: relative;
	text-align: center;
	color: #333;
}

.c-image-dark a {
	position: relative;
	text-align: center;
	color: #fff;
}

.c-image-bottom {
	position: absolute;
	bottom: 8px;
}

.c-image-bottom-right {
	position: absolute;
	bottom: 8px;
	right: 16px;
}

.c-image-bottom-left {
	position: absolute;
	bottom: 8px;
	left: 16px;
}

.modal {
	top: 40px;
}

.hnpt {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
}

.widget_links li span {
	display: inline-block;
    padding: 0 3px 0 12px;
}

acronym[title] {
    text-decoration: none;
}

