.page-content3 {
  background-color: var(--SECONDARY_MINOR_COLOR);
}

.page-content3__container {
  margin: 0px auto;
  padding: 25px 20px;
  max-width: var(--CONTAINER_WIDTH);
}

.page-content3__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  transition: all 0.3s ease 0s;
  margin-bottom: 20px;
  color: var(--SECONDARY_MAJOR_COLOR);
  font-family: var(--TITLE_FONT);
}

@media (min-width: 576px) {
  .page-content3__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .page-content3__tabs {
    display: flex;
  }
}

.page-content3__tab-links {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .page-content3__tab-links {
    margin-right: 60px;
  }
}

.page-content3__link {
  padding: 20px 40px;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all 0.3s ease 0s;
  text-decoration: var(--TEXT_DECORATION);
  border: 2px solid var(--PRIMARY_MAJOR_COLOR);
  color: var(--PRIMARY_MAJOR_COLOR);
}

.page-content3__link:hover {
  border: 2px solid var(--PRIMARY_MINOR_COLOR);
  color: var(--PRIMARY_MINOR_COLOR);
}

.page-content3__link.active {
  border: 2px solid var(--PRIMARY_MAJOR_COLOR);
  background-color: var(--PRIMARY_MAJOR_COLOR);
  color: var(--PRIMARY_MINOR_COLOR);
}

.page-content3__link.active:hover {
  opacity: 0.8;
}

.page-content3__tab-pane {
  display: none;
}

.page-content3__tab-pane.active {
  display: block;
}

.page-content3__pane-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
  transition: all 0.3s ease 0s;
  color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 576px) {
  .page-content3__pane-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.page-content3__text {
  font-size: 14px;
  line-height: 140%;
  transition: all 0.3s ease 0s;
  margin-bottom: 10px;
  color: var(--TEXT_COLOR);
}

@media (min-width: 576px) {
  .page-content3__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.page-content3__text:last-child {
  margin: 0;
}

.page-content3__picture {
  margin-bottom: 10px;
  transition: all 0.3s ease 0s;
}

@media (min-width: 576px) {
  .page-content3__picture {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .page-content3__picture {
    width: 100%;
    height: 300px;
  }
}

.page-content3__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
