/*
Theme Name: Cethreum
Author: Face Média Kft.
Theme URI: https://facemedia.hu
Author URI: https://facemedia.hu
Requires at least: 5.9
Tested up to: 6.1
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: centrheum
*/

:root {
  --cth-primary-font: "Raleway", serif;
  --cth-secondary-font: "Roboto", serif;
  --cth-logo-font: "Bebas Neue", serif;
  --cth-primary-color: #29295F;
  --cth-primary-color-60: rgba(41, 41, 95, 0.6);
  --cth-primary-color-28: rgba(41, 41, 95, 0.28);
  --cth-primary-color-0: rgba(41, 41, 95, 0);
  --cth-secondary-color: #00B1B9;
  --cth-secondary-color-83: rgba(0, 177, 185, 0.83);
  --cth-secondary-color-30: rgba(0, 177, 185, 0.30);
  --cth-secondary-color-28: rgba(0, 177, 185, 0.28);
  --cth-secondary-color-11: rgba(0, 177, 185, 0.11);
  --cth-secondary-color-8: rgba(0, 177, 185, 0.08);
  --cth-secondary-color-6: rgba(0, 177, 185, 0.06);
  --cth-secondary-color-0: rgba(0, 177, 185, 0);
  --cth-color-blue: #426da4;
  --cth-color-blue-2: #21A0D7;
  --cth-color-blue-3: #171768;
  --cth-color-light-gray: #CECECE;
  --cth-color-gray: #78848D;
  --cth-text-color: #000000;
  --cth-bgr-light-blue: #F2FAFF;
  --cth-bgr-copyright: #222251;
  --cth-white: #FFF;
  --cth-header-bshadow-hor: 4px 0px 24px 0px rgba(65, 108, 164, 0.3);
  --cth-header-bshadow-vert: 0px 4px 24px 0px rgba(65, 108, 164, 0.3);
  --cth-content-width: 1235px;
  --cth-container-padding: calc((100% - var(--cth-content-width)) / 2);
}

*,
::after,
::before {
    box-sizing: border-box;
}
a {
  transition: color ease-in-out 300ms;
  text-decoration: none;
}
img {
  width: 100%;
}
input,
select,
textarea {
  font-family: var(--cth-primary-font);
  outline: none;
}

/* LAYOUT
   ========================================================================== */
html {
  font-size: 15px;
}
body {
  font-family: var(--cth-primary-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: inherit;
}
:root :where(.is-layout-constrained) > * {
  margin-block-start: 0px !important;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#cth-site-content {
  padding-bottom: 60px;
}
.cth-container {
  width: var(--cth-content-width);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

.cth-flex-row-nw {
  display: flex;
  flex-flow: row nowrap;
}
.cth-flex-row-w {
  display: flex;
  flex-flow: row wrap;
}
.cth-fai-center { align-items: center; }
.cth-fjc-center { justify-content: center; }
.cth-fjc-spbtw { justify-content: space-between; }


/* HEADER
   ========================================================================== */
/* Layout */
.cth-header {
  height: 120px;
  font-size: 1rem;
  display: flex;
  flex-flow: row nowrap;
}
.cth-header .cth-logo-content {
  width: calc(((100% - var(--cth-content-width)) / 2) + 210px);
  height: 100%;
  background: var(--cth-white);
  padding-left: calc((100% - var(--cth-content-width)) / 2);
  -webkit-box-shadow: var(--cth-header-bshadow-hor);
  -moz-box-shadow: var(--cth-header-bshadow-hor);
  box-shadow: var(--cth-header-bshadow-hor);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}
.cth-header .cth-header-content {
  width: calc(((100% - var(--cth-content-width)) / 2) + (var(--cth-content-width) - 210px));
  height: 100%;
  background: var(--cth-bgr-light-blue);
  position: relative;
  z-index: 10;
}

/* Logo */
.cth-header .cth-site-logo {
  font-family: var(--cth-logo-font);
  font-size: 3.333em;
  color: var(--cth-primary-color);
}
.cth-header .cth-site-logo span {
  color: var(--cth-secondary-color);
}

/* Mobile navigation */
.cth-mobile-nav-btn {
  display: none;
}

/* Top content */
.cth-header .cth-head-top {
  height: 50%;
  background: var(--cth-white);
  padding-right: calc((100vw - var(--cth-content-width)) / 2);
  -webkit-box-shadow: var(--cth-header-bshadow-vert);
  -moz-box-shadow: var(--cth-header-bshadow-vert);
  box-shadow: var(--cth-header-bshadow-vert);
  display: flex;
  flex-flow: row nowrap;
  column-gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
.cth-header .cth-ht-text {
  font-size: 1.133em;
}
.cth-header .cth-ht-text span {
  font-weight: 800;
}
.cth-header .cth-ht-buttons {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 5px;
}
.cth-header .cth-ht-btn {
  height: 40px;
  color: var(--cth-white);
  font-size: 0.867em;
  font-weight: 600;
  padding: 0 16px;
  border-radius: 6px;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 7px;
  align-items: center;
}
.cth-header .cth-ht-btn-pr {
  background: var(--cth-primary-color);
}
.cth-header .cth-ht-btn-sec {
  background: var(--cth-secondary-color);
}
.cth-header .cth-ht-btn-icon {
  width: 20px;
  height: 20px;
}

/* Language selection */
.cth-ht-lang {
  position: relative;
}
.cth-ht-lang img:not(.cth-htl-icon) {
  width: 20px !important;
  height: 14px !important;
}
.cth-ht-lang .cth-htl-current {
  height: 40px;
  background: var(--cth-bgr-light-blue);
  border-radius: 6px;
  padding: 0 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
}
.cth-ht-lang .cth-htl-icon {
  transition: transform ease-in-out 300ms;
}
.cth-ht-lang.open .cth-htl-icon {
  transform: rotate(180deg);
}
.cth-ht-lang .cth-htl-dropdown {
  width: 100%;
  height: 0;
  position: absolute;
  background: var(--cth-bgr-light-blue);
  font-size: 0.867em;
  font-weight: 600;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  overflow: hidden;
  opacity: 0;
  transition: opacity ease-in-out 300ms;
}
.cth-ht-lang.open .cth-htl-dropdown {
  height: auto;
  padding: 10px 0;
  opacity: 1;
}
.cth-ht-lang .cth-htl-dditem a {
  color: var(--cth-primary-color);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  column-gap: 5px;
}
.cth-ht-lang .cth-htl-dditem a:hover {
  color: var(--cth-secondary-color);
}

/* Navigation */
.cth-header .cth-head-nav {
  height: 50%;
  font-size: 0.867em;
  font-weight: 800;
  padding-right: calc((100vw - var(--cth-content-width)) / 2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cth-header .cth-head-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 70px;
}
.cth-header .cth-head-nav ul a {
  color: var(--cth-primary-color);
  text-transform: uppercase;
}

/* Kereső */
.cth-search {
  height: 120px;
  background: var(--cth-primary-color);
  color: var(--cth-white);
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.cth-search .cth-search-mobile-header {
  display: none;
}
.cth-search .cth-search-item {
  display: flex;
  flex-flow: column nowrap;
  row-gap: 10px;
}
.cth-search .cth-si-title {
  font-size: 0.733em;
  font-weight: 600;
}
.cth-search .cth-si-content {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 9px;
}
.cth-search .cth-si-content input,
.cth-search .cth-si-content select {
  height: 50px;
  font-size: 0.867em;
  font-weight: 700;
  line-height: 50px;
  border: var(--cth-white) solid 2px;
  border-radius: 6px;
  padding-left: 20px;
}
.cth-search .cth-si-content select {
  width: 136px;
  background: var(--cth-white);
  color: var(--cth-primary-color);
  padding-right: 10px;
}
.cth-search .cth-si-content input {
  width: 307px;
  height: 50px;
  background: var(--cth-primary-color);
  color: var(--cth-white);
}
.cth-search .cth-si-content input::placeholder {
  color: var(--cth-white);
}
.cth-search .cth-si-content select option:first-child {
  display: none;
}
.cth-search .cth-sic-search-icon {
  width: 50px;
  height: 50px;
}

/* CONTENT
   ========================================================================== */
/* Defaults */
.page-template-default.page h1,
.page-template-default.page h2,
.page-template-default.page h3,
.page-template-default.page h4,
.page-template-default.page h5,
.page-template-default.page h6 {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
h3 {
  color: var(--cth-primary-color);
  font-size: 2.133em;
  font-weight: 800;
}
.page-template-default.page h3 {
  margin-bottom: 15px;
}

/* Text styles */
.cth-site-content-title h1.cth-sctitle-main,
h2.cth-section-title {
  color: var(--cth-primary-color);
  font-size: 3.2rem;
  font-weight: 800;
}
h2.cth-section-title:not(.no-mb) {
  margin-bottom: 30px !important;
}
.cth-site-content-title h1.cth-sctitle-main span {
  color: var(--cth-secondary-color);
}
.cth-site-content-title h2.cth-sctitle-sub,
h3.cth-section-title {
  color: var(--cth-primary-color);
  font-size: 1.133rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px !important;
}
.cth-site-content-title {
  background: var(--cth-secondary-color-11);
  text-align: center;
  padding: 70px 0 120px;
}
.cth-color-white { color: var(--cth-white) !important; }
.cth-ta-center { text-align: center; }
.cth-lh-21 { line-height: 21px; }
.cth-fw-400-imp { font-weight: 400 !important; }
.cth-fw-500 { font-weight: 500; }
.cth-fw-600 { font-weight: 600; }
.cth-fw-700-imp { font-weight: 700 !important; }

/* Layout */
.cth-d-block-imp { display: block !important; }
.cth-content-section {
  padding-top: 75px;
  padding-bottom: 75px;
}
.cth-content-section.cth-content-section-posts-title {
  padding-bottom: 165px;
}
.cth-content-section-post-list {
  margin-top: -165px;
  padding-top: 0;
  padding-bottom: 55px;
}
.cth-light-blue-bgr {
  background: var(--cth-bgr-light-blue);
}
.cth-light-sec-bgr {
  background: var(--cth-secondary-color-11);
}
.wp-block-columns { margin-bottom: 0; }
.is-layout-constrained > * {
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.is-layout-flex { gap: 0; }

.cth-ct-text-divider {
  color: var(--cth-primary-color);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  position: relative;
}
.cth-light-sec-bgr .cth-ct-text-divider {
  margin-bottom: 25px;
}
.cth-ct-text-divider::after {
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 10;
}
.cth-light-sec-bgr .cth-ct-text-divider::after {
  background: var(--cth-white);
}
.cth-ct-text-divider p {
  background: var(--cth-white);
  padding: 0 30px;
  position: relative;
  z-index: 20;
}
.cth-light-sec-bgr .cth-ct-text-divider p {
  background: #E3F7F7;
}

.mt-5px { margin-top: 5px !important; }
.mt-20px { margin-top: 20px !important; }
.mt-30px { margin-top: 30px !important; }
.mt-40px { margin-top: 40px !important; }
.mb-10px { margin-bottom: 10px !important; }
.pt-0 { padding-top: 0 !important; }

/* Form */
.cth-form-label {
  font-weight: 700;
  transition: color ease-in-out 300ms;
}
.cth-form-label a {
  color: var(--cth-text-color);
  text-decoration: underline;
  transition: color ease-in-out 300ms;
}
.cth-form-input {
  background: var(--cth-white);
  border: var(--cth-secondary-color-30) solid 2px;
  transition: border-color ease-in-out 300ms;
}
.cth-form-input[type="text"],
.cth-form-input[type="tel"],
.cth-form-input[type="email"] {
  line-height: 41px;
  border-radius: 6px;
  padding: 0 0 0 10px;
}
.cth-form-input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--cth-white);
  border: 2px solid var(--cth-secondary-color-30);
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: border-color ease-in-out 300ms;
}
.cth-form-input[type="checkbox"]:checked {
  background: var(--cth-secondary-color-30);
}
.cth-form-input[type="checkbox"]::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--cth-secondary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  opacity: 0;
}
.cth-form-input[type="checkbox"]:checked::after {
  opacity: 1;
}
.cth-form-submit {
  height: 45px;
  background: var(--cth-secondary-color);
  color: var(--cth-white);
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.cth-form-submit::before {
  content: url('http://centrheum.localhost/wp-content/themes/centrheum/assets/images/icon-cbtn-ch-right-w.png');
  position: absolute;
  top: 10px;
  right: 12px;
}

/* Form error */
.cth-form-error .cth-form-label,
.cth-form-error .cth-form-label a {
  color: var(--cth-form-error);
}
.cth-form-error .cth-form-input[type="text"],
.cth-form-error .cth-form-input[type="tel"],
.cth-form-error .cth-form-input[type="email"],
.cth-form-error .cth-form-input[type="checkbox"] {
  border-color: var(--cth-form-error);
}
.cth-form-error-text {
  color: var(--cth-form-error);
  font-weight: 600;
  transition: margin ease-in-out 300ms;
}

/* Gombok */
.cth-content-btn div,
.cth-content-btn a {
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
  border-width: 3px;
  border-style: solid;
  border-radius: 6px;
  padding: 0 35px;
}
.cth-content-btn.cth-cb-cyan div,
.cth-content-btn.cth-cb-cyan a {
  color: var(--cth-secondary-color);
  border-color: var(--cth-secondary-color);
}
.cth-content-btn.cth-cb-blue div,
.cth-content-btn.cth-cb-blue a {
  color: var(--cth-color-blue);
  border-color: var(--cth-color-blue);
}
.cth-content-btn.cth-cb-white div,
.cth-content-btn.cth-cb-white a {
  background: var(--cth-white);
  border-color: var(--cth-white);
}

/* Post list */
.cth-post-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  column-gap: 25px;
}
.cth-post-list img {
  width: auto;
}
.cth-post-list .cth-post-list-item {
  font-size: 1rem;
  flex: 1;
}
.cth-post-list .cth-pli-image {
  width: 100%;
  height: 165px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 6px 6px 0 0;
  position: relative;
}
.cth-post-list .cth-pli-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 145px;
}
.cth-post-list-medical .cth-pli-icon {
  background: var(--cth-secondary-color);
}
.cth-post-list-family .cth-pli-icon {
  background: var(--cth-color-blue);
}
.cth-post-list .cth-pli-content {
  background: var(--cth-white);
  padding: 35px 20px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
}
.cth-post-list .cth-pli-tags {
  display: flex;
  flex-flow: row wrap;
  gap: 2px;
  margin-bottom: 15px;
}
.cth-post-list .cth-pli-tag-item {
  height: 20px;
  color: var(--cth-white);
  font-size: 0.6em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.cth-post-list-medical .cth-pli-tag-item {
  background: var(--cth-secondary-color);
}
.cth-post-list-family .cth-pli-tag-item {
  background: var(--cth-color-blue);
}
.cth-post-list .cth-pli-title {
  color: var(--cth-primary-color);
  font-size: 1.333em;
  font-weight: 700;
}
.cth-post-list .cth-pli-meta {
  font-size: 0.733em;
  font-weight: 700;
  padding: 6px 0 10px;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 12px;
  align-items: center;
}
.cth-post-list .cth-pli-date {
  color: var(--cth-color-gray);
}
.cth-post-list .cth-pli-author {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 6px;
  align-items: center;
}
.cth-post-list .cth-plia-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 6px;
  align-items: flex-end;
  justify-content: center;
}
.cth-post-list-medical .cth-plia-icon {
  background: var(--cth-secondary-color);
}
.cth-post-list-family .cth-plia-icon {
  background: var(--cth-color-blue);
}
.cth-post-list-medical .cth-plia-text {
  color: var(--cth-secondary-color);
}
.cth-post-list-family .cth-plia-text {
  color: var(--cth-color-blue);
}
.cth-post-list .cth-pli-text {
  color: var(--cth-primary-color);
}

/* Event list */
.cth-event-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  column-gap: 25px;
}
.cth-event-list img {
  width: auto;
}
.cth-event-list .cth-event-list-item {
  font-size: 1rem;
  flex: 1;
  display: flex;
  flex-flow: row nowrap;
}
.cth-event-list .cth-eli-image {
  width: 186px;
  height: 186px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 6px 0 0 6px;
  position: relative;
}
.cth-event-list .cth-eli-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 166px;
  top: 20px;
}
.cth-event-list-medical .cth-eli-icon {
  background: var(--cth-secondary-color);
}
.cth-event-list-family .cth-eli-icon {
  background: var(--cth-color-blue);
}
.cth-event-list .cth-eli-content {
  background: var(--cth-white);
  padding: 0 20px 0 40px;
  -webkit-box-shadow: 8px 5px 20px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 8px 5px 20px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 8px 5px 20px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cth-event-list .cth-eli-title {
  color: var(--cth-primary-color);
  font-size: 1.267em;
  font-weight: 700;
  margin: 10px 0;
}
.cth-event-list .cth-eli-date {
  font-size: 1.333em;
  font-weight: 700;
}
.cth-event-list-medical .cth-eli-date {
  color: var(--cth-secondary-color);
}
.cth-event-list-family .cth-eli-date {
  color: var(--cth-color-blue);
}
.cth-event-list .cth-eli-subtitle {
  color: var(--cth-primary-color);
  font-weight: 700;
  margin-bottom: 2px;
}
.cth-event-list .cth-eli-address {
  color: var(--cth-primary-color);
}

/* Project list */
.cth-project-filter {
  font-size: 1rem;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 30px;
}
.cth-project-filter .cth-project-filter-item {
  color: var(--cth-color-light-gray);
  font-size: 1.333em;
  font-weight: 700;
  border-bottom: var(--cth-color-light-gray) solid 1px;
  padding-bottom: 10px;
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.cth-project-filter .cth-project-filter-item.cth-prfi-active {
  color: var(--cth-primary-color);
  border-bottom: var(--cth-secondary-color) solid 4px;
}
.cth-project-filter .cth-prfi-num {
  font-family: 'Arial';
  background: var(--cth-secondary-color);
  color: var(--cth-white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 12px 1px;
}
.cth-project-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  column-gap: 25px;
  row-gap: 20px;
}
.cth-project-list img {
  width: auto;
}
.cth-project-list .cth-project-list-item {
  font-size: 1rem;
  padding: 20px 30px;
  flex: 0 0 calc((100% - 50px) / 3);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.cth-project-list .cth-prli-tags {
  display: flex;
  flex-flow: row wrap;
  gap: 2px;
  margin-bottom: 15px;
}
.cth-project-list .cth-prli-tag-item {
  height: 20px;
  background: var(--cth-secondary-color);
  color: var(--cth-white);
  font-size: 0.6em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.cth-project-list .cth-prli-title {
  color: var(--cth-primary-color);
  font-size: 1.333em;
  font-weight: 700;
  margin-bottom: 15px;
}
.cth-project-list .cth-prli-text {
  color: var(--cth-primary-color);
  margin-bottom: 15px;
}
.cth-project-list .cth-prli-link {
  color: var(--cth-secondary-color);
  font-weight: 700;
}

/* Kezdőlap */
.cth-mp-lang-select {
  width: var(--cth-content-width);
  height: 595px;
  background-image: url('https://centrheum.facemedia.hu/wp-content/uploads/2025/02/lang-select-map-ph.png');
  background-position: top right;
  background-repeat: no-repeat;
  margin: 25px auto 60px !important;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
.cth-mp-lang-select h2.cth-section-title,
.cth-mp-lang-select h3.cth-section-title {
  margin-left: 0 !important;
}

.cth-posts-cta {
  font-size: 1rem;
  display: flex;
  flex-flow: row nowrap;
}
.cth-posts-cta .cth-pcta-container {
  height: 723px;
  background-size: cover;
  color: var(--cth-white);
  position: relative;
  display: flex;
  align-items: center;
}
.cth-posts-cta .cth-pcta-container::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cth-pcta-container .cth-content-btn.cth-cb-white div,
.cth-pcta-container .cth-content-btn.cth-cb-white a {
  width: 130px;
  background: var(--cth-white);
  border-color: var(--cth-white);
  position: relative;
}
.cth-posts-cta .cth-pctac-left {
  background-image: url('https://centrheum.facemedia.hu/wp-content/uploads/2025/02/mainpage-fmp-bgr.jpg');
  padding-left: var(--cth-container-padding);
  padding-right: 80px;
}
.cth-posts-cta .cth-pctac-left::before {
  background: var(--cth-secondary-color-28);
  background: -moz-linear-gradient(90deg, var(--cth-secondary-color-28) 30%, var(--cth-secondary-color-83) 75%, var(--cth-secondary-color) 100%);
  background: -webkit-linear-gradient(90deg, var(--cth-secondary-color-28) 30%, var(--cth-secondary-color-83) 75%, var(--cth-secondary-color) 100%);
  background: linear-gradient(90deg, var(--cth-secondary-color-28) 30%, var(--cth-secondary-color-83) 75%, var(--cth-secondary-color) 100%);
}
.cth-pctac-left .cth-content-btn.cth-cb-white div,
.cth-pctac-left .cth-content-btn.cth-cb-white a {
  color: var(--cth-secondary-color);
  padding-right: 27px;
  text-align: right;
}
.cth-pctac-left .cth-content-btn.cth-cb-white div::before,
.cth-pctac-left .cth-content-btn.cth-cb-white a::before {
  content: url('https://centrheum.facemedia.hu/wp-content/themes/centrheum/assets/images/icon-cbtn-ch-left-sec.png');
  position: absolute;
  top: 9px;
  left: 15px;
}
.cth-posts-cta .cth-pctac-right {
  margin-block-start: 0;
  background-image: url('https://centrheum.facemedia.hu/wp-content/uploads/2025/02/mainpage-fpaf-bgr.jpg');
  padding-left: 80px;
  padding-right: var(--cth-container-padding);
}
.cth-posts-cta .cth-pctac-right::before {
  background: --cth-primary-color-28;
  background: -moz-linear-gradient(90deg, var(--cth-primary-color) 5%, var(--cth-primary-color-60) 40%, var(--cth-primary-color-0) 80%);
  background: -webkit-linear-gradient(90deg, var(--cth-primary-color) 5%, var(--cth-primary-color-60) 40%, var(--cth-primary-color-0) 80%);
  background: linear-gradient(90deg, var(--cth-primary-color) 5%, var(--cth-primary-color-60) 40%, var(--cth-primary-color-0) 80%);
}
.cth-pctac-right .cth-content-btn.cth-cb-white div,
.cth-pctac-right .cth-content-btn.cth-cb-white a {
  color: var(--cth-primary-color);
  padding-left: 27px;
  text-align: left;
}
.cth-pctac-right .cth-content-btn.cth-cb-white div::before,
.cth-pctac-right .cth-content-btn.cth-cb-white a::before {
  content: url('https://centrheum.facemedia.hu/wp-content/themes/centrheum/assets/images/icon-cbtn-ch-right-pr.png');
  position: absolute;
  top: 9px;
  right: 15px;
}
.cth-posts-cta .cth-pctac-content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.cth-posts-cta .cth-pctac-content .wp-block-buttons,
.cth-posts-cta .cth-pctac-content .cth-section-title {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cth-pctac-left .cth-pctac-content {
  align-items: flex-end;
}
.cth-pctac-left .cth-pctac-content > * {
  text-align: right;
}
.cth-pctac-right .cth-pctac-content {
  align-items: flex-start;
}
.cth-posts-cta .cth-pctac-cont-list {
  padding: 30px;
  border-radius: 20px;
}
.cth-posts-cta .cth-pctac-content h4 {
  font-size: 1.267em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cth-posts-cta .cth-pctac-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.cth-posts-cta .cth-pctac-content ul li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 15px;
}
.cth-pctac-left .cth-pctac-cont-list {
  background: var(--cth-secondary-color);
  background: -moz-linear-gradient(90deg, var(--cth-secondary-color-0) 15%, var(--cth-secondary-color) 100%);
  background: -webkit-linear-gradient(90deg, var(--cth-secondary-color-0) 15%, var(--cth-secondary-color) 100%);
  background: linear-gradient(90deg, var(--cth-secondary-color-0) 15%, var(--cth-secondary-color) 100%);
  -webkit-box-shadow: 50px 0px 60px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 50px 0px 60px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 50px 0px 60px 0px rgba(0, 0, 0, 0.15);
}
.cth-pctac-left .cth-pctac-content ul li {
  justify-content: flex-end;
}
.cth-pctac-left .cth-pctac-content ul li::after {
  content: url('https://centrheum.facemedia.hu/wp-content/themes/centrheum/assets/images/icon-clist-ch-left-sec.png');
}
.cth-pctac-right .cth-pctac-cont-list {
  background: var(--cth-secondary-color);
  background: -moz-linear-gradient(90deg, var(--cth-primary-color) 0%, var(--cth-primary-color-0) 100%);
  background: -webkit-linear-gradient(90deg, var(--cth-primary-color) 0%, var(--cth-primary-color-0) 100%);
  background: linear-gradient(90deg, var(--cth-primary-color) 0%, var(--cth-primary-color-0) 100%);
  -webkit-box-shadow: -50px 0px 60px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -50px 0px 60px 0px rgba(0, 0, 0, 0.15);
  box-shadow: -50px 0px 60px 0px rgba(0, 0, 0, 0.15);
}
.cth-pctac-right .cth-pctac-content ul li {
  justify-content: flex-start;
}
.cth-pctac-right .cth-pctac-content ul li::before {
  content: url('https://centrheum.facemedia.hu/wp-content/themes/centrheum/assets/images/icon-clist-ch-right-pr.png');
}

.cth-reg-cta {
  background: var(--cth-primary-color);
  background: -moz-linear-gradient(90deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
  background: -webkit-linear-gradient(90deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
  background: linear-gradient(90deg, var(--cth-color-blue-2) 0%, var(--cth-secondary-color) 50%, var(--cth-color-blue-3) 100%);
}
.cth-reg-cta .cth-section-title {
  color: var(--cth-white);
  text-align: right;
}
.cth-reg-cta .cth-rcta-content-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
}
.cth-reg-cta .cth-rcta-content-item:first-child {
  border-right: var(--cth-white) solid 2px;
  margin-right: 40px !important;
  padding-right: 40px;
}
.cth-reg-cta .cth-rcta-image {
  width: 400px;
  position: absolute;
  bottom: -75px;
  right: -400px;
}
.cth-reg-cta .cth-rcta-content-title {
  color: var(--cth-white);
  font-size: 2.133em;
  font-weight: 700;
  text-align: center;
}
.cth-reg-cta .cth-rcta-content-subtitle {
  color: var(--cth-white);
  font-size: 1.333em;
  font-weight: 600;
  text-align: center;
  margin: 10px 0 15px;;
}
.cth-reg-cta .cth-rcta-user-list {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 10px;
}
.cth-reg-cta .cth-rcta-user-list-item {
  width: 160px;
  height: 130px;
  background: var(--cth-white);
  border-radius: 15px;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.cth-reg-cta .cth-rcta-user-list-item > * {
  text-align: center;
}
.cth-reg-cta .cth-rcta-uli-image {
  width: auto;
  height: 42px;
  margin-bottom: 10px;
}
.cth-reg-cta .cth-rcta-ulic-top-text {
  color: var(--cth-color-gray);
  font-weight: 700;
  margin: 8px 0 2px;
}
.cth-reg-cta .cth-rcta-ulic-bottom-text {
  color: var(--cth-secondary-color);
  font-weight: 800;
  text-transform: uppercase;
}
.cth-reg-cta .cth-rcta-ulic-icon img {
  width: auto;
  height: 25px;
  display: none;
}

/* Editorial Board */
.cth-editorial-list {
  margin-top: -62px;
  display: flex;
  flex-flow: row wrap;
  gap: 25px;
}
.cth-editorial-list .cth-editorial-list-item {
  color: var(--cth-primary-color);
  font-size: 1rem;
  flex: 0 0 calc(50% - 25px);
  display: flex;
  flex-flow: row nowrap;
}
.cth-editorial-list .cth-eli-image {
  height: 215px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 0 0 6px;
  flex: 0 0 185px;
}
.cth-editorial-list .cth-eli-content {
  background: var(--cth-white);
  border-radius: 0 6px 6px 0;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
}
.cth-editorial-list .cth-elic-header {
  height: 62px;
  font-weight: 700;
  padding-left: 25px;
  padding-right: 20px;
  border-bottom: var(--cth-secondary-color-11) solid 1px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.cth-editorial-list .cth-elich-title {
  font-size: 1.333em;
}
.cth-editorial-list .cth-elich-lang {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 10px;
}
.cth-editorial-list .cth-elich-lang-flag {
  height: 20px;
}
.cth-editorial-list .cth-elich-lang-flag img {
  width: auto !important;
  height: 20px !important;
}
.cth-editorial-list .cth-elic-data {
  padding: 20px 25px;
  display: table;
}
.cth-editorial-list .cth-elic-data-row {
  display: table-row;
}
.cth-editorial-list .cth-elic-data-cell {
  display: table-cell;
}
.cth-editorial-list .cth-elic-data-cell:first-child {
  color: var(--cth-secondary-color);
  font-weight: 700;
  text-align: right;
}
.cth-editorial-list .cth-elic-data-cell:last-child {
  padding-left: 17px;
}
.cth-editorial-list .cth-elic-data-row:not(:last-child) .cth-elic-data-cell {
  padding-bottom: 17px;
}

/* FAQ */
.cth-faq {
  background: var(--cth-white);
  font-size: 1rem;
  margin-top: -62px;
  padding: 60px;
  border-radius: 6px;
  counter-reset: section;
  -webkit-box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
  -moz-box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
  box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
}
.cth-faq .cth-faq-list {
  margin-bottom: 60px;
}
.cth-faq .cth-faq-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
}
.cth-faq .cth-faq-item:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: var(--cth-secondary-color-11) solid 2px;
}
.cth-faq .cth-faq-item::before {
  height: 70px;
  color: var(--cth-secondary-color);
  font-family: var(--cth-secondary-font);
  font-size: 2.333em;
  font-weight: 700;
  border: var(--cth-secondary-color) solid 3px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  counter-increment: section;
  content: counter(section);
}
.cth-faq .cth-faq-item h3 {
  color: var(--cth-primary-color);
  font-size: 2.133em;
  font-weight: 800;
  margin-bottom: 15px;
}
.cth-faq .cth-faq-item p {
  font-weight: 500;
}
.cth-faq .cth-faq-cta {
  min-height: 80px;
  background: var(--cth-secondary-color-11);
  color: var(--cth-primary-color);
  font-size: 2.133em;
  border-radius: 40px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.cth-faq .cth-faq-cta a {
  color: var(--cth-primary-color);
  font-weight: 800;
  text-decoration: underline;
}

/* Registration */
.cth-reg-page {
  -webkit-box-shadow: 0px -16px 26px 0px var(--cth-secondary-color-6);
  -moz-box-shadow: 0px -16px 26px 0px var(--cth-secondary-color-6);
  box-shadow: 0px -16px 26px 0px var(--cth-secondary-color-6);
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}
.cth-reg-page .cth-reg-icon {
  width: 130px;
  height: 130px;
  background: var(--cth-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 40px 0px var(--cth-secondary-color-30);
  -moz-box-shadow: 0px 0px 40px 0px var(--cth-secondary-color-30);
  box-shadow: 0px 0px 40px 0px var(--cth-secondary-color-30);
}
.cth-reg-page .cth-reg-icon img {
  width: 67px;
  height: auto;
}
.cth-reg-page .cth-reg-image {
  background-position: center center;
  background-repeat: no-repeat;
  flex: 0 0 500px;
  border-radius: 6px 0 0 6px;
}
.cth-reg-page .cth-reg-content {
  font-weight: 500;
}
.cth-reg-page .cth-regc-item {
  padding: 55px 50px;
}
.cth-reg-page .cth-regc-item:first-child {
  background: var(--cth-white);
}
.cth-reg-page .cth-regc-item:last-child {
  background: var(--cth-secondary-color-11);
  border-radius: 0 0 6px 0;
}
.cth-reg-page .cth-regc-item p {
  line-height: 1.4em;
}
.cth-reg-page .cth-regci-subtitle {
  color: var(--cth-primary-color);
  font-size: 1.133em;
  font-weight: 700;
}
.cth-reg-page .cth-regci-list {
  margin-top: 20px !important;
  margin-bottom: 25px;
  padding: 0;
}
.cth-reg-page .cth-regci-list li {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 15px;
}
.cth-reg-page .cth-regci-list li:not(:last-child) {
  padding-bottom: 5px;
}
  .cth-reg-page .cth-regci-list li::before {
  width: 22px;
  height: 22px;
  content: url('https://centrheum.facemedia.hu/wp-content/themes/centrheum/assets/images/icon-clist-ch-right-bg-sec.png');
  display: block;
}
.cth-reg-page .cth-regci-form {
  display: flex;
  flex-flow: row wrap;
  column-gap: 6px;
  row-gap: 12px;
}
.cth-reg-page .cth-regci-form-item {
  flex: 0 0 calc(50% - 6px);
}
.cth-reg-page .cth-form-label {
  margin-bottom: 9px;
}
.cth-reg-page .cth-form-label:not(.cth-form-chbox-label) {
  display: block;
}
.cth-reg-page .cth-form-submit,
.cth-reg-page .cth-form-input[type="text"],
.cth-reg-page .cth-form-input[type="tel"],
.cth-reg-page .cth-form-input[type="email"] {
  width: 100%;
}
.cth-reg-page .cth-form-submit,
.cth-reg-page .cth-regci-fi-chbox {
  margin-top: 20px;
}
.cth-reg-page .cth-regci-fi-chbox {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 10px;
}
.cth-reg-page .cth-regci-fi-chbox input {
  flex: 0 0 20px;
}

/* How we works */
.cth-hww {
  background: var(--cth-white);
  border-radius: 6px;
  margin-top: -62px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  -webkit-box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
  -moz-box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
  box-shadow: 0px -26px 36px 0px var(--cth-secondary-color-8);
}
.cth-hww .cth-hww-item {
  flex: 0 0 calc(50% - 60px);
  padding-top: 30px;
  padding-bottom: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  column-gap: 25px;
  border-bottom: var(--cth-secondary-color-11) solid 2px;
}
.cth-hww .cth-hww-item:nth-child(1),
.cth-hww .cth-hww-item:nth-child(2) {
  padding-top: 50px;
}
.cth-hww .cth-hww-item:nth-child(even) {
  padding-left: 60px;
  border-left: var(--cth-secondary-color-11) solid 2px;
}
.cth-hww .cth-hwwi-icon {
  flex: 0 0 80px;
}
.cth-hww .cth-hwwi-icon img {
  height: 80px;
}
.cth-hww .cth-hwwi-content {
  padding-right: 40px;
}

/* FOOTER
   ========================================================================== */
.cth-footer {
  height: 145px;
  background: var(--cth-primary-color);
  background: -moz-linear-gradient(90deg, var(--cth-secondary-color) 0%, var(--cth-primary-color) 55%);
  background: -webkit-linear-gradient(90deg, var(--cth-secondary-color) 0%, var(--cth-primary-color) 55%);
  background: linear-gradient(90deg, var(--cth-secondary-color) 0%, var(--cth-primary-color) 55%);
  font-size: 1rem;
}
.cth-footer .cth-container {
  height: 100%;
}

/* Logo */
.cth-footer .cth-site-logo {
  font-family: var(--cth-logo-font);
  font-size: 50px;
  color: var(--cth-secondary-color);
}
.cth-footer .cth-site-logo span {
  color: var(--cth-white);
}

/* Footer content */
.cth-footer .cth-footer-content {
  height: 100%;
  padding: 0 30px;
  border-left: var(--cth-white) solid 1px;
  border-right: var(--cth-white) solid 1px;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
}
.cth-footer .cth-fc-contact {
  font-size: 0.867em;
  font-weight: 600;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 30px;
}
.cth-footer .cth-fc-contact-item {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 10px;
  align-items: flex-end;
}
.cth-footer .cth-fc-contact-item img {
  width: auto;
}
.cth-footer .cth-fc-contact-item a {
  color: var(--cth-white);
}
.cth-footer .cth-fc-nav {
  font-family: var(--cth-secondary-font);
  font-size: 0.867em;
  font-weight: 400;
  text-transform: uppercase;
}
.cth-footer .cth-fc-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 30px;
}
.cth-footer .cth-fc-nav ul a {
  color: var(--cth-white);
}

/* Footer social */
.cth-footer .cth-footer-social {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 30px;
}
.cth-footer .cth-footer-social img {
  width: 35px;
  height: 35px;
}
.cth-footer .cth-fs-icons {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 15px;
}

/* Copyright */
.cth-footer-copyright {
  height: 96px;
  background: var(--cth-bgr-copyright);
  color: var(--cth-white);
  font-family: var(--cth-secondary-font);
  font-size: 0.867em;
  font-weight: 400;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}