@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,700;0,800;0,900;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;

  border: 1ox solid red;
}

body,
html {
  overflow: hidden;
  user-select: none;
  font-family: "Poppins", sans-serif;
  background: #211f3b;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.showing {
  display: flex;
  animation-fill-mode: forwards;
}

@keyframes slide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

.slide img {
  width: 100%;
  height: 120vh;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-weight: bold;
  font-size: 30pt;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  opacity: 0.1;
  outline: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  opacity: 1;
}

/*.bg-1{
    background-image: url("team-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bg-2{
    background-image: url("team-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bg-3{
    background-image: url("team-3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bg-4{
    background-image: url("team-4.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }*/

@media only screen and (min-width: 1024px) {
  .para_vj {
    font-size: 18pt;
    font-family: "Luna Bar", sans-serif;
  }
}

.team-info {
  width: 1pt;
  position: relative;
  right: 80%;
  top: 470px;
  background: none;
}

.team-info h1 {
  width: 300px;
  font-size: 20pt;
  color: #fff;
}

.btn {
  width: 80pt;
  height: 30pt;
  cursor: pointer;
  background: transparent;
  border: 0.5px solid #fff;
  color: #fff;
  transition: all 0.2s ease-in-out;
  margin: 10px 0;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.team-info span {
  font-size: 10pt;
  color: #ff5630;
}

.team-info p {
  font-family: "Luna Bar", sans-serif;
  width: 300px;
  font-size: 15pt;
  color: #ff5630;
}

.bubblingG {
  text-align: center;
  width: auto;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #211f3b;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bubblingG span {
  width: 17px;
  height: 17px;
  background: #ff5630;
  border-radius: 84px;
  animation: bubblingG 0.7s infinite alternate;
}
.bubblingG > div:nth-child(even) {
  margin: 0 2px;
}
#bubblingG_1 {
  animation-delay: 0s;
}
#bubblingG_2 {
  animation-delay: 0.21s;
}
#bubblingG_3 {
  animation-delay: 0.42s;
}
@keyframes bubblingG {
  0% {
    width: 17px;
    height: 17px;
    background-color: #ff5630;
    transform: translateY(0);
  }
  100% {
    width: 40px;
    height: 40px;
    background-color: #753075;
    transform: translateY(-35px);
  }
}
