: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%);
}

#lets-talk-header {
  background: var(--MRTGradient);
  padding: 30px 0;
  margin-top: 75px;
  position: relative;
}
#lets-talk-header .left-detail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#lets-talk-header .left-detail img {
  height: 100%;
}
#lets-talk-header .right-detail {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#lets-talk-header .right-detail img {
  height: 100%;
}
@media (min-width: 768px) {
  #lets-talk-header .left-detail,
  #lets-talk-header .right-detail {
    display: block;
  }
}
@media (min-width: 992px) {
  #lets-talk-header {
    padding: 60px 0;
    height: 300px;
  }
}

#lets-talk-floating-section {
  padding-bottom: 60px;
}
#lets-talk-floating-section .floating-content-card {
  z-index: 1;
  padding: 15px !important;
  background-color: white;
  border-radius: 10px;
  box-shadow: none;
}
#lets-talk-floating-section .floating-content-card .content-wrapper {
  padding: 1.5rem;
  border-radius: 15px;
  background-color: var(--LightPink) !important;
  display: grid;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  #lets-talk-floating-section .floating-content-card .content-wrapper {
    padding: 2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  #lets-talk-floating-section .floating-content-card {
    position: relative;
    padding: 30px !important;
    box-shadow: 0px 1px 8px 3px rgba(23, 23, 23, 0.2);
    z-index: 2;
    margin-top: -75px;
  }
}
@media (min-width: 1340px) {
  #lets-talk-floating-section .floating-content-card {
    width: 100%;
  }
}