html {
  -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: 14px/1.4 'system-ui', sans-serif;
  color: #343a40;
}

.imageMap__container {
  width: 100%;
  position: relative;
  margin-top: 0rem;
}
.imageMap__container img {
  width: 100%;
  height: auto;
  pointer-events: none;
  overflow: hidden;
}

.markers {
    background: rgba(248,239,24,.7);
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    border-color: rgba(255,222,0,.5);
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    align-self: center;
    justify-self: center;
    cursor: pointer;
    animation: ownpulse 3s cubic-bezier(.19,1,.22,1) infinite both;
  position: absolute;
}
.markers:focus-within .marker__card, .markers:focus .marker__card {
	display: block;
}


.marker__card {
	background-color: #f0eeef;
	padding: 1.5rem;
    border-radius: 15px;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(237,32,36,1);
	display: none;
	margin-top: -5%;
	min-height: 100px;
	position: fixed;
  top: 42%;
  right: 9%;
	width: 30%;
	z-index: 100;
	-webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,.6);
	box-shadow: 0 0 25px 0 rgba(0,0,0,.6);
	min-width: 350px;
	max-width: 375px;
	animation: fadeInUp;
	animation-duration: .5s;
	animation-fill-mode: both;
}

.marker__card a {
	position:relative;
	left:24%;
}


.marker__card__title {
  font: 31px/1.2 'Fugaz One', sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

/*
.button-default {
    color: #fff;
    background-color: #ee1b24;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 25px;
    display: inline-block;
    font-size: 16px;
    font-family: Fugaz One,sans-serif;
    border-radius: 5px;
    border: none
}

.button-slanted {
    transform: skewX(-10deg);
    color: #fff;
    background: #fff200;
    background: linear-gradient(90deg,#a51316 0,#ee1b24 48%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position .4s ease-in-out;
    border: none
}

.button-slanted i {
    color: #fff200!important
}

.button-slanted:hover {
    color: #fff200;
    background-position: 0 0;
    transition: background-position .4s ease-in-out
}

.button-slanted:hover a:hover {
    color: #fff200!important;
    letter-spacing: 1px
}*/

/* animations */
@keyframes ownpulse {
	0% {
	    -webkit-box-shadow: 0 0 0 0 #ff0000;
	    box-shadow: 0 0 0 0 #ff0000;
	}
	50% {
	    -webkit-box-shadow: 0 0 0 40px rgba(92,112,214,0);
	    box-shadow: 0 0 0 40px rgba(92,112,214,0);
	}
	0% {
	    -webkit-box-shadow: 0 0 0 0 #ff0000;
	    box-shadow: 0 0 0 0 #ff0000;
	}
	50% {
	    -webkit-box-shadow: 0 0 0 40px rgba(92,112,214,0);
	    box-shadow: 0 0 0 40px rgba(92,112,214,0);
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3);
		-webkit-transform: scale3d(.3,.3,.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes fadeInUp {
	0% {
    opacity: 0;
	transform: scale3d(.3,.3,.3) translate3d(0,100%,0);
	-webkit-transform: scale3d(.3,.3,.3);
    -webkit-transform: translate3d(0,100%,0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
0% {
    opacity: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: scale3d(.3,.3,.3) translate3d(0,100%,0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}