.section.mission {
    background-color: var(--brand-bg);
    color: #eddfcc;
}

.mission__title,
.mission__statement {
    color: #eddfcc;
}

.mission__title {
    font-size: 58px;
    line-height: 78px;
    margin-bottom: 74px;
}

@media (max-width: 575.98px) {
  .mission__title {
    font-size: 33px;
    line-height: 50px;
  }
  .mission__title--handwritten {
    font-size: 4rem;
    line-height: normal;
  }
}

.mission__title::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('../images/common/dot.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    bottom: -44px;
    left: calc(50% - 8px);
}

.mission__statement {
    text-align: start;
    margin: 0 auto;
    font-weight: 100;
    font-size: 21px;
    line-height: 28px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: initial;
}

@media (max-width: 575.98px) {
  .mission__statement {
      font-size: 18px;
      line-height: 28px;
      padding-left: 20px;
      padding-right: 20px;
      text-align: center;
  }
}


.mission__stamp {
    width: 280px;
    height: 320px;
    background-image: url('../images/mission/stamp-ar.png');
    background-repeat: no-repeat;
    background-size: contain;
    top: -98px;
    right: 40px;
}

@media (max-width: 575.98px) {
    .mission__stamp {
        width: 190px;
        height: 150px;
        top: -55px;
        right: 0;
    }
}

/* Mission Carousel */
.mission__carousel-container {
    position: relative;
    overflow: hidden;
    margin: 43px 50px 20px;
}

@media (max-width: 575.98px) {
  .mission__carousel-container {
    margin: 43px 7px 20px;
  }
}

.mission__carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.mission__rounded-container {
    border: 1px solid #eddfcc;
    padding: 50px 150px 50px 40px;
    border-radius: 38px 38px 0 0;
    flex: 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission__rounded-container.active {
    opacity: 1;
}

@media (max-width: 575.98px) {
  .mission__rounded-container {
      padding: 40px 30px 70px 30px;
  }
}

.mission__rounded-container h4{
    font-size: 57px;
    line-height: 56px;
    text-decoration: underline;
    text-underline-offset: 12px;
}

.mission__rounded-container h5{
    font-size: 43px;
    line-height: 61px;
    margin-bottom: 38px;
}

.mission__text {
    font-size: 25px;
    margin-bottom: 0;
    line-height: 29px;
}

@media (max-width: 575.98px) {
  .mission__rounded-container h4 {
    font-size: 35px;
    line-height: 56px;
    text-decoration: underline;
    text-underline-offset: 8px;
  }

  .mission__rounded-container h5 {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 1rem;
      margin-top: 1rem;
  }
  .mission__text {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: normal;
  }
}

.mission__carousel-arrow {
  position: absolute;
  bottom: 2%;
  right: 20px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  border: 0 none;
}
  
@media (max-width: 575.98px) {
  .mission__carousel-arrow {
    bottom: -14px;
  }
}
  
.mission__carousel-arrow:hover {
  background: rgba(237, 223, 204, 0.2);
  transform: translateY(-50%) scale(1.1);
}