#employee-block .custom-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
#employee-block .block__content {
  display: flex;
  gap: clamp(20px,1.25vw + 16px, 40px);
}
#employee-block .block__employee {
  position: relative;
  width: 46%;
  flex-shrink: 0;
}
#employee-block .block__employee-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(15px,0.9375vw + 12px, 30px);
}
#employee-block .block__employee .employee__info {
  overflow: hidden;
  position: relative;
  min-height: 1100px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: clamp(15px,0.9375vw + 12px, 30px);
  background: var(--background-light);
}
#employee-block .block__employee .employee__info .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgb(32, 31, 35) 0%, rgba(32, 31, 35, 0.893995098) 18%, rgba(32, 31, 35, 0) 45%, rgba(32, 31, 35, 0) 100%);
}
#employee-block .block__employee .employee__info .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#employee-block .block__employee .employee__image {
  overflow: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#employee-block .block__employee .employee__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: auto;
}
#employee-block .block__employee .employee__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(20px,1.25vw + 16px, 40px);
  margin-top: auto;
  z-index: 2;
}
#employee-block .block__employee .employee__additional-text {
  margin-bottom: clamp(5px,0.3125vw + 4px, 10px);
  color: var(--primary);
}
#employee-block .block__employee .employee__name {
  color: var(--card);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(32px,0.625vw + 30px, 42px);
  line-height: 130%;
}
#employee-block .block__employee .employee__subtitle {
  margin-top: clamp(10px,0.625vw + 8px, 20px);
  color: var(--stroke);
}
#employee-block .block__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#employee-block .block__links .btn-transparent {
  width: 100%;
}
#employee-block .block__links .btn-custom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 14px 35px;
  background-color: var(--accent-dark);
  transition: background-color 0.15s;
}
#employee-block .block__links .btn-custom:hover {
  background-color: var(--hover);
}
#employee-block .block__links .btn-custom:hover .content svg {
  rotate: 45deg;
}
#employee-block .block__links .btn-custom .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--card);
  z-index: 1;
}
#employee-block .block__links .btn-custom .icon img, #employee-block .block__links .btn-custom .icon svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
#employee-block .block__links .btn-custom .content {
  display: flex;
  align-items: center;
  gap: clamp(5px,0.3125vw + 4px, 10px);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px,0.125vw + 13.6px, 16px);
  line-height: 140%;
  color: var(--card);
  transition: color 0.15s;
}
#employee-block .block__links .btn-custom .content svg {
  transition: rotate 0.15s;
}
#employee-block .block__links .btn-custom .content svg path {
  fill: var(--card);
  transition: fill 0.15s;
}
#employee-block .block__texts {
  display: flex;
  flex-direction: column;
  gap: clamp(15px,0.9375vw + 12px, 30px);
  flex-grow: 1;
}
#employee-block .block__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: clamp(10px,5vw + -6px, 90px) clamp(15px,2.8125vw + 6px, 60px);
  border-radius: clamp(15px,1.4375vw + 10.4px, 38px);
  background: var(--background-light);
}
#employee-block .block__text .text__title {
  color: var(--head);
  font-weight: 700;
  font-size: clamp(30px,0.3125vw + 29px, 35px);
  text-transform: capitalize;
  font-family: var(--font-family);
  line-height: 130%;
}
#employee-block .block__text .text-block {
  color: var(--main-text);
  font-weight: 300;
  font-size: 22px;
/*   text-transform: lowercase; */
}

/*============ MEDIA ==================*/
@media (max-width: 1700px) {
  #employee-block .block__employee {
    width: 50%;
  }
  #employee-block .block__employee-wrapper {
    width: 100%;
    height: 100%;
  }
  #employee-block .block__employee .employee__info {
    aspect-ratio: 600/860;
    height: auto;
  }
}
@media (max-width: 1500px) {
  #employee-block .block__content {
    flex-direction: column;
  }
  #employee-block .block__employee {
    max-width: 600px;
    width: auto;
    margin: 0 auto;
  }
  #employee-block .block__employee .employee__info {
    aspect-ratio: 9/12;
    min-height: unset;
    width: 100%;
  }
  #employee-block .block__employee-wrapper {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 769px) {
  #employee-block .block__links {
    grid-template-columns: 1fr;
  }
  #employee-block .block__links .btn-transparent {
    width: 100%;
  }
  #employee-block .block__employee .employee__info {
    min-height: unset;
  }
  #employee-block .block__text .text__title {
  font-size: 20px;
}
}

/*# sourceMappingURL=block.css.map */
