/* 
    Author     : mardor
*/
.with-margin,
article.with-margin {
  padding-left: 20%;
  padding-right: 20%;
}
.gallery_wrapper {
  margin-left: 20%;
  margin-right: 20%;
}
section.gray-bcg,
section.white-bcg,
section.gold-bcg {
  padding-top: 5vh;
  padding-bottom: 5vh;
}
.gallery_wrapper {
  margin-top: 5vh;
  margin-bottom: 5vh;
}
/* === Read more === */
.read-more {
  padding-bottom: 1em;
}
.read-more h3 {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.read-more h3:after {
  content: "\f347";
  font-family: dashicons;
  font-size: 26px;
  color: var(--wp--preset--color--primary);
  position: absolute;
  right: -45px;
  top: -2px;
  width: 35px;
  height: 20px;
  background-repeat: no-repeat;
}
.read-more.opened h3:after {
  content: "\f343";
}
.read-more.opened .more-txt {
  display: block;
}
.read-more.opened .txt {
  display: none;
}
.read-more .more-txt {
  transition: all 0.8s;
  display: none;
  overflow: hidden;
  font-style: italic;
}
.read-more h2 {
  font-size: 20px;
}
.read-more h3 {
  font-size: 18px;
}
.read-more h2:after {
  color: var(--wp--preset--color--primary);
}
/* === #back-to-top === */
#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;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none;
}
#back-to-top .dashicons {
  font-size: 40px;
  font-weight: 600;
  margin: 1px 3px;
}
#back-to-top.show {
  pointer-events: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 3px;
}
#back-to-top {
  background: #e0af3e;
}
/* BASE */
html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
  color: #3e3e3e;
}
.font-h {
  font-family: 'GFS Didot', serif;
}
h1,
h2,
h3 {
  font-family: 'GFS Didot', serif;
  text-transform: uppercase;
}
h2 {
  font-size: 1.8em;
  position: relative;
  display: inline-block;
  z-index: 0;
}
h2:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 90%;
  height: 13px;
  background-color: #e0af3e6b;
  z-index: -1;
}
h2 strong {
  font-size: 1.2em;
  /*        display: inline-block;
        transform: rotateX(0deg) rotateY(0deg) rotateZ(357deg);*/
}
h2.has-text-align-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
h3 strong {
  color: #e0af3e;
}
a {
  color: #e0af3e;
  text-decoration: none;
}
a:hover {
  color: #e0af3e;
  text-decoration: underline;
}
.height-100 {
  height: 100%;
}
.wp-block-image {
  margin-bottom: 0;
}
.wp-block-image img {
  height: auto;
}
figcaption {
  font-size: 0.9em;
  position: absolute;
  bottom: 0px;
  left: -20px;
  background: rgba(224, 175, 62, 0.6);
  color: white;
  padding: 20px 30px;
}
.wp-block-columns {
  margin-bottom: 0;
}
figure {
  position: relative;
}
figure.bordered:after,
.bordered figure:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 5px solid #e0af3e;
  opacity: 0.5;
  position: absolute;
  top: 7px;
  left: 5px;
}
div#page {
  /* header - content - footer felosztás */
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
  background-image: url(../../uploads/2022/02/Alap_MF_KIV-white.jpg);
  background-attachment: fixed;
  background-position: center 33%;
  background-size: cover;
}
div#page main {
  margin-top: 75px;
}
/* HEADER */
header {
  position: relative;
}
header div#header-top {
  height: 100px;
}
@media all and (min-width: calc(999px)) {
  header div#header-top {
    /* NOT SMARTPHONE */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  header div#header-top .header-col:first-child,
  header div#header-top .header-col:last-child {
    width: 45%;
  }
  header div#header-top .header-col:nth-child(2) {
    min-width: 515px;
    margin-bottom: 5px;
  }
  header div#header-top .header-col:first-child {
    box-sizing: border-box;
    padding: 0 33px;
  }
  header div#header-top .header-col:last-child {
    text-align: right;
    box-sizing: border-box;
  }
}
header h1 {
  font-size: 2.7em;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  line-height: 0em;
  color: rgba(0, 0, 0, 0.17);
  z-index: 2;
  position: relative;
}
header h1:before {
  content: attr(data-title);
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.2em;
  white-space: nowrap;
  position: absolute;
  right: -50px;
  bottom: 25px;
  line-height: 0em;
  /* color: #151515; */
  color: rgba(0, 0, 0, 0.05);
  z-index: 1;
}
@media all and (min-width: calc(999px)) {
  header h1 {
    /* NOT SMARTPHONE */
    position: absolute;
    bottom: 0px;
    right: 80px;
  }
}
header nav#nav-main {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  z-index: 500;
}
@media all and (min-width: calc(999px)) {
  header nav#nav-main {
    /* NOT SMARTPHONE  */
    height: 75px;
  }
}
@media only screen and (max-width: 999px) {
  header nav#nav-main {
    display: none;
    height: 100vh;
    padding-top: 5vh;
    background-color: white;
    opacity: 0.9;
  }
  header nav#nav-main.opened {
    display: block;
  }
}
header nav#nav-main ul#main-nav {
  font-family: "Palatino", "Serif";
  line-height: 1.3rem;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 6px 10px 0 10px;
  box-sizing: border-box;
  position: absolute;
  z-index: 500;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  list-style: none;
  padding-right: 3%;
  padding-left: 3%;
}
header nav#nav-main ul#main-nav > li {
  padding: 0;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
header nav#nav-main ul#main-nav > li a {
  color: #3e3e3e;
  display: block;
  text-decoration: none;
  padding: 6px 2px;
  transition: color 0.2s;
  -moz-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
}
header nav#nav-main ul#main-nav > li a:hover,
header nav#nav-main ul#main-nav > li a.active {
  color: #e0af3e;
}
header nav#nav-main ul#main-nav > li ul.submenu {
  display: none;
  list-style: none;
  padding: 0px;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}
header nav#nav-main ul#main-nav > li:hover ul.submenu {
  display: block;
}
@media all and (min-width: calc(999px)) {
  header nav#nav-main ul#main-nav {
    /* NOT SMARTPHONE  */
    background-color: white;
    background-image: url(../../uploads/2022/02/MF_menusav_1024_resp-white.png);
    background-repeat: repeat-x;
    background-position: top center;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    grid-column-gap: 10px;
  }
  header nav#nav-main ul#main-nav > li {
    height: 40px;
  }
  header nav#nav-main ul#main-nav > li > a {
    background: #FFFFFF;
    font-size: 18px;
  }
  header nav#nav-main ul#main-nav > li ul.submenu {
    position: absolute;
  }
}
@media all and (max-width: 999px) {
  header nav#nav-main ul#main-nav {
    /* SMARTPHONES */
  }
  header nav#nav-main ul#main-nav > li > a {
    font-size: 24px;
    line-height: 28px;
    /*                        &:after {
                            content: "▶";
                        }*/
  }
}
header nav#nav-main.fixed {
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0px 10px 35px -4px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 10px 35px -4px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 10px 35px -4px rgba(0, 0, 0, 0.45);
}
/* FOOTER */
footer {
  background-color: #e0af3e;
  color: black;
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer a,
footer a:hover {
  color: #3e3e3e;
}
footer .footer-col:not(:last-child) {
  margin-right: 30px;
}
section,
article {
  position: relative;
}
section.gray-bcg,
article.gray-bcg,
section.white-bcg,
article.white-bcg,
section.gold-bcg,
article.gold-bcg {
  /*       & > div { text-align: justify; }*/
  /*       .wp-block-columns { align-items: center; }        */
}
@media all and (min-width: calc(999px)) {
  section.gray-bcg,
  article.gray-bcg,
  section.white-bcg,
  article.white-bcg,
  section.gold-bcg,
  article.gold-bcg {
    /* NOT SMARTPHONE */
  }
  section.gray-bcg h2,
  article.gray-bcg h2,
  section.white-bcg h2,
  article.white-bcg h2,
  section.gold-bcg h2,
  article.gold-bcg h2 {
    margin-top: 0;
  }
}
section.gray-bcg,
article.gray-bcg {
  background-color: #f1f1f1;
}
section.white-bcg,
article.white-bcg {
  background-color: rgba(255, 255, 255, 0.7);
}
section.gold-bcg,
article.gold-bcg {
  background-color: rgba(224, 175, 62, 0.4);
}
section .circle-cut,
article .circle-cut {
  border-radius: 50% !important;
  overflow: hidden !important;
}
.home {
  /*    section#testimonials, section#recent-blog {
        text-align: center;
    }*/
}
.home h1:before {
  font-size: 1.2em;
}
.home #services > div {
  max-width: 100%;
}
.home #instagram .wp-block-column {
  margin-bottom: 2em;
}
@media all and (min-width: calc(999px)) {
  .home #sec-main {
    height: calc(100vh - 175px);
  }
}
.page:not(.home) h2 {
  margin-bottom: 0;
}
.page:not(.home) #contact-info .wp-block-columns,
.page:not(.home) #contact-info p {
  margin-top: 0;
  margin-bottom: 0;
}
@media all and (min-width: calc(999px)) {
  .page:not(.home) #booking-form form {
    /* NOT SMARTPHONE */
    width: 750px;
    margin: 0 auto;
  }
}
.page:not(.home) #booking-form form div#wpforms-205-field_8-container,
.page:not(.home) #booking-form form div#wpforms-205-field_9-container {
  display: none;
  width: 49%;
  float: left;
  clear: none;
}
.page:not(.home) #booking-form form div#wpforms-205-field_8-container {
  margin-right: 2%;
}
.page:not(.home) .wp-block-column p:first-child {
  margin-top: 0;
}
.book-now a,
.wpforms-submit,
input[type=submit] {
  color: white !important;
  background-color: #e0af3e !important;
  border: 1px solid #e0af3e !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  padding: 5px 20px;
  margin: 20px 0;
  transition: color 300ms ease 0ms, background-color 300ms ease 0ms;
  cursor: pointer;
}
.book-now a:hover,
.wpforms-submit:hover,
input[type=submit]:hover {
  background-color: transparent !important;
  border: 1px solid #e0af3e !important;
  color: #e0af3e !important;
  font-weight: bold;
  text-decoration: none;
}
.rounded-logo {
  width: 300px;
  height: 300px;
}
.rounded-logo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.wpforms-form button {
  display: block !important;
  margin: 0 auto !important;
  width: 120px !important;
}
.wpforms-form .wpforms-confirmation-container-full {
  background: transparent !important;
  border: none !important;
  text-align: center;
}
.wpforms-form span.wpforms-required-label {
  color: black !important;
}
form label {
  display: block;
  margin-bottom: 5px;
}
form input[type=text],
form input[type=email],
form textarea {
  background-color: rgba(224, 175, 63, 0.5) !important;
  max-width: 100% !important;
  width: 100%;
  padding: 6px 10px;
  outline: none;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border: 0 !important;
}
form.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form.comment-form .comment-notes {
  display: none;
}
form.comment-form p:not(.stars) {
  flex: 0 0 100%;
  margin: 0;
}
form.comment-form p:not(.stars) textarea {
  width: 100%;
}
form.comment-form p:not(.stars).comment-form-author,
form.comment-form p:not(.stars).comment-form-email,
form.comment-form p:not(.stars).comment-form-url {
  flex: 0 0 calc(33.333% - 18px);
}
form.comment-form .form-submit input[type=submit] {
  padding: 10px 15px;
}
.wp-block-latest-posts {
  list-style: none;
  padding-inline-start: 0;
}
.wp-block-latest-posts li {
  text-align: left;
  width: 340px;
  background: white;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 2vh;
}
.wp-block-latest-posts li img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.wp-block-latest-posts li a {
  font-size: 1.2em;
  text-align: left;
  text-decoration: none;
  color: #e0af3e;
  width: 100%;
}
@media all and (min-width: calc(999px)) {
  .wp-block-latest-posts {
    /* NOT SMARTPHONE */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
}
@media all and (max-width: 999px) {
  .wp-block-latest-posts {
    /* SMARTPHONES */
  }
  .wp-block-latest-posts li {
    width: 100%;
  }
  .wp-block-latest-posts li img {
    width: 100%;
  }
}
.masonry {
  column-count: 3;
  column-gap: 15px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}
.masonry > div {
  width: 100%;
  display: inline-block;
  margin: 6px;
  position: relative;
  cursor: pointer;
}
.masonry > div .masonry-title {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  width: auto;
  height: auto;
  background: rgba(224, 175, 62, 0.9);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.masonry > div .masonry-title h2 {
  font-family: 'EB Garamond', serif;
  font-size: 3em;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 0px;
}
.masonry > div .masonry-title p {
  color: black;
  margin-top: 5px;
  font-size: 0.9em;
  font-weight: 600;
}
.masonry > div:hover .masonry-title {
  opacity: 1;
}
.masonry > div img {
  width: 100%;
  height: auto;
}
.masonry.animated > div {
  opacity: 0;
  transition: all 2s;
}
.single .masonry {
  column-count: 2;
}
/*@media only screen and (min-width: 1366px) {
    
}
@media only screen and (max-width: 1365px) and (min-width: 1024px) { 
    
}
@media only screen and (max-width: 1023px) and (min-width: 768px) { 
    
}*/
/*--------------*/
@media all and (min-width: 1720px) {
  .masonry-2 {
    column-count: 3;
  }
  .single .masonry {
    column-count: 2;
  }
  .wp-block-latest-posts li {
    width: calc(25% - 0.9375em) !important;
  }
}
@media all and (min-width: 1500px) and (max-width: 1720px) {
  .masonry-2 {
    column-count: 3;
  }
  .single .masonry {
    column-count: 2;
  }
  .with-margin,
  article.with-margin {
    padding-left: 15%;
    padding-right: 15%;
  }
  .gallery_wrapper {
    margin-left: 15%;
    margin-right: 15%;
  }
  ul.wp-block-post-template {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media all and (min-width: 1366px) and (max-width: 1500px) {
  .masonry {
    column-count: 3;
  }
  .single .masonry {
    column-count: 2;
  }
  .with-margin,
  article.with-margin {
    padding-left: 12%;
    padding-right: 12%;
  }
  .gallery_wrapper {
    margin-left: 12%;
    margin-right: 12%;
  }
  ul.wp-block-post-template {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media all and (min-width: 1200px) and (max-width: 1366px) {
  .masonry {
    column-count: 3;
  }
  .single .masonry {
    column-count: 2;
  }
  .with-margin,
  article.with-margin {
    padding-left: 12%;
    padding-right: 12%;
  }
  .gallery_wrapper {
    margin-left: 12%;
    margin-right: 12%;
  }
  ul.wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media all and (min-width: 999px) and (max-width: 1200px) {
  .masonry {
    column-count: 2;
  }
  .with-margin,
  article.with-margin {
    padding-left: 12%;
    padding-right: 12%;
  }
  .gallery_wrapper {
    margin-left: 12%;
    margin-right: 12%;
  }
  ul.wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media only screen and (max-width: 999px) {
  .masonry {
    column-count: 1;
  }
  .masonry > div {
    margin: 10px 0;
  }
  .single .masonry {
    column-count: 1;
  }
  .with-margin,
  article.with-margin {
    padding-left: 6%;
    padding-right: 6%;
  }
  .gallery_wrapper {
    margin-left: 6%;
    margin-right: 6%;
  }
  .m-order-2 {
    order: 2;
  }
  header figure#mp-logo {
    margin-left: 25px;
    margin-top: 30px;
  }
  header div#hamburger-wrapper {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    overflow: hidden;
  }
  header div#hamburger-wrapper div#hamburger-menu {
    cursor: pointer;
    width: 40px;
    overflow: hidden;
  }
  header div#hamburger-wrapper div#hamburger-menu span {
    width: 16px;
    height: 16px;
    background-color: #DDD;
    float: left;
    margin: 2px;
    display: block;
  }
  header .header-col p.has-text-align-center.has-small-font-size {
    font-size: 10px !important;
  }
  header .header-col:last-child {
    display: none;
  }
  footer {
    /* SMARTPHONES */
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
  }
  figure.wp-block-image {
    margin-bottom: 30px;
  }
  ul.wp-block-post-template {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
/*# sourceMappingURL=./style.css.map */