.hero {
  max-width: 1440px;
  margin: 0 auto;
}
.hero__container {
  display: flex;
  gap: 130px;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 80px;
}
.hero__block--left {
  width: 40%;
  flex-shrink: 0;
  border-radius: 94px;
}
.hero__block--left img {
  max-height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: 94px;
  aspect-ratio: 1.0887;
  object-position: center center;
}
.hero__block--right {
  width: 53%;
  flex-shrink: 0;
}
.hero__title {
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  margin-bottom: 4%;
  line-height: 1.2;
}
.hero__subtitle {
  color: #707070;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 6%;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .hero__container {
    padding: 0 7%;
  }
  .hero__block--left img {
    max-height: 500px;
  }
  .hero__title {
    font-size: 2.75rem;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .hero {
    max-width: 100%;
  }
  .hero__container {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0 45px;
    align-items: center;
    width: 100%;
  }
  .hero__block--left {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    height: 40vh;
    border-radius: 35px;
  }
  .hero__block--left img {
    width: 100%;
    height: 100%;
    border-radius: 35px;
  }
  .hero__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .hero__title {
    font-size: 2.75rem;
    margin-bottom: 2%;
  }
  .hero__subtitle {
    margin: 0 auto 4% auto;
  }
  .hero__button {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: calc(780px - 1px)) {
  .hero {
    max-width: 100%;
  }
  .hero__container {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 24px;
    width: 100%;
  }
  .hero__block--left {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    height: 40vh;
    border-radius: 35px;
  }
  .hero__block--left img {
    width: 100%;
    height: 100%;
    object-position: center center;
    border-radius: 35px;
  }
  .hero__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 2%;
  }
  .hero__subtitle {
    font-size: 0.875rem;
    margin: 0 auto 4% auto;
  }
  .hero__button {
    width: 100%;
    max-width: 250px;
  }
}
.why-join {
  max-width: 1440px;
  margin: 0 auto;
}
.why-join__container {
  background-color: #F7F0E5;
  border-radius: 35px;
  padding: 60px 40px;
  margin-bottom: 80px;
}
.why-join__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #2A2C29;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  text-align: center;
  margin-bottom: 16px;
}
.why-join__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #707070;
  text-align: center;
  margin-bottom: 48px;
}
.why-join__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-join__item {
  position: relative;
  overflow: hidden;
  background-color: #F8F7F4;
  border-radius: 35px;
  padding: 50px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.why-join__item::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 160px;
  font-weight: 900;
  color: #137461;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.why-join__item:hover {
  background-color: #DD9127;
}
.why-join__item:hover::before {
  opacity: 0.12;
  color: #F8F7F4;
}
.why-join__item:nth-child(1):hover {
  transform: rotate(-2deg);
}
.why-join__item:nth-child(2):hover {
  transform: rotate(2deg);
}
.why-join__item:nth-child(3):hover {
  transform: rotate(-2deg);
}
.why-join__item-title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #DD9127;
  -webkit-text-stroke: 1px #DD9127;
  -webkit-text-fill-color: #DD9127;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease, -webkit-text-fill-color 0.3s ease;
}
.why-join__item-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #707070;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.why-join__item:hover .why-join__item-title {
  color: #F8F7F4;
  -webkit-text-stroke: 1px #F8F7F4;
  -webkit-text-fill-color: #F8F7F4;
}
.why-join__item:hover .why-join__item-text {
  color: rgba(248, 247, 244, 0.85);
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .why-join {
    max-width: 100%;
    padding: 0 7%;
  }
  .why-join__item::before {
    font-size: 120px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .why-join {
    max-width: 100%;
    padding: 0 45px;
  }
  .why-join__container {
    padding: 40px 30px;
    margin-bottom: 0;
    border-radius: 35px 35px 0 0;
  }
  .why-join__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-join__item {
    border-radius: 28px;
    padding: 30px 24px;
  }
  .why-join__item::before {
    font-size: 100px;
    top: 10px;
  }
  .why-join__item:nth-child(1):hover, .why-join__item:nth-child(2):hover, .why-join__item:nth-child(3):hover {
    transform: none;
  }
}
@media (max-width: calc(780px - 1px)) {
  .why-join {
    max-width: 100%;
    padding: 0 24px;
  }
  .why-join__container {
    padding: 32px 20px;
    margin-bottom: 0;
    border-radius: 35px 35px 0 0;
  }
  .why-join__title {
    font-size: 1.875rem;
  }
  .why-join__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .why-join__item {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .why-join__item::before {
    font-size: 80px;
    top: 10px;
  }
  .why-join__item:nth-child(1):hover, .why-join__item:nth-child(2):hover, .why-join__item:nth-child(3):hover {
    transform: none;
  }
  .why-join__item-title {
    font-size: 1.375rem;
  }
}
.jobs {
  max-width: 1440px;
  margin: 0 auto 80px auto;
}
.jobs__container {
  background-color: #137461;
  border-radius: 35px;
  padding: 60px 40px;
}
.jobs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.jobs__header-text {
  flex: 0 0 480px;
  max-width: 480px;
}
.jobs__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #F8F7F4;
  -webkit-text-stroke: 1px #F8F7F4;
  -webkit-text-fill-color: #F8F7F4;
  margin-bottom: 12px;
}
.jobs__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(248, 247, 244, 0.7);
}
.jobs__search {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: unset;
  width: unset;
}
.jobs__search-bar {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.jobs__search-icon {
  position: absolute;
  left: 18px;
  color: rgba(248, 247, 244, 0.6);
  pointer-events: none;
  flex-shrink: 0;
}
.jobs__search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 35px;
  padding: 14px 20px 14px 48px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #F8F7F4;
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.jobs__search-input::placeholder {
  color: rgba(248, 247, 244, 0.45);
}
.jobs__search-input:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}
.jobs__filters {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
}
.jobs__filter-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
}
.jobs__filter-arrow {
  position: absolute;
  right: 16px;
  color: rgba(248, 247, 244, 0.6);
  pointer-events: none;
  flex-shrink: 0;
}
.jobs__filter {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 35px;
  padding: 12px 40px 12px 20px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #F8F7F4;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.jobs__filter option {
  background-color: #137461;
  color: #F8F7F4;
}
.jobs__filter:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}
.jobs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.jobs__card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.jobs__card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}
.jobs__card--featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 60px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.jobs__card--featured .jobs__card-header {
  grid-column: 1;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.jobs__card--featured .jobs__card-description {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.25rem;
}
.jobs__card--featured .jobs__card-footer {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}
.jobs__card--featured .jobs__card-title {
  font-size: 2.5rem;
}
.jobs__card--featured .jobs__card-contract {
  align-self: flex-start;
}
.jobs__card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jobs__card-contract {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #137461;
  background-color: #F8F7F4;
  border-radius: 35px;
  padding: 6px 16px;
  width: fit-content;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.jobs__card:hover .jobs__card-contract {
  background-color: #DD9127;
  color: #F8F7F4;
}
.jobs__card-title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #F8F7F4;
  -webkit-text-stroke: 1px #F8F7F4;
  -webkit-text-fill-color: #F8F7F4;
  line-height: 1.2;
}
.jobs__card-description {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(248, 247, 244, 0.75);
  line-height: 1.6;
  flex: 1;
}
.jobs__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.jobs__card-location {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 247, 244, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}
.jobs__card-location svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.jobs__no-results {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
.jobs__no-results-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(248, 247, 244, 0.6);
  text-align: center;
}
.jobs__spontaneous {
  margin-top: 32px;
  padding: 24px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.jobs__spontaneous-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(248, 247, 244, 0.75);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .jobs {
    max-width: 100%;
    padding: 0 7%;
  }
  .jobs__card--featured .jobs__card-title {
    font-size: 2.1875rem;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .jobs {
    max-width: 100%;
    padding: 0;
    margin-bottom: -54px;
  }
  .jobs__container {
    padding: 48px 45px 108px 45px;
    border-radius: 35px 35px 0 0;
  }
  .jobs__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .jobs__header-text {
    flex: unset;
    max-width: 100%;
  }
  .jobs__search {
    width: 100%;
    flex-direction: row;
  }
  .jobs__filter-wrapper {
    flex: 1;
    width: auto;
  }
  .jobs__list {
    grid-template-columns: 1fr;
  }
  .jobs__spontaneous {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }
  .jobs__spontaneous .button {
    width: 100%;
  }
  .jobs__card:hover {
    transform: none;
  }
  .jobs__card--featured {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .jobs__card--featured .jobs__card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-column: unset;
    grid-row: unset;
  }
  .jobs__card--featured .jobs__card-description {
    grid-column: unset;
    grid-row: unset;
  }
  .jobs__card--featured .jobs__card-footer {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
  }
  .jobs__card--featured .jobs__card-title {
    font-size: 1.875rem;
  }
}
@media (max-width: calc(780px - 1px)) {
  .jobs {
    max-width: 100%;
    padding: 0;
    margin-bottom: -54px;
  }
  .jobs__container {
    padding: 40px 24px 94px 24px;
    border-radius: 35px 35px 0 0;
  }
  .jobs__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
  .jobs__header-text {
    flex: unset;
    max-width: 100%;
  }
  .jobs__title {
    font-size: 2.5rem;
  }
  .jobs__subtitle {
    font-size: 0.875rem;
  }
  .jobs__search {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .jobs__search-bar {
    width: 100%;
  }
  .jobs__search-input {
    width: 100%;
  }
  .jobs__filters {
    flex-direction: row;
    width: 100%;
  }
  .jobs__filter-wrapper {
    flex: 1;
    width: auto;
  }
  .jobs__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .jobs__spontaneous {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
    padding: 20px 24px;
    margin-top: 24px;
  }
  .jobs__spontaneous .button {
    width: 100%;
  }
  .jobs__card {
    padding: 24px;
  }
  .jobs__card:hover {
    transform: none;
  }
  .jobs__card--featured {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .jobs__card--featured .jobs__card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-column: unset;
    grid-row: unset;
  }
  .jobs__card--featured .jobs__card-description {
    font-size: 1.125rem;
    grid-column: unset;
    grid-row: unset;
  }
  .jobs__card--featured .jobs__card-footer {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .jobs__card--featured .jobs__card-footer .button {
    width: 100%;
    text-align: center;
  }
  .jobs__card--featured .jobs__card-title {
    font-size: 1.875rem;
  }
  .jobs__card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .jobs__card-footer .button {
    width: 100%;
    text-align: center;
  }
}
