.multi-scroll {
  height: 100%;
  padding: 0;
  overflow: hidden;

  /* full-width mixin approximation */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  /* transition mixin approximation */
  transition: all 0.3s ease;
  background-color: #000;
}
.multi-scroll-front {
  width: 100%;
  height: 100vh;
  z-index: 3;
  position: relative;
}
.multi-scroll-image-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.multi-scroll-left-image,
.multi-scroll-right-image {
  width: 50%;
  max-width: 50%;
  height: 100%;
  position: absolute;
  filter: brightness(0.65);
}
.multi-scroll-left-image img,
.multi-scroll-right-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center right;
}
.multi-scroll-right-image img {
  object-position: center left;
}
.multi-scroll-left-image {
  left: 0;
}
.multi-scroll-right-image {
  right: 0;
}
.multi-scroll-heading {
  position: fixed;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  left: 0;
  right: 0;

  /* content-full + gutter approximation */
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
.multi-scroll-heading h1 {
  font-family: "Alata", Sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 37px rgba(0, 0, 0, 0.31);
  font-size: 20px;
  line-height: 1.09;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .multi-scroll-heading h1 {
    font-size: 30px;
    text-shadow: 0 1px 26px rgba(0, 0, 0, 0.31);
    line-height: 1.07;
  }
}
@media screen and (min-width: 1200px) {
  .multi-scroll-heading h1 {
    font-size: 6vw;
    text-shadow: 0 2px 37px rgba(0, 0, 0, 0.31);
    line-height: 1;
    /* -webkit-text-fill-color: transparent; */
    /* -webkit-text-stroke-width: 2px; */
    /* -webkit-text-stroke-color: #e0b853; */
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.65;
    }
}

.multi-scroll-video-container {
  width: 100%;
  height: 100vh;
/*  position: relative;*/
}

.multi-scroll-video-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 2;

  transition: all 0.3s ease;
}
.multi-scroll-video-container.hide-background::before {
  opacity: 0;
  visibility: hidden;
}
.multi-scroll-video-container.hide-background .multi-scroll-video-cover::after {
  height: 38%;
}

.multi-scroll-video-button-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.multi-scroll-video-button-wrapper .btn-play {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 11px;
    background: transparent;
    color: #dedede;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 50px;
}
.multi-scroll-video-button-wrapper .btn-play i {
    opacity: 1;
    transition: transform 0.2s ease-in-out, opacity 0.5s ease-in-out;
}
.multi-scroll-video-button-wrapper .btn-play:hover {
  filter: brightness(0.95);
}

.multi-scroll-video-button-wrapper .btn-play:hover i {
     animation: buzz-scale 0.3s linear;
  opacity: 0.7; /* hover par halka transparent bhi hoga */
}

@keyframes buzz-scale {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.multi-scroll-video-cover {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;

  transition: all 0.3s ease;
}
.multi-scroll-video-cover::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #000;

  transition: all 0.3s ease;
}
.multi-scroll-video-cover.js-hide {
  display: none;
}
.multi-scroll-video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.multi-scroll-video-embed {
  height: 100%;
  background-color: #000;
  display: none;
}
.multi-scroll-video-embed.js-show {
  display: block;
}

.multi-scroll-video-box {
  width: 100%;
  height: 100%;
}
.multi-scroll-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home content */
.home-content {
  /* gutter + content-full approximation */
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;

  position: relative;
  padding-bottom: 66px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .home-content {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .home-content {
    padding-bottom: 88px;
  }
}
.home-content .home-background {
  /* full-width approximation */
  width: 100vw;
  margin-left: calc(50% - 50vw);

  position: absolute;
  top: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
body .ast-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}