.embed-banner-container {
  min-height: 650px;
  display: flex;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.banner-overlay {
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 33%);
}

.teaser-outer-wrapper {
  min-height: 420px;
  display: flex;
  background-repeat: no-repeat;
  background-position: 75%;
}

/*Nine positions CSS----*/
.position-left-top {
  display: flex;
  align-items: flex-start;
  justify-content: left;
}
.position-left-center {
  display: flex;
  align-items: center;
  justify-content: left;
}
.position-left-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: left;
}
.position-center-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.position-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.position-center-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.position-right-top {
  display: flex;
  align-items: flex-start;
  justify-content: right;
}

.position-right-center {
  display: flex;
  align-items: center;
  justify-content: right;
}
.position-right-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.slider-left-section {
  width: 85%;
}

/* Typing slider CSS */
.sliderConstantText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}

/* New banner CSS starts */
.banner-content-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.embed-video-container .banner-video {
  --video--width: 1296;
  --video--height: 500;
  position: relative;
  padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
  overflow: hidden;
  max-width: 100%;
}
.embed-video-container .banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.embed-video-container iframe,
.embed-video-container object,
.embed-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* New banner video CSS ends */

.banner-title-wrapper h1,
.banner-title-wrapper {
  font-family: "mulish-bold";
  font-size: 60px;
}

.banner-subtitle-wrapper {
  font-family: "mulish";
  font-size: 40px;
  line-height: 60px;
}
.bannerTextPadding{
   padding-top:	40px;
   padding-bottom: 40px;   
}

/* aaru banner */

 .header-wrapper {
    display: flex;
    align-items: stretch;
    padding: 20px 40px;
}

.left-col {
    display: flex;
    align-items: flex-end;
    padding-left: 30px
}

.big-logo {
    width: 400px;
    height: auto;
}

.right-col {
    position: relative;
    flex: 1;
}

.certifications {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
}

.certifications img {
    width: 100px;
    height: auto;
}

.company-info {
    position: absolute;
    bottom: -110px;
    left: -20px;
    text-align: center;
}

.company-name {
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
    font-family: "bodoni-regular";
}

.tagline {
    font-size: 24px;
    font-style: "bodoni-regular";
    font-weight: 600;
    margin-bottom: .5rem;
}

.iso {
    font-size: 30px;
    font-weight: 900;
    margin-top: 4px;
    font-family: sans-serif;
}


/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

    .header-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .left-col {
        justify-content: center;
        padding-left: 0;
    }

    .big-logo {
        width: 260px;
    }

    .right-col {
        position: static;
        width: 100%;
        text-align: center;
    }

    .certifications {
        position: static;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .certifications img {
        width: 70px;
    }

    .company-info {
        position: static;
        text-align: center;
        margin-top: 15px;
    }

    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 16px;
    }

    .iso {
        font-size: 20px;
        margin-top: 8px;
    }
}

