.main_post {
  margin: 42px 0 52px;
}
@media (max-width: 1199px) {
  .main_post {
    margin: 14px 0 60px;
  }
}
@media (max-width: 599px) {
  .main_post {
    margin: 20px 0 36px;
  }
}
.main_post .wrapper {
  display: grid;
  grid-template-columns: 500fr 864fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 1199px) {
  .main_post .wrapper {
    gap: 16px;
    padding: 0 40px;
  }
}
@media (max-width: 899px) {
  .main_post .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 599px) {
  .main_post .wrapper {
    padding: 0 30px;
  }
}
.main_post .media {
  position: relative;
  width: 100%;
}
.main_post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 500/370;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 899px) {
  .main_post .media .post_thumb {
    aspect-ratio: 685/310;
  }
}
@media (max-width: 599px) {
  .main_post .media .post_thumb {
    aspect-ratio: 298/138;
  }
}
.main_post .media .category {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: var(--style);
  border-radius: 8px;
  padding: 6px 16px;
  background: var(--0b3948);
  position: absolute;
  top: 20px;
  left: 22px;
}
@media (max-width: 899px) {
  .main_post .media .category {
    padding: 5px 34px;
    left: 27px;
  }
}
@media (max-width: 599px) {
  .main_post .media .category {
    font-size: 11px;
    padding: 0 6px;
    top: 9px;
    left: 12px;
  }
}
.main_post .content {
  width: 100%;
  max-width: 828px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main_post .content .post_date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
  padding: 3px 16px;
  border-radius: 8px;
  background: var(--style);
}
.main_post .content .post_title {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .main_post .content .post_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .main_post .content .post_title {
    font-size: 16px;
    padding-right: 40px;
  }
}
.main_post .content .post_excerpt {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1199px) {
  .main_post .content .post_excerpt {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .main_post .content .post_excerpt {
    font-size: 14px;
  }
}
.main_post .content .read_more {
  margin-top: 36px;
  min-width: 185px;
  padding: 0 50px;
  height: 48px;
  border-radius: 8px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--style);
}
@media (max-width: 1199px) {
  .main_post .content .read_more {
    margin-top: 20px;
    min-width: 175px;
    padding: 0 45px;
    height: 44px;
  }
}
@media (max-width: 599px) {
  .main_post .content .read_more {
    min-width: 138px;
    padding: 0 32px;
    height: 40px;
    font-size: 14px;
  }
}
.main_post .content .read_more:hover {
  background: #6D7758;
}

.banner {
  margin: 52px 0;
}
@media (max-width: 1199px) {
  .banner {
    margin: 60px 0 40px;
  }
}
@media (max-width: 767px) {
  .banner {
    margin: 35px 0 14px;
  }
}
@media (max-width: 1199px) {
  .banner .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .banner .wrapper {
    padding: 0 30px;
  }
}
.banner .banner_wrapper {
  background-color: #eeeae5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-left: 24px;
  padding-right: 40px;
  border-radius: 8px;
}
@media (max-width: 1419px) {
  .banner .banner_wrapper {
    gap: 24px;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper {
    padding: 10px 26px 10px 14px;
    gap: 20px;
    align-items: start;
    justify-content: space-evenly;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper {
    width: calc(100% + 60px);
    margin: 0 -30px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
    padding: 16px 30px;
  }
}
.banner .banner_wrapper .img {
  width: 290px;
  height: auto;
  max-height: 100%;
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .img {
    width: 144px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .img {
    width: 84px;
  }
}
.banner .banner_wrapper .col_1 {
  max-width: 284px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_1 {
    max-width: 200px;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_1 {
    max-width: 147px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_1 {
    max-width: initial;
  }
}
.banner .banner_wrapper .col_1 .title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_1 .title {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_1 .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_1 .title {
    font-size: 16px;
  }
}
.banner .banner_wrapper .col_1 .desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_1 .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_1 .desc {
    font-size: 12px;
  }
}
.banner .banner_wrapper .col_2 {
  max-width: 284px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_2 {
    max-width: 186px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_2 {
    max-width: initial;
  }
}
.banner .banner_wrapper .col_2 .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_2 .title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_2 .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_2 .title {
    font-size: 16px;
  }
}
.banner .banner_wrapper .col_2 .desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_2 .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_2 .desc {
    font-size: 12px;
  }
}
.banner .banner_wrapper .col_3 {
  max-width: 296px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_3 {
    max-width: 115px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_3 {
    max-width: initial;
    width: 100%;
    gap: 9px;
  }
}
.banner .banner_wrapper .col_3 .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_3 .title {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_3 .title {
    font-size: 20px;
    line-height: 125%;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_3 .title {
    font-size: 16px;
  }
}
.banner .banner_wrapper .col_3 .btn {
  min-width: 260px;
  height: 60px;
  border-radius: 8px;
  background: var(--ffd470);
  padding-left: 70px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_3 .btn {
    min-width: 180px;
    padding: 20px 0;
  }
}
@media (max-width: 1199px) {
  .banner .banner_wrapper .col_3 .btn {
    min-width: 108px;
    height: 47px;
    padding: 0 16px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner .banner_wrapper .col_3 .btn {
    width: 100%;
    font-size: 14px;
  }
}
.banner .banner_wrapper .col_3 .btn svg {
  width: 27px;
  height: auto;
}
@media (max-width: 1419px) {
  .banner .banner_wrapper .col_3 .btn svg {
    display: none;
  }
}
.banner .banner_wrapper .col_3 .btn:hover {
  background: var(--f9a21b);
}

.recommended {
  margin: 52px 0;
}
@media (max-width: 1199px) {
  .recommended {
    margin: 42px 0 0;
  }
}
@media (max-width: 599px) {
  .recommended {
    margin: 14px 0 0;
  }
}
.recommended .box {
  padding: 32px 118px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1199px) {
  .recommended .box {
    padding: 48px 40px;
    width: calc(100% + 60px);
    margin: 0 -30px;
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .recommended .box {
    padding: 30px;
  }
}
.recommended .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .recommended .section_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .recommended .section_title {
    font-size: 16px;
  }
}
.recommended .swiper_wrapper {
  position: relative;
}
@media (max-width: 1199px) {
  .recommended .swiper_wrapper {
    padding-right: 62px;
  }
}
@media (max-width: 599px) {
  .recommended .swiper_wrapper {
    padding-right: 11px;
  }
}
.recommended .swiper_wrapper .rec_swiper {
  overflow: hidden;
  width: 100%;
}
.recommended .swiper_wrapper .rec_swiper .swiper-slide {
  border: 1px solid var(--eeeae5);
  border-radius: 8px;
  height: auto;
}
.recommended .swiper_wrapper .rec_swiper .swiper-slide .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 374/164;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .recommended .swiper_wrapper .rec_swiper .swiper-slide .post_thumb {
    aspect-ratio: 302/134;
  }
}
@media (max-width: 599px) {
  .recommended .swiper_wrapper .rec_swiper .swiper-slide .post_thumb {
    aspect-ratio: 288/176;
  }
}
.recommended .swiper_wrapper .rec_swiper .swiper-slide .content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.recommended .swiper_wrapper .rec_swiper .swiper-slide .content .post_date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
}
.recommended .swiper_wrapper .rec_swiper .swiper-slide .content .post_title {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .recommended .swiper_wrapper .rec_swiper .swiper-slide .content .post_title {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .recommended .swiper_wrapper .rec_swiper .swiper-slide .content .post_title {
    font-size: 14px;
  }
}
.recommended .swiper_wrapper .rec_swiper_next {
  position: absolute;
  top: 50%;
  right: -62px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background: var(--eeeae5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
  z-index: 1;
}
@media (max-width: 1199px) {
  .recommended .swiper_wrapper .rec_swiper_next {
    right: 0;
  }
}
@media (max-width: 599px) {
  .recommended .swiper_wrapper .rec_swiper_next {
    width: 36px;
    height: 36px;
    right: -8px;
  }
}
.recommended .swiper_wrapper .rec_swiper_next:hover {
  background: var(--f9a21b);
}
.recommended .swiper_wrapper .rec_swiper_next svg {
  width: 24px;
  height: auto;
}

.we_have_all {
  margin: 52px 0 60px;
}
@media (max-width: 1199px) {
  .we_have_all {
    margin: 0;
  }
}
.we_have_all .box {
  background: var(--eeeae5);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 947fr 453fr;
}
@media (max-width: 1199px) {
  .we_have_all .box {
    width: calc(100% + 60px);
    margin: 0 -30px;
    grid-template-columns: 492fr 276fr;
  }
}
@media (max-width: 599px) {
  .we_have_all .box {
    grid-template-columns: 1fr;
  }
}
.we_have_all .experts {
  padding: 85px 120px 115px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 1399px) {
  .we_have_all .experts {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1199px) {
  .we_have_all .experts {
    padding: 42px 60px;
  }
}
@media (max-width: 599px) {
  .we_have_all .experts {
    padding: 42px 30px 52px;
  }
}
.we_have_all .experts .subtitle {
  padding: 3px 16px;
  border-radius: 8px;
  background: #f7f5f2;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .we_have_all .experts .subtitle {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
  }
}
.we_have_all .experts .title {
  margin: 40px 0 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: normal;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .we_have_all .experts .title {
    margin-top: 20px;
    font-size: 20px;
  }
}
.we_have_all .experts .desc {
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  max-width: 650px;
}
@media (max-width: 1199px) {
  .we_have_all .experts .desc {
    margin-top: 25px;
    font-size: 14px;
    max-width: 340px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 599px) {
  .we_have_all .experts .desc {
    margin-top: 20px;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: initial;
    text-overflow: initial;
    max-width: initial;
  }
}
.we_have_all .experts .list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  width: 100%;
  max-width: 690px;
}
@media (max-width: 1199px) {
  .we_have_all .experts .list {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 11px;
    max-width: 360px;
  }
}
@media (max-width: 599px) {
  .we_have_all .experts .list {
    margin-top: 20px;
  }
}
.we_have_all .experts .list .item {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  background: var(--style);
}
@media (max-width: 1199px) {
  .we_have_all .experts .list .item {
    padding: 8px 10px;
    gap: 12px;
  }
}
.we_have_all .experts .list .item:nth-child(4n+2) .img {
  border-color: #daf6ff;
}
.we_have_all .experts .list .item:nth-child(4n+3) .img {
  border-color: #ffe9cf;
}
.we_have_all .experts .list .item:nth-child(4n+4) .img {
  border-color: #ffdaec;
}
.we_have_all .experts .list .item .img {
  flex-shrink: 0;
  width: 76px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid #e1f8e5;
  border-radius: 100px;
}
@media (max-width: 1199px) {
  .we_have_all .experts .list .item .img {
    width: 66px;
    border-width: 3px;
  }
}
.we_have_all .experts .list .item .meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (max-width: 1199px) {
  .we_have_all .experts .list .item .meta {
    gap: 2px;
  }
}
.we_have_all .experts .list .item .meta .name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .we_have_all .experts .list .item .meta .name {
    font-size: 16px;
  }
}
.we_have_all .experts .list .item .meta .pos {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .we_have_all .experts .list .item .meta .pos {
    font-size: 14px;
  }
}
.we_have_all .standarts {
  padding: 90px 55px 105px;
  display: flex;
  flex-direction: column;
  align-items: start;
  border-radius: 8px;
  background: top 5px right 0/202px no-repeat url(../img/standarts_bg.webp), linear-gradient(to right, rgba(217, 217, 217, 0.1) 55px, var(--0b3948) 55px), var(--0b3948);
}
@media (max-width: 1399px) {
  .we_have_all .standarts {
    padding-left: 35px;
    padding-right: 35px;
    background: top 5px right 0/202px no-repeat url(../img/standarts_bg.webp), linear-gradient(to right, rgba(217, 217, 217, 0.1) 35px, var(--0b3948) 35px), var(--0b3948);
  }
}
@media (max-width: 1199px) {
  .we_have_all .standarts {
    padding: 45px 35px 55px;
    background: top 3px right 25px/111px no-repeat url(../img/standarts_bg.webp), linear-gradient(to right, rgba(217, 217, 217, 0.1) 30px, var(--0b3948) 30px), var(--0b3948);
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts {
    padding: 42px 35px 52px;
    background: top 3px right 3px/111px no-repeat url(../img/standarts_bg.webp), linear-gradient(to right, rgba(217, 217, 217, 0.1) 30px, var(--0b3948) 30px), var(--0b3948);
  }
}
.we_have_all .standarts .title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--style);
}
@media (max-width: 1199px) {
  .we_have_all .standarts .title {
    font-size: 20px;
    max-width: 180px;
  }
}
.we_have_all .standarts .list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media (max-width: 1199px) {
  .we_have_all .standarts .list {
    margin-top: 17px;
    gap: 32px;
    max-width: 188px;
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts .list {
    gap: 26px;
    max-width: initial;
  }
}
.we_have_all .standarts .list .item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 3px 24px;
  align-items: start;
}
@media (max-width: 1199px) {
  .we_have_all .standarts .list .item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts .list .item {
    grid-template-columns: 40px 1fr;
    gap: 2px 12px;
  }
}
.we_have_all .standarts .list .item .icon {
  grid-row: span 2;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .we_have_all .standarts .list .item .icon {
    grid-row: initial;
    width: 40px;
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts .list .item .icon {
    grid-row: span 2;
    width: 100%;
  }
}
.we_have_all .standarts .list .item .title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 148%;
  color: var(--style);
}
@media (max-width: 1199px) {
  .we_have_all .standarts .list .item .title {
    margin-top: 12px;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts .list .item .title {
    margin-top: 0;
  }
}
.we_have_all .standarts .list .item .desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--style);
}
@media (max-width: 1199px) {
  .we_have_all .standarts .list .item .desc {
    margin-top: 2px;
    font-size: 12px;
  }
}
@media (max-width: 599px) {
  .we_have_all .standarts .list .item .desc {
    margin-top: 0;
  }
}

.cat_posts_1 {
  margin: 60px 0;
}
@media (max-width: 1199px) {
  .cat_posts_1 {
    margin: 48px 0;
  }
}
@media (max-width: 599px) {
  .cat_posts_1 {
    margin: 30px 0;
  }
}
@media (max-width: 1199px) {
  .cat_posts_1 .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .cat_posts_1 .wrapper {
    padding: 0 30px;
  }
}
.cat_posts_1 .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .cat_posts_1 .section_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .cat_posts_1 .section_title {
    font-size: 16px;
  }
}
.cat_posts_1 .posts_wrapper {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .cat_posts_1 .posts_wrapper {
    display: none;
  }
}
.cat_posts_1 .posts_wrapper .post {
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_1 .posts_wrapper .post .media {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 335/167;
}
.cat_posts_1 .posts_wrapper .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_1 .posts_wrapper .post .content {
  flex-grow: 1;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.cat_posts_1 .posts_wrapper .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_1 .posts_wrapper .post .content .post_title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: var(--0b3948);
}
.cat_posts_1 .posts_wrapper .post:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.cat_posts_1 .posts_wrapper .post:first-child .media {
  aspect-ratio: 690/426;
}
.cat_posts_1 .posts_wrapper .post:first-child .media .category {
  padding: 0 35px;
  height: 50px;
  border-radius: 8px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: var(--style);
  position: absolute;
  top: 28px;
  left: 28px;
}
.cat_posts_1 .posts_wrapper .post:first-child .content .post_date {
  padding: 3px 16px;
}
.cat_posts_1 .posts_wrapper .post:first-child .content .post_title {
  flex-grow: initial;
  font-size: 24px;
}
.cat_posts_1 .posts_wrapper .post:first-child .content .post_excerpt {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat_posts_1 .swiper_wrapper {
  display: none;
  position: relative;
  padding-right: 62px;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cat_posts_1 .swiper_wrapper {
    display: block;
  }
}
@media (max-width: 599px) {
  .cat_posts_1 .swiper_wrapper {
    padding-right: 12px;
  }
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper {
  width: 100%;
  overflow: hidden;
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post {
  height: auto;
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .media {
  width: 100%;
  height: auto;
  aspect-ratio: 302/134;
}
@media (max-width: 599px) {
  .cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .media {
    aspect-ratio: 288/176;
  }
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .content {
  flex-grow: 1;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .content .post_title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .cat_posts_1 .swiper_wrapper .cat_posts_1_swiper .post .content .post_title {
    font-size: 14px;
  }
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper_next {
  outline: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 42px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--eeeae5);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .cat_posts_1 .swiper_wrapper .cat_posts_1_swiper_next {
    width: 36px;
    right: -8px;
  }
}
.cat_posts_1 .swiper_wrapper .cat_posts_1_swiper_next:hover {
  background: var(--f9a21b);
}

.cat_posts_2 {
  background: rgba(255, 212, 112, 0.1);
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .cat_posts_2 {
    padding: 30px 0 65px;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 {
    padding: 30px 0;
  }
}
@media (max-width: 1199px) {
  .cat_posts_2 .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .wrapper {
    padding: 0 30px;
  }
}
.cat_posts_2 .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .cat_posts_2 .section_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .section_title {
    font-size: 16px;
  }
}
.cat_posts_2 .swiper_wrapper {
  position: relative;
  margin-top: 35px;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper {
    margin-top: 20px;
    padding-right: 62px;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .swiper_wrapper {
    padding-right: 12px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .swiper-wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post {
  display: grid;
  grid-template-columns: 500fr 865fr;
  gap: 35px;
  align-items: center;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
    border: 1px solid var(--eeeae5);
    border-radius: 4px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 500/290;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media {
    aspect-ratio: 302/134;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media {
    aspect-ratio: 288/176;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media .category {
  padding: 3px 16px;
  border-radius: 8px;
  background: #f7f5f2;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
  position: absolute;
  top: 15px;
  left: 22px;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .media .category {
    display: none;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content {
  width: 100%;
  max-width: 828px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content {
    flex-grow: 1;
    padding: 16px 20px 20px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_date {
  padding: 3px 16px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_date {
    padding: 3px 9px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_title {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_title {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_title {
    font-size: 14px;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_excerpt {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .post_excerpt {
    display: none;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .read_more {
  margin-top: 30px;
  min-width: 184px;
  height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .read_more {
    display: none;
  }
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper .post .content .read_more:hover {
  background: #6D7758;
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper_next {
  display: none;
}
.cat_posts_2 .swiper_wrapper .cat_posts_2_swiper_next.swiper-button-lock {
  display: none;
}
@media (max-width: 1199px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper_next {
    outline: none;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 42px;
    height: auto;
    aspect-ratio: 1/1;
    background: var(--eeeae5);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s;
  }
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper_next:hover {
    background: var(--f9a21b);
  }
}
@media (max-width: 599px) {
  .cat_posts_2 .swiper_wrapper .cat_posts_2_swiper_next {
    width: 36px;
    right: -8px;
  }
}

.cat_posts_3 {
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .cat_posts_3 {
    padding: 30px 0 65px;
  }
}
@media (max-width: 599px) {
  .cat_posts_3 {
    padding: 30px 0;
  }
}
@media (max-width: 1199px) {
  .cat_posts_3 .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .cat_posts_3 .wrapper {
    padding: 0 30px;
  }
}
.cat_posts_3 .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .cat_posts_3 .section_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .cat_posts_3 .section_title {
    font-size: 16px;
  }
}
.cat_posts_3 .posts_gallery {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .cat_posts_3 .posts_gallery {
    display: none;
  }
}
.cat_posts_3 .posts_gallery .post {
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_3 .posts_gallery .post .media {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 335/167;
}
.cat_posts_3 .posts_gallery .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_3 .posts_gallery .post .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  padding: 16px 20px 20px;
}
.cat_posts_3 .posts_gallery .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_3 .posts_gallery .post .content .post_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: var(--0b3948);
}
.cat_posts_3 .posts_gallery .post:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.cat_posts_3 .posts_gallery .post:first-child .media {
  aspect-ratio: 690/396;
}
.cat_posts_3 .posts_gallery .post:first-child .media .category {
  padding: 0 35px;
  height: 50px;
  border-radius: 8px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: var(--style);
  position: absolute;
  top: 28px;
  left: 28px;
}
.cat_posts_3 .posts_gallery .post:first-child .content .post_date {
  padding: 3px 16px;
}
.cat_posts_3 .posts_gallery .post:first-child .content .post_title {
  font-size: 24px;
}
.cat_posts_3 .posts_gallery .post:first-child .content .post_excerpt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat_posts_3 .posts_gallery .banner {
  margin: 0;
  grid-column: span 2;
  border-radius: 8px;
  padding: 40px 20px;
  background: var(--style);
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat_posts_3 .posts_gallery .banner .img {
  width: 220px;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_3 .posts_gallery .banner .content {
  height: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.cat_posts_3 .posts_gallery .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: #000;
}
.cat_posts_3 .posts_gallery .banner .content .desc {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_3 .posts_gallery .banner .content .btn {
  min-width: 170px;
  height: 60px;
  border-radius: 6px;
  padding: 0 35px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
.cat_posts_3 .posts_gallery .banner .content .btn:hover {
  background: var(--f9a21b);
  color: var(--0b3948);
}
.cat_posts_3 .swiper_wrapper {
  display: none;
  position: relative;
  padding-right: 62px;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cat_posts_3 .swiper_wrapper {
    display: block;
  }
}
@media (max-width: 599px) {
  .cat_posts_3 .swiper_wrapper {
    padding-right: 12px;
  }
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper {
  width: 100%;
  overflow: hidden;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post {
  height: auto;
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .media {
  width: 100%;
  height: auto;
  aspect-ratio: 302/134;
}
@media (max-width: 599px) {
  .cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .media {
    aspect-ratio: 288/176;
  }
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .content {
  flex-grow: 1;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .content .post_title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .post .content .post_title {
    font-size: 14px;
  }
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner {
  margin: 0;
  border-radius: 8px;
  padding: 20px;
  background: var(--style);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  height: auto;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner .img {
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #000;
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner .content .desc {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper .banner .content .btn {
  padding: 0 12px;
  min-width: 120px;
  height: 42px;
  border-radius: 6px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper_next {
  outline: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 42px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--eeeae5);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .cat_posts_3 .swiper_wrapper .cat_posts_3_swiper_next {
    width: 36px;
    right: -8px;
  }
}
.cat_posts_3 .swiper_wrapper .cat_posts_3_swiper_next:hover {
  background: var(--f9a21b);
}
.cat_posts_3 .outside_banner {
  display: none;
}
@media (max-width: 599px) {
  .cat_posts_3 .outside_banner {
    margin-top: 20px;
    padding-right: 12px;
    display: block;
  }
}
.cat_posts_3 .outside_banner .banner {
  margin: 0;
  width: 100% !important;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--style);
}
.cat_posts_3 .outside_banner .banner .img {
  width: 120px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_3 .outside_banner .banner .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.cat_posts_3 .outside_banner .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 148%;
  color: #000;
}
.cat_posts_3 .outside_banner .banner .content .desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_3 .outside_banner .banner .content .btn {
  padding: 0 12px;
  min-width: 120px;
  height: 42px;
  border-radius: 6px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}

.cat_posts_4 {
  padding: 50px 0 100px;
  background: rgba(255, 212, 112, 0.1);
}
@media (max-width: 1199px) {
  .cat_posts_4 {
    padding: 30px 0 60px;
  }
}
@media (max-width: 1199px) {
  .cat_posts_4 .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .cat_posts_4 .wrapper {
    padding: 0 30px;
  }
}
.cat_posts_4 .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .cat_posts_4 .section_title {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .cat_posts_4 .section_title {
    font-size: 16px;
  }
}
.cat_posts_4 .posts_gallery {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .cat_posts_4 .posts_gallery {
    display: none;
  }
}
.cat_posts_4 .posts_gallery .post {
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_4 .posts_gallery .post .media {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 335/167;
}
.cat_posts_4 .posts_gallery .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_4 .posts_gallery .post .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  padding: 16px 20px 20px;
}
.cat_posts_4 .posts_gallery .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_4 .posts_gallery .post .content .post_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: var(--0b3948);
}
.cat_posts_4 .posts_gallery .post.first {
  grid-column: span 2;
  grid-row: span 2;
}
.cat_posts_4 .posts_gallery .post.first .media {
  aspect-ratio: 690/396;
}
.cat_posts_4 .posts_gallery .post.first .media .category {
  padding: 0 35px;
  height: 50px;
  border-radius: 8px;
  background: var(--style);
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: var(--0b3948);
  position: absolute;
  top: 28px;
  left: 28px;
}
.cat_posts_4 .posts_gallery .post.first .content .post_date {
  padding: 3px 16px;
}
.cat_posts_4 .posts_gallery .post.first .content .post_title {
  font-size: 24px;
}
.cat_posts_4 .posts_gallery .post.first .content .post_excerpt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--0b3948);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat_posts_4 .posts_gallery .banner {
  margin: 0;
  grid-row: span 2;
  border-radius: 8px;
  padding: 40px 30px;
  background: var(--style);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.cat_posts_4 .posts_gallery .banner .img {
  margin-bottom: 10px;
  width: 256px;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_4 .posts_gallery .banner .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.cat_posts_4 .posts_gallery .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: #000;
}
.cat_posts_4 .posts_gallery .banner .content .desc {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_4 .posts_gallery .banner .content .btn {
  min-width: 170px;
  height: 60px;
  border-radius: 6px;
  padding: 0 35px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
.cat_posts_4 .posts_gallery .banner .content .btn:hover {
  background: var(--f9a21b);
  color: var(--0b3948);
}
.cat_posts_4 .swiper_wrapper {
  display: none;
  position: relative;
  padding-right: 62px;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cat_posts_4 .swiper_wrapper {
    display: block;
  }
}
@media (max-width: 599px) {
  .cat_posts_4 .swiper_wrapper {
    padding-right: 12px;
  }
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper {
  width: 100%;
  overflow: hidden;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post {
  height: auto;
  border: 1px solid var(--eeeae5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .media {
  width: 100%;
  height: auto;
  aspect-ratio: 302/134;
}
@media (max-width: 599px) {
  .cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .media {
    aspect-ratio: 288/176;
  }
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .media .post_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .content {
  flex-grow: 1;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .content .post_date {
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--style);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 148%;
  text-align: center;
  color: rgba(11, 57, 72, 0.5);
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .content .post_title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .post .content .post_title {
    font-size: 14px;
  }
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner {
  margin: 0;
  border-radius: 8px;
  padding: 20px;
  background: var(--style);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  height: auto;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner .img {
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #000;
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner .content .desc {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper .banner .content .btn {
  padding: 0 12px;
  min-width: 120px;
  height: 42px;
  border-radius: 6px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper_next {
  outline: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 42px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--eeeae5);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .cat_posts_4 .swiper_wrapper .cat_posts_4_swiper_next {
    width: 36px;
    right: -8px;
  }
}
.cat_posts_4 .swiper_wrapper .cat_posts_4_swiper_next:hover {
  background: var(--f9a21b);
}
.cat_posts_4 .outside_banner {
  display: none;
}
@media (max-width: 599px) {
  .cat_posts_4 .outside_banner {
    margin-top: 20px;
    padding-right: 12px;
    display: block;
  }
}
.cat_posts_4 .outside_banner .banner {
  margin: 0;
  width: 100% !important;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--style);
}
.cat_posts_4 .outside_banner .banner .img {
  width: 120px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cat_posts_4 .outside_banner .banner .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.cat_posts_4 .outside_banner .banner .content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 148%;
  color: #000;
}
.cat_posts_4 .outside_banner .banner .content .desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  color: var(--0b3948);
}
.cat_posts_4 .outside_banner .banner .content .btn {
  padding: 0 12px;
  min-width: 120px;
  height: 42px;
  border-radius: 6px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
}