.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.object-fit-cover {
  object-fit: cover;
}
.object-fit-contain {
  object-fit: contain;
}
.width-100 {
  width: 100%;
}
.height-100 {
  height: 100%;
}
.overflow-hidden {
  overflow: hidden;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: start;
}
.align-items-end {
  align-items: end;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.section-gap {
  padding-block: clamp(50px, 5vw + 0.5em, 100px);
}
.section-gap-sm {
  padding-block: clamp(25px, 2.5vw + 0.5em, 50px);
}
.section-gap-lg {
  padding-block: clamp(75px, 7.5vw + 0.5em, 150px);
}
.z--1 {
  z-index: -1;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.m-0{
  margin: 0;
}
.mt-0{
  margin-top: 0;
}
.mb-0{
  margin-bottom: 0;
}
.mt-auto{
  margin-top: auto;
}
.md-message {
  position: relative;
  overflow: hidden;
  /* padding-top: 10em; */
}
/* .md-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
} */
.md-message .content-div {
  position: relative;
  /* display:grid;
  grid-template-columns: repeat(2, 1fr); */
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  gap: 4em;
  overflow: hidden;
  @media (max-width: 992px) {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  @media (min-width: 1366px) {
    gap: 6em;
  }
  h2{
    font-size: clamp(24px, 2.5vw + 0.5em, 30px);
    margin-top: 0;
    line-height: 1.2;
    margin-bottom: clamp(0.5em, 1vw + 0.5em, 3em);
  }
p{
  font-size: clamp(16px, 1.5vw + 0.5em, 16px);
  line-height: 1.5;
}
.signature{
}
.signature h3{
  font-size: clamp(24px, 2.5vw + 0.5em, 20px);
  line-height: 1.2;
  margin-bottom: 0;
}
.signature p{
  font-size: clamp(16px, 1.5vw + 0.5em, 16px);
  line-height: 1.5;
}
.content-col{
  flex:2;
  display: flex;
  flex-direction: column;
 @media (max-width: 992px) {
  order: 2;
 } 
}
.img-col{
 height: auto;
  flex:1;
  position: relative;

 @media (max-width: 992px) {
  order: 1;
 } 
}
.img-col img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  @media (max-width: 992px) {
    position: relative;
    max-height: 50vh;
    width: auto;
  }
  @media (min-width: 1366px) {
    min-height: 50vh;
  }
}
}
