/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: #101010;
  position: relative;
}

a {
  color: #7f6240;
}

a:hover {
  color: #5d482f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.text-gold {
  color: #7f6240!important;
}

/*--------------------------------------------------------------
# Signpost
--------------------------------------------------------------*/
.signpost {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background: rgba(0,0,0,.9);
}
.signpost.active {
  display: flex;
  z-index: 99999;
}
.signpost a {
  width: 200px;
  margin: 10px auto;
  text-align: center;
}
.signpost button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  padding: 2px 5px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  border: none!important;
  outline: none!important;
  background: none!important;
  color: #fff!important;
}
.signpost button:hover {
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #101010f0;
}

#preloader.hidden {
  display: none;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #7f6240;
  border-top-color: #101010;
  border-bottom-color: #101010;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-gold {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #7f6240;
  border-color: #7f6240;
}

.btn-gold:hover {
  background-color: #664e33;
  border-color: #5d482f;
  color: #fff!important;
}

.btn-gold-secondary {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: transparent;
  border-color: #7f6240;
}

.btn-gold-secondary:hover,
.btn-gold-secondary.active {
  background-color: #7f6240;
  border-color: #7f6240;
  color: #fff!important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled, #header.header-inner-pages {
  background: #00000080;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding-right: 45px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

#nav-menu a:hover, #nav-menu .active > a, #nav-menu li:hover > a {
  color: #7f6240;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  width: 25px;
  height: 25px;
  padding: 0;
  right: 20px;
  top: 22px;
  left: auto;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #000000cf;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  text-align: center;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #f1f1f1;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #7f6240;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 767px) {
  .nav-menu.buttons li {
    padding: 0 0 0 10px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fafafb;
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f5f9fc;
  color: #7f6240;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #7f6240;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.form h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  display: block;
}

.form p {
  color: #c1c1c1;
}

.form .bg-text {
  font-size: 220px;
  position: absolute;
  top: 10%;
  left: 5%;
  margin: auto;
  opacity: .03;
  line-height: 1.2;
}

.form .btn-gold {
  display: block;
  margin: 0 auto;
  font-size: 16px;
}

.form-group {
  display: block;
  margin-bottom: 32px;
}

.form-group small {
  color: #505050;
}

.radiolist {
  display:  flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 16px;
}

.radiolist label {
  cursor: pointer;
}

.radiolist label span {
  line-height: 24px;
  padding: 16px 32px;
  border: 2px solid #7f6240;
  background: transparent;
  color: #c1c1c1;
  border-radius: 6px;
  display: block;
}

.radiolist label input:checked + span {
  border: 2px solid #7f6240;
  background: #7f6240;
  color: #fff;
}

.radiolist label input {
  opacity: 0;
  position: absolute;
}

.form-label {
  color: #7f6240;
  font-size: 16px;
  display: block;
}

.form-label input,
.form-label textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
  color: #fff;
  background: #232323;
  border: 1px solid #232323;
  outline: none;
}

.form-label textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 110px;
  max-height: 110px;
}

.form-label input:focus,
.form-label textarea:focus {
  border-color: #7f6240;
}

.form-group.price-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 32px 0;
}

.form-group.price-wrapper label {
  width: 160px;
}

.form-group.price-wrapper label input {
  text-align: center;
}

.form-group.price-wrapper span {
  font-size: 28px;
  font-weight: 700;
  color: #7f6240;
}

.voucher-img {
  display: block;
  margin: 64px auto;
}

.voucher-img img {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  transform: rotate(-3deg);
  margin-bottom: 32px;
  -webkit-box-shadow: 0px 40px 60px -40px rgba(127, 98, 64, 0.7);
  -moz-box-shadow: 0px 40px 60px -40px rgba(127, 98, 64, 0.7);
  box-shadow: 0px 40px 60px -40px rgba(127, 98, 64, 0.7);
}

@media (max-width: 991px) {
  .radiolist label span {
    padding: 12px;
  }
}

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms {
  background: linear-gradient(#0c0d0ebd, #0c0d0ee6), url(../img/IMG_7406-1024x684.jpeg) fixed center center;
  background-size: cover;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.terms h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  display: block;
}

.terms p {
  color: #c1c1c1;
}

.terms .bg-text {
  font-size: 220px;
  position: absolute;
  top: 10%;
  left: 5%;
  margin: auto;
  opacity: .03;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Success
--------------------------------------------------------------*/
.success {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.success h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  display: block;
}

.success p {
  color: #c1c1c1;
}

.success .bg-text {
  font-size: 220px;
  position: absolute;
  top: 10%;
  left: 5%;
  margin: auto;
  opacity: .03;
  line-height: 1.2;
}

.qr-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 48px auto;
  line-height: 32px;
}

.qr-wrapper span {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .qr-wrapper {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #101010;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

#footer .bg-text {
  font-size: 220px;
  position: absolute;
  top: 5%;
  right: 5%;
  margin: auto;
  opacity: .06;
  line-height: 1;
}

#footer .footer-top {
  background: #101010;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #394047;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #7f6240;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5d482f;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #5d482f;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Christmas
--------------------------------------------------------------*/
#christmas {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/IMG_7406.jpeg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-y: scroll;
}
#christmas.active {
  display: block;
  z-index: 99999;
}
.book-section {
position: relative;
display: flex;
flex-direction: column;
align-content: space-around;
width: 100%;
height: 400px;
align-items: center;
text-align: center;
border-top: 4px solid #7f6240;
border-bottom: 4px solid #7f6240;
padding-bottom: 80px;
}
.book-section-btn {
height: 200px;
}
.book-section h2 {
z-index: 2;
margin: 80px auto 30px!important;
}
.snowflake {
color: #fff;
font-size: 1em;
font-family: Arial, sans-serif;
text-shadow: 0 0 5px #000;
}
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.snowflake:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.snowflake:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}

.christmas_page {
background: #000000e6;
padding: 30px 60px;
width: 1400px;
max-width: 100%;
margin: 0 auto;
}
.christmas_page_inner .logo_wrap {
display: block;
margin-bottom: 60px;
text-align: center;
position: relative;
}
.christmas_page_inner .logo_wrap:before {
  content: "";
  display: block;
  background: url(../img/christmas-tree.png);
  background-size: 100%;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 20px;
  left: -40px;
  filter: invert(1);
  transform: rotate(-15deg);
}
.christmas_page_inner .logo_wrap:after {
content: "";
  display: block;
  background: url(../img/christmas-ball.png);
  background-size: 100%;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 20px;
  right: -40px;
  filter: invert(1);
  transform: rotate(15deg);
}
.christmas_page_inner .logo_wrap img {
display: block;
margin: 0 auto;
width: 350px;
}
.christmas_page_inner h1 {
font-size: 4rem;
}
.christmas_page_inner > h2 {
margin: 50px auto 30px;
}
.voucher_variant {
  display: flex;
  flex-direction: row;
margin-bottom: 60px;
}
.voucher_variant_inner_left {
  display: block;
  width: 50%;
}
.voucher_variant_inner_right img {
  display: block;
  margin: 0 -60px 0 auto;
}
.voucher_variant_inner_right {
  display: block;
  width: 50%;
}

@media (max-width: 767px) {
  .book-section {
    background-attachment: scroll;
        padding: 0 10px;
  }
  .christmas_page {
    padding: 15px;
  }
  .christmas_page_inner .logo_wrap img {
    width: 50%;
  }
  .christmas_page_inner .logo_wrap:before {
    content: "";
    width: 60px;
    height: 60px;
    left: 10px;
  }
  .christmas_page_inner .logo_wrap:after {
    content: "";
    width: 60px;
    height: 60px;
    right: 10px;
  }
  .christmas_page_inner h1 {
    font-size: 2.5rem;
  }
  .voucher_variant {
    flex-direction: column;
  }
  .voucher_variant_inner_left, .voucher_variant_inner_right {
    width: 100%;
  }
  .voucher_variant_inner_right img {
    margin: 0 0 0 auto;
    position: relative;
    left: 15px;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
.d-mobile {
  display: none;
}
.d-desktop {
  display: block;
}
@media (max-width: 767px) {
  .bg-text {
    display: none!important;
  }
  .d-mobile {
    display: block;
  }
  .d-desktop {
    display: none;
  }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes shrinkCenter {
  0% {
      transform: scale(1) rotate(-3deg);
      opacity: 1;
  }
  100% {
      transform: scale(0) rotate(-3deg);
      opacity: 0;
  }
}

.shrink-center {
  animation: shrinkCenter 0.15s forwards;
}

@keyframes expandCenter {
  0% {
      transform: scale(0) rotate(-3deg);
      opacity: 0;
  }
  100% {
      transform: scale(1) rotate(-3deg);
      opacity: 1;
  }
}

.expand-center {
  animation: expandCenter 0.15s forwards;
}
