@media (max-width: 1235px) {
  /* LAYOUT
    ========================================================================== */
  .cth-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* HEADER
    ========================================================================== */
  /* Layout */
  .cth-header .cth-logo-content {
    width: auto;
    padding-right: 20px;
    padding-left: 15px;
  }
  /* Top content */
  .cth-header .cth-head-top {
    padding-left: 20px;
    padding-right: 15px;
  }

  /* Navigation */
  .cth-header .cth-head-nav {
    padding-left: 20px;
    padding-right: 15px;
  }

  /* Kereső */
  .cth-search {
    height: auto;
    padding: 30px 0;
  }
  .cth-search > .cth-container {
    flex-direction: column;
    row-gap: 20px;
  }

  /* CONTENT
    ========================================================================== */
  /* Kezdőlapi nyelvválasztó */
  .cth-mp-lang-select .cth-mp-lang-select-title {
    position: relative;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  /* CONTENT
    ========================================================================== */
  /* Editorial Board */
  .cth-editorial-list {
    flex-direction: column;
  }
  .cth-editorial-list .cth-editorial-list-item {
    flex-basis: 100%;
  }

  /* Registration */
  .cth-reg-page .cth-regci-form {
    flex-direction: column;
  }

  /* FOOTER
    ========================================================================== */
  .cth-footer {
    height: auto;
    padding: 60px 0 30px;
  }
  .cth-footer > .cth-container {
    height: auto;
    flex-direction: column;
  }

  /* Footer content */
  .cth-footer .cth-footer-content {
    margin: 20px 0 30px;
    padding: 30px 0;
    border-left: none;
    border-right: none;
    border-top: var(--cth-white) solid 1px;
    border-bottom: var(--cth-white) solid 1px;
    position: relative;
  }
  .cth-footer .cth-fc-contact {
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
  }
  .cth-footer .cth-fc-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
  }
}

@media (max-width: 900px) {
  /* HEADER
    ========================================================================== */
  /* Layout */
  .cth-header {
    height: auto;
    flex-direction: column-reverse;
  }
  .cth-header .cth-header-content {
    width: auto;
  }
  .cth-header .cth-logo-content {
    justify-content: space-between;
    z-index: 5;
  }

  /* Logo */
  .cth-header .cth-site-logo {
    height: 120px;
    font-size: 4.667em;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }

  /* Mobile navigation */
  .cth-mobile-nav-btn {
    width: 36px;
    height: 28px;
    position: relative;
    cursor: pointer;
    display: block;
  }
  .cth-mobile-nav-btn .cth-mnavbtn-bar {
    width: 100%;
    height: 4px;
    background: var(--cth-text-color);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transition: top ease-in-out 300ms, transform ease-in-out 300ms;
  }
  .cth-mobile-nav-btn .cth-mnavbtn-bar:nth-child(2) {
    top: 12px;
  }
  .cth-mobile-nav-btn .cth-mnavbtn-bar:nth-child(3) {
    top: 24px;
  }
  .cth-mobile-nav-btn.open .cth-mnavbtn-bar:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
  }
  .cth-mobile-nav-btn.open .cth-mnavbtn-bar:nth-child(2) {
    display: none;
  }
  .cth-mobile-nav-btn.open .cth-mnavbtn-bar:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
  }

  /* Top content */
  .cth-header .cth-head-top {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 20px 20px;
  }
  .cth-header .cth-ht-text {
    text-align: center;
    padding-bottom: 15px;
  }

  /* Navigation */
  .cth-header .cth-head-nav {
    width: 100%;
    height: auto;
    background: var(--cth-white);
    justify-content: center;
    position: fixed;
    right: -100vw;
    transition: right 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .cth-header .cth-head-nav.open {
    right: 0;
  }
  .cth-header .cth-head-nav ul {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
  .cth-header .cth-head-nav ul li,
  .cth-header .cth-head-nav ul li a {
    padding: 15px 0;
  }

  /* Kereső */
  .cth-search {
    height: auto;
    padding: 20px 0;
    flex-direction: column;
    row-gap: 20px;
  }
  .cth-search .cth-search-mobile-header {
    width: 100%;
    height: 80px;
    padding: 0 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .cth-search .cth-smh-text {
    font-size: 1.2em;
    font-weight: 300;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .cth-search .cth-smh-icon {
    width: 80px;
    height: auto;
  }
  .cth-search > .cth-container {
    display: none;
  }
  .cth-search > .cth-flex-row-nw {
    row-gap: 20px;
  }
  .cth-search .cth-si-content {
    align-items: center;
    row-gap: 10px;
  }
  .cth-search .cth-search-item:first-child .cth-si-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cth-search .cth-si-content input {
    width: 100%;
  }
  .cth-search .cth-si-content select {
    width: 30%;
  }

  /* CONTENT
    ========================================================================== */
  /* Layout */
  .cth-content-icon {
    display: none;
  }

  /* Bejegyzés */
  .cth-single-content {
    flex-direction: column;
    row-gap: 40px;
  }
  .cth-content-sidebar {
    margin-top: 0;
  }

  /* Post list */
  .cth-post-list {
    flex-wrap: wrap;
  }
  .cth-post-list .cth-post-list-item {
    flex: 0 0 calc(50% - 25px);
  }

  /* Event list */
  .cth-event-list {
    flex-direction: column;
    row-gap: 25px;
  }

  /* Project list */
  .cth-project-filter .cth-project-filter-item {
    font-size: 1em;
  }
  .cth-project-filter .cth-prfi-num {
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cth-project-list .cth-project-list-item {
    flex: 0 0 calc((100% - 25px) / 2);
  }

  /* Kezdőlap */
  .cth-posts-cta {
    flex-direction: column;
  }
  .cth-posts-cta .cth-pcta-container {
    height: auto;
    padding: 70px 15px 225px;
    padding-left: 15px;
    padding-right: 15px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .cth-posts-cta .cth-pctac-left::before {
    background: var(--cth-secondary-color-28);
    background: -moz-linear-gradient(0deg, var(--cth-secondary-color-28) 0%, var(--cth-secondary-color-83) 15%, var(--cth-secondary-color) 20%);
    background: -webkit-linear-gradient(0deg, var(--cth-secondary-color-28) 0%, var(--cth-secondary-color-83) 15%, var(--cth-secondary-color) 20%);
    background: linear-gradient(0deg, var(--cth-secondary-color-28) 0%, var(--cth-secondary-color-83) 15%, var(--cth-secondary-color) 20%);
  }
  .cth-posts-cta .cth-pctac-right::before {
    background: --cth-primary-color-28;
    background: -moz-linear-gradient(0deg, var(--cth-primary-color-0) 0%, var(--cth-primary-color-60) 15%, var(--cth-primary-color) 28%);
    background: -webkit-linear-gradient(0deg, var(--cth-primary-color-0) 0%, var(--cth-primary-color-60) 15%, var(--cth-primary-color) 28%);
    background: linear-gradient(0deg, var(--cth-primary-color-0) 0%, var(--cth-primary-color-60) 15%, var(--cth-primary-color) 28%);
  }
  .cth-pctac-left .cth-pctac-content,
  .cth-pctac-right .cth-pctac-content {
    align-items: center;
  }
  .cth-pctac-right .cth-pctac-content > *,
  .cth-pctac-left .cth-pctac-content > * {
    text-align: center;
  }
  .cth-posts-cta .cth-pctac-content ul {
    text-align: left;
  }
  .cth-pctac-left .cth-pctac-content ul li {
    justify-content: start;
  }
  .cth-pctac-left .cth-pctac-content ul li::before {
    content: url('/wp-content/themes/centrheum/assets/images/icon-clist-ch-left-sec.png');
    transform: rotate(180deg);
  }
  .cth-pctac-left .cth-pctac-content ul li::after {
    content: "";
  }

  .cth-reg-cta {
    background: var(--cth-primary-color);
    background: -moz-linear-gradient(150deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
    background: -webkit-linear-gradient(150deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
    background: linear-gradient(150deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
  }
  .cth-reg-cta .cth-rcta-content-item:first-child {
    margin-right: 0 !important;
    padding-right: 0;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: var(--cth-white) solid 2px;
  }
  .cth-reg-cta .cth-rcta-image {
    display: none;
  }
  .cth-reg-cta .cth-section-title {
    text-align: center;
  }
  .cth-reg-cta .cth-rcta-user-list {
    flex-direction: column;
    row-gap: 5px;
  }
  .cth-reg-cta .cth-rcta-user-list-item {
    width: 100%;
    height: 75px;
    min-height: auto;
    padding: 0 20px;
    flex-direction: row;
    column-gap: 15px;
  }
  .cth-reg-cta .cth-rcta-user-list-item > * {
    text-align: left;
    margin: 0 !important;
  }
  .cth-reg-cta .cth-rcta-uli-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cth-reg-cta .cth-rcta-uli-content > * {
    margin: 0 !important;
  }
  .cth-reg-cta .cth-rcta-ulic-top-text {
    margin-top: 0;
  }
  .cth-reg-cta .cth-rcta-ulic-icon img {
    display: block;
  }

  /* FAQ */
  .cth-faq .cth-faq-cta {
    padding: 25px;
  }

  /* Registration */
  .cth-reg-page {
    flex-direction: column;
  }
  .cth-reg-page .cth-regc-item {
    padding-left: 0;
    padding-right: 0;
  }
  .cth-reg-page .cth-regc-item:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cth-reg-page .cth-regci-form {
    flex-direction: row;
  }

  /* How we works */
  .cth-hww .cth-hww-item {
    flex: 0 0 calc(50% - 30px);
  }
  .cth-hww .cth-hww-item:nth-child(2n) {
    padding-left: 30px;
  }

  /* Login */
  .cth-login {
    flex-direction: column;
  }
  .cth-login .cth-login-image {
    height: 300px;
    flex: none;
  }
  .cth-login .cth-loginc-item:first-child {
    padding-left: 0;
    padding-right: 0;
  }
  .cth-login .cth-loginc-item:last-child {
    text-align: center;
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

@media (max-width: 500px) {
  /* HEADER
    ========================================================================== */
  /* Kereső */
  .cth-search > .cth-flex-row-nw {
    flex-direction: column;
  }
  .cth-search .cth-si-content {
    flex-direction: column;
  }
  .cth-search .cth-si-content input,
  .cth-search .cth-si-content select {
    width: 100%;
  }

  /* CONTENT
   ========================================================================== */
  /* Kezdőlapi nyelvválasztó */
  #image-map-pro-95c8e0de-9f82-4c6e-a89f-29a98144620a {
    transform: scale(0.7);
    margin-left: -170px;
  }

  /* Bejegyzés */
  .single .cth-site-content-inner {
    padding: 10px;
  }
  .cth-site-content-title .cth-sctitle-meta {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
  .cth-site-content-title .cth-sctitlem-date,
  .cth-site-content-title .cth-sctitlem-tags {
    padding-left: 0;
    border-left: none;
  }

  /* Post list */
  .cth-post-list {
    flex-direction: column;
  }

  /* Event list */
  .cth-event-list .cth-event-list-item {
    flex-direction: column;
  }
  .cth-event-list .cth-eli-image {
    width: 100%;
    border-radius: 6px 6px 0 0;
  }
  .cth-event-list .cth-eli-icon {
    left: 20px;
    top: 165px;
  }
  .cth-event-list .cth-eli-content {
    padding: 30px 20px 20px;
  }

  /* Project list */
  .cth-project-list .cth-project-list-item {
    flex: 0 0 100%;
  }

  /* Editorial Board */
  .cth-editorial-list .cth-editorial-list-item {
    flex-direction: column;
  }
  .cth-editorial-list .cth-eli-image {
    height: calc(100vw * 3 / 3.5);
    border-radius: 6px 6px 0 0;
    flex: auto;
  }
  .cth-editorial-list .cth-eli-content {
    border-radius: 0 0 6px 6px;
  }

  /* Registration */
  .cth-reg-page .cth-regci-form {
    flex-direction: column;
  }

  /* How we works */
  .cth-hww {
    flex-direction: column;
  }
  .cth-hww .cth-hww-item {
    flex: 0 0 calc(100% - 30px);
  }
  .cth-hww .cth-hww-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .cth-hww .cth-hww-item:nth-child(2n) {
    border-left: 0;
    padding-left: 0;
  }
  .cth-hww .cth-hwwi-content {
    padding-top: 0;
    padding-right: 0;
  }

  /* Post upload */
  .cth-post-upload .cth-pu-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cth-post-upload .cth-pu-item.has-background {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .cth-post-upload .cth-puli-phimg {
    flex: 0 0 70px;
  }
  .cth-post-upload .cth-puli-finput-container {
    flex-direction: column;
    row-gap: 15px;
  }
  .cth-post-upload #cth-pu-image-fname {
    text-align: center;
  }
  .cth-post-upload .cth-pul-submit {
    flex-direction: column;
    row-gap: 10px;
  }
  .cth-post-upload .cth-pul-submit button[type="submit"] {
    width: 100%;
  }
}