.ISOMarks {
  position: absolute;
  top: 10px;
  width: 100%;
  display: flex;
  padding: 0px 30px;
  justify-content: flex-end;
}

.swingBanner {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 0px 80px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.ropeCardCtr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ropeCardCtr .rope {
  height: var(--ih-ropeHeight);
  border: 1px dashed var(--ih-white);
  width: 0px;
}
.ropeCardCtr .ropeCard {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ropeCardCtr .ropeCard .contentCard {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.3);
}

.ropeCardCtr .ropeCard h6 {
  margin: 0;
}

.ropeCardCtr .ropeCard .imgCtr {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ropeCardCtr .ropeCard .hoverCtr {
  transition: all 0.3s ease-in-out;
  transform: translateY(100px);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bbcolor);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ropeCard:hover .hoverCtr {
  transform: translateY(0px);
}

.isoImage {
  width: 100px;
  border-radius: 10px;
  margin: 0px 5px;
}

.hs-corosal {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--ih-black);
}

#ih-Video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hs-corosal-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  overflow: hidden;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.hs-corosal-content.active {
  opacity: 1;
  z-index: 0;
}

.h-s-bg {
  padding: 0px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.h-s-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hs-corosal-btn {
  margin: 0px 16px;
  position: absolute;
  top: 40%;
  width: 40px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 6px;
  scale: 0.98;
}

.h-s-txtCtr {
  display: inline-block;
  scale: 0;
  opacity: 0;
  margin-top: -30px;
  margin-left: 50px;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}
.h-s-txtCtr h3 {
  display: inline-block;
}
.h-s-txtCtr h3 > span {
  display: block;
  padding-right: 10px;
  border-right: 2px solid var(--ih-white);
  white-space: noWrap;
  overflow: hidden;
  width: 100%;
  animation: typing 5.99s var(--charLength) 0.5s infinite;
}
.h-s-txtCtr h3,
p {
  font-family: "myfont-play", sans-serif;
}
.h-s-txtCtr .txt-shadow {
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
}

@keyframes typing {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
    border-right: transparent;
  }
}

.hs-corosal-content.active .h-s-txtCtr {
  scale: 1;
  opacity: 1;
}

.hs-corosal-btn:hover {
  scale: 1;
}

.btn-left {
  left: 0px;
}
.btn-right {
  right: 0px;
}

@media only screen and (max-width: 900px) {
  .swingBanner {
    padding: 0px 20px;
    gap: 10px;
    justify-content: center;
  }

  .ropeCardCtr .rope {
    height: 30px;
  }

  .ropeCardCtr .ropeCard .imgCtr {
    width: 20px;
  }
  .ropeCardCtr .ropeCard h6 {
    font-size: 0.6rem;
  }
}

@media only screen and (max-width: 768px) {
  .isoImage {
    width: 65px;
  }
}

@media only screen and (max-width: 600px) {
  .ISOMarks {
    justify-content: center;
  }
  .isoImage {
    width: 60px;
  }
  .hs-corosal-btn {
    scale: 0.6;
    margin: 0px;
  }
  .hs-corosal-btn:hover {
    scale: 0.6;
  }
  .h-s-bg {
    padding: 50px;
  }
  .h-s-txtCtr {
    margin-top: 0px;
    margin-left: 0px;
  }
  .h-s-txtCtr h3 {
    font-size: 1.7rem !important;
  }
  .h-s-txtCtr p {
    font-size: 0.95rem !important;
  }
}
