/*
	Theme Name: Green custom theme
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: Milan
	Author URI: https://nikolic.win/
	Tags: Blank, HTML5, CSS3
	License: MIT
*/
/* VARIABLES */
:root {
    --cta-color: #ff0082;
    --base-color: #323232;
    --grey-color: #525252;
    --light-grey: #333;
    --alt-font: 'Playfair Display', serif;
    font-size: 62.5%;
}

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

body {
    font: 400 1.8rem/1.55 'Barlow', sans-serif;
    color: var(--base-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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 {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}

.alt-font {
    font-family: var(--alt-font);
}

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

.container {
    max-width: 114rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

@media only screen and (min-width:1024px) {
    .col3 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
        flex: 1 1 25%;
        max-width: 25%;
    }
}

.row {
    margin: 0 -2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*------------------------------------*\
    FLEX
\*------------------------------------*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-vertical-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.flex-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

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

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
.text-center {
    text-align: center;
}

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

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

h1 {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--alt-font);
}

h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
}

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

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

h6 {
    font-size: 1.6rem;
}

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

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;
}

/*------------------------------------*\
	GUTENBERG
\*------------------------------------*/
.white > .wp-block-button__link {
    color: #fff !important;
    border-color: #fff;
}

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

.alignfull {
    position: relative;
    width: 100vw;
    left: calc(50% - 0.6rem);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.alignfull .wp-block-group__inner-container {
    max-width: 114rem;
}

.wp-block-image {
    position: relative;
}

.wp-block-image .wp-element-caption {
    position: absolute;
    bottom: -6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--cta-color);
    border: 1px solid var(--cta-color);
    background-color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}

.gal2 .wp-block-image:nth-child(2) {
    position: relative;
    top: -6rem;
    right: -1rem;
}

.gutenberg.no-featured-image {
    padding: 6rem 0 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.gutenberg .has-black-color a {
    color: var(--base-color);
}

.gutenberg p {
    color: var(--light-grey);
}

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

.has-cta-color {
    color: var(--cta-color) !important;
}

.gutenberg h2 strong {
    font-weight: 800;
    color: var(--cta-color);
}

.image-right {
    text-align: right;
    z-index: -1;
    position: relative;
}

.image-right img {
    position: relative;
    display: inline-block;
    margin: -26vh 0 0 auto;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
}

.wp-block-cover {
    padding: 6rem 6rem 4rem;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--cta-color);
    border-color: var(--cta-color);
    color: #fff;
}

.title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.title::before {
    content: "";
    background: url(assets/images/icon-swush.svg) no-repeat;
    width: 70%;
    height: 70%;
    background-size: contain;
    background-position: left;
    position: absolute;
    top: -1rem;
    left: -2rem;
    z-index: -1;
}

.wp-block-quote {
    font-family: var(--alt-font);
    color: var(--light-grey);
    margin: 4rem 0;
}

.wp-block-quote p {
    font-size: 4rem;
    line-height: 1;
    color: var(--light-grey);
    max-width: 70rem;
}

.wp-block-quote .has-text-align-right {
    margin-left: auto;
}

.wp-block-quote cite {
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    line-height: 1.2;
    display: inline-block;
    font-size: 2.4rem;
}

.animation-element img {
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
}

.animation-element,
.animation-element img {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.animation-element.in-view,
.animation-element.in-view img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

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

/*------------------------------------*\
	end of GUTENBERG
\*------------------------------------*/

/*------------------------------------*\
	FORMS AND CF7
\*------------------------------------*/
.wpcf7-submit {
    background-color: #fff;
    border: none;
    height: 5rem;
    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;
}

.wpcf7-submit svg {
    width: 3rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.wpcf7-submit:hover svg {
    -webkit-transform: translate(5px, -5px);
    transform: translate(5px, -5px);
}

input,
textarea {
    font-size: 2.4rem;
    background-color: transparent;
    border: 1px solid #fff;
    width: 100%;
    font-family: 'Barlow', sans-serif;
    padding: 1rem 2rem;
    color: #fff;
}

input:focus,
textarea:focus {
    outline: none;
}

.footer input {
    max-width: 30rem;
}

.footer .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer .wpcf7-submit {
    width: 5rem;
}

footer ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

footer :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

footer ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

footer :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

footer ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.gutenberg input,
.gutenberg textarea {
    background-color: #e2e2e2;
}

.wp-block-contact-form-7-contact-form-selector .col6,
.wp-block-contact-form-7-contact-form-selector .col12 {
    padding: 1rem;
}

.wp-block-contact-form-7-contact-form-selector .row {
    margin: 0 -1rem;
}

.wp-block-contact-form-7-contact-form-selector {
    max-width: 80rem;
}

.wp-block-contact-form-7-contact-form-selector .wpcf7-submit {
    color: var(--base-color) !important;
    background-color: #fff;
    border: 1px solid var(--base-color);
    max-width: 20rem;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
}

.wp-block-contact-form-7-contact-form-selector .wpcf7-submit:hover {
    color: #fff !important;
    background-color: var(--cta-color) !important;
    border-color: var(--cta-color);
}

/*------------------------------------*\
	end of FORMS
\*------------------------------------*/

/*------------------------------------*\
	ANIMATIONS
\*------------------------------------*/
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

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

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

.delay2 {
    -webkit-animation-delay: 1.84s;
    animation-delay: 1.84s;
}

@-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);
    }
}

/*------------------------------------*\
	end of ANIMATIONS
\*------------------------------------*/

/*------------------------------------*\
	HEADER
\*------------------------------------*/
.header ul {
    list-style: none;
}

.header-nav {
    margin-left: 3rem;
}

.header nav > ul > li > a {
    color: var(--base-color);
    font-weight: 800;
    display: inline-block;
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.header nav a:hover,
.header nav .current_page_parent a,
.header nav .current-menu-item a {
    color: var(--cta-color) !important;
}

.header nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.header nav .cta:not(:last-child) {
    margin-top: 4rem;
    margin-bottom: 1rem;
}

body .header nav .cta a:hover {
    color: var(--light-grey)!important;
    border: 1px solid var(--light-grey)!important;
    background-color: #fff!important;
}

.header nav .cta a {
    font-size: 2.4rem;
    font-weight: 400;
    color:#fff!important;
    border: 1px solid var(--cta-color);
    background-color: var(--cta-color);
    padding: 1.2rem 2rem;
}

.header .logo img {
    width: 100%;
    max-width: 23rem;
    height: auto;
}

#mob-menu-bar {
    margin-left: auto;
}

.bar1,
.bar2,
.bar3 {
    height: .2rem;
    margin: .5rem auto .5rem 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--base-color);
    width: 3rem;
}

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

.change .bar2 {
    opacity: 0;
}

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


/*------------------------------------*\
	end of HEADER
\*------------------------------------*/


/*------------------------------------*\
	FOOTER
\*------------------------------------*/
.footer {
    background-color: var(--grey-color);
    color: #fff;
    max-width: 114rem;
    margin: 0 auto 4rem;
    width: 100%;
    padding: 4rem;
}

.footer a {
    color: #fff;
}

.footer ul {
    list-style: none;
}

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

.footer-bottom ul li a {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-top {
    padding-bottom: 4rem;
}

.footer-top ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-top ul.menu > li {
    margin: 0 0 0 4rem;
}

.footer-top ul.menu > li > a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-top ul.menu > li > a:hover {
    color: var(--cta-color);
}



.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 3rem;
}

.footer-bottom ul {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.footer-bottom ul li a:hover {
    color: var(--cta-color);
}

.footer-bottom ul li:not(:last-child):after {
    content: "|";
    display: inline-block;
    position: relative;
    top: 0;
    font-size: 1.5rem;
    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-widget {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-widget p a {
    font-size: 2.5rem;
    border: .1rem solid #fff;
    line-height: 1;
    padding: 1rem 1.5rem;
}

.footer-widget p a:hover {
    background-color: #fff;
    color: var(--cta-color);
}

.footer-widget p a:hover::before {
    content: "";
    background: url(assets/images/email-icon.svg) no-repeat !important;
    background-size: contain !important;
}

.footer-widget p a::before {
    content: "";
    display: inline-block;
    background: url(assets/images/email-icon-white.svg) no-repeat;
    width: 2.7rem;
    height: 2.7rem;
    background-size: contain;
    position: relative;
    top: 5px;
    margin-right: 1rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.footer .screen-reader-response {
    display: none;
}

.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 2rem;
}

.socials a:hover {
    opacity: .84;
}


/*------------------------------------*\
	end of FOOTER
\*------------------------------------*/

/*------------------------------------*\
	RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:1410px) {

    .right,
    .image-right img {
        margin-right: -15rem;
    }

}

@media only screen and (min-width:1025px) {
    #mob-menu-bar {
        display: none;
    }
    .sticky nav.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    z-index: 2020;
    margin-top: 0;
}
.sticky nav.nav > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
}
.sticky nav.nav > ul > li {
    margin: 0!important;
}
.sticky nav.nav > ul > li > a {
    margin:0 2rem!important;
    font-size: 1.6rem!important;
}
}

@media only screen and (max-width:1400px) {
    .image-right img {
        margin-top: 0 !important;
    }
}

@media only screen and (max-width:1170px) {
    .values-wrapper h2 {
        font-size: 5rem !important;
    }

    .logos-wrapper .flex.flex-space-between.flex-vertical-center {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (max-width:1024px) {
    .client_item.list__item  {
        width: 33.33%;
    }
    .gutenberg .alignfull {
        left: -2rem !important;
        -webkit-transform: translateX(0) !important;
        transform: translateX(0) !important;
    }

    .gutenberg .alignfull {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .gutenberg.no-featured-image {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 100% !important;
        flex: 1 1 100% !important;
    }

    .mob-hide {
        display: none !important;
    }

    .gutenberg .wp-block-group {
        padding: 4rem 0;
    }

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

    .header-nav {
        margin-left: 0 !important;
    }

    .header nav {
        margin-bottom: 0 !important;
        border-right: 5px solid var(--cta-color);
        margin-left: 0 !important;
    }

    .single-post .header-nav {
        margin-left: 0;
    }

    .single-post .hero {
        display: block !important;
    }

    .single-post header .container-wide {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .single-post header .container-wide .hero {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin-top: 2rem;
    }

    .single-post .hero-inner {
        left: 0 !important;
    }

    .single-post #mob-menu-bar > div {
        background-color: #fff;
    }

    .alt-header > .container nav {
        margin-bottom: 0 !important;
    }

    .alt-header > .container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .alt-header > .container .header-nav {
        -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
        order: -2;
        margin-left: 0;
    }

    .alt-header > .container #mob-menu-bar {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .alt-header .posts-loop {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .hero {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin-top: 2rem;
    }

    .header .container-wide {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    header .hero .hero-inner {
        position: relative;
        left: 0;
        bottom: 0;
        color: var(--base-color);
    }

    .hero::before {
        display: none !important;
    }

    .header nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        background: var(--grey-color);
        width: 100%;
        max-width: 70%;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all .23s ease-in-out;
        transition: all .23s ease-in-out;
        z-index: 2020;
        margin-top: 0 !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        padding: 3rem;
    }

    .header nav a {
        color: #fff !important;
    }

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

@media only screen and (max-width:920px) {
	.move {
		transform: translateY(0)!important;
	}
	.gal2 .wp-block-image:nth-child(2) {
		top: 4rem!important;
	}

    .mp0 {
        padding: 0 !important;
    }

    .footer-bottom,
    .footer-top,
    .footer ul {
        -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 ul {
        margin: 0 0 3rem !important;
    }

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

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

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

    .footer-bottom ul li:not(:last-child):after {
        display: none !important;
    }

    .footer {
        margin-bottom: 0 !important;
    }

    .middle-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .middle-banner-text {
        margin: 2rem 0 1rem !important;
    }

    .valuesSwiper .swiper-wrapper h2 {
        font-size: 2.3rem !important;
    }

    .wp-block-cover {
        padding: 3rem 2rem 2rem !important;
    }

    input,
    textarea {
        font-size: 2rem !important;
    }

    .wpcf7-submit {
        height: 4.5rem !important;
    }

    .square::after {
        width: 15rem !important;
        height: 15rem !important;
    }
}

@media only screen and (max-width:480px) {
    #containerElem, #containerElem .list {
        height: 19rem;
    }
    .client_item.list__item  {
        width: 50%!important;
    }
	.logos-wrapper .title-wrapper {
		margin-left: 2rem!important;
	}
	body .gutenberg .square::after {
		width: 100%!important;
		height: 100%!important;
        opacity: .3;
	}
	.square p {
		margin-left: 0!important;
		margin-right: 0!important;
		max-width: 100%!important;
		padding-left: 3rem;
    	padding-right: 3rem
	}
	.square p:last-child {
		margin-bottom: 0;
	}
    .gutenberg h1 {
        font-size: 4rem;
    }

    .hero-inner h1 {
        margin-top: 2rem;
        font-size: 3.3rem !important;
    }

    body .values-wrapper h2,
    .wp-block-quote p {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 3.5rem;
    }

    .header nav > ul > li > a {
        font-size: 3rem !important;
    }

    .logos-wrapper .client {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}



/*------------------------------------*\
	end of RESPONSIVE
\*------------------------------------*/


/*------------------------------------*\
	HERO
\*------------------------------------*/
.hero {
    position: relative;
    color: #fff;
}

.hero::before {
    content: "";
    background: rgba(0, 0, 0, .2);
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-inner {
    position: absolute;
    left: 6rem;
    bottom: 6rem;
    z-index: 2;
}

.hero-inner h1 {
    font-family: 'Barlow', sans-serif;
    ;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.single-post .hero-inner {
    color: #fff !important;
}

.special-title {
    display: inline-block;
    position: relative;
}

.hero-inner h1::before,
.special-title::before {
    content: "";
    background: url(assets/images/icon-swush.svg) no-repeat;
    width: 70%;
    height: 70%;
    background-size: contain;
    background-position: right;
    position: absolute;
    top: -1rem;
    right: 0;
    z-index: -1;
}

.hero-inner p {
    font-size: 2.4rem;
}

.hero-inner img {
    height: 100%;
}

/*------------------------------------*\
	end of HERO
\*------------------------------------*/

/*------------------------------------*\
	 BLOG
\*------------------------------------*/
.page-numbers {
    margin: 0 .7rem;
}

.single-post .wp-block-quote > p {
    color: var(--cta-color) !important;
}

.single-post .wp-block-quote {
    border-left: 1rem solid var(--base-color);
    padding-left: 2rem;
}

.single-post article {
    margin-top: 6rem;
}

.post-sidebar .latest-posts {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--grey-color);
    margin-bottom: 1rem;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem 0 .5rem 1rem;
    font-weight: 700;
}

.post-sidebar .latest-posts:hover {
    opacity: .84;
}

.post-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.post-sidebar .latest-posts:hover svg {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.post-sidebar .latest-posts svg {
    margin-left: auto;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    height: 6rem;
}

.post-sidebar .latest-posts span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-post .body-content > .container {
    max-width: 123rem;
}

.single-post header {
    background-color: var(--grey-color);
}

.single-post header ul li a {
    color: #fff;
}

.single-post header ul li.cta a {
    color: #fff;
    border-color: #fff;
}

.single-post footer {
    max-width: 119rem;
}

.single-post .hero::before {
    display: none;
}

.single-post .hero-inner {
    position: relative;
    bottom: 0;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.single-post .hero-inner h1::before {
    display: none;
}

.single-post .container-wide {
    max-width: 135rem;
}

.single-post .hero {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 98rem;
}

.single-post .hero img {
    max-height: 50vh;
    width: 100%;
}

.posts-loop {
    padding: 6rem 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.posts-loop h3 {
    font-size: 3rem;
    line-height: 1;
    font-family: var(--alt-font);
    height: 100%;
}

.posts-loop h3 a {
    color: var(--base-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.posts-loop h3 a:hover::after {
    width: 100%;
}

.posts-loop h3 a::after {
    content: "";
    display: block;
    height: 1.4rem;
    background-color: var(--cta-color);
    width: 6rem;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    margin-top: 2rem;
}

.posts-loop .col4 h3 {
    font-size: 2.4rem;
}

.middle-banner-text {
    margin-left: -3rem;
}

.wp-block-button .wp-block-button__link {
    border-radius: 0 !important;
}

.wp-block-button.is-style-outline > .wp-block-button__link,
.wp-block-button .wp-block-button__link.is-style-outline {
    border-width: 1px !important;
}

/*------------------------------------*\
	end of BLOG
\*------------------------------------*/

.logos-wrapper {
    padding: 6rem 0;
}

.logos-wrapper .title-wrapper {
    margin: 0 23% 4rem auto;
}

.logos-wrapper .client {
    margin: 2rem;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.logos-wrapper .client img {
    max-height: 14rem;
    width: 100%;
}

.logos-wrapper .client h4 {
    font-family: var(--alt-font);
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
}

.logos-wrapper .client svg {
    max-width: 8rem;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    position: absolute;
    bottom: -12px;
    height: auto;
    left: -5px;
}

.logos-wrapper .client:hover svg {
    max-width: 9rem;
}

.client-description {
    font-size: 1.6rem;
}

.title-wrapper p {
    margin-bottom: 1rem;
}

.title-wrapper h3 {
    position: relative;
}

/*.logos-wrapper .title-wrapper h3::before {
    content: "";
    background: url(assets/images/icon-swush.svg) no-repeat;
    width: 50%;
    height: 50%;
    background-size: contain;
    background-position: left;
    position: absolute;
    top: 35%;
    left: 36%;
    z-index: -1;
}
.home .logos-wrapper .title-wrapper h3::before  {
    top: 27%;
}*/

.values-wrapper {
    font-size: 4rem;
    color: var(--cta-color);
    padding: 4rem 0;
    font-family: var(--alt-font);
}

.values-wrapper h2 {
    font-weight: 500;
    font-size: 8rem;
    font-family: var(--alt-font);
    color: var(--cta);
    margin-bottom: 0;
}

.valuesSwiper .swiper-wrapper {
    min-height: 70vh;
    height: 100vh;
}

.values-wrapper ul {
    list-style: none;
}

/*body.home {
	overflow-x: hidden;
}*/
.valuesSwiper .swiper-wrapper h2 {
    /*	max-width: 92rem;*/
}

.valuesSwiper .swiper-wrapper .swiper-slide,
.values-wrapper li {
    opacity: .2;
    padding: 1rem 0;
}

.values-wrapper li.highlight--1.highlight--2 {
    opacity: 1 !important;
}

.values-wrapper li.highlight--1 {
    opacity: .6 !important;
}


/*** accordions***/
.accordion-title {
    font-size: 2rem;
    cursor: pointer;
}

.accordion-title svg,
.accordion-content svg.arrow-up {
    height: auto;
    width: 1rem;
    display: block;
    margin-top: 1rem;
}

.accordion-title.opened svg {
    display: none;
}

.accordion-content {
    font-size: 1.6rem;
    padding-top: 2rem;
    display: none;
}

.accordion-content svg.arrow-up {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.accordion-item {
    margin-bottom: 4rem;
    color: #3b3b3b;
}
.arrow-up, .arrow-down {
	cursor: pointer;
	transition: all .23s ease-in;
}
.arrow-up:hover {
	transform: scaleY(-1) translateY(10px)!important;
}
.accordion-title:hover .arrow-down {
	transform: translateY(10px)!important;
}



.square {
    position: relative;
    max-width: 81rem;
    margin-left: auto;
    margin-right: auto;
}

.square::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30rem;
    height: 30rem;
    background-color: #bfbfbf;
    z-index: -1;
    background-image: url(assets/images/alexander-scholze-changecoach-portrait04-a.svg);
    background-repeat: no-repeat;
    background-size: 84%;
    background-position: center;
}

.square p {
    max-width: 29rem;
}

.square .wp-block-group__inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.square p:nth-child(1) {
    margin-left: auto;
}

.square p:nth-child(3) {
    margin-left: auto;
    margin-right: 8rem;
}


.page-id-12 h3.alt-font {
	font-size: 2.4rem;
}


.hero-inner h1::before {
    display: none!important;
}
.hero-inner h1 b,
.title-wrapper b {
    position: relative;
}
.title-wrapper b {
    font-weight: 800;
}
.hero-inner h1 b::before,
.title-wrapper b::before {
    content: "";
    background: url(assets/images/icon-swush.svg) no-repeat;
    width: 115%;
    height: 115%;
    background-size: contain;
    background-position: right;
    position: absolute;
    top: 0;
    right: -9px;
    z-index: -1;
}
.home .hero-inner h1 b::before {
        width: 123%;
    height: 123%;
        top: -3px;
}