@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Animation */
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0;
  }
}

body {
  margin: 0;
}

/* Hotspot */

#hotspotImg .hot-spot {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 5px;
  left: 5px;
  text-align: center;
  background-color: #fff;
  color: #fff;
  border: 7px solid #B15644;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease;
}

#hotspotImg .hot-spot.active {
  background-color: #fff;
  border: 7px solid #C4B8AA;
  transition: all .3s ease;
}
#hotspotImg .hot-spot.active h2 {
  font-size: 28px;
  transition: all .15s ease-in-out;
}

#hotspotImg .hot-spot:hover {
  background-color: #fff;
  border: 7px solid #C4B8AA;
  transition: all .3s ease;
}

#hotspotImg .hot-spot .circle {
  display: block;
  position: absolute;
  top: 35%;
  left: 36%;
  width: 2.3em;
  height: 2.3em;
  margin: -1em auto auto -1em;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  border: 7px solid #B15644;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}

#hotspotImg .hot-spot:hover .circle {
  width: 2.3em;
  height: 2.3em;
  border: 7px solid #C4B8AA;
  opacity: 0;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

#hotspotImg .hot-spot h2 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 30px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 22px;
  font-weight:400;
  line-height: 37px;
  color: var(--text-home);
  transition: all .1s ease-in-out;
}

#hotspotImg .hot-spot:hover h2{
  font-size: 28px;
  transition: all .15s ease-in-out;
}

@media only screen and (max-width: 1279.98px) {
  #hotspotImg .hot-spot h2 {
    font-size: 18px;
  }

  #hotspotImg .hot-spot:hover h2{
    font-size: 22px;
    transition: all .15s ease-in-out;
  }

  #hotspotImg .hot-spot {
    width: 28px;
    height: 28px;
  }

  #hotspotImg .hot-spot:hover .circle {
    width: 2.0em;
    height: 2.0em;
  }
}