.container {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
}

.home_category_view_all {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 50px;
  border-radius: 52px;
  border: 1px solid #D63D0A;
  font-size: 14px;
  font-weight: 400;
  color: #D63D0A;
}

.category_title {
  margin-top: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.category_title .line {
  width: -webkit-fill-available;
  height: 1px;
  background-color: #E5E5E5;
}
.category_title h2 {
  color: #111726;
  font-size: 42px;
}

.single_post {
  margin-top: 20px;
}
.single_post .cats {
  margin-top: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_post .cats .cat {
  padding: 5px 10px;
  border-radius: 52px;
  background-color: #F6F6F6;
  font-size: 14px;
  color: #4F545F;
  font-weight: 400;
}
.single_post .cats .date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.single_post .cats .date p {
  font-size: 13px;
  font-weight: 400;
  color: #4F545F;
}
.single_post .prev_title {
  margin-top: 0px;
  font-size: 34px;
  font-weight: 600;
}
.single_post .line_after_prev {
  margin-top: 20px;
  margin-bottom: 12px;
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
}
.single_post .post_title {
  margin-top: 30px;
  font-size: 22px;
  color: #222222;
  font-weight: 600;
}
.single_post .post_text {
  margin-top: 25px;
  font-size: 16px;
  color: #222222;
  font-weight: 400;
}
.single_post .post_big_img {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.single_post .post_big_img .img_title {
  font-size: 14px;
  font-weight: 400;
  color: #A4A6B3;
}
.single_post .post_two_img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-top: 25px;
}
.single_post .post_two_img .elem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.single_post .post_two_img .elem .img_title {
  font-size: 14px;
  font-weight: 400;
  color: #A4A6B3;
}
.single_post .post_share {
  margin-top: 20px;
  width: 335px;
  height: 64px;
  border-radius: 52px;
  background-color: #F6F6F6;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  gap: 20px;
}
.single_post .post_share p {
  font-weight: 400;
  font-size: 14px;
  color: #4F545F;
}
.single_post .post_share div {
  width: 30px;
  height: 30px;
}
.single_post .post_share div img {
  width: 100%;
}
.single_post .latest {
  margin-top: 40px;
}
.single_post .latest .title {
  font-size: 36px;
  font-weight: 600;
  color: #111726;
}
.single_post .latest .line {
  margin-top: 30px;
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
}
.single_post .latest .latest_container {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 26px;
}
.single_post .latest .latest_container .home_category_post {
  flex: 1;
  width: 100%;
  text-decoration: none;
}
.single_post .p {
  font-size: 15px;
}

.conainer_sm {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}

.img_skeleton {
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.img_skeleton picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img_skeleton img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure img {
  border-radius: 20px;
}

footer {
  padding: 12px 0 21px;
  background-image: linear-gradient(90deg, #FFF9F7, #FFE4DB);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  margin-top: 40px;
}
footer .footer_menus {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  list-style: none;
}
footer .footer_menus a {
  text-align: center;
  font-size: 15px;
  color: #111726;
}
footer .footer_copyright {
  font-size: 12px;
  color: #A4A6B3;
}

.popup_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 3;
  background-color: inherit;
}
.popup_background.active {
  pointer-events: all;
  opacity: 0.5;
  background-color: #fff;
}

.popup_contact {
  width: 90%;
  max-width: 631px;
  border-radius: 20px;
  background-color: #fff;
  z-index: 10;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  padding: 39px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup_contact.active {
  opacity: 1;
  pointer-events: all;
}
.popup_contact_title {
  font-size: 22px;
  font-weight: 600;
  color: #111726;
  text-align: center;
}
.popup_contact_description {
  font-size: 13px;
  font-weight: 400;
  color: #111726;
  text-align: center;
  margin-top: 26px;
}
.popup_contact_fields {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup_contact_field {
  position: relative;
  width: 100%;
  height: 50px;
}
.popup_contact_field input {
  padding: 0 40px;
  box-sizing: border-box;
  border-radius: 25px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  height: 100%;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #111726;
  width: 100%;
}
.popup_contact_field input::placeholder {
  color: #A4A6B3;
}
.popup_contact_field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
}
.popup_contact_field_spec {
  position: relative;
  width: 100%;
  height: 135px;
}
.popup_contact_field_spec textarea {
  resize: none;
  padding: 15px 15px 15px 40px;
  box-sizing: border-box;
  border-radius: 25px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  height: 100%;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #111726;
  width: 100%;
}
.popup_contact_field_spec textarea::placeholder {
  color: #A4A6B3;
}
.popup_contact_field_spec svg {
  position: absolute;
  top: 15px;
  left: 15px;
}
.popup_contact button {
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border-radius: 52px;
  background-color: #FA7B50;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.popup_contact_chk {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.popup_contact_chk input {
  width: 23px;
  min-width: 23px;
  height: 23px;
  border: 0;
  outline: none;
  background-color: #D3D3D3;
  margin: 0;
}
.popup_contact_chk label {
  font-size: 12px;
  font-weight: 400;
  color: #A4A6B3;
}

.page404 {
  margin-top: 86px;
}
.page404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page404 h1 {
  font-size: 32px;
  text-align: center;
  color: #111726;
  font-weight: 700;
}
.page404 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 300px;
}
.page404 p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 400;
  color: #242424;
}
.page404 a {
  cursor: pointer;
  margin-top: 25px;
  max-width: 335px;
  width: 80%;
  height: 50px;
  background-color: inherit;
  border-radius: 52px;
  border: 1px solid #FA7B50;
  font-size: 14px;
  font-weight: 500;
  color: #FA7B50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_frame{
  margin: 25px 0;
  width: 100%;
}
.search_res_block {
  margin-top: 40px;
}
.search_res_block h1 {
  font-size: 36px;
  font-weight: 600;
}
.search_res_block p {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 400;
  color: #A4A6B3;
}
.search_res_block p span {
  font-size: 12px;
  font-weight: 600;
  color: #111726;
}
.search_res_block .line {
  margin-top: 25px;
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
}

.home_category_wrapper.search_res_wrapper {
  margin-top: 25px;
  row-gap: 26px;
}

.home_category_wrapper.category_wrapper {
  margin-top: 40px;
  row-gap: 26px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}


input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.xl_hid {
  display: none;
}

.author_block_wrapper {
  display: flex;
  align-items: center;
}

.author_image {
  border-radius: 5%;
  width: 45px;
}

.author_wrapper {
  font-weight: 600;
  font-size: 16px;
  padding-left: 10px;
}

.author_bio {
  color: #333;
}

.blur_img {
  filter: blur(.5rem)
}

blockquote {
  border-left: 3px solid #D63D0A;
  font-size: 1.25em;
  font-style: italic;
  padding: .5em 2em;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  height: 2em;
  background-color: #FFFFFF;
  width: 5px;
  margin-top: -1em;
}
blockquote:after {
  content: "\201D";
  position: absolute;
  top: 50%;
  left: -0.5em;
  color: #D63D0A;
  font-size: 1.5em;
  font-style: normal;
  line-height: 1em;
  text-align: center;
  text-indent: -2px;
  width: 1em;
  margin-top: -0.5em;
}
blockquote cite {
  display: block;
  font-size: 0.75em;
  line-height: 1.8em;
  margin-top: 1em;
}

@media (max-width: 1000px) {
  .home_category_wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .home_category_wrapper .home_category_post:nth-child(3) {
    display: none;
  }
}
@media (max-width: 750px) {
  .home_category_wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .bottom_author_block p {
    font-size: 14px;
  }
  .xs_hid {
    display: none;
  }
  .xl_hid {
    display: block;
  }
  .home_page {
    padding-top: 0px;
  }
  header .left {
    width: 100%;
    justify-content: space-between;
  }
  header .left img {
    width: 82px;
    height: 47px;
  }
  .home_page .menu_search {
    margin: 0;
  }
  .home_banner {
    margin-top: 20px;
    height: 192px;
    padding: 25px 20px;
  }
  .home_banner_category {
    font-size: 10px;
    margin-top: -10px;
    display: none;
  }
  .home_banner_center {
    gap: 5px;
  }
  .home_banner_date {
    gap: 4px;
  }
  .home_banner_date span {
    font-size: 11px;
  }
  .home_banner .read_more {
    gap: 6px;
  }
  .home_banner .read_more span {
    font-size: 10px;
  }
  header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
  .menu_mobile {
    display: block;
  }
  .menu.active {
    display: none;
  }
  .popup_contact {
    border: 1px solid #EDEDED;
    padding: 39px 20px 30px 20px;
  }
  .popup_contact .close_popup{
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .popup_contact_description {
    margin-top: 18px;
    font-size: 12px;
  }
  .popup_contact_chk {
    margin-top: 25px;
    gap: 12px;
  }
  .breadcrumbs {
    border-bottom: 0;
  }
  .single_post {
    margin-top: 0;
  }
  .img_skeleton {
    padding-bottom: 75%;
  }
  .single_post .cats .cat {
    font-size: 10px;
  }
  .single_post .cats .date p {
    font-size: 11px;
  }
  .single_post .prev_title {
    margin-top: 0px;
    font-size: 24px;
    line-height: 1.5;
  }
  .single_post .prev_description {
    margin-top: 20px;
    font-size: 12px;
  }
  .single_post .line_after_prev {
    margin: 25px 0;
  }
  .single_post .post_title {
    font-size: 14px;
    margin-top: 25px;
  }
  .single_post .post_text {
    margin-top: 20px;
    font-size: 12px;
  }
  .single_post .post_big_img {
    margin-top: 25px;
    gap: 12px;
  }
  .single_post .post_big_img .img_title {
    font-size: 12px;
  }
  .single_post .post_two_img {
    gap: 19px;
  }
  .single_post .post_two_img .elem .img_title {
    font-size: 12px;
  }
  .single_post .latest {
    margin-top: 45px;
  }
  .single_post .latest .title {
    font-size: 18px;
  }
  .single_post .latest .line {
    margin-top: 25px;
  }
  .single_post .latest .latest_container {
    margin-top: 0;
    flex-direction: column;
    gap: 0;
  }
  .home_category_view_all.xl_hid {
    display: flex;
    text-decoration: unset;
    font-weight: bold;
    font-size: 15px;
  }
  .home_category_wrapper.search_res_wrapper {
    margin-top: 0;
    gap: 0;
  }
  .breadcrumbs.search_res {
    display: none;
  }
  .search_res_block {
    margin-top: 20px;
  }
  .search_res_block h1 {
    font-size: 18px;
  }
  .search_res_block p {
    margin-top: 0px;
    font-size: 12px;
  }
  .search_res_block p span {
    font-size: 12px;
  }
  .search_res_block .search_res_block_text_wrapp {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search_res_block .search_res_block_text_wrapp .clear_all {
    font-size: 13px;
    color: #FA7B50;
    font-weight: 400;
  }
  .search_res_block .line {
    margin-top: 20px;
  }
  .load_more {
    margin-top: 20px;
    height: 50px;
    width: 100%;
    border: 1px solid #D63D0A;
    border-radius: 52px;
    font-size: 14px;
    font-weight: 400;
    color: #D63D0A;
    background-color: inherit;
  }
  .category_title {
    margin: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  .home_category_wrapper.category_wrapper {
    margin: 0;
    gap: 0;
  }
  .page404 p {
    text-align: center;
  }
  .home_category_view_all {
    margin: 20px 0;
    width: 100%;
  }
  .home_category_title h2, .category_title h2 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
  }
  .search_res{
    min-height: 70vh;
  }
  .home_category_wrapper .home_category_post:nth-child(3) {
    display: flex;
  }
  .load-more-trigger{
    display: none;
  }
}