:root {
  --MRTNavy: #000033;
  --MRTGreen: #29B494;
  --LightBlue: #F4FAFC;
  --LightGreen: #E7F6F3;
  --LightPink: #F9F4F4;
  --White: #FFFFFF;
  --SuperLightGrey: #F5F5F5;
  --LightGrey: #EDEDED;
  --MediumGrey: #C1C1C1;
  --DarkGrey: #595959;
  --Black: #171717;
  --Green: #13BE00;
  --Yellow: #FDC602;
  --BurntOrange: #CF3801;
  --Red: #A90000;
  --Success: #E7F9E5;
  --Warning: #FFF9E6;
  --LightOrange: #FFE6CD;
  --Error: #F6E5E5;
  --Purple: #6A0DAD;
  --MRTGradient: linear-gradient(260deg, #BCFCF0 0%, #F8E9E9 100%);
}

#case-study-section {
  padding: 30px 0;
}
#case-study-section a {
  text-decoration: none;
  display: flex;
  border: 1.5px solid var(--MediumGrey);
  border-radius: 10px;
  overflow: clip;
  flex-direction: column;
}
#case-study-section a .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: var(--White);
  width: 100%;
  padding: 20px;
}
#case-study-section a .content .logo-wrapper {
  height: 75px;
  width: auto;
}
#case-study-section a .content .logo-wrapper img {
  height: 100%;
  max-width: unset;
}
#case-study-section a .content img {
  max-width: 150px;
}
#case-study-section a .image {
  width: 100%;
}
#case-study-section a .image img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #case-study-section a {
    flex-direction: row;
  }
  #case-study-section a .content,
  #case-study-section a .image {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #case-study-section {
    flex-direction: row;
    padding: 60px 0;
  }
}

#case-study-hero-section {
  background: var(--MRTGradient);
  padding: 30px 0;
  margin-top: 75px;
  padding-bottom: 105px;
}
#case-study-hero-section .logo {
  width: 100%;
  height: auto;
  max-width: 150px;
}
#case-study-hero-section {
  position: relative;
}
#case-study-hero-section .left-detail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#case-study-hero-section .left-detail img {
  height: 75%;
}
#case-study-hero-section .right-detail {
  position: absolute;
  bottom: -100px;
  right: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#case-study-hero-section .right-detail img {
  height: 100%;
}
@media (min-width: 768px) {
  #case-study-hero-section .left-detail,
  #case-study-hero-section .right-detail {
    display: block;
  }
}
@media (min-width: 992px) {
  #case-study-hero-section {
    padding: 60px 0;
    padding-bottom: 135px;
  }
}

#case-study-floating-section {
  margin-top: -100px;
}
#case-study-floating-section .floating-content {
  padding: 16px;
}
#case-study-floating-section .floating-content img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 992px) {
  #case-study-floating-section .floating-content {
    border-radius: 10px;
    padding: 30px;
    background-color: var(--White);
  }
}