/* Do not show card-back on PC */
@media (min-width: 768px){
  .card-back{
    display: none;
  }

  .our_clinic_description_break{
    display: none;
  }
}

.about_us_landing_description{
  animation: textFadeIn 1s ease-out forwards; /* Reduced from 0.5s to 0.3s */
}

.left_content {
  order: 1; 
  margin-left: 13vw; 
}

.right_content {
  order: 2; 
  margin-right: 13vw; 
}


.about_us_intro {
  margin-bottom: 12%;
}

.about_us_intro h1 {
  margin: 0;
  text-align: center;
}

.about_us_intro p {
  position: relative;
  margin: -1rem auto;
  text-align: center;
  font-size: clamp(1vw, 1.6vw, 25px);
  font-weight: 450;
  width: 60%;
  line-height: 1.5;
  padding-bottom: 17rem;
  color: black;
}

.about_us_intro p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.center-circle,
.about_us_intro_header {
  color: var(--cclec_green);
  display: grid;
  place-items: center;
  font-weight: 450;
  font-size: clamp(3vw, 4vw, 60px);
  width: 100%;
  border-radius: var(--icon-size);
  box-shadow: 0 10px 30px rgba(var(--black), .1), inset 0 0 0 4px var(--white), inset 0 0 0 5px var(--bgColor);
}

.center-circle {
  margin-top: 0;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}


.container {
  width: 310px;
  height: 310px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

/* Our Clinic (SECTION) */
.our_clinic_header {
  text-align: center;
  margin-bottom: 2rem !important;
  position: relative;
  padding-top: 0rem;
}

/* Green line above header */
.our_clinic_header::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 255, 0, 0), var(--cclec_green), rgba(0, 255, 0, 0));
}

.our_clinic p {
  font-size: clamp(1vw, 1.47vw, 23px);
  width: 100%;
  text-align: justify;
  line-height: 1.7;
}

.our_clinic img {
  height: auto;
  width: 25vw;
}

/* Our Team (SECTION) */
.our_team {
  margin-bottom: 5rem;
  overflow-x: hidden;
}

.our_team h1 {
  margin: 0 auto;
  text-align: center;
  font-size: 40px;
  margin-top: 6rem;
  width: 600px;
  position: relative;
  padding-top: 4rem;
}

.our_team h1::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 255, 0, 0), var(--cclec_green), rgba(0, 255, 0, 0));
}


/* Big screens */ 
@media (min-width: 1500px){
  .left_content {
    margin-left: 20vw !important; 
  }
  
  .right_content {
    margin-right: 20vw !important; 
  }
}
