/*GENERAL
--------------------------------------*/
:root {
    --beige: #e1dad4;
    --marron: #baaea3;
    --verde: #112b2a;
    --gris: #606060;
    --ladrillo-1: #ab7046;
    --ladrillo-2: #824d28;
    --blanco: #ffffff;
}

body {
    font: normal normal 24px 'Epilogue', sans-serif;
    color: #F5F5F5;
    overflow-x: hidden;
    width: 100vw;
}

body.pace-running:before {
    opacity: 1
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: currentColor;
}

a {
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

p {
    margin: 0;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.only-mobile{
    display: none;
}

#main-container {
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.parallax-mirror {
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.pace-done #main-container {
    opacity: 1 !important
}

.pace-done .parallax-mirror {
    opacity: 1
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.inner-wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0 15px;
}

.inner-wrapper.col-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

a.btn,
input.btn {
    height: 68px;
    padding: 0 40px;
    line-height: 68px;
    background: #1780eb;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    color: var(--blanco);
    font-size: 21px;
    font-weight: 700;
    border-radius: 10px;
    margin: 0 auto 0 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

a.btn:hover,
input.btn:hover {
    background: #268ffb;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:focus::-webkit-input-placeholder {
    opacity: .3
}

:focus::-moz-placeholder {
    opacity: .3
}

:focus:-ms-input-placeholder {
    opacity: .3
}

:focus:-moz-placeholder {
    opacity: .3
}

/*LAYOUT
--------------------------------------*/
#header {
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 60;
    padding: 50px 0;
    transition: transform .3s;
}

#header.headroom--unpinned{
    transform: translateY(-200px);
}

#logo {
    display: block;
    width: 150px;
    margin-bottom: 35px;
}

#logo img {
    width: 100%;
}

#burger {
    width: 40px;
    height: 20px;
    background: url(../img/burger.svg) no-repeat center;
    border: unset;
    position: absolute;
    right: 40px;
    top: 65px;
}

#social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform .3s, box-shadow .3s;
}

#social a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#social a img {
    width: 35px;
    height: 35px;
}

#social a:last-child {
    background: #25D366; /* WhatsApp Green */
    margin-bottom: 0;
}

#nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    z-index: 9999;
    background: var(--verde);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .6s;
    text-align: center;
}

#burger-close{
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url(../img/cross.svg) no-repeat center;
    border: none;
    margin: 20px;
}

#nav.visible {
    transform: translateX(0);
}


#nav li {
    opacity: 0;
    transform: translateX(10%);
    transition: transform .6s, opacity .6s;
    padding-bottom: 15px;
}

#nav.visible li{
    opacity: 1;
    transform: translateX(0);
}

#nav.visible li:nth-child(1){
    transition-delay: .5s;
}

#nav.visible li:nth-child(2){
    transition-delay: .6s;
}

#nav.visible li:nth-child(3){
    transition-delay: .7s;
}

#nav.visible li:nth-child(4){
    transition-delay: .8s;
}

#nav.visible li:nth-child(5){
    transition-delay: .9s;
}

#nav.visible li:nth-child(6){
    transition-delay: 1s;
}


#nav.closed {
    transform: translateX(100%);
    transition-delay: .6s
}

#nav.closed li{
    opacity: 0;
    transform: translateX(10%);
}

#nav.closed li:nth-child(1){
    transition-delay: .5s;
}

#nav.closed li:nth-child(2){
    transition-delay: .4s;
}

#nav.closed li:nth-child(3){
    transition-delay: .3s;
}

#nav.closed li:nth-child(4){
    transition-delay: .2s;
}

#nav.closed li:nth-child(5){
    transition-delay: .1s;
}

#nav.closed li:nth-child(6){
    transition-delay: 0s;
}


#nav a {}

.slicknav_menu {
    position: absolute;
    right: 0;
    top: 18px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    width: 100%;
    display: none;
    z-index: 10;
}

.slicknav_nav {
    clear: both;
    color: var(--blanco);
    margin: 0;
    background: rgb(124 43 251 / 88%);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    top: 65px;
    left: 0;
    text-align: center;
    color: var(--blanco);
    padding: 15px 0 0;
}

.slicknav_nav ul {
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slicknav_nav li {
    margin-bottom: 30px;
    color: var(--blanco);
}

.slicknav_nav li a.active,
.slicknav_nav li a.focus,
.slicknav_nav a:hover {
    color: #00a651;
    background: unset;
}

.slicknav_btn {
    background: unset;
    margin: 10px 5px 6px;
}

.slicknav_menu .slicknav_icon-bar {
    background: #f00;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#footer {
    color: var(--blanco);
    background: var(--verde);
    padding: 25px 0;
}

#footer-content {
    border-top: 1px solid var(--blanco);
    padding-top: 12px;
}

.footer-col {}

#logo-footer {}

#logo-footer-worldarchefest {}

#footer small {
    font-size: 18px;
}

#main {
    text-align: center;
    min-height: 1650px;
    background: url(../img/main.jpg) no-repeat center / cover;
    color: var(--blanco);
    padding-top: 175px;
}
.webp #main{
    background: url(../img/main.webp) no-repeat center / cover;
}

#main h1 {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    font-size: 60px;
    margin: 50px 0px;
}

#main button {
    font-size: 20px;
    width: 170px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: unset;
    color: var(--blanco);
    border: 1px solid currentColor;
    margin-bottom: 70px;
}

#main #video {
    width: 100%;
    height: 690px;
    background: #ccc;
    position: relative;
}

#main #video-cover{
    display:block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/preview-video.jpg) no-repeat center / cover;
}
.webp #main #video-cover{
    background: url(../img/preview-video.webp) no-repeat center / cover;
}

#main #video #player{
    width: 100%;
    height: 100%;
}

#feat {
    min-height: 630px;
    height: 1px;
    background:var(--beige);
}

#feat-list {
    max-width: 615px;
    background: var(--marron);
    padding: 100px 115px 45px 75px;
    text-align: center;
}

#feat-list img {
    margin-bottom: 15px;
}

#feat-list span {
    font-size: 18px;
    line-height: 1.3;
    display: block;
}

#feat-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/feat.jpg) no-repeat center / cover;
}

.webp #feat-img {
    background: url(../img/feat.webp) no-repeat center / cover;
}

#about {
    overflow-x: hidden;
    background:var(--beige)
}

.about-item {
    min-height: 650px;
    position: relative;
    z-index: 1;
}

#about .about-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#about-img-1 {
    background-image: url(../img/about-1.jpg);
}
.webp #about-img-1 {
    background-image: url(../img/about-1.webp);
}

#about-img-2 {
    background-image: url(../img/about-2.jpg);
}

.webp #about-img-2 {
    background-image: url(../img/about-2.webp);
}

#about .about-txt {
    background: var(--verde);
    max-width: 615px;
    padding: 40px;
}

#about .about-txt h3 {
    font-family: 'Archivo';
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--beige);
}

#about .about-txt p {
    font-size: 30px;
    line-height: 48px;
    max-width: 540px;
}

#about-main-img {
    position: relative;
    z-index: 0;
}

#about-main-img img {
    width: 100%;
}

#sustainability {
    min-height: 980px;
    height: 1px;
    background: var(--verde);
    overflow: hidden;
}

#sustainability #sustainability-container {
    height: 100%;
    overflow: hidden;
}


#sustainability .sustainability-section {
    width: 100vw;
}

#sustainability .sustainability-section .row {
    width: 100vw;
}

#sustainability .sustainability-section h2 {
    font-family: 'Archivo';
    font-weight: 300;
    font-size: 45px;
    line-height: 49px;
    color: var(--beige);
    margin-bottom: 35px;
    position: relative;
}

#sustainability .sustainability-section h2 span {
    position: relative;
}

#sustainability .sustainability-section h2:before {
    display: block;
    content: '';
    width: 134px;
    height: 134px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: url(../img/ico-title-1.svg) no-repeat center / 100%;
    z-index: 0;
}

#sustainability .sustainability-section-content {
    padding: 205px 115px 205px 152px;
}

#sustainability .sustainability-section p {
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
    color: var(--blanco);
}

#sustainability .sustainability-section-bottom {
    padding-top: 155px;
}

#sustainability .sustainability-section-bottom .sustainability-logo {}

#sustainability .sustainability-section-bottom span {
    font-size: 14px;
    line-height: 21px;
    color: var(--blanco);
    max-width: 295px;
    padding-left:25px;
}

#sustainability .sustainability-section .sustainability-img-container {
    height: 100%;
}

#sustainability .sustainability-section .sustainability-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#sustainability .sustainability-section.section-1 .sustainability-img {
    background-image: url(../img/sustainability-1.jpg);
}

#sustainability .sustainability-section.section-2 .sustainability-img {
    background-image: url(../img/sustainability-2.jpg);
}

#sustainability .sustainability-section.section-3 .sustainability-img {
    background-image: url(../img/sustainability-3.jpg);
}

.webp #sustainability .sustainability-section.section-1 .sustainability-img {
    background-image: url(../img/sustainability-1.webp);
}

.webp #sustainability .sustainability-section.section-2 .sustainability-img {
    background-image: url(../img/sustainability-2.webp);
}

.webp #sustainability .sustainability-section.section-3 .sustainability-img {
    background-image: url(../img/sustainability-3.webp);
}

#slider {
    color: var(--gris);
    min-height: 980px;
    height: 1px;
}

#slider .slick-arrow {
    width: 70px;
    height: 70px;
    border: unset;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    z-index: 1;
    background: var(--marron) url(../img/arrow.svg) no-repeat center;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}

#slider .slick-prev {
    left: 0;
}

#slider .slick-next {
    right: 0;
    transform: scale(-1);
}

#slider .slick-list,
#slider .slick-track {
    height: 100%;
}

#slider .slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#slider .slide-1 {
    background-image: url(../img/slide-1.jpg);
}
#slider .slide-7 {
    background-image: url(../img/slide-7.jpg);
}
#slider .slide-8 {
    background-image: url(../img/slide-8.jpg);
}

.webp #slider .slide-1 {
    background-image: url(../img/slide-1.webp);
}
.webp #slider .slide-7 {
    background-image: url(../img/slide-7.webp);
}
.webp #slider .slide-8 {
    background-image: url(../img/slide-8.webp);
}

#slider .slide-content {
    max-width: 635px;
    min-height: 685px;
    background: var(--beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
}

#slider .slide-content h3 {
    font-family: 'Archivo';
    font-weight: 300;
    font-size: 45px;
    line-height: 49px;
    margin-bottom: 35px;
    position: relative;
}

#slider .slide-content h3 span {
    position: relative;
}

#slider .slide-content h3:before {
    display: block;
    content: '';
    width: 134px;
    height: 134px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: url(../img/ico-title-2.svg) no-repeat center / 100%;
    z-index: 0;
}

#slider .slide-content p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 35px;
}

#slider .slide-content strong {
    font-weight: 700;
}

#benefits {
    color: var(--blanco);
}

#benefits h3 {
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    padding: 35px 0;
    background: var(--ladrillo-1);
    margin: 0;
}

#benefits h3 strong {
    font-weight: 700;
    display: block;
}

#benefits-content {
    padding: 215px 0;
    background: var(--ladrillo-2);
}

#benefits #benefits-property {}

#benefits #benefits-property h4 {
    font-family: 'Archivo';
    font-weight: 300;
    font-size: 45px;
    line-height: 49px;
    margin-bottom: 35px;
    position: relative;
}

#benefits #benefits-property h4 span {
    position: relative;
}

#benefits #benefits-property h4:before {
    display: block;
    content: '';
    width: 134px;
    height: 134px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: url(../img/ico-title-3.svg) no-repeat center / 100%;
    z-index: 0;
}

#benefits #benefits-property p {
    font-size: 18px;
    line-height: 27px;
}

#benefits #benefits-faq {}

#benefits #benefits-faq h4 {
    font-weight: 700;
    font-size: 21px;
    line-height: 27px;
    margin-bottom: 40px;
    position: relative;
}

#benefits #benefits-faq ul {
    border: 1px solid var(--blanco);
    border-collapse: collapse;
}

#benefits #benefits-faq li {
    font-size: 21px;
    line-height: 27px;
    border: 1px solid var(--blanco);
    padding: 15px 20px;
}

#maps {
    padding: 145px 0 65px;
    background: #DDD8D1;
}

#maps h3 {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    font-size: 45px;
    line-height: 49px;
    color: var(--gris);
    margin-bottom: 25px;
    max-width: 710px;
    position: relative;
}

#maps h3 strong {
    font-family: 'Epilogue';
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    display: block;
    margin-bottom: 15px;
    color: #000;
}

#maps h3 span {
    position: relative;
}

#maps h3:before {
    display: block;
    content: '';
    width: 134px;
    height: 134px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: url(../img/ico-title-4.svg) no-repeat center / 100%;
    z-index: 0;
}

#maps #maps-slider {}

#maps .maps-menu {
    font-size: 20px;
    line-height: 27px;
    color: var(--gris);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:30px 0px;
}

#maps .maps-menu a {
    cursor: pointer;
}

#maps .maps-menu li:not(:last-child):after {
    display: block;
    content: ' / ';
    position: static;
    display: inline-block;
    margin-right: 5px;
}

#maps .maps-menu .slick-active a {
    color: var(--ladrillo-1);
}

#contact {
    color: var(--blanco);
    background: var(--verde);
    position: relative;
    padding: 242px 0 120px;
}

#contact:before,
#contact:after {
    display: block;
    content: '';
    width: 200px;
    height: 645px;
    position: absolute;
    background-position: 0 0;
    background-repeat: no-repeat;
}

#contact:before {
    left: 0;
    top: 140px;
    background-image: url(../img/contact-1.jpg);
    width: 150px;
}
.webp #contact:before {
    background-image: url(../img/contact-1.webp);
}

#contact:after {
    right: 0;
    top: -110px;
    background-image: url(../img/contact-2.jpg);
}

.webp #contact:after {
    background-image: url(../img/contact-2.webp);
}


#contact h3 {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    font-size: 45px;
    line-height: 49px;
    margin-bottom: 35px;
}

#contact #contact-info {
    padding-left: 30px;
    border-left: 1px solid var(--blanco);
}

#contact #contact-info .contact-info-item {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 1.1em;
}

#contact #contact-info .contact-info-item span {
    font-size: 18px;
    line-height: 27px;
    display: block;
    margin-bottom: 1.1em;
}

#contact #contact-form {
    max-width: 495px;
    text-align: left;
}

#contact #contact-form {
    width: 100%;
    position: relative;
}

#contact #contact-form .contact-field {
    margin-bottom: 10px;
}

#contact #contact-form input:not([type="submit"]),
#contact #contact-form textarea {
    font-size: 18px;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: var(--blanco);
    background: unset;
    width: 100%;
    color: var(--blanco);
}

#contact #contact-form input:not([type="submit"]) {
    height: 45px;
    line-height: 45px;
    padding: 0;
}

#contact #contact-form textarea {
    height: 125px;
    padding: 10px 0;
}

#contact #contact-form input[type="submit"] {
    width: 100px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--blanco);
    background: unset;
    cursor: pointer;
    font-size: 20px;
    margin-left: auto;
    color: var(--blanco);
    display: block;
}

#contact #contact-form textarea {}

#contact #contact-form input[type="submit"] {}

#contact .parsley-errors-list {
    display: none;
    border: none;
    font-size: 11px;
    color: var(--blanco);
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    pointer-events: none;
    background: #ff5252;
    width: 120px;
    text-align: center;
    padding: 0 5px;
}

#contact .parsley-errors-list.filled {
    display: block;
}

#contact #contact-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--verde);
}

#contact #contact-loader #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    background: url(../img/loader.svg) no-repeat center;
}

#contact #contact-msg-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--verde);
    opacity: 0;
}

#contact #contact-msg-text h2 {
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    color: currentColor;
    line-height: 1.5;
}

#contact #contact-msg-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}
.fauna-mobile{
    display: none;
    background-image: none;
}
/*MQ
--------------------------------------*/
@media screen and (max-width: 1500px) {
#contact:before, #contact:after{
    width: 50px;
}
}

/*MQ
--------------------------------------*/
@media screen and (max-width: 1090px) {
    #contact:before, #contact:after{
        width: 30px;
    }
    }

/*MQ
--------------------------------------*/
@media screen and (max-width: 991px) {
    #nav {
        width: 100vw;
    }

    .slicknav_menu {
        display: block;
    }

    #social {
        display: flex;
        flex-direction: column;
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
    }

    #main {
        min-height: unset;
        padding-bottom: 50px;
    }

    #main h1 {
        font-size: 40px;
    }

    #main #video {
        height: 50vw;
    }

    #feat {
        min-height: unset;
        height: unset;
    }

    #feat-list {
        max-width: unset;
        padding-bottom: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }

    #feat-img {
        position: static;
        height: 50vw;
    }

    .about-item {
        min-height: unset;
    }

    #about .about-txt {
        max-width: unset;
        width: 100%;
        text-align: center;
    }

    #about .about-img {
        position: static;
        height: 50vw;
    }

    #about .about-txt p {
        max-width: unset;
    }

    #sustainability {
        height: unset;
        min-height: unset;
    }

    #sustainability #sustainability-container {
        height: unset;
    }

    #sustainability .sustainability-section-content {
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
    }

    #sustainability .sustainability-section {
        height: unset;
    }

    #sustainability .sustainability-section h2 {
        display: inline-block;
    }

    #sustainability .sustainability-section h2:before {
        left: 0;
        right: 0;
        top: 0;
        margin: 0 auto;
        transform: translate(0, -50%);
    }

    #sustainability .sustainability-section .sustainability-img-container {
        height: 50vw;
    }

    #sustainability .sustainability-section.section-1 .sustainability-img {
        height: 100%
    }

    #slider {
        min-height: unset;
        height: unset;
    }

    #slider .slide {
        background: unset;
        width: 100%;
    }

    #slider .slide-content {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: unset;
    }

    #slider .slide-content h3:before {
        left: 0;
        right: 0;
        top: 0;
        margin: 0 auto;
        transform: translate(0, -50%);
    }

    #benefits-content {
        text-align: center;
    }

    #benefits #benefits-property h4 {
        display: inline-block;
    }

    #benefits #benefits-property h4:before {
        left: 0;
        right: 0;
        top: 0;
        margin: 0 auto;
        transform: translate(0, -50%);
    }

    #maps {
        text-align: center;
    }

    #maps h3 {
        display: inline-block;
    }

    #maps h3:before {
        transform: translate(0, -50%);
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    #contact:before,
    #contact:after {
        display: none;
    }

    #contact h3 {
        text-align: center;
    }

    #contact #contact-info {
        text-align: center;
        padding: 0;
        border: unset;
    }

    #logo-footer,
    #logo-footer-worldarchefest {
        margin-bottom: 20px;
    }
    #slider .slick-arrow{
        opacity: .6;
    }
    
    #contact #contact-form{
        margin: auto;;
    }
    #slider .slick-arrow{display: none!important;}
    #slider div{background-image: none!important;}
    #contact{padding-top: 120px;}
}
/*MQ
--------------------------------------*/
@media screen and (max-width: 780px) {
    .only-mobile{
        display: block;
    }
    .only-desktop{
        display: none!important;
    }
    #about .about-txt p{
        font-size: 24px;
        line-height: 30px;
    }
    #about-main-img{
        display: none;
    }
    #sustainability .sustainability-section-content{
        min-height: 100vh;
    }
    .sustainability-img, .sustainability-img-container{display: none!important;}
    #sustainability .sustainability-section .sustainability-img{
        background-image: none!important;
    }
    #maps h3, #benefits #benefits-property h4, #slider .slide-content h3, #sustainability .sustainability-section h2{font-size:36px;line-height: 42px;}
    #maps .maps-menu{font-size: 18px;}
    #main {background: url(../img/main-mobile.jpg) no-repeat center / cover;}
    #slider .slide-content{padding-top: 120px;padding-bottom: 35px;}
    .fauna-mobile {display:block;background: url(../img/fauna-mobile.jpg) no-repeat center / cover;height: 50vw;}
    #sustainability .sustainability-section-bottom .sustainability-logo{margin: auto;}
    #contact #contact-form input[type="submit"]{margin: auto;}

    .webp #main {background: url(../img/main-mobile.webp) no-repeat center / cover;}
    .webp .fauna-mobile {display:block;background: url(../img/fauna-mobile.webp) no-repeat center / cover;height: 50vw;}

}