:root {
  --main-color: #00C853;
  --main-hover: #04D65B;
  --white: #fff;
  --validation: #FC0245;
  --black: #263238;
  --light-black: #37474F;
  --tags-bgc: #B0BEC5;
  --tag: #E2E7E9;
  --tag-active: #90A4AE;
  --category-label: #B0BEC5;
  --table-top: #607D8B;
  --chapter-color: #455A64;
  --footer-color: #37474F;
  --jakarta: "Plus Jakarta Sans", sans-serif;
  --right: calc((100vw - 1280px) / 2) ;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: #00c853 #bfe8d0;
}

*::-webkit-scrollbar {
  display: none !important;
}

body {
  margin: 0 auto;
}

body.locked {
  overflow-y: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img {
  display: block;
}

.checkbox {
  display: inline-block;
  width: 25px;
  height: 19px;
  margin: 0 5px -4px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  isolation: isolate;
}
.checkbox::before, .checkbox::after {
  content: "";
  transition: all 0.3s;
  position: absolute;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
  background: transparent;
  border: 1px solid #CFD8DC;
  border-radius: 4px;
}
.checkbox:after {
  content: "";
  z-index: 3;
  border: none;
  background-repeat: no-repeat;
  background-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox.invalid:before {
  border: 2px solid #FC0245;
}

.checkbox:checked:before {
  content: "";
  animation: pop 0.3s ease;
  z-index: 100;
  background-image: url("/wp-content/themes/zaplecza/icons/white-check-icon.svg");
  background-size: 16px;
  background-position: center;
  border: 2px solid #00C853;
}
.checkbox:checked:after {
  border: 2px solid #00C853;
  background-color: #00C853;
}

.checkbox:hover:before {
  border: 2px solid #00C853;
}
.checkbox:hover:after {
  border: 2px solid #00C853;
}

body.single-post {
  overflow-x: hidden;
  width: 100vw;
}

@keyframes pop {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
  }
}
.container, .container--fluid {
  max-width: 1280px;
  margin: auto;
  position: relative;
}
.container--fluid {
  max-width: auto;
}
@media (max-width: 450px) {
  .container, .container--fluid {
    width: 100%;
  }
}

.wrapper {
  padding: 0 96px 0 66px;
  width: 70%;
}
@media (max-width: 450px) {
  .wrapper {
    width: 100%;
    padding: 20px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .wrapper {
    width: 100%;
    padding: 30px;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  .wrapper {
    width: 62%;
    padding: 0 50px;
  }
}
@media (min-width: 1100px) and (max-width: 1280px) {
  .wrapper {
    width: 65%;
    padding: 0 50px;
  }
}

.wrapper-smaller {
  padding: 0 66px;
}

.pagination-wrapper {
  margin: 0 66px;
}
@media (max-width: 450px) {
  .pagination-wrapper {
    margin: 0 20px;
  }
}
@media (min-width: 451px) and (max-width: 768px) {
  .pagination-wrapper {
    margin: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .pagination-wrapper {
    margin: 0;
  }
}

.pagination-low-wrapper {
  padding: 0;
}
@media (max-width: 450px) {
  .pagination-low-wrapper {
    padding: 0 20px;
  }
}
@media (min-width: 451px) and (max-width: 768px) {
  .pagination-low-wrapper {
    padding: 0 40px;
  }
}

.page-pagination-wrapper {
  padding: 0 66px;
}
@media (max-width: 450px) {
  .page-pagination-wrapper {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .page-pagination-wrapper {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .page-pagination-wrapper {
    padding: 0 50px;
  }
}

.wpcf7-spinner {
  display: none;
}

.search-button {
  padding: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
  z-index: 2;
}
.search-button:hover {
  transform: scale(1.1);
  background-color: var(--main-hover);
}
@media (max-width: 1000px) {
  .search-button {
    display: none;
  }
}

.see-all-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  line-height: 22.5px;
  text-decoration: none;
  gap: 8px;
  transition: gap 0.3s;
  white-space: nowrap;
}
.see-all-btn:hover {
  gap: 16px;
}
@media (max-width: 768px) {
  .see-all-btn {
    position: absolute;
    bottom: 0;
  }
}
.see-all-btn-relative {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  line-height: 22.5px;
  text-decoration: none;
  gap: 8px;
  transition: gap 0.3s;
  white-space: nowrap;
}
.see-all-btn-relative:hover {
  gap: 16px;
}

.newsletter-button, .newsletter-button-banner, .newsletter-button-contact {
  padding: 14px 24px 14px 24px;
  border-radius: 25px;
  border: none;
  outline: none;
  background-color: var(--main-color);
  font-size: 15px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: gap 0.3s;
  position: relative;
}
.newsletter-button-contact {
  align-self: flex-start;
  position: relative;
}
.newsletter-button:hover, .newsletter-button-banner:hover, .newsletter-button-contact:hover {
  gap: 24px;
  background-color: var(--main-hover);
}
.newsletter-button-banner {
  margin-top: 8px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .newsletter-button, .newsletter-button-banner, .newsletter-button-contact {
    align-self: center;
  }
}

.tag-btn {
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 7px;
  border-radius: 8px;
  background-color: #E2E7E9;
  text-decoration: none;
  color: var(--black);
}
.tag-btn.active {
  background-color: #90A4AE;
  color: var(--white);
}

.open-contents-btn {
  background-color: var(--main-color);
  display: inline-block;
  padding: 13px;
  border-radius: 50%;
  margin-top: 20px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .open-contents-btn {
    display: none;
  }
}

.sticky-btn {
  padding: 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.sticky-btn-contents {
  background-color: var(--main-color);
}
.sticky-btn-contact {
  background-color: #90A4AE;
}

.close-newsletter-btn {
  background-color: #B0BEC5;
  display: inline-block;
  padding: 13px;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 8px;
  cursor: pointer;
  z-index: 600;
}
@media (min-width: 1000px) {
  .close-newsletter-btn {
    display: none;
  }
}

.searchsubmit {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}
@media (max-width: 1000px) {
  .searchsubmit {
    display: none;
  }
}

.searchsubmit.active {
  transform: translate(-230%, -50%);
  z-index: 3;
}

.category-header, .category-header-padded {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 450px) {
  .category-header, .category-header-padded {
    padding: 0 20px;
    font-size: 30px;
    line-height: 45px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .category-header, .category-header-padded {
    padding: 0 40px;
    font-size: 33px;
    line-height: 49px;
  }
}
.category-header-padded {
  padding: 0 0 0 66px;
}
@media (max-width: 450px) {
  .category-header-padded {
    padding: 0 0 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .category-header-padded {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .category-header-padded {
    padding: 50px;
  }
}
@media (min-width: 1000px) and (max-width: 1279px) {
  .category-header-padded {
    padding: 50px;
  }
}

.subcategory {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 39px;
}
@media (max-width: 450px) {
  .subcategory {
    font-size: 22px;
    line-height: 33px;
  }
}
.subcategory-larger {
  line-height: 44px;
  white-space: normal !important;
}
@media (max-width: 450px) {
  .subcategory-larger {
    font-size: 22px;
    line-height: 36px;
  }
}

.sub-subcategory, .sub-subcategory-bigger, .sub-subcategory-white, .subcategory-larger {
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  white-space: nowrap;
}
.sub-subcategory-white {
  color: var(--white);
}
.sub-subcategory-bigger {
  font-size: 26px;
}
@media (max-width: 450px) {
  .sub-subcategory-bigger {
    font-size: 22px;
    line-height: 33px;
  }
}

.nav__link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
}
.nav__link:hover {
  color: var(--main-color);
}

.nav__cta {
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  display: block;
}
.nav__cta:hover {
  color: var(--main-color);
}
.nav__cta.active {
  color: var(--main-color);
}
@media (max-width: 1000px) {
  .nav__cta {
    font-size: 18px;
  }
}

.article-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
}

.date, .date--white {
  line-height: 18px;
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #77869D;
}
.date--white {
  color: var(--white);
}
@media (min-width: 450px) and (max-width: 1280px) {
  .date, .date--white {
    font-size: 15px;
    line-height: 23px;
  }
}

.article-snippet, .article-snippet-slide {
  font-size: 18px;
  line-height: 27px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-snippet, .article-snippet-slide {
    font-size: 20px;
    line-height: 30px;
  }
}
.article-snippet-bald {
  font-size: 13px;
  line-height: 19px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
}
.article-snippet-slide {
  font-size: 26px;
  color: var(--white);
  line-height: 39px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 450px) {
  .article-snippet-slide {
    font-size: 22px;
    line-height: 33px;
  }
}
.article-snippet-lower {
  font-size: 13px;
  line-height: 19px;
}
@media (min-width: 450px) and (max-width: 1000px) {
  .article-snippet-lower {
    font-size: 18px;
    line-height: 27px;
  }
}
.article-snippet-worthy {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 450px) and (max-width: 1280px) {
  .article-snippet-worthy {
    font-size: 18px;
    line-height: 27px;
  }
}
.article-snippet-worthy-white {
  color: var(--white);
}
.article-snippet-category {
  font-size: 16px;
  line-height: 24px;
}

.article-snippet-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 21px;
  color: var(--black);
}

.last-update {
  font-size: 13px;
  line-height: 19.5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
}

.author:not(body) {
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #77869D;
}
@media (min-width: 450px) and (max-width: 1280px) {
  .author:not(body) {
    font-size: 15px;
    line-height: 23px;
  }
}

.author--white {
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
}
@media (min-width: 450px) and (max-width: 1280px) {
  .author--white {
    font-size: 15px;
    line-height: 23px;
  }
}

.form-title {
  font-size: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  font-weight: bold;
  line-height: 39px;
}
@media (max-width: 450px) {
  .form-title {
    font-size: 22px;
    line-height: 33px;
  }
}

.form-undertext {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  line-height: 21px;
}
@media (max-width: 1000px) {
  .form-undertext {
    font-size: 16px;
    line-height: 24px;
  }
}

.newsletter-claim {
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  color: var(--black);
}
@media (min-width: 450px) and (max-width: 1000px) {
  .newsletter-claim {
    font-size: 14px;
    line-height: 20px;
  }
}

.thumbnail-undertext {
  font-size: 13px;
  line-height: 19.5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
  text-decoration: none;
}

.contact-form__header {
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  color: var(--black);
  line-height: 27px;
}

.contact-form__subheader {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  line-height: 18px;
}

.condition-text {
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
}

.condition-text a {
  color: var(--black);
}

.form-info {
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 16.5px;
  font-variant: --black;
}

.cta-banner {
  font-size: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  font-weight: bold;
}

.banner-description {
  font-size: 16px;
  line-height: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
}

.graph-conents__header {
  font-size: 22px;
  line-height: 33px;
  font-weight: bold;
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.chapter-number {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.chapter-name {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  transition: all 0.3s;
  display: block;
}

.featured-data__header {
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
}

.featured-line {
  font-size: 16px;
  line-height: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  display: flex;
  gap: 16px;
  padding-bottom: 30px;
}
.featured-line:last-of-type {
  padding: 0;
}

.author-name {
  font-size: 18px;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 27px;
  color: var(--black);
}

.author-position {
  font-size: 14px;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 21px;
  color: var(--black);
}

.author-bio {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 25px;
  color: var(--black);
}

.author-socialmedia-header {
  font-size: 16px;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 24px;
  color: var(--black);
}

.author-socialmedia-text {
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  line-height: 19px;
}

.tags-header {
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 27px;
  color: var(--black);
  font-weight: bold;
}

.post-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.value-text {
  font-size: 14px;
  line-height: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  transition: transform 0.3s;
}
.value-text:hover {
  transform: translateX(14px);
}

.value-num {
  font-size: 14px;
  line-height: 21px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  font-weight: bold;
}

.chapter-title, .chapter-title-black {
  font-size: 22px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  line-height: 38px;
}
.chapter-title-black {
  color: var(--black);
}
@media (max-width: 450px) {
  .chapter-title, .chapter-title-black {
    font-size: 20px;
    line-height: 30px;
  }
}

.chapter-essence {
  font-size: 16px;
  line-height: 28px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.article-text, .article-text-link, .article-text-featured {
  font-size: 16px;
  color: var(--black);
  line-height: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.article-text-featured {
  font-weight: 500;
}
.article-text-link {
  color: var(--main-color);
  font-weight: 500;
}

.text-size, .text-size-xs-bold, .text-size-xs, .text-size-s, .text-size-md, .text-size-lg, .text-size-xl, .text-size-xxl {
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.text-size-xxl {
  font-size: 26px;
  line-height: 39px;
}
.text-size-xl {
  font-size: 22px;
  line-height: 33px;
}
.text-size-lg {
  font-size: 20px;
  line-height: 30px;
}
.text-size-md {
  font-size: 18px;
  line-height: 27px;
}
.text-size-s {
  font-size: 17px;
  line-height: 26px;
}
@media (max-width: 580px) {
  .text-size-s {
    font-size: 16px;
    line-height: 24px;
  }
}
.text-size-xs {
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}
.text-size-xs-bold {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 25px;
  list-style: none;
  margin-top: 40px;
}

.point-list-item {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 28px;
  color: var(--black);
  position: relative;
}
.point-list-item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--main-color);
  border-radius: 50%;
  left: -25px;
  top: 8px;
}
@media (max-width: 1280px) {
  .point-list-item::before {
    top: 12px;
  }
}

.question-answer {
  font-size: 14px;
  color: var(--black);
  line-height: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.prev-article-snippet, .next-article-snippet {
  font-size: 14px;
  line-height: 26x;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
}

.chapter_nr {
  vertical-align: sub;
  padding-right: 10px;
  display: inline-block;
}

.article-cta {
  text-decoration: none;
  color: var(--black);
}

.breadcrumbs {
  font-size: 11px;
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.breadcrumbs.active {
  text-decoration: none;
}

.error-text {
  color: var(--black);
  font-family: var(--jakarta);
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
}
@media (min-width: 300px) and (max-width: 768px) {
  .error-text {
    font-size: 30px;
    line-height: 33px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .error-text {
    font-size: 32px;
    line-height: 40px;
  }
}

.make-sure-text {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--jakarta);
  font-size: 14px;
  line-height: 27px;
  margin-top: 43px;
}
@media (min-width: 300px) and (max-width: 768px) {
  .make-sure-text {
    margin-top: 20px;
    width: 70%;
  }
}

.error-check-blog, .error-check-blog-505 {
  font-size: 18px;
  line-height: 27px;
  color: var(--black);
  font-family: var(--jakarta);
  font-weight: bold;
}
@media (min-width: 300px) and (max-width: 768px) {
  .error-check-blog, .error-check-blog-505 {
    display: inline-block;
    margin-top: 29px;
  }
}
@media (min-width: 300px) and (max-width: 768px) {
  .error-check-blog-505 {
    display: inline-block;
    margin-top: 0;
  }
}

.we-fix {
  font-size: 26px;
  line-height: 39px;
  color: var(--main-color);
  font-family: var(--jakarta);
  display: inline-block;
  margin-top: 41px;
}
@media (max-width: 450px) {
  .we-fix {
    margin-top: 16px;
    font-size: 22px;
    line-height: 33px;
  }
}

.we-fix__meanwhile {
  font-size: 14px;
  line-height: 27px;
  color: var(--black);
  font-family: var(--jakarta);
  display: inline-block;
  margin-top: 51px;
}
@media (max-width: 450px) {
  .we-fix__meanwhile {
    margin-top: 31px;
  }
}

.footer-menu-link {
  font-size: 14px;
  line-height: 21px;
  font-family: var(--jakarta);
  color: var(--white);
  text-decoration: none;
}

.results-count, .results-count__margined {
  font-size: 16px;
  font-family: var(--jakarta);
  color: var(--black);
  font-weight: 300;
  margin-bottom: 45px;
  display: inline-block;
}
.results-count__margined {
  margin-bottom: 0;
  margin-top: 16px;
}

.result-name {
  font-weight: bold;
  font-size: 16px;
  font-family: var(--jakarta);
  line-height: 24px;
  display: inline-block;
  padding-bottom: 13px;
  color: var(--black);
  text-decoration: none;
}

.result-snippet {
  font-size: 14px;
  line-height: 21px;
  color: var(--black);
  font-family: var(--jakarta);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 768px) {
  .footer-menu-link:nth-child(5n) {
    margin-bottom: 33px;
    display: inline-block;
  }
}
.results-page-header {
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
  font-family: var(--jakarta);
  color: var(--black);
}

h2.wp-block-heading {
  font-size: 22px;
  display: inline-block;
  font-family: var(--jakarta);
  padding: 0 66px;
  margin-top: 80px;
  margin-bottom: 40px;
  width: 70%;
}
@media (max-width: 450px) {
  h2.wp-block-heading {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  h2.wp-block-heading {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  h2.wp-block-heading {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  h2.wp-block-heading {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  h2.wp-block-heading {
    width: 65%;
  }
}

h3.wp-block-heading {
  font-size: 18px;
  display: inline-block;
  font-family: var(--jakarta);
  padding: 0 66px;
  margin-top: 80px;
  margin-bottom: 40px;
  width: 70%;
}
@media (max-width: 450px) {
  h3.wp-block-heading {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  h3.wp-block-heading {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  h3.wp-block-heading {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  h3.wp-block-heading {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  h3.wp-block-heading {
    width: 65%;
  }
}

.single-post p:not(.contact-form p):not(.form-undertext) {
  font-size: 16px;
  font-family: var(--jakarta);
  line-height: 28px;
  display: block;
  max-width: 832px;
  padding: 0 66px;
  color: var(--black);
  width: 70%;
}
@media (max-width: 450px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    width: 63%;
  }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  .single-post p:not(.contact-form p):not(.form-undertext) {
    width: 65%;
  }
}

.contents-list ol li {
  font-size: 16px;
  text-decoration: none;
  font-family: var(--jakarta);
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.thin {
  font-weight: 400;
}

.contents-list ol li:hover {
  transform: translateX(15px);
}

.contents-list ol {
  margin-top: 40px;
  list-style: none;
}

.contents-list ul li {
  position: relative;
  margin-left: 42px;
}

.contents-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contents-list ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--main-color);
  top: 10px;
  left: -16px;
}

.mandatory-fields {
  font-size: 11px;
  font-family: var(--jakarta);
  position: absolute;
  bottom: 40px;
  left: 30px;
}

.horizontal-break, .horizontal-break-heading {
  height: 15px;
  width: 1px;
  background-color: var(--tag);
  display: inline-block;
}
@media (max-width: 768px) {
  .horizontal-break-heading {
    display: none;
  }
}

.section-heading, .section-heading-paged, .section-heading-large {
  display: flex;
  align-items: center;
  gap: 21.5px;
  margin-bottom: 40px;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 450px) {
  .section-heading, .section-heading-paged, .section-heading-large {
    margin-bottom: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .section-heading, .section-heading-paged, .section-heading-large {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .section-heading, .section-heading-paged, .section-heading-large {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .section-heading, .section-heading-paged, .section-heading-large {
    padding: 0;
  }
}
@media (max-width: 450px) {
  .section-heading-large {
    height: 100px;
    margin-bottom: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .section-heading-large {
    height: 100px;
  }
}
@media (min-width: 1280px) {
  .section-heading-paged {
    width: 75%;
  }
}

.heading-wrapper, .heading-wrapper-less-low, .heading-wrapper-diff, .heading-wrapper-low {
  max-width: 1280px;
}
@media (max-width: 450px) {
  .heading-wrapper, .heading-wrapper-less-low, .heading-wrapper-diff, .heading-wrapper-low {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .heading-wrapper, .heading-wrapper-less-low, .heading-wrapper-diff, .heading-wrapper-low {
    padding: 0 40px;
  }
}
.heading-wrapper__padded {
  padding: 0 66px;
}
@media (max-width: 450px) {
  .heading-wrapper__padded {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .heading-wrapper__padded {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .heading-wrapper__padded {
    padding: 0 50px;
  }
}
.heading-wrapper-diff, .heading-wrapper-low {
  margin: 0;
}
@media (max-width: 450px) {
  .heading-wrapper-diff, .heading-wrapper-low {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .heading-wrapper-diff, .heading-wrapper-low {
    padding: 0 40px;
  }
}
.heading-wrapper-min {
  max-width: 1280px;
}
@media (max-width: 450px) {
  .heading-wrapper-min {
    padding: 0 20px;
  }
}
@media (max-width: 450px) {
  .heading-wrapper-low {
    padding: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .heading-wrapper-less-low {
    padding: 0 40px;
  }
}

.breakline, .breakline-dark {
  height: 1px;
  width: 100%;
  background-color: #CFD8DC;
  display: block;
}
.breakline-dark {
  background-color: var(--table-top);
}

.article, .article-category-main {
  width: 554px;
}
@media (max-width: 450px) {
  .article, .article-category-main {
    width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article, .article-category-main {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article, .article-category-main {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article, .article-category-main {
    width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-category-main {
    width: 100%;
  }
}
.article-subcategory-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 450px) {
  .article-subcategory-list {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-subcategory-list {
    flex-direction: column;
    align-items: center;
  }
}
.article-subcategory-list:last-of-type {
  margin-bottom: 32px;
}
.article-newest {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .article-newest {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-newest {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.article_worthy {
  width: 257px;
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .article_worthy {
    margin-bottom: 0;
    width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article_worthy {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article_worthy {
    width: 47%;
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article_worthy {
    width: calc(32% - 30px);
  }
}
@media (min-width: 1280px) {
  .article_worthy-category {
    max-width: 257px;
  }
}
.article_category-list {
  display: flex;
}
@media (max-width: 450px) {
  .article_category-list {
    flex-direction: column;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article_category-list {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article_category-list {
    gap: 24px;
  }
}
.article_big-post, .article_big-post-intresting, .article_big-post-category {
  width: 356px;
}
@media (max-width: 768px) {
  .article_big-post, .article_big-post-intresting, .article_big-post-category {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article_big-post, .article_big-post-intresting, .article_big-post-category {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article_big-post-category {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article_big-post-intresting {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article_big-post-intresting {
    width: 30%;
  }
}
.article-big-post-list {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .article-big-post-list {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-big-post-list {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-big-post-list {
    margin-bottom: 0;
  }
}
.article_worthy-category {
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .article_worthy-category {
    margin-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .article_worthy-category {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1279px) {
  .article_worthy-category {
    margin-bottom: 0;
    flex: 0 0 47.5%;
  }
}
.article_worthy-subcategory {
  flex: 0 0 32%;
}
@media (max-width: 450px) {
  .article_worthy-subcategory {
    margin-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .article_worthy-subcategory {
    width: 100%;
    margin-bottom: 0;
  }
}

.article-row-dark .article-row-articles .article_worthy:last-of-type, .article-row-dark .article-row-articles-sub-subcategory .article_worthy:last-of-type, .article-row-dark .article-row-articles-subcategory .article_worthy:last-of-type {
  margin-bottom: 40px;
}

.bald-article {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E7E9;
}
@media (max-width: 1000px) {
  .bald-article {
    margin-top: 40px;
  }
}
@media (min-width: 1279px) {
  .bald-article {
    width: 257px;
  }
}
.bald-article:nth-child(n+2) {
  margin-top: 25px;
}

.article__top, .article__top-category-main {
  position: relative;
  height: 370px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 450px) {
  .article__top, .article__top-category-main {
    width: 100%;
    height: 250px;
    border-radius: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top, .article__top-category-main {
    height: 420px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top, .article__top-category-main {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .article__top-category-main {
    border-radius: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article__top-category-main {
    width: 100%;
    height: 500px;
  }
}
.article__top-subcategory-list {
  height: 238px;
  min-width: 356px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 450px) {
  .article__top-subcategory-list {
    width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-subcategory-list {
    width: 100%;
    height: 350px;
  }
}
.article__top-newest {
  height: 108px;
  min-width: 158px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .article__top-newest {
    width: 100%;
    height: 233px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-newest {
    width: 100%;
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-newest {
    width: 300px;
    height: 200px;
  }
}
.article__top-worthy, .article__top-worthy-category, .article__top-worthy-category-full {
  border-radius: 8px;
  max-width: 257px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 450px) {
  .article__top-worthy, .article__top-worthy-category, .article__top-worthy-category-full {
    min-width: 100%;
    height: 233px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-worthy, .article__top-worthy-category, .article__top-worthy-category-full {
    min-width: 100%;
    max-width: auto;
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-worthy, .article__top-worthy-category, .article__top-worthy-category-full {
    max-width: 100% !important;
  }
}
.article__top-worthy-category, .article__top-worthy-category-full {
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-worthy-category, .article__top-worthy-category-full {
    min-height: 400px;
    min-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-worthy-category, .article__top-worthy-category-full {
    min-width: 100%;
    max-width: none;
    min-height: 450px !important;
  }
}
@media (min-width: 1000px) and (max-width: 1279px) {
  .article__top-worthy-category, .article__top-worthy-category-full {
    min-width: 100%;
    height: 300px;
  }
}
@media (min-width: 1280px) {
  .article__top-worthy-category, .article__top-worthy-category-full {
    max-width: 257px;
  }
}
.article__top-worthy-category-full {
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .article__top-worthy-category-full {
    width: 100%;
    height: 450px;
  }
}
@media (min-width: 1280px) {
  .article__top-worthy-category-full {
    max-width: none;
  }
}
.article__top-category-list {
  overflow: hidden;
  min-width: 257px;
  max-width: 257px;
  height: 172px;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 450px) {
  .article__top-category-list {
    width: 100%;
    height: 233px;
    min-width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-category-list {
    width: 100%;
    height: 350px;
    min-width: 100%;
    max-width: 100%;
  }
}
.article__top-big-post, .article__top-big-post-category, .article__top-big-post-intresting {
  border-radius: 8px;
  width: 356px;
  height: 238px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 450px) {
  .article__top-big-post, .article__top-big-post-category, .article__top-big-post-intresting {
    width: 100%;
    height: 250px;
    border-radius: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-big-post, .article__top-big-post-category, .article__top-big-post-intresting {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-big-post, .article__top-big-post-category, .article__top-big-post-intresting {
    width: 100%;
    height: 450px;
    margin-top: 40px;
  }
}
.article__top-big-post-intresting {
  overflow: hidden;
  position: relative;
}
@media (max-width: 450px) {
  .article__top-big-post-intresting {
    height: 233px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .article__top-big-post-intresting {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-big-post-intresting {
    height: 450px;
  }
}
.article__top-big-post-category {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 450px;
}
@media (max-width: 450px) {
  .article__top-big-post-category {
    max-height: 223px !important;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-big-post-category {
    height: 500px;
  }
}
@media (min-width: 1280px) {
  .article__top-big-post-category {
    height: 238px;
  }
}
.article__top-big-post-list {
  height: 106px;
  min-width: 158px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .article__top-big-post-list {
    width: 100%;
    height: 223px;
    position: relative;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-big-post-list {
    width: 100%;
    height: 350px;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-big-post-list {
    min-width: 250px;
    height: 150px;
    position: relative;
  }
}

.article-tag {
  background-color: var(--tags-bgc);
  padding: 7px 10px;
  border-radius: 15px;
  position: absolute;
  left: 8px;
  bottom: 8px;
}

.article-snippet-box, .article-snippet-box-category-main {
  margin-top: 24px;
}
.article-snippet-box-newest {
  margin-top: 0;
}
.article-snippet-box-worthy {
  margin-top: 8px;
}
.article-snippet-box-category {
  margin-top: 8px;
}
.article-snippet-box-big-post {
  margin-top: 8px;
}
.article-snippet-box-category-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-snippet-box-bald {
  margin-top: 8px;
}
.article-snippet-box-subcategory-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article__bottom-newest {
  margin-left: 25px;
}
@media (max-width: 450px) {
  .article__bottom-newest {
    margin: 16px 0 0 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__bottom-newest {
    margin: 16px 0 0 0;
  }
}
.article__bottom-category {
  margin-left: 25px;
}
@media (max-width: 450px) {
  .article__bottom-category {
    margin-left: 0;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .article__bottom-category {
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .article__bottom-category {
    max-width: 63%;
  }
}
.article__bottom-big-post, .article__bottom-big-post-intresting {
  padding: 0 20px;
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__bottom-big-post, .article__bottom-big-post-intresting {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__bottom-big-post, .article__bottom-big-post-intresting {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article__bottom-big-post, .article__bottom-big-post-intresting {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .article__bottom-big-post, .article__bottom-big-post-intresting {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .article__bottom-big-post-category {
    padding: 0 20px;
  }
}
.article__bottom-big-post-intresting {
  position: relative;
}
@media (max-width: 768px) {
  .article__bottom-big-post-intresting {
    padding: 0 !important;
  }
}
@media (min-width: 1280px) {
  .article__bottom-big-post-intresting {
    padding: 0 !important;
  }
}
.article__bottom-big-post-list {
  margin-left: 24px;
}
@media (max-width: 768px) {
  .article__bottom-big-post-list {
    margin-top: 19px;
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .article__bottom-big-post-list {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .article__bottom-best {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__bottom-best {
    padding: 0 20px;
  }
}
@media (max-width: 450px) {
  .article__bottom-category-main {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__bottom-category-main {
    padding: 0 20px;
  }
}

.date-box, .date-box-subcategory-list, .date-box-slider {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.date-box-slider {
  margin-top: 40px;
}
.date-box-newest {
  margin-top: 0;
  margin-bottom: 8px;
}
.date-box-category {
  margin-top: 8px;
}
.date-box-bald {
  display: flex;
  align-items: center;
  margin-top: 0;
  gap: 16px;
  margin-bottom: 16px;
}
.date-box-subcategory-list {
  margin-top: 0;
}

.article-author-box {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-author-box-category {
  margin-top: 24px;
}
.article-author-box-big-post {
  margin-top: 24px;
}
.article-author-box-bald {
  margin-top: 14px;
}

.article-author-img-box {
  width: 28px;
  height: 28px;
}

.article-author-img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  max-height: 28px;
  min-width: 28px;
  transition: transform 0.3s;
}
.article-author-img-box img:hover {
  transform: scale(1.05);
}

.article__top-newest img {
  min-height: 100%;
  height: 100%;
  min-width: 158px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.article__top-newest img:hover {
  transform: scale(1.05);
}

.article__top img, .article__top-category-main img {
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top img, .article__top-category-main img {
    border-radius: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top img, .article__top-category-main img {
    border-radius: 0px;
    max-height: 450px;
  }
}
.article__top img:hover, .article__top-category-main img:hover {
  transform: scale(1.05);
}

.article__top-worthy img, .article__top-worthy-category img, .article__top-worthy-category-full img {
  max-height: 172px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-worthy img, .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 233px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-worthy img, .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-worthy img, .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 240px;
  }
}
.article__top-worthy img:hover, .article__top-worthy-category img:hover, .article__top-worthy-category-full img:hover {
  transform: scale(1.05);
}

.article__top-worthy-category img, .article__top-worthy-category-full img {
  max-height: 172px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 233px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 450px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article__top-worthy-category img, .article__top-worthy-category-full img {
    max-height: 450px;
  }
}
.article__top-worthy-category img:hover, .article__top-worthy-category-full img:hover {
  transform: scale(1.05);
}

.article__top-worthy-category-full img {
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-worthy-category-full img {
    max-height: 233px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-worthy-category-full img {
    max-height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-worthy-category-full img {
    max-height: 500px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article__top-worthy-category-full img {
    max-height: 450px;
  }
}
.article__top-worthy-category-full img:hover {
  transform: scale(1.05);
}

.article__top-category-list img {
  max-height: 172px;
  height: 100%;
  min-width: 257px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-category-list img {
    max-height: 233px;
    width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-category-list img {
    width: 100%;
    max-height: 350px;
  }
}
.article__top-category-list img:hover {
  transform: scale(1.05);
}

.article__top-big-post img, .article__top-big-post-intresting img, .article__top-big-post-category img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .article__top-big-post img, .article__top-big-post-intresting img, .article__top-big-post-category img {
    border-radius: 0;
  }
}
.article__top-big-post img:hover, .article__top-big-post-intresting img:hover, .article__top-big-post-category img:hover {
  transform: scale(1.05);
}

.article__top-big-post-list img {
  height: 100%;
  min-width: 158px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-big-post-list img {
    min-width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-big-post-list img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article__top-big-post-list img {
    min-width: 250px;
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article__top-big-post-list img {
    width: 100%;
  }
}
.article__top-big-post-list img:hover {
  transform: scale(1.05);
}

.article__top-big-post-intresting img {
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-big-post-intresting img {
    min-width: 100%;
    height: 233px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article__top-big-post-intresting img {
    min-width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
.article__top-big-post-intresting img:hover {
  transform: scale(1.05);
}

.article__top-subcategory-list img {
  min-width: 356px;
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
@media (max-width: 450px) {
  .article__top-subcategory-list img {
    min-width: 280px;
    max-width: 100%;
  }
}
.article__top-subcategory-list img:hover {
  transform: scale(1.05);
}

.newsletter, .newsletter-nav-links {
  width: 100%;
  display: flex;
  border-radius: 8px;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 450px) {
  .newsletter, .newsletter-nav-links {
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
  }
}
.newsletter-nav-links {
  flex-direction: column;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) and (max-width: 1000px) {
  .newsletter-nav-links {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .newsletter-nav-links {
    display: none;
  }
}

.newsletter__form, .newsletter__form-category {
  width: 70%;
  padding: 40px 167px 40px 40px;
}
.newsletter__form-category {
  width: 100%;
}
.newsletter__form-nav-links {
  width: 100%;
  padding: 40px 20px;
}
@media (min-width: 450px) and (max-width: 768px) {
  .newsletter__form-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 50px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .newsletter__form-nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1000px) {
  .newsletter__form, .newsletter__form-category {
    width: 100%;
    padding: 40px 20px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .newsletter__form, .newsletter__form-category {
    padding: 40px 20px;
  }
}

.newsletter-input, .newsletter-input-links {
  padding: 14px 24px;
  border-radius: 25px;
  border: 0.5px solid var(--tag);
  width: 415px;
}
@media (max-width: 768px) {
  .newsletter-input, .newsletter-input-links {
    width: 100%;
  }
}
.newsletter-input-links {
  width: 100%;
}
@media (min-width: 450px) and (max-width: 768px) {
  .newsletter-input-links {
    width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .newsletter-input-links {
    width: 500px;
  }
}

.newsletter-input:hover, .newsletter-input-links:hover {
  border: 0.5px solid var(--main-color);
  transition: border 0.3s;
}

.newsletter-input:is(:focus), .newsletter-input-links:is(:focus) {
  outline: none;
}

.newsletter-input.active, .active.newsletter-input-links {
  border: 1px solid var(--main-color);
}

.newsletter-label {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--tags-bgc);
  position: absolute;
  left: 24px;
  top: 13px;
  transition: transform 0.3s;
  pointer-events: none;
}

.newsletter-label.active {
  transform: translateY(-24px);
  background-color: var(--white);
  padding-inline: 5px;
}

.newsletter__img-box {
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media (max-width: 1000px) {
  .newsletter__img-box {
    display: none;
  }
}

.newsletter-img {
  min-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.input-box {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.input-box-newsletter {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 450px) and (max-width: 1000px) {
  .input-box-newsletter {
    gap: 17px;
    margin-bottom: 17px;
    margin-top: 17px;
  }
}
@media (max-width: 450px) {
  .input-box {
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .input-box {
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.input-box p {
  display: flex;
  gap: 8px;
}

.wpcf7-not-valid-tip {
  font-family: var(--jakarta);
  font-size: 11px;
  color: var(--validation);
  position: absolute;
  bottom: -4px;
  right: 37px;
  background: #fff;
  padding-inline: 5px;
}

#wpcf7-f207-o1 .wpcf7-form-control-wrap {
  position: static;
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  margin: 0;
  font-size: 11px;
  font-family: var(--jakarta);
  font-weight: 400;
  padding: 0;
  margin-bottom: 10px;
}

.nav__links .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  font-size: 11px;
  font-family: var(--jakarta);
  font-weight: 400;
  padding: 0;
  margin: 0 0 15px;
}

@media (max-width: 1000px) {
  #searchform {
    width: 100%;
  }
}

.newsletter-nav-links .wpcf7-not-valid-tip {
  bottom: -8px;
}

.input-box-newsletter p {
  display: flex;
  flex-direction: column;
}

#wpcf7-f473-o2 .input-box p {
  display: flex;
}
@media (max-width: 768px) {
  #wpcf7-f473-o2 .input-box p {
    flex-direction: column;
    gap: 16px;
  }
}

.swiper-container {
  background-color: var(--chapter-color);
  border-radius: 8px;
}

#main-carousel {
  max-height: 815px;
  height: 800px;
}

#thumbnail-carousel {
  max-height: 210px;
}

.article-swiper {
  width: 100%;
  background-color: var(--chapter-color);
  border-radius: 20px;
  padding: 0 40px;
}
@media (max-width: 450px) {
  .article-swiper {
    padding: 20px;
    border-radius: 0;
    height: 845px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-swiper {
    padding: 0 40px;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-swiper {
    padding: 0 50px;
    border-radius: 0;
  }
}

.article-swiper-textbox {
  padding: 0 0 42px 0;
  max-width: 70%;
  height: 180px;
  max-height: 180px;
}
@media (max-width: 450px) {
  .article-swiper-textbox {
    height: 180px;
    max-height: 180px;
  }
}
@media (max-width: 1279px) {
  .article-swiper-textbox {
    max-width: 100%;
  }
}

#main-carousel .splide__slide a {
  display: block;
  height: 514px;
}
@media (max-width: 450px) {
  #main-carousel .splide__slide a {
    height: 314px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  #main-carousel .splide__slide a {
    height: 414px;
  }
}

@media (max-width: 450px) {
  .last-update-box {
    margin-top: 32px;
  }
}

.slide-img-box {
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.slide-img {
  min-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-carousel .splide__slide .splide-slide-container img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splide__track--nav .splide__list .splide__slide .splide__slide-container img:hover {
  border: 1px solid var(--main-color);
}

#thumbnail-carousel .splide__track, #thumbnail-carousel .splide__list {
  height: -moz-fit-content;
  height: fit-content;
}

#thumbnail-carousel .splide__slide {
  background-color: var(--chapter-color);
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  #thumbnail-carousel .splide__slide {
    max-height: 300px;
  }
}

#thumbnail-carousel .splide-arrows .splide__arrow-next {
  padding: 40px;
}

.splide__arrow {
  background-color: var(--main-color);
  height: 50px;
  width: 50px;
  opacity: 1;
  transition: all 0.3s;
  transform: rotateZ(0);
}

.splide__arrow--prev:hover {
  background-color: var(--main-hover);
  left: -38px;
}

.splide__arrow--next:hover {
  background-color: var(--main-hover);
  right: -38px;
}

.splide__arrow--next:hover svg {
  transform: translateX(6px);
}

.splide__arrow--prev:hover svg {
  transform: translateX(-6px) scaleX(-1);
}

.splide__arrow svg {
  fill: #fff !important;
  height: 1.8em !important;
  width: 1.8em !important;
  transition: transform 0.3s;
}

.splide__arrow--next {
  right: -2em;
  transform: rotate(0);
}

.splide__arrow--prev {
  left: -2em;
}

.splideslide-textbox {
  padding-top: 10px;
}

.splide__slide {
  width: 100%;
  border: var(--main-color);
}

.splide__slide-container {
  height: 140px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .splide__slide-container {
    height: 94px;
  }
}

.splide__slide-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.thumbnail_carousel_wrapper {
  padding: 0 48px;
  transform: translateY(-80px);
}
@media (max-width: 450px) {
  .thumbnail_carousel_wrapper {
    padding: 0 26px;
    transform: translateY(-240px);
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .thumbnail_carousel_wrapper {
    padding: 0 26px;
    transform: translateY(-150px);
  }
}

#main-carousel .splide-slide {
  height: 600px;
}

#main-carousel .splide__slide h3 {
  padding-top: 40px;
  display: inline-block;
}

.splide__track--nav .splide__list > .splide__slide.is-active {
  border: none;
}

.splide__track--nav .splide__list > .splide__slide.is-active .splide__slide-container img {
  border: 2px solid var(--main-color);
}

.splide__track--nav .splide__list > .splide__slide.is-active .splide__slide-textbox .thumbnail-undertext {
  font-weight: bold;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: none;
}

#main-carousel .splide__slide {
  border-radius: 8px;
}
@media (max-width: 450px) {
  #main-carousel .splide__slide {
    height: -moz-fit-content;
    height: fit-content;
  }
}

#main-carousel .splide__slide img {
  height: 100%;
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.splide__arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
}
@media (max-width: 450px) {
  .splide__arrows {
    top: -160px;
    left: -10px;
    right: -10px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .splide__arrows {
    top: -200px;
    left: -10px;
    right: -10px;
  }
}

.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}

.banner {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
  width: 672px;
  border-radius: 8px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .banner {
    width: 650px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    width: 100%;
    padding: 48px 16px;
    gap: 40px;
    box-shadow: 0px 0px 14px -7px rgb(66, 68, 90);
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .banner {
    width: 400px;
    margin: 0 auto;
    align-items: center;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .banner {
    width: auto;
  }
}

.banner-textfield {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  gap: 24px;
}
@media (max-width: 450px) {
  .banner-textfield {
    width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .banner-textfield {
    align-items: center;
    text-align: center;
  }
}

.banner-img {
  width: 208px;
  height: 208px;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .banner-img {
    align-self: center;
  }
}

.banner-img img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  max-width: 100%;
  border-radius: 8px;
}

.graph-contents-section {
  overflow: hidden;
}

.graph-contents {
  width: 100%;
  max-width: 100vw;
  background-color: #F5F7F8;
  padding: 64px 0;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .graph-contents {
    margin-top: 64px;
  }
}
.graph-contents::before {
  position: absolute;
  top: 0;
  left: -100vw;
  height: 100%;
  background: #f6f7f8;
  content: "";
  width: 100vw;
}
.graph-contents::after {
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  background: #f6f7f8;
  content: "";
  width: 100vw;
}

.graph-contents__chapters {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 36px;
}
@media (max-width: 768px) {
  .graph-contents__chapters {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .graph-contents__chapters {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.graph-contents__chapter {
  width: 200px;
}
@media (max-width: 1000px) {
  .graph-contents__chapter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
  }
}

.graph-chapter__icon {
  display: inline-block;
  padding: 20px;
  margin: 40px 0 24px 0;
  background-color: var(--white);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.graph-chapter__icon:hover + .graph-chapter__text > .chapter-name {
  text-decoration: underline;
}

.graph-chapter__icon:hover ~ .graph__contents-arrow > img {
  transform: translateX(20px);
}

.graph-chapter__icon img {
  min-width: 40px;
  max-width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1000px) {
  .graph-contents__heading {
    text-align: center;
  }
}

.graph-chapter__text {
  margin-bottom: 23px;
}
@media (max-width: 1000px) {
  .graph-chapter__text {
    text-align: center;
  }
}

.graph__contents-arrow img {
  transition: all 0.3s;
}

table {
  table-layout: fixed;
}

table, tbody {
  width: 100%;
  border-radius: 8px;
}

table, tbody, tr, td {
  font-family: "Plus Jakarta Sans", sans-serif;
}

tr:first-of-type td {
  font-size: 16px;
}
@media (max-width: 450px) {
  tr:first-of-type td {
    font-size: 14px;
  }
}

.wp-block-table td, .wp-block-table th {
  border: none;
  padding: 14px 24px;
}

figure.wp-block-table {
  width: 70%;
  padding: 0 96px 0 66px;
  margin: 80px 0;
}
@media (max-width: 450px) {
  figure.wp-block-table {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  figure.wp-block-table {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  figure.wp-block-table {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  figure.wp-block-table {
    width: 100%;
    margin: 40px 0;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  figure.wp-block-table {
    width: 62%;
  }
}

tr td:first-of-type {
  font-weight: bold;
}
@media (max-width: 580px) {
  tr td:first-of-type {
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  tr td:nth-of-type(n+2) {
    font-size: 12px;
  }
}

tr td:first-of-type {
  text-align: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

tr td:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

tr {
  border-radius: 8px;
  border-collapse: collapse;
}

tr td:first-of-type {
  width: 6%;
}
@media (max-width: 580px) {
  tr td:first-of-type {
    width: 10%;
    font-size: 14px;
  }
}

tr:first-of-type {
  background-color: #607D8B;
  color: var(--white);
  font-weight: bold;
}

tr:nth-of-type(2n) {
  background-color: white;
}

tr:nth-of-type(2n) {
  background-color: #F5F7F8;
}

td {
  padding: 14px 24px;
}

table tr td:first-of-type {
  padding: 14px 0;
}

table.properties__table tr td:first-of-type {
  padding: 14px 24px;
}

table.properties__table {
  table-layout: fixed;
}

table.properties__table tr {
  border-collapse: collapse;
}

table.properties__table tr td {
  width: auto;
  border-collapse: collapse;
}

table tr:nth-of-type(n+2) td {
  vertical-align: top;
}

@media (max-width: 580px) {
  table.properties__table tr:nth-of-type(n+2) td {
    font-size: 13px;
  }
}

table.properties__table tr:first-of-type td {
  background-color: #607D8B;
}

table.properties__table tr:nth-of-type(n+2) td:nth-of-type(2) {
  background-color: #ECEFF1;
}

table.properties__table tr:nth-of-type(n+2) td:first-of-type {
  background-color: #F5F7F8;
  font-weight: normal;
}

table.properties__table tr td:first-of-type {
  text-align: left;
}

table.properties__tavle tr td li {
  position: relative;
}

table.properties__tavle tr td li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
}

table.properties__table tr td span {
  font-size: 14px;
  line-height: 21px;
  position: relative;
}

@media (max-width: 580px) {
  table.properties__table tr:nth-of-type(n+2) td span {
    font-size: 13px;
  }
}

table.properties__table tr td span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 10px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--main-color);
}

table.properties__table tr td {
  border-radius: 0;
}

table.properties__table tr:first-of-type td:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

table.properties__table tr:first-of-type td:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

table.properties__table tr:nth-of-type(2) td:first-of-type {
  border-top-left-radius: 8px;
}

table.properties__table tr:nth-of-type(2) td:last-of-type {
  border-top-right-radius: 8px;
}

table.properties__table tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 8px;
}

table.properties__table tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 8px;
}

.featured-data {
  padding: 40px;
  background-color: #F0FCF5;
  border-left: 4px solid #00C853;
  width: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: 80px;
}
@media (max-width: 450px) {
  .featured-data {
    padding: 40px 20px;
    margin-top: 60px;
  }
}

.featured-data__list {
  margin-top: 33px;
}

.author-box {
  padding: 64px;
  margin-top: 120px;
  display: flex;
  width: 100%;
  background-color: #F5F7F8;
}
@media (max-width: 450px) {
  .author-box {
    margin-top: 60px;
  }
}
@media (max-width: 1000px) {
  .author-box {
    flex-direction: column;
    padding: 64px 40px;
  }
}

.author-introduction {
  display: inline-flex;
  gap: 40px;
}
@media (max-width: 450px) {
  .author-introduction {
    flex-direction: column;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .author-introduction {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .author-introduction {
    gap: 20px;
  }
}

.author-imgbox {
  width: 192px;
  height: 192px;
}

.author-imgbox img {
  max-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.author-textbox {
  max-width: 55%;
  gap: 8px;
}
@media (max-width: 450px) {
  .author-textbox {
    max-width: 100%;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .author-textbox {
    text-align: center;
  }
}

.author-bio-box {
  margin-top: 26px;
}

.author-socialmedia {
  position: relative;
}
@media (max-width: 450px) {
  .author-socialmedia {
    margin-top: 24px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .author-socialmedia {
    text-align: center;
    margin-top: 30px;
  }
}

.author-socialmedia::before {
  content: "";
  position: absolute;
  left: -35%;
  bottom: 0;
  height: 100%;
  width: 1px;
  background-color: #E2E7E9;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .author-socialmedia::before {
    left: -15%;
  }
}

.socialmedia-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 60px;
  margin-top: 37px;
  gap: 24px;
  background-color: #263238;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .socialmedia-icons {
    margin-top: 42px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .socialmedia-icons {
    display: inline-flex;
  }
}

.author-socialmedia-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.socialmedia-icon-box {
  width: 40px;
  height: 40px;
}

.socialmedia-icon-box img {
  min-width: 40px;
  max-height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-section {
  background-color: #F5F7F8;
}

.check-other-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 80px 0 131px 0;
}
@media (max-width: 450px) {
  .check-other-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 0;
    gap: 64px;
  }
}

.prev-article-img, .next-article-img {
  width: 192px;
  height: 128px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 38px;
}
@media (max-width: 450px) {
  .prev-article-img, .next-article-img {
    margin-bottom: 32px;
  }
}

.prev-article-img img, .next-article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.prev-article, .next-article {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 450px) {
  .prev-article, .next-article {
    justify-content: center;
    align-items: center;
  }
}

.prev-article-btn {
  margin-bottom: 19px;
}

.next-article-btn {
  margin-bottom: 24px;
}

.prev-article-btn {
  align-self: flex-end;
}
@media (max-width: 450px) {
  .prev-article-btn {
    align-self: center;
  }
}

.prev-article-text {
  align-self: flex-end;
  text-align: right;
  max-width: 190px;
}
@media (max-width: 450px) {
  .prev-article-text {
    align-self: center;
    text-align: center;
  }
}

.next-article-text {
  max-width: 190px;
  align-self: flex-start;
  text-align: left;
}
@media (max-width: 450px) {
  .next-article-text {
    align-self: center;
    text-align: center;
  }
}

.contents {
  inset: 0;
  position: fixed;
  z-index: 700;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}
.contents.active {
  display: flex;
  overflow-y: scroll !important;
}

.contents-list {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: var(--white);
  padding: 46px 36px;
  overflow: scroll;
  min-width: 400px;
}
@media (max-width: 730px) {
  .contents-list {
    width: 100%;
    height: auto;
    overflow: scroll;
    min-width: none;
  }
}

.content-part {
  margin-top: 37px;
}

.content-part ul {
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-part ul li {
  position: relative;
  margin-left: 42px;
}
.content-part ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--main-color);
  top: 10px;
  left: -16px;
}

.chapter-link {
  display: inline-block;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--black);
}
.chapter-link:hover {
  text-decoration: underline;
  transform: translateX(10px);
}

.close-contents-btn {
  background-color: #B0BEC5;
  display: inline-block;
  padding: 13px;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 8px;
  cursor: pointer;
}

.nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 66px;
  background-color: white;
}
.nav__wrapper {
  position: sticky;
  top: 0;
  z-index: 501;
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 450px) {
  .nav {
    padding: 10px 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .nav {
    padding: 10px 10px;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .nav {
    padding: 10px 20px;
    margin: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1279px) {
  .nav {
    padding: 10px 20px;
  }
}

.nav__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 450px) {
  .nav__items {
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
}
@media (min-width: 450px) and (max-width: 1279px) {
  .nav__items {
    justify-content: space-between;
    margin: 0;
    width: 100%;
    padding: 0 30px;
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: 226px;
  width: 158px;
  cursor: pointer;
  height: 50px;
}
@media (max-width: 1000px) {
  .nav__logo {
    margin: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .nav__logo {
    margin-right: 100px;
  }
}

.nav__logo img {
  min-width: 158px;
  max-width: 158px;
  max-height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav__links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  list-style: none;
  transition: transform 0.2s;
  z-index: 1;
  z-index: 901;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .nav__links {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .nav__links {
    display: block;
    position: fixed;
    gap: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 70px;
    background-color: white;
    transform: translateX(100%);
    height: 100dvh;
    overflow-y: scroll;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .nav__links {
    padding: 20px 50px 0 50px;
  }
}
@media (max-width: 450px) {
  .nav__links {
    padding: 20px 20px 80px 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .nav__links {
    padding: 20px 40px;
  }
}
.nav__links.active {
  transform: translateX(0);
}

.nav__links-inner {
  display: flex;
  justify-content: space-around;
  gap: 60px;
}
@media (max-width: 450px) {
  .nav__links-inner {
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  .nav__links-inner {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .nav__links-inner {
    gap: 40px;
  }
}

.nav__li {
  display: flex;
  cursor: pointer;
  gap: 8px;
  transition: transform 0.3s;
}
@media (max-width: 1000px) {
  .nav__li {
    width: 100%;
    padding: 18.5px 0;
    display: block;
    position: relative;
  }
}

@media (min-width: 1000px) {
  .nav__li:hover .nav-subcategories {
    transform: scaleY(100%);
    opacity: 1;
    visibility: visible;
  }
  .nav__li:hover .nav__cta {
    color: var(--main-color);
  }
}
.nav-subcategories {
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  transition: transform 0.3s ease, opacity 0ms linear 0.1s, visibility 0ms linear 0.1s;
  transform-origin: top center;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  padding: 50px 300px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  gap: 50px;
  list-style: none;
}
.nav-subcategories::before {
  content: "";
  position: absolute;
  top: -30px;
  height: 30px;
  left: 0;
  right: 0;
  background-color: transparent;
}
.nav-subcategories.active {
  display: flex;
  flex-direction: column;
  transform: scaleY(100%);
}
@media (max-width: 1000px) {
  .nav-subcategories {
    display: none;
    visibility: visible;
    opacity: 1;
    padding: 0;
    width: 200px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    top: 20px;
    gap: 30px;
    box-shadow: 1px 0px 0px -100px rgb(66, 68, 90);
    border: none;
    margin-bottom: 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .nav-subcategories {
    transform: translateX(0);
    align-items: flex-start;
  }
}

.nav-subcategories.active {
  display: flex;
}

.search-box {
  display: flex;
  position: relative;
}
@media (max-width: 1000px) {
  .search-box {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .search-box {
    align-self: flex-start;
  }
}

.search-input {
  position: absolute;
  padding: 12.5px 24px;
  border-radius: 25px;
  border: 0.5px solid var(--tags-bgc);
  width: 0;
  opacity: 0;
  bottom: 2.5px;
  transform: translateX(-91.1%);
  color: var(--black);
  z-index: 1;
}
@media (max-width: 1000px) {
  .search-input {
    display: block;
    position: relative;
    transform: translateX(0);
    opacity: 1;
    width: 100%;
  }
}

.search-input:focus {
  border: 1px solid var(--main-color);
}

.search-input.active {
  animation: showInput 0.2s both;
}

@media (min-width: 1000px) {
  .search-input.inactive {
    animation: hideInput 0.3s both;
  }
}

.search-input:focus {
  outline: none;
}

.nav-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1000px) {
  .nav-bars {
    display: none;
  }
}
.nav-bars.active {
  transform: translateX(-11px);
}
.nav-bars.active .bar:first-of-type {
  transform: rotate(135deg) translateY(-21px);
}
.nav-bars.active .bar:nth-of-type(2) {
  opacity: 0;
  left: -60px;
}
.nav-bars.active .bar:nth-of-type(3) {
  transform: rotate(-135deg) translateY(20px);
}

.bar {
  width: 40px;
  height: 3px;
  background-color: var(--footer-color);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

@media (max-width: 1000px) {
  .nav__li img {
    padding: 20px;
    position: absolute;
    right: -15px;
    top: 10px;
  }
}
.nav-slider {
  display: block;
  transition: transform 0.3s;
}
@media (max-width: 1000px) {
  .nav-slider {
    transition: unset;
  }
}
.nav-slider.active {
  transform: rotate(180deg);
}

.search-result {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1000px) {
  .search-result {
    top: 145px;
    z-index: 9999;
    background: none;
  }
}

.result-list-wrapper {
  position: absolute;
  top: 10px;
  right: 66px;
  background-color: #fff;
  padding: 10px 24px 24px 24px;
  border-radius: 8px;
  width: 500px;
  max-height: 887px;
  overflow: scroll;
}
@media (max-width: 450px) {
  .result-list-wrapper {
    padding: 10px 20px 24px 20px;
  }
}
@media (min-width: 450px) and (max-width: 767px) {
  .result-list-wrapper {
    padding: 10px 40px 24px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .result-list-wrapper {
    padding: 10px 50px 24px 50px;
  }
}
@media (max-width: 1000px) {
  .result-list-wrapper {
    top: 0;
    z-index: 9999;
    width: unset;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.results-list, .results-list-margined {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.results-list-margined {
  margin-top: 56.5px;
  width: 75%;
}
@media (max-width: 1000px) {
  .results-list-margined {
    width: 100%;
  }
}

.single-result, .single-result-search {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #CFD8DC;
  padding-bottom: 20px;
}
@media (min-width: 1280px) {
  .single-result-search {
    width: 70%;
  }
}

@keyframes showInput {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 500px;
  }
}
@keyframes hideInput {
  from {
    opacity: 1;
    width: 500px;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  width: 384px;
  background: #fff;
  position: sticky;
  top: 20px;
  z-index: 500;
  padding: 32px;
  border-radius: 8px;
  height: 100%;
}
@media (max-width: 450px) {
  .contact-form {
    position: fixed;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    padding: 40px;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .contact-form {
    height: 100%;
    width: 100%;
    padding: 100px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .contact-form {
    height: 100%;
    width: 100%;
    padding: 200px;
  }
}

.form-conditions {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
}

.input-container {
  position: relative;
  margin-bottom: 16px;
}
.input-container:last-of-type {
  margin-bottom: 25px;
}

.contact-form-input {
  padding: 16px 24px;
  border-radius: 30px;
  border: 0.5px solid var(--tags-bgc);
  outline: none;
  width: 100%;
  font-size: 10px;
  transition: outline-color 0.5s;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  transition: all 0.2s;
}

.contact-form-input:hover {
  border: 0.5px solid var(--main-color);
}

.input-container.invalid .contact-form-input {
  border: 0.5px solid var(--validation);
}

.contact-form-label, .contact-form-label-newsletter {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--tags-bgc);
  position: absolute;
  left: 24px;
  top: 15px;
  transition: transform 0.3s;
  pointer-events: none;
}
.contact-form-label-newsletter {
  top: 13px;
}
@media (min-width: 1000px) {
  .contact-form-label-newsletter {
    top: 14px;
  }
}

.contact-form-input.active {
  border: 1px solid var(--main-color);
}

.contact-form-label.active, .active.contact-form-label-newsletter {
  padding-inline: 5px;
  transform: translateY(-20px);
  background-color: white;
  color: var(--black);
  font-size: 10px;
}

#wpcf7-f207-o1 .wpcf7-form-control-wrap {
  position: static;
}

#wpcf7-f207-o1 form[data-status=invalid] .wpcf7-response-output {
  padding: 0;
  margin: 0;
  border: none;
  font-family: var(--jakarta);
  font-size: 12px;
  color: var(--validation);
}

#wpcf7-f207-o1 form[data-status=invalid] .contact-form-input {
  border: 1px solid var(--validation);
}

.contact-form-heading {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form-input.invalid {
  border: 1px solid #FC0245;
}

.input-container.invalid .contact-form-label, .input-container.invalid .contact-form-label-newsletter {
  padding-inline: 5px;
  transform: translateY(-20px);
  background-color: white;
  color: #FC0245;
  font-size: 10px;
}

.wpcf7-not-valid {
  border: 1px solid #FC0245;
}

.wpcf7 form.unaccepted .wpcf7-response-output {
  font-size: 11px;
  font-family: var(--jakarta);
  margin: 10px 0 0 0;
  padding: 0;
  border: none;
}

.prev-page-btn, .next-page-btn {
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  display: inline-block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.prev-page-btn {
  left: 0;
  position: absolute;
}

.next-page-btn {
  right: 0;
  position: absolute;
}

.prev-page-btn img, .next-page-btn img {
  transition: transform 0.3s;
}

.prev-page-btn:hover, .next-page-btn:hover {
  background-color: var(--main-hover);
}

.prev-page-btn:hover {
  transform: translateX(-6px);
}

.next-page-btn:hover {
  transform: translateX(6px);
}

.prev-page-btn:hover img {
  transform: translateX(-6px);
}

.next-page-btn:hover img {
  transform: translateX(6px);
}

.pagination, .pagination-nopadding {
  display: flex;
  justify-content: center;
  margin: 120px 0 0 0;
  position: relative;
}
@media (max-width: 450px) {
  .pagination, .pagination-nopadding {
    margin: 60px 0 0 0;
  }
}
.pagination-nopadding {
  padding: 0;
}
@media (max-width: 450px) {
  .pagination-nopadding {
    padding: 0 22px;
  }
}

.pagination-squares {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.pagination-square {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--tags-bgc);
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s;
}

.pagination li.active > .pagination-square, .pagination-nopadding li.active > .pagination-square {
  border: 1px solid var(--main-hover);
}

.pagination li:hover > .pagination-square, .pagination-nopadding li:hover > .pagination-square {
  border: 1px solid var(--main-hover);
}

#wpcf7-f207-o2 .wpcf7-form-control-wrap {
  position: static;
}

.footer {
  display: flex;
  width: 100%;
  margin: 120px auto 0 auto;
  background-color: var(--footer-color);
}
@media (max-width: 450px) {
  .footer {
    margin: 80px auto 0 auto;
  }
}

.footer-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 66px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 450px) {
  .footer-menu {
    padding: 40px 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .footer-menu {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .footer-menu {
    gap: 40px;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .footer-menu {
    padding: 40px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .footer-menu {
    padding: 40px 50px;
  }
}

.footer-logo-box {
  width: 158px;
  height: 50px;
  flex-direction: 1 0 10%;
  cursor: pointer;
}

.footer-links {
  height: 214px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 27px 76px;
  flex: 0 0 90%;
  max-width: 583px;
  list-style: none;
}
@media (max-width: 768px) {
  .footer-links {
    height: auto;
    flex: unset;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .footer-links {
    max-width: 400px;
    gap: 27px 0;
  }
}

.footer-socials {
  display: flex;
  gap: 30px;
  flex: 0 0 10%;
}
@media (max-width: 450px) {
  .footer-socials {
    right: 20px;
    top: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .footer-socials {
    right: 40px;
    top: 40px;
  }
}
@media (max-width: 768px) {
  .footer-socials {
    position: absolute;
  }
}

.top-articles {
  width: 100%;
  padding: 0 66px;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  height: 622px;
}
@media (max-width: 450px) {
  .top-articles {
    padding: 0;
    flex-direction: column;
    height: auto;
    margin-top: 44px;
    gap: 60px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .top-articles {
    flex-direction: column;
    padding: 0;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .top-articles {
    padding: 0 50px;
    flex-direction: column;
    height: auto;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .top-articles {
    padding: 0 50px;
    height: auto;
  }
}

.new {
  flex-grow: 1;
}

.new-articles {
  height: 554px;
  overflow: scroll;
}
@media (max-width: 450px) {
  .new-articles {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .new-articles {
    height: auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .new-articles {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: visible;
    flex-wrap: wrap;
  }
}

.new-articles::-webkit-scrollbar-thumb {
  background-color: blue !important; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid orange; /* creates padding around scroll thumb */
}

.article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
  width: 100%;
  padding: 0 66px;
  margin-top: 120px;
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    padding: 0 40px !important;
  }
}
.article-row-dark {
  padding: 66px;
  background-color: var(--chapter-color);
}
@media (max-width: 450px) {
  .article-row-dark {
    padding-top: 68px !important;
  }
}
.article-row-padded {
  margin-top: 60px;
}
.article-row-sub-subcategory {
  margin-top: 18px;
  padding: 30px 40px 30px 66px;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .article-row-sub-subcategory {
    padding-top: 68px !important;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row-sub-subcategory {
    padding: 40px !important;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-row-sub-subcategory {
    padding: 40px 50px !important;
  }
}
@media (max-width: 450px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 66px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    padding: 40px 40px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    margin-top: 66px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-row, .article-row-subcategory, .article-row-sub-subcategory, .article-row-padded, .article-row-dark {
    padding: 50px;
  }
}
.article-row-subcategory {
  padding: 0;
  margin-top: 60px;
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row-subcategory {
    padding: 0 40px;
  }
}

.article-row-articles, .article-row-articles-sub-subcategory, .article-row-articles-subcategory {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 450px) {
  .article-row-articles, .article-row-articles-sub-subcategory, .article-row-articles-subcategory {
    flex-direction: column;
    padding: 0 20px 20px;
    margin-top: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row-articles, .article-row-articles-sub-subcategory, .article-row-articles-subcategory {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-row-articles, .article-row-articles-sub-subcategory, .article-row-articles-subcategory {
    gap: 40px 0;
    justify-content: space-between;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-row-articles, .article-row-articles-sub-subcategory, .article-row-articles-subcategory {
    gap: 40px 0;
    justify-content: space-between;
  }
}
.article-row-articles-subcategory {
  padding: 0 66px;
}
@media (max-width: 450px) {
  .article-row-articles-subcategory {
    padding: 0 20px;
    margin-top: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-row-articles-subcategory {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-row-articles-subcategory {
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .article-row-articles-subcategory {
    padding: 0 50px;
  }
}
.article-row-articles-sub-subcategory {
  background: var(--chapter-color);
  padding: 0;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .article-row-articles-sub-subcategory {
    flex-direction: column;
    gap: 40px;
  }
}

.article-column, .article-column-subcategory {
  margin-top: 120px;
  width: 100%;
  padding: 0 66px;
}
.article-column-subcategory {
  padding: 0;
  margin-top: 80px;
}
.article-column-sub-subcategory {
  display: flex;
  gap: 32px;
  flex-direction: column;
  padding: 0 40px 0 66px;
}
@media (max-width: 450px) {
  .article-column-sub-subcategory {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-column-sub-subcategory {
    padding: 0 40px;
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-column-sub-subcategory {
    padding: 0 50px;
    margin-top: 60px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-column-sub-subcategory {
    padding: 0 50px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-column-sub-subcategory:nth-of-type(2) {
    padding: 0 50px;
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .article-column, .article-column-subcategory {
    padding: 0;
    margin-top: 60px !important;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-column, .article-column-subcategory {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .article-column, .article-column-subcategory {
    padding: 0 50px;
  }
}

.article-column__articles, .article-column__articles-subcategory {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article-column__articles-subcategory {
  margin-top: 40px;
}
@media (max-width: 450px) {
  .article-column__articles, .article-column__articles-subcategory {
    margin-top: 40px;
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-column__articles, .article-column__articles-subcategory {
    margin-top: 40px;
    padding: 0 40px;
  }
}

.newsletter-section {
  width: 100%;
  padding: 0 66px;
  margin-top: 120px;
}
@media (max-width: 450px) {
  .newsletter-section {
    padding: 0 20px;
    margin-top: 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .newsletter-section {
    padding: 0 40px;
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .newsletter-section {
    padding: 0 50px;
    margin-top: 80px;
  }
}

.swiper-section, .swiper-section-category {
  width: 100%;
  position: relative;
  padding: 0 66px;
  margin-top: 120px;
}
@media (max-width: 450px) {
  .swiper-section, .swiper-section-category {
    padding: 0;
    margin-top: 60px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .swiper-section, .swiper-section-category {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .swiper-section, .swiper-section-category {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .swiper-section, .swiper-section-category {
    padding: 0 50px;
  }
}
@media (min-width: 1000px) {
  .swiper-section-category {
    padding: 0;
  }
}

.big-post {
  margin-top: 120px;
  width: 100%;
  padding: 0 66px;
}
@media (max-width: 450px) {
  .big-post {
    padding: 0;
    margin-top: 60px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .big-post {
    padding: 0;
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .big-post {
    padding: 0 50px;
    margin-top: 60px;
  }
}
@media (min-width: 1001px) and (max-width: 1280px) {
  .big-post {
    padding: 0 50px;
  }
}

.big-post-articles, .big-post-articles-reverse {
  display: flex;
  gap: 40px;
}
.big-post-articles-reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (max-width: 450px) {
  .big-post-articles, .big-post-articles-reverse {
    flex-direction: column;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .big-post-articles, .big-post-articles-reverse {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .big-post-articles, .big-post-articles-reverse {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .big-post-right {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .big-post-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 450px) and (max-width: 768px) {
  .big-post-right {
    padding: 0 40px;
  }
}

@media (max-width: 450px) {
  .big-post-left {
    margin-top: 40px;
  }
}

.dark-section {
  background-color: var(--chapter-color);
}

@media (max-width: 450px) {
  .best-article {
    margin-top: 40px;
  }
}

@media (max-width: 450px) {
  .new-articles {
    margin-top: 40px;
  }
}

.subcategory_articles_wrapper {
  background: var(--chapter-color);
  padding: 40px 20px;
}

.main, .main-post {
  width: 100%;
  padding: 0 66px;
}
@media (max-width: 450px) {
  .main, .main-post {
    padding: 0 20px;
    padding: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .main, .main-post {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .main, .main-post {
    padding: 0 50px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .main, .main-post {
    padding: 0 50px;
  }
}

.main-container {
  width: 100%;
  display: flex;
  gap: 40px;
}
@media (max-width: 450px) {
  .main-container {
    gap: 0;
  }
}
@media (max-width: 1000px) {
  .main-container {
    flex-direction: column-reverse;
  }
}

.content-column {
  width: 75%;
}
@media (max-width: 1000px) {
  .content-column {
    width: 100%;
  }
}
.content-column--subcategory {
  width: 80%;
}
@media (max-width: 1000px) {
  .content-column--subcategory {
    width: 100%;
  }
}

.tags-column, .tags-column-paged, .tags-column-subcategory {
  padding: 7px 16px;
  margin-left: 40px;
  width: 25%;
  border-radius: 8px;
}
.tags-column-subcategory {
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .tags-column-subcategory {
    padding: 0 50px !important;
  }
}
@media (min-width: 1000px) {
  .tags-column-subcategory {
    width: 20% !important;
  }
}
@media (max-width: 450px) {
  .tags-column, .tags-column-paged, .tags-column-subcategory {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .tags-column, .tags-column-paged, .tags-column-subcategory {
    padding: 0 40px;
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .tags-column, .tags-column-paged, .tags-column-subcategory {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
}
@media (min-width: 1000px) {
  .tags-column, .tags-column-paged, .tags-column-subcategory {
    width: 25%;
    margin: 0;
    background-color: #F5F7F8;
    max-width: 247px;
  }
}
.tags-column-paged {
  margin-top: 70px;
}

.tags-container {
  border-radius: 8px;
  background-color: #F5F7F8;
  padding: 7px 16px;
}
@media (min-width: 1000px) {
  .tags-container {
    padding: 0;
  }
}

.tags-box {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-top, .category-top-margin {
  display: flex;
  gap: 40px;
}
@media (max-width: 450px) {
  .category-top, .category-top-margin {
    gap: 40px;
  }
}
.category-top-margin {
  margin-top: 120px;
}
@media (max-width: 450px) {
  .category-top-margin {
    margin-top: 60px;
  }
}
@media (min-width: 450px) and (max-width: 1000px) {
  .category-top-margin {
    margin-top: 80px;
  }
}
@media (max-width: 1280px) {
  .category-top, .category-top-margin {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .right-column {
    padding: 0 20px;
  }
}

.category-column, .category-column-category {
  height: 700px;
  overflow: scroll;
}
@media (min-width: 450px) and (max-width: 768px) {
  .category-column, .category-column-category {
    padding: 0 40px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .category-column, .category-column-category {
    padding: 40px 0 40px 0;
  }
}
@media (max-width: 1280px) {
  .category-column, .category-column-category {
    height: auto;
  }
}
.category-column-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 611px;
  overflow: scroll;
}
@media (max-width: 450px) {
  .category-column-category {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .category-column-category {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .category-column-category {
    padding: 20px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 450px) {
  .article-square {
    padding: 0 20px;
  }
}

.article-square-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  width: 554px;
}
@media (max-width: 450px) {
  .article-square-inner {
    width: 100%;
    margin-top: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-square-inner {
    padding: 0 40px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .article-square-inner {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-square-inner {
    width: 100%;
    gap: 30px;
  }
}

.category_newsletter {
  margin-top: 80px;
}
@media (max-width: 450px) {
  .category_newsletter {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .category_newsletter {
    padding: 0 40px;
  }
}

.category-article-swiper {
  margin-top: 120px;
}

.subcategory-big-post {
  margin-top: 80px;
}
@media (max-width: 1000px) {
  .subcategory-big-post {
    margin-top: 60px;
  }
}

@media (max-width: 450px) {
  .sub-article-list {
    padding: 0 20px;
  }
}
@media (max-width: px) {
  .sub-article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.subcategory-big-post-articles, .subcategory-big-post-articles-reverse {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 450px) {
  .subcategory-big-post-articles, .subcategory-big-post-articles-reverse {
    flex-direction: column;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .subcategory-big-post-articles, .subcategory-big-post-articles-reverse {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .subcategory-big-post-articles, .subcategory-big-post-articles-reverse {
    flex-direction: column;
  }
}
.subcategory-big-post-articles-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1280px) {
  .subcategory-big-post-articles-reverse {
    flex-direction: column;
    padding: 0;
  }
}

.article-pages {
  margin-top: 127px;
}
@media (max-width: 1000px) {
  .article-pages {
    margin-top: 60px;
  }
}
.article-pages-paged {
  margin-top: 60px;
}

.article-pages-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 450px) {
  .article-pages-row {
    flex-direction: column;
    padding: 0 20px;
    margin-top: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .article-pages-row {
    flex-direction: column;
    padding: 0 40px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .article-pages-row {
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .sub-article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .sub-article-list {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .sub-article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
}

.main-post {
  margin-top: 30px;
  padding: 0;
}

.contact-form-section {
  position: fixed;
  top: 120px;
  height: 66px;
  height: auto;
  width: 384px;
  background-color: #fff;
  right: 66px;
  z-index: 100;
  border-radius: 8px;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1000px) {
  .contact-form-section {
    z-index: 1000;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100px;
    right: 0;
    border-radius: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .contact-form-section {
    right: 50px;
  }
}
@media (min-width: 1280px) {
  .contact-form-section {
    right: calc(var(--right) + 64px);
  }
}

.date-auth-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 450px) {
  .date-auth-box {
    gap: 24px;
    margin-top: 23px;
  }
}

.post-img-box {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .post-img-box {
    aspect-ratio: 3/2;
  }
}

.post-img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .post-img {
    height: 100%;
    max-height: unset;
  }
}

.post-intro-text {
  margin-bottom: 40px;
}

.article-values-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.article-value {
  display: flex;
  align-items: center;
  gap: 49px;
}
@media (max-width: 450px) {
  .article-value {
    gap: 18px;
    align-items: flex-start;
  }
}

.chapter {
  background-color: var(--chapter-color);
}

.chapter-tag {
  padding: 2px 8px;
  background-color: var(--main-color);
  display: inline-block;
  border-radius: 25px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.chapter-inside {
  display: flex;
  gap: 96px;
  padding: 64px 0;
}
@media (max-width: 450px) {
  .chapter-inside {
    flex-direction: column;
    padding: 64px 0;
    gap: 45px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .chapter-inside {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .chapter-inside {
    gap: 40px;
  }
}

@media (max-width: 450px) {
  .chapter-right-column {
    align-self: center;
    margin: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .chapter-right-column {
    align-self: center;
    margin: 0;
    width: 250px;
    height: 250px;
  }
}
.chapter-img {
  width: 192px;
  height: 192px;
  border-radius: 8px;
  margin-right: 70px;
}
@media (max-width: 450px) {
  .chapter-img {
    margin-right: 0;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .chapter-img {
    width: 100%;
    height: 100%;
  }
}

.chapter-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.chapter-tag {
  margin-bottom: 8px;
}

.chapter-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-banner-box {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .cta-banner-box {
    margin-top: 20px;
  }
}

.chapter-divider {
  margin-top: 80px;
  width: 70%;
  padding: 0 96px 0 66px;
}
@media (max-width: 450px) {
  .chapter-divider {
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .chapter-divider {
    padding: 0 20px;
  }
}
@media (min-width: 451px) and (max-width: 768px) {
  .chapter-divider {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .chapter-divider {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  .chapter-divider {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  .chapter-divider {
    width: 62%;
  }
}
@media (min-width: 1100px) and (max-width: 1280px) {
  .chapter-divider {
    width: 65%;
  }
}

.chapter-divider-inner, .chapter-divider-inner-gap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.chapter-divider-inner-gap {
  gap: 40px;
}

.faq {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .faq {
    margin-top: 60px;
  }
}

@media (min-width: 450px) and (max-width: 1150px) {
  .question {
    max-width: 80%;
  }
}

.question-box {
  position: relative;
  padding: 24px;
  border: 1px solid #ECEFF1;
  border-radius: 8px;
  margin-top: 8px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.question-box:first-of-type {
  margin-top: 47px;
}
.question-box:hover {
  border: 1px solid var(--main-color);
}

@media (max-width: 450px) {
  .question-box-textbox {
    width: 90%;
  }
}

.question-box.active {
  border: 1px solid var(--main-color);
}

.question-box.active > .question-box-inner {
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  padding-top: 20px;
}

.question-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.question-icon.active {
  transform: rotate(180deg);
}

.question-box-inner {
  display: flex;
  height: 0;
  opacity: 0;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s;
}
.question-box-inner.active {
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  padding-top: 20px;
}

.open-popups {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 100;
}
@media (min-width: 1000px) {
  .open-popups {
    display: none;
  }
}

.article-inside {
  margin: 0 auto;
}

body.single-post li:first-of-type:not(.nav__li):not(.contents-list li):not(.point-list li):not(.nav-subcategories li) {
  margin-top: 30px;
}

body.single-post ol li:not(.contents-list li) {
  font-size: 14px;
  line-height: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  transition: transform 0.3s;
  padding-left: 50px;
}
@media (max-width: 450px) {
  body.single-post ol li:not(.contents-list li) {
    padding-left: 18px;
  }
}

body.single-post ol li a {
  color: var(--black);
}

body.single-post ol:not(.contents-list ol) {
  padding: 0 66px 0 78px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 450px) {
  body.single-post ol:not(.contents-list ol) {
    padding: 0 20px 0 37px;
    width: 100%;
  }
}

body.single-post ol li::marker {
  font-size: 14px;
  font-family: var(--jakarta);
  font-weight: bold;
}

.wp-block-paragraph, .wp-block-heading {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.contact-form form {
  padding-bottom: 40px;
}

.subcategory-box {
  width: 100%;
  padding: 0 66px 0 0;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .subcategory-box {
    flex-direction: column-reverse;
    padding: 0;
    gap: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .subcategory-box {
    padding: 0 50px 0 0;
  }
}

.page-not-found {
  position: relative;
  width: 100%;
  padding-top: 154px;
  padding-bottom: 80px;
  height: 100vh;
}
@media (min-width: 300px) and (max-width: 768px) {
  .page-not-found {
    padding: 20px 20px 0 20px;
    height: auto;
  }
}

.error-text-content {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  margin-bottom: 10px;
}
@media (min-width: 300px) and (max-width: 1000px) {
  .error-text-content {
    align-self: flex-start;
  }
}

@media (min-width: 451px) and (max-width: 768px) {
  .error-image-box {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .error-image-box {
    width: 400px;
  }
}

@media (min-width: 300px) and (max-width: 1000px) {
  .error-image-box img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
  }
}

.not-found-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  height: 441px;
}
@media (max-width: 768px) {
  .not-found-wrapper {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}

.error-button {
  align-self: flex-start;
  text-decoration: none;
  margin-top: 22px;
}

.page-not-found-505 {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: -120px;
}
@media (max-width: 768px) {
  .page-not-found-505 {
    height: auto;
    margin-bottom: unset;
  }
}
@media (min-width: 300px) and (max-width: 768px) {
  .page-not-found-505 {
    padding: 40px 0 0 0;
  }
}

.not-found-wrapper-505 {
  display: flex;
  justify-content: center;
  gap: 40px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .not-found-wrapper-505 {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}

.error-image-box-505 {
  height: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("images/cable.svg");
  width: 22%;
}
@media (max-width: 450px) {
  .error-image-box-505 {
    height: 280px;
    width: 100vw;
  }
}
@media (min-width: 450px) and (max-width: 645px) {
  .error-image-box-505 {
    height: 400px;
    width: 100%;
  }
}
@media (min-width: 645px) and (max-width: 768px) {
  .error-image-box-505 {
    height: 480px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .error-image-box-505 {
    background-image: url("images/cable-horizontal.svg");
  }
}
@media (min-width: 769px) and (max-width: 999px) {
  .error-image-box-505 {
    width: 50%;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .error-image-box-505 {
    width: 21%;
  }
}

.error-text-content-505 {
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .error-text-content-505 {
    align-self: flex-start;
    padding-left: 20px;
  }
}

.error-505-button {
  margin-top: 41px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .error-505-button {
    align-self: flex-start;
  }
}

.result-page {
  margin-top: 51px;
}

.result-page-wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 66px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .result-page-wrapper {
    padding: 0 20px;
  }
}
@media (min-width: 450px) and (max-width: 768px) {
  .result-page-wrapper {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .result-page-wrapper {
    padding: 0 50px;
  }
}

.result-page-input-box {
  width: 58%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .result-page-input-box {
    width: 100%;
  }
}

.result-page-input {
  padding: 12.5px 24px;
  border-radius: 25px;
  border: 0.5px solid var(--tags-bgc);
  color: var(--black);
  z-index: 1;
  flex-grow: 1;
  color: var(--black);
  font-family: var(--jakarta);
  font-size: 12px;
  width: 100%;
}

.result-page-input:focus {
  outline: none;
  border: 1px solid var(--main-color);
}

.result-name-box {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .result-name-box {
    flex-direction: column-reverse;
    gap: 18px;
  }
}

.result-tag-container {
  flex: 0 0 15%;
  display: flex;
  justify-content: center;
}

.result-tag {
  font-size: 9px;
  line-height: 14px;
  font-weight: 500;
  font-family: var(--jakarta);
  color: var(--white);
  padding: 8px 10px;
  background-color: var(--tags-bgc);
  display: block;
  border-radius: 15px;
  white-space: nowrap;
  text-decoration: none;
}

.search-page-submit {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
}

.result-search {
  position: relative;
}/*# sourceMappingURL=styles.css.map */