@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap");

:root {
  --white: #f5eae8;
  --black: rgba(0, 0, 0, 0.5);
  --orange: #fcb900;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth !important;
}

body {
  /* not mobile first, just the BG img mbilefirst */
  background-image: url("https://schillingheni.hu/images/mobileBG.jpg");
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: Source Sans Pro;
  font-weight: 300;
  letter-spacing: 1px;
}

/* free privacy policy */
.freeprivacypolicy-com---nb .cc-nb-main-container {
  padding: 0.5rem !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree {
  color: rgb(23, 23, 23);
  background-color: var(--orange);
}
.freeprivacypolicy-com---palette-light .cc-nb-reject {
  background-color: rgba(0, 0, 0, 0.84);
}

#javitott_BG {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  display: none;
}
@media screen and (min-width: 481px) {
  #javitott_BG {
    display: block !important;
  }
}
/* general settings for content width */
.container {
  max-width: 1300px;
  margin: 0 auto;
}
header {
  height: 100vh;
}
#mobileBG {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
  display: none;
}
@media (max-width: 480px) {
  #mobileBG {
    display: block;
  }
}
/* ********************************** ONLY DESKTOP NAV ************************************** */
#onlyDesktopNav {
  width: 100vw;
  background: white;
  font-weight: 300;
  overflow: hidden;
}

#onlyDesktopNav a {
  padding-right: 15px;
}

#onlyDesktopNav .container {
  width: 100vw;
  height: 30px;
  background: white !important;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#onlyDesktopNav .container div:nth-child(1) {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: left;
  width: 80%;
}

#onlyDesktopNav .container div:nth-child(1) a {
  text-decoration: none;
  color: black !important;
}

.emailBlackIcon,
.phoneBlackIcon {
  padding-left: 20px;
}

#onlyDesktopNav .container div:nth-child(2) {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: right;
  width: 20%;
}

.fa-map-marker,
.fa-envelope-o,
.fa-phone {
  padding-right: 5px;
}
.fa-facebook-official {
  color: #2559af;
  margin-top: 2px;
}

.facebook-a-href,
.instagram-a-href {
  padding-right: 5px !important;
}

.fa-instagram {
  color: #e70079;
  margin-top: 2px;
}
/* *********************************** NAVBAR *********************************************** */
header nav {
  width: 100%;
  height: 80px;
  background: var(--orange);
  z-index: 2000;
  position: fixed;
  top: 30px;
  transition: 500ms;
}
/* sticky navbar class - working with javascript */
.stickyNavbar {
  position: fixed;
  top: 0;
  transition: 500ms;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: black;
  margin-left: 20px;
  padding: 5px;
  font-size: 20px;
  font-family: Source Sans Pro;
  transition: 400ms;
}

nav .container {
  display: flex;
  justify-content: space-between;
}
nav img {
  /* logo */
  width: 70px;
  height: auto;
  z-index: 9999;
  margin-top: 5px;
  margin-left: -5px;
}
/* ********************************** ANIMATED BAR ICON ************************************* */
#bar-icon {
  width: 35px;
  height: 28px;
  position: relative;
  margin-top: 16px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none; /* on desktop */
  z-index: 9999;
}

#bar-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#bar-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#bar-icon span:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}

#bar-icon span:nth-child(3) {
  top: 24px;
  transform-origin: left center;
}

#bar-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 5px;
}

#bar-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
  left: -5px;
}

#bar-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
  left: 5px;
}
/* ************************************** MOBILE MENU *************************************** */
#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 0;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 300ms;
  z-index: 1000;
  padding-top: 30px;
}

.stickyMobileMenu {
  width: 100% !important;
}

#mobileMenu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

#mobileMenu ul a {
  text-decoration: none;
  color: black;
  font-weight: 300;
  line-height: 2;
  font-size: 24px;
}
/* ************************************ HERO ************************************************ */
header #hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#hero h1 {
  font-family: Playfair Display;
  color: var(--white);
  font-size: 72px;
  letter-spacing: 3px;
  /* opacity: 0; */
  /* animation: 1s fadeIn 1s forwards; */
}

#hero p {
  font-family: Source Sans Pro;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 50px;
  /* opacity: 0; */
  /* animation: 1s fadeIn 2s forwards; */
}

#hero button {
  width: 220px;
  height: 60px;
  background: var(--white);
  font-family: Playfair Display;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  border: 3px solid #fcb900;
  border-radius: 50px;
  margin: 10px;
  /* opacity: 0; */
  /* animation: 1s fadeIn 3s forwards; */
  border: 3px solid var(--white);
  transition: 300ms;
  cursor: pointer;
}

#hero a:nth-child(2) button {
  background: var(--orange);
  border: 3px solid var(--orange);
  /* opacity: 0; */
  /* animation: 1s fadeIn 3s forwards; */
}

/* @keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */
/* ************************************** ABOUT ME ****************************************** */
#aboutMe {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 80px;
}

#aboutMe div {
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
}

#aboutMe p {
  color: black;
  font-family: Source Sans Pro;
  /* font-size: 16px; */
  font-size: 1.2em;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 1px;
  /* text-align: justify; */
  text-align: left;
  padding: 0;
}
/* universal little titles */
.littleTitleOrange {
  color: var(--orange);
  font-family: Playfair Display;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.littleTitleDark {
  color: black;
  font-family: Playfair Display;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.littleTitleOrange:before,
.littleTitleOrange:after {
  content: "";
  display: inline-block;
  margin: auto 10px 8px;
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.littleTitleDark:before,
.littleTitleDark:after {
  content: "";
  display: inline-block;
  margin: auto 10px 8px;
  width: 22px;
  height: 2px;
  background: black;
}

.longerLineDark:before,
.longerLineDark:after {
  content: "";
  display: inline-block;
  margin: auto 0 50px;
  width: 60px;
  height: 2px;
}
/* ****************************************** SERVICES ************************************** */
#services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
  background: var(--black);
  /* padding-bottom: 50px; */
  padding-bottom: 80px;
  padding-top: 30px;
}

.servicesAndCosts {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.servicesAndCosts div {
  display: flex;
  flex-direction: row;
  border-bottom: 1px dotted var(--orange);
  justify-content: space-between;
}

#services p {
  color: var(--white);
  /* new font size */
  font-size: 1.1em;
}
#services span {
  color: var(--orange);
  padding-left: 10px;
  /* new font size */
  font-size: 1.1em;
}

#services .littleFont {
  font-size: 12px;
  color: var(--white);
  padding-left: 0;
}

.empty-row {
  border-bottom: none !important;
}
/* ************************************** GALERY ******************************************** */
#galery {
  margin: 0px auto 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 60px;
}

.mySlides {
  display: none;
}

.slideshow-container img {
  vertical-align: middle;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.dots {
  margin-bottom: 20px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 1px;
  background-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active,
.dot:hover {
  background-color: var(--orange);
}
/* ********************************** new gallery with swiper ********************************* */
#newGalery {
  /* margin: 0px auto 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 60px; */
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

#newGalery .swiper {
  max-width: 500px;
}

#newGalery .swiper-button-prev,
#newGalery .swiper-button-next {
  color: var(--orange);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  width: auto;
  height: auto;
}

#newGalery .swiper-pagination-bullet {
  background: var(--orange);
}

/* ********************************** testimonials 2 ********************************* */
#testimonials2 {
  background: var(--orange);
  height: auto;
  padding-top: 50px;
  padding-bottom: 100px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#testimonials2 .container {
  height: auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 270px; /* ez lehet még állítani, ha nem fér ki jól a szöveg */
  transition: 300ms;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

#testimonials2 .container #slidingTestimonials {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: auto;
  width: 500%;
  display: flex;
  flex-direction: row;
  background: var(--white);
  background: var(--orange);
  transition: 300ms;
}

#testimonials2 .container #slidingTestimonials div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
  background: red;
  background: var(--white);
  border-radius: 10px;
}

#testimonials2 .container #slidingTestimonials .stars-div {
  display: flex !important;
  flex-direction: row !important;
  box-shadow: none;
  margin: 0.5em auto;
}

#testimonials2 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#testimonials2 h1 {
  padding-bottom: 50px;
}

#testimonials2 p {
  max-width: 800px;
  padding-left: 15px;
  padding-right: 15px;
  color: black;
  font-size: 1.1em;
}

#testimonials2 span {
  padding-top: 30px;
  color: black;
}

.fa-star {
  color: var(--orange);
}

/* ********************************** testimonials new with swiper ********************************* */
#testimonialsNew {
  /* width: 100vw; */
  text-align: center;
  background: var(--orange);
  padding-bottom: 60px;
  padding-top: 60px;
}

#testimonialsNew .swiper-container-2 {
  overflow: hidden;
}

#testimonialsNew .swiper-slide {
  background: var(--white);
  padding: 2em;
  border-radius: 10px;
}

#testimonialsNew img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#testimonialsNew p {
  padding: 0.8em;
}

/* #testimonialsNew .swiper-slide {
} */

@media only screen and (min-width: 768px) {
  #testimonialsNew .swiper-slide {
    width: calc(100% / 2 - 20px);
  }
}

@media only screen and (min-width: 992px) {
  #testimonialsNew .swiper-slide {
    width: calc(100% / 3 - 20px);
  }
}

#testimonialsNew .swiper-slide:last-child {
  margin-right: 0;
}
/* #testimonialsNew {
  background: var(--orange);
  height: auto;
  padding-top: 50px;
  padding-bottom: 100px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
} */

/* #testimonialsNew .container {
  height: auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 270px; /* ez lehet még állítani, ha nem fér ki jól a szöveg */
/* transition: 300ms;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
} */

/* #testimonialsNew .container #slidingTestimonials {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: auto;
  width: 500%;
  display: flex;
  flex-direction: row;
  background: var(--white);
  background: var(--orange);
  transition: 300ms;
} */

/* #testimonialsNew .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
  background: red;
  background: var(--white);
  border-radius: 10px;
}

#testimonialsNew .stars-div {
  display: flex !important;
  flex-direction: row !important;
  box-shadow: none;
  margin: 0.5em auto;
}

#testimonialsNew img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#testimonialsNew h1 {
  padding-bottom: 50px;
}

#testimonialsNew p {
  max-width: 800px;
  padding-left: 15px;
  padding-right: 15px;
  color: black;
  font-size: 1.1em;
}

#testimonialsNew span {
  padding-top: 30px;
  color: black;
}

.fa-star {
  color: var(--orange);
} */
/* ********************************** QUESTIONS-AND-ANSWERS ********************************* */
#frequentlyAskedQuestions {
  margin-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  height: auto;
}

#frequentlyAskedQuestions p {
  color: var(--white);
  /* new font size */
  font-size: 1.1em;
}

.questionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--white);
  border-bottom: 1px solid grey;
}

.questionIcon {
  position: relative;
  width: 20px;
  height: 20px;
}
.questionIcon1part {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 13px;
  height: 3px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(-45deg);
  transition: 300ms;
}

.questionIcon2part {
  position: absolute;
  top: 12px;
  left: 3px;
  width: 13px;
  height: 3px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(45deg);
  transition: 300ms;
}

.questionIcon1partAnimate {
  position: absolute;
  top: 9px;
  left: 0;
  width: 22px;
  height: 3px;
  border-radius: 1px;
  transition: 300ms;
}
.questionIcon2partAnimate {
  position: absolute;
  top: 9px;
  left: 0;
  width: 22px;
  height: 3px;
  border-radius: 1px;
  transition: 300ms;
}

.question {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0 10px 0;
}

.answer {
  height: 0px;
  overflow: hidden;
  transition: 300ms;
  animation-timing-function: ease-out;
}

.answerActive {
  height: 50px;
  transition: 300ms;
  animation-timing-function: ease-out;
}

.answer p {
  padding: 10px 0 10px 0;
}
#frequentlyAskedQuestions img {
  margin: 80px auto 50px;
}
/* ************************************* YOUTUBE ******************************************** */
#youtube {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 80px;
}
.youtube-video {
  width: 600px;
  height: 400px;
}
@media (max-width: 480px) {
  .youtube-video {
    width: 100%;
    height: 230px !important;
  }
}
/* ************************************* FOOTER ******************************************** */
footer {
  display: flex;
  flex-direction: column;
  background: var(--orange);
  padding-top: 70px;
  border-top: 1px solid var(--orange);
  /* new font size */
  font-size: 1.1em;
}

footer .footer-contact-infos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--black);
  width: 100%;
  max-width: 1000px;
  padding-bottom: 60px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  /* background: red; */
  line-height: 1.5;
}

.contact-links a,
p {
  text-decoration: none;
  color: black;
}

footer .opening {
  /* background: blue; */
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

.company-copyright {
  margin: 30px auto;
  text-align: center;
}
