/* Section Wrapper */
.mba-methodology-section {
  position: relative;
  min-height: 555px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
}

/* Dark Overlay */
.mba-methodology-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

/* Text */
.mba-methodology-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2rem 0;
}

.mba-methodology-text {
  margin-top: 245px;
}

.mba-methodology-text h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px 0;
}

.mba-methodology-text a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.2s ease-in-out;
}
.mba-methodology-text a:hover {
  color: #0b6;
}

/* Diagram Image */
.diagram-img {
  display: block;
  max-height: 750px;
  width: auto;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 992px) {
  .diagram-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-45%);
    max-height: 750px;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .mba-methodology-text {
    margin-top: 120px;
  }
  .mba-methodology-text h2 {
    font-size: 42px;
  }
  .diagram-img {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    max-height: 550px;
    margin: 30px auto 0;
  }
}

@media (max-width: 767.98px) {
  .mba-methodology-text {
    margin-top: 80px;
    text-align: center;
  }
  .mba-methodology-text h2 {
    font-size: 34px;
  }
  .mba-methodology-text a {
    font-size: 12px;
  }
  .diagram-img {
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 30px;
  }
}