/* ----------MD------------ */
.md {
  box-sizing: border-box;
  background-color: #F6F6F6;
  width: 100%;
  margin: auto;
  padding: 60px;
  text-align: left;
}

.md-container {
  display: flex;
}

.md-container>div:nth-child(1) {
  width: 60%;
  padding: 0.5rem 17px 0.5rem 0px;
}

.md-container>.md-img {
  width: 40%;
  height: 75vh;
  /* height: 90vh; */
  overflow: hidden;
}

.md-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.md-icon {
  height: 42px;
  width: auto;
  /* margin-bottom: 10px; */
}

.md-label {
  font-size: 20px;
  font-weight: bold;
  /* letter-spacing: -2.2; */
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #131527;
}

.md-title {
  font-size: 36px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #131527;
  margin-bottom: 0px;
}

.md-subtitle {
  margin-top: 0px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 16px;
  /* letter-spacing: -2.2%; */
  line-height: 150%;
}


.md-text {
  font-size: 16px;
  color: #000000;
  line-height: 150%;
  margin-bottom: 15px;
  /* font-family: 500; */
  font-weight: 500;
  letter-spacing: -0.022em;
}

.md-accordion {
  margin-top: 20px;
  /* border-top: 1px solid #ddd; */
}

.md-accordion-item {
  border-bottom: 1px solid #000000;
}

.md-accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5px;
  line-height: 150%;
  letter-spacing: -0.022em;
}

.md-accordion-header:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none !important;
}

.md-accordion-arrow {
  transition: transform 0.3s ease;
  height: 20px;
  width: 20px;
}

.md-accordion-item.active .md-accordion-arrow {
  transform: rotate(180deg);
}

.md-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.md-accordion-content ul li {
  padding: 5px 0;
  line-height: 120%;
  letter-spacing: -0.022em;
}

.md-accordion-content p {
  padding: 10px 0;
  margin: 0;
  color: #000000;
  font-weight: 500;
}

.dr-approach {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  /* margin-top: 3rem; */
  max-width: 70%;
  margin: 3rem auto 24px;
}

.dr-quote {
  font-family: "Cormorant", serif;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  font-style: italic;
  max-width: 70%;
  margin: auto;
  /* letter-spacing: 0%; */
}


@media (max-width: 1024px) {

  .md-container {
    flex-direction: column;
  }

  .md-accordion {
    margin-bottom: 20px;
  }

  .md-container>div:nth-child(1) {
    width: 100%;
    padding: 0rem;
  }

  .md-container>.md-img {
    width: 50%;
    height: auto;
    margin: 1rem auto;
  }

  .dr-approach {
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 768px) {
  .md {
    padding: 60px 60px 30px 60px;
  }

  .md-title {
    font-size: 26px;
  }

  .dr-quote {
    font-size: 26px;
    max-width: 100%;
  }

  .md-container>.md-img {
    width: 100vh;
    /* height: 40vh; */
  }
}

@media (max-width: 600px) {
  .md-container>.md-img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 425px) {
  .md {
    padding: 20px;
  }

}