:root {
  --primary: rgba(179, 140, 133, 1);
  --primary-color-accent: rgba(179, 140, 133, 0.7);
  --primary-color-transp-90: rgba(179, 140, 133, 0.9);
  --white: #fff;
  --dark: #000;
}

@font-face {
  font-family: 'Futura-Now';
  src: url('/font/Futura-Now-Headline.ttf'); 
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
	margin: 0 auto;
	width: 100%;
	padding: 0;
	/* max-width: 30rem;*/
	color: var(--white);
	position: relative;
	font-family: 'Futura-Now', sans-serif; 
}

section {
	margin: 0 auto;
	max-width: 30rem;
	width: 100%;
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
}

.wrapper {
	background: rgb(249, 250, 251);
    -webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
	position: relative;
	border: 1px solid var(--white);
}

@media only screen and (max-width: 420px) {
  body {
		margin-top: 0px;
		margin-bottom: 0px;
}
}

#modal, #menu {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 0;
  -webkit-transition: top 0.2s ease-out, opacity 0.1s ease-out;
  transition: top 0.2s ease-out, opacity 0.1s ease-out;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#closeModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  margin: 1rem 1rem 0 0;
}
#close {
  padding: 0.75rem;
  cursor: pointer;
  line-height: 0;
}
.icon {
  width: 1.5rem;
  height: 1.5rem;
}
#modalView,
#copyView,
#qrView,
#menuView,
#keyInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#copyView p,
#keyInfo p {
  margin: 1rem 2em 2rem;
  text-align: center;
}
#copyURL,
#dlKey {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  outline: none;
  cursor: pointer;
}
#copyURL span,
#dlKey span {
  margin-left: 0.5rem;
}
#qrView h2,
#qrView p,
#menuView h2,
#menuView p {
  margin: 0 2rem 0.5rem;
}
#qr {
  margin: 1rem 2rem 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 0.5rem;
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 6rem 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 0;
  flex-direction: column;
}
#logo {
  max-height: 6rem;
  text-align: center;
  color: gray;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#topActions {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
}
#topActions > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#topActions a {
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 100%;
  line-height: 0;
  margin-right: 1rem;
}
main {
  padding: 0rem;
}
.profile {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
}
.profile img {
  border-radius: 100%;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: -4.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  box-sizing: content-box;
  pointer-events: auto;
  user-select: none;
  margin-top: -6rem;
  /* z-index: 9999; */
}

img.slider {
  margin-top: 0;
}

.profile h2, .profile h3, .profile a {
	color:var(--primary);
} 

.profile a {
	font-weight: 600;
}

.profile a:hover {
	color:var(--primary-color-accent);
}

.bizaddr {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0px !important;
  padding: 0 1rem;
  color: var(--dark);
}

.bizaddr:hover {
  color: var(--primary);
}


#info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 4.5rem;
  line-height: 1.25;
  word-break: break-word;
}

.name {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}
.jobtitle {
  font-size: 1rem;
  margin: 0.25rem 0 0.25rem 0;
}
.desc,
.textC {
  font-size: 0.875rem;
  white-space: pre-line;
  line-height: 1.5;
  /* margin: 1rem; */
        margin: -2rem 1rem 1rem 1rem;
}
.textC {
  font-size: 1rem;
  margin: 2rem 1rem;
        margin: -2rem 1rem 1rem 1rem;
}
.actions {
	/*padding: 1rem;*/
	margin-top: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.actionsC {
  width: 33.33%;
  z-index: 1;
}
.actionBtn {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.actionBtn a {
  border-radius: 100%;
  padding: 0.75rem;
  line-height: 0;
  background-color: var(--primary);
}

.actionBtn a:hover {
  opacity: 0.6;
}

.actionBtn p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}
.secondary {
  margin-top: 1rem;
}
.secBtn {
  padding: 1rem;
}
a {
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
}
#vcard, .hazirend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  /* margin-top: 1.5rem; */
  margin-bottom: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  line-height: 0;
}

.hazirend {
  padding: 0.5rem 1.5rem;
}

#vcard .icon, .hazirend .icon  {
  margin-right: 0.5rem;
}
#vcard p, .hazirend p {
  margin: 0;
}
.attachments {
  /* margin-top: 1.5rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  margin: 3rem 1rem 1rem;
}
.content {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.content img {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.embedded {
  position: relative;
  padding-top: 56.25%;
  padding-bottom: 2%;
}
.embedded iframe {
  position: absolute;
  padding-bottom: 2%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.music,
.video {
  width: 100%;
}
.mediaC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
video {
  width: 100%;
}
.controls {
  /* padding: 2rem 1rem; */
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pd2 {
  padding: 2rem 1rem !important;
}
.prodInfo .desc {
  margin: -1rem 0 0;
}

.label {
  display: inline-block;
  font-size: 1rem;
  margin-top: 1rem;
  border-radius: 5rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
}
.label p {
  margin: 0;
}
.title {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
.mediaInfo {
  margin: 0;
}
.pCtrl,
.docDl {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
}
.docDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.seekBar {
  width: 100%;
  height: 0.5rem;
  margin-top: 2rem;
  border-radius: 5rem;
  background: #adb5bd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-bottom: 15px;
}
.playPause,
.dlBtn {
  margin: 2rem 0.5rem 0;
  padding: 0.75rem;
  border-radius: 5rem;
  line-height: 0;
  cursor: pointer;
}
.pause {
  display: none;
}
footer {
  padding: 1rem 1.5rem 2rem;
  font-size: 0.75rem;
}
footer a {
  text-decoration: underline;
  color: inherit;
}


.pronouns{display:block;font-size:.9rem;opacity:.8;font-weight:normal;margin:0 0 .5rem}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0rem 0rem;
  box-sizing: border-box;
  padding-bottom: 0;
  padding-bottom: 0
}


 .headerImgC {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 480px) {

 .headerImgC {
	background: none;
}

}

#cover {
  position: relative;
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 20rem;
  object-position: top center;
  object-fit: cover;
}
 
@media only screen and (min-width: 480px) {

#cover img {
	display: none;
}

}

#logo {
  max-height: 6rem;
  pointer-events: none;
  user-select: none;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
}


.cut {
	position:fixed; 
	bottom:-200px;
	right: 0;
}

.cut img {
	width: 400px;
}

@media (max-width: 1300px) {

.cut img {
	
	width: 300px;
}
	
}

@media only screen and (max-width: 1050px) {
  .cut {
	
	display:none;
}
}


.bglayer {
	position: fixed; 
	left: 0px; 
	z-index: -1; 
	top: 0;
}

.bglayer img {
	width: 1920px;
}

.bgleft {
	position:fixed; 
	z-index:-1;
	mix-blend-mode: luminosity;
	top: 0;
}

.bgleft.section-04 {
	left: -300px;
    top: -200px;
}

.bgleft.section-04 img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to right, rgba(0,0,0,1) 0, rgba(0,0,0,0) 45%);
}

.bgleft.section-05 {
	left: -600px;
    top: -200px;
}

.bgleft.section-05 img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to right, rgba(0,0,0,1) 0, rgba(0,0,0,0) 75%);
}

.section-01, .section-01-menu {
	position:fixed; 
	left: -500px;
	z-index:-1;
	top: 0;
}

@media only screen and (max-width: 1100px) {
  .section-01, .section-02, .section-03, .bgright, .bgleft, .bglayer, .bgleft.section-01 .bgleft.section-02, .bgleft.section-03, .bgleft.section-04, .bgleft.section-05, .bgleft.section-06 {
	display:none;
}
}


.section-02 {
	position: fixed; 
	left: 0px;
	top: 0;
}

.section-03 {
	position: fixed; 
	left: -800px;
	top: 0;
}

.bgright {
	position:fixed; 
	right: 0px;
	mix-blend-mode: luminosity;
	bottom: -10px;
}

.section-01, .section-02, .section-03 {
	z-index:-1;
}

.section-01-menu, .bgright {
	z-index:0;
}


.section-01 img, .section-01-menu img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to right, rgba(0,0,0,1) 0, rgba(0,0,0,0) 70%);
	/*width: 85vw;
	object-fit: cover;
	height: 55vw;*/
}

.section-02 img {
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
      mask-image: linear-gradient(to right, rgba(0,0,0,1) 0, rgba(0,0,0,0) 30%);
}

.section-03 img {
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
      mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%);
}


.bgright img {
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,0)));
      mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0, rgba(0,0,0,0) 100%);
}


.button {
	color:var(--white);
	background-color: var(--primary);
	width: 50%;
	padding: 1rem 1.5rem!important;
	border: 1px solid var(--primary);
	
}

.button:hover {
	color: var(--primary);
	opacity: 0.6;
	border: 1px solid var(--primary);
	width: 50%;
}

.headerImgText p {
	margin: 0;
	padding: 0;
	text-transform:uppercase;
	color: var(--white);
	letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
.headerImgText p {
	display:none
}
}

.price, .hazirend-class {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto;
	height: 100%;
	overflow: hidden;
	padding: 20px 0;
	background-attachment: fixed;
	background-position: center;
	background-size: auto;
	background-repeat: no-repeat;
  margin: 0;
  font-size: 1rem;
}


.hazirend-class {
  background-attachment: fixed;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 630px) {
.price, .hazirend-class {
	background-size: cover;
	
}
}

.price .icon, .hazirend-class .icon {
	width: 2.5rem;
	height: 2.5rem;
}

.table-name {
	text-align:left;
	width: 230px;
	vertical-align: text-top;
	text-transform: uppercase;
	padding: 5px;
}

.table-time {
	vertical-align: text-top;
	padding: 5px;
}

.table-price {
	text-align: right;
	width: 102px;
	vertical-align: text-top;
	padding: 5px;
}

.block {

}

.top {
	--offset: 50px;
	margin-top: calc(100vh + var(--offset));
}


.profile .profile-photo {
	/* background-image: url("/img/profil.jpg");*/
	background-size: contain;
	border-radius: 100%;
    pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 10rem;
	height: 10rem;
	border-radius: 100%;
	box-sizing: content-box;
	pointer-events: auto;
	margin-top: -6rem;
	transition: all 200ms ease 200ms;
}

.profile .profile-photo:hover {
	/*background-image: url("/img/profil-hover.jpg");*/
	
}


@media only screen and (max-width: 480px) {
.xs {
	display: none;
}
}

@media (min-width: 480px) and (max-width: 768px) {
.sm {
	display: none;
}
}

@media (min-width: 768px) {
.md {
	display: none;
}
}

.background-video {
	width: 550px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
}

.background-video::after {
    content: ""; // ::before and ::after both require content
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #eaee44, #33d0ff);
    opacity: .7;
}

/* Nav scrolling */

ul#nav-serialscrolling {
	list-style:none;
}

#nav-serialscrolling {
  position: fixed;
  top: 35%;
  left: 250px;
  /* width: 250px; */
  float: left;
  z-index: 1000;
}

@media (min-width: 1200px) and (max-width: 1300px) {
   #nav-serialscrolling {
	left: 150px;
}
}


@media (min-width: 1100px) and (max-width: 1200px) {
   #nav-serialscrolling {
	left: 50px;
}
}

@media only screen and (max-width: 1100px) {
   #nav-serialscrolling {
	display:none;
}
}

#nav-serialscrolling .sub-link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  transition: 300ms;
  text-transform: uppercase;
}

#nav-serialscrolling .sub-link:hover,
#nav-serialscrolling .sub-link.is-current {
  opacity: 1;
  color: var(--primary-color-accent);
}

#nav-serialscrolling .sub-link:before,
#nav-serialscrolling .sub-link:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: 300ms;
}

#nav-serialscrolling .sub-link:before {
  left: -30px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 1);
}

#nav-serialscrolling .sub-link:after {
  left: -23px;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color-accent);
  opacity: 0;
}

#nav-serialscrolling .sub-link.is-current:before {
  border-color: var(--primary-color-accent);
}

#nav-serialscrolling .sub-link.is-current:after {
  opacity: 1;
  background-color:
}

/* Currency */

.money::after {
    content:" Ft";
}

/* Floating share */

#floatingSocialShare {
	z-index: 1001;
}

#floatingSocialShare a {
	margin-bottom: 5px;
}

#floatingSocialShare .facebook, #floatingSocialShare .linkedin, #floatingSocialShare .twitter, #floatingSocialShare .viber, #floatingSocialShare .whatsapp {
    background-color: var(--primary)!important;
}
	
#floatingSocialShare .facebook:hover {
    background-color: #1877f2!important;
}

#floatingSocialShare .linkedin:hover {
    background-color: #0077b5!important;
}

#floatingSocialShare .twitter:hover {
    background-color: #1da1f2!important;
}

#floatingSocialShare .viber:hover {
    background-color: #665cac!important;
}

#floatingSocialShare .whatsapp:hover {
	background-color: #25d366!important;
}

.designimage {
	width: 100%; 
	max-height: 200px; 
	object-fit:cover; 
	object-position: center; 
	margin-top: 20px;
	-webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
	filter: grayscale(0.4);
}

p.text-01 {
  animation: scale-01 80000ms ease-in-out infinite;

}

@keyframes scale-01 {
  0% {
    transform: scale(1);
  }
  
  1% {
    transform: scale(1.2);
  }

  2% {
    transform: scale(1);
  }


  30% {
    transform: scale(1);
  }

  31% {
    transform: scale(1.2);
  }

  32% {
    transform: scale(1);
  }
 

  60% {
    transform: scale(1);
  }

  61% {
    transform: scale(1.2);
  }
  
  62% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}


p.text-02 {
  animation: scale-02 80000ms ease-in-out infinite;

}

@keyframes scale-02 {
  10% {
    transform: scale(1);
  }
  
  11% {
    transform: scale(1.2);
  }

  12% {
    transform: scale(1);
  }


  40% {
    transform: scale(1);
  }

  41% {
    transform: scale(1.2);
  }

  42% {
    transform: scale(1);
  }
 

  70% {
    transform: scale(1);
  }

  71% {
    transform: scale(1.2);
  }
  
  72% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}


p.text-03 {
  animation: scale-03 80000ms ease-in-out infinite;

}

@keyframes scale-03 {
  20% {
    transform: scale(1);
  }
  
  21% {
    transform: scale(1.2);
  }

  22% {
    transform: scale(1);
  }


  50% {
    transform: scale(1);
  }

  51% {
    transform: scale(1.2);
  }

  52% {
    transform: scale(1);
  }
 

  80% {
    transform: scale(1);
  }

  81% {
    transform: scale(1.2);
  }
  
  82% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}