.pt-5 {
  padding-top: 50px;
}

.hero {
  position: relative;
}

.hero-img-holder img {
  width: 100%;
  height: 95vh;
  object-fit: cover;
  object-position: center center;
}

.hero-content-holder {
  position: absolute;
  width: 60%;
  margin: 0 auto;
  top: 25%;
  left: 10%;
  padding: 10px;
  background-color: #00000042;
  border-radius: 4px;
}

.banner-heading {
  font-size: 5rem;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}

.banner-subheading {
  font-size: 2rem;
  color: white;
  text-transform: capitalize;
}

.text-blue {
  color: var(--blue-color);
}

.text-white {
  color: var(--white-color);
}

.interactive {
  padding: 4px 10px;
  border-radius: 999px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.interactive:hover {
  background-color: color-mix(in srgb, var(--blue-color) 15%, transparent);
  transform: translateY(-1px);
}

/* Banner end  */
.grid-2-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.blog-card-50 {
  position: relative;
}

.img-holder img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.left {
  margin-right: 20px;
}

.right {
  margin-left: 20px;
}

.content-holder {
  width: 70%;
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: white;
  padding: 10px;
  z-index: 1;
}

.video {
  width: 100%;
  height: auto;
}

.video-content {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
}

.video-heading {
  font-size: clamp(2rem, 6vw, 5rem);
  text-align: center;
  align-items: center;
  color: var(--white-color);
}

.video-subheading {
  font-size: clamp(1.2rem, 4vw, 3rem);
  text-align: center;
  align-items: center;
  color: var(--white-color);
}

.video-btn {
  position: absolute;
  bottom: 20%;
  right: 10%;
}

/* explore the world  */
.explore-section {
  padding: 50px 0;
}

.overlay {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 1%;
  background: #00000036;
}

.explore-the-world {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.etw-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.etw-para {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/*  */
/* GRID */
.grid-4321 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4321 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4321 {
    grid-template-columns: 1fr;
  }
}

/* GRID ITEM */
.grid-4321-inner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

/* IMAGE */
.etw-img-holder img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.grid-4321-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* 90% transparent */
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* CONTENT */
.etw-content-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 2;
  opacity: 0;
  text-align: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.etw-content-heading {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.grid-4321-inner:hover::before {
  opacity: 1;
}

.grid-4321-inner:hover .etw-img-holder img {
  transform: scale(1.05);
}

.grid-4321-inner:hover .etw-content-holder {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.post {
  width: 90%;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.post-card {
  position: relative;
  padding: 10px 10px 75px 10px;
  border-radius: 4px;
  background-color: #fcfcfc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px #4d82c51c;
  background-position: right center;
}

.post-card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px 4px 0 0;
}

.postcard-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* full width blog card */
.full-width-blog-card {
  position: relative;
}

.full-width-blog-card-content {
  position: absolute;
  background-color: #00000036;
  width: 50%;
  bottom: 10%;
  padding: 2%;
  left: 10%;
}

.full-width-blog-btn {
  position: absolute;
  bottom: 20%;
  right: 10%;
}

@media (max-width: 768px) {
  .full-width-blog-card-content {
    width: 78%;
  }

  .full-width-blog-btn {
    bottom: 3%;
  }

  .full-width-blog-card-image {
    height: 85vh;
    object-fit: cover;
    object-position: center center;
  }
}




















@media (max-width: 1024px) {
  .banner-heading {
    font-size: 3.5rem;
  }

  .hero-img-holder img {
    height: 85vh;
  }

  .banner-subheading {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content-holder {
    top: 20%;
  }

  .grid-2-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .content-holder {
    top: 30%
  }

  .left,
  .right {
    margin: 0px 10px;
  }

  .grid-4321-inner::before {
    opacity: 1;
    background: rgba(0, 0, 0, 0.293);
  }

  .etw-content-holder {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .hero-content-holder {
    position: absolute;
    width: 80%;
  }

  .hero-img-holder img {
    height: 80vh;
  }

  .banner-heading {
    font-size: 2.5rem;
  }

  .banner-subheading {
    font-size: 1.5rem;
  }

  .content-holder {
    top: 20%
  }
}