@charset "UTF-8";
@font-face {
  font-family: wk;
  src: url("../fonts/wk.html") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: maharlika;
  src: url("../fonts/maharlika.html") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Old Standard TT";
  src: url("../fonts/OldStandardTT-Regular.html") format("woff2"), url("../fonts/OldStandardTT-Regular-2.html") format("woff"), url("../fonts/OldStandardTT-Regular-3.html") format("truetype");

  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/Montserrat-Regular.html") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Quattrocento", serif;
  src: url("../fonts/Quattrocento-Regular.html") format("opentype");
  src: url("../fonts/Quattrocento-Bold.html") format("opentype");
  font-weight: 100 1000;
  font-display: swap;
}
/* @font-face {
  font-family: "Montserrat", sans-serif;
  src: url();
}

@font-face {
  font-family: "Old Standard TT", serif;
  src: url();
}

@font-face {
  font-family: "Quattrocento", serif;
  src: url();
}

@font-face {
  font-family: "Raleway", sans-serif;
  src: url();
}
 */

/*General BEGIN*/
:root {
  --script-font: "wk";
  /*Colors*/
  --primary-grey: #333;
  --secondary-grey: #858585;

  --primary-white: #fff;
  --secondary-white: #f3f3f3;

  --primary-color: #efe8e1;
  --secondary-color: #e8b899;
  --third-color: #b19374;
  --primary-dark: #a08268;

  font-size: 16px;
}
html {
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  color: var(--primary-grey);
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 22px;
  }
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
}

a {
  color: var(--primary-grey);
}

a,
a:hover {
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

@media only screen and (min-width: 480px) {
  a:hover {
    color: var(--secondary-grey);
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
}

a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

hr {
  margin-bottom: 2rem;
}

h1 {
  font-family: "Old Standard TT", serif;
  font-weight: 500;
  font-size: 1.6rem;
}
h2 {
  font-family: "Old Standard TT", serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

h4 {
  font-size: calc(1rem + 0.3vw);
}
p {
  font-size: 1.1rem;
  line-height: 1.7rem;
}
@media (min-width: 480px) {
  /*Mobile*/
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  /*Tablet*/
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

body {
  margin: 0;
  padding: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  font-family: "Quattrocento", serif;
  line-height: 1.3;
  background-color: var(--secondary-white);
}

.hide {
  display: none !important;
}

.show {
  display: inline-block;
}

.container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 2000px) {
  .container {
    max-width: 120rem;
  }
}

.text-center {
  text-align: center;
}
.hide-iframe {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1px;
  height: 1px;
  display: none;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.flex-jc-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-jc-s {
  justify-content: flex-start;
}
.flex-jc-e {
  justify-content: flex-end;
}
.flex-ai-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-as-c {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.flex-js-s {
  -ms-grid-column-align: start;
  justify-self: start;
}

.flex-js-e {
  -ms-grid-column-align: end;
  justify-self: end;
}

.grid {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 300px) and (max-width: 820px) {
  /*Tablet*/
  .hide-for-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 821px) {
  /*Desktop*/
  .hide-for-desktop {
    display: none !important;
  }
}

/*General END*/

/*Padding & Margin*/
.mx-30 {
  margin: 1rem 0;
}
.mx-top-30 {
  margin-top: 1rem;
}
.py-30 {
  padding: 0 1rem;
}
.w-50 {
  width: 50%;
}
.w-100 {
  width: 100%;
}

.img-fluid {
  width: 100%;
  object-fit: cover;
}

.img-shadow {
  box-shadow: -1vw 1vw var(--primary-color);
}
/*Button Styles BEGIN*/
.btn {
  text-align: center;
  margin-top: 2rem;
}

.btn a {
  display: inline-block;
  margin: 0 auto;
  padding: 13px 50px;
  border: 1px solid var(--primary-grey);
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1rem;
  font-size: 1rem;
  color: var(--primary-grey);
  -webkit-transition: ease-out 300ms;
  transition: ease-out 300ms;
  font-weight: 300;
  text-transform: uppercase;
}

.btn a:hover {
  background-color: var(--secondary-grey);
  border-color: var(--secondary-grey);
  color: var(--primary-white);
  -webkit-transition: ease-in 300ms;
  transition: ease-in 300ms;
}

@media only screen and (max-width: 820px) {
  .btn {
    margin-top: 1rem;
  }
  .btn a {
    font-size: 0.8rem;
    padding: 10px 30px;
  }
}
/*Button Styles END*/

/*Utilities BEGIN*/
.v-seperator {
  width: 1px;
  height: 40px;
  background: var(--primary-grey);
  display: block;
  margin: 2vw auto;
}
/*Utilities END*/

/*Hamburger Menu Animation BEGIN*/
@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 300ms ease-in-out forwards;
  animation: fade-in 300ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fade-out 300ms ease-in-out forwards;
  animation: fade-out 300ms ease-in-out forwards;
}

/*Hamburger Menu Animation END*/
/*Hamburger Menu Style BEGIN*/
.header.open .header__hamburger > span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header.open .header__hamburger > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__hamburger > span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .overlay {
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  position: fixed;
  width: 80%;
  z-index: 200;
  margin-top: 79px;
  border-top: 1px solid var(--primary-grey);
  right: 0;
  border-bottom-left-radius: 20px;
}

@media (min-width: null) {
  .header .overlay {
    width: 50%;
  }
}

.header .overlay .toggle__menu {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 50px 60px;
}

.header .overlay .toggle__menu #uberuns div {
  margin: 10px 0;
}

.header .overlay .toggle__menu #uberuns .uberuns__content,
.header .overlay .toggle__menu #uberuns .hochzeitsfotografie__content,
.header .overlay .toggle__menu #uberuns .hochzeitsfilm__content {
  display: none;
  -webkit-animation: fade-in 600ms ease-in-out;
  animation: fade-in 600ms ease-in-out;
}

.header .overlay .toggle__menu #uberuns .uberuns__input,
.header .overlay .toggle__menu #uberuns .hochzeitsfotografie__input,
.header .overlay .toggle__menu #uberuns .hochzeitsfilm__input {
  display: none;
}

.header .overlay .toggle__menu #uberuns .uberuns__input:checked ~ .uberuns__content,
.header .overlay .toggle__menu #uberuns .hochzeitsfotografie__input:checked ~ .hochzeitsfotografie__content,
.header .overlay .toggle__menu #uberuns .hochzeitsfilm__input:checked ~ .hochzeitsfilm__content {
  display: block;
  margin-left: 15px;
}

.header .overlay .toggle__menu li {
  font-family: "Raleway", sans-serif;
  padding: 10px 0px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.7vmax;
}

.header .overlay .toggle__menu li span {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  cursor: pointer;
}

.header .overlay .social-media {
  margin-left: 50px;
  padding: 80px 0;
}

.header .overlay .social-media p {
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.5px;
  font-size: 1.5vmax;
  font-weight: 600;
}

.header .overlay .social-media__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .overlay .social-media__icons li:first-child {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header .overlay .social-media__icons li img {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  opacity: 0.5;
}

.header .grid {
  z-index: 5;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
}

.header .nav-container {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
}

.header .nav {
  margin: 15px auto 0px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}

.header .nav .menu-left,
.header .nav .menu-right {
  padding: 10px 0;
  margin: 0 10px;
}

.header .nav .menu-left ul ul {
  display: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.header .nav .menu-left ul ul li:first-child {
  margin-top: 40px;
}

.header .nav .menu-left ul ul li {
  margin-top: 20px;
}

.header .nav .menu-left ul li:hover > ul {
  display: block;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  border-bottom: 1px solid var(--primary-white);
  padding-bottom: 30px;
}

.header .nav .menu-left {
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-column: 1;
  grid-column: 1;
}

.header .nav .menu-left > ul > li,
.header .nav .menu-right > ul > li {
  text-align: center;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  color: var(--secondary-white);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  padding: 1.1875rem 1.2rem;
}
@media (min-width: 821px) and (max-width: 1200px) {
  .header .nav .menu-left > ul > li,
  .header .nav .menu-right > ul > li {
    font-size: 1vw;
    padding: 1.1875rem 0.6vw;
  }
}

.header .nav ul li a {
  font-weight: 600;
  color: var(--secondary-white);
}

.header .nav .header__logo {
  margin: 0 auto;
  padding: 0 1.375rem;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-column-align: center;
  justify-self: center;
}

.header .nav .header__logo img {
  width: 12rem;
  height: 100%;
}

.header .nav #menu-right {
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-column: 3;
  grid-column: 3;
}

.header__hamburger {
  -ms-grid-column-align: center;
  justify-self: center;
}

.header__hamburger > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--secondary-white);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 3px 1px;
  transform-origin: 3px 1px;
  background-color: var(--primary-grey);
}

.header__hamburger > span:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 39.9375em) {
  .header .grid {
    -ms-grid-columns: 1fr minmax(100px, 200px) 0.9fr;
    grid-template-columns: 1fr minmax(100px, 200px) 0.9fr;
  }
  .header .nav {
    min-width: 0px;
  }
}

@media (min-width: 0px) and (max-width: 820px) {
  /*Tablet*/
  .header .nav-container {
    background-color: var(--primary-color);
    height: 80px;
    position: fixed;
    z-index: 999;
  }

  .header .nav .header__logo img {
    width: 10rem;
    filter: invert(100);
  }
}

.slideshow::before {
  background: linear-gradient(180deg, #0000006b, transparent);
  position: absolute;
  content: "";
  width: 100%;
  height: 20%;
  z-index: 1;
}
/*Hamburger Menu Style END*/

/*Share Social Sticky Bar BEGIN*/
.share-social {
  position: fixed;
  left: 30px;
  bottom: 20px;
  z-index: 220;
}

.share-social .share-buttons {
  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;
}

.share-social .share-buttons p {
  font-family: "Montserrat", sans-serif;
  padding: 10px 0;
  font-size: 0.7vw;
}

.share-social .share-buttons a {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #575757;
  width: 1.5vw;
  height: 1.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
}

.share-social .share-buttons a i {
  font-size: 0.7vw;
}

.share-social .share-buttons a:hover {
  background: var(--primary-grey);
}

.share-social .share-buttons > i {
  width: 1px;
  height: 30px;
  background: #8b8b8b;
  content: "";
  margin: 10px auto;
}
@media (max-width: 39.9375em) {
  .share-social {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0;
    background: var(--primary-color);
    -webkit-box-shadow: 0px 14px 20px 9px #4e4e4e;
    box-shadow: 0px 14px 20px 9px #4e4e4e;
    -webkit-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
  }
  .share-social .hide {
    display: none;
    -webkit-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
  }
  .share-social .show {
    display: block;
    -webkit-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
  }
  .share-social .share-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .share-social .share-buttons p {
    font-size: 2vw;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .share-social .share-buttons a {
    width: 50px;
    height: 50px;
  }
  .share-social .share-buttons a i {
    font-size: 4.5vw;
    color: var(--primary-grey);
  }
  .share-social .share-buttons > i {
    width: 30px;
    height: 1px;
    margin: 10px;
  }
}

@media (max-width: 64.9375em) {
  .share-social .share-buttons p {
    font-size: 1.4vw;
  }
}
/*Share Social Sticky Bar END*/

/*Follow Us BEGIN*/
.follow-us .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3vw 0 7vw 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.follow-us .container .follow__header h3 {
  text-transform: uppercase;
  font-size: 1vmax;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--secondary-grey);
  letter-spacing: 2px;
  padding: 20px 30px;
}

.follow-us .container .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.follow-us .container .icons a {
  background-color: var(--secondary-grey);
  height: 2.5vw;
  width: 2.5vw;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: ease 300ms;
  transition: ease 300ms;
  margin: 5px;
}

.follow-us .container .icons a:hover {
  -webkit-box-shadow: 0 5px 15px 2px rgba(128, 128, 128, 0.3);
  box-shadow: 0 5px 15px 2px rgba(128, 128, 128, 0.3);
  -webkit-transition: ease 300ms;
  transition: ease 300ms;
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.follow-us .container .icons a img {
  width: 1vw;
  height: 1vw;
  -webkit-filter: invert(100);
  filter: invert(100);
}

.follow-us .container .instafeed ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.follow-us .container .instafeed ul li {
  width: 10vw;
  height: 10vw;
  margin: 0.3vw;
  overflow: hidden;
  position: relative;
}

.follow-us .container .instafeed ul li a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 39.9375em) {
  .follow-us .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 15vw;
  }
  .follow-us .container .follow__header h3 {
    border-right: none;
    font-size: 1.5vmax;
    padding: 10px;
  }
  .follow-us .container .icons a {
    height: 2rem;
    width: 2rem;
    margin: 10px;
  }
  .follow-us .container .icons a img {
    width: 4vw;
    height: 4vw;
  }
  .follow-us .container .instafeed ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  .follow-us .container .instafeed ul li {
    width: 100px;
    height: 100px;
    margin: 5px;
  }
  .follow-us .container .instafeed ul li:last-child {
    display: none;
  }
}
/*Follow Us END*/

/*Footer Locations BEGIN*/
.locations {
  position: relative;
  padding: 15px 0px;
  text-align: center;
}
.locations .location-pin-img {
  width: 1.5vw;
  height: auto;
  cursor: pointer;
}
.locations .container {
  max-width: 60%;
  max-height: 0px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.locations .locationsactive {
  max-height: 2500px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#locations-content h2 {
  text-align: center;
  display: block;
  font-family: "Quattrocento", serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 40px;
  color: var(--secondary-grey);
}
#locations-content .location-list {
  display: flex;
  flex-wrap: wrap;
}
.location-list .location-item {
  width: 25%;
  padding: 15px 30px;
  text-align: center;
}

.location-list .location-item a {
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.8px;
  color: var(--secondary-grey);
  font-size: 13px;
  font-weight: 300;
}
.location-list .location-item a:hover {
  color: var(--secondary-grey);
}
@media (max-width: 39.9375em) {
  .locations .location-pin-img {
    width: 4.5vw;
  }
  #locations-content h2 {
    font-size: 17px;
  }
  .location-list .location-item {
    width: 100%;
    padding: 5px 10px;
    text-align: left;
  }
}
/*Footer Locations END*/

/*Whatsapp Button BEGIN*/
.dd-m-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  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;
  border-radius: 50%;
  background-color: var(--secondary-color);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--secondary-color);
  z-index: 10;
}

.dd-m-whatsapp:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px 2px rgba(211, 135, 37, 0.3);
  box-shadow: 0 5px 15px 2px rgba(211, 135, 37, 0.3);
}

.dd-m-whatsapp .icon {
  width: 60%;
  height: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-23 -21 682 682.66669'%3E%3Cpath d='m544.386719 93.007812c-59.875-59.945312-139.503907-92.9726558-224.335938-93.007812-174.804687 0-317.070312 142.261719-317.140625 317.113281-.023437 55.894531 14.578125 110.457031 42.332032 158.550781l-44.992188 164.335938 168.121094-44.101562c46.324218 25.269531 98.476562 38.585937 151.550781 38.601562h.132813c174.785156 0 317.066406-142.273438 317.132812-317.132812.035156-84.742188-32.921875-164.417969-92.800781-224.359376zm-224.335938 487.933594h-.109375c-47.296875-.019531-93.683594-12.730468-134.160156-36.742187l-9.621094-5.714844-99.765625 26.171875 26.628907-97.269531-6.269532-9.972657c-26.386718-41.96875-40.320312-90.476562-40.296875-140.28125.054688-145.332031 118.304688-263.570312 263.699219-263.570312 70.40625.023438 136.589844 27.476562 186.355469 77.300781s77.15625 116.050781 77.132812 186.484375c-.0625 145.34375-118.304687 263.59375-263.59375 263.59375zm144.585938-197.417968c-7.921875-3.96875-46.882813-23.132813-54.148438-25.78125-7.257812-2.644532-12.546875-3.960938-17.824219 3.96875-5.285156 7.929687-20.46875 25.78125-25.09375 31.066406-4.625 5.289062-9.242187 5.953125-17.167968 1.984375-7.925782-3.964844-33.457032-12.335938-63.726563-39.332031-23.554687-21.011719-39.457031-46.960938-44.082031-54.890626-4.617188-7.9375-.039062-11.8125 3.476562-16.171874 8.578126-10.652344 17.167969-21.820313 19.808594-27.105469 2.644532-5.289063 1.320313-9.917969-.664062-13.882813-1.976563-3.964844-17.824219-42.96875-24.425782-58.839844-6.4375-15.445312-12.964843-13.359374-17.832031-13.601562-4.617187-.230469-9.902343-.277344-15.1875-.277344-5.28125 0-13.867187 1.980469-21.132812 9.917969-7.261719 7.933594-27.730469 27.101563-27.730469 66.105469s28.394531 76.683594 32.355469 81.972656c3.960937 5.289062 55.878906 85.328125 135.367187 119.648438 18.90625 8.171874 33.664063 13.042968 45.175782 16.695312 18.984374 6.03125 36.253906 5.179688 49.910156 3.140625 15.226562-2.277344 46.878906-19.171875 53.488281-37.679687 6.601563-18.511719 6.601563-34.375 4.617187-37.683594-1.976562-3.304688-7.261718-5.285156-15.183593-9.253906zm0 0' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
@media (max-width: 39.9375em) {
  .dd-m-whatsapp {
    display: none;
  }
}
/*Whatsapp Button END*/

/*Cookies Bar BEGIN*/
#cookie-bar {
  height: 5rem;
  background-color: var(--secondary-white);
  width: 100%;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 10px 20px 0px #000;
  box-shadow: 0px 10px 20px 0px #000;
  display: none;
  z-index: 220;
}

#cookie-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cookie-bar .container div {
  padding: 10px 20px;
}

#cookie-bar .container div p {
  color: var(--secondary-grey);
  letter-spacing: 0.1px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  padding: 2px;
}

#cookie-bar .container div p a {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
}

#cookie-bar .container div p a:hover {
  color: var(--secondary-color);
}

#cookie-bar .container button {
  padding: 5px 50px;
  background-color: var(--secondary-grey);
  border: none;
  color: var(--primary-white);
  border-radius: 4px;
  font-size: 1rem;
  -webkit-transition: ease-in-out 300ms;
  transition: ease-in-out 300ms;
}

#cookie-bar .container button:hover {
  background-color: var(--secondary-grey);
  -webkit-transition: ease-in-out 300ms;
  transition: ease-in-out 300ms;
  cursor: pointer;
}
@media (min-width: 480px) and (max-width: 820px) {
  #cookie-bar {
    height: 6rem;
  }

  #cookie-bar .container div p,
  #cookie-bar .container button {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #cookie-bar {
    height: 8rem;
  }
  #cookie-bar .container {
    flex-direction: column;
  }
  #cookie-bar .container div p,
  #cookie-bar .container button {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }
}
/*Cookies Bar END*/

/*Footer BEGIN*/
footer {
  background: var(--primary-color);
  width: 100%;
}

footer .copyright .container {
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  display: flex;
}

footer .second-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

footer .second-menu > li {
  text-align: center;
  padding: 1vw;
  display: block;
  position: relative;
}

footer .second-menu > li input#legal {
  display: none;
}

footer .second-menu > li a {
  font-weight: 200;
  color: var(--secondary-grey);
}

footer .second-menu > li a:hover {
  color: var(--primary-grey);
}

footer .second-menu > li label {
  cursor: pointer;
}

footer .second-menu .legal__content {
  display: none;
  -webkit-transition: ease-in-out 300ms;
  transition: ease-in-out 300ms;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

footer .second-menu input#legal:checked ~ .legal__content {
  display: inline-block;
  -webkit-transition: ease-in-out 300ms;
  transition: ease-in-out 300ms;
}

footer .copyright {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer .copyright p {
  padding: 30px 0;
  color: var(--secondary-grey);
  text-align: center;
}
@media (max-width: 39.9375em) {
  footer .copyright p {
    padding: 0 0 30px 0 !important;
  }
  footer .copyright .container {
    flex-direction: column-reverse;
  }
  footer .second-menu {
    -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;
    padding-bottom: 20px;
  }
  footer .second-menu > li {
    padding: 0;
    padding: 5px 0px;
  }
  footer .second-menu .legal__content {
    left: -20px;
    top: 25px;
  }
  footer .second-menu .legal__content li:not(:last-child) {
    padding: 10px 0px;
  }
  footer .copyright p {
    text-align: center;
  }
}

@media (max-width: 64.9375em) {
  footer .second-menu .legal__content {
    top: 38px;
  }
}

@media (max-width: 87.4375em) {
  footer .second-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/*Footer END*/

/*Single Page Header BEGIN*/
.single-page-header {
  position: relative;
  top: 0;
  width: 100%;
  height: 40rem;
  z-index: 1;
  margin-bottom: 2rem;
}
.single-page-header > div:first-child {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  border: solid var(--secondary-white) 1px;
  padding: 1rem 2rem;
  max-width: 100rem;
}
.single-page-header h1,
.single-page-header p {
  text-align: center;
  color: var(--primary-white);
}
.single-page-header p {
  margin-top: 0.5rem;
}
.single-page-header div h1 {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
.single-page-header div h1 span {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.single-page-header img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 480px) {
  /*Mobile*/
  .single-page-header > div:first-child {
    bottom: 1rem;
  }
  .single-page-header div h1 {
    font-size: 1.2rem;
  }
  .single-page-header div h1 span {
    font-size: 0.6rem;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  /*Tablet*/
  .single-page-header div h1 {
    font-size: 1.5rem;
  }
  .single-page-header div h1 span {
    font-size: 0.7rem;
  }
}

/*Single Page Header END*/

/*Single Page Video Header BEGIN*/
.vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*Single Page Video Header END*/

/*Featured Post List BEGIN*/
.featured-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.featured-posts .post {
  -ms-flex-preferred-size: 33.3333%;
  flex: 33.3333%;
  padding: 5px 15px 20px 15px;
}

.featured-posts .post a > img {
  width: 100%;
  height: auto;
}

.featured-posts .post-names,
.featured-posts .post-title,
.featured-posts .post-desc {
  padding-top: 0.5rem;
  color: var(--primary-grey);
}

.featured-posts .post-names {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
  font-size: 1rem;
}

.featured-posts .post-desc {
  font-family: "Quattrocento", serif;
}

.post.video a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.post.video a::after {
  content: url("../img/play-button.svg");
  width: 10%;
  max-width: 5rem;
  height: 10%;
  position: absolute;
  left: 2rem;
  bottom: 0;
  user-select: none;
  z-index: 30;
  filter: invert(100);
  transition: ease-in 300ms;
  margin-bottom: 5rem;
}
.post.video a:hover::after {
  transform: scale(1.2);
}

@media only screen and (max-width: 480px) {
  /*Mobile*/
  .featured-posts .post {
    flex: 100%;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  /*Tablet*/
  .featured-posts .post-names {
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
  }
  .featured-posts .post {
    flex: 50%;
  }
}
@media (min-width: 1024px) {
  /*Desktop*/
  .featured-posts .post {
    flex: 33.3333%;
  }
}

/*Featured Post List END*/

/*Hidden antispam*/
.form-group.comment-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -999999999;
}
