html{
  font-size: 10px;
}
p{
  margin-bottom: 0;
}
.scroll {
  overflow: auto;
  width: 100%;
  height: 368px;
  cursor: grab;
}
.mobile-ani {
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.arrows {
  width: 35px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}
.arrows-left {
  transform: rotate(90deg);
  left: 10%;
}
.arrows-right {
  transform: rotate(-90deg);
  left: 100%;
}

.arrows path {
  stroke: #2994d1;
  fill: transparent;
  stroke-width: 4px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}
.main{
    width: 900px;
    height: 360px;
    background: url('../Assets/image.png');
    background-size: 900px 360px;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
left:-7px;

}
.hotsport-1 {
    position: absolute;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    cursor: pointer;
  }
  .pulse-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
  }
  .pulse-wrapper img{
    position: relative;
    z-index: 2;
  }
  .hotsport-1 span{
    position: absolute;
    background-color: rgba(255, 255,255, 1);
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  .hotsport-1:hover span{
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(.85);
    }
  
      100% {
      transform:  translate(-50%, -50%) scale(3);
      background-color: rgba(255, 255,255, 0.1);
    }
  }
  .modal.show{
    position: absolute;
    overflow: hidden;
  }
  .modal-dialog{
    margin: 0;
  }
 .modal-backdrop{
    display: none;
 }
  .modal{
    background: rgba(0, 0, 0, 0.5);
  }
  .modal-wrapper {
    background-color: rgba(0,120,161, 0.69);
    padding: 1rem 2rem;
    position: relative;
    /* width: 80%; */
    margin: 0;
    border-radius: 0.8rem;
    transform: translate(0, -57%);
    display: flex;
  }
  .modal-header {
    display: none;
  }

  
  .modal-body {
    padding: 0;
    background-color: transparent;
    color: white;
    display: flex;
    gap: 1.5rem;
  }

  .modal-content {
    background-color: transparent;
    border-radius: 0;
    border: none;
    /* padding: 1rem;
    display: flex; */

  }
  .modal-content h5 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  #modal-content-text{
    font-size: 1.2rem;
  }
  .modal-content a {
    color: white;
    text-decoration: underline;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 400;
  }

  @keyframes arrow {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/ {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s; /* Safari 和 Chrome */
  }
  
  .arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s; /* Safari 和 Chrome */
  }
  
  .arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s; /* Safari 和 Chrome */
  }

@media screen and (min-width: 900px) {
  .mobile-ani {
    display: none;
  }

  .scroll{
    cursor: default;
  }
}