/* div {
  border: 1px solid red;
} */

.coach .container {
  margin-top: 150px;
  padding-bottom: 50px;
  color: var(--white1);
}

.coach-left {
  width: 100%;
  max-width: 265px;
  margin-right: 10px;
}

.coach-title {
  padding-top: 50px;
  padding-bottom: 50px;
}

.coaches-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-bottom: 50px;
}

.coach-box {
  background-color: var(--grey3);
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: 100%;
  /* max-width: 595px; */
  flex: 450px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

/* News-box animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.coach-box-invisible {
  background-color: transparent;
  height: 0px;
  padding: 0 !important;
}

.coach-btn-more {
  text-align: center;
  margin-bottom: 70px;
  margin-top: 14px;
}

.coach-box {
  padding: 30px;
  padding-top: 20px;
}

.coach-upper {
  display: flex;
  justify-content: space-between;
}

.coach-right {
  width: 162px;
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.coach-right img {
  max-width: none; /* Allow the image to exceed its original width */
  max-height: 100%; /* Set maximum height to 100% of container */
  object-fit: contain; /* Prevents image from deforming while fitting it within the container */
}

.coach-year-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.coach-year-group .year-line {
  margin-right: 10px;
  margin-left: 10px;
  height: 15px;
  width: 1px;
  background-color: var(--green2);
}

.coach-year-group .year-line:last-child {
  display: none;
}

.coach-upper-line {
  width: 100%;
  height: 1px;
  background-color: var(--grey2);
  margin-bottom: 15px;
  max-width: 235px;
}

.coach-license {
  margin-bottom: 5px;
  color: var(--grey1);
}

.coach-name {
  margin-bottom: 5px;
}

.coach-responsibilities {
  margin-bottom: 30px;
  color: var(--green2);
}

.coach-phone,
.coach-email {
  margin-bottom: 15px;
  gap: 10px;
  width: fit-content;
  display: flex;
  align-items: center !important;
}

.coach-email {
  margin-bottom: 35px;
}

.coach-phone a,
.coach-email a {
  text-decoration: none;
  color: var(--white1);
  cursor: pointer;
}

.coach-phone img {
  width: 17px;
  height: 16px;
}

.coach-email img {
  width: 17px;
  height: 14px;
}

.collapsible-coach img {
  width: 13px;
  height: 8px;
  display: flex;
  transition: transform 0.3s ease-out;
}

.collapsible-coach {
  margin-top: -20px;
  color: var(--white1);
  cursor: pointer;
  display: flex;
  gap: 10px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  align-items: center;
}

.content-coach {
  /* border-top: 1px solid var(--green2); */
  /* margin-top: 15px;
  padding-top: 15px; */
  max-height: 0; /* Initial state */
  overflow: hidden;
  color: var(--white1);
  transition: max-height 0.5s ease, opacity 0.5s ease; /* Smooth transition for max-height and opacity */
  opacity: 0; /* Initial state */
}

.expandable-green-line {
  background-color: var(--green2);
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  height: 1px;
}

.coach-hobbies {
  margin-top: 17px;
}

.coach-mobile {
  display: none;
}

@media screen and (max-width: 1150px) {
  .coach .container {
    margin-top: 55px;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 783px) {
  .coach .container {
    margin-top: 55px;
    padding-bottom: 25px;
  }

  .coach-desktop {
    display: none;
  }

  .coach-mobile {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .coach-left {
    width: 100%;
    max-width: 100%;
    margin-right: 0px;
  }

  .coach-title {
    /* H3 */
    font-size: 24px;
    line-height: 27px;
    font-family: "Barlow";
    font-weight: 600;

    padding-top: 30px;
    padding-bottom: 30px;
  }

  .coach-box {
    padding: 20px;
    padding-bottom: 30px;
  }

  .coach-responsibilities {
    margin-bottom: 30px;
  }

  .collapsible-coach {
    margin-top: 0;
  }

  .coaches-container {
    gap: 20px;
    /* 14px padding button */
    margin-bottom: 30px + 14px;
  }

  .couch-btn-more {
    text-align: center;
    padding-bottom: 30px;
  }

  .coach-btn-more {
    text-align: center;
    margin-bottom: 70px;
    margin-top: 24px;
  }

  .coach-upper-line {
    max-width: 100%;
  }

  .coach-email {
    margin-bottom: 15px;
  }

  .coach-phone,
  .coach-email {
    display: flex;
    align-items: center !important;
  }
}
