@charset "UTF-8";
/**
 * Colors
 */
:root {
    /* colors */    
    --primary: #004C7A;
    --secondary: #dbaf66;
    --black: #152223;
    --grey:#ebe8e5;
    --lightgrey: #FBF5FC;

    /* headers */
    --font-size-intro: clamp(16px, 15.2px + 0.25vw, 20px);
    --font-size-body: clamp(14px, 13.6px + 0.125vw, 16px);
    --font-size-btn: clamp(13px, 12.8px + 0.0625vw, 14px);
    --h1: clamp(40px, 38.4px + 0.5vw, 48px);
    --h2: clamp(40px, 38.4px + 0.5vw, 48px);
    --h3: clamp(24px, 22.4px + 0.5vw, 32px);
    --h4: clamp(22px, 20.8px + 0.375vw, 28px);

    /* paddings */
    --section-padding: clamp(80px, 72px + 2.5vw, 120px) 0;
    --item-padding: clamp(24px, 20.4px + 1.125vw, 42px);
    --btn-padding-inline: clamp(20px, 17px + 0.9375vw, 35px);
    --btn-padding-block: clamp(14px, 13.6px + 0.125vw, 16px);

    --header-overlay: rgba(0, 0, 0, 0.4);

}

body {
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: var(--font-size-body);
    overflow-x: hidden;
    color: var(--black);
}

h1, h2, h3, h4 {
    text-wrap: balance;
    margin: 0 0 0 -3px;
    color: var(--black);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);   
}

h4 {
    font-size: var(--h4);
}

strong {
    font-weight: 600;
    line-height: 1.6;
}

.border-box {
    box-sizing: border-box;
}

/* wrapper */

.wrapper {
    width: min(90%, 104rem);	
	margin-inline: auto;
	position: relative;
}

.wrapper-s {
    width: min(90%, 48rem);	
	margin-inline: auto;
	position: relative;
}

.wrapper-m {
    width: min(90%, 72rem);	
	margin-inline: auto;
	position: relative;
}

/* intro */

.intro {
    font-size: var(--font-size-intro);
    line-height: 1.647em;
}

/* row */

.row-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-12 {
    display: flex;
    justify-content: space-between;
  }
}

.row {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 2em;
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-3 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1366px) {
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-4 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 2em;
    row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
    .row-5 {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }
}

.row-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-6 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.section-padding {
    padding: var(--section-padding);
}

.mt-1em {
  margin-top: 1em;
}


.mt-2em {
  margin-top: 2em;
}

.mt-3em {
  margin-top: 3em;
}

.mt-4em {
  margin-top: 4em;
}

.mt-20 {
    margin-top: 20px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
  }

.mt-160 {
  margin-top: 160px;
}

.mb-025em {
    margin-bottom: .25em;
}

.mb-05em {
    margin-bottom: .5em;
}

.mb-1em {
    margin-bottom: 1em;
}

.mb-2em {
    margin-bottom: 2em;
}

.mb-3em {
    margin-bottom: 3em;
}

.mb-4em {
    margin-bottom: 4em;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mr-025em {
    margin-right: .25em;
}

.mr-05em {
    margin-right: .5em;
}

.mr-1em {
    margin-right: 1em;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.col {
    position: relative;
}

.d-flex {
  display: flex;  
}

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

.d-flex-inline {
    display: inline-flex;
}

.stroke {
    border: 1px solid;
}

.padding-1em {
    padding: 1em;
}

.gap-05 {
    gap: .5em;
}

.gap-1 {
    gap: 1em;
}

.gap-2 {
    gap: 2em;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
    grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1024px) {
    .d-grid {
        grid-auto-rows: auto;
    }
}

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

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

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

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

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

.border-radius {
    border-radius: 24px;
}

.transition,
a,
:before,
.splide__arrow,
.contact-form input#submit-contact {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;  
}

.box-shadow {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
}

.box-shadow:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

a {
    text-decoration: none;
    color: inherit;
}

p, ul, ol, address {
    font-style: normal;
    line-height: 1.6;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    display: flex;
    align-items: center;
    gap: .5em;
    position: relative;
}

.image img {
    width: 100%;
    height: auto;    
}

.bg-color {
    background-color: var(--lightgrey);
}

.rounded img {
    border-radius: var(--border-radius);
}

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

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

.text-white {
    color: #ffffff;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

/* TopBar */

.topBar {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 3em;
    z-index: 3;
    background-color: var(--black);
    color: #ffffff;
}

.topBar.scroll {
    top: -66px;
}

.topBar .wrapper {
    display: flex;
    gap: 3em;
    align-items:center;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .topBar .container {
        justify-content: space-between;
    }
}

.topBar .social {
    display: inline-flex;
    align-items: center;
    gap: .5em;
}

.topBar .social a {
    display: flex;
}

/* header */

header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 3;
    top: 0;
}

header.scroll,
header.subpage {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
}

header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */

.logo {
    font-size: 0;
    display: block;
    width: 240px;
    height: 110px;
    background-image: url(img/logo.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.home .logo {
    width: 400px;
    height: 140px;
}

header.scroll .logo,
header.subpage .logo {
    background-image: url(img/logo-blue.svg);
}

header.scroll .logo {
    width: 200px;
    height: 70px;
}

@media only screen and (max-width: 1024px) {
    .logo,
    .home .logo,
    header.scroll .logo,
    header.subpage .logo {
        width: 170px;
        height: 70px;
    }
}

/* navigation */

.menu-toggle {
  display: none;
}

.main-navigation.toggled .close-menu {
    display: block;
}

.main-navigation .close-menu {
    display: none;
}

.main-navigation.toggled .open-menu {
    display: none;
}

.main-navigation .open-menu {
    display: block;
}

#primary-menu {  
    list-style-type: none;
    display: flex;
    gap: 1.5em;    
    margin: 0;
}

#primary-menu > li {
    padding: 1em 0;
}

#primary-menu a {
    text-decoration: none;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 14px;
    font-weight: 600;
}

#primary-menu .sub-menu a {
    color: var(--black);
}

header.scroll #primary-menu a,
header.subpage #primary-menu a {
    color: var(--primary);    
}

#primary-menu a:after {
    opacity: 0;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #ffffff;
    left: 0;
    bottom: -.5em;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

header.scroll #primary-menu a:after,
header.subpage #primary-menu a:after,
#primary-menu .sub-menu a:after {
    background-color: var(--primary);
}

#primary-menu a:hover:after {
    opacity: 1;
}

#primary-menu > li.btn-register a:hover:after {
    opacity: 0;
}

#primary-menu li.lang-item-first {
    padding-left: 2em;
    margin-left: 2em;
    border-left: 1px solid;
}

#primary-menu .sub-menu {
    display: none;
}

#primary-menu .menu-item-has-children {
    background-image: url(img/svg/down-arrow-wh.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 20px;
    padding-right: 24px;
}

header.scroll #primary-menu .menu-item-has-children,
header.subpage #primary-menu .menu-item-has-children {
    background-image: url(img/svg/down-arrow.svg);
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu {
    animation: rotateMenu .8s ease-in-out forwards;
    transform-origin: top center;
    display: grid;
    row-gap: .5em;
    list-style: none;
    position: absolute;
    padding: var(--item-padding);
    background-color: #ffffff;    
    top: 58px;
    width: 400px;
}

@keyframes rotateMenu {
    0% {
      transform: rotateX(-90deg)
    }
    70% {
      transform: rotateX(20deg)
    }
    100% {
      transform: rotateX(0deg)
    }
}

#primary-menu .sub-menu li.menu-item-has-children {
    padding-right: 0;
    background-image: none;
}

#primary-menu .sub-menu li.menu-item-has-children .sub-menu {
    display: grid;    
}

#primary-menu .sub-menu li > .sub-menu {
    list-style: none;
    padding-left: 1em;
    font-size: 14px;
}

#primary-menu .sub-menu li > .sub-menu a {
    font-weight: 400;
}

#menuMobile {
    display: none;
}

#menuMobile .btn-register {
    text-decoration: none;
    display: inline-block;
    outline: none;
    font-weight: 600;
    position: relative;
    border: solid 1px;
    padding-inline: var(--btn-padding-inline);
    padding-block: var(--btn-padding-block);
    border-color: var(--lightgrey);
    background-color: var(--lightgrey);
    border-radius: 24px;
}

#menu-menu-mobile {
    list-style: none;
    text-transform: uppercase;
    padding: 0;
    display: grid;
    gap: 0.5em;
}

@media only screen and (max-width: 1260px) {
    .main-navigation #primary-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        background-color: transparent;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 32px;
        width: 32px;
        z-index: 1;
    }

    .main-navigation.toggled ul {
        list-style: none;
    }

    .main-navigation.toggled ul:not(.sub-menu) {        
        padding: 0;
    }

    .main-navigation.toggled #menuMobile {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        background-color: var(--primary);
        padding: 40px;
        height: 100vh;
        animation: menuIn .8s ease;
        overflow: auto;
        gap: 1em;
        font-size: 24px;
        list-style: none;
    }

    .main-navigation.toggled #menuMobile ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .main-navigation.toggled #menuMobile ul li {
        line-height: 1.1;
        align-items: baseline;
    }
    .main-navigation.toggled #menuMobile ul li.menu-item-has-children {
        flex-flow: column;        
    }

    .main-navigation.toggled #menuMobile a {
        color: #ffffff;
    }

    .main-navigation.toggled #menuMobile .btn-register a {
        color: var(--primary);
    }

    .main-navigation.toggled #menuMobile .sub-menu {
        font-size: 16px;
        font-weight: 400;
        padding-left: 1em;
        padding-top: 1em;
    }

    .main-navigation.toggled #menuMobile .sub-menu li:before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #ffffff;
    }

    @keyframes menuIn {
        0% {
            transform: translateX(300px);
        }
        100% {
            transform: translateX(0);
        }
    }

    @keyframes menuOut {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(300px);
        }
    }

    .main-navigation.toggled #menuMobile li.lang-item {
        display: inline-flex;
        font-size: 14px;
        margin-top: .5em;
        margin-right: .5em;
    }

    .main-navigation.toggled .topBarMobile {
        display: none;
        position: fixed;
        top: 80px;
        right: 40px;
        padding: 40px;
        margin-top: 40px;
        color: #ffffff;
        border-radius: var(--border-radius);
    }

    .main-navigation.toggled .topBarMobile .container {
        display: grid;
        gap: 1em;
    }

    #primary-menu .sub-menu > li.current-menu-item,
    #primary-menu .sub-menu > li.menu-item {
        color: var(--black);
    }
}

/* pagination */
.pagination .page-numbers {
    padding: 8px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers.current {
    background-color: transparent;
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    width: auto;
    height: auto;
    background-color: transparent;
}

/* contact */

.form {
    padding: 80px 320px 80px 80px;
}

@media only screen and (max-width: 1366px) {
    .form {
        padding-right: 160px;
    }
}

@media only screen and (max-width: 1024px) {
    .form {
        padding: 2em;
    }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid var(--black);
    background-color: transparent;
    outline: none;
    color: var(--black);
    padding: 8px 0;
    width: calc(100% - 2em);
}

@media only screen and (max-width: 1024px) {
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form input[type="date"],
    .contact-form textarea {
        width: 100%;
    }
}

.contact-form select {
    width: 100%;
}

.contact-form .contact-form__field {
    width: 100%;
}

.contact-form span.wpcf7-list-item {
    margin: 0;
}

.contact-form span.wpcf7-list-item-label {
    font-size: 12px;
}

.contact-form .policy label {
    display: flex;
    gap: 0.5em;
}

.contact-form .policy input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.contact-form .policy input[type="checkbox"]:checked {
    accent-color: var(--magenta);
}

.contact-form ::placeholder {
    color: #00000066;
    opacity: 1; /* Firefox */
}
  
.contact-form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #00000066;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 1em;
}

/* contact-details */

.contact-details {
    display: flex;
    gap: 1em;
}

.contact-details span {
    font-size: var(--h4);
    font-weight: 400;
}

@media only screen and (max-width: 1024px) {
    .contact-details {
        flex-flow: column;
        gap: 1em;        
    }
}

/* nav.navigation */

nav.navigation.post-navigation {
    padding-top: 40px;
}

nav.navigation .nav-links {
    display: flex;
    justify-content: center;
    gap: 4em;
}

@media only screen and (max-width: 800px) {
    nav.navigation .nav-links {
        display: grid;
        gap: 2em;
    }
}

nav.navigation .nav-links .nav-subtitle {
    font-size: 0;
    display: block;
    background-image: url(img/svg/right-chevron.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    flex: 0 0 auto;
}

nav.navigation .nav-links .nav-previous .nav-subtitle {
    transform: rotate(180deg);
}

nav.navigation .nav-title {
    display: block;
}

nav.navigation .nav-next,
nav.navigation .nav-previous {
    flex: 1 1 0;
}

nav.navigation .nav-next a,
nav.navigation .nav-previous a {
    display: flex;
    align-items: center;
    gap: 1em;
}

nav.navigation .nav-next a {
    flex-direction: row-reverse;
}

nav.navigation .nav-next .nav-title {
    text-align: right;
}

/* page blog */

main.page.blog section.blog,
main.page.archive section.blog {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

main.page.blog section.blog .col,
main.page.archive section.blog .col {
    background-image: url(img/blog-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    height: 330px;
    padding: 40px;
}

main.page.blog section.blog .content,
main.page.archive section.blog .content {
    text-align: left;
}


main.page.blog section.blog h1,
main.page.archive section.blog h1 {
    font-size: 32px;
}

@media only screen and (max-width: 468px) {
    main.page.blog section.blog h1,
    main.page.archive section.blog h1 {
        font-size: 28px;
    }
}

main.page.blog section.blog .seeMore,
main.page.archive section.blog .seeMore {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 1024px) {
    main.page.blog section.blog .seeMore,
    main.page.archive section.blog .seeMore {
        display: none
    }
}

/* Headers */

.preTitle {
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: var(--primary);
    font-weight: 600;
}

/* Buttons */

.buttons {
    display: flex;
    gap: 1em;
}

.btn,
.contact-form input#submit-contact,
#primary-menu > li.btn-register a {
    text-decoration: none;
    display: inline-block;
    outline: none;
    font-weight: 600;
    position: relative;
    border: solid 1px;
    padding-inline: var(--btn-padding-inline);
    padding-block: var(--btn-padding-block);
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
    border-radius: 24px;
}

#primary-menu > li.btn-register a,
#primary-menu > li.btn-register a:hover {
    border-color: var(--lightgrey);
    background-color: var(--lightgrey);
    color: var(--black);
} 

#primary-menu > li.btn-register a:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}    

.btn:hover,
.contact-form input#submit-contact:hover {
    background-color: var(--primary);
    color: #ffffff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.btn-text {
    display: flex;
    gap: 1em;
    align-items: center;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 14px;
}

.btn-text.text-white {
    color: #ffffff;
}

.btn-text:hover {
    gap: 1.5em;
    text-decoration: underline;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;  
}

.btn.btnWhite {
    color: #ffffff;
    border-color: #ffffff;
}

.btn.btnWhite:after {
    background-color: #ffffff;
    color: var(--grey);
}

.btn.btnWhite:hover {
    background-color: #ffffff;
    color: var(--black);
}

.btnFull {
    text-decoration: none;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .2em;
    position: relative;
    padding: 1em;
    background-color: var(--black);
    color: #ffffff;
}

.btnFull:hover {
    background-color: #000000CC;
}

.btnFullWhite {
    text-decoration: none;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .2em;
    position: relative;
    padding: 1em;
    background-color: #ffffff;
    color: var(--tide);
}

/* keyframes */

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translatey(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translatey(120px);
        -webkit-transform: translatey(120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

.fadeUp {
    opacity: 0;
    animation: fadeUp linear forwards;
    animation-timeline: view();
    animation-range: entry 10% contain 10%;
    animation-fill-mode: both;
    animation-duration: 1ms;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #000000;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: relative;
    top: 50%;
    left: 50%
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Makes a fixed background wrapper which the user cannot interact with */

.iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
  
/* Make the iframe keep an aspect ratio, and position it in the middle of its parent wrapper*/
  
.iframe-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* splide */

.splide__arrow {
    background-image: url(img/svg/right-arrow-wh.svg);
    background-size: 3em 3em;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    background-color: transparent;
    width: 5em;
    height: 5em;
    position: relative;
}

.splide__arrows {
    position: absolute;
    display: flex;
    align-items: center;
}

/* entry */

.entry {
    height: 100vh;
    width: 100%;
    background-image: url(img/gabinet.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.entry:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    opacity: 0.2;
}

@media only screen and (max-width: 768px) {
    .entry {
        min-height: 100svh;
        height: 100%;
    }
}

.entry .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff1a;
    backdrop-filter: blur(8px);
    padding: 0 4em;
}

@media only screen and (max-width: 1024px) {
    .entry .col {        
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
    }
}

.entry h1 {
    font-size: clamp(32px, 27.2px + 1.5vw, 56px);
}

.entry h1,
.entry h2 {
    color: #ffffff;
}

.entry .intro {
    color: #ffffff;
}

.entry .btn {
    border-color: var(--lightgrey);
    background-color: var(--lightgrey);
    color: var(--black);
}

.entry .splide {
    height: 100%;
}

.entry .splide__track {
    height: 100%;
}

.entry .splide__slide {
    overflow: hidden;
    height: 100vh;
    display: flex;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.entry .splide__slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--header-overlay);
    position: absolute;
}

@media only screen and (max-width: 700px) {
    .entry .splide__slide:before {
        background-color: rgba(79, 81, 89, 0.4);;
    }
}

.entry .slide1 {
    background-image: url(img/slide1.jpg);
}

.entry .splide__arrows svg {
    display: none;
}

.entry .splide__arrows {
    top: calc(50% - 48px);
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 1700px) {
    .entry .splide__arrows {
        display: none;
    }
}

.entry .splide__arrow:hover {
    background-color: #ffffff;
    background-image: url(img/svg/right-arrow.svg);
}

.entry .splide__arrow--prev {
    transform: rotate(180deg) translateY(0);
    left: 3em;
}

.entry .splide__arrow--next {
    transform: translateY(0);
    right: 3em;
}

.entry .slideContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.entry .social {
    position: absolute;
    bottom: 1em;
    right: 0;
}

/* home-about-us */

.home-about-us {
    padding: var(--section-padding);
}

.home-about-us .row-2 {
    column-gap: 6em;
}

.home-about-us .image img {
    max-width: 420px;
    border-radius: 24px;
}

.home-about-us .content {
    display: flex;
    flex-flow: column;
}

/* home-offer */

.home-offer {
    padding: var(--section-padding);
    background: #FFFFFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(251, 245, 252, 1) 100%);
}

.home-offer h2,
.home-offer .preTitle {
    padding-left: var(--item-padding);
}

@media only screen and (max-width: 1024px) {
    .home-offer h2,
    .home-offer .preTitle {
        padding-left: 0;
    }
}

.home-offer .row-2.group {
    grid-template-columns: 30% 70%;
    column-gap: 4em;
}

.home-offer .content .row-2 {
    column-gap: 0;
    row-gap: 0;
}

.home-offer .item {
    padding: var(--item-padding);
}

@media only screen and (max-width: 1024px) {
    .home-offer .item {
        padding-left: 0;
        padding-right: 0;
    }
}

.home-offer .item:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

@media only screen and (max-width: 1024px) {
    .home-offer .item:hover {
        background-color: transparent;
        box-shadow: none;
    }
}

.home-offer .item.item-1 {
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #D1CCD2;
    border-radius: 24px 0 0 0;
}

.home-offer .item.item-2 {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #D1CCD2;
    border-radius: 0 24px 0 0;
}

.home-offer .item.item-3 {
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #D1CCD2;
    border-radius: 0 0 0 24px;
}

.home-offer .item.item-4 {
    border-radius: 0 0 24px 0;
}

@media only screen and (max-width: 1024px) {
    .home-offer .item.item-1,
    .home-offer .item.item-2,
    .home-offer .item.item-3 {
        border-width: 0px 0px 1px 0px;
        border-radius: 0;
    }
}

.home-offer .image img {
    border-radius: 24px;
}

/* home-team */

.home-team {
    padding: var(--section-padding);
    background-color: var(--lightgrey);
    background-image: url(img/vibe-bottom.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
}

.home-team.subpage {
    background-image: url(img/vibe-top.jpg);
    background-position: top;
}

.home-team .image {
    overflow: hidden;
    position: relative;   
    object-fit: cover;
    max-height: 460px;
    border-radius: 24px;
}

.home-team .image:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0;
    position: absolute;
    border-radius: 24px;
}

.home-team .image:hover:before {
    opacity: 0.6;
}
.home-team .image:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.home-team .specialization p {
    margin-top: 0;
}

.home-team .specialistName {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: .5em;
}

.page-template-page-team-single .home-team {
    background-color: var(--lightgrey);
}

/* join-us */

.join-us {
    padding: var(--section-padding);
    background: #FFFFFF;
}

.join-us .row-2 {
    column-gap: 6em;
}

.join-us .image img {
    border-radius: 24px;
}

@media only screen and (max-width: 1024px) {
    .join-us .image {
        order: 1;
    }

    .join-us .content {
        order: 2;
    }
}

/* joinUs */

.joinUs.introduction {
    padding: var(--section-padding);
}

.joinUs.introduction .image img {
    max-width: 420px;
    border-radius: 24px;
}

.joinUs .whatWeOffer li {
    gap: .5em;
    align-items: baseline;
}

.joinUs .whatWeOffer li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: flex;
    flex: 0 0 auto;
    background-color: var(--primary);
}

.joinUs.offer {
    padding: var(--section-padding);
    background-color: var(--lightgrey);
    background-image: url(img/czego-wymagamy.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.joinUs.offer:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    opacity: 0.4;
}

.joinUs.offer .item {
    background-color: #ffffff66;
    backdrop-filter: blur(4px);
    padding: 2em;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 1024px) {
    .joinUs.offer .item {
        min-height: auto;
    }
}

.joinUs.offer .item:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.joinUs.expectations{
    padding: var(--section-padding);
}

.joinUs.expectations .image img {
    max-width: 420px;
    border-radius: 24px;
}

.joinUs.expectations li {
    gap: .5em;
    align-items: baseline;
}

.joinUs.expectations li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: flex;
    flex: 0 0 auto;
    background-color: var(--primary);
}

.joinUs.recruitment {
    padding: var(--section-padding);
    position: relative;
    background-image: url(img/steps.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.joinUs.recruitment:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #D1CCD2;
    background: linear-gradient(90deg,rgba(209, 204, 210, 1) 0%, rgba(251, 245, 252, 1) 100%);
    opacity: 0.8;
}

.joinUs.recruitment .item {
    background-color: #ffffff66;
    backdrop-filter: blur(4px);
    padding: 2em;    
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.joinUs.recruitment .item:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.joinUs.recruitment .item h2 {
    opacity: 0.4;
}

/* teamMemberDetails */

.teamMemberDetails {
    padding: var(--section-padding);
    padding-top: 200px;
}

.teamMemberDetails .image img {
    max-width: 420px;
    height: auto;
    border-radius: 24px;
}

.teamMemberDetails .intro {
    margin-top: 0;
}

.teamMemberDetails ul {
    list-style: square;
    padding-left: 2em;
    display: revert;
}

.teamMemberDetails li {
    display: revert;
}

/* home-news */

.home-news {
    padding: var(--section-padding);
}

.home-news a:hover img {
    scale: 1.1;    
}

.home-news .image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* home-contact */

.home-contact {
    padding: var(--section-padding);
    background-color: var(--lightgrey);
}

.page-template-page-contact .home-contact {
    background-color: #ffffff;
}

.home-contact .content {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.home-contact .image img {
    max-width: 420px;
    border-radius: 24px;
}

.page-template-page-contact .home-contact .image img {
    max-width: 100%;
}

.home-contact .receptionDesk {
    display: flex;
    gap: 2em;
    align-items: center;
}

.home-contact .receptionDesk img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.home-contact .map iframe{
    border-radius: 24px;    
}

/* register */

.register {
    padding: var(--section-padding);
}

.register .image img {
    max-width: 420px;
    border-radius: 24px;
}

/* article */

.article.header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
}

.article.header:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--header-overlay);
}

.article.header h1 {
    color: #ffffff;
}

.article.header .preTitle {
    color: #ffffff;
}

.article.header .btn {
    background-color: var(--lightgrey);
    color: var(--black);
    border-color: var(--lightgrey);
}

.article.content {
    padding: var(--section-padding);
}

.article time {
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 1em 0;
}

article.type-projekt {
    padding-top: 240px;
    width: calc(100% - 3em);
    display: flex;
    flex-direction: column;
    margin-inline: auto;
}

@media only screen and (max-width: 1024px) {
    article.type-projekt {
        padding-top: 180px;
        width: calc(100% - 2em);
    }
}

article.type-projekt .details{
    opacity: .8;
}

article li {
    display: block;
}

/* page */

.page.header {
    display: flex;
    align-items: center;
    height: 320px;
    position: relative;
    margin-top: 110px;
    background-color: var(--lightgrey);
    background-position: center;
}

.page.header:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #ffffff;
    opacity: 0.6;
    position: absolute;
}

@media only screen and (max-width: 1024px) {
    .page.header {
        margin-top: 98px;
        height: 240px;
    }
}

.page.body {
    padding: var(--section-padding);
}

.page-template-page-offer-single .group {
    padding: var(--item-padding);
    background-color: var(--lightgrey);
}

/* aboutUs */

.aboutUs {
    padding: var(--section-padding);
}

.aboutUs .image img {
    max-width: 420px;
    border-radius: 24px;
}

/* offer single */

.prices {
    display: flex;
    flex-flow: column;
    gap: 1em;
}

/* newsSection */

.newsSection {
    padding: 80px 0;
}

.newsSection .item {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.newsSection .image {
    overflow: hidden;
    align-items: center;
    height: 300px;
}

.newsSection .image img {
    box-shadow: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.newsSection h3 {
    margin: 0;
}

.home-news {
    padding: var(--section-padding);
}

/* contactSection */

.contactSection {
    padding: var(--section-padding);
}

.contactSection .form {
    padding: 2em;
    background-color: var(--lightgrey);
    border-radius: 24px;
}

.contactSection .item {
    display: flex;
    gap: 1em;
    align-items: center;
}

.contactSection .item .img {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 10px;
}

.contactSection .contact-form input[type="text"],
.contactSection .contact-form input[type="email"],
.contactSection .contact-form input[type="tel"],
.contactSection .contact-form input[type="date"],
.contactSection .contact-form select,
.contactSection .contact-form textarea {
    border: none;
    border-bottom: 1px solid var(--black);
    background-color: transparent;
    outline: none;
    color: var(--black);
    width: 100%;
}

.contactSection .contact-form ::placeholder {
    color: #00000066;
    opacity: 1; /* Firefox */
}
  
.contactSection .contact-form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #00000066;
}

.contactSection .contact-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}

/* contactDetails */

.contactDetails {
    background-color: #f3f2f2;
    padding-bottom: 160px;
}

.contactDetails h2 {
    background-color: var(--magenta);
    color: #ffffff;
    padding: 40px;
}

.contactDetails a {
    font-weight: 600;
    color: var(--green);
    display: block;
}

.contactDetails a:hover {
    color: var(--magenta);
}

.contactDetails .content {
    padding: 0 40px;
}

.contactDetails .linkedIn .group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.contactDetails .linkedIn a {
    display: flex;
    gap: 1em;
    align-items: center;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 1em;
}

::-webkit-scrollbar-track {
  background: #ffffff; 
}

::-webkit-scrollbar-thumb {
  background: var(--primary); 
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary); 
}

/* footer */

footer {
    width: 100%;
}

.footerLogo {
    width: 300px;
    height: auto;
}

@media only screen and (max-width: 1366px) {
    footer {
        position: relative;
    }
}

@media only screen and (max-width: 1024px) {
    footer .row-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 768px) {
    footer .row-2 {
        flex-direction: column;
        justify-content: center;
    }
}

.footer .design {
    display: flex;
    justify-content: end;
}

/* footerDetails */

.footerDetails {  
    padding: 80px 0 40px;
    background-color: var(--primary);
    color: #ffffff;
}

.footerDetails h2 {
    margin-top: 0;
}

.footerDetails ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1em 0 0;
    display: grid;
}

.footerDetails li {
    line-height: 24px;
}

.footer .socialIcons {
    display: flex;
    gap: .5em;
    justify-content: end;
}

.footer .design {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.footer .contact {
    padding: 0;
    background-image: none;
}

.footer .contact .group {
    gap: 0.5em;
}

.footer .contact .group .value {
    font-weight: 400;
}

.footer .policy a {
    color: inherit;
    text-decoration: none;
}

.footer .bottomBar {
    background-color: var(--primary);
    color: #ffffff;
    display: flex;    
    padding: 0 0 40px;
}

.footer .bottomBar .wrapper {
    border-top: 1px solid;
    padding-top: 40px;
}

/* accordion */

.accordion {
    padding: 40px 0 80px;
}

ul.accordion-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 15px auto;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li {
        margin: 0;
    }
    
}

ul.accordion-list .number {
    color: #00000066;
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li {
        width: auto;
    }
}

ul.accordion-list .title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #00000066;
}

ul.accordion-list li .title .icon img {
    transform: rotate(90deg);
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li .title .icon img {
        width: 24px;
        height: 24px;
    }
}

ul.accordion-list li.active .title .icon img {
    transform: rotate(-0.25turn);
}

ul.accordion-list li .answer {
    display: none;
}

ul.accordion-list li .answer li {
    list-style-type: disc;
    border: none;
    padding: 0;
}

/* blog */

section.blog {
    padding: var(--section-padding);
}

section.blog .item {
    position: relative;
    border-radius: 24px;
    background-color: var(--lightgrey);
    display: flex;
    height: 100%;
}

section.blog .item:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

section.blog h4 {
    font-size: 18px;
    line-height: 1.4;
}

section.blog .published {
    display: flex;
    align-items: center;
    gap: .5em;
    position: absolute;
    top: 20px;
    background-color: #ffffff66;
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 8px;
}

section.blog .content {
    display: flex;
    flex-direction: column;
    gap: .5em;
    padding: 2em;
    background-color: var(--lightgrey);
    border-radius: 0 0 24px 24px;
}

section.blog .image {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

section.blog .item:hover .image > img {
    transform: scale(1.1);
}

section.blog .splide__slide {
    align-items: baseline;
    padding-bottom: 2em;
}

section.blog .splide__slide img {
    max-height: 280px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    border-radius: 24px 24px 0 0;
}

section.blog .splide svg {
    display: none;
}

section.blog .splide__arrow {
    background-image: url(img/svg/right-arrow-wh.svg);
    background-color: var(--primary);
    border-radius: 50%;
    transform: none;
}

section.blog .splide__arrow--prev {
    transform: rotate(180deg);
}

section.blog .splide__arrows {
    justify-content: space-between;
    width: 100%;
    top: calc(50% - 5em);
}

.calendar-custom.widget-container {
	max-width: 100%;
}