/*
	Theme Name: Beriott custom theme
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: Milan Nikolic
	Tags: Gutenberg, HTML5, CSS3
	License: MIT
*/
/* VARIABLES */
:root {
    --primary-color: #101223;
    --secondary-color: #116c9d;
    --accent-color: #1ebe66;
    --accent-color2: #00B887;
    --light-color: #F3F4F8;
    --neutral-color:#f3f6e1;
    --container:116.6rem;

    font-size: 62.5%;
}
.has-primary-color {
    color: var(--primary-color);
}
.has-primary-background-color {
    background-color: var(--primary-color);
}
.has-accent-color {
    color: var(--accent-color);
}

/* 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.6rem/1.5 "DM Sans", sans-serif;
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body::-webkit-scrollbar-track,
.modal-inner::-webkit-scrollbar-track {
    background-color: var(--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;
    padding-top: 6.4rem;
}
.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: 60rem;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}
.home h1 {
    font-size: 12rem;
    font-weight: 500;

}
h1 {
    font-size: 6rem;
}
h2 {
    font-size: 4rem;
}

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

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

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

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

h2 strong,
h3 strong,
h4 strong {
   /* background: linear-gradient(transparent 65%, var(--accent-color) 7px);
    display: inline;
    white-space: pre-wrap;
    background-position: right bottom;
    transition: all 1s ease;
    line-height: 1;
    display: inline-block;
    padding-right: .5rem;
    border-radius: 8px;*/
   /* background: linear-gradient(transparent 65%, var(--accent-color) 7px);
    border-radius: 8px; /* Round edges */
    display: inline-block;
}
h4 strong::after {
    content: "";
    display: block;
    height: 19px;
    width:calc(100% + 14px);
    background-color: var(--accent-color);
    border-radius: 8px;
    position: relative;
    left: -.7rem;
    margin-top: -24px;
    z-index: -1;
}
.about-intro h4 strong::after {
    background-color: #92D8E8;
}

.has-small-font-size {
    font-size: 1.4rem!important;
}
.has-medium-font-size {
    font-size: 2rem!important;
}
.has-large-font-size {
    font-size: 3rem!important;
}
.has-x-large-font-size {
    font-size: 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: 2.8rem!important;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    display: inline-flex!important;
    line-height: 1;
    padding: 1.1rem 2.4rem!important;
    min-width: 15rem;
    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: 500;
    font-size: 1.6rem;
    min-height: 5.6rem;
    letter-spacing: .5px;
}

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

}

.wp-block-button__link::before,
.wp-block-button__link::after {
    content: "";
    display: inline-block;
    position: relative;
    transition: all .33s ease;
}
.wp-block-button__link::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:not([class*=" "]) .wp-block-button__link::before {
    background: url(assets/images/arrow-small-right-white.svg) no-repeat;
}
.wp-block-button.is-style-outline .wp-block-button__link::before {
    background: url(assets/images/arrow-small-right.svg) no-repeat;
}
.wp-block-button__link::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  {
    background-color: var(--primary-color);
}
.wp-block-button:not([class*=" "]) > a:hover {
    color: #fff;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--primary-color);
}
.wp-block-button__link:hover::after {
    opacity: 0;
    width: 0;
    margin: 0;
}
.wp-block-button__link:hover::before {
    opacity: 1;
    transform: scale(1);
    width: 2.4rem;
}
.wp-block-button.is-style-outline > a {

}




.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: 116.4rem;
    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: 12rem;
    padding-bottom: 12rem;
}
.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;
    padding: 0.7rem 2rem;
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    -webkit-appearance: none;
    outline: none!important;
}

input:focus, textarea:focus {
    border-color: var(--secondary-color)!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 {
    max-width: 57rem;
    margin: 0 auto;
    color: var(--primary-color)!important;
    overflow: hidden;
    position: relative;
}
.wpcf7 label {
    color: var(--primary-color);
    font-weight: 500;
}
.wpcf7 input,
.wpcf7 select {
    min-height: 4.2rem;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    padding: 1rem 2rem;
}
.wpcf7 textarea {
    border: 1px solid var(--primary-color);
    background-color: #fff;
    padding: 1rem 2rem;
    overflow: hidden;
    min-height: 4.2rem;
}
.screen-reader-response {
    display: none;
}

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

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


.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;
}
.sent .wpcf7-response-output{
    border: none!important;
    position: absolute;
    background-color: var(--accent-color);
    color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    padding: 4rem!important;
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    font-weight: 600!important;
}


/* 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 {
    left: 0;
    right: 0;
    position: fixed!important;
    top: 0;
    z-index: 2015;
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
    padding: .8rem 0!important;
}
.header .logo img {
    max-width: 7.2rem;
}

.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 > 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.sticky ul li.cta.cta-outline > a {
    color: var(--primary-color)!important;
}
header ul li.cta:not(.cta-outline) > a {
    background-color: var(--primary-color)!important;
    border-color: var(--primary-color);
    color: #fff!important;
}
header ul li.cta:not(.cta-outline) > a:hover {
    background-color: var(--secondary-color)!important;
    border-color: var(--secondary-color)!important;
    color: #fff!important;
}

header ul li.cta.cta-outline > a:hover {
    color: var(--primary-color)!important;
}
header ul li.cta.cta-outline > a:hover::after {
    opacity: 0;
}

.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  {
    background: rgba(255, 255, 255, 0.2); /* Transparent white */
  backdrop-filter: blur(10px); /* Adds the blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari */

}

.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 ul .cta.cta-outline {
    margin: 0 -1.6rem 0 .8rem;
}
.header ul .cta > a {
    min-height: 4.2rem;
}
.header ul .cta:not(.cta-outline) > a::after {
    content: "</>";
   /* border-radius: 100%;
    background-color: #fff;
    width: .3rem;
    height: .3rem;*/
    display: inline-block;
    bottom: 6px;
    position: relative;
    width: 4px;
    font-size: 14px;
    margin: 0 1rem 0 1rem;
    transition: all .33s ease;
}
.header ul .cta:not(.cta-outline) > a::before {
    content: "";
    background: url(assets/images/arrow-small-right-white.svg) no-repeat;
    background-size: contain;
    background-position: center;
    width: 0;
    height: 2.4rem;
    display: inline-block;
    position: relative;
    margin: 0 .5rem 0 0;
    transition: all .33s ease;
    transform: scale(0);
}
.header ul .cta-outline > a::before {
    content: "";
    background: url(assets/images/arrow-small-right.svg) no-repeat;
    background-size: contain;
    background-position: center;
    width: 0;
    height: 2.4rem;
    display: inline-block;
    position: relative;
    margin: 0 .5rem 0 0;
    transition: all .33s ease;
    transform: scale(0);
   /* transform: translateX(-2.4rem);*/
    opacity: 0;
}
.header ul .cta > a:hover::before {
    opacity: 1;
    transform: scale(1);
    width: 2.4rem;
}
.header ul .cta > a:hover::after {
    opacity: 0;
    width: 0;
    margin: 0;
}
.header ul .cta.cta-outline > a {
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
    background-color: transparent;
    min-width: 4.2rem;
    min-height: 4.2rem;
    border-radius: 2.1rem;
}
.header .cta.cta-outline > a::after {
    content: "";
    border-radius: 100%;
    background-color: var(--primary-color);
    width: .3rem;
    height: .3rem;
    display: inline-block;
    position: relative;
    margin: 0 .5rem 0 1.7rem;
    transition: all .33s ease;
}
.header nav > ul > li > a {
    color: var(--primary-color);
    display: inline-block;
    font-size: 1.8rem;
    padding: 1rem 0;
    position: relative;
}
.header nav > ul > li:not(.cta) > a::before {
    content: "{";
    color: var(--secondary-color);
    width: 0;
    height: 15px;
    position: relative;
    bottom: -1px;
    left: -1px;
    transition: all .33s ease-in-out;
    opacity: 0;
}
.header nav > ul > li:not(.cta) > a::after {
    content: "}";
    color: var(--secondary-color);
    width: 0;
    height: 15px;
    position: relative;
    bottom: -1px;
    right: -3px;
    transition: all .33s ease-in-out;
    opacity: 0;
}
.header nav > ul > li > a:hover::after,
.header nav > ul > li.current-menu-item > a::after,
.header nav > ul > li > a:hover::before,
.header nav > ul > li.current-menu-item > a::before {
    opacity: 1;
}


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

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


/*------------------------------------*\
	FOOTER
\*------------------------------------*/
.footer {
    position: relative;
    padding: 12.1rem 0 2.4rem;
}

.footer-top {
    padding: 0 0 2.4rem;
    font-size: 1.4rem;
}
.footer-top .wp-block-column {
    flex: 1 1 auto;
    flex-basis: auto!important;
}
.footer-top .wp-block-column:first-child {
    max-width: 18rem;
    margin-right: auto;
}
.footer-top .wp-block-column:first-child svg {
    position: relative;
    left: -1rem;
}
.footer-top .wp-block-column:last-child {
    max-width: 14rem;
    margin-left: auto;
}
.footer-top .wp-block-column:first-child p {
    opacity: .6;
    margin-bottom: .8rem;
}
.footer-top .wp-block-column:first-child p:last-child {
    opacity: 1;
}
.footer-top .wp-block-column:first-child img {
    margin-bottom: .8rem;
}
.footer-top .widget_nav_menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}
.footer-top .widget_nav_menu > ul > li > a {
    font-weight: 500;
    font-size: 1.6rem!important;
}
.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: 0;
    font-size: 1.4rem;
}
.footer-bottom .container-wide {
    padding-top: 2.4rem;
    border-top: 1px solid #D2D4DA;
}
.footer-bottom .copyright {
    opacity: .6;
}

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

.footer-bottom ul li a {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.4rem;
}

.footer-bottom ul li a:hover,
.footer-bottom ul li.current-menu-item a {
    color: var(--secondary-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(--secondary-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:1300px) {
    body .tab-slider .swiper-button-prev {
        bottom: -6rem;
        left: 0;
    }
}
@media only screen and (max-width:1140px) {

}

@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;
        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 {
        background: var(--dark-color);
        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:1200px) {

    .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.menu-item-has-children > a {
        font-size: 1.2rem!important;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-weight: 700;
        color: rgba(38, 38, 38, 0.60)!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: var(--primary-color)!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::after {
        content: "";
        background: url(assets/images/footer-banner-img.svg) no-repeat;
        background-size: contain;
        position: absolute;
        right: 0;
        bottom: 17vh;
        width: 20rem;
        height: 21rem;
        z-index: -1;
    }

    body .header nav > ul {
        max-width: 48rem;
        margin-top: 14vh;
        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 {
        -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) {
    .footer-top .wp-block-columns {
        flex-direction: column;
    }

}

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


}

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

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

    .hide-mobile {
        display: none;
    }

}

@media only screen and (max-width:767px) {
    .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
\*------------------------------------*/
.excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
#posts-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    padding-top: 4rem;
    max-width: 120.6rem;
}
.post-in-loop{
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex: 1 1 100%;
    align-items: center;
    position: relative;
}
.post-in-loop:not(:last-child) {
    padding-bottom: 6rem;
}
.post-in-loop:not(:last-child)::after {
    content: "";
    background-color: var(--secondary-color);
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 1.6rem;
    left: 0;
}
.post-in-loop-image {
    overflow: hidden;
    display: flex;
    min-width: 50%;
    border-radius: 2.4rem;
}
.post-in-loop-image img {
    object-fit: cover;
    transition: all .23s ease-in;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 2.4rem;
}
.post-in-loop-image:hover img {
    transform: scale(1.05);
}
.post-in-loop-content {
    padding: 2.4rem 3.2rem;
}
.post-in-loop-content .date {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(38, 38, 38, 0.60);
    letter-spacing: 0.6px;
}
.post-in-loop-content h2 {
    padding: 1.6rem 0;
    font-weight: 600;
    color: var(--base-color);
    font-size: 2.7rem;
    line-height: 1.4;
    margin: 0 0 1.6rem;
    border-bottom: 1px solid var(--grey);
}
.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(--accent-color2);
}
.read-article {
    color: var(--cta-color);
    display: inline-flex;
    align-items: center;
    gap: .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);
}
.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;
}
.single-post .container-narrow img {
    border-radius: 2.4rem;
}
.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;
}
.home .latest-posts-block {
    background-color: #fff;
    padding: 10rem 0 0;
}
.latest-posts-block {
    background-color: var(--light-color);
    padding: 14rem 0;
    position: relative;
}
.latest-posts-block .swiper-slide h2 {
    font-size: 2.2rem;
}
.search-results .post-in-loop-image {
    aspect-ratio: 571/218;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.latest-posts-block .swiper-button-next,
.latest-posts-block .swiper-button-prev {
    position: relative;
}
.latest-posts-block .post-in-loop {
    flex-direction: column;
    align-items: flex-start;
}
.latest-posts-block .post-in-loop-image {
    width: 100%;
}
/*------------------------------------*\
	END OF BLOG
\*------------------------------------*/
/*------------------------------------*\
	SINGLE ARTICLE
\*------------------------------------*/
#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 h1 {
    font-size: 4rem;
}
.single-post h2 {
    font-size: 3rem;
}
.single-post h3 {
    font-size: 2.2rem;
}
.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 > div {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.slider-header h2 {
    text-transform: uppercase;
}
.slider-header .swiper-button-next,
.slider-header .swiper-button-prev {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 100%;
    margin: 0!important;
    top: 0!important;
    bottom: 0!important;
    border: 1px solid var(--base-color);
}
.slider-header .btn {
    margin-left: 1.6rem;
    color: var(--primary-color);
    border: none;
    letter-spacing: 0.2px;
    font-weight: 500;
    color: #fff;
}
.slider-header .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}
.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:not(:last-child) {
    border-bottom: 1px solid var(--light-color);
}
.accordion-title {
    cursor: pointer;
    font-size: 2.4rem;
    position: relative;
    padding: 2.4rem 4.5rem 2.4rem 2.4rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.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%);
}
.accordion-title.opened::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 p {
    margin-bottom: 1rem;
}
.accordion p:last-child {
    margin-bottom: 0;
}




/*** Error 404 ***/
.page404-section {
    background-color: #1C8CD6;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page404-section .flex a {
    text-decoration: underline;
    color: #fff;
}
.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 ******/
.home .wrapper {
    padding-top: 0;
}
.hero {
    position: relative;
    min-height: calc(100vh - 118px);
    align-items: flex-end;
    padding-bottom: 3%;
}
.hero::before {
    content: "";
    position: absolute;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 70%, #fff);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.hero .wp-block-cover__inner-container {
    z-index: 3;
    padding-top: 15vh;
}
.hero h1 {
    display: flex;
    flex-direction: column;
}
.hero h1 b {
    font-weight: 500;
    display: block;
    text-align: right;
}
.hero h1 span {
    display: inline-block;
    margin: 0 auto;
    height: 14.4rem;
    position: relative;
    color: var(--secondary-color);
}
.hero h1 span::before {
    content: "{";
    display: inline-block;
    color: var(--primary-color);
}
.hero h1 span::after {
    content: "}";
    display: inline-block;
    color: var(--primary-color);
}
/****** end of HERO COVER ******/

/****** GET IN TOUCH ******/
.get-in-touch {
    min-height: 100vh;
    position: relative;
    display: flex;
}
.get-in-touch::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(19,20,24,1) 0%,rgba(19,20,24,1) 50%, rgba(19,20,24,0) 89%);
    z-index: 2;
    
}
.get-in-touch img {
    object-position: left!important;
    max-width: 80%!important;
    display: inline-block;
    margin-left: auto!important;
}
.get-in-touch .wp-block-cover__inner-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
    position: relative;
    z-index: 3;
}
.get-in-touch .wp-block-cover__inner-container > * {
    max-width: 73.5rem;
    margin: 0;
    
}
.get-in-touch p {
    color: var(--secondary-color);
    line-height: 1.1;
}
h2 {

    line-height: .84;
    font-weight: 500;
}
h2 strong {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    /*font-size: 80%;*/
}
h2 strong::before {
    content: "{";
    color: var(--secondary-color);
    width: 0;
    height: 15px;
    position: relative;
    bottom: -1px;
    left: -1px;
    transition: all .33s ease-in-out;
}
h2 strong::after {
    content: "}";
    color: var(--secondary-color);
    width: 0;
    height: 15px;
    position: relative;
    bottom: -1px;
    right: -1px;
    transition: all .33s ease-in-out;
}
/****** end of GET IN TOUCH ******/

/**********************************/

/****** Video cover ******/

.gutenberg blockquote cite {
    color: #fff;
    font-family: var(--alt-font);
    font-weight: 400;
    font-size: 4rem;
    letter-spacing: -.4px; 
}
.video-btn a {
    background-color: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border:none;
}
.video-btn a:hover {
    background-color: var(--accent-color);
}
.video-btn a::before {
    content: "";
    background: url(assets/images/play.svg) no-repeat;
    background-size: contain;
    width: 2.3rem;
    height: 2.3rem;
    margin-right: 1rem;
}
/****** end of Video cover ******/

/**********************************/


/**********************************/

/****** EVENTS SECTION ******/

.is-style-btn-arrow > a::after {
    content: "";
    background: url(assets/images/angle-right.svg) no-repeat;
    background-size: contain;
    width: 1rem;
    height: 1.2rem;
    position: relative;
    left: 10px;
    transition: all .23s ease-in;
}
.is-style-btn-arrow > a:hover::after {
    transform: translateX(5px);
}
/****** end of EVENTS SECTION ******/



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

/*------------------------------------*\
	ABOUT
\*------------------------------------*/
/****** HERO BANNER BLOCK ******/
.hero-banner {
    padding: 0 2rem!important;
}
.hero-banner > div {
    background-color: var(--accent-color);
    max-width: calc(var(--container) * 1.25)!important;
    border-radius: 1.6rem;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 8.6rem 2rem!important;
}
.gutenberg > .hero-banner:first-child {
    margin-top: 3.8rem;
}
.hero-banner > div::after {
    content: "";
    background: url(assets/images/hero-banner-image.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: -2.3rem;
    width: 24rem;
    height: 24.7rem;
}
/****** end of HERO BANNER BLOCK ******/

/**********************************/

/****** FOOTER BANNER BLOCK ******/
.footer-banner {
    background-color: var(--accent-color);
    max-width: var(--container);
    border-radius: 1.6rem;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 6.9rem 0;
}
.footer-banner::after {
    content: "";
    background: url(assets/images/footer-banner-img.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: -8.8rem;
    width: 39rem;
    height: 40rem;
}
.footer-banner .wp-block-group__inner-container {
    padding: 0 14.8rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.footer-banner .wp-block-group__inner-container > * {
    max-width: 72rem;
}
.footer-banner .wp-block-group__inner-container h3 {
    margin-bottom: 0;
}
/****** end of FOOTER BANNER BLOCK ******/

/**********************************/

/****** OUR MISSION ******/
.our-mission {
    position: relative;
}
.our-mission::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
    background-color: var(--neutral-color);
    width: 67vw;
    z-index: -1;
}
.our-mission h6 {
    margin-bottom: .5rem;
    line-height: 1.4;
}
.our-mission .wp-block-columns {
    gap: 17rem;
}
.our-mission > div > .wp-block-columns > .wp-block-column:nth-child(2) {
    margin-left: auto;
    max-width: 68rem;
}
.our-mission .wp-block-columns .wp-block-columns {
    gap: 6.4rem;
}
.our-mission .wp-block-columns .wp-block-columns:first-child {
    margin-bottom: 6.4rem;
}
/****** end of OUR MISSION ******/

/**********************************/

/****** OUR FOUNDERS ******/
.founders .wp-block-columns {
    gap: 15rem;
}
.founders > div > .wp-block-columns .wp-block-column:first-child p {
    margin-bottom: .5rem;
}
.founders > div > .wp-block-columns .wp-block-column:first-child p a {
    text-decoration: none;
    color: var(--secondary-color);
}
.founders > div > .wp-block-columns .wp-block-column .wp-block-column:first-child .wp-block-image {
    margin-bottom: 1.5rem;
}
.founders > div > .wp-block-columns .wp-block-column .wp-block-column:last-child .wp-block-image {
    margin-top: 1.5rem;
}
.founders .wp-block-columns .wp-block-columns {
    gap: 3.2rem;
}
.founders .wp-block-image {
    border-radius: .8rem;
    overflow: hidden;
}
.founders > div > .wp-block-columns .wp-block-column:last-child {
    max-width: 42.2rem;
}
/****** end of OUR FOUNDERS ******/

/**********************************/

/****** OUR TEAM ******/
.our-team {
    padding-top: 0!important;
}
.our-team .team-intro {
    max-width: 30rem;
    position: relative;
    padding-top: 12rem;
    padding-bottom: 12rem;
    color: #fff;
}
.our-team .team-intro::before {
    content: "";
    position: absolute;
    left: calc((var(--container) * 1.25 + .4rem - 100vw) / 2)!important;
    top: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
    background-color: var(--accent-color2);
    width: 35vw;
    z-index: -1;
}
.our-team .team-intro h5 {
    margin-bottom: 1.6rem;
    line-height: 1.42;
}
.our-team > div > .wp-block-columns {
    justify-content: space-between;
    align-items: flex-start!important;
}
.our-team > div > .wp-block-columns > .wp-block-column:last-child {
    max-width: 86.7rem;
}
.our-team > div > .wp-block-columns > .wp-block-column:last-child .wp-block-columns {
    gap: 2.4rem;
}
.our-team .wp-block-image {
    border-radius: .8rem;
    overflow: hidden;
    margin-bottom: 2.4rem;
}
.our-team > div > .wp-block-columns > .wp-block-column:last-child .wp-block-columns p {
    margin-bottom: .4rem;
}
.our-team > div > .wp-block-columns > .wp-block-column:last-child .wp-block-columns p a {
    color: var(--secondary-color);
    text-decoration: none;
}
/****** end of OUR TEAM ******/


/*------------------------------------*\
	end of ABOUT
\*------------------------------------*/

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

.wpcf7 {
    background-color: #fff;
    border-radius: 2.4rem;
    padding: 4rem;
    color: var(--base-color);
    
}
.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.wpcf7 * {
    margin: 0!important; 
}
.wpcf7 p {
    font-size: 1.4rem;
}
/****** end of HERO COVER ******/









.home .gutenberg > .wp-block-cover:first-child .wp-block-cover__image-background {
    background-size: cover;
}

/****** IOS TOGGLE ******/

  .toggleWrapper {
    width: 40px;
    position: absolute;
    right: 11.5rem;
    top: 0rem;
    display: inline-flex;
    gap: 5.6rem;
    align-items: center;
  }
  .toggleWrapper input.mobileToggle {
    opacity: 0;
    position: absolute;
  }
  .toggleWrapper input.mobileToggle + label {
    position: relative;
    display: inline-block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: 0.4s ease;
    height: 19px;
    width: 40px;
    border-radius: 60px;
    background-color: rgba(163, 166, 170, 1);
  }
  .toggleWrapper input.mobileToggle + label:before {
    content: "";
    position: absolute;
    display: block;
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    height: 19px;
    width: 40px;
    top: 0;
    left: 0;
    border-radius: 30px;
    background-color: rgba(163, 166, 170, 1);
    border: none;
  }
  .toggleWrapper input.mobileToggle + label:after {
    content: "";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: whitesmoke;
    height: 16px;
    width: 16px;
    top: 1px;
    left: 0px;
    border-radius: 60px;
    
  }
  .toggleWrapper input.mobileToggle:checked + label:before {
    background: rgba(36, 158, 58, 1);
    transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    transform: rotate(0)!important;
  }
  .toggleWrapper input.mobileToggle:checked + label:after {
    left: 20px;
    z-index: 15;
  }
  .toggleWrapper input {
    padding: 0!important;
    border: none!important;
    transform: rotate(0)!important;
    
  }
  .toggleWrapper label {
    padding: 0!important;
    margin: 0!important;
    border: none;
  }



.footer-widget img {
	aspect-ratio:auto!important;
}

.grecaptcha-badge {
    display: none !important;
}


.vbox-content {
    max-height: 84vh;
}



.full-section {
    min-height: 110vh;
    display: flex;
    position: sticky;
    top: 0;
    transition: all 1.34s ease-in-out;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: #fff;
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
    overflow: hidden;
}
.full-section h2 strong {
    color: #fff;
}

.canvas-banner {
    position: relative;
    z-index: 2015;
    background-color: #fff;
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
}

.background-canvas {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 64px;
    height: 100%;
    width: 100%;
    display: block;
    max-width: 1300px;
    margin: auto;
    filter: blur(35px);
    z-index: -1;
    
}



/*
* Services page
*/
.services-columns {
    gap: 0!important;
    height: 100vh;
}
.services-columns h2 {
    font-size: 3.4rem;
    transition: all .23s ease-in;
}
.services-columns .wp-block-column {
    position: relative;
    flex-grow: 1;
    transition: all 800ms ease-in-out;
    font-size: 2rem;
}
.services-columns .wp-block-column:hover {
    flex-grow: 2;
}
.services-columns .wp-block-cover__inner-container {
    min-height: 20rem;
    transition: all .23s ease-in;
}
.services-columns .wp-block-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}
.services-columns .wp-block-cover__inner-container p a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -9999px;
    overflow: hidden;
    z-index: 11;
}
.services-columns .wp-block-cover__inner-container p.has-medium-font-size {
    opacity: 0;
    transition: all 500ms ease-in-out;
    transform: translateY(2rem);
}
.services-columns .wp-block-column:hover p.has-medium-font-size {
    opacity: 1;
    transition-delay: .84s;
    transform: translateY(0);
}





.blog-intro .wp-block-group {
    padding: 2rem 0;
}
.blog-intro .wp-block-group__inner-container {
    background-color: var(--secondary-color);
    border-radius: 2.4rem;
    padding: 4rem;
    position: relative;
    font-size: 2rem;
    color: #fff;
}
.blog-intro .wp-block-group__inner-container::after {
    content: "</>";
    position: absolute;
    right: 2rem;
    top:50%;
    transform: translateY(-50%);
    font-size: 7rem;
    color: var(--accent-color2);
    opacity: .5;
}
.blog-intro .wp-block-group__inner-container p:last-child {
    margin-bottom: 0;
}
.category-block {
    margin-bottom: 2rem;
}
.category-block ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}
.category-block ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 2.8rem;
    min-height: 4.2rem;
    border: 1px solid var(--light-color);
    background-color: var(--light-color);
    padding: 1.1rem 2.4rem;
    min-width: 15rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: .5px;
}
.category-block .current-cat > a,
.category-block li > a:hover {
    background-color: var(--accent-color2);
    color: #fff!important;
}
.category-block .current-cat > a {
    pointer-events: none;
}

.category-heading {
    max-width: var(--container);
    margin: 0 auto;
    background-color: var(--secondary-color);
    border-radius: 2.4rem;
    border-radius: 2.4rem;
    padding: 4rem 6rem 4rem 4rem;
    position: relative;
    font-size: 2rem;
    color: #fff;
}
.rank-math-breadcrumb {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.rank-math-breadcrumb .separator {
    position: relative;
    top: -1px;
}
.rank-math-breadcrumb a:first-child {
    text-indent: -999px;
    overflow: hidden;
    display: inline-block;
    background: url(assets/images/home.svg) no-repeat;
    background-size: contain;
    width: 1.4rem;
    height: auto;
    position: relative;
    top: 5px;
}

.single-post .rank-math-breadcrumb a:first-child {
    background: url(assets/images/home-black.svg) no-repeat;
    background-size: contain;
}

.featured-img {
    max-width: var(--container);
    border-radius: 2.4rem;
    margin: 0 auto;
    display: block;
    background-size: cover;
    width: 100%;
    aspect-ratio: 10/6;
}

.total {
    position: absolute;
    right: 2rem;
    top: 3.5rem;
    font-size: 2rem;
    opacity: .6;
}
.total::before{
    content: "{ Total articles: ";
}
.total::after{
    content: " }";
}

.single-post-header {
    max-width: 60rem;
    margin: 0 auto 4rem;
}

.page-hero {
    padding: 4rem 2rem;
}
.page-hero .wp-block-group__inner-container {
    padding: 4rem;
    background-color: var(--secondary-color);
    border-radius: 2.4rem;
    color: #fff;
    font-size: 2rem;
    position: relative;
}
.page-hero .wp-block-group__inner-container h1::after {
    content: " }";
    font-weight: 400;
}
.page-hero .wp-block-group__inner-container h1::before {
    content: "{ ";
    font-weight: 400;
}

.team-members .wp-block-image {
    overflow: hidden;
    border-radius: .8rem;
    margin-bottom: 1rem;
    position: relative;
}
.team-members h3 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.team-members .wp-block-column {
    position: relative;
}
.team-members .wp-block-column a {
    background-image: url(assets/images/linkedln-logo.svg);
    background-repeat:  no-repeat;
    background-position: center;
    background-size: 10rem;
    text-indent: -9999px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 15;
    top: 0;
    right: 0;
    bottom: 5rem;
    left: 0;
    transition: all .23s ease-in;
    opacity: 0;
}
.team-members .wp-block-image::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    border-radius: .8rem;
    transition: all .23s ease-in;
    opacity: 0;
}
.team-members .wp-block-column:hover a,
.team-members .wp-block-column:hover .wp-block-image::before {
    opacity: 1;
}

.service-content {
    border-bottom: 2px solid var(--secondary-color);
}
.service-content .wp-block-group__inner-container {
    max-width: 84rem!important;
    font-size: 1.8rem;
}
.service-content .wp-block-group__inner-container h2 {
    margin-bottom: 3rem;
}

.contact-wrap .wp-block-column:first-child {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2.4rem;
    padding: 4rem;
}




.logos-section .wp-block-gallery {
    flex-wrap: nowrap!important;
    align-items: center!important;
    overflow: hidden;
    white-space: nowrap;
    width: 200%;
    animation: scroll 27s linear infinite;
    gap: 4rem!important;
    position: relative;
    will-change: transform; /* Hint for smoother animations */
}
.logos-section .logo-ticker::before {
    content: "";
    position: absolute;
    background: linear-gradient(270deg, rgba(19, 20, 24, 0) 0%, #fff 100%);
    left: 0;
    top: 0;
    bottom: 0;
    width: 14rem;
    z-index: 1;
}
.logos-section .logo-ticker::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(19, 20, 24, 0) 0%, #fff 100%);
    right: 0;
    top: 0;
    bottom: 0;
    width: 14rem;
    z-index: 1;
}
.logos-section p {
    margin: 0;
    font-size: 2.3rem;
    white-space: nowrap;
    line-height: 1;
}
.logos-section .wp-block-gallery .wp-block-image {
    margin: 0!important;
    width: auto!important;
}
.logos-section .wp-block-gallery .wp-block-image img {
    max-height: 8.6rem;
    width: 100%!important;
    height: 8rem!important;
    object-fit: contain;
    min-width: 21rem!important
}
.logos-section .wp-block-column {
    display: flex!important;
    gap: 3rem;
}
.logo-ticker {
    position: relative;
    padding: 0!important;
}
.logo-ticker {
    overflow: hidden;
    white-space: nowrap;
    padding: 0!important;
    display: flex;
    position: relative;
    width: 100%;
  }



  .limited-width {
    max-width: 80rem;
    margin: 0 auto 2rem;
  }