.slide-main--heading .from-left {
  /* width: 500px; */
  height: 100px;
  background: url('/assets/images/brand/wordmark.svg') center / contain no-repeat;
  -webkit-mask: url('/assets/images/brand/wordmark.svg') center / contain no-repeat;
  mask: url('/assets/images/brand/wordmark.svg') center / contain no-repeat;
  background-color: rgba(255,255,255,1.0);
}

.svg-icon {
  width: 48px;
  height: 48px;
  margin: 24px;

  /* for chromium based browsers */
  -webkit-mask: url('/images/alert-triangle.svg') center / contain no-repeat;
  mask: url('/images/alert-triangle.svg') center / contain no-repeat;
  background-color: red;
}

.svg-icon.gradient {
  background-image: linear-gradient( 180deg, #FFE985 10%, #FA742B 100%);
}

.visually-hidden {
  /* to remove element from document flow */
  position: absolute;

  /* Element with 0 width/height is not read by
  screen readers. So, setting it to next minimum
  size to shrink its dimensions. */
  width: 1px;
  height: 1px;

  /* content of the element will still be visible,
  so, hide this overflow. */
  overflow: hidden;

  /* when content is wrapped into 1px, screen readers
  cannot read space between words, so keep white-space
  as it is. */
  white-space: nowrap;

  /* still 1px of background-color will be visible.
  Use clip-path, scale or translate transform to
  hide it. */
  clip-path: circle(0);
  /* or */
  /* transform: scale(0); */
  /* or */
  /* transform: translateX(-9999px); */
}









/* ============ Full Page Slider ================= */
.creative-carousal--hero{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.creative-carousal--hero .carousel-slider {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.creative-carousal--hero .carousel-slider  .swiper-slide{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  background-size: cover;
  background-position: center;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.creative-carousal--hero .carousel-slider .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #222327;
  opacity: 0.7;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active:after {
  opacity: 0.4;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner {
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active .inner {
  opacity: 1;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
  width: 100%;
  float: left;
  font-size: 4vw;
  line-height: 5vw;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner a{
  font-size: 19px;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  padding-bottom: 5px;
  position: relative;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
  text-decoration: none;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner a:hover{
  text-decoration: none;
  color: #75dab4;
}
.creative-carousal--hero .slide-progress {
  width: 220px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  bottom: 30px;
  margin-left: -110px;
  z-index: 3;
  text-align: center;
}
.creative-carousal--hero .slide-progress span {
  display: inline-block;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  font-size: 14px;
}
.creative-carousal--hero .slide-progress .swiper-pagination {
  width: 160px;
  height: 2px;
  margin: auto 10px;
  display: inline-block;
  position: static;
  background: rgba(255, 255, 255, 0.3);
}
.creative-carousal--hero .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #fff;
}

.creative-carousal--hero .slide-progress span {
  display: inline-block;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  font-size: 14px;
}
.creative-carousal--hero .swiper-button-prev {
  height: auto;
  position: absolute;
  left: auto;
  top: auto;
  right: 120px;
  bottom: 30px;
  font-family: "Fjalla One", sans-serif;
  color: #fff;
  background: none;
}
.creative-carousal--hero .swiper-button-prev:after{
  display: none;
}
.creative-carousal--hero .swiper-button-next {
  height: auto;
  position: absolute;
  left: auto;
  top: auto;
  right: 40px;
  bottom: 30px;
  font-family: "Fjalla One", sans-serif;
  color: #fff;
  background: none;
}
.creative-carousal--hero .swiper-button-next:after{
  display: none;
}
/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
             font-size: 7vw;
      line-height: 7vw;
      margin-bottom: 15px;
  }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
      font-size: 12vw;
      line-height: 12vw;
      margin-bottom: 15px;
  }
  .creative-carousal--hero .swiper-button-prev{
          left: 40px;
  }
  .creative-carousal--hero .swiper-button-next{
          right: 40px;
  }
}