html, body {
  width: 100%;
  height: 100%;
}

 .site{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
 background-image: url(../../../images/map.jpg);
 }

.hot-spot {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hot-spot:hover {
  cursor: pointer;
}

.fa-plus a{
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #85833b;
  border-radius: 50%;
  opacity: 0.8;
  -webkit-animation: bounceOut 1.75s linear infinite;
  -moz-animation: bounceOut 1.75s linear infinite;
  -ms-animation: bounceOut 1.75s linear infinite;
  animation: bounceOut 1.75s linear infinite;
}

.fa-plus a:hover{
  opacity: 0.8;
}

.fa-plus a:after{
content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 4px solid #85833b;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
 
}

.fa-plus a:hover:after{
 position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
 opacity: 0.6;
}

.tooltip {
  position: absolute;
  width: 200px;
  top: -7em;
  left: -5.4em; 
  background-color: #4a4a49 !important;
  border-radius: 4px;
  text-align: center;
  display: none;
  padding: 10px;
  z-index: 9999;
	opacity: 0.95;
}

.tooltip h1 {
  font-size: 100%;
  margin-top: 5px;
  color: #cdb26f;
	font-weight:bold;
}

.tooltip p {
  margin-top: 2px;
  margin-bottom: 5px;
  color: #fff;
}

.tooltip:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #4a4a49;
  border-width: 10px;
  margin-left: -10px;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 0.5;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 0.5;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}