
/* Variables */

:root {        
    --primary-color: #C44E2A;    
    --secondary-color: #252422;    
    --text-color: #403D39;            
    --white-color: #FFF;        
    --white2-color: #FFFDF3;
    --white-floral-color: #FFFCF2;      
    --input-color: transparent;
    --input-primary-color: #25816D;
    --input-active-color: #FF5151;    
    --input-border-color: rgba(255,255,255,.3);    
    --border-color: #DEDEDE;    
    --background-color: #252422;        
    --background2-color: #262522;        
    --footer-color: #403D39;
    --title-size: 30px;
    --title-medium-size: 40px;
    --title-large-size: 50px;
    --max-width: 1280px;        
    --vh: 100vh;
}

/* Reset */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
html :where(.wp-block) { max-width: none; }

body.finger {  color: var(--white-color); font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; background-color: var(--background-color); }
body.finger { font-family: "Source Serif 4"; }
body.finger input,
body.finger select,
body.finger textarea { font-family: "Open Sans"; }
body.finger input:focus,
body.finger textarea:focus { outline: none; border-color: var(--input-active-color) !important; }
body.finger input[type="search"]::-webkit-search-cancel-button { display: none; -webkit-appearance: none; }
body.finger input,
body.finger button,
body.finger select,
body.finger textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

a { text-decoration: none; transition: ease-in-out .4s; }
a:hover, a:active, a:focus { text-decoration: none; }

/* custom select */
.custom-select-container { position: relative; }
.custom-select-container.is-disabled { opacity: .333; }
.custom-select-container select { opacity: 0; visibility: hidden; position: absolute; top: 0; left: 0; }
.custom-select-container .custom-select-opener { cursor: pointer; display: block; padding: 15px 0; width: 100%; min-height: 51px; color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 20px; letter-spacing: -0.39px; border-bottom: 1px solid rgba(255, 255, 255, .3); transition: .4s; }
.custom-select-container .custom-select-opener::after { content: "\e904"; position: absolute; top: 50%; right: 0; margin-top: -10px; font-family: 'finger-icons' !important; font-size: 7px; }
.custom-select-container .custom-select-panel { opacity: 0; visibility: hidden; overflow: hidden; position: absolute; z-index: 1; top: calc( 100% + 15px ); padding: 10px; width: 100%; max-height: 0; background: var(--footer-color); border-radius: 10px; transition: opacity .4s, max-height .5s ease-out, overflow-y 0.1s 0.5s; }
.custom-select-container.is-open .custom-select-opener { border-color: var(--white-color); }
.custom-select-container.is-open .custom-select-opener::after { transform: rotate(180deg); }
.custom-select-container.is-open .custom-select-panel { opacity: 1; visibility: visible; overflow-y: auto; max-height: 500px; }
.custom-select-container .custom-select-option { cursor: pointer; padding: 0 15px; color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 37px; letter-spacing: -0.39px; }
.custom-select-container .custom-select-option.is-selected { border: 1px solid var(--primary-color); border-radius: 5px; }
.custom-select-container .custom-select-option.has-focus { background: var(--primary-color); border-radius: 5px; }
.custom-select-container .custom-select-optgroup > .custom-select-option { padding-left: 2em; }
.custom-select-container .custom-select-optgroup::before { content: attr(data-label); display: block; padding: 10px; }
@media screen and (max-width: 991px) {
    .custom-select-container.is-open .custom-select-panel { max-height: 300px; }
}

/* Helpers */

.d-none,
.sr-only,
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* Layout */
.container { margin: 0 auto; width: 100%; max-width: 100%; }

.btn-group { display: flex; gap: 20px; }
.btn { display: inline-flex; align-items: center; border: none; }
.btn-blur { background: rgba(255, 255, 255, 0.20); border-radius: 100px; backdrop-filter: blur(7.800000190734863px); transition: .4s; }
.btn-blur:hover { background: rgba(255, 255, 255, 0.1); }
.btn-primary { display: inline-flex; gap: 16.25px; align-items: center; justify-content: center; padding: 18px 20px; height: 72px; color: var(--white-color); font-family: "Open Sans"; font-size: 16px; font-weight: 700; line-height: 1em; letter-spacing: -0.48px; background: var(--primary-color); border: none; border-radius: 100px; transition: .4s; }
.btn-primary:hover { color: var(--primary-color); background: var(--white-color); }
.btn-primary-icon::before { content: "\e900"; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; width: 55.553px; height: 35.789px; background: var(--white-color); border-radius: 100px; transition: .4s; }
.btn-primary-icon:hover::before { color: var(--white-color); background: var(--primary-color); }
.btn-secondary { position: relative; display: inline-flex; gap: 10px; color: var(--white-color); font-family: "Open Sans"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.48px; }
.btn-secondary::before { content: "\e900"; display: flex; align-items: center; justify-content: center; color: var(--white-color); font-family: 'finger-icons' !important; font-size: 12px; width: 55.553px; height: 35.789px; background: var(--primary-color); border-radius: 100px; transition: .4s; }
.btn-secondary:hover::before { color: var(--primary-color); background: var(--white-color); }
.btn-plus::before { content: "\e91d"; }
.btn-outline { cursor: pointer; display: inline-flex; gap: 10px; align-items: center; justify-content: center; padding: 13px 30px; height: 50px; color: var(--primary-color); font-family: "Open Sans"; font-size: 13px; font-weight: 700; line-height: 20px; letter-spacing: -0.39px; background: transparent; border: 1px solid var(--primary-color); border-radius: 100px; }
.btn-outline i { display: inline-block; margin-right: 6px; font-size: 10px; }

.btn-search { cursor: pointer; display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; font-size: 16px; color: var(--primary-color); background: var(--primary-light-color); border: none; border-radius: 100px; }
.btn-link { color: var(--primary-color); font-size: 16px; font-style: normal; font-weight: 700; line-height: 70.263px;  }
.btn-icon { --color: var(--white2-color); position: relative; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; color: var(--color); border-radius: 100px; }
.btn-icon::after { content: " "; position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, .20); border-radius: 100px; backdrop-filter: blur(7.800000190734863px); transition: .4s; }
.btn-icon:hover::after { opacity: .5; }
.btn-icon .btn-label { position: absolute; z-index: 1; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.btn-icon i { position: relative; z-index: 2; }
.btn-filter { position: relative; display: flex; gap: 10px; align-items: center; justify-content: center; padding: 12px 21px; height: auto !important; color: var(--white-color); font-size: 14px; font-weight: 700; line-height: 26px; letter-spacing: -0.28px; background: transparent; border-radius: 100px; border: 1px solid var(--primary-color) !important; }
.btn-filter::before { content: " "; width: 6px; height: 6px; background: var(--primary-color); border-radius: 100px; }
.btn-more i { font-size: 6px; }

/* Header */

.site-header { position: relative; z-index: 9999; width: 100%; height: 130px; background: transparent; transition: ease-in-out .4s; }
.site-header.header--sticky { position: sticky; z-index: 999; top: 0; }
.site-header.header--fixed { position: fixed; z-index: 999; top: 0; left: 50%; margin-top: 0; transform: translateX(-50%); }
.site-header.sticked { background: rgba(37, 36, 34, 0.70); backdrop-filter: blur(18.950000762939453px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 0 90px; width: 100%; height: 100%; }

.site-logo { position: relative; z-index: 2; padding: 0; box-sizing: content-box; transition: .4s; }
.site-logo,
.site-logo a { display: block; width: 122.165px; height: 53.447px; }
.site-logo a { text-indent: -99999px; background: transparent url(../images/logo-finger.svg) center center no-repeat; background-size: contain; }
.site-slogan { display: block; width: 108.919px; height: 32.636px; text-indent: -99999px; background: transparent url(../images/slogan-finger.svg) center center no-repeat; background-size: contain; }

.site-header .header-options { position: relative; z-index: 2; display: flex; gap: 20px; }
.site-header .btn--search,
.site-header .btn--menu { cursor: pointer; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; font-size: 18px; }
.site-header .btn--search .icon-close,
.site-header .btn--menu .icon-close { display: none; }

.search-open .site-header .btn--search .icon-search,
.menu-open .site-header .btn--menu .icon-menu { display: none; }
.search-open .site-header .btn--search .icon-close,
.menu-open .site-header .btn--menu .icon-close { display: block; }

.site-nav-lang { position: absolute; left: 70px; transition: none !important; }
.site-nav-lang:hover { border-radius: 14px; background: rgba(255, 255, 255, 0.2) !important; }
.site-nav-lang a { color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.39px; }
.site-nav-lang ul { list-style: none; }
.site-nav-lang > ul > li > a { position: relative; display: flex; align-items: center; justify-content: center; padding: 0 20px; height: 50px; }
.site-nav-lang > ul > li > a::after { content: "\e904"; display: inline-flex; align-items: center; margin-left: 9.75px; padding-left: 9.75px; height: 18.325px; font-family: 'finger-icons' !important; font-size: 8px; border-left: 1px solid rgba(255, 255, 255, .3); }
.site-nav-lang > ul > li > ul { display: none; margin: -4px 16.75px 15.71px; align-items: center; justify-content: space-between; border-radius: 8px; background: rgba(255, 255, 255, 0.20); backdrop-filter: blur(7.800000190734863px); }
.site-nav-lang > ul > li > ul > li.active { display: none; }
.site-nav-lang > ul > li > ul > li { width: 100%; }
.site-nav-lang > ul > li > ul > li > a { display: flex; align-items: center; justify-content: center; padding: 4.35px 0; width: 100%; font-size: 11px; letter-spacing: -0.33px; border-right: 1px solid rgba(255, 255, 255, .3); }
.site-nav-lang > ul > li > ul > li > a .lang-name { display: none; }
.site-nav-lang > ul > li > ul > li:last-child > a,
.site-nav-lang > ul > li > ul > li:has(+ .active) > a { border: none; }
.site-nav-lang > ul > li > ul > li:first-child > a { border-right: 1px solid rgba(255, 255, 255, .3) !important; }
.site-nav-lang > ul > li:hover > a::after { padding-right: 9.75px; padding-left: 0; border-right: 1px solid rgba(255, 255, 255, .3); border-left: 0; transform: rotate(180deg);  }
.site-nav-lang > ul > li:hover > ul { display: flex; }

.site-header .site-nav,
.site-header .search-box { opacity: 0; visibility: hidden; position: absolute; top: 0; left: 0; z-index: 1; display: flex; align-items: center; justify-content: space-evenly; width: 100%; height: var(--vh); min-height: 640px; background: rgba(37, 36, 34, 0.70); transform: translateY(-100%); transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(18.950000762939453px); }

.site-nav--menu ul { list-style: none; display: flex; justify-content: space-between; }
.site-nav--menu > ul { gap: 75px; }
.site-nav--menu > ul > li > a { opacity: .5; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 9px; font-weight: 700; line-height: 35px; letter-spacing: 2.16px; text-transform: uppercase; }
.site-nav--menu > ul > li > ul { flex-direction: column; min-width: 200px; }
.site-nav--menu > ul > li:last-child > ul { min-width: 260px; }
.site-nav--menu > ul > li > ul > li > a { position: relative; display: block; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 23px; font-style: normal; font-weight: 400; line-height: 59px; letter-spacing: -0.69px; }
@media (hover: hover) {
    .site-nav--menu > ul > li > ul > li > a:hover { padding-left: 16px; color: var(--primary-color); }
    .site-nav--menu > ul > li > ul > li > a::before { opacity: 0; content: "\e919"; position: absolute; left: 0; top: 50%; font-family: 'finger-icons' !important; font-size: 10px; color: var(--primary-color); transform: translateY(-50%); transition: .3s; }
    .site-nav--menu > ul > li > ul > li > a:hover::before { opacity: 1; }
}

.site-nav--contact { padding: 1.12px 0 14.31px; padding-left: 108.54px; border-left: 1px solid rgba(255, 255, 255, .2); }
.site-nav--contact .contact--title { opacity: .5; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 9px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.16px; text-transform: uppercase; }
.site-nav--contact p + .contact--title { margin-top: 15px; }
.site-nav--contact p,
.site-nav--contact p a { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 33px; letter-spacing: -0.39px; }
.site-nav--contact .btn { margin-top: 15px; }

.site-header .site-nav-social { margin-top: 55px; }
.site-header .site-nav-social .btn-icon i { color: var(--white-floral-color); }

.menu-open,
.search-open { overflow: hidden; }
.menu-open .site-header,
.search-open .site-header { background: transparent; backdrop-filter: unset; }
.menu-open .site-nav,
.search-open .search-box { opacity: 1; visibility: visible; transform: translate(0); }

.site-header .search-box { flex-direction: column; align-items: flex-start; justify-content: flex-start; padding-top: 148px; }
.search-box .search-form { position: relative; display: flex; margin: 0 auto; width: 100%; max-width: 590px; height: 72px; background: rgba(255, 255, 255, .1); border-radius: 100px; backdrop-filter: blur(7.800000190734863px); }
.search-box .search-form::before { pointer-events: none; content: "\e903"; position: absolute; left: 31px; top: 50%; font-family: 'finger-icons' !important; font-size: 15px; color: var(--white-color); transform: translateY(-50%); }
.search-box input { appearance: none; position: relative; z-index: 2; padding: 27px 167px 27px 67px; color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.39px; background: transparent; border: none; }
.search-box .btn-primary { cursor: pointer; position: absolute; z-index: 2; top: 11px; right: 13px; width: 148px; height: 50px; font-size: 13px; line-height: 20px; letter-spacing: -0.39px; }
.search-box .search-filters { display: flex; flex-direction: column; align-items: center; margin: 30px auto; }
.search-box .search-filters span { color: var(--white-color); text-align: center; font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.39px; }
.search-box .search-filters ul { list-style: none; display: flex; gap: 20px; align-items: center; justify-content: center; margin-top: 30px; }
.search-box .search-filter { cursor: pointer; opacity: .5; display: flex; align-items: center; justify-content: center; padding: 6px 15px; height: 32px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; background: transparent; border-radius: 100px; border: 1px solid var(--white-color); }
.search-box .search-filter.active { opacity: 1; }
@media screen and (max-width: 991px) {
    .site-header .search-box { padding-left: 30px; padding-right: 30px; }
    .search-box .search-form { gap: 20px; flex-direction: column; height: auto; background: 0; backdrop-filter: unset; }
    .search-box .search-form::before { top: 10px; left: 15px; transform: none; }
    .search-box input { padding: 15px 40px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, .3); }
    .search-box .btn-primary { position: relative; top: auto; right: auto; width: 100%; }
    .search-box .search-filters ul { flex-wrap: wrap; }
    .search-box .search-filters ul li:first-child,
    .search-box .search-filters ul li:first-child .search-filter { width: 100%; }
}

/* Pages */

.site-page { overflow: hidden; background: var(--page-bg-color); }

.block { position: relative; z-index: 1; background: var(--background-color); }
.block.background-color { --color: var(--background-color); background: var(--color); }
.block--headline { display: inline-flex; justify-content: center; align-items: center; height: 32px; padding: 6px 15px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; border: 1px solid var(--white-color); border-radius: 100px; }
.block--content { position: relative; }
.block--content p { margin-bottom: 1.5em; font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--content p a,
.block--content ul a { opacity: 1; color: var(--primary-color); text-decoration: none; }
.block--content p.has-text-align-center { text-align: center; }
.block--content p.has-text-align-center a { text-decoration: none !important; }
.block--content p.has-small-font-size { font-size: 12px !important; font-weight: 400; color: var(--text-color); line-height: 1.25em; }
.block--content p.has-medium-font-size { font-size: 19px !important; line-height: 1.25em; }
.block--content p.has-large-font-size { font-size: 22px !important; font-weight: 500; line-height: 1.25em; }
.block--content p.has-x-large-font-size { font-size: 27px !important; font-weight: 500; line-height: 1.25em; }
.block--content p strong { font-weight: 600; }
.block--content ul { list-style: none; }
.block--content ul li { position: relative; margin-bottom: 1em; padding-left: 16px; color: var(--white-floral-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 27px; }
.block--content ul li::before { content: " "; position: absolute; top: 11px; left: 0; display: block; width: 5px; height: 5px; background: var(--primary-color); border-radius: 100px; }
.block--content.block__loading::after { content: " "; position: absolute; z-index: 99; top: 0; left: 50%; width: 100vw; height: 100%; background: rgba(255, 255, 255, .9); border-radius: 20px; transform: translateX(-50%); backdrop-filter: blur(3px); }
.block--content h2,
.block--content h3,
.block--content h4,
.block--content h5,
.block--content h6 { margin-bottom: 1em; }

.block--share { margin: 0 90px; padding: 60px 0; border-top: 1px solid rgb(64, 61, 57, .2);  }
.block--share .block--title { display: block; margin: 0 auto 20px; color: var(--text-color); font-family: "Open Sans"; font-size: 17px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: -0.51px; text-align: center; }
.block--share ul { list-style: none; display: flex; gap: 25px; align-items: center; justify-content: center; }
.block--share ul li { position: relative; }
.block--share ul li a i { color: var(--text-color) !important; }
.block--share .btn-icon { background: rgba(64, 61, 57, 0.10); backdrop-filter: blur(7.800000190734863px); }
@media screen and (max-width: 991px) {
    .block--share ul { gap: 20px; }
}

.wp-block-heading { font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; margin-bottom: 40px; }
h2.wp-block-heading { font-size: 25px; text-transform: none; }
h3.wp-block-heading { font-size: 20px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.6px; margin-bottom: 14px; }
h4.wp-block-heading { margin-bottom: 14px; font-size: 16px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.6px; }
h5.wp-block-heading { font-size: 14px; }
h6.wp-block-heading { font-size: 12px; }
h4.wp-block-heading,
h5.wp-block-heading
h6.wp-block-heading { text-transform: none; }
.wp-block-heading + .wp-block-heading  { margin-top: 0; }
.wp-block-heading strong { font-weight: 700; }
.wp-block-heading + p { margin-top: 1.5em; }
p + .wp-block-heading,
ul + .wp-block-heading { margin-top: 2em; }

.wp-block-separator { opacity: .2; margin: 60px 0; height: 1px; background: var(--footer-color); border: none; }

.wp-block-quote { margin: 70px 0 60px; padding-bottom: 50px; text-align: center; border-bottom: 1px solid rgba(30, 108, 91, .1); }
.wp-block-quote p { margin: 0 auto; padding: 0 30px; max-width: 775px; color: var(--primary-color) !important; font-size: 19px !important; line-height: 30px !important; }

.wp-block-image:has(.wp-element-caption) > figure { display: flex; flex-direction: column; }
.wp-block-image:has(.wp-element-caption) > figure img { margin: 0 auto 10px; }
.wp-element-caption { color: var(--text-color); text-align: center; font-size: 14px; line-height: 23px; text-align: center; }

.wp-block-table { padding-top: 40px; }
.wp-block-table table { border-collapse: separate; }
.wp-block-table th { padding: 10px 0; color: var(--text-color); font-size: 13px; font-weight: 700; line-height: 23px; letter-spacing: -0.26px; background: var(--white-color); border: none; }
.wp-block-table td { padding: 15px; color: var(--text-color); text-align: center; font-size: 14px; line-height: 46px; background: var(--primary-light-color); border: none; }
.wp-block-table td:first-child { border-radius: 10px 0 0 10px; }
.wp-block-table td:last-child { border-radius: 0 10px 10px 0; }
.wp-block-table tr:nth-child(even) td { background: var(--primary-soft-color); }
.wp-block-table + .btn { display: flex; margin: 40px auto 0; }

.wp-block-gallery { margin: 40px 0 60px; }

.wp-block-image .size-large { width: 100%; }
.wp-block-image .aligncenter.size-large img { display: block; width: 100%; height: auto; }
.wp-block-image,
.wp-block-embed { overflow: hidden; margin-bottom: 60px; border-radius: 20px; }

/* Sliders */

.swiper {
    --swiper-navigation-sides-offset: 30px;
    --swiper-pagination-color: #FFFFFF;
    --swiper-pagination-bullet-inactive-color: #FFFFFF;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 10px;
    --swiper-pagination-bottom: 80px;
}
.swiper .swiper-pagination-bullet { border: none; width: 48px; height: 2px; border-radius: 100px; }
.swiper .swiper-pagination-bullet-active { background-color: var(--primary-color); }
.swiper .swiper-button-prev,
.swiper .swiper-button-next { display: flex; align-items: center; justify-content: center; margin-top: -25px; width: 50px; height: 50px; color: var(--primary-color); font-size: 10px; background: var(--white-color); border-radius: 100px; }
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after { display: none !important; }
.swiper-navigation { position: absolute; z-index: 4; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: center; padding: 0 45px; width: fit-content; height: 48px; background: var(--white-color); border-radius: 17px; }
.swiper-navigation:has(.swiper-button-prev.swiper-button-lock):has(.swiper-button-next.swiper-button-lock) { display: none; }
.swiper .swiper-navigation .swiper-pagination { position: relative; display: flex; height: 100%; }
.swiper .swiper-navigation .swiper-pagination-bullet { position: relative; opacity: 1; display: flex; align-items: center; justify-content: center; margin: 0 5px; width: 21px; height: auto; color: var(--white-off-color); font-size: 14px; font-weight: 700; line-height: 16px; letter-spacing: -0.42px; background: transparent; border: none; transform: none; }
.swiper .swiper-navigation .swiper-pagination-bullet-active { color: var(--primary-color); border: none; }
.swiper .swiper-navigation .swiper-pagination-bullet-active::after { content: " "; position: absolute; bottom: 0; left: 0; width: 100%; height: 3.802px; border-radius: 10px 10px 0px 0px; background: var(--primary-color); }
.swiper .swiper-navigation .swiper-button-prev,
.swiper .swiper-navigation .swiper-button-next { top: 10px; left: 13px; margin: 0; width: 26px; height: 26px; }
.swiper .swiper-navigation .swiper-button-next { left: auto; right: 13px; }

/* Forms */

.piotnetforms { color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 500; line-height: 21px; }
.piotnetforms__form>* { padding: 0; }
.piotnetforms .piotnet-section__container { gap: 60px; max-width: none !important; }
.piotnetforms .piotnet-column__inner { padding: 0; margin: 0; }
.piotnetforms .piotnet-column__inner .piotnetforms-fields-wrapper { margin-bottom: 22px; padding: 0; }
.piotnetforms .piotnetforms-field-label { opacity: .5; margin: 0; padding: 0; color: var(--white-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: 2.4px; text-transform: uppercase; }
.piotnetforms .piotnetforms-field,
.piotnetforms .piotnetforms-field select,
.block form select { padding: 15px 0; color: var(--white-color); font-size: 13px; font-style: normal; font-weight: 700; line-height: 20px; letter-spacing: -0.39px; background: var(--background-color); border: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.piotnetforms .piotnetforms-field select { padding: 0; border: none; }
.piotnetforms .piotnetforms-field select,
.block form select { appearance: none; -moz-appearance: none; -webkit-appearance: none; background: transparent; }
.piotnetforms .piotnetforms-field select:active,
.block form select:active,
.block form select:focus,
.block form select:focus-within,
.block form select option { color: var(--text-color); }
.block form select:focus-visible { color: var(--white-color); }
.piotnetforms .piotnetforms-field.piotnetforms-select-wrapper { padding: 0 !important; border: none !important; }
.piotnetforms .piotnetforms-field.piotnetforms-select-wrapper::before,
.piotnetforms .piotnetforms-field.piotnetforms-select-wrapper::after { display: none !important; }
.piotnetforms .piotnetforms-field.piotnetforms-field-textual { margin-top: 15px; padding: 15px 20px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 8px; }
.piotnetforms .piotnetforms-field::placeholder { opacity: 1; color: var(--white-color); }
.piotnetforms .piotnetforms-field::-moz-placeholder { opacity: 1; color: var(--white-color); }
.piotnetforms .piotnetforms-field:-ms-input-placeholder { opacity: 1; color: var(--white-color); }
.piotnetforms .piotnetforms-field::-ms-input-placeholder { opacity: 1; color: var(--white-color); }
.piotnetforms .piotnetforms-field-subgroup.piotnetforms-subgroup-inline { margin-top: 15px; }
.piotnetforms .piotnetforms-field-option { cursor: pointer; position: relative; display: flex; align-items: center; gap: 13.61px; }
.piotnetforms .piotnetforms-field-option label { cursor: pointer; user-select: none; }
.piotnetforms .piotnetforms-acceptance-field[type="checkbox"],
.piotnetforms .piotnetforms-field-option [type="radio"] { outline: none; cursor: pointer; position: relative; flex: none !important; padding: 0; width: 24px; height: 24px; background: var(--white-color); border-radius: 5px; appearance: none; -webkit-appearance: none; -moz-appearance: none;  }
.piotnetforms .piotnetforms-field-option [type="radio"] { border-radius: 100px; }
.piotnetforms .piotnetforms-acceptance-field[type="checkbox"]:checked::after,
.piotnetforms .piotnetforms-field-option [type="radio"]:checked::after { content: '\e906'; position: absolute; top: 4px; left: 4px; display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: var(--white-color); font-family: 'finger-icons' !important; font-size: 8px; background: var(--primary-color); border-radius: 4px; }
.piotnetforms .piotnetforms-field-option [type="radio"]:checked::after { border-radius: 100px; }
.piotnetforms .piotnetforms-button { display: inline-flex; gap: 16.25px; align-items: center; justify-content: center; padding: 18px 30px; height: 72px; color: var(--white-color); font-family: "Open Sans"; font-size: 16px; font-weight: 700; line-height: 1em; letter-spacing: -0.48px; background: var(--primary-color); border: none; border-radius: 100px; }
@media screen and (max-width: 991px) {
    .piotnetforms .piotnetforms-field-subgroup.piotnetforms-subgroup-inline { flex-direction: column; }
    .piotnetforms-field-subgroup.piotnetforms-subgroup-inline .piotnetforms-field-option { padding: 5px 0; }
    .piotnetforms .piotnetforms-button { width: 100%; height: 50px; }
    .piotnetforms .piotnet-section__container { gap: 0; flex-direction: column; }
}

/* Alert: Coockies, Privacy Policy... */

.site-alert { opacity: 0; visibility: hidden; position: fixed; z-index: 9999; bottom: 30px; left: 50%; display: flex; align-items: center; padding: 28px; padding-left: 96px; width: fit-content; width: 1110px; background: var(--white-color) url('../images/ico-cookie.png') left 28px center no-repeat; border-radius: 20px; box-shadow: 16px -5px 60.3px 0px rgba(52, 61, 77, 0.10); transform: translateX(-50%); transition: 1.2s; }
.site-alert.active { opacity: 1; visibility: visible; }
.site-alert .site-alert--text { padding-right: 15px; }
.site-alert p { color: var(--text-light-color); font-size: 14px; line-height: 26px; letter-spacing: -0.28px; }
.site-alert p strong { color: var(--text-color); font-weight: 700; letter-spacing: -0.32px; }
.site-alert p a { color: var(--primary-color); font-weight: 700; }
.site-alert .btn { flex: 0 0 215px; align-items: center; justify-content: center; padding: 22px 0 24px; color: var(--primary-color); font-size: 14px; font-weight: 700; line-height: 1em; border-radius: 8px; border: 1px solid var(--primary-color); }

/* Footer */

.site-footer { position: relative; display: flex; flex-direction: column; padding-top: 67.72px; color: var(--white-floral-color); background: var(--footer-color); }
.site-footer .container { max-width: var(--max-width); }
.site-footer a { color: var(--white-floral-color); transition: ease-in-out .4s; }
.site-footer .site-logo,
.site-footer .site-logo a { position: relative; width: 152.282px; height: 66.621px; }
.site-footer .site-slogan { position: absolute; left: 167px; bottom: 18px; }
.site-footer .footer--main { position: relative; margin-bottom: 58.85px; }
.site-footer .footer--main p { position: absolute; top: 20px; left: 0; width: 100%; color: var(--white-floral-color); text-align: center; font-family: "Open Sans"; font-size: 20px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.6px; }
.site-footer .footer--columns { display: flex; justify-content: space-between; }
.site-footer .footer--column { position: relative; width: 100%; min-width: 140px; }
.site-footer .footer--column:first-child { max-width: 375px; }
.site-footer .footer--column p,
.site-footer .footer--column p a { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 20px; letter-spacing: -0.39px; }
.site-footer .footer--column p + .footer--title { margin-top: 1.5em; }
.site-footer .footer--column .btn-primary { margin-top: 20px; height: 50px; font-size: 13px; line-height: 20px; letter-spacing: -0.39px; }
.site-footer .footer--title { opacity: .5; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 9px; font-weight: 700; line-height: 35px; letter-spacing: 2.16px; text-transform: uppercase; }
.site-footer .site-nav-secondary { width: 100%; }
.site-footer .site-nav-secondary ul { list-style: none; display: flex; justify-content: space-between; }
.site-footer .site-nav-secondary > ul > li { width: 25%; }
.site-footer .site-nav-secondary > ul > li > a { opacity: .5; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 9px; font-weight: 700; line-height: 35px; letter-spacing: 2.16px; text-transform: uppercase; }
.site-footer .site-nav-secondary > ul > li > ul { flex-direction: column; }
.site-footer .site-nav-secondary > ul > li > ul > li > a { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: -0.39px; }

.site-footer .site-nav-social { position: absolute; bottom: 50px; right: 35px; }
.site-nav-social ul { list-style: none; display: flex; gap: 14.2px; }
.site-nav-social .btn-icon { position: relative; }

.site-footer .footer--bar { margin-top: 67.72px; padding: 27px 0; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 11px; font-style: normal; font-weight: 400; line-height: 35px; text-transform: uppercase; border-top: 1px solid rgba(255, 252, 242, .2); }
.site-footer .footer--bar .container { display: flex; justify-content: space-between; }
.site-footer .footer--bar p a i { font-size: 21px; }
.site-footer .footer--bar strong { font-weight: 700; }
.site-footer .upside { display: inline-flex; gap: 6px; align-items: center; }

/* Animations */

@keyframes spin { 
    100% {         
        transform:rotate(360deg); 
    } 
}

/* Mobile */

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

    :root {            
        --title-size: 20px;
        --title-large-size: 28px;        
    }

    html { scroll-padding-top: 100px; }
    
    .container { padding: 0 30px; }

    /* Header */
    .site-header { margin: 0; padding: 0; height: 96px; }
    .site-header.header--fixed { top: 0; }    
    .site-header .container { padding: 0 30px; }
    .site-logo, .site-logo a { width: 92.083px; height: 40.286px; }
    .site-header .btn--search, .site-header .btn--menu { width: 44px; height: 44px; font-size: 14px; }
    .site-nav-lang { opacity: 0; visibility: hidden; position: absolute; top: 74px; left: -30px; padding: 0 30px; width: 100vw; background: transparent; backdrop-filter: unset; }
    .site-nav-lang > ul > li > a { display: none; }
    .site-nav-lang > ul > li > ul { display: flex; gap: 20px; justify-content: space-between; margin: 0; background: transparent; }
    .site-nav-lang > ul > li > ul > li.active,
    .site-nav-lang > ul > li > ul > li > a .lang-name { display: block; } 
    .site-nav-lang > ul > li > ul > li > a .lang-code { display: none; }
    .site-nav-lang > ul > li > ul > li > a { opacity: .5; padding: 6px 15px; height: 32px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; background: transparent; border-radius: 100px; border: 1px solid var(--white-color) !important; }
    .site-nav-lang > ul > li > ul > li.active > a { opacity: 1; }
    
    .site-nav-primary { overflow: auto; flex-direction: column; padding: 156px 30px 100px; }
    .site-nav--menu { width: 100%; }
    .site-nav--menu > ul { gap: 35.5px; flex-direction: column; }
    .site-nav--contact { margin-top: 50px; padding: 35px 0 0; width: 100%; border-left: none; border-top: 1px solid rgba(255, 255, 255, .2); }
    .site-nav--contact .btn { width: 100%; height: 50px; }

    .site-header .site-nav-social { margin-top: 40px; }
    .site-nav-social ul { gap: 9.51px; justify-content: center; }
    .site-nav-social .btn-icon { width: 44px; height: 44px; }
    
    .menu-open .site-nav-lang { opacity: 1; visibility: visible; }        
    
    /* Pages */
    .block--title { line-height: 1.25em; }    
    .site-page > p.has-text-align-center,    
    .site-page > div > p.has-text-align-center { padding: 0 30px; }        

    /* Sliders */
    .swiper { --swiper-pagination-bullet-horizontal-gap: 5px; }
    .swiper .swiper-button-prev,
    .swiper .swiper-button-next { margin-top: -15px; width: 30px; height: 30px; }
    .swiper-navigation { right: auto; left: 50%; transform: translateX(-50%); }

    /* Footer */
    .site-footer { padding-top: 50px; }    
    .site-footer .site-logo { margin-left: -100px; }
    .site-footer .site-logo,
    .site-footer .site-logo a { width: 135.08px; height: 59.094px; }
    .site-footer .site-slogan { position: absolute; left: 148.08px; width: 96.615px; height: 28.949px; }
    .site-footer .footer--main { position: relative; display: flex; margin-bottom: 18.51px; justify-content: center; }
    .site-footer .footer--main p { display: none; }
    .site-footer .footer--columns { flex-direction: column; }    
    .site-footer .footer--column:first-child { max-width: none; }
    .site-footer .footer--column .btn-primary { width: 100%; margin-bottom: 30px; }
    .site-footer .footer--title { font-size: 9px; letter-spacing: 2.16px; }    
    .site-footer .site-nav-secondary ul { flex-direction: column; }    
    .site-footer .site-nav-secondary > ul > li { width: 100%; }

    .site-footer .site-nav-social { position: relative; bottom: 0; right: 0; margin-top: 19.41px; }
    .site-footer .site-nav-social ul { gap: 9.51px; justify-content: center; flex-wrap: wrap; }
    .site-footer .site-nav-social ul li a i { font-size: 15px; }
    .site-footer .site-nav-social .btn-icon { position: relative; width: 44px; height: 44px; }    

    .site-footer .footer--bar { margin-top: 27.62px; padding: 0 0 43.2px; font-size: 11px; border: none; }
    .site-footer .footer--bar .container { flex-direction: column; align-items: center; justify-content: center; }
    .site-footer .footer--bar p { line-height: 19px; text-align: center; }
    .site-footer .footer--bar p:last-child { margin-top: 25px; }
}


/**
 * COMPONENTES
 **/

/* HEADING */
.block--page-heading { padding: 180px 0 160px; }
.block--page-heading .container { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.block--page-heading .container > * { position: relative; z-index: 2; }
.block--page-heading .block--headline { margin-bottom: 10px; color: var(--white-floral-color);  font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; text-align: center; text-transform: none; border: none; }
.block--page-heading .block--title { max-width: 1380px; color: var(--white-color); text-align: center; font-family: "Open Sans"; font-size: 50px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.5px; }
.block--page-heading .block--subtitle { margin-top: 8.86px; max-width: 540px; color: var(--white-floral-color); text-align: center; font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--page-heading p { margin-top: 7px; padding: 0 20px; max-width: 900px; color: var(--primary-color); text-align: center; font-size: 20px; font-weight: 500; line-height: 27px; }
.block--page-heading .btn-group { margin-top: 20px; }
.block--page-heading .btn.btn-primary { position: relative; height: 70px; background: rgba(255, 255, 255, 0.20); backdrop-filter: blur(7.800000190734863px); }
.block--page-heading .btn.btn-primary:hover { color: var(--white-color); background: rgba(255, 255, 255, 0.10); }
.block--page-heading .btn.btn-primary::before { content: "\e900"; display: flex; align-items: center; justify-content: center; color: var(--white-color); font-family: 'finger-icons' !important; font-size: 12px; width: 55.553px; height: 35.789px; background: var(--primary-color); border-radius: 100px; transition: .4s; }
.block--page-heading .btn.btn-primary:hover::before { color: var(--primary-color); background: var(--white-color); }
.block--page-heading .block--image { position: absolute; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; }
.block--page-heading .block--image::after { content: " "; opacity: 0.7; position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; background: var(--background2-color); }
.block--page-heading .block--image img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; }
@media screen and (max-width: 991px) {
    .block--page-heading { padding: 20px 0 100px; }    
    .block--page-heading .block--title { font-size: 38px; line-height: 46px; }    
    .block--page-heading .btn-group { flex-direction: column; align-items: center; justify-content: center; }
}

/* BREADCRUMB */
.block--breadcrumb { display: flex; align-items: center; justify-content: center; margin: 0 0 137px; padding: 0; width: 100%; background: var(--primary-light-color); }
.block--breadcrumb .breadcrumb { list-style: none; display: flex; align-items: center; }
.block--breadcrumb .breadcrumb li,
.block--breadcrumb .breadcrumb li a,
.block--breadcrumb .breadcrumb .item-current { display: flex; align-items: center; height: 32px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; }
.block--breadcrumb .breadcrumb li a,
.block--breadcrumb .breadcrumb .item-current span { display: block; max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.block--breadcrumb .breadcrumb .icon-home { display: inline-block; margin-right: 5.86px; font-size: 14px; }
.block--breadcrumb .breadcrumb .item { padding-left: 8px; background: rgba(255, 255, 255, 0.20); backdrop-filter: blur(2px); }
.block--breadcrumb .breadcrumb .item::before { content: " "; opacity: .5; position: absolute; top: 0; left: -16px; width: 32px; height: 32px; background: transparent url(../images/breadcrumb-left.svg) left center no-repeat; }
.block--breadcrumb .breadcrumb .item::after { content: " "; opacity: .5; position: absolute; top: 0; right: -16px; width: 16px; height: 32px; background: transparent url(../images/breadcrumb-right.svg) right center no-repeat; }
.block--breadcrumb .breadcrumb li:first-child { padding-left: 14.65px; background: rgba(255, 255, 255, 0.40); border-radius: 6px 0 0 6px; backdrop-filter: blur(2px); }
.block--breadcrumb .breadcrumb li:first-child::before { display: none; }
.block--breadcrumb .breadcrumb li:first-child::after { opacity: 1; }
.block--breadcrumb .breadcrumb li:last-child { padding-right: 14.65px; border-radius: 0 6px 6px 0; }
.block--breadcrumb .breadcrumb li:last-child::after { display: none; }
.block--breadcrumb .breadcrumb .seperator { width: 25px; }
@media screen and (max-width: 991px) {
    .block--breadcrumb { margin: 100px 0 30px; }
    .block--breadcrumb .breadcrumb li a,
    .block--breadcrumb .breadcrumb .item-current span { max-width: 100px; }
}
/* BUTTONS */
.block--buttons { display: flex; gap: 20px; }
.block--buttons.center { justify-content: center; }
.block--buttons.right { justify-content: flex-end; }

/* CONTAINER */
.block--container { padding: 70px 90px 110px; }
.block--container:has( + .block ) { padding-bottom: 0; } 
.block--container.container-expand { padding: 100px 90px; }
.block--container.container-expand .block--content { overflow: hidden; max-height: 360px;  transition: max-height 0.4s ease-in-out; }
.block--container.container-expand .block--content::after { content: " "; position: absolute; width: 100%; height: 220px; left: 0; bottom: 0; background: linear-gradient(180deg, rgba(37, 36, 34, 0) 0%, var(--background-color) 89.91%); }
.block--container.container-expand .label-collapse { display: none; }
.block--container.container-expand.is-expanded .block--content { max-height: none; }
.block--container.container-expand.is-expanded .block--content::after { opacity: 0; visibility: hidden; }
.block--container.container-expand.is-expanded .expand-toggle { margin-top: 30px; }
.block--container.container-expand.is-expanded .label-expand { display: none; }
.block--container.container-expand.is-expanded .label-collapse { display: inline; }
.block--container.container-expand.is-expanded .icon-caret { display: inline-block; transform: rotate(180deg); }
.block--container.light { background: var(--white-color); }
.block--container.light .block--content,
.block--container.light .block--content p,
.block--container.light .block--content ul,
.block--container.light .block--content ul li,
.block--container.light .block--content .btn-secondary,
.block--container.light .block--content .wp-block-heading { color: var(--text-color); }
.block--container.light.container-expand .block--content::after { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white-color) 89.91%); }
@media screen and (max-width: 991px) {
    .block--container,
    .block--container.container-expand { padding: 70px 30px; }
    .block--container .container { padding: 0; }
}

/* IMAGE COLUMN */
.block--imagecolumn { display: flex; align-items: center; justify-content: center; }
.block--imagecolumn .block--content { width: 50%; padding: 0 90px; font-family: "Open Sans"; }
.block--imagecolumn .wp-block-heading { position: relative; margin: 0 0 26px; color: var(--white-color); font-size: 40px; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--imagecolumn .block--headline + .block--title { margin-top: 20px; }
.block--imagecolumn .block--content p { margin: 0; color: var(--white-floral-color); font-size: 25px; font-weight: 400; line-height: 37px; letter-spacing: -0.75px; }
.block--imagecolumn .block--content .btn { margin-top: 29px; }
.block--imagecolumn .block--image { width: 50%; }
.block--imagecolumn .block--image img { display: block; width: 100%; height: 100%; max-width: 100%; min-height: 640px; object-fit: cover; }
.block--imagecolumn.content-reverse { flex-direction: row-reverse; }
.block--imagecolumn.compact .block--content p { margin-bottom: 20px; font-family: "Source Serif 4"; font-size: 16px; font-style: normal; font-weight: 326; line-height: 26px; letter-spacing: normal; }
.block--imagecolumn.compact .block--content p strong { font-family: "Open Sans"; font-weight: 500; line-height: 30px; letter-spacing: -0.51px; }
.block--imagecolumn.compact .block--content p.has-medium-font-size,
.block--imagecolumn.compact .block--content p.has-medium-font-size * { margin-bottom: 10px; font-family: "Open Sans"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: -0.51px; }
.block--imagecolumn.title-mark .wp-block-heading { width: fit-content; }
.block--imagecolumn.title-mark .wp-block-heading::after { content: "\e919"; position: absolute; right: -12px; bottom: -10px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--imagecolumn.margin { padding: 50px 0; }
.block--imagecolumn.light { background: var(--white-color); }
.block--imagecolumn.light .wp-block-heading,
.block--imagecolumn.light .block--content p { color: var(--text-color); }
.block--imagecolumn.light .btn { color: var(--text-color); }
.block--imagecolumn.light .block--content,
.block--imagecolumn.light .block--content p,
.block--imagecolumn.light .block--content ul,
.block--imagecolumn.light .block--content ul li,
.block--imagecolumn.light .block--content .btn-secondary,
.block--imagecolumn.light .block--content .wp-block-heading { color: var(--text-color); }
@media screen and (max-width: 991px) {
    .block--imagecolumn { flex-direction: column-reverse; }
    .block--imagecolumn.content-reverse { flex-direction: column; }
    .block--imagecolumn .block--content { padding: 65px 30px 70px; }
    .block--imagecolumn .wp-block-heading { margin-bottom: 17px; font-size: 30px; letter-spacing: -0.9px; }
    .block--imagecolumn .block--content p { font-size: 16px; line-height: 24px; letter-spacing: -0.48px; }
    .block--imagecolumn .block--content,
    .block--imagecolumn .block--image { width: 100%; }
    .block--imagecolumn .block--image img { aspect-ratio: 1 / 1; min-height: auto; object-fit: cover; }
}

/* IMAGE FULL */
.block--imagefull .block--content { position: absolute; z-index: 2; top: 0; left: 0; display: flex; gap: 27px; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; }
.block--imagefull .block--content .wp-block-heading { margin: 0; color: var(--white-floral-color); text-align: center; font-family: 'Ephesis'; font-size: 80px; font-style: normal; font-weight: 400; line-height: 59px; }
.block--imagefull .block--content p { margin: 0; max-width: 590px; color: var(--white-floral-color); text-align: center; font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 400; line-height: 37px; letter-spacing: -0.75px; }
.block--imagefull .block--content p + p { margin-top: 1em; }
.block--imagefull .block--image img { display: block; width: 100%; max-height: 790px; object-fit: cover; aspect-ratio: 1920.00/1090.10; }
.block--imagefull.overlay .block--image::before { content: " "; opacity: 0.4; position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.4; background: linear-gradient(0deg, #252422 0%, #252422 100%); }
@media screen and (max-width: 991px) {
    .block--imagefull .block--content { gap: 20px; padding: 0 30px; }
    .block--imagefull .block--content .wp-block-heading { font-size: 55px; }
    .block--imagefull .block--content p { font-size: 17px; line-height: 28px; letter-spacing: -0.51px; }
    .block--imagefull .block--image img { height: 609.48px; aspect-ratio: 1073.48/609.48; }
}

/* VÍDEO */
.block--video { position: relative; }
.block--video > a { position: absolute; z-index: 3; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white-color); font-weight: 500; line-height: 19px; }
.block--video img { opacity: .3; display: block; width: 100%; max-height: 590px; object-fit: cover; aspect-ratio: 1920.00/1090.10; }
.block--video .block--title { flex-direction: column; margin-bottom: 27px; color: var(--white-floral-color); text-align: center; font-family: 'Ephesis'; font-size: 80px; font-style: normal; font-weight: 400; line-height: 59px; }
.block--video .block--text { display: flex; margin: 0 auto; max-width: 590px; text-align: center; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 400; line-height: 37px; letter-spacing: -0.75px; }
.block--video .btn { margin-top: 27px; padding: 18px 35px; }
.block--video::before { content: " "; position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 100%; background: var(--background-color); mix-blend-mode: lighten; }
@media screen and (max-width: 991px) {    
    .block--video .block--title { font-size: 55px; }
    .block--video .block--text { font-size: 17px; line-height: 28px; letter-spacing: -0.51px; }
    .block--video img { height: 609.48px; aspect-ratio: 1073.48/609.48; }
}

/* HERO */
.block--hero { display: none; display: flex; align-items: center; justify-content: center; height: var(--vh); min-height: 600px; background: var(--secondary-color); } /* max-height: 860px; */
.block--hero::before { content: " "; opacity: 0.5; position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 100%; background: var(--background2-color); }
.block--hero .container { display: flex; align-items: center; justify-content: center; }
.block--hero .block--title { max-width: 500px; color: var(--white-color); text-align: center; font-family: "Source Serif 4"; font-size: 40px; font-style: italic; font-weight: 400; line-height: 46px; }
.block--hero .block--content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 860px; height: 100%; text-align: center; }
.block--hero .block--content p { opacity: 1; margin-top: 20px; max-width: 485px; font-size: 19px; font-weight: 500; line-height: 31px; color: var(--white-color); }
.block--hero .block--content .btn-group { margin-top: 40px; }
.block--hero .block--content .btn.btn-primary { position: relative; height: 70px; background: rgba(255, 255, 255, 0.20); backdrop-filter: blur(7.800000190734863px); }
.block--hero .block--content .btn.btn-primary:hover { color: var(--white-color); background: rgba(255, 255, 255, 0.10); }
.block--hero .block--content .btn.btn-primary::before { content: "\e900"; display: flex; align-items: center; justify-content: center; color: var(--white-color); font-family: 'finger-icons' !important; font-size: 12px; width: 55.553px; height: 35.789px; background: var(--primary-color); border-radius: 100px; transition: .4s; }
.block--hero .block--content .btn.btn-primary:hover::before { color: var(--primary-color); background: var(--white-color); }
.block--hero .hero-image { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; }
.block--hero .hero-image img { position: absolute; display: block; width: 100%; height: 100%; object-fit: cover; }
.block--hero .hero-video { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%;  }
.block--hero .hero-video video { width: 100%; height: 100%; object-fit: cover; }
@media screen and (max-width: 991px) {
    .block--hero { padding: 0; min-height: auto; }
    .block--hero .container,
    .block--hero.hero-reverse .container { flex-direction: column; align-items: center; }
    .block--hero .block--title { padding: 0 35px; font-size: 32px; line-height: 36px; }
    .block--hero .block--content { flex: none; padding: 0; text-align: center; }
    .block--hero .block--content p { max-width: none; font-size: 14px; line-height: 23px; }    
    .block--hero .block--content .btn-group { flex-direction: column; align-items: center; margin-top: 25px; }    
}

/* CTA */
.block--cta { margin: 0; background: var(--white-floral-color); }
.block--cta .container { padding: 106.55px 0; }
.block--cta .block--content { display: flex; flex-direction: column; align-items: center; margin: 0 auto; width: 100%; max-width: 675px; text-align: center; }
.block--cta .block--content .wp-block-heading { margin: 0 0 21px; color: var(--text-color); text-align: center; font-family: "Source Serif 4"; font-size: 25px; font-style: normal; font-weight: 326; line-height: 41px; }
.block--cta .block--content .wp-block-heading strong { font-weight: 700; }
.block--cta .block--content p { color: var(--text-color); font-size: 17px; font-weight: 326; line-height: 29px; }
.block--cta .block--content .btn { color: var(--text-color); margin-top: 21px; }
.block--cta .block--content .wp-block-heading + .btn { margin-top: 0; }
@media screen and (max-width: 991px) {
    .block--cta .container { padding: 134.11px 30px; }
    .block--cta .block--content .wp-block-heading { padding: 0 50px; font-size: 22px; line-height: 34px; }
}

/* INFO */
.block--info { padding: 100px 0 95px; }
.block--info .container { position: relative; max-width: 1175px; }
.block--info .block--title { text-align: center; margin-bottom: 45px; }
.block--info .info--item { position: relative; margin: 0 auto; width: fit-content; }
.block--info .info--title { color: var(--white-floral-color); text-align: center; font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--info p { margin-top: 9px; color: var(--white-floral-color); text-align: center; font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 18px; letter-spacing: 2.4px; text-transform: uppercase; }
.block--info .swiper { --swiper-pagination-bottom: 0; overflow: visible; }
.block--info .swiper:has(.swiper-pagination) { padding-bottom: 80px; }
@media screen and (max-width: 991px) {
    .block--info { padding: 70px 0; }
    .block--info .container { max-width: none; }
    .block--info .swiper:has(.swiper-pagination) { padding-bottom: 30px; }
    .block--info .swiper .swiper-slide { width: 231.609px; }
    .block--info .info--item { padding: 25px 0; width: 100%; background: rgba(217, 217, 217, .1); border-radius: 12px; }
    .block--info .info--title { font-size: 30px; letter-spacing: -0.9px; }
}

/* COLUMNS */
.block--columns .wp-block-columns { gap: 0; width: 100%; }
.block--columns .wp-block-columns .wp-block-column { flex: 0 0 36.20%; margin: 100px 0; padding: 0 90px 0 65px; width: 100%; max-width: 36.20%; }
.block--columns .wp-block-columns .wp-block-column:first-child { flex: 0 0 63.80%; padding-left: 65px; padding-right: 90px; width: 100%; max-width: 63.80%; border-right: 1px solid var(--text-color); }
.block--columns .wp-block-columns .wp-block-column p:last-of-type { margin-bottom: 0; }
.block--columns .wp-block-heading { margin-bottom: 28px; font-weight: 700; letter-spacing: -0.75px; }
@media screen and (max-width: 991px) {
    .block--columns .wp-block-columns  { gap: 72px; margin: 70px 0; }
    .block--columns .wp-block-columns .wp-block-column,
    .block--columns .wp-block-columns .wp-block-column:first-child { flex: auto; margin: 0; padding: 0 30px; max-width: none; border: none; }
    .block--columns .block--tabs { margin: 0; padding: 0; }
}

/* SLIDES */
.block--slides { padding: 88px 0 100px; }
.block--slides .block--heading { padding: 0 90px; }
.block--slides .block--title { position: relative; width: fit-content; color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; text-align: left; }
.block--slides .block--title::after { content: "\e919"; position: absolute; right: -14px; bottom: -10px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--slides .block--description { margin-top: 12px; color: var(--white-color); font-family: "Source Serif 4"; font-size: 23px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--slides .block--content { margin-top: 75px; }
.block--slides .slides-slider { overflow: visible; padding: 0 90px; }
.block--slides .slides-slider:has(.swiper-pagination) { padding-bottom: 90px; }
.block--slides .swiper-pagination { bottom: 0; }
.block--slides .swiper-button-next,
.block--slides .swiper-button-prev { left: auto; bottom: auto; top: -90px; right: 90px; background: transparent; }
.block--slides .swiper-button-prev { right: 130px; }
.block--slides .slide--item img { width: 100%; aspect-ratio: 500 / 291.5; object-fit: cover; }
.block--slides .slide--item .btn { margin-top: 26px; }
.block--slides .slide--item .slide-title { margin-top: 22px; display: block; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.block--slides .slide--item .slide-description { margin-top: 11px; display: block; color: var(--white-floral-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--slides .block--footer { display: flex; align-items: center; justify-content: center; margin-top: 68px; }
@media screen and (max-width: 991px) {
    .block--slides .block--heading { padding: 0; }
    .block--slides .block--title { font-size: 30px; letter-spacing: -0.9px; }
    .block--slides .block--description { margin-top: 21px; font-size: 18px; }
    .block--slides .block--content { margin-top: 33px; }
    .block--slides .slides-slider { padding: 0 30px; margin-left: -30px; width: calc( 100% + 60px ); }
    .block--slides .swiper-button-next,
    .block--slides .swiper-button-prev { top: -125px; right: 30px; }
    .block--slides .swiper-button-prev { right: 80px; }
    .block--slides .slide--item .slide-title { margin-top: 30px; font-size: 22px; letter-spacing: -0.66px; }
    .block--slides .slide--item .slide-description { font-size: 16px; }
}

/* TABS */
.block--tabs { padding: 3px 0 35px; }
.block--tabs .block--title { color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; text-align: left; }
.block--tabs .tabs-container { margin-top: 38px; }
.block--tabs .tabs-tabs { display: none; gap: 20px; margin-bottom: 18.5px; }
.block--tabs .tabs--tab { opacity: 0.7; cursor: pointer; transition: all 0.2s ease-in-out; }
.block--tabs .tabs--tab.is-active { opacity: 1; }
.block--tabs .tabs--tab-label { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; padding: 0 15px; width: fit-content; height: 32px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; border: 1px solid var(--white-color); border-radius: 16px; }
.block--tabs .tabs--content { margin-bottom: 18.5px; }
.block--tabs .tabs--content:last-child { margin: 0; }
@media screen and (max-width: 991px) {
    .block--tabs { margin: 62px 0 70px; padding: 0; }
    .block--tabs .container { padding: 0; }
    .block--tabs .tabs-tabs { display: flex; }
    .block--tabs .tabs-contents .tabs--tab-label { display: none; }
    .block--tabs .tabs--content { display: none; }
    .block--tabs .tabs--content.is-visible { display: block; }
}


/* TIMELINE */
.block--timeline .container { padding: 0; }
.block--timeline .block--title { position: relative; margin: 100px auto 30px; width: fit-content; color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--timeline .block--title::after { content: "\e919"; position: absolute; right: -14px; bottom: -10px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--timeline .timeline-container { position: relative; }
.block--timeline .timeline-slider { position: relative; z-index: 1; }
.block--timeline .timeline-slider::before,
.block--timeline .timeline-slider::after { content: " "; position: absolute; z-index: 9; left: 0; top: 0; width: 175px; height: 60px; background: linear-gradient(0deg, rgba(37, 36, 34, 0) 0%, var(--background-color) 89.91%); }
.block--timeline .timeline-slider::after { top: auto; bottom: 0; width: 50%; transform: rotate(180deg); }
.block--timeline .swiper-slide { height: auto; }
.block--timeline .timeline--slide { display: flex; margin: 0 auto; width: 100%; height: 100%; }
.block--timeline .timeline--content { display: flex; flex-direction: column; justify-content: center; padding: 0 56px 0 240px; width: 50%; }
.block--timeline .timeline--content .timeline--label { display: none; }
.block--timeline .timeline--content p { margin-top: 20px; color: var(--white-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--timeline .timeline--content p.timeline--title { color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--timeline .timeline--content p.timeline--subtitle { margin-top: 40px; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.block--timeline .timeline--content .timeline--text { position: relative; display: block; overflow: hidden; overflow-y: auto; width: 100%; max-height: 340px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.block--timeline .timeline--content .timeline--text::-webkit-scrollbar { display: none; }
.block--timeline .timeline--content .btn { margin-top: 10px; }
.block--timeline .timeline--image { width: 50%; }
.block--timeline .timeline--image img { display: block; width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.block--timeline .swiper-pagination-numbers { position: absolute; z-index: 2; left: 0; top: 0; display: flex; flex-direction: column; overflow-x: hidden; overflow-y: auto; padding: 60px 0; max-width: 100%; max-height: 100%; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.block--timeline .swiper-pagination-numbers::-webkit-scrollbar { display: none; }
.block--timeline .swiper-pagination-numbers .swiper-pagination-bullet { cursor: pointer; position: relative; display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; margin: 8px 0; padding-left: 68px; width: 175px; height: 45px; color: var(--white-floral-color); text-align: center; font-family: "Source Serif 4"; font-size: 25px; font-style: normal; font-weight: 326; line-height: 41px; background: transparent; transition: all 0.2s ease; transform: none; }
.block--timeline .swiper-pagination-numbers .swiper-pagination-bullet::after { content: " "; position: absolute; top: 50%; left: 0; display: none; width: 68px; height: 2px; background: var(--primary-color); }
.block--timeline .swiper-pagination-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active { color: var(--primary-color); font-size: 37px; }
.block--timeline .swiper-pagination-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active::after { display: block; }
@media screen and (max-width: 991px) {    
    .block--timeline { padding: 70px 0; }
    .block--timeline .container { padding: 0 30px; }
    .block--timeline .timeline-slider { margin-top: 0; padding: 75px 0 0; }
    .block--timeline .timeline-slider::before,
    .block--timeline .timeline-slider::after { bottom: auto; left: -10px; top: 0; width: 70px; transform: rotate(-90deg); }
    .block--timeline .timeline-slider::after { left: auto; right: -10px; transform: rotate(90deg); }
    .block--timeline .swiper-slide { height: 100% }
    .block--timeline .timeline--slide { gap: 30px; flex-direction: column-reverse; padding: 0; max-width: 100%;; }    
    .block--timeline .timeline--content .timeline--text { max-height: none; }
    .block--timeline .timeline--content p.timeline--title { font-size: 30px; line-height: 1m; letter-spacing: -0.9px; }
    .block--timeline .timeline--content p.timeline--subtitle { margin-top: 14px; }
    .block--timeline .timeline--content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 0; }
    .block--timeline .timeline--content p { margin-top: 0; }
    .block--timeline .timeline--content,
    .block--timeline .timeline--image { width: 100%; }
    .block--timeline .timeline--image img { min-height: auto; }
    .block--timeline .swiper-pagination-numbers { position: absolute; top: 0; left: auto; right: auto; bottom: auto; flex-direction: row; overflow-x: auto; overflow-y: hidden; padding: 0 30px; text-align: center; }
    .block--timeline .swiper-pagination-numbers .swiper-pagination-bullet { padding: 0 10px; width: auto; }
    .block--timeline .swiper-pagination-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active::after { display: none; }
}

/* ACCORDION */
.block--accordion { margin: 70px 0; padding: 0 90px; }
.block--accordion .container { display: flex; gap: 67px; align-items: flex-start; justify-content: center; }
.block--accordion .accordion--content { display: block; width: 100%; }
.block--accordion .accordion--tab { padding: 0 0 20px; }
.block--accordion .accordion--tab p:last-child { margin-bottom: 0; }
.block--accordion .accordion--tab .accordion--tab-title { cursor: pointer; position: relative; display: flex; align-items: center; padding-bottom: 20px; padding-right: 40px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 17px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: -0.51px; transition: .3s; border-bottom: 1px solid rgba(255, 255, 255, 0.20); }
.block--accordion .accordion--tab .accordion--tab-title img { margin-right: 12px; }
.block--accordion .accordion--tab .accordion--tab-title i { position: absolute; left: 12px; top: 50%; display: inline-flex; margin-top: -10px; color: var(--primary-color); }
.block--accordion .accordion--tab .accordion--tab-title::after { content: "\e904"; position: absolute; top: -1px; right: 20px; font-family: 'finger-icons' !important; font-size: 10px; color: var(--primary-color); transition: .4s; }
.block--accordion .accordion--tab .accordion--tab-title span { color: var(--primary-color); }
.block--accordion .accordion--tab .accordion--tab-content { display: none; }
.block--accordion .accordion--tab .accordion--tab-content p { opacity: .8; color: var(--white-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--accordion .accordion--tab.open .accordion--tab-title { margin-bottom: 18px; }
.block--accordion .accordion--tab.open .accordion--tab-content { display: block; }
.block--accordion .accordion--tab.open .accordion--tab-title::after { transform: rotate(180deg); }
.block--content .block--accordion { margin: 13px 0 0; padding: 0; }
.light .block--accordion { background: var(--white-color); }
.light .block--accordion .accordion--tab .accordion--tab-title,
.light .block--accordion .accordion--tab .accordion--tab-content p { color: var(--text-color); }
.light .block--accordion .accordion--tab .accordion--tab-title { border-color: rgb(64, 61, 57, .2); }
@media screen and (max-width: 991px) {
    .block--accordion { margin: 30px 0; padding: 0 30px; }    
    .block--accordion .container { padding: 0; }
    .block--accordion .accordion--tab .accordion--tab-title { line-height: 24px; }
}

/* GALLERY */

.block--gallery { padding: 100px 90px; }
.block--gallery .block--heading { display: flex; align-items: center; justify-content: center; }
.block--gallery .block--title { color: var(--white-color); font-family: "Source Serif 4"; font-size: 33px; font-style: normal; font-weight: 326; line-height: 29px; letter-spacing: normal; }
.block--gallery .block--title strong { font-weight: 700; }
.block--gallery .block--footer { display: flex; align-items: center; justify-content: center; padding-top: 70px; }
.block--gallery .cards--container { display: flex; flex-wrap: wrap; gap: 60px; margin-top: 60px; }
.block--gallery .cards--container .card--item { overflow: hidden; position: relative; width: calc( 33.33% - 40px); transition: .4s; }
.block--gallery .cards--container .card--item > a { display: block; width: 100%; height: 100%; text-decoration: none; }
.block--gallery .cards--container .card--item img { position: relative; display: block; width: 100%; height: auto; min-height: 200px; max-height: 315px; object-fit: cover; aspect-ratio: 540 / 315; transition: .4s ease-in-out; }
.block--gallery .cards--container .card--image { overflow: hidden; position: relative; display: block; }
.block--gallery .cards--container .card--image::before { content: " "; position: absolute; z-index: 1; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(359.06deg, #252422 -3.27%, rgba(37, 36, 34, 0) 78.33%); transition: .4s; }
.block--gallery .cards--container .card--legend { overflow: hidden; transition: .4s; position: absolute; z-index: 2; left: 0; bottom: 0; padding: 30px; width: 100%; line-height: 1em; }
.block--gallery .cards--container .card--legend span { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 12px; font-weight: 700; line-height: 21px; letter-spacing: -0.56px; transition: .4s; }
.block--gallery .cards--container .card--body { display: flex; flex-direction: column; padding: 18px 15px 50px; min-height: 152px; }
.block--gallery .cards--container .card--icon { position: absolute; z-index: 3; right: 30px; bottom: 30px; font-size: 12px; color: var(--white-color); line-height: 1em; transition: .4s cubic-bezier(0.19, 1, 0.22, 1); }
.block--gallery .cards--container .card--item:hover img { transform: scale(1.05); }
.block--gallery .cards--container .card--item:hover .card--image::before { height: 100%; }
.block--gallery .cards--container .card--item:hover .card--icon { transform: rotate(180deg); }
.block--gallery .cards--container .card--item:hover .card--legend { height: auto; }
.block--gallery .cards--container .card--item:hover .card--legend span { font-size: 13.46px; line-height: 23.55px; }
.block--gallery.gallery-grid-2 .cards--container .card--item { width: calc(50% - 15px); }
.block--gallery.gallery-grid-2 .cards--container .card--item img { height: 360px; }
.block--gallery.gallery-grid-4 .cards--container .card--item { width: calc(25% - 23px); }
.block--gallery.gallery-grid-4 .cards--container .card--item img { height: 195px; }
@media screen and (max-width: 991px) {
    .block--gallery { padding: 70px 30px; }
    .block--gallery .cards--container { gap: 27.48px; flex-direction: column; }
    .block--gallery .cards--container .card--item { width: 100%; }
    .block--gallery .block--footer { padding-top: 30px; }
}

/* CAROUSEL */
.block--carousel { padding: 100px 0; }
.block--carousel .block--title { position: relative; margin: 0 auto; width: fit-content; color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--carousel .block--title::after { content: "\e919"; position: absolute; right: -14px; bottom: -10px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--carousel .block--description { margin-top: 12px; color: var(--white-color); font-family: "Source Serif 4"; font-size: 23px; font-style: normal; font-weight: 326; line-height: 29px; text-align: center; }
.block--carousel .block--content { margin-top: 25px; }
.block--carousel .swiper { --swiper-navigation-sides-offset: 23.5%; }
.block--carousel .carousel-slider:has(.swiper-pagination) { padding-bottom: 90px; }
.block--carousel .swiper .swiper-button-prev,
.block--carousel .swiper .swiper-button-next { top: 14vw; }
.block--carousel .swiper-pagination { bottom: 0; }
.block--carousel .slide--item img { margin-top: -25px; width: 100%; aspect-ratio: 845.83/493.75; object-fit: cover; transition: .4s; }
.block--carousel .slide--item .btn { display: flex; margin: 16px auto 0; width: fit-content; }
.block--carousel .slide--item .slide-title { margin-top: 36px; display: block; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; text-align: center; }
.block--carousel .slide--item .slide-description { margin-top: 24px; padding: 0 16px; display: block; color: var(--white-floral-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; text-align: center; }
.block--carousel .slide--item .slide-title,
.block--carousel .slide--item .slide-description,
.block--carousel .slide--item .btn { opacity: 0; visibility: hidden; transition: .4s; }
.block--carousel .swiper-slide-active .slide--item  img { margin-top: 0; }
.block--carousel .swiper-slide-active .slide--item .slide-title,
.block--carousel .swiper-slide-active .slide--item .slide-description,
.block--carousel .swiper-slide-active .slide--item .btn { opacity: 1; visibility: visible; }
@media screen and (max-width: 991px) {
    .block--carousel .container { padding: 0; }
    .block--carousel .block--title { padding: 0 30px; font-size: 30px; letter-spacing: -0.9px; }
    .block--carousel .block--description { font-size: 18px; }
    .block--carousel .swiper { --swiper-navigation-sides-offset: 8px; }
    .block--carousel .swiper .swiper-button-prev,
    .block--carousel .swiper .swiper-button-next { top: 25vw; }
    .block--carousel .slide--item img { margin-top: -45px; aspect-ratio: 335.64/195.93; }           
    .block--carousel .slide--item .slide-title { margin-top: 30px; padding: 0; font-size: 22px; letter-spacing: -0.66px; text-align: left; }
    .block--carousel .slide--item .slide-description { margin-top: 30px; padding: 0; font-size: 16px; text-align: left; }
    .block--carousel .slide--item .btn { width: 100%; }
    .block--carousel .swiper-slide-active .slide--item  img { margin-top: 0; }    
}

/* MAP */

.block--map .block--title { position: relative; margin: 0 auto; width: fit-content; color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--map .block--title::after { content: "\e919"; position: absolute; right: -14px; bottom: -10px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--map .block--description { margin-top: 19px; color: var(--white-color); font-family: "Source Serif 4"; font-size: 23px; font-style: normal; font-weight: 326; line-height: 29px; text-align: center; }
.block--map .block--content { position: relative; margin-top: 50px; }
.block--map .block--content > .btn { position: absolute; z-index: 2; bottom: 50px; right: 50px; }
.block--map .block--content .map--container { position: relative; z-index: 1; color: var(--text-color); font-family: "Open Sans"; font-size: 16px; font-weight: 500; }
@media screen and (max-width: 991px) {
    .block--map .container { padding: 0; }
    .block--map .block--heading { padding: 0 30px; }
    .block--map .block--title { margin: 0; font-size: 30px; letter-spacing: -0.9px; }
    .block--map .block--description { font-size: 18px; text-align: left; }
    .block--map .block--content > .btn { left: 50%; right: auto; transform: translateX(-50%); }
}

/* IMAGEQUOTE */

.block--imagequote .swiper .swiper-pagination { bottom: 0; }
.block--imagequote .swiper .swiper-button-prev,
.block--imagequote .swiper .swiper-button-next { top: auto; left: auto; right: 100px; bottom: 38.17px; color: var(--white-color); font-size: 14px; background: rgba(255, 255, 255, 0.20); backdrop-filter: blur(7.800000190734863px); }
.block--imagequote .swiper .swiper-button-next { right: 40px; }
.block--imagequote .swiper-slide { height: auto; }
.block--imagequote .slide--item::before { content: " "; opacity: 0.3; position: absolute; z-index: 2; bottom: 0; left: 0; width: 100%; height: 200px; background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%); }
.block--imagequote .slide--image { position: relative; z-index: 1; }
.block--imagequote .slide--image img { display: block; width: 100%; height: 100%; min-height: 560px; max-height: 560px; object-fit: cover; }
.block--imagequote .slide--legend { position: absolute; z-index: 3; left: 40px; bottom: 48.17px; color: var(--white-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.39px; }
.block--imagequote .wp-block-heading { position: relative; margin-bottom: 20px; padding-top: 40px; line-height: 1.25em; }
.block--imagequote .wp-block-heading::before { content: "\e91a"; position: absolute; top: -15px; left: 0; font-family: 'finger-icons' !important; font-size: 20px; color: var(--primary-color); }
.block--imagequote .block--content p { margin-bottom: 1em; color: var(--text-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.block--imagequote .block--content .btn { margin-top: 0; margin-left: 6.18px; }
.block--imagequote .imagequote-legends { display: flex; gap: 75px; margin: 30px 0 47.3px; padding: 26px 6.18px 0; border-top: 1px solid rgb(64, 61, 57, .2); }
.block--imagequote .imagequote-legends dt { opacity: .5; padding-bottom: 2.78px; color: var(--text-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.52px; }
.block--imagequote .imagequote-legends dd { color: var(--text-color); font-family: "Open Sans"; font-size: 14px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.56px; }
@media screen and (max-width: 991px) {
    .block--imagequote.block--imagecolumn { flex-direction: column-reverse; }
    .block--imagequote .block--image { padding: 70px 30px 0; }
    .block--imagequote .swiper .swiper-button-prev,
    .block--imagequote .swiper .swiper-button-next { bottom: 10.69px; right: 52.55px; width: 30px; height: 30px; }
    .block--imagequote .swiper .swiper-button-next { right: 14.31px; }
    .block--imagequote .slide--image img { min-height: auto; aspect-ratio: 333.00/194.26; }
    .block--imagequote .slide--legend { left: 16px; bottom: 17.59px; }
    .block--imagequote .block--content { padding: 30px 30px 70px; }
    .block--imagequote .wp-block-heading { font-size: 22px; letter-spacing: -0.66px; }
    .block--imagequote .imagequote-legends { gap: 20px; flex-direction: column; margin: 30px 0; padding: 30px 1.85px 0; }
}

/* CONTACT */
.block--contact { padding: 100px 90px; }
.block--contact .block--content { display: flex; gap: 70px; align-items: flex-start; justify-content: space-between; }
.block--contact .block--title { margin-bottom: 22px; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.block--contact  p,
.block--contact  p a { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 700; line-height: 20px; letter-spacing: -0.39px; }
.block--contact  p + .contact-info--title { margin-top: 1.5em; }
.block--contact .contact-info--title { opacity: .5; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 9px; font-weight: 700; line-height: 35px; letter-spacing: 2.16px; text-transform: uppercase; }
.block--contact .contact-forms { flex: 1; width: 100%; max-width: 1330px; }
.block--contact .contat-forms--header { display: flex; margin-bottom: 26px; }
.block--contact .contat-forms--header ul { display: flex; gap: 50px; }
.block--contact .contat-forms--header ul li { position: relative; padding: 5px 0; }
.block--contact .contat-forms--header ul li,
.block--contact .contat-forms--header ul li a { display: flex; align-items: center; margin: 0; color: var(--white-color); font-family: "Open Sans"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.48px; }
.block--contact .contat-forms--header ul li::before { display: none; }
.block--contact .contat-forms--header ul li a[target="_blank"]::after { content: "\e91c"; display: inline-flex; margin-left: 9px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 12px; }
.block--contact .contat-forms--header .tabs-nav li { cursor: pointer; }
.block--contact .contat-forms--header .tabs-nav .active { color: var(--primary-color); }
.block--contact .contat-forms--header .tabs-nav .active::after { content: " "; position: absolute; left: 0; bottom: -6px; width: 100%; height: 6px; background: transparent url(../images/tab.svg) bottom center no-repeat; }
.block--contact .contat-forms--header .contat-forms--links { margin-left: 40px; padding-left: 40px; border-left: 1px solid rgba(255, 255, 255, .3); }
.block--contact .tabs-content > div { opacity: 0; visibility: hidden; position: absolute; width: 100%; transition: opacity 0.3s ease; }
.block--contact .tabs-content { position: relative; min-height: 150px; }
.block--contact .tabs-content > div.active { opacity: 1; visibility: visible; position: relative; }
@media screen and (max-width: 991px) {
    .block--contact { padding: 60px 30px 70px; }
    .block--contact .block--content { flex-direction: column-reverse;  }
    .block--contact .contat-forms--header { flex-direction: column-reverse; }
    .block--contact .contat-forms--header ul { gap: 30px; justify-content: center; }
    .block--contact .contat-forms--header .contat-forms--links { position: relative; gap: 0; padding: 0; margin: 0 0 30px; border-radius: 100px; background: var(--primary-color); }
    .block--contact .contat-forms--header .contat-forms--links::after { content: ""; position: absolute; top: 50%; left: 50%; width: 1px; height: 20px; background: var(--white-color); transform: translate(-50%,-50%); }
    .block--contact .contat-forms--header .contat-forms--links li { display: flex; align-items: center; justify-content: center; width: 50%; }
    .block--contact .contat-forms--header .contat-forms--links li a { padding: 10px 0; font-size: 13px; line-height: 20px; letter-spacing: -0.39px; }
    .block--contact .contat-forms--header .contat-forms--links li:last-child a { border: none; }
    .block--contact .contat-forms--header ul li a::after { display: none !important; }
}

/* STORES */
.block--stores { position: relative; z-index: 9; padding: 100px 0; }
.block--stores .block--title { margin: 0 auto; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; text-align: center; }
.block--stores .block--content { padding: 0 90px; }
.block--stores .stores--grid { display: flex; flex-wrap: wrap; gap: 60px; }
.block--stores .stores--grid .store--item { overflow: hidden; position: relative; width: calc( 33.33% - 40px); transition: .4s; }
.block--stores .stores--grid .store--item img { position: relative; display: block; width: 100%; height: auto; min-height: 200px; max-height: 315px; object-fit: cover; aspect-ratio: 540 / 315; transition: .4s ease-in-out; }
.block--stores .store--image { position: relative; }
.block--stores .store--location { overflow: hidden; display: block; width: fit-content; max-width: 100%; height: 32px; padding: 0 15px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 32px; letter-spacing: 2.4px; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; border: 1px solid var(--white-color); border-radius: 100px; }
.block--stores .store--title { display: block; margin: 20px 0 13px; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.block--stores .store--label { opacity: .5; display: block; margin: 20px 0 8px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 13px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.52px; }
.block--stores .store--link { position: relative; display: flex; padding: 0 0 8px; width: fit-content; border-bottom: 2px solid var(--primary-color); }
.block--stores .store--link::after { content: "\e91c"; display: inline-flex; align-items: center; margin-left: 9px; color: var(--primary-color); font-family: 'finger-icons' !important; font-size: 10px; }
.block--stores .store--content,
.block--stores .store--content a { color: var(--white-floral-color); font-family: "Open Sans"; font-size: 14px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.56px; }
.block--stores .stores--filter { display: flex; gap: 60px; align-items: flex-end; justify-content: center; padding: 40px 0 100px; }
.block--stores .stores--filter .store--label { margin: 0; color: var(--white-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: 2.4px; text-transform: uppercase; }
.block--stores .stores--filter label { position: relative; }
.block--stores .stores--filter select { padding: 10px 0 15px; width: 450px; }
.block--stores .stores--filter .btn { cursor: pointer; gap: 10px; padding: 0 35px; width: 210px; height: 50px; font-size: 13px; line-height: 20px; letter-spacing: -0.39px; }
.block--stores .stores--filter .btn i { font-size: 16px; }
.block--stores .customSelect { width: 100%; min-width: 265px; }
@media screen and (max-width: 991px) {
    .block--stores { padding: 70px 0; }
    .block--stores .block--title { padding: 0 30px; font-size: 22px; line-height: 1.25em; letter-spacing: -0.66px; text-align: left; }
    .block--stores .block--content { padding: 0 30px; }    
    .block--stores .stores--grid { gap: 70px; flex-direction: column; }
    .block--stores .stores--grid .store--item { width: 100%; }
    .block--stores .store--title { font-size: 22px; line-height: 1.25em; letter-spacing: -0.66px; }
    .block--stores .store--content,
    .block--stores .store--content a { line-height: 1.25em; }
    .block--stores .stores--filter { gap: 30px; flex-direction: column; padding: 30px 0 70px; }
    .block--stores .stores--filter label,
    .block--stores .stores--filter select,
    .block--stores .stores--filter .btn { width: 100%; }
}

/* POSTFEATURED */
.block--postsfeatured .block--imagecolumn .block--content p { color: var(--white-color);font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; letter-spacing: 0; }
.block--postsfeatured .postsfeatured-slider:has(.swiper-pagination) {  padding-bottom: 80px; }
.block--postsfeatured .postsfeatured-slider .swiper-pagination { bottom: 30px; }
.block--postsfeatured .block--content a:hover .btn-secondary::before { color: var(--primary-color); background: var(--white-color); }
@media screen and (max-width: 991px) {
    .block--postsfeatured .block--imagecolumn,
    .block--postsfeatured .block--imagecolumn.content-reverse { flex-direction: column-reverse; }
    .block--postsfeatured .swiper .swiper-button-prev,
    .block--postsfeatured .swiper .swiper-button-next { top: 180px; left: 10px; right: auto; }
    .block--postsfeatured .swiper .swiper-button-next { left: auto; right: 10px; }
}

/* POSTSLIST */
.block--postslist { padding: 100px 90px; }
.block--postslist .block--heading { display: flex; align-items: center; justify-content: center; }
.block--postslist .block--title { color: var(--white-color); font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -1.2px; }
.block--postslist .block--content { margin-top: 30px; }
.block--postslist .postslist--grid { display: flex; flex-wrap: wrap; gap: 60px; }
.block--postslist .postslist--grid .postslist--item { overflow: hidden; position: relative; width: calc( 33.33% - 40px); transition: .4s; }
.block--postslist .postslist--grid .postslist--item img { position: relative; display: block; width: 100%; height: auto; min-height: 200px; max-height: 315px; object-fit: cover; aspect-ratio: 540 / 315; transition: .4s ease-in-out; }
.block--postslist .postslist--grid .postslist--image { position: relative; }
.block--postslist .postslist--grid .postslist--badge { position: absolute; left: 14.67px; top: 14.67px; display: inline-flex; justify-content: center; align-items: center; height: 32px; padding: 6px 15px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; border: 1px solid var(--white-color); border-radius: 100px; }
.block--postslist .postslist--grid .postslist--title { display: block; margin: 20px 0; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.block--postslist .postslist--grid .postslist--excerpt { color: var(--white-floral-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }
.postslist--pagination { margin-top: 100px; text-align: center; }
.postslist--pagination .page-numbers { opacity: .5; display: inline-block; margin: 0 6px; padding: 8px 12px; color: var(--white-color); font-family: "Open Sans"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.48px; background: transparent; }
.postslist--pagination .page-numbers.prev,
.postslist--pagination .page-numbers.next { display: inline-flex; gap: 10px; align-items: center; margin: 0 60px; }
.postslist--pagination .page-numbers.prev,
.postslist--pagination .page-numbers.next,
.postslist--pagination .page-numbers.current,
.postslist--pagination .page-numbers:hover { opacity: 1; }
.postslist--pagination .icon-prev,
.postslist--pagination .icon-next { display: inline-flex; align-items: center; justify-content: center; color: var(--white-color); font-size: 12px; width: 55.553px; height: 35.789px; background: var(--primary-color); border-radius: 100px; }
@media screen and (max-width: 991px) {
    .block--postslist { padding: 60px 30px; }
    .block--postslist .block--title { font-size: 30px; letter-spacing: -0.9px; }
    .block--postslist .postslist--grid { flex-direction: column; }
    .block--postslist .postslist--grid .postslist--item { width: 100%; }
    .postslist--pagination { margin-top: 40px; }
    .postslist--pagination .page-numbers.prev,
    .postslist--pagination .page-numbers.next { justify-content: center; margin: 0 auto; width: 100%; }
}

/* POST */
.page--post { background: var(--white-color); }
.page--post .block--page-heading { min-height: 560px; }
.page--post .post--meta { display: flex; gap: 30px; align-items: center; justify-content: center; margin-top: -100px; }
.page--post:has(.post--image) .block--page-heading { min-height: 890px; }
.page--post:has(.post--image) .post--meta { margin-top: -340px; }
.page--post .post--meta p,
.page--post .post--meta a { margin: 0; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; }
.page--post .post--author { display: flex; align-items: center; justify-content: center; }
.page--post .btn-cat { display: inline-flex; align-items: center; justify-content: center; padding: 6px 15px; height: 32px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; background: transparent; border-radius: 100px; border: 1px solid var(--white-color); }
.page--post .post--image { display: flex; margin: 60px auto 100px; width: 100%; max-width: 1180px; }
.page--post .post--image img { display: block; width: 100%; height: auto; aspect-ratio: 1180/690; object-fit: cover; }
.page--post .block--content { position: relative; z-index: 9; padding: 0 90px 30px; }
.page--post .block--content .entry-content { color: var(--text-color); }
.page--post .block--content .entry-content h2,
.page--post .block--content .entry-content h3,
.page--post .block--content .entry-content h4,
.page--post .block--content .entry-content h5,
.page--post .block--content .entry-content h6 { font-family: "Open Sans"; font-size: 40px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.page--post .block--content .entry-content h2 { font-size: 25px; text-transform: none; }
.page--post .block--content .entry-content h3 { font-size: 20px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.6px; margin-bottom: 14px; }
.page--post .block--content .entry-content h4 { margin-bottom: 14px; font-size: 16px; font-style: normal; font-weight: 500; line-height: 1em; letter-spacing: -0.6px; }
.page--post .block--content .entry-content h5 { font-size: 14px; }
.page--post .block--content .entry-content h6 { font-size: 12px; }
.page--post .block--content .entry-content h4,
.page--post .block--content .entry-content h5,
.page--post .block--content .entry-content h6 { text-transform: none; }
.page--post .block--content .entry-content p + h2,
.page--post .block--content .entry-content p + h3,
.page--post .block--content .entry-content p + h4,
.page--post .block--content .entry-content p + h5,
.page--post .block--content .entry-content p + h6 { margin-top: 2em; }
.page--post .block--content .entry-content ul li { color: var(--text-color); }
.page--post .size-full { display: block; width: 100%; height: auto; }
.page--post p:has( > iframe) { overflow: hidden; position: relative; width: 100%; padding-bottom: 56.25%; height: 0; }
.page--post p:has( > iframe) iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.page--post .aligncenter,
.page--post .alignnone,
.page--post .size-large { display: block; margin: 0 auto; }
@media screen and (max-width: 991px) {
    .page--post .block--page-heading { padding-bottom: 30px; }
    .page--post .block--page-heading .block--title { font-size: 26px; line-height: 1.25em; letter-spacing: -0.78px; }
    .page--post:has(.post--image) .block--page-heading { min-height: auto; }
    .page--post .post--meta { gap: 7.5px; flex-direction: column; margin: 0; }    
    .page--post .post--categories { display: flex; gap: 6px; padding: 0 30px; flex-wrap: wrap; align-items: center; justify-content: center; }
    .page--post .block--content { display: flex; flex-direction: column; padding: 0 0 40px; }
    .page--post .block--content .post--image { order: 1; margin: 0; }
    .page--post .block--content .post--meta { order: 2; margin: 0; padding: 15px 0 60px; background: var(--background-color); }
    .page--post .block--content .entry-content { order: 3; padding: 40px 30px 0; }
    .page--post .wp-caption { width: 100% !important; }
    .block--share { margin: 0 30px; padding-top: 30px; }
}

/* SEARCH */
.page--search .search-results { position: relative; z-index: 2; margin-top: -150px; padding: 0 0 100px; }
.page--search .search-filters { display: flex; gap: 20px; align-items: center; justify-content: center; padding: 40px 0 200px; }
.page--search .search-filters > a { opacity: .5; display: flex; display: inline-flex; gap: 7px; justify-content: center; align-items: center; padding: 6px 4px 6px 13px; height: 32px; color: var(--white-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; border: 1px solid var(--white-color); border-radius: 100px; }
.page--search .search-filters > a .count { display: flex; flex: 1; align-items: center; justify-content: center; width: 24px; height: 24px; color: var(--text-color); letter-spacing: normal; background: var(--white-color); border-radius: 100px; }
.page--search .search-filters > .active { opacity: 1; }
.page--search .search-filters > .active .count { color: var(--white-color); background: var(--primary-color); }
.page--search .block--content { display: flex; gap: 60px; flex-wrap: wrap; margin: 0 auto; width: 100%; max-width: 1140px; }
.page--search .block--content .search--item { overflow: hidden; position: relative; width: calc( 50% - 60px); transition: .4s; }
.page--search .block--content .search--item img { position: relative; display: block; width: 100%; height: auto; min-height: 200px; max-height: 315px; object-fit: cover; aspect-ratio: 540 / 315; transition: .4s ease-in-out; }
.page--search .block--content .postslist--image { position: relative; }
.page--search .block--content .postslist--badge { position: absolute; left: 14.67px; top: 14.67px; display: inline-flex; justify-content: center; align-items: center; height: 32px; padding: 6px 15px; color: var(--white-floral-color); font-family: "Open Sans"; font-size: 10px; font-style: normal; font-weight: 700; line-height: 35px; letter-spacing: 2.4px; text-transform: uppercase; border: 1px solid var(--white-color); border-radius: 100px; }
.page--search .block--content .postslist--title { display: block; margin: 20px 0; color: var(--white-color); font-family: "Open Sans"; font-size: 25px; font-style: normal; font-weight: 700; line-height: 1em; letter-spacing: -0.75px; }
.page--search .block--content .postslist--excerpt { color: var(--white-floral-color); font-family: "Source Serif 4"; font-size: 17px; font-style: normal; font-weight: 326; line-height: 29px; }


/* medium screens (992px–1619px) */

@media screen and (min-width: 992px) and (max-width: 1619px) {

    .block--accordion,
    .block--postslist,
    .block--container.container-expand,
    .block--slides .slides-slider,
    .block--imagecolumn .block--content { padding-left: 80px; padding-right: 80px; }

    .block--imagecolumn .wp-block-heading { font-size: 25px; letter-spacing: -0.75px; }

    .block--slides .block--description { font-size: 19px; line-height: 31px; letter-spacing: -0.57px; }

    .block--accordion .accordion--tab .accordion--tab-title,
    .block--slides .slide--item .slide-description { font-size: 16px; line-height: 29px; }

    .block--imagequote .imagequote-legends { gap: 50px; }
}


.block--testimonials .testimonials { overflow: hidden; position: relative; max-height: 840px; transition: max-height 0.6s ease; }
.block--testimonials .testimonials.expand::after { content: " "; position: absolute; z-index: 2; width: 100%; height: 540px; left: 0; bottom: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, var(--white-color) 90%); }
.block--testimonials .testimonials.expanded::after { display: none; }
.block--testimonials .expand-toggle { position: absolute; z-index: 9; left: 50%; bottom: 50px; display: flex; margin: -50px auto 0; transform: translateX(-50%); }
.block--testimonials.dark .testimonials::after { background: linear-gradient(180deg, rgba(37, 36, 34, 0) 0%, var(--background-color) 89.91%); }
@media screen and (max-width: 991px) {
    .block--testimonials .container { padding: 0; }
}