@charset "UTF-8";
/*
Theme Name: PM Core
Author: mardor - MadWorks
Author URI: https://madworks.hu
Version: 1.001
Description: MadWorks alap sablonja - "Fogászatiakció"
*/
@font-face {
  font-family: "Red Hat Display";
  src: url(../pm-core/fonts/RedHatDisplay-VariableFont_wght.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans 3";
  src: url(../pm-core/fonts/SourceSans3-VariableFont_wght.ttf);
  font-weight: normal;
}
/* ========================= BASE =============================== */
html, body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--wp--preset--font-family--body);
  margin: 0;
}
body h1, body h2, body h3 {
  font-family: var(--wp--preset--font-family--header);
}
body a, body a:hover {
  text-decoration: none;
}
body strong {
  font-weight: 600;
}
body header, body footer {
  box-sizing: border-box;
}
body header ul, body footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body section {
  position: relative;
  margin: 0;
  z-index: 0;
}
body section:not(:first-child) {
  margin-block-start: 0;
}
body .wp-block-spacer {
  margin: 0 !important;
}
body .wp-block-image img {
  vertical-align: middle;
}
body .is-layout-flow > * + * {
  margin-block-start: 1em;
  margin-block-end: 0;
}
body .wp-block-group.has-background {
  padding: 0;
}
body .wp-block-columns, body .wp-block-image {
  margin-bottom: 0;
}
body .wp-block-column {
  box-sizing: border-box;
}
@media screen and (min-width: 999px) {
  body { /* desktop */ }
  body main .justified.is-layout-flex > div.wp-block-column > div.wp-block-group {
    height: 100%;
  }
  body main ul.justified > li > div.wp-block-group {
    height: 100%;
  }
}
body .grecaptcha-badge {
  visibility: hidden;
}
@media screen and (min-width: 999px) {
  body { /* desktop */ }
  body .full-page {
    height: 90vh;
  }
}
body .bcg-img {
  height: 100%;
  width: 100%;
}
body .bcg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
body ul.square, body ul.bullet, body .bullet ul {
  list-style: none;
  padding: 0;
}
body ul.square li, body ul.bullet li, body .bullet ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5em;
}
body ul.square li:before, body ul.bullet li:before, body .bullet ul li:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--wp--preset--color--primary);
}
body ul.square li {
  padding-left: 1.3em;
}
body ul.square li:before {
  top: 0.6rem;
  width: 0.8rem;
  height: 0.8rem;
}
body ul.bullet li:before, body .bullet ul li:before {
  border-radius: 50%;
}
@media screen and (min-width: 999px) {
  body { /* desktop */ }
  body .desktop-hidden {
    display: none;
  }
}
@media screen and (max-width: 998px) {
  body { /* smartphone */ }
  body .mobile-hidden {
    display: none !important;
  }
  body .m-order-2 {
    order: 2;
  }
  body .arrow img {
    transform: rotate(90deg);
  }
}

/* ========================= EFFECTS ============================ */
body {
  /* typing effects */
}
body a:hover {
  animation: flashing 2s ease forwards;
}
@keyframes flashing {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
body .animated {
  animation-name: none;
  -webkit-animation-name: none;
}
body .animated.animate__backInLeft, body .animated.animate__slideInLeft, body .animated.animate__backInUp,
body .animated.animate__fadeIn, body .animated.animate__fadeInLeft .animated.animate__fadeInUp, body .animated.animate__fadeInDown {
  opacity: 0;
}
body .do-animation {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 1;
}
body .op-move-up:not(body .op-move-up.do-animation) {
  opacity: 0;
}
body .op-move-up.do-animation {
  animation-name: opMoveUp100;
  -moz-animation-name: opMoveUp100;
  -webkit-animation-name: opMoveUp100;
}
@keyframes opMoveUp100 {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
body div.hover__scaleUp {
  transition: transform 0.3s ease-in-out; /* Animáció a hover esetén */
}
body div.hover__scaleUp:hover {
  transform: scale(1.01); /* Kicsit nagyobb, amikor fölé viszik az egeret */
}
body .typing-effect::after {
  content: "|";
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
body .typing-effect.animated {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* ========================= HEADER, FOOTER, MAIN =============== */
body.fixed-header {
  padding-top: 65px;
}
body.fixed-header #page > header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: white;
  opacity: 0.9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.35);
}
body.fixed-header #page > header #logo img {
  max-height: 100px !important;
}
body footer {
  padding-top: 2em;
  padding-bottom: 1em;
  background-color: var(--wp--preset--color--bcg-dark);
  color: var(--wp--preset--color--txt-light);
}
body footer h2 {
  font-weight: normal;
}
body footer a, body footer a:hover {
  color: var(--wp--preset--color--txt-light);
  text-decoration: none;
}
body footer ul.menu {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 998px) {
  body footer ul.menu { /* smartphone */
    align-items: center;
  }
}
body footer .is-layout-flex {
  gap: 0.8em;
}
@media screen and (max-width: 998px) {
  body footer { /* smartphone */
    text-align: center;
  }
  body footer .is-layout-flex {
    justify-content: center !important;
    align-items: center !important;
  }
}

/* ========================= TOOLS ============================== */
body {
  /* === #back-to-top === */
  /* === Read more === */
}
body #back-to-top {
  width: 45px;
  height: 45px;
  display: block;
  color: white;
  position: fixed;
  right: 20px;
  bottom: 5vh;
  z-index: 350;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s ease;
}
body #back-to-top .dashicons {
  font-size: 40px;
  font-weight: 600;
  margin: 1px 3px;
}
@media screen and (max-width: 998px) {
  body #back-to-top { /* smartphone */
    width: 35px;
    height: 35px;
    right: 10px;
  }
  body #back-to-top .dashicons {
    font-size: 30px;
  }
}
body #back-to-top.show {
  pointer-events: visible;
  opacity: 1;
  transform: scale(1);
  border-radius: 3px;
}
body #back-to-top {
  background: var(--wp--preset--color--primary);
}
body .read-more {
  padding-bottom: 1em;
}
body .read-more h3 {
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}
body .read-more h3:after {
  content: "\f347";
  font-family: dashicons;
  font-size: 36px;
  position: absolute;
  right: 0;
  top: 0px;
  width: 35px;
  height: 20px;
  background-repeat: no-repeat;
  z-index: -1;
}
body .read-more.opened h3:after {
  transform: rotate(180deg);
}
body .read-more.opened .more-txt {
  display: block;
}
body .read-more.opened .txt {
  display: none;
}
body .read-more .more-txt {
  transition: all 0.8s;
  display: none;
  overflow: hidden;
}
body .read-more h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
}
body .read-more {
  border-bottom: 1px solid var(--wp--preset--color--primary);
}
body .read-more h2:after {
  color: var(--wp--preset--color--primary);
}

/* ========================= ACCESSIBILITY ============================ */
body .visually-hidden {
  position: absolute;
  left: -10000em;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
body .skiplink {
  margin: 0;
  position: relative;
}
body .skiplink a {
  line-height: 1em;
  position: absolute;
  left: 0;
  top: -5em;
  width: 100%;
  background-color: #362e59;
  color: white;
  outline: 2px solid white;
  text-decoration: none;
  padding: 1.5em 0;
  margin: 0 auto;
  text-align: center;
  -moz-transition-duration: 0.3s;
  -moz-transition-property: top opacity;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: top opacity;
  -webkit-transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: top opacity;
  transition-timing-function: ease-out;
  display: block;
  opacity: 0;
  z-index: 200;
}
body .skiplink a:focus, body .skiplink a:hover {
  top: 0;
  outline-color: var(--wp--preset--color--primary);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */