h2 {
  font-weight: 600;
  font-size: calc(20px + 16 * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #243d3a;
  text-align: center;
}

/* programs_nav */
.programs_nav {
  width: 100%;
  padding: 0 15px;
  background: linear-gradient(91.45deg, #3e635f 34.69%, #314e4b 65.81%);
}
.programs_nav .container {
  display: flex;
  flex-direction: column;

  padding: 30px 0;
}
.programs_nav_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.programs_nav_item {
  display: flex;
  gap: 15px;
}
.programs_nav_item div {
  padding: 10px 15px;
  border: 1px solid #537f7a;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
.programs_nav_btn_items {
  display: none;
}
/* programs_nav */
/* programs_posts */
.programs_posts {
  width: 100%;
  padding: 40px 15px 50px;
}

.programs_posts h1 {
  font-weight: 600;
  font-size: calc(32px + 6 * ((100vw - 370px) / (1920 - 370)));
  line-height: 120%;
  color: #243d3a;
  text-align: center;
  margin-bottom: 40px;
}
.programs_posts h1 span {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  color: #967340;
}
.archive_programs_items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.programs_nav_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.archive_programs_item {
  width: calc(100% / 4 - 60px / 4);
  background-color: white;
  cursor: pointer;
  box-shadow: 0px 5px 80px rgba(161, 189, 225, 0.21);
  transition: 0.5s all;
}
.archive_programs_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.archive_programs_img img {
  width: 100%;
  height: 100%;
}

.archive_programs_tag {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: #9c7130;
  opacity: 0.9;
  border-radius: 20px 0px;
  padding: 10px;
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.archive_programs_item_content {
  padding: 15px 15px 30px 15px;
}
.archive_programs_item_content a {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #2d4744;
  margin-bottom: 8px;
  display: block;
  transition: 0.5s color;
  text-decoration: none;
}
.archive_programs_item_content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #6c6c6c;
  margin-bottom: 4px;
}
.archive_programs_item_content p span {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #10181b;
}
.archive_programs_item_popular {
  position: absolute;
  top: 13px;
  right: -32px;
  width: 120px;
  background-color: red;
  transform: rotate(45deg);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
}
/* programs_posts */
/* programs_conversion_block */
.programs_conversion_block {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #3e635f;
  position: relative;
}
.programs_conversion_block_bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0% 100%);
}

.programs_conversion_block_title {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  font-weight: 700;
  font-size: calc(16px + 8 * ((100vw - 370px) / (1920 - 370)));
  line-height: 140%;
  color: white;
  position: relative;
}
.programs_conversion_block_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.programs_conversion_block_btn {
  font-weight: 700;
  font-size: calc(14px + 4 * ((100vw - 370px) / (1920 - 370)));
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ab885d;
  color: white;
  padding: 15px 25px;
  cursor: pointer;
  transition: all linear 0.2s;
  position: relative;
}

/* programs_conversion_block */
/* call_to_action_wrapper */
.call_to_action_wrapper {
  width: 100%;
  padding: 0 15px;
}
.call_to_action_wrapper .call_to_action {
  margin: 0;
}
/* call_to_action_wrapper */
@media (hover: hover) {
  .archive_programs_tag {
    backdrop-filter: blur(300px);
  }
  .programs_conversion_block_btn:hover {
    background-color: #7e6546;
  }

  .archive_programs_item_content a:hover {
    color: #967340;
    transition: 0.5s color;
  }
  .archive_programs_item:hover {
    box-shadow: 0px 4px 20px rgba(4, 4, 4, 0.25);
  }
  .programs_nav_item div:hover {
    border: 1px solid rgba(171, 136, 93, 0.5);
    background: rgba(171, 136, 93, 0.5);
  }
}
@media screen and (max-width: 1200px) {
  .programs_nav_item {
    justify-content: center;
  }
  .programs_nav_item div {
    padding: 10px;
    font-size: 12px;
    text-align: center;
  }

  .programs_nav_item {
    gap: 10px;
  }
  .programs_nav_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .programs_nav_title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .archive_programs_item {
    width: calc(100% / 3 - 40px / 3);
  }
  .programs_conversion_block {
    order: 10 !important;
  }
}
@media screen and (max-width: 1000px) {
  .call_to_action {
    width: 100%;
    margin: 20px 0;
  }
  .programs_nav_item {
    justify-content: flex-start;
  }
  .programs_conversion_block_title {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 900px) {
  .archive_programs_item {
    width: calc(100% / 2 - 20px / 2);
  }
  .programs_conversion_block {
    order: 9 !important;
  }
  .programs_conversion_block {
    margin: 10px 0;
  }
  .call_to_action {
    margin: 10px 0;
  }
}
@media screen and (max-width: 800px) {
  .programs_posts h1 {
    margin-bottom: 30px;
  }
  .programs_nav_btn_items {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .programs_nav_btn_item {
    border: 1px solid #537f7a;
    min-width: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    position: relative;
  }
  .programs_nav_btn_item::after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: rotate(135deg) translate(-50%, 50%);
  }
  .programs_nav_btn_item_active::after {
    transform: rotate(-45deg) translate(0%, 0%);
  }
  .programs_nav_title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .programs_nav_item_wrap {
    position: relative;
  }
  .programs_nav_item {
    position: absolute;
    flex-direction: column;
    background: linear-gradient(91.45deg, #3e635f 34.69%, #314e4b 65.81%);
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    z-index: 1;
    max-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .programs_nav_item_active {
    max-height: 1000px;
    padding: 15px;
  }
  .programs_nav_item div {
    text-align: start;
  }
}
@media screen and (max-width: 600px) {
  .programs_conversion_block {
    flex-direction: column;
  }
  .programs_conversion_block_title {
    text-align: center;
    width: 100%;
    padding: 0;
    padding: 30px 30px 20px 30px;
  }
  .programs_conversion_block_btn_wrap {
    padding: 0 30px 30px 30px;
    width: 100%;
  }
  .programs_conversion_block_bg {
    opacity: 1;
    clip-path: none;
    position: static;
    aspect-ratio: 8/3;
    width: 100%;
    background-position: top;
  }
  .archive_programs_item {
    width: 100%;
  }
  .archive_programs_item_content {
    padding: 10px 10px 20px 10px;
  }
}
@media screen and (max-width: 400px) {
  .programs_conversion_block_title {
    text-align: center;
    width: 100%;
    padding: 0;
    padding: 30px 20px 20px 20px;
  }
  .programs_conversion_block_btn_wrap {
    padding: 0 20px 30px 20px;
    width: 100%;
  }
  .programs_nav_btn_items {
    flex-direction: column;
  }
  .programs_nav_btn_item {
    width: 100%;
  }
}
