/* style */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.w3-row-padding img {
  margin-bottom: 12px;
}

.bgimg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.btn-hover:hover {
  color: #3fdb86;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.highlighted {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(66, 245, 176, 0.5);
  transition: transform 0.3s;
}

.highlightedhover {
  transform: scale(1.01);
}

@keyframes shadowMove {
  0% {
    box-shadow: 0 0 10px rgba(66, 245, 176, 0.1);
  }
  50% {
    box-shadow: 100px 0 10px rgba(66, 245, 176, 0.1);
  }
  100% {
    box-shadow: 0 0 10px rgba(66, 245, 176, 0.1);
  }
}

.highlighted h3 {
  font-weight: bold;
  color: black;
}

.fade-element {
  opacity: 1;
  animation: fadeIn 0.5s ease-out; /* Apply the animation */
}

.visible {
  opacity: 1;
}

.hidden {
  opacity: 0;
}

.gradient-text {
  background: linear-gradient(to right, #3fdb86, #42f5b0, #3fdb86);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate 5s linear infinite;
}

.gradient-text:hover {
  background-size: 200% 100%; /* Increase the background size to reveal the colors */
}

.gradient-text-2 {
  background: linear-gradient(to right, #4269f5, #42eff5, #4269f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate 5s linear infinite;
}

.gradient-text-2:hover {
  background-size: 200% 100%; /* Increase the background size to reveal the colors */
}

.animated-text {
  background: linear-gradient(90deg, black, black, black, black, black, #4269f5, #42eff5, #4269f5, black, black, black, black, black);
  background-size: 400%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: animate 10s linear infinite;
}

.animated-text-2 {
  background: linear-gradient(90deg, #4269f5, #42eff5, #4269f5, black, #4269f5, #42eff5, #4269f5, black, #4269f5);
  background-size: 400%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: animate 8s linear infinite;
}

@keyframes animate {
  0% {
    background-position: 400%;
  }
  100% {
    background-position: 0%;
  }
}

.slide-in-animation {
  animation: slideInFromRight 1s forwards; /* Apply animation */
}

.slide-in-animation-2 {
  animation: slideInFromRight 1s forwards; /* Apply animation */
}

@keyframes slideInFromRight {
  0% {
    right: -100px; /* Start position */
  }
  100% {
    right: 0; /* End position */
  }
}

.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns with equal width */
  gap: 70%; /* Gap between columns */
}

.hovered {
}

.ss-learn {
}

/* .ss-learn:hover {
  transform: scale(1.5);
} */

.horizontal-list {
  list-style: none;
  padding: 0;
}

.horizontal-list li {
  margin-left: 8px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}

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

.spacing-child i {
  margin: 0px 8px;
}

/* ss */
* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-div {
  width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
