body {
    width: 100vw;
    margin: 0;
    padding: 0;
}

#container {
    position: relative;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin:0;
}

.responsive{
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-comp-img {
    position: absolute;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.img-comp-img img{
    display: block;
    width: 100vw;
}

#img-overlay{
    width: 100vw;
}

#slider {
    position: absolute;
    height: 100%;
    width: 20px;
    left: 100vw;
    z-index: 20;
    cursor: grab;
    background-color: #C1784F;
}


#dot {
    background-image: url("https://procolombia.thebravecontent.com/resources/procolombia1/img/dot.png");
    position: absolute;
    top: calc(50% - 4vw);
    left: -2.2vw;
    width: 108px;
    height: 108px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 20;
    animation: heartBeat 5s infinite;
  }


  @keyframes heartBeat {
    0% {
      transform: scale(1);
    }
  
    14% {
      transform: scale(1.1);
    }
  
    28% {
      transform: scale(1);
    }
  
    42% {
      transform: scale(1.1);
    }
  
    70% {
      transform: scale(1);
    }
  }