/*** The new CSS Reset - version 1.0.0 (last updated 8.7.2021) ***/
/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove list styles (bullets/numbers) */
ol, ul {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Assistant", sans-serif;
  background-color: var(--secondary-color);
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: "Rubik", sans-serif;
}

p {
  margin: 0 0 0.5em;
  font-size: 18px;
  line-height: 27px;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

h1 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

h2 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 500;
  color: var(--primary-color);
}

h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

h4 {
  font-size: 22px;
  line-height: 25px;
  font-weight: 400;
  color: var(--contrast-color);
}

.strong {
  font-weight: 700;
}

.semi-strong {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

a.download {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}
.btn {
  display: inline-block;
  font-family: "Rubik";
  background-color: transparent;
  padding: 16px 48px 17px;
  text-decoration: none;
  outline: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s all;
}
.btn:hover {
  text-decoration: none;
}
.btn.btn-consultation {
  border-bottom-right-radius: 10px;
  background-color: var(--contrast-color);
  color: #fff;
  padding-top: 24px;
  padding-bottom: 25px;
}
.btn.btn-flat {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  padding: 32px 24px;
}
.btn.btn-flat:hover {
  background-color: var(--contrast-color);
  color: #fff;
}
.btn.btn-submit {
  background-color: #fff;
  color: #000;
  filter: drop-shadow(4px 4px 0 #000);
  border-radius: 25px;
  padding: 9px 48px 10px;
  font-weight: 400;
  border: 1px solid #000;
}
.btn.btn-submit:hover {
  background-color: #000;
  filter: drop-shadow(4px 4px 0 #fff);
  border: 1px solid #fff;
  color: #fff;
}
@media (max-width: 767px) {
  .btn.btn-flat {
    padding: 24px 16px;
    text-align: center;
    width: 100%;
  }
  .btn.btn-consultation {
    border-radius: 0;
  }
}

body.palette-green {
  --primary-color: #46f1b5;
  --secondary-color: #d6ffef;
  --contrast-color: #04047b;
  --primary-color-rgb: 70, 241, 181;
  --secondary-color-rgb: 214, 255, 239;
  --contrast-color-rgb: 4, 4, 123;
}

body.palette-orange {
  --primary-color: #ff6d0f;
  --secondary-color: #ffd9c2;
  --contrast-color: #ff3300;
  --primary-color-rgb: 255, 109, 15;
  --secondary-color-rgb: 255, 217, 194;
  --contrast-color-rgb: 255, 51, 0;
}

body.palette-pink {
  --primary-color: #ff7ae7;
  --secondary-color: #ffc2f3;
  --contrast-color: #8f003b;
  --primary-color-rgb: 255, 122, 231;
  --secondary-color-rgb: 255, 194, 243;
  --contrast-color-rgb: 143, 0, 59;
}

#main {
  min-height: calc(100vh - 82px - 520px);
}

.wrap {
  width: 1280px;
  margin: 0 auto;
}

.back-to-top {
  text-align: center;
  margin: 64px 0;
  font-family: "Rubik";
  font-weight: 500;
  font-size: 34px;
  line-height: 39px;
  color: var(--contrast-color);
}

@media (min-width: 768px) {
  .row {
    display: flex;
    justify-content: center;
  }

  .row .col {
    flex: 0 0 20%;
  }
}
@media (max-width: 767px) {
  .wrap {
    max-width: 100%;
    padding: 0 24px;
  }
}
header#site-header {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}
header#site-header #site-logo {
  text-align: center;
}
header#site-header #site-logo img {
  margin-top: 16px;
}
header#site-header #site-navigation {
  flex-grow: 1;
  text-align: center;
  font-family: "Rubik";
}
header#site-header #site-navigation .svg-icon svg line {
  stroke: var(--contrast-color);
}
header#site-header .menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
header#site-header .menu-wrapper .menu-item {
  font-size: 20px;
}
header#site-header .menu-wrapper .menu-item a {
  padding: 8px;
}
header#site-header .menu-wrapper .menu-item.current-menu-item {
  font-weight: 700;
  color: var(--contrast-color);
}
header#site-header .menu-wrapper .menu-item:hover {
  color: var(--contrast-color);
}
header#site-header #header-consultation {
  align-self: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  header#site-header #site-logo,
header#site-header #header-consultation {
    flex: 0 0 300px;
  }
  header#site-header #site-logo img {
    width: 150px;
  }
  header#site-header .menu-wrapper {
    width: 800px;
  }
}
@media (max-width: 767px) {
  header#site-header {
    justify-content: center;
  }
  header#site-header #site-logo img {
    max-height: 64px;
  }
  header#site-header #site-navigation {
    position: absolute;
    right: 24px;
    top: 24px;
  }
  header#site-header .navigation {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: 0.3s transform;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px 32px;
    background: var(--primary-color);
  }
  header#site-header .navigation .logo {
    text-align: center;
    position: relative;
  }
  header#site-header .navigation .logo img {
    max-height: 64px;
    margin-top: 16px;
  }
  header#site-header .navigation .menu-button-container {
    position: absolute;
    right: 0;
    top: 24px;
  }
  body.admin-bar header#site-header .navigation {
    top: 46px;
  }
  header#site-header .header-menu-container {
    flex-grow: 1;
    padding: 32px 0 48px;
  }
  header#site-header .menu-wrapper {
    flex-direction: column;
    height: 100%;
  }
  header#site-header .header-navigation-open .navigation {
    transform: translateX(0);
  }
  body.palette-orange header#site-header .navigation {
    background: var(--secondary-color);
  }
}

footer#site-footer {
  background-color: var(--primary-color);
  font-size: 24px;
}
footer#site-footer #footer-content {
  text-align: left;
  display: flex;
  flex-direction: column;
}
footer#site-footer h3 {
  font-size: 34px;
  font-weight: 500;
  color: var(--contrast-color);
}
footer#site-footer .subtitle {
  margin-bottom: 16px;
}
footer#site-footer .contact-by-item {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 16px;
}
footer#site-footer .contact-by-item svg path {
  fill: var(--contrast-color);
}
footer#site-footer .logo {
  display: inline-block;
}
footer#site-footer .svg-icon {
  width: 24px;
  text-align: center;
  margin: 0 8px;
  vertical-align: top;
  line-height: 1;
}
footer#site-footer .acf-map {
  height: 275px;
}
body.palette-orange footer#site-footer {
  --contrast-color: white;
}
@media (min-width: 768px) {
  footer#site-footer {
    padding: 64px 40px 40px;
  }
  footer#site-footer .wrap {
    display: flex;
    justify-content: space-between;
  }
  footer#site-footer #footer-form {
    flex: 0 0 500px;
  }
  footer#site-footer #footer-content {
    flex: 0 0 500px;
  }
  footer#site-footer .footer-logos {
    display: flex;
    justify-content: space-between;
  }
  footer#site-footer .logo {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  footer#site-footer {
    padding: 40px 16px;
  }
  footer#site-footer .footer-logos {
    text-align: center;
  }
  footer#site-footer .logo {
    max-width: 180px;
    margin: 48px auto 0;
  }
  footer#site-footer #contact-by-address {
    font-size: 22px;
  }
  footer#site-footer .publisher-logo {
    text-align: center;
    margin-top: 32px;
  }
}

.acf-map {
  width: 100%;
  border: none;
  margin: 32px 0;
}
.acf-map img {
  max-width: inherit !important;
}

.modal-container {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}
.modal-container .modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
}
.modal-container .modal {
  z-index: 1002;
  position: relative;
  max-width: 95%;
  background-color: #fff;
  padding: 32px;
  display: none;
}
.modal-container .modal-content {
  max-height: calc(95vh - 64px);
  overflow: auto;
}
.modal-container.modal-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-container.modal-open .modal.modal-open {
  display: block;
}
.modal-container .modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal-container .modal-close .svg-icon svg line {
  stroke: var(--secondary-color);
}
body.palette-pink .modal-container .modal-close .svg-icon svg line {
  stroke: var(--contrast-color);
}
body.admin-bar .modal-container {
  top: 32px;
}
body.admin-bar .modal-container .modal {
  max-height: calc(95vh - 32px);
}
body.admin-bar .modal-container .modal-content {
  max-height: calc(95vh - 64px - 32px);
}
@media (max-width: 767px) {
  .modal-container .modal {
    padding: 24px 12px;
  }
  .modal-container .modal-close {
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
  }
}

body.has-entry-header #page.site {
  background-color: #fff;
}
body.has-entry-header main.site-main {
  position: relative;
  top: -80px;
  background-color: var(--secondary-color);
}

body.has-entry-header .entry-header .header-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.has-entry-header .entry-header .header-content {
  background-color: var(--contrast-color);
  color: #fff;
}
body.has-entry-header .entry-header h1 {
  color: #fff;
  margin-bottom: 0;
}
body.has-entry-header .entry-header h2 {
  color: var(--primary-color);
  font-size: 48px;
  line-height: 57px;
  margin-bottom: 60px;
}
body.has-entry-header .entry-header .entry-header-info ul {
  width: 100%;
  display: flex;
  text-align: center;
}
body.has-entry-header .entry-header .entry-header-info ul li {
  margin: 0 24px;
  border-bottom: 2px solid var(--primary-color);
}
body.has-entry-header .entry-header .entry-header-info ul li label {
  display: block;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 16px;
  font-family: "Rubik";
}
body.has-entry-header .entry-header .entry-header-info ul li span {
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  body.has-entry-header .entry-header {
    display: flex;
    width: 100%;
  }
  body.has-entry-header .entry-header .header-content {
    padding: 160px 60px 160px 24px;
    flex: 0 0 50%;
    position: relative;
    z-index: 2;
  }
  body.has-entry-header .entry-header .header-content::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 220px;
    left: -220px;
    z-index: 1;
    background-image: linear-gradient(to top right, transparent 0%, transparent 50%, var(--contrast-color) 50%, var(--contrast-color) 100%);
  }
  body.has-entry-header .entry-header .header-content > * {
    position: relative;
    z-index: 2;
  }
  body.has-entry-header .entry-header .header-image {
    flex: 0 0 50%;
    position: relative;
  }
  body.has-entry-header .entry-header .header-image::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(179.1deg, var(--contrast-color) -2.45%, rgba(var(--contrast-color-rgb), 0.322021) 6.92%, rgba(var(--contrast-color-rgb), 0) 32.97%);
  }
  body.has-entry-header .entry-header .entry-header-info ul li {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  body.has-entry-header .entry-header .header-content {
    padding: 160px 24px 24px;
  }
  body.has-entry-header .entry-header .header-image {
    height: 200px;
  }
}

.modal#modal-contact {
  background-color: var(--primary-color);
  border: 3px solid var(--contrast-color);
  padding: 0;
}
.modal#modal-contact .modal-content aside {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
}
.modal#modal-contact .modal-content aside .logo {
  max-width: 80%;
  margin: 0 auto;
}
.modal#modal-contact .modal-content aside .modal-aside-content {
  padding: 16px 0;
  flex-grow: 1;
}
.modal#modal-contact .modal-content aside .modal-aside-social {
  font-size: 18px;
}
.modal#modal-contact .modal-content aside .modal-aside-social ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.modal#modal-contact .modal-content aside .modal-aside-social .svg-icon {
  flex: 0 0 30px;
  margin-left: 8px;
  text-align: center;
}
.modal#modal-contact .modal-content aside .modal-aside-social .svg-icon svg path {
  fill: var(--contrast-color);
}
.modal#modal-contact .modal-content .modal-form {
  background-color: var(--secondary-color);
}
.modal#modal-contact .modal-content .modal-form h3 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.modal#modal-contact .modal-content .modal-form .form-field .form-field__textarea {
  height: 100px;
}
.modal#modal-contact .modal-content .modal-form .form-actions {
  text-align: center;
}
.modal#modal-contact .modal-content .modal-form-footer {
  margin-top: 16px;
  text-align: center;
}
.modal#modal-contact .modal-content .modal-form-footer p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .modal#modal-contact .modal-content {
    display: flex;
    max-width: 800px;
  }
  .modal#modal-contact aside {
    flex-grow: 1;
    padding: 24px;
  }
  .modal#modal-contact .modal-form {
    flex: 0 0 60%;
    padding: 24px;
  }
  .modal#modal-contact aside, .modal#modal-contact .modal-form {
    max-height: 95vh;
    overflow: auto;
  }
  body.admin-bar .modal#modal-contact aside, body.admin-bar .modal#modal-contact .modal-form {
    max-height: calc(95vh - 32px);
  }
}
@media (max-width: 767px) {
  .modal#modal-contact .modal-content {
    display: flex;
    flex-direction: column;
  }
  .modal#modal-contact aside {
    order: 2;
    padding: 32px 24px;
  }
  .modal#modal-contact aside .logo {
    max-width: 60%;
  }
  .modal#modal-contact .modal-form {
    order: 1;
    padding: 32px 24px;
  }
}
body.palette-orange .modal#modal-contact .modal-content aside .modal-aside-social .svg-icon svg path {
  fill: var(--secondary-color);
}

body.page {
  background-color: #fff;
}
body.page main.site-main {
  position: relative;
  top: -80px;
}
body.page #page-header {
  text-align: center;
  padding: 160px 0 112px;
  background-color: var(--primary-color);
}
body.page .page-content {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}
body.page .content p img:only-child {
  display: block;
  margin: 2em auto;
  border: 1px solid var(--contrast-color);
  border-radius: 25px;
}
body.page .back-to-top {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  body.page .content {
    flex: 0 0 60%;
  }
}
@media (max-width: 767px) {
  body.page #page-header {
    padding: 160px 24px 80px;
  }
  body.page .content {
    padding: 0 24px;
  }
}

body.page.page-template-page-homepage .btn-consultation {
  background-color: var(--primary-color);
}
body.page.page-template-page-homepage #page-header {
  background-color: var(--secondary-color);
}
body.page.page-template-page-homepage #page-header .btn-consultation {
  border-radius: 10px;
}
body.page.page-template-page-homepage h2.header-content {
  color: #000;
  font-size: 20px;
  line-height: 27px;
  margin: 32px auto;
  font-weight: 400;
}
body.page.page-template-page-homepage h3.subtitle {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  font-family: "Rubik";
  margin-bottom: 48px;
}
body.page.page-template-page-homepage #homepage-workshops {
  position: relative;
  padding-bottom: 64px;
}
body.page.page-template-page-homepage #homepage-workshops::before {
  content: "";
  position: absolute;
  height: 200px;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  z-index: 1;
}
body.page.page-template-page-homepage #homepage-workshops .workshops {
  position: relative;
  z-index: 2;
}
body.page.page-template-page-homepage #homepage-workshops .workshops-actions {
  text-align: center;
  margin: 24px 0;
  font-size: 24px;
  font-family: "Rubik";
  color: #000;
}
body.page.page-template-page-homepage #homepage-workshops .workshops-actions .svg-icon svg path {
  fill: #000;
}
body.page.page-template-page-homepage #homepage-workshops .workshops-actions a span {
  text-decoration: underline;
}
body.page.page-template-page-homepage #homepage-banner {
  padding: 80px 0;
  position: relative;
  background-color: #ffc2f3;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-title {
  padding: 0 0 40px;
  font-family: "Rubik";
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  color: #8f003b;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-title span {
  display: block;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features {
  justify-content: space-between;
  margin-top: 32px;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .feature-title {
  font-size: 18px;
  margin-bottom: 16px;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content {
  font-family: "Rubik";
  font-size: 36px;
  line-height: 41px;
  font-weight: 700;
  color: #8f003b;
  text-align: center;
  display: flex;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content span {
  position: relative;
  display: block;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content span > * {
  position: relative;
  z-index: 2;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content span::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  left: -8px;
  border-radius: 5px;
  background-color: #ff7ae7;
  transform: rotate(3deg);
  z-index: -1;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content span:nth-child(2n)::before {
  transform: rotate(-4deg);
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content .svg-icon {
  margin-left: 8px;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content .svg-icon svg path {
  fill: #8f003b;
}
body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature .content .svg-icon svg circle {
  stroke: #8f003b;
}
body.page.page-template-page-homepage #homepage-books {
  background-color: #fff;
  padding: 120px 0;
  position: relative;
}
body.page.page-template-page-homepage #homepage-books h3.subtitle {
  color: #04047b;
}
body.page.page-template-page-homepage #homepage-books .books-actions {
  padding: 40px 0;
  text-align: center;
}
body.page.page-template-page-homepage #homepage-teachers {
  margin: 80px 0;
}
body.page.page-template-page-homepage #homepage-teachers h3.subtitle {
  color: #04047b;
}
body.page.page-template-page-homepage #homepage-teachers .teachers {
  margin-top: 32px;
}
body.page.page-template-page-homepage #homepage-teachers .teachers-actions {
  padding: 40px 0;
  text-align: center;
}
body.page.page-template-page-homepage #homepage-questions {
  background-color: #ffd9c2;
  padding: 80px 0;
  margin-bottom: 24px;
}
body.page.page-template-page-homepage #homepage-questions .questions-title a {
  color: #ff3300;
  text-decoration: underline;
}
body.page.page-template-page-homepage #homepage-questions h3.subtitle {
  color: #ff3300;
}
body.page.page-template-page-homepage #homepage-questions .questions {
  margin: 24px 0;
}
@media (min-width: 768px) {
  body.page.page-template-page-homepage h2.header-content {
    width: 800px;
  }
  body.page.page-template-page-homepage #homepage-workshops .workshops {
    display: flex;
    justify-content: space-between;
  }
  body.page.page-template-page-homepage #homepage-workshops .workshops .widget {
    flex: 0 0 30%;
  }
  body.page.page-template-page-homepage #homepage-banner .homepage-banner-title span {
    width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  body.page.page-template-page-homepage #homepage-banner .homepage-banner-features {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
  }
  body.page.page-template-page-homepage #homepage-books .books {
    display: flex;
    justify-content: space-between;
  }
  body.page.page-template-page-homepage #homepage-books .books .widget {
    flex: 0 0 24%;
  }
  body.page.page-template-page-homepage #homepage-teachers .teachers {
    display: flex;
    flex-wrap: wrap;
  }
  body.page.page-template-page-homepage #homepage-questions .questions-title {
    display: flex;
    justify-content: space-between;
  }
  body.page.page-template-page-homepage #homepage-questions .questions-title a {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  body.page.page-template-page-homepage h3.subtitle {
    text-align: center;
  }
  body.page.page-template-page-homepage #homepage-workshops .workshops .widget {
    margin-bottom: 16px;
  }
  body.page.page-template-page-homepage #homepage-banner .homepage-banner-title {
    text-align: center;
  }
  body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .feature {
    margin-bottom: 24px;
    text-align: center;
  }
  body.page.page-template-page-homepage #homepage-banner .homepage-banner-features .content {
    justify-content: center;
  }
  body.page.page-template-page-homepage #homepage-books {
    padding-top: 32px;
  }
  body.page.page-template-page-homepage #homepage-questions .questions-title {
    padding: 0 16px;
  }
}

.error404 #page-header {
  padding: 80px 0 112px;
  text-align: center;
}

.form-field {
  display: block;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 12px;
  transform: translateY(-14px);
  display: block;
  font-weight: normal;
  left: 0;
  margin: 0;
  padding: 18px 12px 0;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  width: 100%;
  pointer-events: none;
}
.form-field .form-field__control {
  background: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.form-field .form-field__input,
.form-field .form-field__textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 4px solid var(--contrast-color);
  color: #000;
  display: block;
  font-size: 1.2rem;
  outline: 0;
  padding: 24px 12px 10px 12px;
  width: 100%;
}
.form-field .form-field__input:-ms-input-placeholder ~ label,
.form-field .form-field__textarea:-ms-input-placeholder ~ label {
  font-size: 20px;
  transform: translateY(0);
}
.form-field .form-field__input:placeholder-shown ~ label,
.form-field .form-field__textarea:placeholder-shown ~ label {
  font-size: 20px;
  transform: translateY(0);
}
.form-field .form-field__input:focus ~ label,
.form-field .form-field__textarea:focus ~ label {
  font-size: 12px;
  transform: translateY(-14px);
}
.form-field .form-field__select:invalid ~ label {
  font-size: 20px;
  transform: translateY(0);
  pointer-events: none;
}
.form-field .form-field__select ~ .svg-icon {
  position: absolute;
  left: 16px;
  top: 20px;
  pointer-events: none;
}
.form-field .form-field__select ~ .svg-icon svg path {
  stroke: var(--contrast-color);
}
.form-field .form-field__textarea {
  height: 150px;
}
body.palette-orange .form-field {
  --contrast-color: #ff3300;
}

#footer-form #form-contact .form-actions {
  text-align: left;
}

.archive-workshop #archive-header {
  text-align: center;
  padding: 80px 0 112px;
}
.archive-workshop #archive-header h1 {
  margin-bottom: 48px;
}
.archive-workshop .header-content {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 48px;
}
.archive-workshop .header-feature .content {
  display: flex;
  justify-content: center;
}
.archive-workshop .header-feature .svg-icon {
  margin-left: 8px;
}
.archive-workshop .header-feature .title {
  font-family: "Rubik";
  font-size: 34px;
  line-height: 39px;
  font-weight: 500;
  color: var(--contrast-color);
}
.archive-workshop .header-feature .title span {
  display: block;
  position: relative;
}
.archive-workshop .header-feature .title span > * {
  position: relative;
  z-index: 2;
}
.archive-workshop .header-feature .title span::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  left: -8px;
  border-radius: 5px;
  background-color: var(--primary-color);
  transform: rotate(3deg);
  z-index: -1;
}
.archive-workshop .header-feature .title span:nth-child(2n)::before {
  transform: rotate(-4deg);
}
@media (max-width: 767px) {
  .archive-workshop .header-content {
    padding: 0 24px;
  }
  .archive-workshop .header-feature {
    margin-bottom: 32px;
  }
}

.post-list-item-workshop {
  background-color: #fff;
  border-radius: 25px;
  border: 1px solid #46f1b5;
  font-size: 18px;
  line-height: 27px;
}
.post-list-item-workshop .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.post-list-item-workshop .image a {
  display: block;
  height: 100%;
}
.post-list-item-workshop .content {
  padding: 32px 24px 16px;
}
.post-list-item-workshop .starting-at {
  font-size: 20px;
  margin: 24px 0;
  position: relative;
  display: inline-block;
  position: relative;
}
.post-list-item-workshop .starting-at > * {
  position: relative;
  z-index: 2;
}
.post-list-item-workshop .starting-at::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  left: -8px;
  border-radius: 5px;
  background-color: #bdffe0;
  transform: rotate(3deg);
  z-index: 1;
}
.post-list-item-workshop .meta {
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
}
.post-list-item-workshop .meta ul {
  padding: 0 0 8px;
  flex-grow: 1;
}
.post-list-item-workshop .meta li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.post-list-item-workshop .meta li .svg-icon {
  margin-left: 16px;
  display: flex;
}
.post-list-item-workshop .meta a {
  display: flex;
  background-color: #46f1b5;
  border-bottom-left-radius: 25px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  font-family: "Rubik";
  font-size: 24px;
  font-weight: 500;
  transition: 0.3s all;
}
.post-list-item-workshop .meta a:hover {
  background-color: #04047b;
  color: #fff;
}
@media (min-width: 768px) {
  .post-list-item-workshop {
    display: flex;
    min-height: 305px;
    margin-bottom: 100px;
  }
  .post-list-item-workshop .image {
    flex: 0 0 20%;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .post-list-item-workshop .content {
    flex: 1 0 60%;
  }
  .post-list-item-workshop .meta {
    flex: 0 0 20%;
  }
}
@media (max-width: 767px) {
  .post-list-item-workshop {
    margin-bottom: 32px;
  }
  .post-list-item-workshop .image {
    height: 305px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
  }
  .post-list-item-workshop .meta {
    border-top: 1px solid #46f1b5;
    padding-top: 16px;
  }
  .post-list-item-workshop .meta ul {
    padding: 0 24px;
  }
  .post-list-item-workshop .meta a {
    border-bottom-right-radius: 25px;
  }
}

.single-workshop header#site-header .menu-wrapper .menu-item {
  color: #fff;
}
.single-workshop header#site-header .menu-wrapper .menu-item.current-menu-item {
  color: var(--primary-color);
}
.single-workshop article.workshop .entry-header h1 {
  font-size: 65px;
  line-height: 77px;
}
.single-workshop article.workshop h3 {
  font-size: 34px;
  line-height: 39px;
}
.single-workshop article.workshop .entry-main .entry-content {
  font-size: 18px;
}
.single-workshop article.workshop .entry-main .entry-content h3 {
  margin-bottom: 24px;
}
.single-workshop article.workshop .entry-main .entry-content section {
  margin-bottom: 112px;
}
.single-workshop article.workshop .entry-main .entry-content-main ul {
  padding-right: 24px;
}
.single-workshop article.workshop .entry-main .entry-content-main ul li {
  list-style: disc outside;
  margin-bottom: 8px;
}
.single-workshop article.workshop .entry-main .entry-content-main h4 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.single-workshop article.workshop .entry-main aside {
  background-color: var(--primary-color);
  font-family: "Rubik";
  font-size: 24px;
}
.single-workshop article.workshop .entry-main aside h3 {
  margin-bottom: 48px;
}
.single-workshop article.workshop .entry-main dl {
  display: flex;
  flex-wrap: wrap;
}
.single-workshop article.workshop .entry-main dl dt {
  flex: 0 0 40%;
  font-weight: bold;
  margin-bottom: 24px;
}
.single-workshop article.workshop .entry-main dl dd {
  flex-grow: 1;
  margin-bottom: 24px;
}
.single-workshop article.workshop .entry-main button {
  margin-top: 80px;
}
.single-workshop article.workshop .entry-main .contact-us {
  text-align: center;
  margin-top: 48px;
}
.single-workshop article.workshop .entry-main .contact-us a {
  font-size: 34px;
  font-weight: 500;
}
.single-workshop article.workshop .recommendations {
  background-color: #fff;
}
.single-workshop article.workshop .recommendations h3 {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .single-workshop article.workshop .entry-main {
    display: flex;
  }
  .single-workshop article.workshop .entry-main .entry-content {
    padding: 80px 48px 80px 200px;
  }
  .single-workshop article.workshop .entry-content-actions .btn ~ .btn {
    margin-right: 32px;
  }
  .single-workshop article.workshop aside {
    flex: 0 0 500px;
    padding: 80px 48px;
  }
  .single-workshop article.workshop .recommendations {
    padding: 60px 60px 24px;
  }
}
@media (max-width: 767px) {
  .single-workshop article.workshop .entry-header {
    text-align: center;
  }
  .single-workshop article.workshop .entry-header .entry-header-info ul {
    display: block;
  }
  .single-workshop article.workshop .entry-header .entry-header-info ul li {
    margin-bottom: 8px;
  }
  .single-workshop article.workshop .header-content h2 {
    font-size: 32px;
    line-height: 37px;
    margin-top: 8px;
  }
  .single-workshop article.workshop .entry-main .entry-content {
    padding: 80px 24px;
  }
  .single-workshop article.workshop .entry-main .entry-content .entry-content-actions {
    margin-bottom: 0;
  }
  .single-workshop article.workshop .entry-main .entry-content .entry-content-actions .btn {
    margin-bottom: 16px;
  }
  .single-workshop article.workshop .entry-main dl dt {
    flex: 0 0 100%;
    margin-bottom: 8px;
  }
  .single-workshop article.workshop aside {
    padding: 80px 24px;
  }
  .single-workshop article.workshop aside .btn-submit {
    padding-right: 30px;
    padding-left: 30px;
  }
  .single-workshop article.workshop .recommendations {
    padding: 60px 24px 24px;
  }
}

.widget-workshop {
  background-color: #fff6fc;
  background-color: #ff6d0f;
  border-radius: 25px;
  padding: 32px 24px;
  text-align: center;
}
.widget-workshop .workshop-title {
  text-align: center;
  color: #fff;
  font-size: 48px;
  line-height: 55px;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 165px;
}
.widget-workshop .workshop-title span {
  display: block;
  z-index: 1;
  position: relative;
}
.widget-workshop .workshop-title span > * {
  position: relative;
  z-index: 2;
}
.widget-workshop .workshop-title span::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  left: -8px;
  border-radius: 5px;
  background-color: #ff3300;
  transform: rotate(3deg);
  z-index: -1;
}
.widget-workshop .workshop-title span::before {
  top: 4px;
  bottom: 4px;
}
.widget-workshop .workshop-title span:nth-child(2n)::before {
  transform: rotate(-1deg);
}
.widget-workshop .workshop-title span:nth-child(3n)::before {
  transform: none;
}
.widget-workshop .workshop-info-teacher p {
  font-size: 20px;
}
.widget-workshop .workshop-info-image {
  margin-bottom: 16px;
}
.widget-workshop .workshop-info-image img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.widget-workshop .workshop-content {
  margin-bottom: 24px;
  padding: 0 16px;
}
.widget-workshop .workshop-actions {
  text-align: center;
}
@media (min-width: 768px) {
  .widget-workshop {
    display: flex;
    flex-direction: column;
  }
  .widget-workshop .workshop-content {
    flex-grow: 1;
  }
}

.archive-teacher #archive-header {
  text-align: center;
  padding: 80px 0 112px;
}
.archive-teacher #archive-header h1 {
  margin-bottom: 48px;
}
.archive-teacher .header-content {
  margin-bottom: 48px;
}
.archive-teacher .back-to-top {
  margin-top: 0;
}
@media (min-width: 768px) {
  .archive-teacher .archive-posts-list {
    display: flex;
    flex-wrap: wrap;
  }
  .archive-teacher .archive-posts-list article {
    flex: 0 0 33.3%;
    margin-bottom: 64px;
  }
  .archive-teacher .archive-posts-list article:nth-child(3n+4)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 250px;
    background: #fff;
    z-index: -1;
    transform: translateY(-50%);
  }
}

.post-list-item-teacher {
  text-align: center;
}
.post-list-item-teacher a {
  display: block;
}
.post-list-item-teacher .image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid var(--contrast-color);
}
.post-list-item-teacher .content {
  text-align: center;
  padding: 32px 64px;
}
@media (min-width: 768px) {
  .post-list-item-teacher {
    min-height: 305px;
    margin-bottom: 100px;
  }
  .post-list-item-teacher .content {
    min-height: 250px;
  }
}

.single-teacher main.site-main {
  position: relative;
  top: -80px;
  background-color: var(--secondary-color);
}
.single-teacher article.teacher .entry-header {
  text-align: center;
  width: 100%;
}
.single-teacher article.teacher .entry-header .header-content {
  padding: 160px 60px 60px;
  background-color: var(--primary-color);
}
.single-teacher article.teacher .entry-header .header-image {
  text-align: center;
  position: relative;
}
.single-teacher article.teacher .entry-header .header-image img {
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.single-teacher article.teacher .entry-header .header-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  z-index: 1;
}
.single-teacher article.teacher .entry-header h1, .single-teacher article.teacher .entry-header h2 {
  color: #fff;
  font-size: 48px;
  line-height: 57px;
  font-weight: 500;
}
.single-teacher article.teacher .entry-header h2 {
  color: var(--secondary-color);
}
.single-teacher article.teacher .entry-main .entry-content {
  margin: 0 auto;
}
.single-teacher article.teacher .entry-main .entry-content-actions {
  margin: 80px auto 0;
}
.single-teacher article.teacher .entry-main .entry-content-actions .btn {
  margin-bottom: 24px;
  padding: 16px 20px;
  color: #fff;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .single-teacher article.teacher .entry-header .header-image img {
    width: 350px;
    height: 350px;
  }
  .single-teacher article.teacher .entry-header .header-image::before {
    bottom: 175px;
  }
  .single-teacher article.teacher .entry-main .entry-content {
    padding: 80px 48px 0;
    width: 600px;
  }
}
@media (max-width: 767px) {
  .single-teacher article.teacher .entry-header .header-image img {
    width: 250px;
    height: 250px;
  }
  .single-teacher article.teacher .entry-header .header-image::before {
    bottom: 125px;
  }
  .single-teacher article.teacher .entry-main .entry-content {
    padding: 80px 24px 0;
  }
  .single-teacher article.teacher .entry-main .entry-content-actions {
    width: 300px;
  }
}
.single-teacher.palette-orange header#site-header .current-menu-item {
  --contrast-color: white;
}

.widget-teacher {
  padding: 0 24px;
  text-align: center;
}
.widget-teacher .teacher-image {
  position: relative;
  text-align: center;
}
.widget-teacher .teacher-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid #46f1b5;
}
.widget-teacher .teacher-image::before {
  content: "";
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #bdffe0;
  z-index: -1;
}
.widget-teacher .teacher-content {
  background-color: #bdffe0;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-top: 16px;
}
.widget-teacher .teacher-content a {
  font-size: 28px;
  color: #0d1c5b;
  font-weight: 700;
}
.widget-teacher .teacher-content .teacher-description {
  padding: 24px 16px 16px;
  color: #0d1c5b;
}
@media (min-width: 768px) {
  .widget-teacher {
    flex: 0 0 25%;
    margin-bottom: 24px;
  }
  .widget-teacher .teacher-description {
    min-height: 175px;
  }
}
@media (max-width: 767px) {
  .widget-teacher {
    margin-bottom: 48px;
  }
}

.archive-magazine main.site-main {
  position: relative;
  top: -80px;
  background-color: var(--secondary-color);
}
.archive-magazine #archive-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  z-index: 1;
  bottom: -112px;
  height: 112px;
}
.archive-magazine .wrap {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .archive-magazine .archive-posts-list {
    display: flex;
    flex-wrap: wrap;
  }
  .archive-magazine .archive-posts-list article {
    flex: 0 0 29.3%;
    margin: 0 2% 4%;
  }
}
@media (max-width: 767px) {
  .archive-magazine .archive-posts-list article {
    margin-bottom: 64px;
  }
}

.post-list-item-magazine {
  border: 1px solid var(--contrast-color);
  border-radius: 25px;
}
.post-list-item-magazine .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 240px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.post-list-item-magazine .content {
  background-color: #fff;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  padding: 16px;
}
.post-list-item-magazine .content h3 {
  margin-bottom: 16px;
}
.post-list-item-magazine .content .inner-content {
  min-height: 64px;
}
.post-list-item-magazine .content .tags a {
  font-size: 16px;
  background-color: var(--secondary-color);
  padding: 4px 15px;
}
.post-list-item-magazine .content .tags a:hover {
  background-color: var(--primary-color);
}
.post-list-item-magazine .content .tags a ~ a {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .post-list-item-magazine {
    display: flex;
    flex-direction: column;
  }
  .post-list-item-magazine .content {
    flex-grow: 1;
  }
}

.single-post header#site-header .menu-wrapper .menu-item.current-menu-item {
  color: var(--secondary-color);
}
.single-post .entry-header .header-content {
  padding-bottom: 32px;
}
.single-post .entry-header .header-content h1 {
  color: var(--secondary-color);
}
.single-post .entry-header .header-content h1 span {
  display: block;
  color: #fff;
}
.single-post .tags {
  margin-top: 80px;
}
.single-post .entry-main {
  background-color: #fff;
  padding: 60px 0;
}
.single-post .entry-main aside p {
  font-size: 22px;
}
.single-post .entry-main a {
  color: var(--contrast-color);
}
.single-post .entry-main h4 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.single-post .entry-main h4:first-child {
  margin-top: 0;
}
.single-post .entry-main p img:only-child {
  display: block;
  margin: 2em auto;
  border: 1px solid var(--contrast-color);
  border-radius: 25px;
}
.single-post .entry-content-actions {
  margin-top: 112px;
}
.single-post .entry-content-actions .btn.btn-flat {
  color: #fff;
}
@media (min-width: 768px) {
  .single-post article .entry-header .header-content {
    padding-bottom: 32px;
  }
  .single-post .entry-main {
    display: flex;
  }
  .single-post .entry-main aside {
    flex: 0 0 25%;
    padding: 0 32px;
  }
  .single-post .entry-content {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .single-post .entry-main {
    padding: 24px;
  }
  .single-post aside {
    margin-bottom: 32px;
  }
  .single-post .entry-content-actions {
    text-align: center;
  }
}

.widget-magazine .magazine-wrapper .magazine-info {
  flex: 0 0 40%;
  padding: 24px;
}
.widget-magazine .magazine-wrapper .magazine-title {
  margin-bottom: 32px;
}
.widget-magazine .magazine-wrapper .magazine-title h3 {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
}
.widget-magazine .magazine-wrapper .magazine-actions {
  color: #ff3300;
  font-size: 24px;
  font-family: "Rubik";
}
.widget-magazine .magazine-wrapper .magazine-actions svg path {
  fill: #ff3300;
}
.widget-magazine .magazine-wrapper .magazine-actions a span {
  text-decoration: underline;
}
.widget-magazine .magazine-wrapper .magazine-image {
  flex: 0 0 60%;
  text-align: center;
  max-height: 490px;
  overflow: hidden;
  border-radius: 25px;
}
.widget-magazine .magazine-wrapper .magazine-image img {
  border-radius: 25px;
  object-fit: none;
}
@media (min-width: 768px) {
  .widget-magazine .magazine-wrapper {
    display: flex;
    margin-bottom: 32px;
  }
  .widget-magazine .magazine-actions {
    margin-top: 32px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .widget-magazine .magazine-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
  }
  .widget-magazine .magazine-info .content {
    padding: 0;
  }
  .widget-magazine .magazine-image {
    order: 1;
  }
  .widget-magazine .magazine-info {
    order: 2;
  }
  .widget-magazine .image-wrapper img {
    width: 100%;
    height: 100%;
  }
  .widget-magazine .magazine-actions {
    margin-top: 16px;
  }
}

.archive-book {
  background-color: #fff;
}
.archive-book main.site-main {
  position: relative;
  top: -80px;
  background-color: #fff;
}
.archive-book #archive-header .search-form .svg-icon path {
  fill: var(--contrast-color);
}
.archive-book .archive-posts-list {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .archive-book .archive-posts-list article {
    flex: 0 0 21%;
    margin: 0 2% 4%;
  }
}
@media (max-width: 767px) {
  .archive-book .archive-posts-list article {
    flex: 0 0 100%;
    margin-bottom: 64px;
  }
}

.post-list-item-book .book-card {
  background-color: var(--contrast-color);
  padding: 24px;
}
.post-list-item-book .image {
  margin-bottom: 24px;
  text-align: center;
}
.post-list-item-book .content {
  color: #fff;
  font-size: 18px;
}
.post-list-item-book .content h3, .post-list-item-book .content h4 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}
.post-list-item-book .content h4 {
  font-weight: 400;
}
.post-list-item-book .content .book-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
.post-list-item-book .book-description {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .post-list-item-book {
    display: flex;
  }
  .post-list-item-book .book-card {
    display: flex;
    flex-direction: column;
  }
  .post-list-item-book .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .post-list-item-book .content .book-meta {
    flex-grow: 1;
    align-items: flex-end;
  }
}

.widget.widget-book .book-card {
  background-color: #04047b;
  padding: 24px;
}
.widget.widget-book .image {
  margin-bottom: 24px;
  text-align: center;
}
.widget.widget-book .content {
  color: #fff;
  font-size: 18px;
  padding: 0;
}
.widget.widget-book .content h3, .widget.widget-book .content h4 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}
.widget.widget-book .content h4 {
  font-weight: 400;
}
.widget.widget-book .content .book-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .widget.widget-book {
    margin-bottom: 24px;
  }
}

body.archive-question {
  background-color: var(--secondary-color);
}
body.archive-question #page-header {
  text-align: center;
  padding: 80px 0 112px;
}
body.archive-question .btn.btn-consultation {
  background-color: var(--primary-color);
}

.recommendations li {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  text-align: center;
}
.recommendations .recommendation-content {
  margin-bottom: 32px;
}
.recommendations .recommendation-name {
  color: #04047b;
}
@media (min-width: 768px) {
  .recommendations ul {
    display: flex;
    flex-wrap: wrap;
  }
  .recommendations li {
    flex: 0 0 31.3%;
    margin: 0 1% 24px;
    padding: 40px 80px 16px;
  }
}
@media (max-width: 767px) {
  .recommendations li {
    padding: 24px 16px 16px;
    margin-bottom: 16px;
  }
}

.archive-header-search {
  padding: 160px 0 136px;
  text-align: center;
  background-color: var(--primary-color);
  position: relative;
}
.archive-header-search .header-search-form {
  margin: 64px auto 0;
}
.archive-header-search .searching-for {
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  margin-top: 32px;
  color: var(--contrast-color);
}
@media (min-width: 768px) {
  .archive-header-search .header-search-form {
    width: 760px;
  }
}
@media (max-width: 767px) {
  .archive-header-search {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.no-posts-found {
  justify-content: center;
  text-align: center;
  padding: 24px 0 64px;
}
.no-posts-found h2 {
  color: var(--contrast-color);
}

.search-form {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.search-form label {
  position: relative;
}
.search-form input {
  padding: 12px 40px 12px 16px;
  background-color: #fff;
  width: 100%;
  color: var(--contrast-color);
}
.search-form input::-webkit-input-placeholder {
  color: rgba(var(--contrast-color-rgb), 0.5);
}
.search-form input::-moz-placeholder {
  color: rgba(var(--contrast-color-rgb), 0.5);
}
.search-form input:-ms-input-placeholder {
  color: rgba(var(--contrast-color-rgb), 0.5);
}
.search-form input:-moz-placeholder {
  color: rgba(var(--contrast-color-rgb), 0.5);
}
.search-form .svg-icon {
  position: absolute;
  top: 2px;
  right: 12px;
}

.tags {
  display: flex;
}
.tags a {
  display: inline-block;
  background-color: var(--primary-color);
  color: #000;
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 50px;
  transition: 0.3s background-color;
}
.tags a:hover {
  background-color: var(--secondary-color);
}
.tags a ~ a {
  margin-right: 16px;
}

.faq-component .question-item {
  margin-bottom: 8px;
}
.faq-component .question-item.item-open .question {
  margin: 0 0 16px;
}
.faq-component .question-item.item-open .answer {
  opacity: 1;
  height: auto;
}
.faq-component .question-item.item-open .svg-icon {
  transform: rotate(180deg);
}
.faq-component .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--contrast-color);
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  cursor: pointer;
  transition: 0.5s margin;
}
.faq-component .question .svg-icon {
  transition: 0.5s transform;
  margin-right: 16px;
}
.faq-component .answer {
  transition: 0.5s;
  overflow: hidden;
  padding: 0 32px;
  height: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .faq-component .question {
    padding: 16px 32px;
  }
  .faq-component .answer {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .faq-component .question {
    padding: 16px;
  }
}