@import url("https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Pacifico&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  overflow-y: hidden;
  overflow-x: hidden;
}

html {
  font-size: 10px;
}

.mouse-pointer {
  cursor: pointer;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: rgb(185, 185, 185);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

h2 {
  text-align: center;
  font-size: 2.3rem;
  color: white;
  text-transform: capitalize;
  font-family: "oswald";
  font-weight: 500;
  letter-spacing: 1px;
}

/* ------------------------- MENU--------------------------- */

nav {
  background: black;
  position: fixed;
  width: 100%;
  border-bottom: 2px solid goldenrod;
  z-index: 100;
}

ul {
  list-style: none;
}

.menu a {
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: whitesmoke;
  transition: 0.2s;
  letter-spacing: 1px;
}

.logo a:hover,
.toggle a:hover {
  border-bottom: none;
}

.menu li {
  font-size: 16px;
  white-space: nowrap;
}

.toggle a {
  font-size: 20px;
}

.button.secondary {
  border-bottom: 1px #444 solid;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 3vw;
}

.toggle {
  order: 1;
}
.item {
  width: 100%;
  text-align: center;
  order: 2;
  display: none;
}

.item.active {
  display: block;
}

.mkdf-iwt-text {
  width: 290px;
}

@media all and (min-width: 900px) {
  .item {
    display: block;
    width: auto;
  }

  .toggle {
    display: none;
  }

  .logo {
    order: 0;
    flex: 1;
  }

  .item {
    order: 1;
  }

  .menu li {
    padding: 15px 10px;
  }
}

header {
  display: block;
  position: relative;
  top: 25px;
}

@media only screen and (min-width: 430px) {
  header {
    top: 15px;
    height: 120vh;
  }
}

@media only screen and (min-width: 430px) {
  header {
    top: 30px;
    height: 80vh;
  }
}

@media only screen and (min-width: 870px) {
  header {
    top: 65px;
  }
}

#logo-header {
  max-width: 200px;
  padding: 0px;
}

@media screen and (max-width: 400px) {
  .home {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 500px) and (min-height: 800px) {
  .home {
    margin-top: -70px;
  }
}

@media only screen and (min-height: 1000px) {
  .home {
    margin-top: -70px;
  }
}

/* ------------------------- HOME --------------------------- */

.home {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  z-index: -10;
  margin-bottom: -100px;
}

.description {
  justify-content: center;
  text-align: center;
}

.home h1 {
  text-align: center;
  font-size: 7.8vh;
  color: black;
  font-weight: 500;
  text-shadow: 1px 1px 1px goldenrod;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home h2 {
  text-align: center;
  font-size: 4.5vh;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: goldenrod;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.699);
}

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

@media only screen and (min-width: 650px) {
  .flora-title {
    padding-right: 36px;
  }
}

/* ------------------------- ABOUT US -------------------------- */

.about-us {
  border: rgba(197, 157, 95, 0.8) 60px solid;
}

.about-us-section {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  font-size: larger;
}

@media screen and (max-width: 500px) {
  .about-us {
    border: rgba(197, 157, 95, 0.8) 20px solid;
  }
}

/* ------------------------- SERVICES--------------------------- */
.main {
  display: flex;
  flex-direction: column;
}

.services-title {
  color: #000;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
}

.section-title {
  margin-top: 30px;
  margin-bottom: 10px;
}

.photos {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-content: space-around;
  justify-content: space-around;
  flex-wrap: wrap;
}

.photos > div {
  flex-basis: 80%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 2vh;
}

div > h2.text {
  font-family: "oswald", sans-serif;
  color: white;
  letter-spacing: 1.5px;
  text-shadow: 0 0 4px black;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 2.7rem;
  padding: 2vh 0;
}

.photos > div > img {
  width: 100%;
}

@media (min-width: 480px) {
  .photos > div {
    flex-basis: 40%;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

  .photos > div {
    flex-basis: 30%;
  }

  div > h2.text {
    font-size: 2rem;
  }
}

/* PRICE LIST */

.price-button-titles {
  font-size: 50px;
  padding-bottom: 15px;
  text-align: center;
}

@media only screen and (min-width: 1500px) {
  .price-button-descs {
    margin-top: -5px;
  }
  .price-button-titles {
    margin-top: -20px;
  }
  #price-button-title-2,
  #price-button-title-4 {
    margin-top: 20px;
  }
  #price-button-title-1,
  #price-button-title-3,
  #price-button-title-5 {
    margin-top: 1px;
  }
}

@media only screen and (max-width: 1499px) {
  .price-button-titles {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .price-button-titles {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 770px) {
  .price-button-descs {
    font-size: 11px;
    font-weight: 400;
    width: 14vw;
  }
}
@media only screen and (max-width: 999px) {
  .price-button-titles {
    font-size: 20px;
    font-weight: bold;
  }
}
@media only screen and (max-width: 999px) and (min-width: 769px) {
  .price-button-descs {
    font-size: 9px;
    font-weight: 400;
    width: 12vw;
  }
}
@media only screen and (max-width: 768px) {
  .price-button-titles {
    font-size: 40px;
  }
}

.whole-contact-bit {
  padding: 30px 0px;
}

@media screen and (max-width: 992px) {
  .whole-contact-bit {
    max-width: 83.33%;
    left: 8.33%;
  }
}

.my-mkdf-st-title {
  text-align: right;
}

.whole-price-list {
  max-height: fit-content;
}

.mkdf-row-grid-section-wrapper {
  background-color: #fff;
  color: #000;
  font-family: Montserrat, sans-serif;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.75em;
  text-transform: none;
}

.mkdf-row-grid-section-wrapper.services {
  background-color: #f7f8f9;
}

#price-section-2,
#price-section-3,
#price-section-4,
#price-section-5 {
  display: none;
}

.mkdf-bsl-item-description-holder {
  padding-bottom: 5px;
}

@media screen and (max-width: 769px) {
  .price-list-height {
    max-height: 105px;
  }
  #price-button-title-1,
  #price-button-title-3,
  #price-button-title-5 {
    font-size: 25px;
    margin-top: -28px;
  }
  #price-button-title-2,
  #price-button-title-4 {
    font-size: 30px;
    margin-top: -12px;
  }
  .price-button-descs {
    font-size: 12px;
    margin-top: -18px;
  }
}

/* ------------------------- FOOTER--------------------------- */

footer {
  background-color: #000;
  position: relative;
  width: 100vw;
  height: 80px;
  bottom: 0;
}

footer p {
  color: rgb(237, 220, 178);
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

#logo {
  max-width: 100px;
}

.footer-container {
  color: rgba(0, 0, 0, 0.397);
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  bottom: 0;
  border-top: solid 0.5px goldenrod;
}
.footer-container .icons {
  font-size: 30px;
  display: flex;
  gap: 10px;
}

.footer-name-ya {
  color: white;
}

footer a {
  text-decoration: none;
}

/* CONTACT INFO */

.days {
  display: inline;
}

.times {
  display: inline;
  margin-left: 20px;
  text-align: right;
  width: 70px;
}

/* Swiper Slider Styles */
.swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slide-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}

.slide-content h2 {
  font-size: 8rem;
  text-shadow: 1px 1px 2px pink;
}

.slide-content h1 {
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
  letter-spacing: 1rem;
}

.slide-content p {
  font-size: 1.8rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
  text-transform: uppercase;
}

.slide-content h2.slide-title {
  color: #c59d5f;
  font-family: quentinregular;
  text-align: center;
}

.slide-content h1.slide-heading {
  color: whitesmoke;
  font-family: "Montserrat";
  text-transform: uppercase;
}

.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content p {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 4rem;
  }

  .slide-content h1 {
    font-size: 3.2rem;
  }

  .slide-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .slide-content {
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 4rem;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.5rem;
  }
}

/* Custom VC Shortcodes Styles */
.vc_custom_1592595460621 {
  padding-top: 75px !important;
  padding-bottom: 60px !important;
}

.vc_custom_1524129443256 {
  padding-top: 53px !important;
  padding-bottom: 170px !important;
}

.vc_custom_1524127395008 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.vc_custom_1524479032008 {
  padding-top: 50px !important;
  padding-bottom: 60px !important;
}

.vc_custom_1524129562170 {
  padding-top: 170px !important;
  padding-bottom: 132px !important;
}

.vc_custom_1522746379836 {
  padding-top: 92px !important;
  padding-bottom: 104px !important;
}

.vc_custom_1524727779274 {
  padding-top: 107px !important;
}

.vc_custom_1524740399390 {
  padding-top: 20px !important;
  padding-bottom: 95px !important;
}

.vc_custom_1524728614932 {
  padding-top: 100px !important;
  padding-bottom: 101px !important;
}

.vc_custom_1522769004286 {
  padding-top: 150px !important;
  padding-bottom: 85px !important;
}

/* MKDF Elements Holder Responsive Styles */
@media only screen and (min-width: 1367px) and (max-width: 1600px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5607 {
    padding: 0px 20px 106px 80px !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5607 {
    padding: 0px 20px 108px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-3182 {
    padding: 43px 55% 65px 0px !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5607 {
    padding: 35px 190px 0px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-5636 {
    padding: 69px 180px 110px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-3182 {
    padding: 43px 50% 55px 0px !important;
  }

  #mkdf-st-background-text-839 {
    font-size: 180px !important;
    left: -96px !important;
    top: 80px !important;
  }
}

@media only screen and (min-width: 681px) and (max-width: 768px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5607 {
    padding: 35px 80px 0px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-5636 {
    padding: 69px 108px 110px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-3182 {
    padding: 43px 50% 55px 0px !important;
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5607 {
    padding: 35px 0px 0px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-5636 {
    padding: 69px 10px 110px !important;
  }

  .mkdf-eh-item-content.mkdf-eh-custom-3182 {
    padding: 43px 0% 55px 0px !important;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1600px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5636 {
    padding: 110px 50px !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .mkdf-eh-item-content.mkdf-eh-custom-5636 {
    padding: 110px 50px !important;
  }
}
