@charset "UTF-8";
/******************************************************************
	
Stylesheet: Main Stylesheet

******************************************************************/
/************************************************

Stylesheet: Global Stylesheet

*************************************************/
/*------------------------------------*\
    FONTS
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap");
@font-face {
  font-family: 'Athena';
  src: url("../fonts/Athena.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Austria';
  src: url("../fonts/Austria.otf") format("opentype");
  font-weight: 400;
  font-style: normal; }
/*------------------------------------*\
    VARs
\*------------------------------------*/
/*------------------------------------*\
    MISC
\*------------------------------------*/
bold, strong, b, .bold {
  font-weight: 600; }

italic, .italic {
  font-style: italic; }

del {
  text-decoration: line-through; }
  del * {
    text-decoration: line-through; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@-webkit-keyframes scrollIco {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(1.8rem); } }
@keyframes scrollIco {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(1.8rem); } }
/*------------------------------------*\
    MAIN
\*------------------------------------*/
/** DEFAULT STYLES **/
/* General */
/* global box-sizing */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: geometricPrecision;
  margin: 0;
  padding: 0;
  vertical-align: top;
  white-space: normal;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }

/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
  font-weight: 400;
  scroll-behavior: smooth; }

body {
  background-color: #fbf9ea;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.752rem;
  line-height: 2.4528rem;
  font-weight: 300;
  color: #122338;
  overflow-x: hidden;
  /* Track */
  /* Handle */
  /* Handle */
  scrollbar-width: .5rem;
  /* Firefox */ }
  body.menu-is-open {
    /* For desktop */
    overflow: hidden; }
    body.menu-is-open .main-canvas-wrapper {
      overflow: visible;
      height: 100%; }
  body.small-header header .top-bar, body.menu-is-open header .top-bar {
    padding-top: 3rem; }
    body.small-header header .top-bar .header-logo a img, body.menu-is-open header .top-bar .header-logo a img {
      height: 6rem; }
  body.no-scroll {
    overflow: hidden; }
  body *:selection {
    background: #2e3030;
    color: white;
    text-shadow: none; }
  body *:-webkit-selection {
    background: #2e3030;
    color: white;
    text-shadow: none; }
  body *:-moz-selection {
    background: #2e3030;
    color: white;
    text-shadow: none; }
  body::-webkit-scrollbar {
    width: .5rem; }
  body::-webkit-scrollbar-track {
    background: white; }
  body::-webkit-scrollbar-thumb {
    background: #122338; }
  body::-webkit-scrollbar-thumb:hover {
    background: #2e3030; }
  body ::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: #122338; }
  body ::selection {
    color: white;
    background: #122338; }

h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 3.285rem;
  line-height: 4.2705rem;
  margin: 0 0 3rem; }

h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 3.285rem;
  line-height: 4.2705rem;
  margin: 0 0 2rem; }

h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 2.92rem;
  line-height: 3.796rem;
  margin: 2rem 0 2rem; }

h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 2.19rem;
  line-height: 2.847rem;
  margin: 1rem 0 1rem; }

p {
  font-size: 1.752rem;
  font-weight: 500;
  line-height: 2.4528rem;
  margin: 0 0 1.752rem; }

.list li {
  font-size: 1.752rem;
  font-weight: 300;
  line-height: 2.4528rem;
  margin: 0 0 1rem;
  text-indent: -2rem;
  padding-left: 2.5rem; }
  .list li:last-child {
    margin: 0 0 1.752rem; }
  .list li::before {
    content: '•';
    color: #dd9641;
    margin-right: 1.2rem;
    font-size: 2.628rem;
    vertical-align: middle; }

h1:first-child, h2:first-child, h3:first-child, h4:first-child, p:first-child {
  margin-top: 0; }
h1:last-child, h2:last-child, h3:last-child, h4:last-child, p:last-child {
  margin-bottom: 0; }

blockquote {
  margin: 4.5rem auto;
  width: 75%;
  position: relative; }
  blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #dd9641;
    font-size: 4.9275rem;
    font-style: italic;
    display: block;
    margin-left: -1.5rem;
    margin-bottom: -1rem; }
  blockquote p {
    font-size: 2.19rem;
    line-height: 2.847rem;
    font-weight: 400;
    font-style: italic;
    margin: 3rem 0; }
    blockquote p:last-of-type {
      margin-bottom: 0; }

hr {
  box-sizing: border-box;
  background-color: white;
  height: .2rem;
  border: 0;
  margin: 3rem auto;
  width: 100%; }

input, textarea, select {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.3432rem; }

/* clear */
.clear::before,
.clear::after {
  content: ' ';
  display: table; }

.clear::after {
  clear: both; }

.clear {
  zoom: 1; }

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizequality; }

a, a:focus, a:hover, a:active {
  color: inherit;
  text-decoration: none;
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }

input,
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
button, input[type="submit"], input[type="reset"]
input[type=search] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0rem;
  -moz-border-radius: 0rem;
  border-radius: 0rem;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: text;
  outline: inherit; }

input:focus, input:hover, input:active,
input[type=file]:focus, input[type=file]:hover, input[type=file]:active,
input[type=text]:focus, input[type=text]:hover, input[type=text]:active,
input[type=email]:focus, input[type=email]:hover, input[type=email]:active,
input[type=tel]:focus, input[type=tel]:hover, input[type=tel]:active,
input[type=url]:focus, input[type=url]:hover, input[type=url]:active,
input[type=search]:focus, input[type=search]:hover, input[type=search]:active {
  outline: 0;
  border: 0px solid #2e3030; }

select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: none;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  overflow: auto;
  /*IE 10*/ }
  select option, textarea option {
    outline: none;
    border: none; }
  select::-ms-expand, textarea::-ms-expand {
    display: none; }

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border-color: #e8fde8;
  -webkit-text-fill-color: #122338;
  -webkit-box-shadow: 0 0 0px 1000px #f3fff3  inset;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none; }

::-webkit-input-placeholder {
  color: #808080; }

:-moz-placeholder {
  color: #808080; }

::-moz-placeholder {
  color: #808080; }

:-ms-input-placeholder {
  color: #808080; }

::input-placeholder {
  color: #808080; }

::placeholder {
  color: #808080; }

ul, li {
  list-style: none; }

sup {
  vertical-align: super;
  font-size: 65%; }

.yt {
  width: 100%;
  height: 25vw;
  max-width: 100%;
  max-height: 36rem;
  margin-top: 3rem;
  margin-bottom: 3rem; }
  .yt:first-child {
    margin-top: 0; }
  .yt:last-child {
    margin-bottom: 0; }
  .yt iframe {
    width: 100%;
    height: 100%; }

iframe {
  border: none; }

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.aligncenter,
div.aligncenter {
  display: block;
  margin: 0 auto; }

.alignright {
  float: right;
  margin: 0 0 0 3rem; }

.alignleft {
  float: left;
  margin: 0 3rem 0 0; }

/*------------------------------------*\
    MAIN WRAPPER Basic
\*------------------------------------*/
.main-canvas-wrapper {
  display: block;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%; }

/*------------------------------------*\
    MENU Basic
\*------------------------------------*/
header {
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
  display: block; }
  header.menu-is-open .top-bar .header-logo {
    opacity: 0;
    pointer-events: none; }
  header.menu-is-open .top-bar .top-bar-wrapper .header-contact {
    opacity: 0;
    pointer-events: none; }
  header .top-bar {
    font-size: 0;
    display: grid;
    align-items: center; }
  header .menu {
    display: inline-block;
    vertical-align: middle;
    font-size: 0; }
    header .menu .menu-item:first-child {
      margin-left: 0; }
    header .menu .menu-item:last-child {
      margin-right: 0; }
    header .menu .menu-item {
      display: inline-block;
      text-align: center;
      margin: 0 3rem;
      vertical-align: top;
      padding: 0; }
    header .menu .menu-item-has-children {
      position: relative;
      -webkit-touch-callout: none;
      /* iOS Safari */
      -webkit-user-select: none;
      /* Safari */
      -khtml-user-select: none;
      /* Konqueror HTML */
      -moz-user-select: none;
      /* Old versions of Firefox */
      -ms-user-select: none;
      /* Internet Explorer/Edge */
      user-select: none;
                   /* Non-prefixed version, currently
					  supported by Chrome, Opera and Firefox */ }
      header .menu .menu-item-has-children > a::after {
        content: '∟';
        display: inline-block;
        transform-origin: 100% 100%;
        width: 2rem;
        height: 2rem;
        line-height: 1;
        margin-top: 2rem;
        font-weight: 700;
        transform: rotate(315deg);
        -webkit-transform: rotate(315deg);
        margin-left: 1rem; }
      header .menu .menu-item-has-children .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        line-height: 6rem;
        min-width: 15rem; }
        header .menu .menu-item-has-children .menu .menu-item:first-child {
          margin: 0; }
        header .menu .menu-item-has-children .menu .menu-item:last-child {
          margin: 0; }
    header .menu .menu-item-has-children:hover > .menu, header .menu .menu-item-has-children:active > .menu, header .menu .menu-item-has-children:focus > .menu {
      display: grid;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%); }
      header .menu .menu-item-has-children:hover > .menu .menu-item, header .menu .menu-item-has-children:active > .menu .menu-item, header .menu .menu-item-has-children:focus > .menu .menu-item {
        display: block;
        white-space: nowrap; }

#off-canvas {
  position: fixed;
  display: grid;
  top: calc( -100% - 6rem);
  left: 0;
  z-index: 99999;
  width: 100%;
  height: calc( 100% + 6rem);
  background-color: #122338;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  transition: top 0.5s; }
  #off-canvas.visible {
    transition-timing-function: cubic-bezier(0.64, 0.23, 0.4, 1.15);
    top: -6rem; }
  #off-canvas .menu-item-has-children {
    position: relative; }
    #off-canvas .menu-item-has-children a {
      display: inline-block; }
    #off-canvas .menu-item-has-children::after {
      top: 2rem;
      content: '∟';
      display: inline-block;
      transform-origin: 100% 100%;
      width: 2rem;
      height: 2rem;
      line-height: 1;
      margin-top: 2rem;
      font-weight: 700;
      transform: rotate(315deg);
      -webkit-transform: rotate(315deg);
      position: absolute;
      right: 2.25rem;
      margin-top: -2rem;
      font-size: 2rem; }
    #off-canvas .menu-item-has-children.menu-is-open::after {
      content: '∟';
      display: inline-block;
      transform-origin: 100% 100%;
      width: 2rem;
      height: 2rem;
      line-height: 1;
      margin-top: 2rem;
      font-weight: 700;
      transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      right: 5rem;
      margin-top: -.5rem; }
    #off-canvas .menu-item-has-children .menu {
      display: none;
      overflow: hidden; }
      #off-canvas .menu-item-has-children .menu a {
        display: block; }
        #off-canvas .menu-item-has-children .menu a::after {
          content: ''; }

/*------------------------------------*\
    Content Basic
\*------------------------------------*/
/*------------------------------------*\
    Footer Basic
\*------------------------------------*/
/*footer{

	position: absolute;
	bottom: 0;
	
	width: 100%;
	height: $footer-height;

}*/
/*------------------------------------*\
   Responsive
\*------------------------------------*/
@media (max-width: 920px) {
  /** DEFAULT STYLES **/
  /* General */
  h1 {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: 3rem;
    line-height: 3.6rem;
    margin: 0 0 1.5rem; }

  h2 {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 2.88rem;
    margin: 0 0 1.5rem; }

  h3 {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: 1.92rem;
    line-height: 2.496rem;
    margin: 0.75rem 0 0.75rem; }

  h4 {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: 1.356rem;
    line-height: 1.7628rem;
    margin: 0.75rem 0 0.75rem; }

  p {
    font-size: 1.356rem;
    font-weight: 500;
    line-height: 1.7628rem;
    margin: 0 0 1.356rem; }

  blockquote::before {
    font-size: 4.5rem; }
  blockquote p {
    font-size: 1.44rem;
    line-height: 1.872rem; }

  .list li {
    font-size: 1.356rem;
    font-weight: 300;
    line-height: 1.7628rem;
    margin: 0 0 1rem;
    text-indent: -2rem;
    padding-left: 2.5rem; }
    .list li:last-child {
      margin: 0 0 1.356rem; }
    .list li::before {
      content: '•';
      color: #dd9641;
      margin-right: 1.2rem;
      font-size: 2.16rem;
      vertical-align: middle; }

  .yt {
    height: 55vw;
    max-height: 45rem; }

  header {
    height: 7.5rem;
    line-height: 7.5rem; }
    header .top-bar {
      padding: 0 1.5rem; }

  #off-canvas {
    width: 100%; } }
/*------------------------------------*\
Wrappers & Common
\*------------------------------------*/
.full-height {
  display: grid;
  min-height: 100vh; }

.full-width {
  display: grid;
  width: 100vw !important;
  position: relative;
  z-index: 2; }

.fadeIn {
  opacity: 0; }
  .fadeIn.visible {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out; }
    .fadeIn.visible:nth-child(n + 0) {
      transition-delay: calc(.09s * 0); }
    .fadeIn.visible:nth-child(n + 1) {
      transition-delay: calc(.09s * 1); }
    .fadeIn.visible:nth-child(n + 2) {
      transition-delay: calc(.09s * 2); }
    .fadeIn.visible:nth-child(n + 3) {
      transition-delay: calc(.09s * 3); }
    .fadeIn.visible:nth-child(n + 4) {
      transition-delay: calc(.09s * 4); }
    .fadeIn.visible:nth-child(n + 5) {
      transition-delay: calc(.09s * 5); }
    .fadeIn.visible:nth-child(n + 6) {
      transition-delay: calc(.09s * 6); }
    .fadeIn.visible:nth-child(n + 7) {
      transition-delay: calc(.09s * 7); }
    .fadeIn.visible:nth-child(n + 8) {
      transition-delay: calc(.09s * 8); }
    .fadeIn.visible:nth-child(n + 9) {
      transition-delay: calc(.09s * 9); }
    .fadeIn.visible:nth-child(n + 10) {
      transition-delay: calc(.09s * 10); }
    .fadeIn.visible:nth-child(n + 11) {
      transition-delay: calc(.09s * 11); }
    .fadeIn.visible:nth-child(n + 12) {
      transition-delay: calc(.09s * 12); }
    .fadeIn.visible:nth-child(n + 13) {
      transition-delay: calc(.09s * 13); }
    .fadeIn.visible:nth-child(n + 14) {
      transition-delay: calc(.09s * 14); }
    .fadeIn.visible:nth-child(n + 15) {
      transition-delay: calc(.09s * 15); }
    .fadeIn.visible.slow {
      -webkit-transition: opacity 1s ease-in-out;
      -moz-transition: opacity 1s ease-in-out;
      -o-transition: opacity 1s ease-in-out;
      transition: opacity 1s ease-in-out; }
      .fadeIn.visible.slow:nth-child(n + 0) {
        transition-delay: calc(.18s * 0); }
      .fadeIn.visible.slow:nth-child(n + 1) {
        transition-delay: calc(.18s * 1); }
      .fadeIn.visible.slow:nth-child(n + 2) {
        transition-delay: calc(.18s * 2); }
      .fadeIn.visible.slow:nth-child(n + 3) {
        transition-delay: calc(.18s * 3); }
      .fadeIn.visible.slow:nth-child(n + 4) {
        transition-delay: calc(.18s * 4); }
      .fadeIn.visible.slow:nth-child(n + 5) {
        transition-delay: calc(.18s * 5); }
      .fadeIn.visible.slow:nth-child(n + 6) {
        transition-delay: calc(.18s * 6); }
      .fadeIn.visible.slow:nth-child(n + 7) {
        transition-delay: calc(.18s * 7); }
      .fadeIn.visible.slow:nth-child(n + 8) {
        transition-delay: calc(.18s * 8); }
      .fadeIn.visible.slow:nth-child(n + 9) {
        transition-delay: calc(.18s * 9); }
      .fadeIn.visible.slow:nth-child(n + 10) {
        transition-delay: calc(.18s * 10); }
      .fadeIn.visible.slow:nth-child(n + 11) {
        transition-delay: calc(.18s * 11); }
      .fadeIn.visible.slow:nth-child(n + 12) {
        transition-delay: calc(.18s * 12); }
      .fadeIn.visible.slow:nth-child(n + 13) {
        transition-delay: calc(.18s * 13); }
      .fadeIn.visible.slow:nth-child(n + 14) {
        transition-delay: calc(.18s * 14); }
      .fadeIn.visible.slow:nth-child(n + 15) {
        transition-delay: calc(.18s * 15); }
  .fadeIn.up {
    position: relative;
    top: 9rem;
    -webkit-transition: opacity 0.3s ease-in-out, top 0.6s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, top 0.6s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, top 0.6s ease-in-out;
    transition: opacity 0.3s ease-in-out, top 0.6s ease-in-out; }
    .fadeIn.up.visible {
      top: 0; }

.lax {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  transition-delay: 0 !important; }

.center-wrapper {
  width: 100%; }
  .center-wrapper .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 6rem 3rem; }

.full-wrapper {
  width: 100%; }
  .full-wrapper .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 3rem; }

.center-wrapper-wide {
  width: 100%; }
  .center-wrapper-wide .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 6rem 3rem; }

.center-wrapper-ultra-wide {
  width: 100%; }
  .center-wrapper-ultra-wide .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 160rem;
    margin: 0 auto;
    padding: 6rem 3rem; }

.center-wrapper-narrow {
  width: 100%; }
  .center-wrapper-narrow .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    padding: 6rem 3rem; }

.row-cols-alternating .row-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 6rem;
  grid-row-gap: 0;
  align-items: center;
  justify-content: center; }
  .row-cols-alternating .row-cols:nth-child(odd) {
    direction: ltr; }
    .row-cols-alternating .row-cols:nth-child(odd) .column {
      direction: ltr; }
  .row-cols-alternating .row-cols:nth-child(even) {
    direction: rtl;
    text-align: left; }
    .row-cols-alternating .row-cols:nth-child(even) .column {
      direction: ltr; }
.row-cols-alternating.first-right .row-cols:nth-child(even) {
  direction: ltr;
  text-align: left; }
.row-cols-alternating.first-right .row-cols:nth-child(odd) {
  direction: rtl;
  text-align: left; }

a.anchor {
  display: block;
  position: relative;
  top: -15rem;
  visibility: hidden; }

.hidden {
  display: none; }

.show-mobile {
  display: none; }

.hide-mobile {
  display: inline-block; }

.no-padding-bottom {
  padding-bottom: 0 !important; }

.no-padding-top {
  padding-top: 0 !important; }

.double-padding-bottom {
  padding-bottom: 12rem !important; }

.double-padding-top {
  padding-top: 12rem !important; }

.triple-padding-bottom {
  padding-bottom: 18rem !important; }

.triple-padding-top {
  padding-top: 18rem !important; }

.quad-padding-bottom {
  padding-bottom: 24rem !important; }

.quad-padding-top {
  padding-top: 24rem !important; }

.black-background {
  background-color: #122338; }
  .black-background ::-moz-selection {
    /* Code for Firefox */
    color: #122338;
    background: white; }
  .black-background ::selection {
    color: #122338;
    background: white; }

.grey-background {
  background-color: #e5e9e9; }

.blue-background {
  background-color: #122338; }
  .blue-background ::-moz-selection {
    /* Code for Firefox */
    color: #122338;
    background: #dd9641; }
  .blue-background ::selection {
    color: #122338;
    background: #dd9641; }

.yellow {
  color: #dd9641; }

.athena {
  font-family: "Athena", Arial, sans-serif;
  font-style: normal; }

.austria {
  font-family: "Austria", Arial, sans-serif; }

.script {
  position: relative;
  z-index: -1;
  color: #dd9641;
  font-size: calc( 6.57rem + .5vw);
  line-height: 8.96805rem;
  text-align: center;
  margin-bottom: 6rem; }

.section-title {
  margin: 0 auto 4.5rem;
  font-size: 4.2705rem;
  line-height: 4.2705rem;
  text-align: center; }
  .section-title::before {
    display: block;
    width: 100%;
    max-width: 12rem;
    height: 9rem;
    margin: 0 auto 1rem;
    background-color: #dd9641;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(../images/decor-flower.svg);
    mask-image: url(../images/decor-flower.svg); }
  .section-title.honey::before {
    max-width: 9rem;
    content: '';
    -webkit-mask-image: url(../images/decor-honey.svg);
    mask-image: url(../images/decor-honey.svg); }
  .section-title.flower::before {
    content: '';
    -webkit-mask-image: url(../images/decor-flower.svg);
    mask-image: url(../images/decor-flower.svg); }

.intro-text {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  font-size: 2.19rem;
  line-height: 2.847rem;
  font-style: italic;
  font-weight: 500; }
  .intro-text + .vertical-waves {
    margin-top: 4.5rem; }

.bee-wrapper {
  display: block;
  height: 4.5rem;
  width: 6rem;
  margin: 0 auto;
  background-color: #dd9641;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/decor-bee.svg);
  mask-image: url(../images/decor-bee.svg); }
  .bee-wrapper.flipped {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.vertical-wrapper {
  position: absolute;
  left: 4.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 0% 100%; }
  .vertical-wrapper.yellow {
    color: #dd9641; }

.vertical-waves {
  display: grid;
  width: 0.5rem; }
  .vertical-waves .middle {
    position: relative;
    display: block;
    height: 10.5rem;
    width: 100%;
    background-color: #dd9641;
    -webkit-mask-repeat: repeat-y;
    -webkit-mask-position: center;
    -webkit-mask-size: 100%;
    mask-repeat: repeat-y;
    mask-position: center;
    mask-size: 100%;
    -webkit-mask-image: url(../images/waves-middle.svg);
    mask-image: url(../images/waves-middle.svg);
    pointer-events: none; }
  .vertical-waves .top {
    display: block;
    width: 100%;
    height: 3rem;
    background-color: #dd9641;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    -webkit-mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center bottom;
    mask-size: 100%;
    -webkit-mask-image: url(../images/waves-top.svg);
    mask-image: url(../images/waves-top.svg); }
  .vertical-waves .bottom {
    display: block;
    width: 100%;
    height: 3rem;
    background-color: #dd9641;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    -webkit-mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center top;
    mask-size: 100%;
    -webkit-mask-image: url(../images/waves-bottom.svg);
    mask-image: url(../images/waves-bottom.svg); }
  .vertical-waves.center {
    margin-left: auto;
    margin-right: auto; }
  .vertical-waves.blue .top, .vertical-waves.blue .middle, .vertical-waves.blue .bottom {
    background-color: #122338; }
  .vertical-waves.yellow-bg .top, .vertical-waves.yellow-bg .middle, .vertical-waves.yellow-bg .bottom {
    background-color: #fbf9ea; }
  .vertical-waves + .intro-text {
    margin-top: 4.5rem; }

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

.wpcf7 .screen-reader-response {
  display: none !important; }
.wpcf7 .wpcf7-not-valid-tip {
  display: none !important; }
.wpcf7 .wpcf7-form-control-wrap {
  display: block; }
.wpcf7 .wpcf7-list-item-label {
  vertical-align: middle; }
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label, .wpcf7 .wpcf7-radius .wpcf7-list-item label, .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  display: block;
  line-height: 2rem; }
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label, .wpcf7 .wpcf7-radius .wpcf7-list-item-label, .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-block;
  text-indent: 0;
  padding-left: 4rem; }
.wpcf7 .wpcf7-form {
  position: relative; }
  .wpcf7 .wpcf7-form .response-background {
    display: none; }
  .wpcf7 .wpcf7-form .wpcf7-response-output:empty {
    padding: 0;
    margin: 0; }
  .wpcf7 .wpcf7-form.resetting .wpcf7-response-output {
    display: none; }
  .wpcf7 .wpcf7-form.invalid .wpcf7-response-output, .wpcf7 .wpcf7-form.failed .wpcf7-response-output {
    max-width: 30rem;
    color: #ea0029;
    font-size: 1.3432rem;
    font-weight: 700;
    padding: 1.5rem;
    margin: 0 auto 1.5rem; }
  .wpcf7 .wpcf7-form.sent .wpcf7-response-output {
    color: #122338;
    width: calc(100% - 3rem);
    max-width: 60rem;
    background-color: white;
    position: fixed;
    z-index: 99;
    top: 50%;
    left: 50%;
    padding: 6rem;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border: 0.1rem solid #e5e9e9;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2rem 2rem -3rem rgba(18, 35, 56, 0.4);
    -moz-box-shadow: 0 2rem 2rem -3rem rgba(18, 35, 56, 0.4);
    box-shadow: 0 2rem 2rem -3rem rgba(18, 35, 56, 0.4); }
  .wpcf7 .wpcf7-form.sent .response-background {
    display: block;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 35, 56, 0.5); }
  .wpcf7 .wpcf7-form.submitting .wpcf7-response-output {
    font-size: 0; }
  .wpcf7 .wpcf7-form.submitting .link-submit {
    position: relative; }
    .wpcf7 .wpcf7-form.submitting .link-submit .link-button {
      vertical-align: middle;
      background-color: #e5e9e9;
      border-color: #e5e9e9;
      color: #e5e9e9;
      cursor: not-allowed; }
    .wpcf7 .wpcf7-form.submitting .link-submit .wpcf7-spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      display: inline-block;
      vertical-align: middle;
      width: 5rem;
      height: 5rem;
      cursor: not-allowed; }
      .wpcf7 .wpcf7-form.submitting .link-submit .wpcf7-spinner::before {
        content: url("../images/ajax-loader.svg");
        display: block;
        width: 100%;
        height: 100%; }
.wpcf7 input[type="checkbox"], .wpcf7 input[type="radio"] {
  position: relative;
  cursor: pointer;
  vertical-align: top;
  display: inline-block; }
  .wpcf7 input[type="checkbox"]::before, .wpcf7 input[type="radio"]::before {
    position: absolute;
    			/*top: 50%;
    
    			-ms-transform: translateY(-50%);
    			transform: translateY(-50%);*/
    top: 0;
    left: 0;
    line-height: 2rem;
    font-size: 4rem;
    font-weight: 400;
    content: "";
    display: inline-block;
    height: 3rem;
    width: 3rem;
    vertical-align: top;
    color: #122338;
    background-color: white;
    border: 0.1rem solid #e5e9e9;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    text-align: center; }
  .wpcf7 input[type="checkbox"]:hover::before, .wpcf7 input[type="radio"]:hover::before {
    border: 0.1rem solid #122338; }
  .wpcf7 input[type="checkbox"]:checked::before, .wpcf7 input[type="radio"]:checked::before {
    content: '×';
    background-color: white !important;
    border: 0.1rem solid #122338 !important; }
  .wpcf7 input[type="checkbox"]:checked:hover::before, .wpcf7 input[type="radio"]:checked:hover::before {
    border: 0.1rem solid #2e3030 !important;
    color: #122338; }
.wpcf7 .wpcf7-not-valid input[type="checkbox"]::before, .wpcf7 .wpcf7-not-valid input[type="radio"]::before {
  border: 0.1rem solid #ea0029; }
.wpcf7 input[type="text"], .wpcf7 input[type="tel"], .wpcf7 input[type="email"] {
  width: 100%;
  padding: 1rem 1rem;
  line-height: 1;
  color: #122338;
  background-color: white;
  border: 0.1rem solid #e5e9e9;
  font-size: 1.3432rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem; }
  .wpcf7 input[type="text"]:hover, .wpcf7 input[type="text"]:active, .wpcf7 input[type="text"]:focus, .wpcf7 input[type="tel"]:hover, .wpcf7 input[type="tel"]:active, .wpcf7 input[type="tel"]:focus, .wpcf7 input[type="email"]:hover, .wpcf7 input[type="email"]:active, .wpcf7 input[type="email"]:focus {
    border: 0.1rem solid #2e3030; }
  .wpcf7 input[type="text"].wpcf7-not-valid, .wpcf7 input[type="tel"].wpcf7-not-valid, .wpcf7 input[type="email"].wpcf7-not-valid {
    border: 0.1rem solid #ea0029; }
.wpcf7 textarea {
  width: 100%;
  height: 9rem;
  min-height: 9rem;
  max-height: 30rem;
  padding: 1rem 1rem;
  resize: vertical;
  color: #122338;
  background-color: white;
  border: 0.1rem solid #e5e9e9;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem; }
  .wpcf7 textarea:hover, .wpcf7 textarea:active, .wpcf7 textarea:focus {
    border: 0.1rem solid #2e3030; }
  .wpcf7 textarea.wpcf7-not-valid {
    border: 0.1rem solid #ea0029; }
.wpcf7 .link-acceptance {
  display: block;
  margin: 0 auto 1.5rem;
  text-align: left;
  max-width: 30rem;
  font-size: 1.3432rem;
  font-weight: 700; }
  .wpcf7 .link-acceptance a {
    color: #122338;
    text-decoration: underline; }
    .wpcf7 .link-acceptance a:hover, .wpcf7 .link-acceptance a:active, .wpcf7 .link-acceptance afocus {
      color: #2e3030; }
  .wpcf7 .link-acceptance .wpcf7-list-item {
    display: block;
    margin-bottom: 2rem; }

/*------------------------------------*\
MENU Style
\*------------------------------------*/
header {
  background-color: transparent;
  padding: 0;
  pointer-events: none; }
  header .top-bar {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 0;
    align-items: start;
    width: 100%;
    max-width: calc( 120rem);
    margin: 0 auto;
    padding: 6rem 3rem 0;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    header .top-bar .header-logo {
      width: 100%;
      margin: 0;
      justify-self: start;
      pointer-events: auto;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
      header .top-bar .header-logo a {
        display: grid;
        justify-content: start;
        text-align: left; }
        header .top-bar .header-logo a img {
          width: auto;
          height: 12rem;
          -webkit-transition: all 0.2s;
          -moz-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s; }
    header .top-bar .top-bar-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center; }
      header .top-bar .top-bar-wrapper .menu {
        pointer-events: auto;
        justify-self: center;
        margin-left: -1.5rem; }
      header .top-bar .top-bar-wrapper .header-contact {
        pointer-events: auto;
        justify-self: end;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s; }
    header .top-bar #off-canvas-topmenu {
      cursor: pointer;
      display: grid;
      grid-gap: 1rem;
      align-content: center;
      align-items: center;
      width: 5rem;
      height: 5rem; }
      header .top-bar #off-canvas-topmenu .bar1, header .top-bar #off-canvas-topmenu .bar2 {
        width: 100%;
        height: .2rem;
        background-color: #122338;
        margin: 0;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s; }
      header .top-bar #off-canvas-topmenu .bar2 {
        width: 50%; }
      header .top-bar #off-canvas-topmenu.menu-is-open .bar1 {
        -webkit-transform: rotate(-45deg) translate(-0.5rem, 0.5rem);
        -moz-transform: rotate(-45deg) translate(-0.5rem, 0.5rem);
        -ms-transform: rotate(-45deg) translate(-0.5rem, 0.5rem);
        transform: rotate(-45deg) translate(-0.5rem, 0.5rem);
        background-color: white; }
      header .top-bar #off-canvas-topmenu.menu-is-open .bar2 {
        width: 100%;
        background-color: white;
        -webkit-transform: rotate(45deg) translate(-0.25rem, -0.5rem);
        -moz-transform: rotate(45deg) translate(-0.25rem, -0.5rem);
        -ms-transform: rotate(45deg) translate(-0.25rem, -0.5rem);
        transform: rotate(45deg) translate(-0.25rem, -0.5rem); }
      header .top-bar #off-canvas-topmenu:hover .bar1, header .top-bar #off-canvas-topmenu:hover .bar2, header .top-bar #off-canvas-topmenu:active .bar1, header .top-bar #off-canvas-topmenu:active .bar2, header .top-bar #off-canvas-topmenu:focus .bar1, header .top-bar #off-canvas-topmenu:focus .bar2 {
        background-color: #808080; }

#off-canvas {
  color: white;
  overflow: auto;
  display: grid;
  padding: 12rem 6rem 6rem; }
  #off-canvas .overflow {
    display: grid;
    grid-template-rows: 1fr auto auto;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 6rem 0;
    width: 100%;
    max-width: 160rem;
    margin: 0 auto; }
    #off-canvas .overflow .contact-wrapper {
      padding-top: 15%;
      grid-row: 1;
      grid-column: 2;
      justify-self: center;
      align-self: center; }
      #off-canvas .overflow .contact-wrapper a {
        background-color: transparent;
        border-color: white; }
        #off-canvas .overflow .contact-wrapper a:hover, #off-canvas .overflow .contact-wrapper a:active, #off-canvas .overflow .contact-wrapper a:focus {
          background-color: #2e3030;
          border-color: #2e3030; }
    #off-canvas .overflow .menu {
      position: relative;
      grid-row: 2;
      grid-column: span 3;
      align-self: end;
      color: white; }
      #off-canvas .overflow .menu .menu-item {
        padding: 0;
        display: block; }
        #off-canvas .overflow .menu .menu-item a {
          text-transform: uppercase;
          display: inline-block;
          font-size: calc(3.285rem + 3vw);
          line-height: calc(4.2705rem + 3vw);
          color: white; }
          #off-canvas .overflow .menu .menu-item a:hover, #off-canvas .overflow .menu .menu-item a:active, #off-canvas .overflow .menu .menu-item a:focus {
            color: #808080; }
      #off-canvas .overflow .menu .menu-title {
        position: absolute;
        z-index: -1;
        top: -1.5rem;
        left: 0.5rem;
        text-transform: uppercase; }
        #off-canvas .overflow .menu .menu-title a {
          pointer-events: none;
          font-size: 1.3432rem;
          line-height: 1;
          color: white; }
    #off-canvas .overflow .bottom-wrapper {
      grid-row: 3;
      grid-column: span 3;
      display: grid;
      grid-template-columns: auto 1fr 2fr;
      grid-gap: 4.5rem;
      align-self: end; }
      #off-canvas .overflow .bottom-wrapper a:hover, #off-canvas .overflow .bottom-wrapper a:active, #off-canvas .overflow .bottom-wrapper a:focus {
        color: #808080; }
      #off-canvas .overflow .bottom-wrapper .blog-link {
        text-align: right; }
        #off-canvas .overflow .bottom-wrapper .blog-link a {
          text-transform: uppercase;
          font-size: calc(3.285rem + 3vw);
          line-height: calc(4.2705rem + 3vw); }
      #off-canvas .overflow .bottom-wrapper .menu-title {
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        pointer-events: none;
        font-size: 1.3432rem;
        color: white; }

/*------------------------------------*\
Blog
\*------------------------------------*/
.search-wrapper {
  display: grid;
  grid-template-columns: auto minmax(30rem, 1fr);
  grid-gap: 3rem;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3rem;
  text-align: right; }
  .search-wrapper h1 {
    text-align: left;
    position: relative;
    margin: 0; }
    .search-wrapper h1::before {
      content: '';
      position: absolute;
      left: -1.5rem;
      top: 0;
      width: 4.5rem;
      height: 3rem;
      background-color: #e5e9e9;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: 100%;
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: 100%;
      -webkit-mask-image: url(../images/logo-hero.svg);
      mask-image: url(../images/logo-hero.svg);
      transform-origin: left center;
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      pointer-events: none; }
  .search-wrapper input[type="search"] {
    width: 100%;
    max-width: 30rem;
    padding: 1.5rem 1.5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    border-radius: 5rem; }

.articles-grid .content-wrapper .missing-header {
  grid-column: 1 / 3; }
.articles-grid .content-wrapper .articles-header {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto 3rem; }
  .articles-grid .content-wrapper .articles-header h2 {
    text-align: left; }
.articles-grid .content-wrapper .articles-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 6rem;
  grid-column: 1 / 3;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0;
  font-size: 0; }
  .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 1.5rem; }
    @supports not (aspect-ratio: 16/9) {
      .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail {
        height: 29vw;
        max-height: 35rem; }
        .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail::before {
          content: none; } }
    .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail a {
      display: block;
      height: 100%;
      width: 100%;
      cursor: pointer; }
    .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail.no-thumbnail {
      position: relative;
      background-color: #e5e9e9; }
      .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail.no-thumbnail::before {
        content: '/';
        position: absolute;
        color: #122338;
        top: 6rem;
        left: 3rem;
        font-size: 12rem;
        pointer-events: none; }
      @supports not (aspect-ratio: 16/9) {
        .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail.no-thumbnail {
          height: 29vw;
          max-height: 35rem; } }
      .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail.no-thumbnail::after {
        content: '';
        position: absolute;
        right: 6rem;
        bottom: 3rem;
        width: 6rem;
        height: 4.5rem;
        background-image: url(../images/logo-hero.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transform-origin: bottom right;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        pointer-events: none; }
  .articles-grid .content-wrapper .articles-wrapper article .article-header h2 {
    font-size: 2.92rem;
    line-height: 3.796rem;
    font-weight: 400;
    margin: 0 0 1rem; }
    .articles-grid .content-wrapper .articles-wrapper article .article-header h2 a {
      color: #122338; }
      .articles-grid .content-wrapper .articles-wrapper article .article-header h2 a:active, .articles-grid .content-wrapper .articles-wrapper article .article-header h2 a:focus, .articles-grid .content-wrapper .articles-wrapper article .article-header h2 a:hover {
        color: #2e3030; }
  .articles-grid .content-wrapper .articles-wrapper article .article-header:last-child {
    margin-bottom: 0; }
  .articles-grid .content-wrapper .articles-wrapper article .entry-content h3 {
    font-size: 1.752rem;
    line-height: 2.4528rem;
    font-weight: 400;
    margin: 0 0 1.5rem; }
  .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new {
    display: none;
    font-size: 1.3432rem;
    line-height: 1.88048rem;
    font-weight: 700;
    color: #2e3030; }
    .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:active, .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:focus, .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:hover {
      color: #e5e9e9; }
  .articles-grid .content-wrapper .articles-wrapper article .entry-content .date {
    font-size: 1.241rem;
    line-height: 1.241rem 0.1 0.4;
    color: #808080;
    margin: 0; }
.articles-grid .see-more {
  text-align: center; }

.page-navigation {
  display: block;
  text-align: center;
  margin-top: 6rem; }
  .page-navigation li {
    display: inline-block;
    vertical-align: top; }
  .page-navigation span, .page-navigation a {
    display: block;
    border: 0.1rem solid #122338;
    background-color: #122338;
    color: white;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.3432rem;
    line-height: 1.88048rem;
    font-weight: 300;
    padding: 1.5rem 4.5rem;
    margin-right: 1.5rem;
    vertical-align: top;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    border-radius: 5rem;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .page-navigation span:last-child, .page-navigation a:last-child {
      margin-right: 0; }
    .page-navigation span.page-numbers:not(.next, .prev), .page-navigation a.page-numbers:not(.next, .prev) {
      display: none; }
    .page-navigation span.current, .page-navigation a.current {
      display: none; }
    .page-navigation span.dots, .page-navigation a.dots {
      display: none; }
    .page-navigation span.next, .page-navigation span.prev, .page-navigation a.next, .page-navigation a.prev {
      border: 0.1rem solid #2e3030;
      background-color: transparent;
      color: #2e3030;
      padding: 1.5rem 4.5rem;
      text-decoration: none; }
      .page-navigation span.next:hover, .page-navigation span.next:active, .page-navigation span.next:focus, .page-navigation span.prev:hover, .page-navigation span.prev:active, .page-navigation span.prev:focus, .page-navigation a.next:hover, .page-navigation a.next:active, .page-navigation a.next:focus, .page-navigation a.prev:hover, .page-navigation a.prev:active, .page-navigation a.prev:focus {
        border: 0.1rem solid #2e3030;
        background-color: #2e3030;
        color: white; }

.articles-index .hero.full-height, .archive .hero.full-height, .is-404 .hero.full-height {
  min-height: calc(80vh - 3rem); }
.articles-index .hero .background-hero, .archive .hero .background-hero, .is-404 .hero .background-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
.articles-index .hero .content-wrapper, .archive .hero .content-wrapper, .is-404 .hero .content-wrapper {
  display: grid;
  align-items: center;
  grid-auto-rows: auto 1fr;
  padding-bottom: calc( 12rem + 6rem + 4.2705rem); }
  .articles-index .hero .content-wrapper .hero-title, .archive .hero .content-wrapper .hero-title, .is-404 .hero .content-wrapper .hero-title {
    margin-bottom: 0;
    grid-auto-flow: column; }
    .articles-index .hero .content-wrapper .hero-title .current-cat, .archive .hero .content-wrapper .hero-title .current-cat, .is-404 .hero .content-wrapper .hero-title .current-cat {
      margin-left: 0.5rem;
      color: #2e3030;
      font-style: italic;
      font-size: 65%; }
    .articles-index .hero .content-wrapper .hero-title .big, .archive .hero .content-wrapper .hero-title .big, .is-404 .hero .content-wrapper .hero-title .big {
      text-transform: uppercase;
      font-size: 11.4975rem;
      line-height: 10.67625rem;
      font-weight: 300; }
      .articles-index .hero .content-wrapper .hero-title .big:first-of-type, .archive .hero .content-wrapper .hero-title .big:first-of-type, .is-404 .hero .content-wrapper .hero-title .big:first-of-type {
        margin-top: 3rem; }
  .articles-index .hero .content-wrapper .blog-buttons-wrapper .link-button.active, .archive .hero .content-wrapper .blog-buttons-wrapper .link-button.active, .is-404 .hero .content-wrapper .blog-buttons-wrapper .link-button.active {
    pointer-events: none; }

.is-404 .hero .content-wrapper .hero-title {
  grid-auto-flow: dense; }

/*------------------------------------*\
Article & Search
\*------------------------------------*/
.articles-index.archive .content-wrapper .hero .hero-title .big, .articles-index.is-404 .content-wrapper .hero .hero-title .big {
  text-transform: uppercase;
  font-size: 11.4975rem;
  line-height: 10.67625rem;
  font-weight: 300; }
  .articles-index.archive .content-wrapper .hero .hero-title .big:first-of-type, .articles-index.is-404 .content-wrapper .hero .hero-title .big:first-of-type {
    margin-top: 3rem; }

.search-hero .content-wrapper {
  padding-bottom: 6rem !important; }
  .search-hero .content-wrapper .search-wrapper {
    align-items: end; }
    .search-hero .content-wrapper .search-wrapper h1::before {
      content: none; }

/*------------------------------------*\
Article
\*------------------------------------*/
.article .single-wrapper {
  display: grid;
  grid-template-columns: 70fr minmax(30rem, 30fr);
  grid-column-gap: 3rem;
  grid-row-gap: 0;
  padding-top: 3rem; }
  .article .single-wrapper .thumbnail {
    grid-column: span 2;
    width: 100%;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    margin-bottom: 1.5rem; }
    @supports not (aspect-ratio: 16/9) {
      .article .single-wrapper .thumbnail::before {
        content: '';
        padding-top: 100%; } }
  .article .single-wrapper .article-wrapper .article-header {
    font-size: 1.46rem; }
    .article .single-wrapper .article-wrapper .article-header h1 {
      font-size: 4.9275rem;
      line-height: 5.765175rem;
      margin: 0 0 1rem; }
    .article .single-wrapper .article-wrapper .article-header h3 {
      font-size: 2.19rem;
      line-height: 2.847rem;
      color: #808080;
      margin: 0 0 1.752rem; }
    .article .single-wrapper .article-wrapper .article-header .post-info {
      font-size: 1.241rem;
      line-height: 1.241rem 0.1 0.4;
      margin: 0 0 1.241rem;
      display: grid;
      grid-template-columns: auto auto auto 1fr;
      align-items: center;
      grid-gap: 0 0.5rem; }
      .article .single-wrapper .article-wrapper .article-header .post-info .date {
        display: inline-block;
        color: #808080; }
      .article .single-wrapper .article-wrapper .article-header .post-info span {
        margin: 0; }
      .article .single-wrapper .article-wrapper .article-header .post-info .category {
        display: inline-block;
        font-weight: bold;
        text-transform: uppercase;
        color: #2e3030; }
        .article .single-wrapper .article-wrapper .article-header .post-info .category a:hover, .article .single-wrapper .article-wrapper .article-header .post-info .category a:active, .article .single-wrapper .article-wrapper .article-header .post-info .category a:focus {
          color: #e5e9e9; }
      .article .single-wrapper .article-wrapper .article-header .post-info hr {
        grid-column: 1 / 5;
        display: block;
        margin: 1rem 0 3rem;
        width: 3rem;
        height: .2rem;
        background-color: #122338; }
      .article .single-wrapper .article-wrapper .article-header .post-info .share {
        display: grid;
        grid-gap: 1.5rem;
        grid-template-columns: repeat(4, auto);
        justify-content: end;
        align-items: center; }
        .article .single-wrapper .article-wrapper .article-header .post-info .share span {
          font-weight: 700;
          font-size: 1.241rem;
          line-height: 1.241rem 0.1 0.4; }
        .article .single-wrapper .article-wrapper .article-header .post-info .share a {
          width: 3rem;
          height: 3rem;
          color: white;
          padding: 1.5rem;
          background-position: center;
          background-size: 1.5rem;
          background-repeat: no-repeat;
          -webkit-border-radius: 5rem;
          -moz-border-radius: 5rem;
          border-radius: 5rem;
          -webkit-transition: all 0.2s;
          -moz-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s; }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a.in {
            background-image: url(../images/social-in.svg);
            filter: invert(1); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a.fb {
            background-image: url(../images/social-fb.svg);
            filter: invert(1); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a.tw {
            background-image: url(../images/social-tw.svg);
            filter: invert(1); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a.mail {
            background-image: url(../images/social-mail.svg);
            filter: invert(1); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a:hover.in, .article .single-wrapper .article-wrapper .article-header .post-info .share a:active.in, .article .single-wrapper .article-wrapper .article-header .post-info .share a:focus.in {
            filter: invert(26%) sepia(95%) saturate(1755%) hue-rotate(178deg) brightness(91%) contrast(89%); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a:hover.fb, .article .single-wrapper .article-wrapper .article-header .post-info .share a:active.fb, .article .single-wrapper .article-wrapper .article-header .post-info .share a:focus.fb {
            filter: invert(34%) sepia(13%) saturate(2576%) hue-rotate(183deg) brightness(93%) contrast(88%); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a:hover.tw, .article .single-wrapper .article-wrapper .article-header .post-info .share a:active.tw, .article .single-wrapper .article-wrapper .article-header .post-info .share a:focus.tw {
            filter: invert(57%) sepia(39%) saturate(6540%) hue-rotate(165deg) brightness(101%) contrast(103%); }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a:hover.mail, .article .single-wrapper .article-wrapper .article-header .post-info .share a:active.mail, .article .single-wrapper .article-wrapper .article-header .post-info .share a:focus.mail {
            filter: invert(73%) sepia(42%) saturate(6333%) hue-rotate(336deg) brightness(98%) contrast(97%); }
  .article .single-wrapper .article-wrapper .entry-content {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    -ms-animation: fadeIn 1s; }
    .article .single-wrapper .article-wrapper .entry-content .wp-caption-text {
      font-size: 1.3432rem;
      line-height: 1.88048rem;
      color: #808080;
      margin: 0.5rem 0 3rem;
      text-align: left; }
    .article .single-wrapper .article-wrapper .entry-content ul, .article .single-wrapper .article-wrapper .entry-content ol {
      counter-reset: list-content;
      margin-bottom: 3rem; }
      .article .single-wrapper .article-wrapper .entry-content ul li, .article .single-wrapper .article-wrapper .entry-content ol li {
        counter-increment: list-content;
        font-size: 1.752rem;
        line-height: 2.4528rem;
        margin-bottom: 1rem;
        text-indent: -1rem;
        padding-left: 4.5rem; }
        .article .single-wrapper .article-wrapper .entry-content ul li::before, .article .single-wrapper .article-wrapper .entry-content ol li::before {
          content: '/';
          margin-right: 0.75rem;
          display: inline-block;
          vertical-align: middle;
          color: #dd9641; }
    .article .single-wrapper .article-wrapper .entry-content ol li {
      text-indent: -1.5rem;
      padding-left: 4.5rem; }
      .article .single-wrapper .article-wrapper .entry-content ol li:nth-child(-n+9)::before {
        content: "0" counter(list-content) "."; }
      .article .single-wrapper .article-wrapper .entry-content ol li::before {
        content: counter(list-content) ".";
        font-size: 1.3432rem;
        font-weight: 600; }
    .article .single-wrapper .article-wrapper .entry-content a {
      color: #808080;
      text-decoration: underline; }
      .article .single-wrapper .article-wrapper .entry-content a:active, .article .single-wrapper .article-wrapper .entry-content a:focus, .article .single-wrapper .article-wrapper .entry-content a:hover {
        color: #e5e9e9; }
    .article .single-wrapper .article-wrapper .entry-content *:first-child {
      margin-top: 0; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .decor-related {
    margin-top: 3rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .decor-related::before {
      content: '/';
      font-size: 9.855rem;
      line-height: 12.8115rem; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper h4 {
    font-size: 1.3432rem;
    line-height: 1.88048rem;
    text-transform: uppercase;
    font-weight: 700; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper hr {
    width: 3rem;
    background-color: #2e3030;
    margin-left: 0; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post .thumbnail {
    margin-bottom: 0.5rem; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post a:hover {
    color: #606060; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post h3 {
    font-size: 1.752rem;
    line-height: 2.4528rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; }
  .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post p {
    font-size: 1.3432rem;
    line-height: 1.88048rem; }

.search-form {
  position: relative;
  display: inline-block;
  width: 100%; }
  .search-form .search-field {
    display: inline-block;
    vertical-align: middle;
    height: 5rem;
    width: 100%;
    padding: 1.5rem 1.5rem;
    background-color: white;
    border: 0.1rem solid #808080;
    font-size: 1.3432rem;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem; }
    .search-form .search-field:hover, .search-form .search-field:active, .search-form .search-field:focus {
      border: 0.1rem solid #122338; }
  .search-form .search-submit {
    display: block;
    font-size: 0;
    height: 0;
    width: 0;
    padding: 0; }

/*------------------------------------*\
General Style
\*------------------------------------*/
.main-canvas-wrapper {
  position: relative; }
  .main-canvas-wrapper .main-canvas-content .content {
    padding: 0; }
    .main-canvas-wrapper .main-canvas-content .content.page-template {
      width: 100%;
      max-width: 120rem;
      margin: 0 auto;
      padding: calc(12rem + 12rem) 3rem 6rem; }
      .main-canvas-wrapper .main-canvas-content .content.page-template ul, .main-canvas-wrapper .main-canvas-content .content.page-template ol {
        counter-reset: list-content;
        margin-bottom: 3rem; }
        .main-canvas-wrapper .main-canvas-content .content.page-template ul li, .main-canvas-wrapper .main-canvas-content .content.page-template ol li {
          counter-increment: list-content;
          font-size: 1.752rem;
          line-height: 2.4528rem;
          margin-bottom: 1rem;
          text-indent: -1rem;
          padding-left: 4.5rem; }
          .main-canvas-wrapper .main-canvas-content .content.page-template ul li::before, .main-canvas-wrapper .main-canvas-content .content.page-template ol li::before {
            content: '/';
            margin-right: 0.75rem;
            display: inline-block;
            vertical-align: middle;
            color: #dd9641; }
      .main-canvas-wrapper .main-canvas-content .content.page-template ol li {
        text-indent: -1.5rem;
        padding-left: 4.5rem; }
        .main-canvas-wrapper .main-canvas-content .content.page-template ol li:nth-child(-n+9)::before {
          content: "0" counter(list-content) "."; }
        .main-canvas-wrapper .main-canvas-content .content.page-template ol li::before {
          content: counter(list-content) ".";
          font-size: 1.3432rem;
          font-weight: 600; }
      .main-canvas-wrapper .main-canvas-content .content.page-template h1 {
        margin-top: 6rem; }
      .main-canvas-wrapper .main-canvas-content .content.page-template h2 {
        margin-top: 6rem; }
      .main-canvas-wrapper .main-canvas-content .content.page-template h3 {
        margin-top: 4.5rem; }
      .main-canvas-wrapper .main-canvas-content .content.page-template h4 {
        margin-top: 3rem; }
      .main-canvas-wrapper .main-canvas-content .content.page-template *:first-child {
        margin-top: 0; }

/*------------------------------------*\
Buttons
\*------------------------------------*/
.link-button {
  text-align: center;
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  background-color: #122338;
  color: white;
  padding: 3rem 4.5rem;
  border: 0.1rem solid #122338;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  border-radius: 6rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }
  .link-button.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content; }
  .link-button.big {
    padding: 3rem 9rem;
    font-size: 3.285rem;
    line-height: 4.2705rem;
    font-weight: 400; }
  .link-button:hover, .link-button:active, .link-button:focus {
    background-color: #606060;
    border: 0.1rem solid #606060;
    color: white; }
  .link-button.over-clear:hover, .link-button.over-clear:active, .link-button.over-clear:focus {
    background-color: #606060;
    border: 0.1rem solid #606060;
    color: white; }
  .link-button.border-only {
    background-color: transparent;
    color: #2e3030; }
    .link-button.border-only:hover, .link-button.border-only:active, .link-button.border-only:focus {
      background-color: #2e3030;
      border: 0.1rem solid #2e3030;
      color: white; }

/*------------------------------------*\
Home
\*------------------------------------*/
.home-hero {
  background-position: center bottom;
  background-size: cover; }
  .home-hero .content-wrapper {
    padding-bottom: calc(80vh); }
    .home-hero .content-wrapper .logo-hero-wrapper {
      display: grid;
      margin: 0 auto;
      grid-gap: 1rem;
      text-align: center;
      justify-content: center;
      justify-items: center; }
      .home-hero .content-wrapper .logo-hero-wrapper .vertical-waves .top, .home-hero .content-wrapper .logo-hero-wrapper .vertical-waves .middle, .home-hero .content-wrapper .logo-hero-wrapper .vertical-waves .bottom {
        background-color: white; }
      .home-hero .content-wrapper .logo-hero-wrapper .logo-wrapper {
        width: 100%;
        max-width: 15rem; }
      .home-hero .content-wrapper .logo-hero-wrapper .hero-text {
        color: #dd9641; }
        .home-hero .content-wrapper .logo-hero-wrapper .hero-text h1 {
          font-size: 4.9275rem;
          line-height: 6.40575rem; }
    .home-hero .content-wrapper .badge-torozos {
      width: 100%;
      max-width: 40rem;
      position: absolute;
      bottom: -8rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }

.origin-wrapper {
  position: relative; }
  .origin-wrapper .content-wrapper .intro-text .athena {
    font-style: normal; }
  .origin-wrapper .content-wrapper .senses-list {
    width: 100%;
    max-width: 36rem;
    margin: 4.5rem auto;
    text-align: center;
    display: grid;
    grid-gap: 4.5rem; }
    .origin-wrapper .content-wrapper .senses-list .sense::before {
      display: block;
      content: '';
      width: 4.5rem;
      height: 4.5rem;
      margin: 0 auto 1rem;
      background-color: #dd9641;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: contain; }
    .origin-wrapper .content-wrapper .senses-list .sense.touch::before {
      -webkit-mask-image: url(../images/decor-sense-touch.svg);
      mask-image: url(../images/decor-sense-touch.svg); }
    .origin-wrapper .content-wrapper .senses-list .sense.nose::before {
      -webkit-mask-image: url(../images/decor-sense-nose.svg);
      mask-image: url(../images/decor-sense-nose.svg); }
    .origin-wrapper .content-wrapper .senses-list .sense.eye::before {
      -webkit-mask-image: url(../images/decor-sense-eye.svg);
      mask-image: url(../images/decor-sense-eye.svg); }
    .origin-wrapper .content-wrapper .senses-list .sense.ear::before {
      -webkit-mask-image: url(../images/decor-sense-ear.svg);
      mask-image: url(../images/decor-sense-ear.svg); }
    .origin-wrapper .content-wrapper .senses-list .sense.mouth::before {
      -webkit-mask-image: url(../images/decor-sense-mouth.svg);
      mask-image: url(../images/decor-sense-mouth.svg); }
    .origin-wrapper .content-wrapper .senses-list .sense h3 {
      margin-bottom: 0.5rem; }
    .origin-wrapper .content-wrapper .senses-list .double-span {
      margin-top: 4.5rem;
      margin-bottom: 4.5rem; }

.name-wrapper .content-wrapper .name {
  text-align: center;
  margin-bottom: 6rem; }
  .name-wrapper .content-wrapper .name .big {
    font-size: 6.57rem;
    line-height: 5.9787rem;
    color: #dd9641; }
.name-wrapper .content-wrapper .logo-wrapper {
  width: 100%;
  max-width: 12rem;
  margin: 0 auto; }

.decor-wrapper-marta {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.where-wrapper {
  position: relative; }
  .where-wrapper .content-wrapper .img-torozos {
    display: block;
    width: 100%;
    max-width: 60rem;
    margin: 0 auto 6rem; }
  .where-wrapper .content-wrapper .gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
    margin-top: 9rem; }
    .where-wrapper .content-wrapper .gallery-wrapper li {
      -webkit-border-radius: 2rem;
      -moz-border-radius: 2rem;
      border-radius: 2rem;
      overflow: hidden; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(1) {
        border-bottom-right-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(2) {
        border-bottom-left-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(3) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(4) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(5) {
        border-top-right-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(6) {
        border-top-left-radius: 0; }

.honey-wrapper {
  position: relative; }
  .honey-wrapper .content-wrapper {
    color: #fbf9ea; }
    .honey-wrapper .content-wrapper .intro-text {
      margin-bottom: 9rem; }
    .honey-wrapper .content-wrapper .honey-jar-wrapper {
      display: grid;
      grid-gap: 9rem 1.5rem;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      margin-top: 3rem; }
      .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar {
        display: grid;
        justify-content: center;
        justify-items: center; }
        .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-jar-img {
          width: 100%;
          max-width: 45rem;
          margin-bottom: 4.5rem;
          position: relative;
          left: 7rem; }
        .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name {
          text-align: center;
          display: inline-block; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name p {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            font-size: 2.92rem;
            line-height: 3.796rem;
            color: #dd9641; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name p span {
              font-size: 3.942rem;
              line-height: 5.1246rem;
              letter-spacing: .2rem;
              display: block;
              padding: 0 2rem;
              background-color: #dd9641;
              color: #fbf9ea;
              -webkit-border-radius: 6rem;
              -moz-border-radius: 6rem;
              border-radius: 6rem; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name.encina p span {
            background-color: #a6c777; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name.lavanda p span {
            background-color: #b998bd; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name.milflores p span {
            background-color: #ef7987; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name.tomillo p span {
            background-color: #9999cb; }
        .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper {
          width: 100%;
          max-width: 50rem;
          background-color: #fbf9ea;
          -webkit-border-radius: 3rem;
          -moz-border-radius: 3rem;
          border-radius: 3rem;
          padding: 1rem; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper {
            border: 0.4rem solid #122338;
            -webkit-border-radius: 2rem;
            -moz-border-radius: 2rem;
            border-radius: 2rem;
            padding: 1.5rem 3rem 3rem;
            position: relative;
            min-height: 30rem; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner {
              position: absolute;
              display: block;
              width: 4rem;
              height: 4rem;
              background-color: #122338;
              -webkit-mask-repeat: no-repeat;
              -webkit-mask-position: center;
              -webkit-mask-size: contain;
              mask-repeat: no-repeat;
              mask-position: center;
              mask-size: contain;
              -webkit-mask-image: url(../images/decor-honey-jar-angle.svg);
              mask-image: url(../images/decor-honey-jar-angle.svg); }
              .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.top-left {
                top: 1rem;
                left: 1rem; }
              .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.top-right {
                top: 1rem;
                right: 1rem;
                -webkit-transform: rotate(90deg);
                -moz-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                transform: rotate(90deg); }
              .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.bottom-right {
                bottom: 1rem;
                right: 1rem;
                -webkit-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
              .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.bottom-left {
                bottom: 1rem;
                left: 1rem;
                -webkit-transform: rotate(270deg);
                -moz-transform: rotate(270deg);
                -ms-transform: rotate(270deg);
                transform: rotate(270deg); }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .honey-icon {
              display: block;
              width: 100%;
              max-width: 12rem;
              margin: 0 auto 1rem; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper p {
              color: #122338;
              font-size: 1.3432rem;
              line-height: 1.88048rem;
              text-align: center; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper h4 {
              color: #122338;
              text-align: center; }

.purchase-wrapper {
  position: relative; }

.contact-wrapper {
  position: relative;
  display: grid;
  justify-content: center; }
  .contact-wrapper .content-wrapper .contact-info-wrapper {
    background-color: white;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    border-radius: 3rem;
    padding: 1rem;
    margin-bottom: 6rem; }
    .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper {
      border: 0.4rem solid #122338;
      -webkit-border-radius: 2rem;
      -moz-border-radius: 2rem;
      border-radius: 2rem;
      padding: 0.5rem; }
      .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr; }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::before, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::after {
          content: '';
          display: block;
          width: 6rem;
          height: 6rem;
          margin: 0 auto;
          background-color: #122338;
          -webkit-mask-repeat: no-repeat;
          -webkit-mask-position: center;
          -webkit-mask-size: contain;
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: contain;
          -webkit-mask-image: url(../images/decor-honey.svg);
          mask-image: url(../images/decor-honey.svg); }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::before {
          margin-left: 0;
          -webkit-transform: rotate(135deg);
          -moz-transform: rotate(135deg);
          -ms-transform: rotate(135deg);
          transform: rotate(135deg); }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::after {
          margin-right: 0;
          -webkit-transform: rotate(-135deg);
          -moz-transform: rotate(-135deg);
          -ms-transform: rotate(-135deg);
          transform: rotate(-135deg); }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border.bottom::before {
          margin-left: 0;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border.bottom::after {
          margin-right: 0;
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
      .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details {
        text-align: center;
        padding: 3rem 9rem; }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info {
          margin-top: 0;
          margin-bottom: 0; }
          .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a {
            -webkit-transition: all 0.2s;
            -moz-transition: all 0.2s;
            -o-transition: all 0.2s;
            transition: all 0.2s; }
            .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a br {
              display: none; }
            .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a:hover, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a:active, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a:focus {
              color: #dd9641; }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper {
          display: grid;
          grid-gap: 1rem;
          margin-top: 3rem; }
          .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social {
            display: block;
            width: 3rem;
            height: 3rem;
            margin: 0 auto;
            background-color: #122338;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-position: center;
            -webkit-mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;
            -webkit-transition: all 0.2s;
            -moz-transition: all 0.2s;
            -o-transition: all 0.2s;
            transition: all 0.2s; }
            .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social:hover, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social:active, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social:focus {
              background-color: #dd9641; }
            .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social a {
              display: block;
              width: 100%;
              height: 100%;
              cursor: pointer; }
            .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .social-wrapper .social.ig {
              -webkit-mask-image: url(../images/social-ig.svg);
              mask-image: url(../images/social-ig.svg); }
  .contact-wrapper .content-wrapper .logo-wrapper {
    width: 100%;
    max-width: 15rem;
    margin: 0 auto; }
  .contact-wrapper .content-wrapper .logo-design-wrapper .logo-design {
    display: block;
    margin: 9rem auto 0;
    width: 9rem;
    height: 3rem;
    background-color: #122338;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(../images/logo-vacamorta.svg);
    mask-image: url(../images/logo-vacamorta.svg); }
    .contact-wrapper .content-wrapper .logo-design-wrapper .logo-design:hover, .contact-wrapper .content-wrapper .logo-design-wrapper .logo-design:active, .contact-wrapper .content-wrapper .logo-design-wrapper .logo-design:focus {
      background-color: #dd9641; }

.page-template .content-wrapper {
  padding-top: calc( 12rem + 9rem); }

#loading-screen {
  position: fixed;
  z-index: 999999;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #122338;
  color: white;
  padding: 0;
  display: grid;
  align-items: center;
  text-align: center;
  opacity: 1;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.68, 0, 0.35, 1.3);
  -moz-transition: all 0.5s cubic-bezier(0.68, 0, 0.35, 1.3);
  -o-transition: all 0.5s cubic-bezier(0.68, 0, 0.35, 1.3);
  transition: all 0.5s cubic-bezier(0.68, 0, 0.35, 1.3);
  transition-delay: 2s; }

.kit-digital-wrapper {
  padding: 9rem 1.5rem 3rem;
  display: grid;
  justify-content: center;
  justify-items: center; }
  .kit-digital-wrapper .kit-digital {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto; }

/*------------------------------------*\
Footer Basic
\*------------------------------------*/
footer {
  position: relative;
  width: 100%; }

/*------------------------------------*\
Cookies
\*------------------------------------*/
#cookieConsent {
  display: none;
  position: fixed;
  z-index: 999;
  right: 3rem;
  bottom: 3rem;
  background-color: white;
  color: #122338;
  padding: 1.5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  text-align: left; }
  #cookieConsent::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    background-image: url(../images/cookie-icon.svg);
    background-position: center;
    background-size: cover; }
  #cookieConsent p {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.3432rem;
    margin: 0; }
    #cookieConsent p br {
      display: none; }
    #cookieConsent p a {
      display: inline-block;
      color: #122338; }
      #cookieConsent p a:hover, #cookieConsent p a:active, #cookieConsent p a:focus {
        color: #2e3030; }
  #cookieConsent #consent-cookieConsent {
    display: inline-block;
    vertical-align: middle; }
    #cookieConsent #consent-cookieConsent span {
      background-color: #122338;
      border: 0.1rem solid #122338;
      font-weight: 700;
      font-size: 1.241rem;
      color: white;
      padding: 1rem 1.5rem;
      margin-left: 1.5rem;
      cursor: pointer;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      -webkit-border-radius: 5rem;
      -moz-border-radius: 5rem;
      border-radius: 5rem; }
      #cookieConsent #consent-cookieConsent span:hover, #cookieConsent #consent-cookieConsent span:active, #cookieConsent #consent-cookieConsent span:focus {
        background-color: #808080;
        border: 0.1rem solid #808080;
        color: white; }

/*------------------------------------*\
/*------------------------------------*\
   Responsive
/*------------------------------------*\
\*------------------------------------*/
@media (min-width: 1920px) {
  #off-canvas .overflow .menu .menu-item a {
    font-size: calc(3.285rem * 3);
    line-height: calc(4.2705rem * 3); }
  #off-canvas .overflow .menu .menu-title {
    top: -2rem; }
    #off-canvas .overflow .menu .menu-title a {
      font-size: 1.3432rem;
      line-height: 1.88048rem; }
  #off-canvas .overflow .bottom-wrapper .blog-link a {
    font-size: calc(3.285rem * 3);
    line-height: calc(4.2705rem * 3); }
  #off-canvas .overflow .bottom-wrapper .menu-title {
    margin-bottom: 1.5rem; } }
@media (min-width: 920px) and (max-width: 1280px) {
  #off-canvas .overflow .menu .menu-item a {
    font-size: calc(3.285rem * 2);
    line-height: calc(4.2705rem * 2); }
  #off-canvas .overflow .menu .menu-title {
    top: -2rem; }
    #off-canvas .overflow .menu .menu-title a {
      font-size: 1.3432rem;
      line-height: 1.88048rem; }
  #off-canvas .overflow .bottom-wrapper .blog-link a {
    font-size: calc(3.285rem * 2);
    line-height: calc(4.2705rem * 2); }
  #off-canvas .overflow .bottom-wrapper .menu-title {
    margin-bottom: 1.5rem; }

  	/*------------------------------------*\
  	    Home
      \*------------------------------------*/
  /*------------------------------------*\
  Blog
  \*------------------------------------*/
  .articles-grid .content-wrapper .search-wrapper {
    grid-template-columns: auto minmax(20rem, 1fr); }
    .articles-grid .content-wrapper .search-wrapper h1 {
      margin: 0; }

  /*------------------------------------*\
  Footer Basic
  \*------------------------------------*/
  footer .footer-wrapper {
    grid-gap: 3rem; } }
/**/
@media (max-width: 920px) {
  /** DEFAULT STYLES **/
  body * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: text;
    /* Safari */
    -khtml-user-select: text;
    /* Konqueror HTML */
    -moz-user-select: text;
    /* Old versions of Firefox */
    -ms-user-select: text;
    /* Internet Explorer/Edge */
    user-select: text;
    /* Non-prefixed version, currently
       supported by Chrome, Opera and Firefox */ }
  body.small-header header .top-bar {
    padding: 1rem 1.5rem; }
    body.small-header header .top-bar .header-logo a img {
      height: 3rem; }

  /* General */
  /*------------------------------------*\
  Wrappers and common
  \*------------------------------------*/
  .center-wrapper .content-wrapper {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 6rem 1.5rem; }

  .full-wrapper {
    width: 100%; }
    .full-wrapper .content-wrapper {
      width: 100%;
      padding: 0 1.5rem; }

  .full-width {
    width: 100% !important;
    margin-left: 0; }
    .full-width .content-wrapper {
      width: 100%;
      padding: 0 1.5rem; }

  .center-wrapper-wide {
    width: 100%; }
    .center-wrapper-wide .content-wrapper {
      width: 100%;
      max-width: 120rem;
      margin: 0 auto;
      padding: 6rem 1.5rem; }

  .script {
    font-size: calc( 4.8rem + .5vw);
    line-height: 6.48rem; }

  .section-title {
    font-size: 3.9rem;
    line-height: 3.6rem; }

  .intro-text {
    font-size: 1.44rem;
    line-height: 1.872rem;
    max-width: 30rem; }

  .vertical-wrapper {
    display: none; }

  .wpcf7 .wpcf7-form.submitting .link-submit .ajax-loader {
    position: absolute;
    right: 1rem;
    width: 5rem;
    height: 100%;
    margin-left: 0; }
  .wpcf7 input[type="text"], .wpcf7 input[type="tel"], .wpcf7 input[type="email"] {
    font-size: 1.356rem; }
  .wpcf7 textarea {
    font-size: 1.356rem; }

  a.anchor {
    top: -7.5rem; }

  /*------------------------------------*\
  MENU Style
  \*------------------------------------*/
  header .top-bar {
    align-items: center;
    padding: 1rem 1.5rem;
    grid-template-columns: auto 1fr;
    grid-gap: 1rem; }
    header .top-bar .header-logo a img {
      height: 3rem; }
    header .top-bar #off-canvas-topmenu {
      width: 4rem; }
    header .top-bar .top-bar-wrapper {
      grid-template-columns: 1fr; }
      header .top-bar .top-bar-wrapper .header-contact {
        display: none; }
      header .top-bar .top-bar-wrapper .menu {
        justify-self: end; }

  #off-canvas {
    padding: calc( 7.5rem + 6rem) 3rem 3rem; }
    #off-canvas .overflow {
      grid-template-rows: auto auto 1fr;
      grid-template-columns: 1fr;
      grid-gap: 0; }
      #off-canvas .overflow .contact-wrapper {
        padding-top: 0;
        margin-bottom: 6rem;
        grid-row: 1;
        grid-column: 1; }
      #off-canvas .overflow .menu {
        grid-row: 2;
        grid-column: 1;
        margin-bottom: 3rem; }
        #off-canvas .overflow .menu .menu-item a {
          text-transform: uppercase;
          display: inline-block;
          font-size: calc(1.92rem + 2vw);
          line-height: calc(2.496rem + 2vw); }
        #off-canvas .overflow .menu .menu-title {
          top: -1.5rem;
          left: 0; }
          #off-canvas .overflow .menu .menu-title a {
            font-size: 1.356rem;
            line-height: 1; }
      #off-canvas .overflow .bottom-wrapper {
        grid-row: 3;
        grid-column: 1;
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
        align-self: start; }
        #off-canvas .overflow .bottom-wrapper > :nth-child(3) {
          grid-row: 1; }
        #off-canvas .overflow .bottom-wrapper a:hover, #off-canvas .overflow .bottom-wrapper a:active, #off-canvas .overflow .bottom-wrapper a:focus {
          color: #808080; }
        #off-canvas .overflow .bottom-wrapper .blog-link {
          text-align: left; }
          #off-canvas .overflow .bottom-wrapper .blog-link a {
            font-size: calc(1.92rem + 2vw);
            line-height: calc(2.496rem + 2vw); }
        #off-canvas .overflow .bottom-wrapper .menu-title {
          margin-bottom: 0.5rem;
          font-size: 1.356rem; }
        #off-canvas .overflow .bottom-wrapper .phone {
          font-size: calc(1.356rem + 2vw);
          line-height: calc(1.104rem + 2vw); }
        #off-canvas .overflow .bottom-wrapper .address {
          font-size: 1.356rem;
          line-height: 1.7628rem; }
        #off-canvas .overflow .bottom-wrapper .privacy-menu p, #off-canvas .overflow .bottom-wrapper .privacy-menu a {
          font-size: 1.356rem;
          line-height: 1.7628rem; }

  /*------------------------------------*\
  General Style
  \*------------------------------------*/
  .fadeIn.up {
    top: 0; }

  .main-canvas-wrapper {
    padding-bottom: 0; }
    .main-canvas-wrapper .main-canvas-content .content {
      padding: 0; }
      .main-canvas-wrapper .main-canvas-content .content.page-template {
        padding: calc(7.5rem + 3rem) 1.5rem 3rem; }
        .main-canvas-wrapper .main-canvas-content .content.page-template ul, .main-canvas-wrapper .main-canvas-content .content.page-template ol {
          margin-top: 1.5rem; }
          .main-canvas-wrapper .main-canvas-content .content.page-template ul li, .main-canvas-wrapper .main-canvas-content .content.page-template ol li {
            font-size: 1.356rem;
            line-height: 1.7628rem; }
        .main-canvas-wrapper .main-canvas-content .content.page-template ol li::before {
          font-size: 1.356rem; }

  .icon-scroll-wrapper {
    display: none; }

  .double-padding-bottom {
    padding-bottom: 6rem !important; }

  .double-padding-top {
    padding-top: 6rem !important; }

  /*------------------------------------*\
  Buttons
  \*------------------------------------*/
  .page-navigation li {
    margin-top: 0; }
    .page-navigation li:first-child {
      margin-top: 0; }

  /*------------------------------------*\
  Home
  \*------------------------------------*/
  .home-hero {
    background-position-x: 43%; }
    .home-hero .content-wrapper {
      padding-bottom: 72vh; }
      .home-hero .content-wrapper .logo-hero-wrapper .logo-wrapper {
        max-width: 9rem; }
      .home-hero .content-wrapper .logo-hero-wrapper .hero-text h1 {
        font-size: 4.5rem;
        line-height: 5.4rem; }
      .home-hero .content-wrapper .badge-torozos {
        width: calc(100% - 6rem); }

  .name-wrapper .content-wrapper .name .big {
    font-size: 4.5rem;
    line-height: 4.32rem; }

  .where-wrapper .content-wrapper .gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.5rem;
    margin-top: 9rem; }
    .where-wrapper .content-wrapper .gallery-wrapper li {
      -webkit-border-radius: 2rem;
      -moz-border-radius: 2rem;
      border-radius: 2rem;
      overflow: hidden; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(1) {
        border-bottom-right-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(2) {
        border-bottom-left-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(3) {
        border-top-right-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(4) {
        border-top-left-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(5) {
        border-top-left-radius: 0; }
      .where-wrapper .content-wrapper .gallery-wrapper li:nth-child(6) {
        border-top-left-radius: 0; }

  .honey-wrapper .content-wrapper {
    overflow: hidden; }
    .honey-wrapper .content-wrapper .honey-jar-wrapper {
      grid-template-columns: 1fr; }
      .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-jar-img {
        max-width: 30rem;
        left: 4.5rem; }
      .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name p {
        font-size: 1.92rem;
        line-height: 2.496rem; }
        .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .honey-name p span {
          font-size: 3rem;
          line-height: 3.6rem;
          letter-spacing: .2rem; }
      .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper {
        padding: 0.5rem;
        -webkit-border-radius: 2.5rem;
        -moz-border-radius: 2.5rem;
        border-radius: 2.5rem; }
        .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper {
          -webkit-border-radius: 2rem;
          -moz-border-radius: 2rem;
          border-radius: 2rem;
          padding: 1rem 1.5rem 3rem;
          min-height: 0; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner {
            width: 4rem;
            height: 4rem; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.top-left {
              top: .65rem;
              left: .65rem; }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.top-right {
              top: .65rem;
              right: .65rem;
              -webkit-transform: rotate(90deg);
              -moz-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.bottom-right {
              bottom: .65rem;
              right: .65rem;
              -webkit-transform: rotate(180deg);
              -moz-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
            .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .inner-label-corner.bottom-left {
              bottom: .65rem;
              left: .65rem;
              -webkit-transform: rotate(270deg);
              -moz-transform: rotate(270deg);
              -ms-transform: rotate(270deg);
              transform: rotate(270deg); }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper .honey-icon {
            max-width: 9rem; }
          .honey-wrapper .content-wrapper .honey-jar-wrapper .honey-jar .label-wrapper .inner-label-wrapper p {
            font-size: 1.356rem;
            line-height: 1.7628rem; }

  .purchase-wrapper {
    position: relative; }

  .contact-wrapper {
    justify-content: normal; }
    .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper {
      border: 0.4rem solid #122338;
      -webkit-border-radius: 2rem;
      -moz-border-radius: 2rem;
      border-radius: 2rem;
      padding: 0.5rem; }
      .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::before, .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-border::after {
        width: 4.5rem;
        height: 4.5rem; }
      .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details {
        text-align: center;
        padding: 2rem; }
        .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info {
          word-break: break-word;
          margin-bottom: 1rem; }
          .contact-wrapper .content-wrapper .contact-info-wrapper .contact-info-inner-wrapper .contact-info-details .contact-info a br {
            display: block; }
    .contact-wrapper .content-wrapper .logo-wrapper {
      max-width: 12rem; }

  	/*------------------------------------*\
      Contact
      \*------------------------------------*/
  /*------------------------------------*\
  Blog
  \*------------------------------------*/
  .articles-index .hero .content-wrapper .hero-title .big, .archive .hero .content-wrapper .hero-title .big, .is-404 .hero .content-wrapper .hero-title .big {
    text-transform: uppercase;
    font-size: 3.6rem;
    line-height: 4.32rem; }
  .articles-index .hero .content-wrapper .categories-wrapper, .archive .hero .content-wrapper .categories-wrapper, .is-404 .hero .content-wrapper .categories-wrapper {
    top: auto;
    bottom: calc(7.5rem + 4.5rem);
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    .articles-index .hero .content-wrapper .categories-wrapper a, .articles-index .hero .content-wrapper .categories-wrapper span, .archive .hero .content-wrapper .categories-wrapper a, .archive .hero .content-wrapper .categories-wrapper span, .is-404 .hero .content-wrapper .categories-wrapper a, .is-404 .hero .content-wrapper .categories-wrapper span {
      margin-bottom: 1.5rem; }
      .articles-index .hero .content-wrapper .categories-wrapper a:last-child, .articles-index .hero .content-wrapper .categories-wrapper span:last-child, .archive .hero .content-wrapper .categories-wrapper a:last-child, .archive .hero .content-wrapper .categories-wrapper span:last-child, .is-404 .hero .content-wrapper .categories-wrapper a:last-child, .is-404 .hero .content-wrapper .categories-wrapper span:last-child {
        margin-bottom: 0; }

  .articles-grid .content-wrapper .search-wrapper {
    grid-template-columns: 1fr; }
    .articles-grid .content-wrapper .search-wrapper h1 {
      margin: 0 auto;
      text-align: center; }
      .articles-grid .content-wrapper .search-wrapper h1::before {
        vertical-align: middle;
        position: relative;
        display: inline-block;
        width: 2rem;
        height: 1.5rem;
        transform-origin: center;
        left: 0;
        top: 0; }
    .articles-grid .content-wrapper .search-wrapper .search-form {
      text-align: center; }
  .articles-grid .content-wrapper .articles-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-column: 1 / 3; }
    .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail {
      width: 100%;
      aspect-ratio: 16/9;
      height: auto;
      max-height: none; }
      @supports not (aspect-ratio: 16/9) {
        .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail {
          height: 55vw;
          max-height: 45rem; }
          .articles-grid .content-wrapper .articles-wrapper article .article-header .post-thumbnail.no-thumbnail {
            height: 55vw;
            max-height: 45rem; } }
    .articles-grid .content-wrapper .articles-wrapper article .article-header h2 {
      font-size: 1.92rem;
      line-height: 2.496rem; }
    .articles-grid .content-wrapper .articles-wrapper article .entry-content h3 {
      font-size: 1.356rem;
      line-height: 1.7628rem;
      font-weight: 400;
      margin: 0 0 0.5rem; }
    .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new {
      display: none;
      font-size: 1.356rem;
      line-height: 1.7628rem;
      font-weight: 700;
      color: #2e3030; }
      .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:active, .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:focus, .articles-grid .content-wrapper .articles-wrapper article .entry-content a.see-more-new:hover {
        color: #e5e9e9; }
    .articles-grid .content-wrapper .articles-wrapper article .entry-content .date {
      font-size: 1.104rem;
      line-height: 1.7628rem;
      color: #808080;
      margin: 0; }
  .articles-grid .page-navigation {
    font-size: 1.356rem; }
    .articles-grid .page-navigation span, .articles-grid .page-navigation a {
      padding: 1rem 3rem;
      font-size: 1.356rem; }

  /*------------------------------------*\
  Article
  \*------------------------------------*/
  .article .single-wrapper {
    grid-template-columns: 1fr;
    padding-top: 1.5rem; }
    .article .single-wrapper .thumbnail {
      grid-column: 1;
      width: 100%;
      aspect-ratio: 16/9;
      margin-bottom: 1.5rem; }
      @supports not (aspect-ratio: 16/9) {
        .article .single-wrapper .thumbnail {
          position: relative; }
          .article .single-wrapper .thumbnail a {
            position: absolute;
            top: 0;
            left: 0; }
          .article .single-wrapper .thumbnail::before {
            content: '';
            padding-top: 56.25%;
            display: block;
            width: 100%; } }
    .article .single-wrapper .article-wrapper .article-header {
      font-size: 1.2rem; }
      .article .single-wrapper .article-wrapper .article-header h1 {
        font-size: 2.4rem;
        line-height: 2.88rem; }
      .article .single-wrapper .article-wrapper .article-header h3 {
        font-size: 1.92rem;
        line-height: 2.496rem; }
      .article .single-wrapper .article-wrapper .article-header .post-info {
        font-size: 1.104rem;
        line-height: 1.7628rem;
        margin: 0 0 1.104rem;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        grid-gap: 0 1rem; }
        .article .single-wrapper .article-wrapper .article-header .post-info .date {
          display: inline-block;
          color: #808080; }
        .article .single-wrapper .article-wrapper .article-header .post-info span {
          margin: 0; }
        .article .single-wrapper .article-wrapper .article-header .post-info .category {
          display: inline-block;
          font-weight: bold;
          text-transform: uppercase;
          color: #2e3030; }
          .article .single-wrapper .article-wrapper .article-header .post-info .category a:hover, .article .single-wrapper .article-wrapper .article-header .post-info .category a:active, .article .single-wrapper .article-wrapper .article-header .post-info .category a:focus {
            color: #e5e9e9; }
        .article .single-wrapper .article-wrapper .article-header .post-info hr {
          grid-column: 1; }
        .article .single-wrapper .article-wrapper .article-header .post-info .share {
          margin-top: 1rem;
          grid-column: span 3;
          grid-row: 2;
          grid-gap: 1rem;
          justify-content: start; }
          .article .single-wrapper .article-wrapper .article-header .post-info .share a {
            width: 2rem;
            height: 2rem; }
    .article .single-wrapper .article-wrapper .entry-content ul, .article .single-wrapper .article-wrapper .entry-content ol {
      margin-top: 1.5rem; }
      .article .single-wrapper .article-wrapper .entry-content ul li, .article .single-wrapper .article-wrapper .entry-content ol li {
        font-size: 1.356rem;
        line-height: 1.7628rem; }
    .article .single-wrapper .article-wrapper .entry-content ol li::before {
      font-size: 1.356rem; }
    .article .single-wrapper .article-wrapper .entry-content .wp-caption-text {
      font-size: 1.356rem;
      line-height: 1.7628rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .decor-related::before {
      content: '/';
      font-size: 9rem;
      line-height: 10.8rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper h4 {
      font-size: 1.356rem;
      line-height: 1.7628rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper hr {
      margin-top: 1rem;
      margin-bottom: 1.5rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post .thumbnail {
      margin-bottom: 1rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post h3 {
      font-size: 1.356rem;
      line-height: 1.7628rem; }
    .article .single-wrapper .sidebar-wrapper .related-posts-wrapper .related-post p {
      font-size: 1.356rem;
      line-height: 1.7628rem; }

  .page-template .content-wrapper {
    padding-top: calc( 7.5rem + 3rem); }

  /*------------------------------------*\
  Footer Basic
  \*------------------------------------*/
  footer .footer-wrapper {
    padding: 9rem 1.5rem 3rem;
    grid-template-columns: 1fr;
    grid-gap: 3rem; }
    footer .footer-wrapper .footer-menu a {
      font-size: 1.356rem;
      line-height: 1.7628rem;
      color: #122338; }
      footer .footer-wrapper .footer-menu a:hover, footer .footer-wrapper .footer-menu a:active, footer .footer-wrapper .footer-menu a:focus {
        color: #2e3030; }

  /*------------------------------------*\
  Cookies
  \*------------------------------------*/
  #cookieConsent {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }
    #cookieConsent p {
      font-size: 1.104rem;
      line-height: 1.7628rem;
      margin: 0; }
      #cookieConsent p br {
        display: inline; }
      #cookieConsent p a {
        margin: 0; }
    #cookieConsent #consent-cookieConsent {
      display: block;
      vertical-align: top;
      text-align: center;
      margin-top: 1.5rem; }
      #cookieConsent #consent-cookieConsent span {
        display: block;
        width: 100%;
        max-width: 15rem;
        margin: 0 auto; } }
