/*
	Theme Name: MK custom theme
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: Milan Nikolic
    Url: https:/nikolic.win/
	Tags: Gutenberg, HTML5, CSS3
	License: MIT
*/
/* VARIABLES */
:root {
    --primary-color: #512B28;
    --secondary-color: #D14A50;
    --accent-color: #E88357;
    --accent-color2: #00B887;
    --light-color: #e9eaf2;
    --dark-color: #5F0000;
    --neutral-color:#B49B9C;
    --container:134rem;

    font-size: 62.5%;
}
.has-primary-color {
    color: var(--primary-color);
}
.has-secondary-color {
    color: var(--secondary-color);
}
.has-primary-background-color {
    background-color: var(--primary-color);
}
.has-secondary-background-color {
    background-color: var(--secondary-color);
}
.has-accent-background-color {
    background-color: var(--accent-color);
}
.has-accent2-background-color {
    background-color: var(--accent-color2);
}
.has-light-gray-background-color {
    background-color: var(--light-color);
}
.has-accent-color {
    color: var(--accent-color);
}
.has-light-gray-color {
    color: var(--light-color);
}

.has-accent-2-color {
    color: var(--accent-color2);
}


/* 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.5 "Manrope", sans-serif;
    color: var(--primary-color)!important;
    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(--secondary-color);
}

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

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

/* wrapper */
.wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}
.logged-in.admin-bar header.header {
    top: 32px!important;
}

/*------------------------------------*\
    CONTAINERS
\*------------------------------------*/
.container,
.container-narrow,
.container-wide {
    margin: 0 auto;
    padding: 0 2rem;
}
.container-wide,
.alignwide .wp-block-group__inner-container {
    max-width: calc(var(--container) * 1.25 + 4rem)!important;
}

.container, .wp-block-group .wp-block-group__inner-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.gutenberg .wp-block-group.alignfull .wp-block-group__inner-container {
    max-width: 192rem;
}
.gutenberg .wp-block-group .wp-block-group__inner-container {
    max-width: var(--container);
}
.container-narrow {
    max-width: 57rem;
}

.alignfull .wp-block-cover__inner-container,
.alignwide .wp-block-group__inner-container {
    max-width: var(--container);
    padding: 0 2rem;
}
/*------------------------------------*\
    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-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

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

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

p {
    margin-bottom: 1.5rem;
}

p strong {
    font-weight: 600;
}

h1, h2 {
    color: var(--dark-color)!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 2rem;
    line-height: 1;
    font-weight: 600;
}

h1 {
    font-size: 5.5rem;
}
h2 {
    font-size: 5.2rem;
}

h3 {
    font-size: 3rem;
    font-weight: 700;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.3;
}

h5 {
    font-size: 2rem;
    line-height: 1.42;
}

h6 {
    font-size: 1.8rem;
    line-height: 1.4;
}



.has-small-font-size {
    font-size: 1.2rem!important;
}
.has-medium-font-size {
    font-size: 2.5rem!important;
    font-weight: 500;
}
.has-large-font-size {
    font-size: 3rem!important;
    font-weight: 500;
}
.has-x-large-font-size {
    font-size: 3.4rem!important;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}
/*------------------------------------*\
	BUTTONS
\*------------------------------------*/
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(--accent-color2);
}

a:focus {
    outline: 0;
}

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

.btn,
.cta > a,
.wp-block-button__link,
.wpcf7-submit {
    border-radius: 5rem!important;
    background-color: var(--accent-color);
    color: #fff;
    display: inline-flex!important;
    line-height: 1;
    padding: 1.1rem 2.4rem!important;
    min-width: 20rem;
    width: auto;
    text-align: center;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.6rem;
    min-height: 4.5rem;
}

.wp-block-button.is-style-btn-secondary .wp-block-button__link {
    background-color: var(--neutral-color);
}
.wp-block-button.is-style-btn-secondary .wp-block-button__link:hover {
    background-color: var(--dark-color);
    color: #fff;
}

.btn:hover,
.cta > a:hover,
.wpcf7-submit:hover {

}
/*
.wp-block-button__link::before,
.wp-block-button__link::after,
.btn::before,
.btn::after {
    content: "";
    display: inline-block;
    position: relative;
    transition: all .33s ease;
}*/
/*.wp-block-button__link::before,
.btn::before  {
    background: url(assets/images/arrow-small-right-white.svg) no-repeat;
    background-size: contain;
    background-position: center;
    width: 0;
    height: 2.4rem;
    margin: 0 .5rem 0 0;
    transform: scale(0);  
}*/

/*.wp-block-button__link::after,
.btn::after {
    border-radius: 100%;
    width: .3rem;
    height: .3rem;
    margin: 0 .5rem 0 1.7rem;
}*/
.wp-block-button:not([class*=" "]) .wp-block-button__link::after  {
    background-color: #fff;
}
.wp-block-button.is-style-outline .wp-block-button__link::after,
.btn-outline::after  {
    background-color: var(--primary-color);
}
.wp-block-button:not([class*=" "]) > a:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--primary-color);
}
.wp-block-button__link:hover::after,
.btn:hover::after {
    opacity: 0;
    width: 0;
    margin: 0;
}
.wp-block-button__link:hover::before,
.btn:hover::before {
    opacity: 1;
    transform: scale(1);
    width: 2.4rem;
}
.main-hero .wp-block-button.is-style-outline > a {
    background-color: #fff;
}
.btn-outline {
    background-color: transparent;
    color: var(--primary-color)!important;
}



.wp-block-buttons {
    gap: 1.6rem;
}
/*------------------------------------*\
	end of BUTTONS
\*------------------------------------*/

/*------------------------------------*\
	GUTENBERG
\*------------------------------------*/
.gutenberg .wp-block-image {
    margin-bottom: 3rem;
}
.wp-block-post-title {
    text-transform: uppercase;
}
.wp-block-image.is-style-rounded img {
    border-radius: 2.4rem!important;
}
.gutenberg > .wp-block-cover:first-child .wp-block-cover__inner-container {
    max-width: var(--container);
    margin: 0 auto!important;
}
.gutenberg > .wp-block-cover:first-child .wp-block-cover__image-background{
   /* min-height: 130%;*/
    background-attachment: scroll!important;
    transition: all .1s ease;
    top: -1px;
}

.gutenberg .wp-block-video video {
    object-fit: cover;
    aspect-ratio: 16/9;
}
.gutenberg ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 3rem!important;
  gap: 1rem;
}
.gutenberg ol li {
  counter-increment: my-awesome-counter;
  position: relative;
}
.gutenberg ol li::before {
  content:  counter(my-awesome-counter) ". ";
  font-size: 1.8rem;
  font-family: var(--alt-font);
      position: absolute;
    left: -3rem;
    top: .4rem;
    line-height: 1;
    color: var(--cta-color);
}

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

.wp-block-group {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.alignfull {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}
.alignwide {
    margin: 0 auto;
}

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


.alignfull .wp-block-group__inner-container .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;
}
/*------------------------------------*\
	end of GUTENBERG
\*------------------------------------*/



/*------------------------------------*\
	FORMS AND CF7
\*------------------------------------*/
input,
textarea,
select {
    font-family: inherit;
    background: transparent;
    width: 100%;
    -webkit-appearance: none;
    outline: none!important;
    font-size: 1.4rem;
}

select {
        height: 5.2rem;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    padding: 1.4rem;
    border-radius: 1.6rem;
    margin-top: .5rem !important;
    background: url(assets/images/arrow-down.svg) no-repeat;
    background-size: 15px;
    background-position: 97% center;
    cursor: pointer;
}

input:focus, textarea:focus {
    border-color: var(--cta-color2)!important;
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--base-color);
    opacity: 1;
    /* Firefox */
}
input::placeholder,
textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--base-color);
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--base-color);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--base-color);
}
textarea {
  resize: none;
}

.wpcf7 input {
    height: 5.2rem;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    padding: 1.4rem;
    border-radius: 1.6rem;
    margin-top: .5rem!important;
}
.wpcf7 textarea {
    height: 7.2rem;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    padding: 1.4rem;
    overflow: hidden;
    border-radius: 1.6rem;
    margin-top: .5rem!important;
    height: fit-content !important;
    overflow: hidden;
    min-height: 5.2rem;
}


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

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

.wpcf7 .wpcf7-submit {
    width: auto !important;
    cursor: pointer;
    background-color: var(--primary-color);
}


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



.wpcf7-not-valid-tip {
    font-size: 1.4rem !important;
    color: #FF4500;
    position: relative;
    left: 12px;
}
.wpcf7 abbr {
    color: #FF4500;
    position: relative;
    left: 3px;
}
.wpcf7-response-output {
    font-weight: 700;
}
.wpcf7 {
    position: relative;
    overflow: hidden;
}
.sent .wpcf7-response-output{
    color: var(--primary-color);
    position: absolute;
    background: var(--secondary-color);
    color: #fff;
    z-index: 5;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    font-size: 2.7rem !important;
    justify-content: center;
    align-items: center;
    border: none!important;
    padding: 4rem!important;
    text-align: center;
    background-color: var(--secondary-color);
}
.invalid .wpcf7-response-output {
    border: none!important;
    color: #dc3232;
    font-size: 1.4rem;
    font-weight: normal;
    display: block;
    text-align: center;
}


/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }



/*Checkboxes styles*/
input[type="checkbox"]  { display: none!important; }

input[type="checkbox"] + span,
input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom:0;
  color: var(--base-color);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-size: 1.4rem;
  max-width: 50rem;
}

/*input[type="checkbox"] + span:last-child { margin-bottom: 0; }*/

input[type="checkbox"] + label:before {
  content: ''!important;
  display: block!important;
  width:2rem;
  height: 2rem;
  border: 1px solid var(--base-color);
    border-radius: 0;
    background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .12s, border-color .08s;
  border-radius: 5px;
}
input[type="checkbox"]:checked + label:after {
    content: "";
    background: var(--base-color);
     width:2rem;
    height: 2rem;
  position: absolute;
  left: 0;
    top: 0;
    border-radius: 5px;
}
input[type="checkbox"]:checked + label:before {
  box-shadow:none!important;
  width: 7px;
  top: -3px;
  left: 8px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent!important;
  border-left-color: transparent!important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: transparent;
  border: 2px solid #fff;
  z-index: 2;
}
.evf-error {
    font-size: 1.3rem!important;
}

.wpcf7-acceptance {
    display: block;
    margin-bottom: 3.2rem;
}
.wpcf7-form .row {
    margin: 0 -.8rem;
}
.wpcf7-form .row .col6, .wpcf7-form .row .col12 {
    padding: .8rem;
}
.wpcf7-not-valid {
    border-color: #D31510!important;
}
/*------------------------------------*\
	end of FORMS
\*------------------------------------*/

/*------------------------------------*\
	ANIMATIONS
\*------------------------------------*/
.animated, .onscroll-view {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
.delay03 {
    -webkit-animation-delay: .3s;
    animation-delay:.3s;
}
.delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

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

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 1;
        -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: 1;
        -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, .in-viewport.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, .in-viewport.fadeinup {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.fadeinup, .fadeinright {
    opacity: 0;
}

@-webkit-keyframes fadeInDown {
    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 fadeInDown {
    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);
    }
  }
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }

  @-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
      transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
      transform: translate3d(25px, 0, 0) scaleX(1);
    }
  
    75% {
      -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
      transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
  
    90% {
      -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
      transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
      transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
      transform: translate3d(25px, 0, 0) scaleX(1);
    }
  
    75% {
      -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
      transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
  
    90% {
      -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
      transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .fadein {
    opacity: 0;
  }
  .fadein.in-viewport {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
/*------------------------------------*\
	end of ANIMATIONS
\*------------------------------------*/

/*------------------------------------*\
	HEADER
\*------------------------------------*/
.header {
    z-index: 2015;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    padding: .8rem 0!important;
}
.header .logo img {
    max-width: 25rem;
    width: 100%;
}

.header nav .sub-menu a {
    display: flex!important;
    width: 100%!important;
}

header nav ul li:not(.cta):hover > svg path,
.header .current-menu-parent > svg  path {
    fill: var(--primary-color);
}
header nav ul li.current-menu-item:not(.cta) > a::after,
header nav ul li:not(.cta) > a:hover::after,
header .current-category-ancestor > a::after {
    width: 100%!important;
    background-color: var(--accent-color)!important;
    
}
header nav ul li.current-menu-item > svg path,
header nav ul li.current-menu-parent > svg path {
    fill: var(--accent-color)!important;
}

header nav > ul > li:not(.cta) > a::after {
    bottom: .5rem;
}
header:not(.sticky) .logo svg path {
    fill: var(--primary-color);
}
header ul li.cta > a {
    padding-top: .6rem!important;
    padding-bottom: .6rem!important;
    min-width: 18rem;
}
header ul li.cta:not(.cta-outline) > a {
    background-color: var(--accent-color)!important;
    border-color: var(--accent-color);
    color: #fff!important;
    font-weight: 600;
    font-size: 1.6rem!important;
    border-radius: 5rem!important;
    min-height: 4.5rem;
}
header ul li.cta:not(.cta-outline) > a:hover {
    background-color: var(--dark-color)!important;
    border-color: var(--dark-color)!important;
    color: #fff!important;
}
header ul li.cta:not(.cta-outline) > a::after {
    display: none!important;
}


.header > .container {
    gap: 4rem;
}
.header nav {
    margin-left: auto;
    height: 100%;
    align-items: center;
    gap: 3.2rem;
}
.header nav > ul:last-child {
    gap: 1.6rem;
}

.header nav > ul:first-child {
    gap: 3.2rem;
}

header.alt-header,
.header.sticky,
.header:not(.transparent)  {
   /* background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); */
  background-color: var(--secondary-color);

}

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

header .menu-item-has-children {
    position: relative;
}
header .menu-item-has-children > svg {
    margin-left: 4px;
    position: relative;
    top: 6px;
}
.header ul.sub-menu {
    flex-direction: column;
    gap: .5rem;
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: .5rem;
}

.header nav ul.sub-menu {
    min-width: 16rem;
}
.header nav ul.sub-menu li {
    display: flex;
}
.header nav ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0;
    min-width: 20rem;
    padding-left: 1rem;
    padding-top: 0;
}
.header nav ul.sub-menu .menu-item-has-children > svg {
    top: 8px;    
}
.header nav ul.sub-menu a {
    color: var(--grey-color);
    font-size: 1.4rem!important;
}

.header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}

.header ul .cta {
    display: inline-flex;
    align-items: center;
}


.header nav > ul > li > a {
    color: #fff;
    display: inline-block;
    font-size: 1.6rem;
    padding: .6rem 0;
    position: relative;
    text-transform: uppercase;
}
.header nav > ul > li > a::after {
    content: "";
    background-color: var(--accent-color);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .33s ease-in-out;
}
.header nav > ul > li > a:hover::after,
.header nav > ul > li.current-menu-item > a::after {
    width: 100%;
}


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

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

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

.header .menu-item-has-children > .sub-menu {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    right: 0;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
    display: none;
    padding: 1rem 1.6rem;
    background-color: #fff;
    left: -1rem;
    gap: 1.6rem;
}
.header .menu-item-has-children > svg {
    transition: all .23s ease;
}


.header .menu-item-has-children > .sub-menu a {
    font-size: 1.4rem;
    display: inline-block;
    position: relative;
   font-weight: 400;
   color: var(--base-color);
}
.header .menu-item-has-children > .sub-menu a::after {
    background-color: var(--accent-color);
}

.header-bottom {
    position: sticky;
    top: 0;
    z-index: 2015;
    background: #fff;
    padding: 2rem;
}
.header-bottom > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
}
.header-bottom ul li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.6rem;
}
.header-bottom ul li a:hover {
    color: var(--accent-color);
}
/*
/*------------------------------------*\
	end of HEADER
\*------------------------------------*/


/*------------------------------------*\
	FOOTER
\*------------------------------------*/
.footer {
    position: relative;
    color: var(--light-color);
}
.footer .email::before {
    content: "";
    background: url(assets/images/email-icon-white.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    top: 4px;
}

.footer .phone::before {
    content: "";
    background: url(assets/images/phone-icon.svg) no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
    display: inline-block;
    position: relative;
    margin-right: 0px;
    top: 6px;
    background-position: center;
    left: -3px;
}

.footer .location::before {
    content: "";
    background: url(assets/images/location-icon.svg) no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
    display: inline-block;
    position: relative;
    margin-right: 0px;
    top: 6px;
    background-position: center;
    left: -3px;
}

.footer-top {
    padding:6rem 0;
    background-color: #fff;
}
.footer-top .wp-block-columns {
    justify-content: space-between;
}
.footer-top .has-large-font-size {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
}

.footer-top .wp-block-column .wp-block-group {
    padding: 5px 0;
}
.footer-top .wp-block-column:nth-child(1) {
    border-radius: 3rem;
    color: #000;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06);
    position: relative;
    padding: 4.5rem 10rem 2rem;
    margin-top: -15rem;
    background-color: #fff;
}
.wpcf7 .hidden-fields-container{
    display: none;
}
.footer-top  .wpcf7 {
    padding: 0;
    margin-top: 4rem;
}
.footer-top  .wpcf7 input,
.footer-top  .wpcf7 textarea {
    border-color: var(--secondary-color);
    border-radius: 3rem;
    padding: 1.2rem 2rem;
    height: auto;
}
.footer-top .wpcf7-submit {
    background-color: var(--secondary-color);
    width: auto;
    max-width: 23rem;
    margin: 0 auto!important;
    border: none;
    min-height: 4.5rem;
    height: auto;
}
.footer-top .wp-block-column:nth-child(2) {
    max-width: 42rem;
}
.footer-top .wp-block-column .wp-block-group .wp-block-image {
    margin: 0;
    border-radius: 100%;
    border: 1px solid #B49B9C;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-top .wp-block-column .wp-block-group p {
    flex: 1;
    color: #000;
    line-height: 1.3;
    margin: 0 0 0 1.5rem;
    font-size: 1.6rem;
}

.footer-top .widget_nav_menu > ul {
    display: flex;
    flex-direction: row;
    gap: 13rem;
}
.footer-top .widget_nav_menu > ul > li > a {
    font-weight: 700;
    pointer-events: none;
}
.footer-top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-top ul a {
    color: var(--primary-color);
}
.footer-top ul ul {
    flex-direction: column;
    gap: .8rem;
    margin-top: .8rem;
}
.footer-top ul a:hover,
.footer-top ul li.current-menu-item a {
    color: var(--accent-color2)!important;
}


ul .facebook a,
ul .linkedin a,
ul .instagram a {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

ul .facebook a:hover svg path,
ul .linkedin a:hover svg path,
ul .instagram a:hover svg path {
    fill: var(--accent-color2);
}

.footer-top ul li svg path {
    transition: all .23s ease-in;
}

.footer-bottom {
    padding: 5rem 0;
    font-size: 1.6rem;
    background-color: var(--secondary-color);
}

.footer-bottom .copyright {
    opacity: .6;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
}

.footer-logo {
    font-size: 2rem;
}

.footer-bottom ul li a:hover,
.footer-bottom ul li.current-menu-item a {
    color: var(--dark-color);
}

nav .wp-block-social-links {
    padding: 1.4rem 0;
    border-top: 1px solid rgba(206, 206, 234, .1);
}
.wp-block-social-links {
    flex-direction: row!important;
    gap: 2rem;
}
.wp-block-social-links li {
    background-color: transparent;
}
.wp-block-social-links li svg path {
    fill: var(--light-color);
}



.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(200,200,255,0.4);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
    z-index: 23;
}
.progress-wrap::after {
	position: absolute;
	content:"";
    background: url(assets/images/up-arrow.svg) no-repeat;
	background-size: contain;
    background-position: center;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	height: 46px;
	width: 24px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: .69;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e84b';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	/*background-image: linear-gradient(298deg, var(--red), var(--yellow));*/
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--secondary-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

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

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

    :root {
       /* font-size: 84%!important;*/
    }


}

@media only screen and (max-width:1500px) {
    body .our-team .team-intro::before {
        left: -2rem!important;
    }

    .home h1 {
        font-size: 4rem!important;
    }

}

@media only screen and (max-width:1470px) {
    body .related-posts-nav {
        margin-left: 2rem;
    }
    .why-section .wp-block-group__inner-container > .wp-block-columns {
        gap: 4rem!important;
    }
    
}

@media only screen and (max-width:1366px) {
    .main-hero p.has-large-font-size {
        font-size: 1.6rem!important;
    }
    .main-hero p.has-x-large-font-size {
        font-size: 2rem!important;
    }
    .main-hero h1 {
        font-size: 5rem;
    }
    body .main-hero .wp-block-image img {
        max-height: 69vh;
    }
    body h2,
    body .slider-header h2 {
        font-size: 4rem;
    }
    .main-hero .wp-block-column:last-child {
        flex-basis: 45%!important;
    }
    body .why-section .wp-block-group__inner-container > .wp-block-columns > .wp-block-column:last-child,
    body .how-it-works-intro,
    body .how-it-works-features,
    body .how-to,
    body .sustainabillity-intro,
    body .eco-sustainabillity p {
        font-size: 1.6rem;
    }

    .btn, .cta > a, body .wp-block-button__link, .wpcf7-submit {
        min-height: 5rem;
    }
}
@media (min-width: 1200px) and (max-width: 1366px) {

  .alignfull .wp-block-cover__inner-container, .alignwide .wp-block-group__inner-container,
  .container, .container-narrow, .container-wide {
    padding: 0 3vw!important;
  }
}

@media only screen and (min-width:1201px) {
    .header .menu-item-has-children > .sub-menu {
        border: 1px solid #DCDEE0;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.20);
        border-radius: 1.2rem;  
    }
    .hide-on-desktop {
        display: none;
    }
.header nav ul.sub-menu .menu-item-has-children:hover > svg {
    transform: rotate(270deg);
    top: 7px;
}
.header .menu-item-has-children:hover > svg {
    transform: scaleY(-1);
    top: 6px;
}

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

    .header  ul  li a {
        position: relative;
    }
    .header  ul > li > a::after {
        content: "";
        width: 0;
        height: 2px;
        border-radius: 5px;
        background-color: #fff;
        transition: all .23s ease-in;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .header  ul > li.current-menu-item > a::after,  .header ul > li > a:hover::after  {
        width: 100%;
    }

    .header.sticky .sub-menu {
        z-index: 2020;
        padding: 1rem;
        left: -1rem;
        right: auto!important;
    }
    .header.sticky .sub-menu li a::after, .header.alt-header .sub-menu li a::after  {
        bottom: 0!important;
    }
}
@media only screen and (max-width:1300px) {
     body .testimonial-group .wp-block-image.is-style-rounded {
        left: -2rem;
    }
}

@media only screen and (max-width:767px) {
	.latest-posts-block::before {
		z-index:-1;
	}
	.post-in-loop-content h2 a {
		font-size:1.8rem!important;
	}
    .header-bottom.menu-open {
        transform: translateX(0);
    }
    body .has-medium-font-size {
        font-size: 1.8rem!important;
    }
    .header-bottom {
        position: fixed;
        top: 79px;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all .23s ease-in-out;
        transform: translateX(-100%);
    }
    .header-bottom ul {
        flex-direction: column;
        margin-top: 2rem;
    }
    header nav .sub-menu {
        text-align: center;
    }
    .slider-header h2 {
        font-size: 3.4rem!important;
    }
    .footer-banner {
        max-width: calc(100vw - 4rem)!important;
    }
    .page404-section .flex {
        padding: 0 2rem;
    }
    .menu-open header .logo {
        z-index: 2;
    }
    .menu-open header .logo svg path {
        fill: var(--base-color)!important;
    }
    .change > div {
        background-color: var(--primary-color)!important;
    }

    header nav ul .sub-menu .menu-item-has-children > a {
        width: auto!important;
        display: inline-block!important;
    }
    .header nav ul ul.sub-menu {
        padding-top: .5rem!important;
    }
    .header nav ul ul.sub-menu li a::after {
        bottom: -6px;
    }
    .header .menu-item-has-children > svg.opened {
        transform: scaleY(-1);
    } 

    .header nav ul.sub-menu ul.sub-menu {
        left: 0!important;
        top: 0!important;
        width: 100%!important;
    }
    .header nav ul.sub-menu > li.menu-item-has-children {
        flex-wrap: wrap;
    }
    body .header nav > ul:first-child .sub-menu li {
        padding: .5rem 0;
        border-color: var(--base-color);
    }
    header ul li.menu-item-has-children .sub-menu,
    body .sticky.header ul.sub-menu, body .alt-header.header ul.sub-menu {
        background-color: transparent!important;
        top: 0!important;
        transition: none!important;
    }
    .header .menu-item-has-children > .sub-menu {
        position: relative!important;
    }
    .header .menu-item-has-children > svg path {
        stroke: var(--base-color);
    }
    .header .menu-item-has-children > .sub-menu a {
        display: inline-block!important;
    }

    .header nav ul {
        gap: 1rem!important;
    }

    body  .header nav > ul:first-child > li {
        border-bottom: 1px solid var(--grey);
    }
    header .menu-item-has-children > svg,
    header nav .header-metas {
        display: none;
    }

    body  .header nav > ul:first-child .sub-menu {
        display: flex;
    }
    body  .header nav > ul:first-child .sub-menu li a {
        font-size: 1.6rem!important;
        font-weight: 400;
    }

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

    body .hero h2 {
        font-size: 4.8rem !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 !important;
    }

     #mob-menu-bar {
        margin-left: auto;
    }
    #mob-menu-bar > div {
        width: 2.4rem;
        height: 2px;
        background: #fff!important;
        border-radius: 3px;
        margin-bottom: 6px;
        -webkit-transition: all .23s ease-in;
        transition: all .23s ease-in;
    }

    header:not(.sticky) #mob-menu-bar > div, header:not(.alt-header)  #mob-menu-bar > div {
        background-color: #fff;
    }
   body header.sticky #mob-menu-bar > div, body header.alt-header #mob-menu-bar > div {
        background: var(--base-color);
    }

    #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: 100vw;
        background-color: var(--accent-color);
        color: var(--base-color);
        max-width: 100vw;
        -webkit-transition: all .33s ease-in-out;
        transition: all .33s ease-in-out;
        -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;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 8rem 2rem 4rem;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        height: 100%;
        overflow: auto;
        min-height: 100vh;
        gap: 1.4rem!important;
    }



    body .header nav > ul {
        max-width: 48rem;
        margin-top: 5rem;
        margin-right: auto;
        margin-left: auto;
        gap: .5rem!important;
        flex: 1;
        height: 100%;
    }

    body .header nav > ul .cta-outline {
        margin-top: auto!important;
    }
    body .header nav > ul .cta {
        margin-left:0!important;
        margin-right: 0!important;
    }
    body .header nav > ul .cta > a {
        margin: 0 auto 1.1rem;
        width: 100%;
        max-width: 34rem;
    }
    body .header nav > ul .sub-menu {
        left: 0!important;
    }
    body .header nav > ul .sub-menu li {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    body .header nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

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

    body .header nav ul li:not(.cta) {
        width: 100%;
       /* margin-bottom: 4.3rem;*/
    }

    body .header nav ul li:not(.cta) a {
        color: var(--base-color) !important;
        margin: 0 !important;
        font-size: 2rem!important;
        display: inline-block;
        width: auto!important;
        font-family: var(--alt-font);
        font-weight: 500;
    }

    body .header nav > ul > li {
        position: relative;
    }

    .header nav .current-menu-item > a::after {
        width: 100%;
    }

    .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.menu-open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

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

    header .container-wide {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    body.menu-open {
        overflow: hidden;
    }

}

@media only screen and (max-width:1024px) {
	#support .wp-block-columns {
		flex-wrap:wrap!important;
	}
	#support .wp-block-columns .wp-block-column {
		max-width: calc(50% - 21px)!important;
		width: 100%;
		flex: 1 0 auto;
	}
    body #posts-feed {
        gap: 2rem;
    }

    body .post-in-loop {
        max-width: calc(50% - 1rem);
    }
    body .footer-banner {
        padding: 3rem 0;
    }
    body .footer-banner .wp-block-group__inner-container {
        padding: 0 3rem;
    }
    .footer-banner h3 {
        font-size: 3.4rem;
    }

}

@media only screen and (max-width:1023px) {
    #posts-wrapper .post-item {
        max-width: calc(50% - 23px)!important;
    }

}

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

@media only screen and (max-width:781px) {
	.rco-digital-library {
		grid-template-columns: 1fr!important;
	}
    .hero-cover .wp-block-column {
        max-width: 50%;
    }
    body #about {
        padding-bottom: 6rem;
    }
    #about .wp-block-image {
        margin-bottom: 0!important;
    }
    #documents .wp-block-columns {
        gap: 0!important;
    }
    #how-it-works .wp-block-button__link {
        left: 0!important;
    }
    .cta-section .wp-block-columns .wp-block-column:nth-child(2) {
        margin-left: 0!important;
        margin-bottom: 4rem;
    }
    .footer-bottom .container {
        flex-direction: column-reverse;
        gap: 4rem;
        text-align: center;
    }
    .footer-bottom .container ul {
        flex-direction: column;
    }
    .progress-wrap {
        right: 20px!important;
    }
    .immobilien-item {
        max-width: 100%!important;
    }
    body .white-boxes,
    body .white-boxes .wp-block-column {
        flex-direction: column;
    }
    .header .logo img {
        max-width: 23rem!important;
    }
    .testimonial-group .wp-block-columns {
        gap: 1rem!important;
    }
    body .testimonial-group .wp-block-image.is-style-rounded {
        width: 100%!important;
    }
    body .our-mission::before {
        bottom: 0!important;
    }
    body .our-mission p {
        max-width: 84vw;
    }
    body .our-team .team-intro::before {
        width: 84vw!important;
    }
    .why-section .wp-block-spacer {
        display: none;
    }
    .white-boxes .wp-block-column {
        align-items: center;
    }
    #cookie-notice {
        right: 1rem!important;
        bottom: 1rem!important;
    }

    .features-column .is-vertical h4 {
        margin-bottom: .2rem;
    }
    .home h1 {
        font-size: 3rem!important;
    }
    body h1 {
        font-size: 3.4rem!important;
    }
    body h2 {
        font-size: 3rem!important;
    }
    body h3 {
        font-size: 2.7rem!important;
    }
    body .hero-banner > div {
        padding: 3rem!important;
    }
    .hide-mobile {
        display: none;
    }

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

}

@media only screen and (max-width:767px) {
	body #support .wp-block-columns .wp-block-column {
		max-width:100%!important;
	}
    #how-it-works::after,
    #how-it-works::before {
        display: none;
    }
    #posts-wrapper .post-item,
    .tiles-wrapper .tile {
        max-width: 100%!important;
    }
    .footer-top .wp-block-column:nth-child(1) {
        padding: 4rem!important;
    }
    .imgtext-block .text-block {
        left: 0!important;
    }
    body .main-hero h1 {
        font-size: 4rem!important;
    }
    body .why-section::before {
        max-width: 56vw!important;
        width: 100%!important;
    }

    .mob-accordion.accordion-opened {
        flex-direction: column;
    }
    .accordion-content p:not(:last-child) {
        margin-bottom: 1.2rem!important;
    }

    .category-subcategories {
        margin-top: 4rem!important;
    }
    .category-subcategories .container {
        padding: 0!important;     
    }
    body #posts-feed {
        padding-top: 2rem!important;
    }
    .category-subcategories ul {
        width: auto!important;
        white-space: nowrap;
        overflow-x: auto;
        padding: 2rem;
        justify-content: flex-start!important;
    }
    .category-subcategories ul::-webkit-scrollbar {
        display: none; /* Hides the scrollbar on WebKit-based browsers */
    }
    body .post-in-loop {
        max-width: 100%!important;
    }
    .footer-bottom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .footer {
        padding-top: 7.8rem;
    }
    .footer-bottom .container-wide {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .footer-bottom ul {
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: 3.2rem;
    }
    .footer-bottom .container-wide {
        padding-top: 3.2rem;
        padding-left: 0;
        padding-right: 0;
        max-width: calc(100vw - 4rem);
    }

    .footer-top .widget_nav_menu > ul {
        gap: 3.2rem!important;
        flex-wrap: wrap;
    }
    .footer-top .widget_nav_menu > ul > li {
        max-width: calc(50% - 1.6rem);
        width: 100%;
        flex: 1 1 100%;
    }
}

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

}

/*------------------------------------*\
	end of RESPONSIVE
\*------------------------------------*/
/*------------------------------------*\
	BLOG
\*------------------------------------*/
.wp-block-quote.is-style-plain::before,
.wp-block-quote.is-style-plain::after {
    display: none;
}
.wp-block-quote.is-style-plain {
    padding: 0 0 0 1.6rem;
    border-left: 4px solid var(--secondary-color);
}
.wp-block-quote.is-style-plain cite {
    font-size: 1.6rem;
    color:rgba(16, 18, 35, 0.60);
}
.wp-block-quote.is-style-plain p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--secondary-color);
}
.single-post .gutenberg h2 {
    font-size: 3.4rem;
}
.single-post .gutenberg h3 {
    font-size: 2.8rem;
}
.single-post-intro {
    margin-top: 8rem;
}
.single-post-intro h1 {
    line-height: 1.19;
    font-size: 6.7rem;
    margin-top: 3.2rem;
    margin-bottom: 2.4rem;
}
.single-post-intro .date {
    color: rgba(16, 18, 35, 0.60);
}
.single-post-intro img {
    border-radius: .8rem;
    margin-top: 3.2rem;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 75vh;
}
.single-post .container-narrow p > a {
    overflow-wrap: break-word;
}
.post-in-loop-image.default-image {
    display: block;
    width: 100%;
    aspect-ratio: 571 / 364;
    background:  linear-gradient(121deg, #36C 1.64%, #3C9 97.73%);
}
.post-in-loop-image.default-image:hover {
    opacity: .84;
}
#posts-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 5.6rem;
    padding-top: 2rem;
}
.post-in-loop{
    max-width: calc(33.33% - 3.8rem);
    width: 100%;
    border: 1px solid var(--grey);
    
    overflow: hidden;
}
.post-in-loop-image {
    overflow: hidden;
    display: flex;
    border-radius: .8rem;
}
.post-in-loop-image img {
    object-fit: cover;
    transition: all .23s ease-in;
    width: 100%;
    aspect-ratio: 3/2;
}
.post-in-loop-image:hover img {
    transform: scale(1.05);
}
.post-in-loop-content {
    padding: 2.4rem 0 4.4rem;
}
.post-in-loop-content .date {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(38, 38, 38, 0.60);

}
.post-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 1.6rem;
}
.post-in-loop-content h2 {
    font-weight: 700;
    color: var(--base-color);
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 0 0 .8rem;
}
.post-in-loop-content h2 a {
    display: block;
    line-height: 1.4;
    color: var(--base-color);
    text-decoration: none!important;
}
.post-in-loop-content h2 a:hover {
    color: var(--cta-color);
}
.read-article {
    color: var(--primary-color);
    letter-spacing: 0.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 1px solid var(--primary-color);
    padding: 0 .6rem;
}
.read-article svg {
    transition: all .23s ease-in;
}
.read-article:hover svg {
    transform: translateX(6px);
}
.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 2.4rem;
    color: var(--base-color);
    margin-bottom: 6rem;
}
.pagination .next {
    background-color: var(--grey);
    aspect-ratio: 1/1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 3.6rem;
}
.pagination .prev {
    background-color: var(--grey);
    aspect-ratio: 1/1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 3.6rem;
    transform: scaleX(-1);
}
.pagination .page-numbers {
    color: var(--base-color);
    padding: 0 .6rem;
}
.pagination .page-numbers.current {
    pointer-events: none;
    color: var(--cta-color);
    font-weight: 700;
}

.single-post .container-narrow {
    margin-top: 9rem;
    max-width: 61rem;
}
.single-post .container-narrow img {
    border-radius: .8rem;
}
.about-intro .wp-block-columns {
    gap: 10rem;
}
.about-intro .wp-block-group__inner-container {
    max-width: calc(var(--container) * 1.1)!important;
}
.gutenberg blockquote {
    margin: 4rem 0;
    padding: 4rem 7rem;
    position: relative;
}
.gutenberg blockquote::before {
    content: "";
    background:url(assets/images/quote-left.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -2rem;
    aspect-ratio: 69/47;
    width: 100%;
    max-width: 6.9rem;
}
.gutenberg blockquote::after {
    content: "";
    background:url(assets/images/quote-right.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: -1rem;
    aspect-ratio: 69/47;
    width: 100%;
    max-width: 6.9rem;
}
.gutenberg blockquote p {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.gutenberg blockquote cite {
    color:  rgba(38, 38, 38, 0.60);
    font-style: normal;
}
.single-excerpt {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.postsSwiper .post-in-loop {
    max-width: 100%;
    height: 100%;
}
.postsSwiper .swiper-slide {
    height: auto;
}
.postsSwiper {
    position: relative;
    padding-bottom: 1rem;
}
.latest-posts-block {
    padding: 12rem 0 10rem;
    position: relative;
}
.latest-posts-block .shape-left {
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    width: auto;
}

.latest-posts-block .swiper-slide h2 {
    font-size: 2.2rem;
}
.search-results .post-in-loop-image {
    aspect-ratio: 571/218;
}
/*------------------------------------*\
	END OF BLOG
\*------------------------------------*/
/*------------------------------------*\
	SINGLE ARTICLE
\*------------------------------------*/
.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: calc(49% - var(--wp--style--unstable-gallery-gap, 16px)/2);
}
.single-post .wp-block-gallery {
    gap: 2.4rem!important;
    margin-top: 5rem;
    margin-bottom: 5rem!important;
}
.single-post .alignwide {
    max-width: 90.2rem;
    width: 100vw;
    padding: 0 2rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.related-posts-nav * {
    position: relative!important;
}
.related-posts-nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-left: calc( (100vw - var(--container) * 1.25 + 2rem) / 2);
}
.related-posts-nav .btn {
    margin-left: 6rem;
}
.related-posts-nav .swiper-button-prev {
    left: 0!important;
    top: 0!important;
    margin: 0;
}
.related-posts-nav .swiper-button-next {
    right: 0!important;
    top: 0!important;
    margin: 0;
}
.related-posts-nav .swiper-button-prev::after,
.related-posts-nav .swiper-button-next::after {
    display: none;
}
#latest-posts .latest-posts-block{
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}
.wp-block-cover p a {
    color: rgba(255, 255, 255, 0.60)!important;
    text-decoration: none!important;
}
.wp-block-cover p a:hover {
    color: rgba(255, 255, 255, 1)!important;
}
.single-post .wp-block-cover span.date {
    font-weight: 400;
    font-size: 1.6rem;
}

.single-post .latest-posts-block {
    margin-top: 12rem;
}
.slider-header {
    width: 100%;
    max-width: 150rem;
    margin: 0 auto 2.4rem;
    padding: 0 2rem;
    align-items: center;
    gap: 3.2rem;
}
.slider-header h2 {
    font-size: 5.1rem;
    margin-bottom: 2.4rem;
}
.slider-header > * {
    max-width: 92rem;
}
.slider-header > p {
    margin-bottom: 4rem;
}
.gutenberg ol,
.gutenberg ul {
    margin-bottom: 2.8rem;
    padding-left: 2.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gutenberg ul:not([class]) {
  /*  list-style: none;*/
}
.gutenberg ul:not([class]) li {
    position: relative;
}/*
.gutenberg ul:not([class]) li::before {
    content: "";
    position: absolute;
 /*   background: url(assets/images/bullet.svg) no-repeat;*/
/*    background-size: contain;
    background-position: center;
    top: 0.2rem;
    left: -2.9rem;
    border-radius: 100%;
    width: 2.4rem;
    height: 2.4rem;
}
*/
.gutenberg p {
    line-height: 1.5;
}

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

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

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

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



.related-block {
    padding: 4rem 0;
}

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


.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: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.social-share span {
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.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
\*------------------------------------*/

.gutenberg .wp-block-column p:last-child {
    margin-bottom: 0;
}

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

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

.sticky {
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    padding: 0;
}


/**** FAQs ****/

.accordion-title {
    position: relative;
}
.accordion-title::after {
    content: "";
    position: absolute;
    right: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url(assets/images/chevron-down.svg) no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
.accordion-title.opened::after,
.accordion-opened .accordion-title::after {
    content: "";
    transform: scaleY(-1);
    top: calc(50% - 1rem);
}
.accordion-content {
    position: relative;
   /* margin-top: -1rem;*/
  /*  display: none;*/
  /*  font-size: 1.6rem;*/
  /*  padding: 0 4.5rem 2.4rem 2.4rem;*/
}
.accordion-content p {
    margin-bottom: .4rem;
}
.accordion p:last-child {
    margin-bottom: 0;
}




/*** Error 404 ***/
.page404-section {
    background-color:#fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20205;
}
.page404-section::after {
    content: "";
    background-color: var(--accent-color);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page404-section > .flex {
    box-shadow: 0px 28px 28px -6px rgba(24, 39, 75, 0.12), 0px 38px 88px -4px rgba(24, 39, 75, 0.14);
    background-color: #fff;
    max-width: 50rem!important;
    padding: 3.2rem 5.6rem;
    border-radius: 1.6rem;
    text-align: center;
    margin: 2rem!important;
}
.page404-section .flex a {
    text-decoration: underline;
}
.page404-section .flex a:hover {
    color: var(--cta-color);
}
.page404-section .flex {
    max-width: 98.6rem;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    gap: 8rem;
}

.page404-section h1 {
    font-size: 10rem;
}

.page404-section h2 {
    font-size: 4rem;
    text-transform: uppercase;
}
.page404-section p {
    font-size: 2rem;
}
.page404-section .flex  > div {
    max-width: 45.4rem;
    width: 100%;
    flex: 1;
  /*  margin-left: auto;*/
}


/*------------------------------------*\
	HOMEPAGE
\*------------------------------------*/
/****** HERO COVER ******/
.hero-cover {
    padding-top: 6.5rem;
    padding-bottom: 10rem;
}

/*------------------------------------*\
	end of HOMEPAGE
\*------------------------------------*/






/*------------------------------------*\
	CONTACT
\*------------------------------------*/
/****** HERO COVER ******/

.wpcf7 {
    background-color: #fff;
   
    padding: 3.2rem 4rem;

    margin: 0 auto;
}
.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.wpcf7 * {
    margin: 0!important; 
}
.wpcf7 p {
    font-size: 1.4rem;
}
/****** end of HERO COVER ******/



#about {
    padding-top: 4rem;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}
#about .wp-block-image {
    margin-bottom: -10rem;
}


#support {
    padding-top: 12.5rem;
    padding-bottom: 10rem;
    color: var(--dark-color);
    font-weight: 500;
}
#support > div {
    max-width: var(--container);
}
#support .wp-block-columns {
    gap: 2.8rem;
    margin-top: 5rem;
	justify-content:center;
}
#support .wp-block-columns .wp-block-column {
    border: 3px solid #5F0000;
    border-radius: 3rem;
    padding: 2.4rem;
	max-width: calc(25% - 21px);
}
#support .wp-block-columns .wp-block-column p {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1;
}


#experts {
    position: relative;
    overflow: hidden;
    font-size: 2rem;
}
#experts::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5rem;
    background: url(assets/images/ball.svg) no-repeat;
    height: 19rem;
    width: auto;
    aspect-ratio: 232/192;
}

#experts::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 15rem;
    background: #F0DDD6;
    height:38px;
    width: 38px;
    border-radius: 100%;
}
#experts h2 {
    margin-bottom: 4rem;
}

#faqs {
    background: #EEE9E77D;
    font-size: 2rem;
    padding-bottom: 15rem;
    position: relative;
    
}
.footer-top::after {
    content: "";
    position: absolute;
    top: -6rem;
    right: 0;
    background: url(assets/images/ellipse.svg) no-repeat;
    background-size: contain;
    background-position: right;
    width: 12rem;
    height: auto;
    aspect-ratio: 1;
}
#faqs h3 {
    color: var(--dark-color);
}
#faqs h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
    margin-top: 4rem;
    font-size: 2.5rem;
}

.cta-section {
    overflow: hidden;
}
.cta-section .wp-block-columns {
    margin-top: 8rem;
    gap: 0;
}
.cta-section .wp-block-columns .wp-block-buttons {
    margin-top: 4rem;
}
.cta-section .wp-block-columns .wp-block-column:nth-child(1) {
    background: #F4DFD6;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
    padding: 4.5rem;
    position: relative;
}
.cta-section .wp-block-columns .wp-block-column:nth-child(1)::before {
    content: "";
    background: #F4DFD6;
    position: absolute;
    width: 50vw;
    top: 0;
    bottom: 0;
    left: -50vw;
}
.cta-section .wp-block-columns .wp-block-column:nth-child(2) {
    background: rgba(209, 74, 80, 0.5);
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    padding: 4.5rem;
    position: relative;
    text-align: right;
    top: 5rem;
    margin-left: -10rem;
}
.cta-section .wp-block-columns .wp-block-column:nth-child(2)::before {
    content: "";
    background: rgba(209, 74, 80, 0.5);
    position: absolute;
    width: 50vw;
    top: 0;
    bottom: 0;
    right: -50vw;

}


#documents .wp-block-columns {
    margin-top: 6rem;
    gap: 5.7rem;
}
#documents .wp-block-columns ul {
    list-style: none;
    gap: 2rem;
	padding-left:0!important;
}
#documents .wp-block-columns ul a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
    border: 3px solid rgba(209, 74, 80, 1);
    border: 3px solid rgba(209, 74, 80, 1);
    display: flex;
    border-radius: 1rem;
    padding: 2rem;
    min-height: 10rem;
    line-height: 1;
    gap: 2rem;
    align-items: center;
}
#documents .wp-block-columns ul a:hover {
   background-color: rgba(209, 74, 80, 1);
   color: #fff;
}
#documents .wp-block-columns ul a::before {
    content: "";
    display: inline-block;
    background: url(assets/images/doc-icon.svg) no-repeat;
    background-size: contain;
    width: 4rem;
    min-width: 4rem;
    height: 5.4rem;
}
#documents .wp-block-columns ul .folder a::before {
    background: url(assets/images/folder-icon.svg) no-repeat;
    background-size: contain;
    width: 6.6rem;
    height: 4.4rem;
}



.latest-posts-block {
    padding: relative;
    background: rgba(238, 233, 231, 0.49);

}
.latest-posts-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8rem;
    background: url(assets/images/ellipse-blog.svg) no-repeat;
    background-size: contain;
    background-position: left;
    width: 10rem;
    aspect-ratio: 1/2;
}
.latest-posts-block::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9rem;
    background: url(assets/images/ball-blog.svg) no-repeat;
    background-size: contain;
    background-position: right;
    width: 10rem;
    aspect-ratio: 1/2;
}
#posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--container);
    margin: 6rem auto 0;
    gap: 4.6rem;
}
#posts-wrapper .post-item {
    width: 100%;
    max-width: calc(33.33% - 31px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3rem;
    overflow: hidden;
    text-align: center;
}

#posts-wrapper .post-item img {
    aspect-ratio: 406/271;
    width: 100%;
}
#posts-wrapper .post-item h3 {
    font-size: 2.5rem;
    margin: 2rem 0 .8rem;
    padding: 0 2rem;
}
#posts-wrapper .post-item h3 a {
    text-decoration: none;
    color: var(--secondary-color);
}
#posts-wrapper .post-item h3 a:hover {
    color: var(--dark-color);
}
#posts-wrapper .post-item .post-date {
    margin-bottom: 2rem;
    font-weight: 600;
}

#load-more-posts {
    margin: 5rem auto 0;
    background-color: #B49B9C;
    border: none;
    border-radius: 5rem;
    min-height: 5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #fff;
    font-size: 1.8rem;
    min-width: 29rem;
    transition: all .23s ease-in;
    cursor: pointer;
}
#load-more-posts:hover {
    background-color: var(--secondary-color);
}
.load-more-btn-wrap {
    text-align: center;
}


#povici {
    position: relative;
    background: rgba(238, 233, 231, 0.49);

}
.tiles-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 2.4rem;
}
.tiles-wrapper .tile {
    border: 3px solid rgba(209, 74, 80, 1);
    border-radius: 1rem;
    background: rgba(240, 221, 214, 1);
    display: flex;
    gap: 3rem;
    max-width: calc(50% - 2rem);
    padding: 2rem;
}

.tiles-wrapper .tile .date {
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
}

#how-it-works {
    background: linear-gradient(180deg, #DF8185 52.4%, #F4DFD6 100%);
    color: #fff;
    position: relative;
}
#how-it-works h2 {
    color: #fff!important;
}

#how-it-works .wp-block-button__link {
    max-width: 40rem;
    font-size: 2.4rem;
    padding: 3rem!important;
    line-height: 1.2;
    position: relative;
    top: -4rem;
    left: 70%;
}

#how-it-works::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8rem;
    width: 180px;
    height: 300px;
    background: url(assets/images/ball-how-works.png) no-repeat;
    background-size: contain;
}
#how-it-works::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14rem;
    width: 150px;
    height: 300px;
    background: #dacdce;
     border-radius:  150px 0 0 150px;
}


.tiles-wrapper a.tile:hover {
    background: rgba(209, 74, 80, 1);
    color: #fff;
}
.tiles-wrapper a.tile:hover .date {
    color: #fff!important;
}

.hide {
	display:none!important;
}

.rco-digital-library {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.rco-digital-library__item {
	    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
    border: 3px solid rgba(209, 74, 80, 1);
    border: 3px solid rgba(209, 74, 80, 1);
    display: flex;
    border-radius: 1rem;
    padding: 2rem;
    min-height: 10rem;
    line-height: 1;
    gap: 2rem;
    align-items: center;
}
.rco-digital-library__item:hover {
	    background-color: rgba(209, 74, 80, 1);
    color: #fff;
}
.rco-digital-library__icon span {
	font-size:5rem;
}

.rco-digital-library__date {
	display: inline-block;
    font-size: 1.5rem;
    margin-top: 1.2rem;
}