/*
    Theme Name: El Hombre Que Escucha
    Description: Custom WordPress Theme
    Version: 1.0.1
    Author: Ubernova
    Tags: Blank, HTML5, CSS3
*/

/* VARIABLES */

:root {
    --cta-color: #ff7200;
    --cta-color2: #ffc824;
    --base-color: #fff;
    --gray-color: #BABABA;
    --light-grey: #f3f3f3;
    --black-color: #161616;
    --grey: #434343;
    --alt-font: 'Kaisei Opti', serif;
    --alt-font-2: 'DM Serif Display', serif;
    font-size: 62.5%;
}

/* global box-sizing */
*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

body {
    font: 600 1.8rem/1.7 'Inter', sans-serif;
    color: var(--base-color);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: var(--black-color);
}

body::-webkit-scrollbar-track,
.modal-inner::-webkit-scrollbar-track {
    background-color: var(--black-color);
}

body::-webkit-scrollbar,
.modal-inner::-webkit-scrollbar {
    width: 6px;
    background-color: var(--black-color);
}

body::-webkit-scrollbar-thumb,
.modal-inner::-webkit-scrollbar-thumb {
    background-color: var(--cta-color);
}

/* wrapper */
.wrapper {
    flex: 1 0 auto;
    position: relative;
}

/*------------------------------------*\
    GRID
\*------------------------------------*/

.container,
.container-narrow,
.container-wide {
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 126.4rem;
}

.container-narrow {
    max-width: 90rem;
}

.container-wide {
    max-width: 128rem;
}

.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
    position: relative;
    padding: 1.6rem;
    flex: 1 1 100%;
    max-width: 100%;
}

@media only screen and (min-width:480px) {
    .col3 {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width:840px) {
    .col1 {
        flex: 1 1 8.33%;
        max-width: 8.33%;
    }

    .col2 {
        flex: 1 1 16.66%;
        max-width: 16.66%;
    }

    .col4 {
        flex: 1 1 33.33%;
        max-width: 33.33%;
    }

    .col5 {
        flex: 1 1 41.66%;
        max-width: 41.66%;
    }

    .col6 {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .col7 {
        flex: 1 1 58.33%;
        max-width: 58.33%;
    }

    .col8 {
        flex: 1 1 66.66%;
        max-width: 66.66%;
    }

    .col9 {
        flex: 1 1 75%;
        max-width: 75%;
    }

    .col10 {
        flex: 1 1 83.33%;
        max-width: 83.33%;
    }

    .col11 {
        flex: 1 1 91.63%;
        max-width: 91.63%;
    }

    .col12 {
        flex: 1 1 100%;
        max-width: 100%;
    }

}

@media only screen and (min-width:1024px) {
    .mob-arvy {
        display: none;
    }

    .col3 {
        flex: 1 1 25%;
        max-width: 25%;
    }
}

.row {
    margin: 0 -1.6rem;
    display: flex;
    flex-wrap: wrap;
}

/*------------------------------------*\
    FLEX
\*------------------------------------*/

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
}

.flex-vertical-center {
    align-items: center;
}

.flex-align-end {
    align-items: end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.flex-left {
    justify-content: flex-start;
}

.flex-column {
    flex-direction: column;
}

.heading {
    font-size: 6rem;
    font-weight: 400;
}

.heading strong {
    color: var(--cta-color);
}

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

p {
    margin-bottom: 2.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.6rem;
}

h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-family: var(--alt-font);
    font-size: 6.6rem;
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-family: var(--alt-font);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-family: var(--alt-font);
    font-size: 3.9rem;
    font-weight: 400;
}

h4 {
    font-size: 2rem;
    font-weight: 800;
}

h5 {
    font-size: 1.8rem;
    font-weight: 800;
}

h6 {
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

a {
    color: var(--cta-color);
    text-decoration: none;
    transition: all .23s ease-in;
    -webkit-transition: all .23s ease-in;
    -moz-transition: all .23s ease-in;
    -ms-transition: all .23s ease-in;
    -o-transition: all .23s ease-in;
}

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

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

.sticky {
    top: 0;
    position: sticky;
}


/*------------------------------------*\
    BUTTONS
\*------------------------------------*/

.btn,
.cta>a,
.wp-block-button__link,
.wpcf7-submit {
    border-radius: 0 !important;
    background-color: transparent;
    border: 4px solid #fff;
    color: #fff !important;
    font-size: 1.8rem !important;
    display: inline-flex !important;
    line-height: 1;
    padding: 1.4rem 2.4rem !important;
    min-height: 7.5rem;
    min-width: 30rem;
    text-align: center;
    cursor: pointer;
    justify-content: center;
    font-weight: 800;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    align-items: center;
    letter-spacing: 1.8px;
}

.btn:hover,
.cta>a:hover,
.wp-block-button__link:hover,
.wpcf7-submit:hover {
    background: #fff;
    color: var(--black-color) !important;
    opacity: 1;
}

.wp-block-button.is-style-outline>a {
    border: 1px solid var(--cta-color) !important;
    color: var(--cta-color) !important;
}

.wp-block-button.is-style-outline>a:hover {
    background-color: var(--cta-color) !important;
    color: #fff !important;
}


/*------------------------------------*\
    GUTENBERG
\*------------------------------------*/

.gutenberg p {
    font-size: 2.4rem;
    line-height: 1.5;
}

.gutenberg p.has-large-font-size {
    font-size: 4.8rem !important;
}

.gutenberg a:not([class]) {
    text-decoration: underline;
    color: var(--base-color);
}

.gutenberg a:not([class]):hover {
    text-decoration: none;
}

.gutenberg ol,
.gutenberg ul {
    margin-bottom: 2.8rem;
    padding-left: 2.3rem;
}

.gutenberg ol li,
.gutenberg ul li {
    margin-bottom: .8rem;
}

/*
.alignfull,
.alignwide {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}
*/

.wp-block-group {
    padding-block: 6.4rem;
}

.wp-block-group .wp-block-group__inner-container,
.wp-block-columns {
    max-width: 122rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.wp-block-group.alignwide .wp-block-group__inner-container,
.wp-block-columns.alignwide {
    max-width: 128rem;
}

.wp-block-group.alignfull .wp-block-group__inner-container,
.wp-block-columns.alignfull {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.gutenberg .wp-block-columns {
    margin-bottom: 0;
}

.alignfull .wp-block-group__inner-container .wp-block-columns figure {
    margin-bottom: 0;
}

.alignwide .wp-block-columns {
    gap: 3.2rem;
}

.alignwide .wp-block-columns .wp-block-image img {
    border-radius: 1rem;
}

.gutenberg .has-x-large-font-size {
    font-size: 6rem !important;
}

.gutenberg .has-medium-font-size {
    font-size: 2rem !important;
}

.wp-block-group .slider-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}


/*------------------------------------*\
    GENERAL
\*------------------------------------*/

p.section-subtitle {
    color: var(--gray-color);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
}


/*------------------------------------*\
    DECORATIONS
\*------------------------------------*/

.top-dim {
    position: relative;
}

.top-dim::before {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
    content: "";
    height: 200px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.trees {
    position: relative;
    background-image: -webkit-linear-gradient(to bottom, #161616 0%, #292929 100%);
    background-image: linear-gradient(to bottom, #161616 0%, #292929 100%);
}

.trees * {
    position: relative;
    z-index: 2;
}

.trees .wp-block-group__inner-container > .wp-block-image {
    margin-top: -10rem;
}

.trees::before,
.bottom-decoration-trees::after {
    content: "";
    display: block;
    background: url(assets/images/bottom-forest.svg);
    color: #000;
    height: 164px;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}

.bottom-decoration-trees.decoration-small::after {
    height: 100px;
}

.bottom-decoration-trees.decoration-gray::after {
    background: url(assets/images/bottom-forest-gray.svg);
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

.header {
    padding: 1.6rem 0;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    z-index: 2015;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.header .logo img {
    height: auto;
    max-width: 20rem;
    max-height: 12rem;
    width: auto;
}

.header.sticky {
    padding: 2rem 0 4rem 0;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
    /* background-color: #161616; */
    background-image: linear-gradient(to bottom, #161616 55%, transparent 100%);
}

.header.nav-up {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header ul {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

.header nav>ul>li>a {
    color: var(--grey);
    font-weight: 800;
    display: inline-block;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.45px;
}

.header nav>ul>li.current-menu-item>a {
    color: var(--cta-color);
}

.header nav .cta {
    margin-left: auto;
}

header nav ul li.cta a,
header nav ul li.cta a:hover {
    color: #fff !important;
}

.header nav>ul::before {
    content: "";
    margin-right: auto;
}

.header nav {
    justify-content: center;
    align-items: center;
    flex: 1;
}

.header nav>ul {
    align-items: center;
    width: 100%;
}

.header nav ul li a:hover {
    color: var(--cta-color) !important;
}

.header nav .menu-item-has-children {
    position: relative;
}

.header nav .menu-item-has-children>.plus {
    position: relative;
    margin-bottom: 1px;
    margin-left: 8px;
}

.header nav .menu-item-has-children>.sub-menu::before {
    height: 2rem;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2rem;
}

.header nav .menu-item-has-children>.sub-menu {
    position: absolute;
    flex-direction: column;
    right: 0;
    top: calc(100% + 2rem);
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    display: none;
    -webkit-box-shadow: 0px -1px 12px rgba(22, 40, 67, 0.1);
    box-shadow: 0px -1px 12px rgba(22, 40, 67, 0.1);
    border-radius: 12px;
    background: #fff;
    padding: 0 1rem;
}

.header nav .menu-item-has-children>.sub-menu a {
    color: var(--base-color);
    letter-spacing: 0.0037em;
    font-size: 1.6rem;
    padding: 1rem;
    display: block;
    position: relative;
}

.header nav .menu-item-has-children>.sub-menu li:not(:last-child)>a {
    border-bottom: 1px solid var(--gray-color);
}

.header nav .menu-item-has-children:hover>.sub-menu {
    display: block;
}

.header nav ul .current-lang>a,
.header nav ul .current-lang>a:hover {
    color: var(--base-color) !important;
    background: url(assets/images/checkmark.svg) no-repeat;
    background-position: 98% center;
}

.header nav ul .current-lang>a {
    padding-right: 2rem !important;
}

.header .logo {
    margin-right: 3.4rem;
}

header .logo h1 {
    margin-bottom: 0;
}

header .current-lang>a,
header li.pll-parent-menu-item>a {
    pointer-events: none;
    cursor: none;
}

header li.pll-parent-menu-item>a {}



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

.footer::before {
    content: "";
    display: block;
    aspect-ratio: 1440/164;
    background-image: url(assets/images/bottom-forest.svg), linear-gradient(to bottom, #161616 0%, #292929 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100%;
}

.footer {
    color: var(--gray-color);
    padding: 0;
}

.footer-bottom {
    padding: 2rem 0 4rem;
}

.footer-bottom,
.footer-top {
    background: #000;
}

.footer .footer-left img {
    min-width: 16rem;
    height: auto;
}

.footer-left,
.footer-left a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-color);
}

.footer-left a {
    color: var(--gray-color);
    display: block;
    white-space: nowrap;
}

.footer-left .footer-widget>div:first-child {
    flex: 1 1 100%
}

.footer-left .wp-block-social-links li {
    background-color: transparent !important;
    margin-bottom: 0;
}

.footer-widget.flex {
    gap: 5.4rem;
    margin-bottom: 5.4rem;
}

.footer-widget p {
    margin-bottom: 2rem;
}

.footer .wp-block-group {
    padding: 0;
}

.footer .container-wide {
    gap: 7.5rem;
}

.footer-left img {
    max-width: 10rem;
}

.footer-right ul {
    display: flex;
    gap: 6rem;
}

.footer-right ul ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}

.footer-right ul li a {
    color: var(--gray-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.45px;
    font-size: 1.8rem;
}

.footer-right ul li a:hover {
    color: var(--base-color);
}

.footer-right .widget_nav_menu>ul>li>a {
    display: none;
}

.footer ul {
    list-style: none;
}

.footer-top {
    padding: 4.2rem 0 1rem;
}

.footer-top p {
    font-size: 2rem;
    line-height: 1.2;
}

.footer-top ul.menu {
    display: flex;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.footer-bottom {
    font-size: 1.6rem;
    margin-top: auto;
    font-weight: 700;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom ul {
    margin-left: auto;
    display: flex;
}

.footer-bottom ul li {
    margin-left: 2rem;
}

#return-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--cta-color);
    border-radius: .5rem;
    padding: 0 0.5rem 0.5rem;
    line-height: 1;
}

#return-to-top:hover {
    -webkit-transform: translateY(-.7rem);
    transform: translateY(-.7rem);
}

.footer .socials {
    display: flex;
}

.footer .socials a {
    display: inline-flex;
    margin-left: 2.2rem;
}

.footer .socials a:hover {
    opacity: .8;
}

.footer-widget .is-layout-flex {
    gap: 1.2rem;
}

.footer-widget .is-layout-flex>p {
    font-size: 1.4rem;
}

.footer-widget .is-layout-flex>p:not(:last-child) {
    border-right: 1px solid #000;
    line-height: 1;
    padding-right: 1.2rem;
}


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

/*** Home Header ***/

.home header .logo {
    display: none;
}

.home nav ul li a {
    color: var(--base-color) !important;
}

.home .header nav>ul::after {
    content: "";
    margin-left: auto;
}

/*** Hero section  ***/

.hero-home {
    padding: 0;
}

.hero-home .container {
    margin-top: 4.4rem;
    padding-bottom: 1rem;
}

.hero-featured-image.wp-block-image {
    margin-top: -1.1rem;
}

.home .hero-title,
.home .hero-subtitle {
    margin-bottom: 0;
    line-height: 1.2;
}

.home .hero-title {
    position: relative;
    font-family: var(--alt-font-2);
    font-size: 3.9rem;
    font-weight: 400;
}

.home .hero-subtitle {
    position: relative;
    color: var(--gray-color);
    font-family: var(--alt-font);
    font-size: 2.4rem;
    font-weight: 400;
}

.home .hero-title.fadeInLeft {
    top: -300px;
}

.home .hero-title.fadeInRight {
    top: -144px;
}

.home .hero-subtitle.fadeInRight {
    top: -140px;
}

.wp-block-group.hero-intro {
    margin-top: -12rem;
    padding: 2rem 0 6.4rem 0;
    background-image: -webkit-gradient(to bottom, #16161600 0%, #161616 100%);
    background-image: linear-gradient(to bottom, #16161600 0%, #161616 100%);
}

.wp-block-group.hero-intro {
    background-color: transparent;
    position: relative;
}

.wp-block-group.hero-intro::before {
    content: "";
    background: url(assets/images/left-wave.svg);
    background-size: contain;
    background-position: right;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: calc(50vw - 21rem);
    height: 140px;
}

.wp-block-group.hero-intro::after {
    content: "";
    background: url(assets/images/right-wave.svg);
    background-size: contain;
    background-position: left;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    aspect-ratio: 564/200;
    width: calc(50vw - 21rem);
    height: 140px;
}

.wp-block-group.hero-intro p {
    padding-top: 3.2rem;
    font-family: var(--alt-font);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.5;
}

.wp-block-group.hero-intro p:last-child {
    margin-bottom: 0;
}

.home header nav>ul>li {
    margin: 0 1rem
}


/*------------------------------------*\
    AWARDS SECTION
\*------------------------------------*/

.section-awards {
    padding: 7.6rem 0 12.8rem 0;
}

.section-awards .wp-block-gallery {
    flex-wrap: nowrap;
    width: auto;
    justify-content: flex-end;
}

.section-awards .wp-block-gallery img {
    height: 6.8rem;
    width: auto;
    object-fit: contain;
}

.section-awards .wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
    margin-block: auto;
}

.section-awards .wp-block-gallery .wp-block-image {
    align-items: center;
}

.section-awards .wp-block-gallery.has-nested-images figure.wp-block-image img {
    max-width: 15rem !important;
}


/*------------------------------------*\
    WORKS SECTION
\*------------------------------------*/

.section-works {
    padding: 3.2rem 0 6.4rem 0;
}


/*------------------------------------*\
    CLIENTS SECTION
\*------------------------------------*/

.section-clients {
    padding: 3.2rem 0 6.4rem 0;
}

.section-clients .slider-wrapper {
    margin-top: 5.6rem;
}


/*------------------------------------*\
    SERVICE SECTION
\*------------------------------------*/

.zig-zag {
    padding: 8rem 0 2rem;
    position: relative;
}

.zig-zag .wp-block-column {
    position: relative;
    margin-left: auto;
    max-width: 110rem;
}

.zig-zag.right .wp-block-column {
    margin-left: auto;
    max-width: 90rem;
}

.zig-zag.right .wp-block-column {
    margin-left: auto;
    max-width: 90rem;
}

.zig-zag h2,
.zig-zag .section-subtitle {
    margin-left: 9rem;
}

.zig-zag h2 {
    margin-bottom: 0.8rem;
}

.zig-zag .section-subtitle {
    margin-bottom: 0;
}

.zig-zag .wp-block-buttons {
    position: absolute;
    left: 57%;
    bottom: 23%;
    z-index: 1;
    background-color: var(--black-color);
}

.zig-zag.right .wp-block-column .wp-block-buttons {
    left: -15rem !important;
}


/*------------------------------------*\
    PROCESS SECTION
\*------------------------------------*/

.section-process {
    padding: 12.8rem 0 12.8rem 0;
}

.video-youtube {
    position: relative;
    display: block;
}

.video-youtube img:not(.play-btn) {
    border-radius: 2rem
}

.video-youtube .play-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -8.5rem;
    -webkit-transition: all .69s ease-in-out;
    transition: all .69s ease-in-out;
}

.video-youtube:hover .play-btn {
    -webkit-transform: translateY(-50%) rotate(180deg) !important;
    transform: translateY(-50%) rotate(180deg) !important;
}

/*------------------------------------*\
    CTA CONTACT SECTION
\*------------------------------------*/

.section-cta-contact {
    padding-bottom: 0;
}

/*------------------------------------*\
    FORMS AND CF7
\*------------------------------------*/
input,
textarea {
    font-family: inherit;
    background: transparent;
    padding: 2rem;
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--cta-color);
}

textarea {
    height: 6rem;
}

input:focus {
    border-color: var(--cta-color);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AEAEB4;
    opacity: 1;
    /* Firefox */
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1414px) {
    body .postsSwiper {
        margin-right: -2rem !important;
    }

    .bottom-decoration-trees::after,
    .trees::before {
        height: 240px;
    }
}

@media only screen and (min-width:1201px) {
    .mob-language-switcher {
        display: none;
    }
}

@media only screen and (max-width:1200px) {
    .voices-wrapper {
        flex-direction: column;
    }

    .bottom-decoration-trees::after,
    .trees::before {
        height: 200px;
    }

    body .zig-zag.right .wp-block-column .wp-block-buttons {
        left: 0 !important;
    }

    body .zig-zag .wp-block-buttons {
        left: auto !important;
    }

    .header .logo img {
        max-height: 8rem !important;
    }

    body .hero h2 {
        font-size: 4.8rem !important;
    }

    body header nav ul li:not(.cta).current-menu-item>a {
        color: var(--cta-color) !important;
    }

    body.logged-in header nav {
        top: 115px;
    }

    .alignfull,
    .alignwide {
        /* width: 100vw !important;*/
    }

    select::selection,
    select::-moz-selection,
    select option::-moz-selection,
    select option::selection {
        color: none;
        background: none;
    }

    /* For Mozilla Firefox */
    select::-moz-selection {
        color: none;
        background: none;
    }


    .mob-language-switcher select option {
        color: var(--base-color) !important;
    }

    .mob-language-switcher select:focus {
        outline: none;
    }

    header nav .pll-parent-menu-item {
        display: none;
    }

    .header .logo {
        margin: 0 2rem !important;
    }

    header .container-wide #mob-menu-bar {
        margin-left: auto;
    }

    body .featured-post.post-in-loop img {
        max-width: 60vw;
    }

    #mob-menu-bar>div {
        width: 22px;
        height: 3px;
        background: var(--base-color);
        border-radius: 3px;
        margin-bottom: 5px;
        -webkit-transition: all .23s ease-in;
        transition: all .23s ease-in;
    }

    #mob-menu-bar>div:last-child {
        margin-bottom: 0;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 5px);
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-6px, -6px);
        transform: rotate(45deg) translate(-6px, -6px)
    }

    body .header nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 84vw;
        background-color: #fff;
        color: #fff;
        max-width: 100vw;
        -webkit-transition: all .33s ease-in-out;
        transition: all .33s ease-in-out;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 4rem;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        border-top: 1px solid #d3d3d8 !important;
        background-repeat: no-repeat;
        background-position: center 90%;
        height: 100%;
    }

    body .header nav>ul {
        max-width: 33rem;
        margin-top: 45px;
    }

    body .header nav ul {
        flex-direction: column;
        width: 100%;
    }

    body .header nav ul li.cta {
        margin-left: 0;
        text-align: center;
    }

    body .header nav ul li.cta>a {
        margin: 2rem 0 0;
    }

    body .header nav ul li:not(.cta) {
        border-bottom: 1px solid #d3d3d8 !important;
        width: 100%;
        text-align: center;
    }

    body .header nav ul li:not(.cta) a {
        color: var(--black-color) !important;
        margin: 0 !important;
    }

    body .header nav>ul>li {
        padding: .84rem 0;
        position: relative;
    }

    .header nav .menu-item-has-children>.plus {
        fill: #fff;
        margin: 0 !important;
        top: 10px;
        right: 0;
        position: absolute;
        -webkit-transition: all .23s ease;
        transition: all .23s ease;
    }

    .header nav .menu-item-has-children.opened>.plus {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    header nav .sub-menu-wrap {
        display: none;
    }

    header nav .sub-menu-wrap li {
        padding-top: .5rem;
    }

    body .header nav>ul>li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .5);
    }

    body .header nav.menu-open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    body .header nav .header-top {
        flex-wrap: wrap;
    }

    body .header nav .header-top a {
        color: #fff;
    }

    body .header nav .header-top a:not(.instagram) path {
        fill: #fff;
    }

    body .header nav .header-top a.instagram path {
        stroke: #fff;
    }

    header .socials {
        margin-bottom: 2rem;
    }

    header .socials svg {
        margin: 0 1.5rem 0 0 !important;
    }

    header .container-wide {
        justify-content: space-between;
        align-items: center;
    }

    body.menu-open {
        overflow: hidden;
    }

}

@media only screen and (max-width:1024px) {
    .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
        min-width: 10rem;
    }

    .wp-block-gallery.has-nested-images {
        padding: 0 2rem;
    }

    .trees::before {
        top: 8vh !important;
    }

    .footer-widget {
        flex-direction: column;
    }

    .modal-wrapper .close-modal {
        right: 2rem !important;
        top: 2rem !important;
    }

    .modal-wrapper svg:not(.close-modal) {
        max-width: 127px;
        height: auto;
        margin-top: 40px;
    }

    .modal-wrapper .modal h3 {
        margin-top: 26px !important;
    }

    .modal-wrapper .modal {
        padding: 20px !important;
    }

    .modal-wrapper .modal .btn {
        font-size: 13px !important;
    }

    .hero {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 15vh;
    }


    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .single-excerpt {
        font-size: 1.8rem !important;
    }

    .single-post-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .social-share-wrap,
    .right-balance {
        display: none;
    }

    .single-post-content {
        margin: 0 !important;
    }

    h2.heading {
        font-size: 3rem;
    }



    .footer-top,
    .footer-top ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer .socials {
        margin-left: auto;
    }

    body .copyright {
        font-size: 1.2rem;
    }

    .footer-bottom .footer-widget {
        margin: 3rem 0 -1rem;
    }

    .footer-bottom .footer-widget .is-layout-flex>p {
        font-size: 1.2rem;
    }



}

@media only screen and (max-width:1023px) {
    body .project-item {
        max-width: calc(50% - 1.6rem);
    }

    .tag-terms {
        gap: 2rem;
    }

    .tag-terms span {
        margin: 0 !important;
        font-size: 1.4rem !important;
    }

    #resources-feed {
        width: 100% !important;
    }

    .zig-zag-columns {
        gap: 8rem !important;
    }

    .zig-zag-columns .wp-block-column {
        max-width: 100% !important;
    }

    .footer>.container-wide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home .has-large-font-size br {
        display: none;
    }

    .alignwide.wp-block-group {
        padding: 6rem 0;
    }

    body .gutenberg p.has-large-font-size,
    .gutenberg .has-x-large-font-size {
        font-size: 3rem !important;
    }

    .alignfull.wp-block-group {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }


    #posts-feed .col12 .all-cats::-webkit-scrollbar {
        display: none;
    }

    #posts-feed .col12 .all-cats {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: scroll;
        margin-right: -2rem;
    }

    #posts-feed .col12 .all-cats a:first-child {
        margin-left: 0;
    }

    #posts-feed .col12 .all-cats a {
        margin-left: 2rem;
        font-size: 1.6rem;
        white-space: nowrap;
    }

    #posts-feed .col12 {
        padding: 1rem 1rem 2rem;
    }

    #posts-feed {
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .post-in-loop.col4 {
        max-width: 50%;
        padding: 1rem;
    }

    body .featured-post.post-in-loop img {
        max-width: 100% !important;
    }

    .post-in-loop-content {
        padding: 1.6rem 0 0 !important;
    }

    .featured-post.post-in-loop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .featured-post.post-in-loop h2 {
        font-size: 2.4rem;
        font-weight: 500 !important;
    }

    body .single-post-content .wp-block-group {
        padding: 2rem 1.8rem;
    }

    .post-in-loop .post-metas span.date::after {
        margin: 0 4px;
    }

    .post-in-loop .post-metas {
        font-size: 1.2rem;
        margin-bottom: 1.6rem;
    }

    body .post-cats-loop span {
        font-size: 1.2rem;
    }

    .post-in-loop h3 {
        font-size: 1.8rem !important;
    }

    body .related-block {
        padding: 3.8rem 0 6rem;
    }

    .related-block h2 {
        font-size: 2.4rem;
        margin-bottom: 0;
    }

    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-bottom ul {
        margin: 2rem auto;

    }


}

@media only screen and (min-width:782px) {
    .hide-desktop {
        display: none;
    }

}

@media only screen and (max-width:781px) {
    .voice-item {
        max-width: calc(50% - 2rem) !important;
    }

    .footer .socials {
        margin-right: auto;
        margin-left: 0;
    }

    .footer .socials a {
        margin: 0 2.8rem 0 0 !important;
    }

    .footer .container-wide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem !important;
    }

    .footer-right ul {
        gap: 1rem !important;
    }

    body .wp-block-button__link {
        font-size: 1.6rem !important;
    }

    .related-block .read-all-articles {
        text-indent: -9999px;
        overflow: hidden;
    }

    .mob-img-first .wp-block-column:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }


    .hide-mobile {
        display: none;
    }

    .hero {
        text-align: center;
        min-height: 70vh;
        padding-top: 15vh !important;
    }

    .hero picture img {
        -o-object-position: bottom;
        object-position: bottom;
    }

    .hero .subtitle {
        font-size: 1.6rem;
    }

    .hero .wp-block-buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (max-width:767px) {
    .voice-filters {
        max-width: 100% !important;
    }

    body .voice-item {
        max-width: 100% !important;
    }

    .voice-filters::before {
        z-index: -1;

    }

    .footer-widget.flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .alignfull,
    .alignwide {
        width: 100vw !important;
    }

    #posts-feed h1 {
        text-align: center;
    }

    .footer-widget .is-layout-flex {
        overflow-x: scroll;
    }

    .footer-widget .is-layout-flex::-webkit-scrollbar {
        display: none;
    }

    .footer-widget .is-layout-flex p {
        white-space: nowrap;
    }

    body .post-tags a {
        font-size: 1.2rem;
        margin: 0 1.2rem 1.2rem;
    }

    .post-author {
        font-size: 1.6rem !important;
    }

    .single-post-head .all-articles {
        margin-bottom: 2.4rem;
        font-size: 1.4rem;
    }

    .single-post-head .post-cats {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }

    body h1 {
        font-size: 4.5rem;
    }

    body h2 {
        font-size: 4rem;
    }

    body h3 {
        font-size: 3rem;
    }

    .gutenberg p {
        font-size: 1.6rem;
    }

    .btn,
    .cta>a,
    .wp-block-button__link,
    .wpcf7-submit {
        min-width: 23rem !important;
        min-height: 5.5rem;
    }

    .video-youtube .play-btn {
        left: 0 !important;
        max-width: 10rem;
    }

    .footer-widget p a {
        font-size: 1.6rem !important;
    }

    .footer-widget p a::before {
        width: 2rem !important;
        height: 2rem !important;
    }

    .footer-bottom ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-bottom ul li {
        margin: .5rem 0 !important;
    }

    .footer-bottom ul li:not(:last-child):after,
    footer .socials::before {
        display: none;

    }
}

@media only screen and (max-width:480px) {}

/*------------------------------------*\
    BLOG
\*------------------------------------*/

.all-cats {
    font-size: 1.8rem;
    margin-top: 3.2rem;
}

.all-cats a:first-child {
    margin-left: 0;
}

.all-cats a {
    color: var(--black-color);
    display: inline-block;
    margin-left: 3.2rem;
    position: relative;
    padding: 1rem 0;
    line-height: 1.5;
}

.all-cats a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    left: 0;
}

.current-cat {
    pointer-events: none;
}

.current-cat::after,
.all-cats a:hover::after {
    opacity: 1 !important;
    width: 100% !important;
}

.page-section {
    padding: 6rem 0;
}

.featured-post.post-in-loop {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.featured-post.post-in-loop h2 a {
    line-height: 1.2;
}

.featured-post.post-in-loop .excerpt {
    font-size: 1.8rem;
    line-height: 1.5;
}

.featured-post.post-in-loop .post-cats-loop span a {
    font-size: 1.8rem;
    line-height: 1.5;
}

.featured-post.post-in-loop img {
    border-radius: 1rem;
    aspect-ratio: 770/480;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 77rem;
}

.featured-post.post-in-loop>a {
    border-radius: 1rem;
    aspect-ratio: 770/480;
    display: block;
    overflow: hidden;
}

.post-in-loop:not(.featured-post) img {
    aspect-ratio: 450/376;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
}

.post-in-loop:not(.featured-post)>a {
    overflow: hidden;
    border-radius: 1.2rem;
    aspect-ratio: 450/376;
    margin-bottom: 2rem;
}

.post-in-loop>a:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.post-in-loop h3 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.post-in-loop h3 a:hover {
    color: var(--black-color) !important;
}

.post-in-loop h3 a {
    color: var(--base-color);
}

.post-in-loop img {
    border-radius: 1.2rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.post-in-loop-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 3.2rem;
}

.post-in-loop-content h2 a {
    color: var(--base-color);
    display: inline-block;
    line-height: 1;
}

.post-cats-loop span {
    display: inline-block;
    margin: 0 18px 12px 0;
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--cta-color);
    position: relative;
}

.post-cats-loop span a:hover {
    opacity: .84;
}

.post-cats-loop span:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--cta-color);
    position: absolute;
    top: 2px;
    left: -9px;
}

.excerpt {
    line-height: 1.41;
}


/*------------------------------------*\
    SINGLE ARTICLE
\*------------------------------------*/
.single-post-content {
    max-width: 70rem;
    margin: 0 10rem;
}

.single-post-content h1 {
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 3.2rem;
}

.single-post-content img {
    width: 100%;
    max-width: 100%;
    border-radius: 1.2rem;
    margin-bottom: 3.2rem;
}

.postsSwiper {
    margin-right: calc((141.4rem - 100vw) / 2);
}

.all-articles {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--base-color);
    font-weight: 500;
    margin-bottom: 6.4rem;
}

.MAC .all-articles svg {
    top: -1px;
}

.all-articles svg {
    margin-right: .7rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    -webkit-transform: scale(-1);
    transform: scale(-1);
    position: relative;
    /* top: 1px;*/
}

.all-articles:hover svg {
    -webkit-transform: translateX(-5px) scale(-1);
    transform: translateX(-5px) scale(-1);
}

.post-cats {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3.2rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
}

.post-cats a {
    color: var(--cta-color) !important;
    text-decoration: none !important;
}

.post-cats a:hover {
    color: var(--base-color) !important;
}

.post-tags {
    text-align: center;
    margin-bottom: 2.4rem;
}

.post-tags a {
    background-color: var(--grey);
    text-decoration: none !important;
    border-radius: 10rem;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem 1.6rem;
    margin: 0 1.6rem 1.6rem;
    line-height: 1.5;
    text-align: center;
}

.post-tags a:hover {
    background-color: var(--cta-color);
}

.post-metas {
    color: #8E8E93;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
    line-height: 1.29;
}

.post-metas span.date::after {
    content: "";
    background-color: #8E8E93;
    width: 1px;
    height: 12px;
    display: inline-block;
    position: relative;
    margin: 0 1rem;
    top: 1px;
}

.single-excerpt {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
}

.single-post-content .wp-block-group {
    padding: 4rem;
    border-radius: 1.2rem;
}

.single-post-content .wp-block-group p:last-child {
    margin-bottom: 0;
}

.postsSwiper {
    margin-right: calc((138.1rem - 100vw) / 2) !important;
}

.related-block {
    padding: 8rem 0 14rem;
}

.read-all-articles {
    margin-left: auto;
    font-weight: 500;
}

.MAC .read-all-articles svg {
    top: -1px;
}

.read-all-articles svg {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    margin-left: .7rem;
    position: relative;
    /*top: -1px;*/
}

.read-all-articles:hover svg {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.latest-posts-header {
    margin-bottom: 2.4rem;
}

.post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.post-author {
    margin-bottom: 3.2rem;
    font-size: 2rem;
    font-weight: 600;
}

.post-author img {
    width: 5.2rem;
    border-radius: 1rem;
    aspect-ratio: 1/1;
    margin: 0 1.2rem 0 0;
}

.social-share {
    padding-top: 8rem;
    position: sticky;
    top: 0;
}

.social-share button {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid #d9d9d9;
    width: 4.6rem;
    height: 4.6rem;
    margin-bottom: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.social-share button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#162843), to(#151519));
    background: linear-gradient(180deg, #162843 0%, #151519 100%);
}

.social-share button:hover svg path {
    fill: #fff;
}

.social-share button svg path,
.social-share button svg {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.right-balance {
    width: 4.6rem;
}

.single-post-head .all-articles {
    position: relative;
    top: 1px;
}

.single-post-head .post-metas {
    font-size: 1.4rem;
    line-height: 1.5;
}

/*------------------------------------*\
    end of SINGLE ARTICLE
\*------------------------------------*/



.narrow-page {
    max-width: 74rem;
    padding: 8rem 2rem;
    margin: 0 auto;
}

.narrow-page h1 {
    margin-bottom: 3.2rem;
}


body.modal-active {
    overflow: hidden;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*z-index: -1;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    visibility: hidden;
    opacity: 0;
}

.modal-wrapper.modal-active {
    z-index: 2020;
    visibility: visible;
    opacity: 1;
}

.modal-wrapper .modal-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
}

.modal-wrapper .modal {
    background-color: #fff;
    padding: 88px 104px;
    border-radius: 16px;
    z-index: 2023;
    position: relative;
    max-width: 836px;
}

.modal-wrapper .modal h3 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    margin-top: 40px;
}

.close-modal {
    position: absolute;
    right: 4rem;
    top: 3rem;
    cursor: pointer;
}



@media screen and (max-width: 390px) and (max-height: 770px) {
    .hero .subtitle {
        font-size: 14px !important;
    }

    .hero h1 {
        font-size: 27px;
    }

    body .post-metas {
        font-size: 10px !important;
    }

}

@media screen and (max-width: 390px) and (max-height: 8700px) {
    .post-metas span.date::after {
        height: 8px !important;
    }
}

.single .wp-block-embed iframe {
    width: 100%;
}


.wpcf7-spinner {
    display: none !important;
}

.wpcf7-submit {
    width: auto !important;
    cursor: pointer;
}

.wpcf7-submit:hover {
    background-color: var(--base-color);
}

.wpcf7-not-valid-tip {
    font-size: 1.4rem !important;
}

body:not(.home) .hero-home h2 {
    font-size: 6rem !important;
    text-transform: uppercase;
}


.gutenberg video {
    border-radius: 1.5rem;
}

.gutenberg .wp-block-image {
    border-radius: 1.5rem;
    overflow: hidden;
}

.gutenberg figure.wp-block-gallery.has-nested-images {
    gap: 1rem;
    margin-bottom: 1rem;
}

.vbox-grab .vbox-child img {
    max-height: 90vh;
}

.gutenberg .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    max-height: 100%;
}

.gutenberg .wp-block-gallery.has-nested-images figure.wp-block-image:hover figcaption {
    font-size: 2.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}


body:not(.home) .body-content {
    padding-bottom: 8rem;
}


/**** PAGE HERO SECTION ****/

.page-hero {
    position: relative;
    padding-top: 13.4rem;
    background-image: linear-gradient(to bottom, transparent 0%, var(--black-color) 100%), url(assets/images/page-hero.jpg);
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 25rem;
}

.page-hero h1 {
    margin-bottom: 0;
    font-size: 6rem;
    font-weight: 700;
}

.page-hero .wp-block-columns {
    position: relative;
    padding: 0;
}

.page-hero .wp-block-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}

.page-hero .service-hero-featured-image {
    max-width: 65.2rem;
}

.page-hero .service-hero-featured-image .wp-block-group__inner-container > figure.wp-block-image {
    margin: 4.8rem 0 1.8rem 0;
    z-index: -2;
    position: relative;
}

.page-hero .image-with-quote {
    position: relative;
    padding: 2rem 0 1.6rem 0;
}

.page-hero .image-with-quote .service-hero-quote {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 41rem;
    margin-bottom: 0;
}

.page-hero .image-with-quote .service-hero-quote p {
    margin-bottom: 1.2rem;
    font-family: var(--alt-font-2);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.45;
}

.page-hero .image-with-quote .service-hero-quote p.quote-author {
    text-align: right;
    margin-bottom: 0;
    font-family: var(--alt-font);
    font-size: 2.1rem;
}

.page-hero .service-hero-content .wp-block-column:first-child {
    margin-left: 6.4rem;
    padding: 3.2rem 0 3.2rem 3.6rem;
}

.page-hero .service-hero-content .wp-block-column:first-child::before {
    content: "";
    background: var(--grey);
    height: 2px;
    width: calc(100% + 6.4rem);
    position: absolute;
    bottom: 0;
    right: 0;
}

.page-hero .service-hero-content .wp-block-column:first-child::after {
    content: "";
    background: var(--grey);
    height: calc(100% + 5.8rem);
    width: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.page-hero .service-hero-content .wp-block-column:first-child p:last-child {
    margin: 0;
}

.zig-zag-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.zig-zag-columns .wp-block-column {
    max-width: 50%;
    position: relative;
    padding: 0 4rem;
}

.zig-zag-columns .wp-block-column h3 {
    margin-bottom: 2.7rem;
}

.zig-zag-columns .wp-block-column p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.zig-zag-columns .wp-block-column:nth-child(even) {
    margin-left: auto;
    margin-bottom: 3rem
}

.zig-zag-columns .wp-block-column::after {
    content: "";
    background: var(--grey);
    height: calc(100% + 4rem);
    width: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.zig-zag-columns .wp-block-column:before {
    content: "";
    background: var(--grey);
    height: 2px;
    width: calc(100% + 4rem);
    position: absolute;
    top: 6rem;
    right: 0;
}

.zigzags {
    position: relative;
}

.zig-zag-columns::after {
    content: "";
    background: url(assets/images/deer.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: calc((123rem - 100vw) / 2);
    bottom: -6rem;
    width: 14vw;
    height: auto;
    aspect-ratio: 236/129;
}

/*------------------------------------*\
    PROOJECTS
\*------------------------------------*/

.tag-terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5rem;
}

.tag-terms span {
    cursor: pointer;
    display: inline-block;
    margin: 2rem 1.6rem;
    background: #fff;
    color: var(--grey);
    font-size: 1.8rem;
    border-radius: .8rem;
    border: 1px solid #fff;
    padding: .5rem 2rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.tag-terms span:hover,
.tag-terms span.is-active {
    background: #000;
    color: #fff;
}

.tag-terms span.is-active {
    pointer-events: none;
}

#resources-feed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}

.cine .project-item {
    aspect-ratio: 240/344;
}

.project-item {
    background-size: cover !important;
    aspect-ratio: 4/3;
    background-position: center !important;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: calc(25% - 1.6rem);
}

.project-item div {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    opacity: 0;
    color: #fff;
    font-size: 2.3rem;
}

.project-item:hover div {
    opacity: 1;
}

.hide {
    display: none !important;
}

/*------------------------------------*\
    ABOUT PAGE
\*------------------------------------*/

.middle-row {
    max-width: 87rem;
    margin: 4rem auto;
}

.middle-row p a {
    text-decoration: none !important;
}

.middle-row p {
    margin-bottom: 1.5rem;
}

.middle-row h3 {
    margin-bottom: .5rem;
}

.page-id-49 .page-hero .wp-block-column {
    flex: 1;
}

.page-id-49 .page-hero .wp-block-column:first-child::before {
    bottom: 88px;
}

.page-id-49 .page-hero .wp-block-column:first-child::after {
    height: calc(100% + -4rem);
}

.signature {
    position: relative;
    display: inline-block;
}

.signature,
.signature>div {
    padding: 0 !important;
}

.signature p {
    margin-bottom: 0;
}

.signature svg {
    position: absolute;
    right: -3rem;
    top: -1rem;
    z-index: -1;
}

.person figure {
    position: relative;
    overflow: unset !important;
}

.person figure img {
    z-index: 2;
    position: relative;
}

.person figure::before {
    content: "";
    width: 100%;
    height: 128px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 3;
    background-image: url(assets/images/bottom-forest-gray.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.person figure::after {
    content: "";
    background-image: url(assets/images/simbol.png);
    background-repeat: no-repeat;
    height: 100%;
    background-size: contain;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 10rem;
    z-index: 1;
}


.wp-block-column.leaf {
    background-image: url(assets/images/leaf.png);
    background-repeat: no-repeat;
    background-position: right top;
    padding-right: 3.5rem;
}

.wp-block-column.leaf h3:last-child {
    margin-bottom: 0;
}


/*------------------------------------*\
    VOICES FILTER
\*------------------------------------*/

#resources-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.voice-item {
    width: 100%;
    max-width: calc(33.33% - 2rem);
    background-color: #434343;
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.voice-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.voice-item span {
    color: #BABABA;
}

.voice-item audio {
    margin-top: 2rem;
    width: 100%;
}

.voices-wrapper {
    gap: 6rem;
}

.voice-filters {
    padding: 5rem 4rem;
    display: flex;
    position: relative;
    flex: 1;
    max-width: 34rem;
    flex-direction: column;
    gap: 3.5rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #343435 0%, rgba(52, 52, 53, 0.46) 100%);
}

.voice-filters::before {
    content: "";
    display: block;
    width: 10rem;
    height: 12rem;
    background: url(assets/images/deer2.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -12rem;
    left: 2rem;
}

.voice-filters div>span {
    background: #fff;
    color: var(--black-color);
    font-weight: 600;
    font-size: 1.8rem;
    padding: .5rem 1rem;
    display: inline-block;
    border-radius: 1.5rem;
    width: 100%;
    max-width: calc(50% - 1.5rem);
    text-align: center;
    cursor: pointer;
    border: 1px solid #fff;
    transition: all .3s ease-in;
}

.voice-filters div>span:hover,
.voice-filters div>span.is-active {
    background: #000;
    color: #fff;
}

.no-results {
    margin-top: 5rem;
    font-size: 4rem;
}

.genero-filters,
.edad-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filter-title {
    width: 100%;
}

.voices-wrapper #resources-feed {
    left: 0;
    width: 100%;
    transform: translateX(0);
    flex: 1;
}

.filter-results {
    flex: 1;
}





.voice-filters select:focus {
    outline: none !important;
}

.voice-filters select {
    padding: 10px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(assets/images/select-chevron.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 99% center !important;
    background-size: 25px;
    padding-right: 30px;
}

.voice-filters select option {
    background: #fffdeb;
}

.voice-filters select {
    background-color: #BF97FC !important;
}

.hide {
    display: none !important;
}

.load-more {
    background: transparent;
    color: #fff !important;
    display: inline-block;
    margin: 4rem auto;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 0;
    line-height: 1;
    border-bottom: 2px solid #fff;
    transition: all .23 ease;
}

.load-more:hover {
    border-bottom: none;
}


.voice-filters .select-dropdown {
    max-width: 253px !important;
}

.voice-filters .select-dropdown__button {
    width: 253px !important;
}



.select-dropdown__list::-webkit-scrollbar-track {
    background-color: transparent;
}

.select-dropdown__list::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

.select-dropdown__list::-webkit-scrollbar-thumb {
    background-color: #000;
}


.select-dropdown__button[data-value=""] {
    color: #fff;
}

.select-dropdown {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 0 15px 0 0;
}

.select-dropdown::last-child {
    margin-right: 0px;
}

.select-dropdown__button {
    padding: 10px 35px 10px 15px;
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-weight: 600;
    height: auto;
    border-radius: 1.5rem;
    font-size: 18px;
    background-image: url(assets/images/select-chevron.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 95% center !important;
    background-size: 12px;
}

.select-dropdown__button::focus {
    outline: none;
}

.select-dropdown__button .zmdi-chevron-down {
    position: absolute;
    right: 10px;
    top: 12px;
}

.select-dropdown__list {
    position: absolute;
    display: block;
    left: 5px;
    right: 5px;
    max-height: 300px;
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 1px solid #cecece;
    border-top: 0px solid transparent;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 2;
    padding-left: 0 !important;
    width: 100%;
}

.select-dropdown__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1, 1);
}

.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #fff;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: var(--black-color);
    text-align: left;
    transition: all ease-in-out 0.3s;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #000;
}

.select-dropdown__list-item:hover {
    color: var(--cta-color);
    transition: all ease-in-out 0.3s;
}


/*------------------------------------*\
    ANIMATIONS
\*------------------------------------*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.delay-300 {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}

.delay-1000 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-2000 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}