.bg-text {
  position: relative;
}
.bg-text .line1 {
  font-size: 100px;
  display: block;
  text-align: center;
  font-weight: 900;
  color: #ebebeb;
  line-height: 66px;
  margin-bottom: 60px;
}
.bg-text .line3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  width: 700px;
}
.bg-text .line3 b {
  font-weight: bold;
}

.ignite-box {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #ffeacf;
  margin: 32px 0 !important;
}
.ignite-box .text-container {
  padding-right: 80px;
}
.ignite-box .text-container h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 16px 0;
}
.ignite-box .text-container p {
  margin-bottom: 24px;
}
.ignite-box .logo-div {
  display: flex;
  justify-content: end;
}
.ignite-box .logo-div .logo {
  width: 75%;
}
.ignite-box .logo-div .logo img {
  width: 100%;
}
.education-section .image {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.education-section .image .video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 600px;
}
.education-section .text-container {
  padding: 100px;
}
.education-section .text-container p {
  margin: 24px 0;
}

.featured {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.featured .featured-bg {
  background-image: none;
  left: 0;
  opacity: 0.75;
  top: 0;
  z-index: -1;
  filter: saturate(50%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: transform 1s ease;
  overflow: hidden;
  position: absolute;
  height: 400px;
  width: 100%;
}
.featured .featured-bg.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.1);
}

.feature-row {
  display: flex;
}
.feature-row > div {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.feature-row .featured-box {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
  position: relative;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: all 1s ease;
}
.feature-row .featured-box::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  position: absolute;
}
.feature-row .featured-box .info {
  position: absolute;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  width: 90%;
  bottom: 0;
  left: 0;
  z-index: 11;
}
.feature-row .featured-box .info h3 {
  color: #fff;
  transition: all 1s ease;
}
.feature-row .featured-box .info p {
  color: #fff;
  display: none;
  transition: all 1s ease;
}
.feature-row .featured-box.remove-bg {
  background-image: none !important;
  z-index: 2;
}
.feature-row .featured-box.remove-bg .info {
  display: none;
}
.feature-row .featured-box.active {
  background-color: rgba(0, 0, 0, 0.4);
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.feature-row .featured-box.active .info {
  display: flex;
}
.feature-row .featured-box.active .info p {
  display: block;
  margin-top: 32px;
}
.feature-row .featured-box.active::before {
  display: none;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 25rem;
  border: none;
}
.card__side {
  height: 25rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
  background: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 8px;
}
.card__side--back p {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.1;
}
.card__side--back a {
  padding-top: 30px;
  padding-bottom: 30px;
}
.card:hover .card__side--front {
  transform: rotateY(180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0deg);
}
.card__image {
  height: 35rem;
  background-size: cover;
  background-blend-mode: screen;
}
.card__heading {
  font-size: 30px;
  position: absolute;
  top: 50%;
  color: #fff;
  text-align: center;
  padding: 0 24px;
  font-weight: bold;
  transform: translateY(-50%);
}
.card .plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
}
.card .icon {
  width: 72px;
  height: 72px;
  margin-top: 16px;
}

.commitment img {
  width: 100%;
  aspect-ratio: 1/1;
}
.commitment .text-container {
  display: flex;
  height: 100%;
  align-items: center;
}
.commitment .text-container h2 {
  text-transform: inherit;
}
.commitment .text-container p {
  margin: 24px 0;
}
.commitment .text-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.retailers {
  margin-top: 20px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  height: 700px;
  padding-top: 0;
  padding-bottom: 0;
}
.retailers a {
  display: block;
  position: relative;
  height: 700px;
  transition: all 0.3s ease;
}
.retailers a .c-cont {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.retailers a h3,
.retailers a p {
  color: #fff;
}
.retailers a h3 {
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 56px;
}
.retailers a p {
  margin-top: 20px;
  display: none;
  font-size: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.retailers a p span {
  display: block;
  font-weight: 300;
}
.retailers a:hover h3 {
  display: none;
}
.retailers a:hover p {
  display: block;
}

@media screen and (max-width: 992px) {
  .ignite-box .text-container {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .i-heading {
    padding-top: 0 !important;
    margin-top: -20px !important;
  }
  .ignite-box {
    padding: 40px 0;
  }
  .ignite-box .text-container {
    padding-right: 0;
    text-align: center;
  }
  .ignite-box .logo-div {
    display: flex;
    justify-content: end;
  }
  .ignite-box .logo-div .logo {
    width: 75%;
    margin: auto;
    margin-top: 32px;
  }
  .ignite-box .logo-div .logo img {
    width: 100%;
  }
  .ignite-box .logo-div .logo .know-btn {
    text-align: center !important;
  }
  .bg-text .line1 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .bg-text .line3 {
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    text-align: center;
    display: block;
  }
  .education-section {
    padding: 0;
  }
  .education-section .image {
    height: 210px;
  }
  .education-section .image .video {
    transform: translateY(0);
    inset: auto 20px -60px 20px;
    width: 88%;
  }
  .education-section .text-container {
    padding: 24px;
    text-align: center;
    padding-top: 80px;
  }
  .education-section .text-container p {
    margin: 12px 0;
  }
  .retailers {
    border-radius: 0 !important;
    height: 400px;
  }
  .retailers a {
    height: 400px;
  }
  .retailers a h3 {
    font-size: 24px;
  }
  .retailers a p {
    font-size: 16px;
  }
  .retailers a .c-cont {
    align-items: flex-end;
    padding-bottom: 32px;
  }
  .infograpic {
    padding-top: 36px;
  }
}/*# sourceMappingURL=india_story.css.map */