#carouselExampleIndicators {
  overflow: hidden;
  padding: 6px;
}
.rot-border {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 250%;
  width: 33%;
  background: #fff;
  animation: move 1.5s infinite;
}

@keyframes move {
  100% {
    transform: translate(-50%, -50%) rotate(225deg);
  }
}

.img-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.img-content img {
  width: 100%;
  transition: all 0.5s ease;
}
.img-content .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  background-image: linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding: 10px 15px;
}

.img-content .content h3 {
  color: #f4f4f4;
  word-wrap: break-word;
}

.img-content .content p {
  position: absolute;
  transform: translateY(100%);
  transition: all 0.5s ease;
  opacity: 0;
}

.img-content:hover img {
  transform: scale(1.3) rotate(-3deg);
  filter: blur(4px);
}
.img-content:hover .content p {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.parallax {
  min-height: 400px;
  background-image: url("/img/home/para-bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.no-background {
  background-color: transparent;
}
.card-img svg g path{
  fill: #fff;
}
.border-box{
  border: 1px solid rgb( 255, 255, 255, .2);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  padding: 25px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  background-color: rgb( 0, 0, 0, .2 );
}
.border-circle{
  border: 2px solid rgb( 255, 255, 255, .7 );
  border-radius: 50%;
  transition: box-shadow 0.3s ease;
}
.border-box:hover .border-circle {
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  h1 {
    font-size: 40px !important;
  }
  .btn-deafault {
    padding: 10px 20px;
    font-size: 1.25rem;
  }
  .hero-section .video-container {
    height: 500px;
  }
  .ptb-100 {
    padding: 83px 0;
  }
  .last-content p {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr); 
  }
  .ptb-100 {
    padding: 70px 0;
  }
  h1 {
    font-size: 35px !important;
  }
  .btn-deafault {
    padding: 10px 20px;
    font-size: 1.02rem;
  }
  .hero-section .video-container {
    height: 500px;
  }
  .g-sm-20 {
    gap: 20px;
  }
  .custom-padding {
    padding-top: 50px;
  }
  .last-content p {
    width: 100%;
  }
}
