/*
	Theme Name: SQUADRA SPORT MANAGEMENT custom theme
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: B2BEE
	Author URI: https://www.nikolic.win/
	Tags: Blank, HTML5, CSS3
	License: MIT
*/
/* VARIABLES */
:root {
    --cta-color: #FF4400;
    --base-color: #010101;
    --grey-color: #D3D3D8;
    --light-grey: #fffdff;
    --black-color: #292929;
    --grey: #E6E9EE;
    --alt-font: 'Poppins', sans-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 'Poppins', sans-serif;
    letter-spacing: .25px;
    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;
    padding-top: 9.4rem;
}

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;
}

/*------------------------------------*\
    GRID
\*------------------------------------*/
.container,
.container-narrow,
.container-wide {
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 108.6rem;
}

.container-narrow {
    max-width: 86rem;
}

.container-wide {
    max-width: 170rem;
}

.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
    position: relative;
    padding: 1.6rem;
    -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) {
    .mob-arvy {
        display: none;
    }

    .col3 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
        flex: 1 1 25%;
        max-width: 25%;
    }
}

.row {
    margin: 0 -1.6rem;
    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-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
\*------------------------------------*/
@font-face {
    font-family: 'Eina';
    src: url('assets/fonts/Eina03-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Eina';
    src: url('assets/fonts/Eina03-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Eina';
    src: url('assets/fonts/Eina03-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


.heading {
    font-size: 6rem;
    font-weight: 400;
}

.heading strong {
    color: var(--cta-color);
}

.text-center {
    text-align: center;
}

p {
    margin-bottom: 2.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 2rem;
}

h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
}

h1 {
    font-size: 9.4rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--alt-font);
}

h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--alt-font);
}

h3 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.25;
}

h4 {
    font-size: 2.4rem;
    font-weight: 800;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

a {
    color: var(--cta-color);
    text-decoration: none;
    transition: all .23s ease-in;
    -webkit-transition: all .23s ease-in;
    -moz-transition: all .23s ease-in;
    -ms-transition: all .23s ease-in;
    -o-transition: all .23s ease-in;
}

a:hover {
    color: var(-grey-color);
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

.btn,
.cta > a {
    color: #fff !important;
    font-size: 1.6rem !important;
    background-color: var(--cta-color);
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    padding: 1.2rem 2.4rem !important;
    border-radius: 5rem;
    min-height: 4.4rem;
    text-align: center;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700!important;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}
.cta > a {
    font-size: 1.2rem!important;
}
.btn:hover,
.cta > a:hover {
    background: var(--cta-color);
    color: #fff;
}

header nav ul li.cta a,
header nav ul li.cta a:hover {
    color: var(--base-color) !important;
}

/*------------------------------------*\
	GUTENBERG
\*------------------------------------*/
.image-overlayed img {
    position: relative;
    z-index: 0;
    right: -10rem
}
.image-overlayed .wp-block-column:nth-child(2) {
    position: relative;
    z-index: 11;
    padding-top: 27vh;
}
body .alignwide.wp-block-group {
    padding: 7rem 0;
}
.gutenberg .wp-block-cover {
    color: var(--light-grey);
}
.gutenberg .wp-block-cover h1:last-child, .gutenberg .wp-block-cover p:last-child {
    margin-bottom: 0;
}
.gutenberg .wp-block-columns {
    margin-bottom: 0;
}
.wp-block-group  {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.alignwide {
    position: relative;
    margin: 0 -20rem;
}
.alignfull{
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 6px);
}

.alignfull .wp-block-cover__inner-container,
.alignwide .wp-block-group__inner-container {
    max-width: 174rem;
    padding: 0 2rem;
}

.alignwide.wp-block-group {
    padding: 10.8rem 0 11.2rem;
}

.alignfull.wp-block-group {
    padding: 17.6rem 0;
}

.alignfull .wp-block-group__inner-container {
    max-width: 141.4rem;
    padding: 0 2rem;
}

.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;
}
.gutenberg .has-x-large-font-size {
    font-size: 6rem !important;
}

.gutenberg .has-medium-font-size {
    font-size: 2rem !important;
}

.hero {
    max-height: 100vh;
    aspect-ratio: 16/9;
}

.subtitle, .hero .subtitle {
    text-transform: uppercase;
    color: var(--base-color);
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 6vh!important;
    line-height: 1.2;
    letter-spacing: .5px;
    font-weight: 700;
    margin-bottom: 1.6rem;
}
.hero p {
    font-size: 2.3rem!important;
}

.hero p {
    font-size: 1.8rem;
    line-height: 1.5;
}

.wp-block-button__link, .wpcf7-submit {
    border-radius: 0;
    background-color: #000!important;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    height: 4rem;
    color: #FFF;
    padding: 1.3rem 2.4rem;
    min-width: 12.3rem;
        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;
    border-radius: 0;
}

.wp-block-button__link:hover {
    background: var(--base-color);
}

.is-style-outline .wp-block-button__link {
    border-radius: 5rem;
}
.is-style-outline .wp-block-button__link:hover {
    background-color: var(--base-color)!important;
    color: var(--light-grey)!important;
}

.wp-block-group .wp-block-group {
    padding: 0;
}

.gutenberg p.has-large-font-size {
    font-size: 4.8rem !important;
}



/*------------------------------------*\
	end of GUTENBERG
\*------------------------------------*/

/*------------------------------------*\
	FORMS AND CF7
\*------------------------------------*/
input,
textarea {
    font-family: 'Barlow', sans-serif;
    background: #EEEEEE !important;
    padding: 2rem;
    width: 100%;
    border: none;
}

input:focus {
    border-color: var(--cta-color);
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AEAEB4;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AEAEB4;
    opacity: 1;
    /* Firefox */
}

input::placeholder,
textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AEAEB4;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #AEAEB4;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #AEAEB4;
}

#newsletter {
    padding: 20rem 2rem 22rem;
    background-color: var(--light-grey);
}

#newsletter .text-center {
    max-width: 90rem;
    margin: 0 auto;
}

#newsletter .text-center form {
    position: relative;
}

#newsletter .btn {
    position: absolute;
    right: 5px;
    max-width: 15.8rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#newsletter p {
    max-width: 63rem;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

.email-input {
    height: 6.2rem;
    padding-right: 18rem;
    padding-left: 2.5rem;
    font-size: 1.6rem;
}
/*#mc_embed_signup div.mce_inline_error {
	display: none!important;
}*/
.mc-field-group {
	position: relative;
}
#mc_embed_signup div.mce_inline_error {
    bottom: -44px;
    background-color: transparent!important;
    color: #8E8E93!important;
    font-size: 16px;
    left: 16px;	
    position: absolute;
    font-weight: 400!important;
    padding-left: 2.3rem!important;
    background-image: url(../../../index.html);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: left center;
}
.MAC #mc_embed_signup div.mce_inline_error {
	background-position: left 41%;
}
#mc_embed_signup_scroll {
    max-width: 536px;
    margin: 0 auto;
    position: relative;	
}


footer .wpcf7-submit {
    color: #FFFFFF;
    background-color: #000000 !important;
    border: none;
    width: 15rem!important;
    font-weight: 700!important;
    -webkit-transition: all .23s ease-in;
    transition: all .23s ease-in;
	margin-top:4rem;
}
footer .wpcf7-submit:hover {
    color: #FF4400!important;
}
footer .wpcf7 p {
    margin-top: 3rem;
}

footer textarea {
	background: transparent;
    border-bottom: 1px solid #fff;
	outline:none;
}

/*Checkboxes styles*/
input[type="checkbox"]  { display: none!important; }

input[type="checkbox"] + span,
input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom:0;
  color: #BBB;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
        line-height: 1.5;
        font-size: 1.4rem;
        max-width: 50rem;
}

/*input[type="checkbox"] + span:last-child { margin-bottom: 0; }*/

input[type="checkbox"] + span:before {
  content: ''!important;
  display: block!important;
  width:16px;
  height: 16px;
  border: 1px solid transparent;
border-radius: 2.315px;
background: #FCFCFC;
box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, 0.25) inset;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + span:before {
	box-shadow:none!important;
  width: 8px;
  top: 0;
  left: 5px;
  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);
  border-color:var(--cta-color);
  background-color: transparent;
}

footer .wpcf7-list-item {
	display:block;
	margin-top:1.5rem;
	color:#fff;
}
footer .wpcf7-list-item a {
	text-decoration:underline;
}
/*------------------------------------*\
	end of FORMS
\*------------------------------------*/

/*------------------------------------*\
	ANIMATIONS
\*------------------------------------*/
@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0)!important;
    }

    100% {
        transform: translate3d(-100%, 0, 0)!important;
    }
} 

.animated {
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

@-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);
  }
}


@-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

  @-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);
  }
}

/*------------------------------------*\
	end of ANIMATIONS
\*------------------------------------*/

/*------------------------------------*\
	HEADER
\*------------------------------------*/
.header .logo img {
    height: auto;
    width: 100%;
    max-width: 18rem;
}

.header.sticky {
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.header.sticky .logo img {

}

.header.nav-up {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}


.header {
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    padding: 1.6rem 0;
    z-index: 2015;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    background-color: var(--black-color);
}


.header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}
.header nav > ul > li {
    position: relative;
}
.header nav > ul > li > a {
    color: var(--cta-color);
    font-weight: 700;
    display: inline-block;
    margin: 0 4rem;
    font-size: 1.7rem;
    padding: 1rem 0;
    text-transform: uppercase;
}
.header nav > ul > li::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .23s ease-in;
    background: var(--light-grey);
}
.header nav > ul > li.current-menu-item > a,
.header nav > ul > li.current-menu-item::before,
.header nav > ul > li:hover > a {
    color: #fff;
}
.header nav > ul > li.current-menu-item::before,
.header nav > ul > li:hover::before {
    width: 100%;
}
.header nav .cta {
    margin-left: auto;
}

.header nav {
    margin-left: auto;
}

.header nav > ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.header nav ul li a:hover {
    color: #fff !important;
}

.header nav .menu-item-has-children {
    position: relative;
}

.header nav .menu-item-has-children > .plus {
    position: relative;
    margin-bottom: 1px;
    margin-left: 8px;
    width: 1rem;
    top: 2px;
    display: none;
}

.header nav .menu-item-has-children > .sub-menu::before {
    height: 2rem;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2rem;
}



.header nav .menu-item-has-children > .sub-menu a {
    color: #fff;
    font-size: 1.6rem;
    padding: 1rem;
    display: block;
    position: relative;
}

.header nav ul li .sub-menu li > a:hover,
.header nav ul li .sub-menu li.current-menu-item > a {
    color: var(--cta-color)!important;
}



.header nav li.lang-item-en > a, .header nav li.lang-item-de > a {
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
}
.header nav li.lang-item-en > a::after {
    content: "EN";
    display: inline-block;
    text-indent: 0;
    float: left;
    position: relative;
    top: 3px;
}
.header nav li.lang-item-de > a::after {
    content: "DE";
    display: inline-block;
    text-indent: 0;
    float: left;
    position: relative;
    top: 3px;
}
.header nav ul .current-lang > a,
.header nav ul .current-lang > a:hover {
    color: var(--base-color) !important;
    background-position: 98% center;
}

.header nav ul .current-lang > a {
    padding-right: 2rem!important;
}

.header .logo {
    margin-right: 3.4rem;
}
header .logo h1 {
    margin-bottom: 0;
}
header .current-lang > a,
header li.pll-parent-menu-item > a {
	pointer-events: none;
	cursor: none;
}
header li.pll-parent-menu-item > a {

}
/*
/*------------------------------------*\
	end of HEADER
\*------------------------------------*/


/*------------------------------------*\
	FOOTER
\*------------------------------------*/
.footer {
    background-color: var(--cta-color);
    color: var(--light-grey);
    
}
.footer a {
    color: var(--light-grey);
}


footer input {
    background-color: transparent;
    border-bottom: 1px solid var(--light-grey);
    margin-bottom: .5rem;
}
footer input:focus {
    border-bottom: 1px solid var(--light-grey);
}
.footer ul {
    list-style: none;
}

.footer .copyright {
    font-size: 1.5rem;
    margin-right: 6rem;
}

.footer-bottom {
    padding: 7rem 0 4rem;
}
.footer-right {
    padding-top: 4rem;
    padding-left: 4rem
}
.footer-right > ul {
    display: flex;
    gap:4rem;
}
.footer-right > ul > li > a {
    text-transform: uppercase;
}
.footer-right ul li a {
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.8rem
}
.footer-right ul li a:hover,
.footer-right ul li.current-menu-item a {
    color: var(--black-color);
}
body.rtl .footer-right {
	padding-right:4rem;
}
.footer-left {
    position: relative;
    background: #fff;
    align-items: center;
    padding: 4rem
}
.footer-left::before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc( (166rem - 100vw) / 2);
    width: calc( (100vw - 166rem) / 2);
}
.footer-left img {
    width: 18rem;
}


#return-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--cta-color);
    border-radius: .5rem;
    padding:0 7px 5px;
    line-height: 1;
}

#return-to-top:hover {
    -webkit-transform: translateY(-.7rem);
    transform: translateY(-.7rem);
}



.footer .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-content: center;
}

.footer .socials a {
    margin-right: 2.2rem;
    display: inline-flex
}
.footer .socials a svg {
    height: 3rem;
    width: auto;
}
.footer .socials a.yt svg{
    height: 2rem
}
.footer .socials a.fb svg{
    height: 3.3rem;
    position: relative;
    right: -3px
}
.footer .socials a.tm svg {
	height:2.7rem;
}
.footer .socials a:hover {
    opacity: .8;
}



/*------------------------------------*\
	end of FOOTER
\*------------------------------------*/

/*------------------------------------*\
	RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1700px) {
    footer .footer-left::before {
        left: -2rem;
        width: 2.1rem;
    }
	
	body.rtl footer .footer-left::before {
		left:0;
		right:-2rem;
	}
}

@media only screen and (max-width:1450px) {
	.wp-block-columns.alignwide {
		padding-left:20px!important;
		padding-right:20px!important;
	}
    body .postsSwiper {
        margin-right: -2rem !important;
    }
    .alignwide {
        margin: 0!important;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 6px);
    }
	.rtl .alignwide {
		left:-50%;
		transform:translateX(50%);
	}
}



@media only screen and (min-width:1201px) {
	.header nav .menu-item-has-children > .sub-menu {
		position: absolute;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		left: 0;
        right: 0;
		width: 100%;
		top: calc(100% + 2rem);
		-webkit-transition: all .23s ease-in;
		transition: all .23s ease-in;
		display: none;
		-webkit-box-shadow: 0px -1px 12px rgba(22, 40, 67, 0.1);
		box-shadow: 0px -1px 12px rgba(22, 40, 67, 0.1);
		border-radius: 0;
		background: var(--black-color);
		padding: 0 1rem 1rem;
        text-align: center;
	}
    .mob-language-switcher {
        display: none;
    }
	.header nav .menu-item-has-children:hover > .sub-menu {
    	display: block;
	}
}

@media only screen and (max-width:1200px) {
	.header nav li.lang-item-de > a::after,
	.header nav li.lang-item-en > a::after {
		    text-align: center;
    	width: 100%;
	}
	.wp-block-columns.alignwide {
		padding-left:20px!important;
		padding-right:20px!important;
	}
    .accordion-title {
        font-size: 3.3rem!important;
    }
	.header nav .menu-item-has-children > .sub-menu {
		padding-bottom:1rem;
		display:none;
	}
	.header nav .menu-item-has-children > .sub-menu li:last-child, .header nav .menu-item-has-children > .sub-menu li a {
		border-bottom:none!important;
	}
	.header nav .menu-item-has-children > .plus {
		display:block;
		    height: auto;
		padding: 12px;
		right: -8px!important;
		top:14px!important;
		width:40px;
	}
    body .hero h2 {
        font-size: 4.8rem!important;
    }
    .services::before {
        display: none;
    }
	body header nav ul li:not(.cta).current-menu-item > a {
		color: var(--cta-color)!important;
	}
	body.logged-in header nav {
		top: 115px;
	}
	#founders img {
		max-width: 100%!important;
	}
    .alignfull,
    .alignwide {
       /* width: 100vw !important;*/
    }

    .mob-language-switcher select {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 18px;
        border: none;
        -webkit-appearance: none;
        background-color: transparent;
        background-image: url(assets/images/arrow-down.svg);
        background-repeat: no-repeat;
        padding-right: 2.5rem;
        background-position: 100% center;
        color: var(--base-color)!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 .logo {
        margin: 0 2rem !important;
    }

    header .container-wide #mob-menu-bar {
        margin-left: 15px;
    }

    body .featured-post.post-in-loop img {
        max-width: 60vw;
    }

    #mob-menu-bar > div {
        width: 22px;
        height: 3px;
        background: var(--light-grey);
        border-radius: 3px;
        margin-bottom: 5px;
        -webkit-transition: all .23s ease-in;
        transition: all .23s ease-in;
    }

    #mob-menu-bar > div:last-child {
        margin-bottom: 0;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 5px);
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-6px, -6px);
        transform: rotate(45deg) translate(-6px, -6px)
    }

    body .header nav {
        position: fixed;
        top: 90px;
        left: 0;
        bottom: 0;
        width: 100vw;
        background-color: #fff;
        color: #fff;
        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: 4rem;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        border-top: 1px solid #d3d3d8 !important;
        background-repeat: no-repeat;
        background-position: center 90%;
        height: calc(100vh - 70px);
    }

    body .header nav > ul {
        max-width: 33rem;
        margin-top: 0;
    }

    body .header nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    body .header nav ul li.cta {
        margin-left: 0;
        text-align: center;
    }

    body .header nav ul li.cta > a {
        margin: 2rem 0 0;
    }

    body .header nav ul li:not(.cta) {
        border-bottom: 1px solid #d3d3d8 !important;
        width: 100%;
        text-align: center;
    }

    body .header nav ul li:not(.cta) a {
        color: var(--black-color) !important;
        margin: 0 !important;
    }

    body .header nav > ul > li {
        padding: .84rem 0;
        position: relative;
    }

    .header nav .menu-item-has-children > .plus {
        fill: #fff;
        margin: 0 !important;
        position: absolute;
        -webkit-transition: all .23s ease;
        transition: all .23s ease;
    }

    .header nav .menu-item-has-children.opened > .plus {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    header nav .sub-menu-wrap {
        display: none;
    }

    header nav .sub-menu-wrap li {
        padding-top: .5rem;
    }

    body .header nav > ul > li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .5);
    }

    body .header nav.menu-open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    body .header nav .header-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    body .header nav .header-top a {
        color: #fff;
    }

    body .header nav .header-top a:not(.instagram) path {
        fill: #fff;
    }

    body .header nav .header-top a.instagram path {
        stroke: #fff;
    }

    header .socials {
        margin-bottom: 2rem;
    }

    header .socials svg {
        margin: 0 1.5rem 0 0 !important;
    }

    header .container-wide {
        -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) {
    .hero {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 15vh;
    }

    .hero {
        /*	min-height: 84rem!important;*/
    }

    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .single-excerpt {
        font-size: 1.8rem !important;
    }

    .single-post-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .single-post-content {
        margin: 0 !important;
    }

    h2.heading {
        font-size: 3rem;
    }


    .footer-top,
    .footer-top ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

	.footer-bottom ul {
		margin-bottom:3rem;
		text-align:center;
	}
	.footer-bottom ul li {
		margin: 0 0 1.5rem!important;
	}

    body .copyright {
        font-size: 1.2rem;
    }


    .footer-top .logo {
        margin-bottom: 1.5rem;
    }

    .footer-top ul.menu li {
        margin-bottom: 0 !important;
    }

    .footer-top ul.menu li a {
        margin: .8rem 0 !important;
    }
}

@media only screen and (max-width:1023px) {
    .footer-right > ul {
        flex-direction: column;
    }
    .home .has-large-font-size br {
        display: none;
    }

    .alignwide.wp-block-group {
        padding: 6rem 0;
    }

    body .gutenberg p.has-large-font-size,
    .gutenberg .has-x-large-font-size {
        font-size: 3rem !important;
    }

    .alignfull.wp-block-group {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }


    #posts-feed .col12 .all-cats::-webkit-scrollbar {
        display: none;
    }

    #posts-feed .col12 .all-cats {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: scroll;
        margin-right: -2rem;
    }

    #posts-feed .col12 .all-cats a:first-child {
        margin-left: 0;
    }

    #posts-feed .col12 .all-cats a {
        margin-left: 2rem;
        font-size: 1.6rem;
        white-space: nowrap;
    }

    #posts-feed .col12 {
        padding: 1rem 1rem 2rem;
    }

    #posts-feed {
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .post-in-loop.col4 {
        max-width: 50%;
        padding: 1rem;
    }

    body .featured-post.post-in-loop img {
        max-width: 100% !important;
    }

    .post-in-loop-content {
        padding: 1.6rem 0 0 !important;
    }

    .featured-post.post-in-loop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .featured-post.post-in-loop h2 {
        font-size: 2.4rem;
        font-weight: 500 !important;
    }

    body .single-post-content .wp-block-group {
        padding: 2rem 1.8rem;
    }

    .post-in-loop .post-metas span.date::after {
        margin: 0 4px;
    }

    .post-in-loop .post-metas {
        font-size: 1.2rem;
        margin-bottom: 1.6rem;
    }

    body .post-cats-loop span {
        font-size: 1.2rem;
    }

    .post-in-loop h3 {
        font-size: 1.8rem !important;
    }

    body .related-block {
        padding: 3.8rem 0 6rem;
    }

    .related-block h2 {
        font-size: 2.4rem;
        margin-bottom: 0;
    }

    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .copyright {
        margin: 2rem 0 0!important
    }
    .footer-bottom ul {
        margin: 2rem auto;

    }

    footer .socials::before {
        display: none;
    }

    footer .social {
        margin: 0 !important;
    }

    .footer-top ul.menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-top ul.menu > li {
        margin-bottom: 3rem;
    }

}

@media only screen and (min-width:782px) {
    .hide-desktop, .is-style-mobile-only {
        display: none;
    }

}

@media only screen and (max-width:781px) {
	.mob-hide {
		display:none!important;
	}
	.contacts .wp-block-button {
		position:relative;
		top:-6px;
	}
	.contacts .wp-block-column:nth-child(2) {
		max-width:13rem!important;
	}
	.footer-left {
		display:none!important;
	}
    .wp-block-columns .wp-block-columns {
        margin-bottom: 5rem;
        gap: 2rem;
    }
    .wp-block-columns .wp-block-columns p:last-child {
        margin-bottom: 0;
    }
    .slider-arrows {
        left: auto!important;
        right: 0;
        top: auto!important;
        bottom: -8rem;
    }
    .main-slider .swiper-slide .text .slide-text {
        font-size: 3.3rem;
        margin-right: 0;
    }
    .main-slider .swiper-slide .text {
        padding: 2rem 0 0!important;
    }
    .main-slider .swiper-slide {
        flex-direction: column-reverse;
        justify-content: flex-end;
    }
    .main-slider .swiper-slide > div {
        max-width: 100%!important;
    }
    body h3 {
        font-size: 3.3rem;
    }
    .image-overlayed .wp-block-column:nth-child(2) {
        padding-top: 0;
    }
    .image-overlayed .alignright {
        float: none;
    }
    .image-overlayed img {
        right: 0!important;
    }
    .key-facts .wp-block-column {
        max-width: 18rem;
        margin-bottom: 8rem;
    }
    .key-facts .wp-block-column:last-child {
        margin-bottom: 0!important;
    }
    .mob-spacer {
        height: 2rem!important;
    }
    .services .description {
        max-width: 100%!important;
    }
	body .wp-block-button__link {
		font-size: 1.6rem!important;
	}
    .related-block .read-all-articles {
        text-indent: -9999px;
        overflow: hidden;
    }


    .mob-img-first .wp-block-column:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }


    .hide-mobile, .is-style-desktop-only {
        display: none;
    }

    .hero {
        text-align: center;
        min-height: 70vh;
        padding-top: 15vh !important;
    }

    .hero picture img {
        -o-object-position: bottom;
        object-position: bottom;
    }

    .hero .subtitle {
        font-size: 1.6rem;
    }

    .hero .wp-block-buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (max-width:767px) {
	.wp-block-cover.alignfull {
		padding:20px 0!important;
	}
	.wp-block-cover.alignfull .wp-block-group {
		padding-top:2rem;
		padding-bottom:2rem;
	}
	.wp-block-cover.alignfull .wp-block-group .wp-block-group__inner-container {
		padding:0!important;
			max-width:100%!important;
	}
	.wp-block-cover.alignfull h2 {
		font-size:3.4rem!important;
	}
    .footer-left .sticky-home {
        position: sticky;
        top: 0;
    }
    .footer-left .sticky-home img {
        width: 10rem;
    }
    .footer-left {
        padding: 2rem 2rem 2rem 0!important;
        align-items: flex-start!important;
    }
    .home .gutenberg .wp-block-cover:first-child {
        height: 80vh!important;
    }
    .news-items.flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .news-items.flex .post-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
	body #mc_embed_signup div.mce_inline_error {
		font-size: 12px!important;
		background-size: 12px!important;
		bottom: -36px!important;
	}
.alignfull, .alignwide {
	width: 100vw!important;
}
   
    #posts-feed h1 {
        text-align: center;
    }

    .footer-widget .is-layout-flex {
        overflow-x: scroll;
    }

    .footer-widget .is-layout-flex::-webkit-scrollbar {
        display: none;
    }

    .footer-widget .is-layout-flex p {
        white-space: nowrap;
    }

    body .post-tags a {
        font-size: 1.2rem;
        margin: 0 1.2rem 1.2rem;
    }

    .post-author {
        font-size: 1.6rem !important;
    }

    .single-post-head .all-articles {
        margin-bottom: 2.4rem;
        font-size: 1.4rem;
    }

    .single-post-head .post-cats {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }

    body h1 {
        font-size: 4rem;
    }


    #newsletter .email-input {
        height: 5rem;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-right: 2rem;
    }

    #newsletter .btn {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: 0;
        top: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        margin-top: 2.4rem;
        height: 5rem;
    }

    .footer-widget p a {
        font-size: 1.6rem !important;
    }

    .footer-widget p a::before {
        width: 2rem !important;
        height: 2rem !important;
    }

    .footer-bottom ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-bottom ul li {
        margin: .5rem 0 !important;
    }

    .footer-bottom ul li:not(:last-child):after,
    footer .socials::before {
        display: none;

    }
}

@media only screen and (max-width:480px) {
	.footer-top ul.menu {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.footer-top ul.menu li {
		padding: 0.2rem 1rem;
	}
	.footer-top .logo {
		margin-left: auto;
		margin-right: auto;
	}
	.footer-bottom .footer-widget .is-layout-flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.footer-bottom .footer-widget .is-layout-flex > p {
		/*border-right: none;*/
	}
	.footer-bottom .footer-widget .is-layout-flex > p:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		border-right: none;
		border-bottom: 1px solid #EFEFF5;
		padding-bottom: 12px;
	}


}

/*------------------------------------*\
	end of RESPONSIVE
\*------------------------------------*/
/*------------------------------------*\
	BLOG
\*------------------------------------*/
.testimonial-item {
    height: 100% !important
    }
.swiper-slide {
    height: auto!important;
  }
.featured-posts .col6, .featured-posts .col3 {
    padding: 1rem;
}
.featured-posts {margin: 0 -1rem;}
.featured-posts a {
    display: block;
    position: relative;
    color: var(--light-grey);
}
.featured-posts a:hover::before {
    background: rgba(35, 31, 32, 0.69);
}
.featured-posts a::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(35, 31, 32, 0.30);
    border-radius: 26px;
    -webkit-transition: all .23s ease-in-out;
    transition: all .23s ease-in-out;
}
.featured-date {
    position: absolute;
    top: 16px;
    right: 32px;
    z-index: 2;
}
.featured-post-inner {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2;
    width: calc(100% - 30px);
}
.featured-post-inner .post-cats-loop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}
.featured-post-inner .post-cats-loop span {
    position: relative;
    color: var(--light-grey);
    text-transform: unset;
}
.featured-post-inner .post-cats-loop span::after {
    content: "";
    width: 100%;
    left: 0;
    bottom: 4px;
    right: 0;
    display: block;
    height: 3px;
    background: var(--cta-color);
}
.featured-post-inner h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0;
}
.featured-posts img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-radius: 2.6rem;
}
.featured-posts .col6 img {
    aspect-ratio: 500/330;
}
.featured-posts .col3 img {
    aspect-ratio: 230/315;
}
.archive-title {
    font-size: 4.5rem;
}
.social-share-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.social-share-icon > svg {
    position: relative;
    top: 4px;
}
.social-share-icon:hover .social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.all-cats {
    font-size: 1.4rem;
    margin-top: 3.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}



.all-cats a {
    color: var(--black-color);
    display: inline-block;
    border-radius: 4.625px;
    background: rgba(217, 217, 217, 0.50);
    position: relative;
    padding: 1rem 1.2rem;
    line-height: 1;
}

.all-cats a:hover {
    background-color: var(--cta-color)!important;
    color: #fff!important;  
}

.current-cat {
    pointer-events: none;
    background-color: var(--cta-color)!important;
    color: #fff!important;
}

.current-cat::after,
.all-cats a:hover::after {
    opacity: 1 !important;
    width: 100% !important;
}

.page-section {
    padding: 6rem 0;
}

.featured-post.post-in-loop {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.featured-post.post-in-loop h2 a {
	line-height: 1.2;
}

.featured-post.post-in-loop  .excerpt {
	font-size: 1.8rem;
	line-height: 1.5;
}

.featured-post.post-in-loop .post-cats-loop span a {
	font-size: 1.8rem;
	line-height: 1.5;
}

.featured-post.post-in-loop img {
    border-radius: 1rem;
    aspect-ratio: 770/480;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 77rem;
}

.featured-post.post-in-loop > a {
    border-radius: 1rem;
    aspect-ratio: 770/480;
    display: block;
    overflow: hidden;	
}

.post-in-loop:not(.featured-post) img {
    aspect-ratio: 450/376;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
   -webkit-transition: all .23s ease-in;
   transition: all .23s ease-in;
}
.post-in-loop:not(.featured-post) > a {
	overflow: hidden;
	border-radius: 1.2rem;
	aspect-ratio: 450/376;
	 margin-bottom: 2rem;
}
.post-in-loop > a:hover img {
	-webkit-transform:scale(1.03);
	transform:scale(1.03);
}
.post-in-loop h3 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.post-in-loop h3 a:hover {
	color: var(--black-color)!important;
}

.post-in-loop h3 a {
    color: var(--base-color);
}

.post-in-loop img {
    border-radius: 1.2rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}

.post-in-loop-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 3.2rem;
}

.post-in-loop-content h2 a {
    color: var(--base-color);
    display: inline-block;
    line-height: 1;
}

.post-cats-loop span {
    display: inline-block;
    margin: 0 18px 12px 0;
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--cta-color);
    position: relative;
}

.post-cats-loop span a:hover {
	opacity: .84;
}

.post-cats-loop span:not(:first-child)::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 14px;
	background: var(--cta-color);
	position: absolute;
	top: 2px;
	left: -9px;
}

.excerpt {
    line-height: 1.41;
}
.index-page {
    padding-right: 0;
    padding-left: 0;
}
/*------------------------------------*\
	END OF BLOG
\*------------------------------------*/
/*------------------------------------*\
	SINGLE ARTICLE
\*------------------------------------*/
p#breadcrumbs a {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--base-color);
}
.single-post-content {
    max-width: 70rem;
    margin: 0 10rem;
}

.single-post-content h1 {
    letter-spacing: 0.5px;

    background: -webkit-gradient(linear, left top, left bottom, from(#162843), to(#151519));

    background: linear-gradient(180deg, #162843 0%, #151519 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3.2rem;
}

.single-post-content img {
    width: 100%;
    max-width: 100%;
    border-radius: 1.2rem;
    margin-bottom: 3.2rem;
}

.postsSwiper {
    margin-right: calc((141.4rem - 100vw) / 2);
}

.all-articles {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--base-color);
    font-weight: 500;
    margin-bottom: 6.4rem;
}

.MAC .all-articles svg {
	top: -1px;
}
.all-articles svg {
    margin-right: .7rem;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    -webkit-transform: scale(-1);
    transform: scale(-1);
    position: relative;
   /* top: 1px;*/
}

.all-articles:hover svg {
    -webkit-transform: translateX(-5px)  scale(-1);
    transform: translateX(-5px)  scale(-1);
}

.post-cats {
    text-align: center;
    margin-bottom: 3.2rem;
    font-size: 1.4rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-cats a {
    color: var(--base-color) !important;
    text-decoration: none !important;
    border-radius: 4.625px;
background: rgba(217, 217, 217, 0.50);
line-height: 1;
padding: .6rem 1.2rem;
}

.post-cats a:hover {
    background: var(--cta-color) !important;
    color: #fff!important;
}

.post-tags {
    text-align: center;
    margin-bottom: 2.4rem;
}

.post-tags a {
    background-color: var(--grey);
    text-decoration: none !important;
    border-radius: 10rem;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem 1.6rem;
    margin: 0 1.6rem 1.6rem;
    line-height: 1.5;
    text-align: center;
}

.post-tags a:hover {
    background-color: var(--cta-color);
}

.post-metas {
    color: #8E8E93;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
    line-height: 1.29;
}

.post-metas span.date::after {
    content: "";
    background-color: #8E8E93;
    width: 1px;
    height: 12px;
    display: inline-block;
    position: relative;
    margin: 0 1rem;
    top: 1px;
}

.single-excerpt {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
}

.gutenberg ol,
.gutenberg ul {
    margin-bottom: 2.8rem;
    padding-left: 2.3rem;
}

.gutenberg ol li,
.gutenberg ul li {
    margin-bottom: .8rem;
}

.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;
}

.postsSwiper {
    margin-right: calc((138.1rem - 100vw) / 2) !important;
}

.related-block {
    padding: 8rem 0 14rem;
}

.read-all-articles {
    margin-left: auto;
    font-weight: 500;
}

.MAC .read-all-articles svg {
	top: -1px;
}

.read-all-articles svg {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    margin-left: .7rem;
    position: relative;
    /*top: -1px;*/
}

.read-all-articles:hover svg {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.latest-posts-header {
    margin-bottom: 2.4rem;
}

.post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.post-author {
    margin-bottom: 3.2rem;
    font-size: 2rem;
    font-weight: 600;
}

.post-author img {
    width: 5.2rem;
    border-radius: 1rem;
    aspect-ratio: 1/1;
    margin: 0 1.2rem 0 0;
}

.social-share {
    position: -webkit-sticky;
    position: sticky;
    top: -7px;
    position: absolute;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    left: 100%;
    display: none;
}

.social-share button {
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid #d9d9d9;
    width: 3.6rem;
    height: 3.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;
    margin: 0 1rem;
}
.social-share button:last-child  svg {
    max-height: 1.7rem;
}
.social-share button  svg {
    max-width: 1.5rem;
}
.social-share button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#162843), to(#151519));
    background: linear-gradient(180deg, #162843 0%, #151519 100%);
}
.social-share button:hover svg path {
	fill:#fff;
}
.social-share button svg path, .social-share button svg {
	-webkit-transition: all .23s ease;
	transition: all .23s ease;
}

.right-balance {
    width: 4.6rem;
}
.single-post-head .all-articles {
	position: relative;
	top: 1px;
}
.single-post-head .post-metas {
	font-size: 1.4rem;
	line-height: 1.5;
}
/*------------------------------------*\
	end of SINGLE ARTICLE
\*------------------------------------*/



.narrow-page {
	max-width: 74rem;
	padding: 8rem 2rem;
	margin: 0 auto;
}

.narrow-page h1 {
	margin-bottom: 3.2rem;
}


body.modal-active {
	overflow: hidden;
}
.modal-wrapper {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/*z-index: -1;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;	
	padding: 2rem;
	-webkit-transition: all .23s ease-in;
	transition: all .23s ease-in;
	visibility: hidden;
	opacity: 0;
}
.modal-wrapper.modal-active {
	z-index: 2020;
	visibility: visible;
	opacity: 1;
}
.modal-wrapper .modal-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;	
	background: rgba(0, 0, 0, .3);
}
.modal-wrapper .modal {
	background-color: #fff;
	padding: 88px 104px;
	border-radius: 16px;
	z-index: 2023;
	position: relative;
	max-width: 836px;
}
.modal-wrapper .modal h3 {
	font-size: 2.4rem;
	margin-bottom: 12px;
	margin-top: 40px;
}
.close-modal {
	position: absolute;
	right: 4rem;
	top: 3rem;
	cursor: pointer;
}
#mce-success-response {
	display: none!important;
}

.a-letter {
	margin-bottom: 1.8rem;
}

.col12 h1 {
	line-height: 1.12;
}

#mc_embed_signup input.mce_inline_error {
	border-color: #000!important;
}



@media screen and (max-width: 390px) and (max-height: 770px) {
  .hero .subtitle {
  	font-size: 14px!important;
  }
  .hero h1 {
  	font-size: 27px;
  }
  body .post-metas {
  	font-size: 10px!important;
  }
  
}

@media screen and (max-width: 390px) and (max-height: 8700px) {
	.post-metas span.date::after {
  	height: 8px!important;
  }
}

.single .wp-block-embed iframe {
	width:100%;
}

.wpcf7-spinner {
    display: none!important;
}

.wpcf7-submit  {
    width: auto!important;
    cursor: pointer;
}
.wpcf7-submit:hover {
    background-color: #000000;
}
.wpcf7-not-valid-tip {
    font-size: 1.4rem!important;
	color:#ff0707;
}


body:not(.home) .wp-block-cover h2 {
    
        font-size: 4rem!important;
        text-transform: uppercase;
    
}



/***** HOME *****/
#slogans {
    position: relative;
    top: -23rem;
}
#slogans .wp-block-button__link {
    min-width: 18rem;
    margin:1.5rem 0
}
.key-products .wp-block-column {
    padding-left: 5rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.key-products h4 {
	font-size:1.8rem;
}
.key-products .wp-block-buttons {
    margin-top: auto;
}
.key-products .wp-block-column img {
    position: absolute;
    left: 0;
    top: -5px;
}
.key-products{
    margin-top: 6rem;
}

.btn-line > a {
    color: var(--base-color);
    background-color: transparent!important;
    padding: 0!important;
    height: 1px!important;
    min-width: 2rem;
    font-size: 1.4rem;
    position: relative;
}
.btn-line > a::after {
    content: "";
    width: 90px;
    height: 5px;
    position: absolute;
    left: -3px;
    bottom: -6px;
    background-color: var(--cta-color);
    z-index: -1;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
}
.btn-line > a:hover::after {
    width: 0;
}

.key-facts .wp-block-columns {
    margin-top: 6rem;
}
.key-facts .wp-block-columns h3 {
    position: relative;
    margin-bottom: 1rem;
}
.key-facts .wp-block-columns h3 strong {
    position: absolute;
    font-size: 1.6rem;
    top: -1.5rem;
    left: 59%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.key-facts .wp-block-column {
    position: relative;
}
.key-facts .wp-block-column::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 35%;
    width: 75%;
    z-index: -1;
    aspect-ratio: 1/1;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 18px;
    background: #F5F5F5;
    -webkit-box-shadow: 0px 2.276841878890991px 2.276841878890991px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2.276841878890991px 2.276841878890991px 0px rgba(0, 0, 0, 0.25);
}


.news-items {
    gap: 3rem;
    margin-top: 5rem;
}
.post-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    
}
.post-item img {
    border-radius: 3rem;
    aspect-ratio: 312/210;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    margin-bottom: 3rem;
    -webkit-box-shadow: 0px 2.799999952316284px 2.799999952316284px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2.799999952316284px 2.799999952316284px 0px rgba(0, 0, 0, 0.25);
}
.post-item h3 {
    font-size: 1.7rem;
    font-weight: 600;
}
.post-item a {
    text-decoration: none!important;
}
.post-item .btn-line a {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    display: inline-block;
    position: relative;
}
.post-item .btn-line a::after {
    width: 100%;
    left: 0;
    height: 4px;
    bottom: -19px;
}




.testimonial-title {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Satisfy', cursive;
}
.testimonial-text {
    margin-bottom: 2rem;
}
.client-position {
    color: #969495;
}
.testimonial-item {
    background: #F5F5F5;
-webkit-box-shadow: 0px 2.799999952316284px 2.799999952316284px 0px rgba(0, 0, 0, 0.25);
box-shadow: 0px 2.799999952316284px 2.799999952316284px 0px rgba(0, 0, 0, 0.25);
border-radius: 2.5rem;
padding: 4.4rem 2.2rem 1.5rem;
}
.testimonial-item > img {
    display: inline-block;
    margin-top: 2rem;
}

.testimonials-wrapper .swiper-wrapper {
    padding: 6rem 0;
    z-index: 1;
    position: relative;
}
.testimonial-item .img-wrap {
    position: relative;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--cta-color);
    overflow: hidden;
    width: 40px;
    text-align: center;
    height: 40px;
    margin-right: 10px;
}
.testimonials-wrapper .swiper-pagination {
    text-align: center;
    left: 0;
    bottom: 0;
    opacity: 1;
    width: 100%;
}
.testimonials-wrapper .swiper-pagination span {
    background-color: #D9D9D9;
    height: 9px;
    width: 9px;
    margin: 0 5px;
    opacity: 1;
    -webkit-filter: drop-shadow(0px 2.799999952316284px 2.799999952316284px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 2.799999952316284px 2.799999952316284px rgba(0, 0, 0, 0.25));
}
.testimonials-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: .5!important;
}

/*****END OF HOME ****/
span.date {
    position: relative;
    display: inline-block;
    line-height: 1.2;
}
span.date::after {
    content: "";
    width: 84px;
    height: 5px;
    position: absolute;
    left: -3px;
    bottom: -3px;
    background-color: var(--cta-color);
    z-index: -1;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;    
}
.single-post .gutenberg {
    margin-top: 4.5rem;
}
.single-post h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}
.featured-image {
    margin: 3rem 0 8rem;
}
.featured-image img {
    max-width: 100%;
    height: auto;
}

.single-post .gutenberg ul {
    list-style: none;
    padding-left: 0;
}
.single-post .gutenberg ul li {
    position: relative;
    padding-left: 5rem;
    margin: 2.7rem 0;
}
.single-post .gutenberg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 32px;
    height: 32px;
    background: url(assets/images/checkmark-orange.svg) no-repeat;
    background-size: contain;
}
.single-post .wp-block-image {
    margin-bottom: 2rem;
}

.address {
    position: relative;
    padding-left: 4.5rem;
}
.address::before {
    content: "";
    background: url(../../../index.html) no-repeat;
    background-size: contain;
    position: absolute;
    top:3px;
    left: 0;
    width: 32px;
    height: 32px;
}

.email {
    position: relative;
    padding-left: 4.5rem;
    
}
.email a,
.telefon a {
    text-decoration: none!important;
}
.email::before {
    content: "";
    background: url(../../../index.html) no-repeat;
    background-size: contain;
    position: absolute;
    top:-2px;
    left: 0;
    width: 29px;
    height: 29px;
}

.telefon {
    position: relative;
    padding-left: 4.5rem;
    text-decoration: none;
}
.telefon::before {
    content: "";
    background: url(../../../index.html) no-repeat;
    background-size: contain;
    position: absolute;
    top:0;
    left: 0;
    width: 29px;
    height: 29px;
}
.partner-logos .swiper-slide {
	display:flex;
	align-items:center;
}
.partner-logos img {
	margin:auto;
}

.single .gutenberg h2 {
	font-weight:700!important;
	font-size:3rem!important;
}


.count1 .swiper-slide {
	width:100%!important;
	margin-right:0!important;
}

.invalid .wpcf7-response-output, .unaccepted .wpcf7-response-output {
	background: #fff;
    text-align: center;
    color: var(--cta-color);
    font-weight: 700;
    padding: 1rem;
    margin-top: 2rem;
}
.unaccepted .wpcf7-acceptance .wpcf7-list-item-label,
.unaccepted .wpcf7-acceptance .wpcf7-list-item-label a {
	color:#ff0707;
}

.single h1 {
	font-size:4rem;
}
.wpcf7.no-js > .screen-reader-response {display:none;}

footer label {
	font-weight:700;
}

.wp-block-button:not(.is-style-outline):not(.btn-line) .wp-block-button__link:hover {
	background:rgba(35, 31, 32, .84)!important;
}
.footer-widget, .footer-bottom ul li a  {
	font-weight:600;
}
.footer-bottom ul li a:hover, .footer-bottom ul li.current-menu-item a {
	opacity:.8;
}
.footer-widget strong {
	font-weight:800;
}



.gutenberg h2 strong {
    font-weight: 400;
}
.accordion-title {
    color: var(--cta-color);
    font-weight: 800;
    font-size: 9rem;
    line-height: 1;
    cursor: pointer;
}
.accordion-title.opened {
    color: var(--base-color);
}
.accordion-content {
    display: none;
}
.accordion-content a {
    font-weight: 600;
    text-decoration: none!important;
}
.accordion-content a:hover {
    color: var(--cta-color);
}
/*.accordion-item:first-child .accordion-content {
    display: block;
}*/
.accordion-item {
    margin: 1rem 0;
}

.main-slider .swiper-slide {
    display: flex;
    align-items: flex-start;
}
.main-slider .swiper-slide .img-wrap {
    max-width: 50%;
    width: 100%;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.main-slider .swiper-slide img {
    object-fit: cover;
    aspect-ratio: 1/1;
    max-width: 100%;
    width: 100%;
}
.main-slider .swiper-slide .text {
    padding: 1rem 2rem 2rem 5rem;
    color: var(--cta-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 6.5rem;
    line-height: 1;
    max-width: 50%;
    z-index: 3;
    position: relative;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.main-slider .swiper-slide-active .img-wrap {
     -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.main-slider .swiper-slide-active .subtitle {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.main-slider .swiper-slide-active .slide-text {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
     -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.main-slider .swiper-slide .slide-text {
    margin-right: -14rem;
}
.main-slider {
    position: relative;
   margin-top: 8rem;
}

.slider-arrows {
    position: absolute;
    top: 2.7rem;
    left: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
}
.slider-arrows > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
}
.slider-arrows > div::after {
    color: var(--base-color);
}
.wp-block-image.size-full img {
    width: 100%;
}


body.rtl {
	overflow-x:hidden;
}
body.rtl .main-slider .swiper-slide .slide-text {
	margin-right:0;
}
.rtl .header .logo {
	margin-left:3.4rem;
	margin-right:0!important;
}
.rtl .footer-left::before {
	right:calc( (166rem - 100vw) / 2);
	left:0;
}
.rtl .gutenberg ol, .rtl .gutenberg ul {
	padding-right:2.3rem;
}
.rtl .alignfull {
	right:50%;
	left:auto;
	transform:translateX(50%);
}
