@charset "UTF-8";
/*USE*/
/*
header {
    height: 100px;
    @include breakpoint(tablet) { height: auto; }
}
*/
@import "https://use.typekit.net/lys5ibu.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
body {
    color: #646262;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*STICKY FOOTER*/
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.l-main {
    position: relative;
    flex: 1;
}

* {
    box-sizing: border-box;
}

a,
a:hover {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

fieldset {
    padding: 0;
    border: none;
    margin: 0;
}

button,
input[type="submit"] {
    border: none;
    cursor: pointer;
}

button,
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.t-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #353434;
    font-family: "usual", sans-serif;
    line-height: 1.2;
    font-weight: 600;
}

.t-title--1 {
    font-size: 28px;
}

.t-title--2 {
    font-size: 28px;
}

.t-title--3 {
    font-size: 24px;
}

.t-title--4 {
    font-size: 18px;
}

.t-title--5 {
    font-size: 16px;
}

.t-title--6 {
    font-size: 16px;
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    .t-title--1 {
        font-size: 48px;
    }

    .t-title--2 {
        font-size: 32px;
    }

    .t-title--3 {
        font-size: 28px;
    }

    .t-title--4 {
        font-size: 22px;
    }

    .t-title--5 {
        font-size: 18px;
    }
}
/*UTILITY*/
.u-bg-grey {
    background-color: #f5f5f5;
}

.u-remove-bg::before {
    content: none !important;
}

.u-flex-start {
    align-items: flex-start !important;
}

.u-flex-middle {
    align-items: center !important;
}

.u-flex-bottom {
    align-items: flex-end !important;
}

.u-flex-between {
    justify-content: space-between !important;
}

.u-flex-center {
    justify-content: center !important;
}

.u-flex-reverse {
    flex-direction: row-reverse !important;
}

.u-flex-1 {
    flex: 1 !important;
}

.u-flex-2 {
    flex: 2 !important;
}

.u-flex-3 {
    flex: 3 !important;
}

.u-flex-4 {
    flex: 4 !important;
}

.u-flex-5 {
    flex: 5 !important;
}

.u-flex-none > *:nth-child(n) {
    flex: initial !important;
}

/*GRID*/
.u-grid-2 {
    grid-template-columns: 1fr;
}

.u-grid-mobile-2 {
    grid-template-columns: 1fr 1fr;
}

.u-grid-3 {
    grid-template-columns: 1fr;
}

.u-grid-4 {
    grid-template-columns: 1fr 1fr;
}

.u-grid-5 {
    grid-template-columns: 1fr 1fr;
}

.u-grid-6 {
    grid-template-columns: 1fr 1fr;
}

.u-grid-7 {
    grid-template-columns: 1fr 1fr;
}

/*RULER*/
.u-gap-1 {
    gap: 8px;
}

.u-gap-2 {
    gap: 16px;
}

.u-gap-4 {
    gap: 24px;
}

.u-gap-5 {
    gap: 32px;
}

.u-gap-5-3 {
    gap: 24px;
}

.u-gap-6 {
    gap: 40px;
}

.u-block {
    display: block !important;
}

.u-inline {
    display: inline-block !important;
}

.u-full-width {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

@media screen and (min-width: 768px) {
    .u-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .u-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .u-grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .u-grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .u-grid-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .u-grid-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 1024px) {
    .u-mobile {
        display: none !important;
    }

    .u-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .u-grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .u-grid-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .u-grid-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    /*RULER*/
    .u-gap-4 {
        gap: 32px;
    }

    .u-gap-5 {
        gap: 40px;
    }

    .u-gap-5-3 {
        gap: 40px 24px;
    }
}
@media screen and (max-width: 1023px) {
    .u-desktop {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .u-tablet {
        display: none !important;
    }
}
.l-container,
.wp-block-group__inner-container {
    width: 100%;
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1024px) {
    .l-container,
    .wp-block-group__inner-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .l-container--small {
        max-width: 1024px;
    }
}
.l-mobile-flex {
    display: flex;
}

@media screen and (min-width: 768px) {
    .l-tablet-flex {
        display: flex;
    }
}
@media screen and (min-width: 1024px) {
    .l-desktop-flex {
        display: flex;
    }
}
.l-mobile-grid {
    display: grid;
}

@media screen and (min-width: 768px) {
    .l-tablet-grid {
        display: grid;
    }
}
@media screen and (min-width: 1024px) {
    .l-desktop-grid {
        display: grid;
    }
}
.c-content-block {
    margin: 60px 0;
}
.c-content-block .c-heading {
    margin-bottom: 32px;
}
.c-content-block__buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 8px;
}
.c-content-block__footer {
    margin-top: 32px;
}

.c-content-block__grid {
    gap: 40px;
}

.c-content-block--background {
    background-color: #f5f5f5;
    padding: 32px 0;
}

.c-preview-cat__grid {
    gap: 24px;
}

@media screen and (max-width: 767px) {
    .c-content-block__guides > * {
        display: block;
        margin-top: 24px;
    }
}
@media screen and (min-width: 768px) {
    .c-content-block__buttons {
        gap: 30px 24px;
    }
    .c-content-block__guides {
        flex-wrap: wrap;
        gap: 24px 16px;
    }
    .c-content-block__guides > * {
        max-width: calc((100% - 48px) / 3);
    }
}
@media screen and (min-width: 1024px) {
    .c-preview-cat__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 217px 217px auto auto;
    }

    .c-preview-cat__grid .c-news:first-of-type .c-news__figure {
        height: 450px;
    }

    .c-preview-cat__grid .c-news:first-of-type {
        grid-area: 1/1/5/2;
    }

    .c-preview-cat__grid .c-news:nth-of-type(2) {
        grid-area: 1/2/2/3;
    }

    .c-preview-cat__grid .c-news:nth-of-type(3) {
        grid-area: 2/2/3/3;
    }
}
@media screen and (min-width: 1024px) {
    .c-content-block {
        margin: 120px 0;
    }
    .c-content-block .c-heading {
        margin-bottom: 45px;
    }
    .c-content-block__footer {
        margin-top: 50px;
    }
    .c-content-block__guides {
        gap: 32px 16px;
    }
    .c-content-block__guides > * {
        max-width: calc((100% - 48px) / 4);
    }

    .c-content-block--background {
        padding: 48px 0;
    }

    .c-preview-cat__grid {
        gap: 32px;
        grid-template-rows: 209px 209px auto auto;
    }

    .c-boxes {
        gap: 88px;
    }
}
@media screen and (min-width: 1280px) {
    .c-content-block__footer .c-notice {
        margin-inline: -24px;
    }
    .c-content-block__guides {
        gap: 60px 40px;
    }
    .c-content-block__guides > * {
        max-width: calc((100% - 120px) / 4);
    }
}
/*POST CONTENT*/
.c-post-content {
    background-color: #fff;
    font-size: 18px;
    padding: 20px;
    padding-bottom: 0;
}
.c-post-content .wp-block-image {
    margin: 24px 0;
}
.c-post-content .wp-block-image .aligncenter {
    width: 100%;
    margin: 0;
}
.c-post-content .wp-block-image img {
    display: block;
    width: 100%;
}
.c-post-content .c-card--inline {
    margin-top: 24px;
}
.c-post-content .c-card--inline + .c-card--inline {
    margin-top: 40px;
}
.c-post-content .c-content-block__grid .c-card--inline {
    margin-top: 0 !important;
}

.c-content-post .wp-block-image {
    margin: 24px 0;
}
.c-content-post .wp-block-image .aligncenter {
    width: 100%;
    margin: 0;
}
.c-content-post .wp-block-image img {
    display: block;
    width: 100%;
}

.c-hero:not(.c-hero--content) + .l-container .c-post-content,
.c-hero:not(.c-hero--content)
    + .wp-block-group__inner-container
    .c-post-content {
    position: relative;
    padding-left: 30px;
    padding-right: 60px;
    margin-top: -190px;
    margin-left: 10px;
    margin-right: -20px;
}

.c-post-content__title {
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 32px;
}

.c-post-content h2 {
    color: #e20e20;
}

.c-post-content h2:not(.t-title),
.c-post-content h3:not(.t-title),
.c-post-content h4:not(.t-title),
.c-post-content h5:not(.t-title),
.c-post-content h6:not(.t-title),
.c-content-post h2:not(.t-title),
.c-content-post h3:not(.t-title),
.c-content-post h4:not(.t-title),
.c-content-post h5:not(.t-title),
.c-content-post h6:not(.t-title) {
    margin-top: 24px;
    margin-bottom: 24px;
}

.c-post-content h2:not(.t-title),
.c-content-post h2:not(.t-title) {
    font-size: 24px;
}

.c-post-content h3:not(.t-title),
.c-content-post h3:not(.t-title) {
    font-size: 20px;
}

.c-post-content h4:not(.t-title),
.c-content-post h4:not(.t-title) {
    font-size: 18px;
}

.c-post-content h5:not(.t-title),
.c-post-content h6:not(.t-title),
.c-content-post h5:not(.t-title),
.c-content-post h6:not(.t-title) {
    font-size: 16px;
}

.c-post-content a:not([class]),
.c-content-post a:not([class]) {
    font-weight: 600;
    text-decoration: underline;
}

@media screen and (max-width: 1023px) {
    .c-hero:not(.c-hero--content) + .l-container .c-post-content,
    .c-hero:not(.c-hero--content)
        + .wp-block-group__inner-container
        .c-post-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 767px) {
    .c-hero:not(.c-hero--content) + .l-container .c-post-content,
    .c-hero:not(.c-hero--content)
        + .wp-block-group__inner-container
        .c-post-content {
        margin-left: -10px;
    }
}
@media screen and (min-width: 1024px) {
    /*POST CONTENT*/
    .c-post-content {
        padding: 40px;
        padding-bottom: 0;
    }
    .c-post-content .c-card--inline {
        margin-top: 45px;
    }
    .c-post-content .c-card--inline + .c-card--inline {
        margin-top: 110px;
    }

    .c-hero:not(.c-hero--content):not(.c-hero--landing)
        + .l-container
        .c-post-content,
    .c-hero:not(.c-hero--content):not(.c-hero--landing)
        + .wp-block-group__inner-container
        .c-post-content {
        padding-left: 40px;
        padding-right: 225px;
        margin-top: -190px;
        margin-left: 185px;
        margin-right: 0;
    }

    .c-post-content p,
    .c-content-post p {
        margin: 16px 0;
    }

    .c-post-content .c-map,
    .c-post-content h2:not(.t-title),
    .c-post-content h3:not(.t-title),
    .c-post-content h4:not(.t-title),
    .c-post-content h5:not(.t-title),
    .c-post-content h6:not(.t-title),
    .c-content-post .c-map,
    .c-content-post h2:not(.t-title),
    .c-content-post h3:not(.t-title),
    .c-content-post h4:not(.t-title),
    .c-content-post h5:not(.t-title),
    .c-content-post h6:not(.t-title) {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .c-post-content h2:not(.t-title),
    .c-content-post h2:not(.t-title) {
        font-size: 28px;
    }

    .c-post-content h3:not(.t-title),
    .c-content-post h3:not(.t-title) {
        font-size: 22px;
    }

    .c-post-content h4:not(.t-title),
    .c-content-post h4:not(.t-title) {
        font-size: 20px;
    }

    .c-post-content .c-gallery-container {
        margin: 90px -120px;
    }
}
.c-logo {
    position: relative;
    display: inline-block;
    margin-right: 50px;
    z-index: 10;
}
.c-logo svg,
.c-logo img {
    display: block;
    width: 44px;
    height: auto;
}

.c-logo--text {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}
.c-logo--text .c-logo__text {
    color: #000;
    font-family: "usual", sans-serif;
    margin-left: 16px;
}
.c-logo--text .c-logo__text:first-child {
    margin-left: 0;
}
.c-logo--text .c-logo__text strong,
.c-logo--text .c-logo__text span {
    display: block;
    color: #000;
    line-height: 1.2;
}
.c-logo--text .c-logo__text strong {
    font-weight: 600;
}
.c-logo--text .c-logo__text span {
    font-size: 11px;
    margin-top: 6px;
}

@media screen and (min-width: 1024px) {
    .c-logo svg,
    .c-logo img {
        width: 64px;
        height: auto;
    }
    .c-logo--text .c-logo__text {
        font-size: 16px;
    }
    .c-logo--text .c-logo__text span {
        font-size: 14px;
    }
}
.c-button,
input[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #e20e20;
    text-align: center;
    font-family: "usual", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    border: 1px solid #e20e20;
    border-radius: 40px;
    transition: 0.3s ease;
}
.c-button .icon,
input[type="submit"] .icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    transition: 0.3s ease;
    fill: #66bb6a;
}

.c-button .icon.icon-right,
input[type="submit"] .icon.icon-right {
    margin-left: 16px;
    margin-right: 0;
}

.c-button:hover,
input[type="submit"]:hover {
    color: #fff;
    background-color: #494949;
    border-color: #494949;
}
.c-button--large {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.c-button--category {
    color: #646262;
    background-color: #f5f5f5;
    font-size: 16px !important;
    font-weight: 400;
    text-transform: none;
    padding: 12px 20px !important;
    border: none;
}
.c-button--category:hover {
    background-color: #e20e20;
}
.c-button--ghost {
    color: #e20e20;
    background-color: transparent;
}
.c-button--ghost:hover {
    background-color: #e20e20;
    border-color: #e20e20;
}
.c-button--whatsapp {
    color: #353434;
    border-color: #66bb6a;
}
.c-button--whatsapp:hover {
    color: #fff;
    background-color: #66bb6a;
    border-color: #66bb6a;
}
.c-button--whatsapp:hover .icon {
    fill: #fff;
}

@media screen and (max-width: 767px) {
    .c-button--category {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }
}
@media screen and (min-width: 1024px) {
    .c-button,
    input[type="submit"] {
        font-size: 14px;
        padding: 12px 24px;
    }
}
.c-link {
    display: block;
    color: #e20e20;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}
.c-link--secondary {
    color: #9b9b9b;
}

@media screen and (min-width: 768px) {
    .c-link {
        font-size: 16px;
    }

    .c-partner {
        margin-inline: 0;
    }
}
@media screen and (min-width: 1024px) {
    .c-link {
        font-size: 18px;
    }
}
.c-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e20e20;
    border-radius: 50%;
}

.c-badge--grey {
    background-color: #f5f5f5;
}

.c-badge .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.c-badge .icon * {
    fill: #fff;
}

.c-breadcrumbs {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #7d7b7b;
    font-size: 14px;
    padding-block: 16px;
    padding-left: 30px;
}
.c-breadcrumbs li {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
}
.c-breadcrumbs li a {
    display: inline-block;
    padding: 12px 16px;
    padding-left: 0;
}
.c-breadcrumbs li a .icon {
    width: 14px;
    height: 14px;
}
.c-breadcrumbs li + li::before {
    content: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.958 8.5c0 .192-.07.366-.209.505l-4.521 4.348a.748.748 0 0 1-.487.191.697.697 0 0 1-.504-.208.709.709 0 0 1 .017-.992l4-3.843-4-3.844c-.278-.26-.278-.713-.017-.991.26-.278.713-.278.99-.017l4.522 4.347c.14.14.21.313.21.505Z' fill='%237D7B7B'/%3E%3C/svg%3E");
    display: block;
    width: 16px;
    fill: #7d7b7b;
}
.c-breadcrumbs li + li a {
    padding-left: 6px;
}
.c-breadcrumbs li:first-child {
    position: absolute;
    left: 0;
}

.c-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.c-picture--ratio {
    position: relative;
    height: 0;
}
.c-picture--ratio img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-partner {
    margin-inline: 8px;
}

.c-partner img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    transition: 0.3s ease;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.c-partner-link:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.c-map iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* FORM */
.c-form-field {
    position: relative;
}
.c-form-field input::-moz-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    opacity: 1;
}
.c-form-field input:-ms-input-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
}
.c-form-field input::-webkit-input-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
}
.c-form-field__input {
    position: relative;
}
.c-form-field input {
    display: block;
    width: 100%;
    height: 48px;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 24px;
    border: 1px solid #8d9295;
    border-radius: 40px;
    outline: none;
}
.c-form-field input:focus {
    border-color: #494949;
}
.c-form-field label {
    display: block;
    color: #494949;
    font-family: "usual", sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    padding-left: 16px;
    margin-bottom: 10px;
}
.c-form-field__submit {
    position: absolute;
    top: 50%;
    right: 18px;
    background-color: transparent;
    transform: translateY(-50%);
}
.c-form-field svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #e20e20;
}

.c-checkbox {
    position: relative;
    display: block;
}
.c-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.c-checkbox span {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #494949;
    border-radius: 4px;
    z-index: 0;
}
.c-checkbox input:checked ~ span::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 9px;
    height: 4px;
    background: transparent;
    border: 2px solid #494949;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}
.c-checkbox label {
    display: block;
    color: #494949;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: none;
    padding-left: 24px;
    margin-bottom: 0;
    cursor: pointer;
}
.c-checkbox label a {
    color: #e20e20;
    text-decoration: underline;
}

.c-form-field textarea::-moz-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}
.c-form-field textarea:-ms-input-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}
.c-form-field textarea::-webkit-input-placeholder {
    color: #a3a7aa;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}
.c-form-field textarea {
    display: block;
    width: 100%;
    min-width: 100%;
    height: 200px;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    padding: 24px;
    border: 1px solid #8d9295;
    border-radius: 20px;
    outline: none;
}
.c-form-field textarea:focus {
    border-color: #494949;
}

.c-select {
    height: 48px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABGdBTUEAALGPC/xhBQAAAHVJREFUKBVjYGBgiANiViCmBID0xzECidVAzALEYUD8G4hJBSCDQGaA9YI466GYVBdi1YtVEGgBPoBXD15JNFOJUkuMImLUwO3GpxifHNwAdAY2TdjE0PXh5CNr5gaqIjfG4RbADHwFNQzEpwiADEgCYoIGAQB8DhriFBZfrAAAAABJRU5ErkJggg==")
        no-repeat right 15px center #fff;
    background-size: 12px;
    border: 1px solid #8d9295;
    border-radius: 48px;
    overflow: hidden;
}
.c-select select {
    width: 100%;
    height: 48px;
    color: #515151;
    background: transparent;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    padding: 10px 24px;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.c-select option[disabled] {
    display: none;
}

/*HEADER*/
.c-site-header {
    position: relative;
    padding: 4px 0;
    box-shadow: 0px 4px 4px rgba(151, 151, 151, 0.2);
}

.c-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 5px 8px;
    transform: translateY(-50%);
    z-index: 10;
}

.c-toggle__item {
    display: block;
    width: 30px;
    border-top: 2px solid #000;
    border-radius: 10px;
    margin: 6px 0 6px auto;
    transition: 0.4s ease;
}

.c-site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    background-color: #fff;
    overflow: auto;
    transition: all 0.3s ease;
    z-index: 9;
}

.c-site-nav__menu {
    text-align: center;
    margin: 100px 0;
}
.c-site-nav__menu li {
    position: relative;
    color: #494949;
    font-family: "usual", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.c-site-nav__menu li a {
    display: block;
    padding: 12px 5px;
    transition: 0.3s ease;
}
.c-site-nav__menu li a:hover {
    color: #e20e20;
}
.c-site-nav__menu li.current-menu-item > a {
    font-weight: 700;
}
.c-site-nav__menu li.j-megamenu > a::after,
.c-site-nav__menu li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-color: #1e1b44 transparent transparent transparent;
    border-width: 4px 3px 0 3px;
    margin-left: 8px;
    border-style: solid;
}
.c-site-nav__menu li .icon {
    width: 18px;
    height: 18px;
}
.c-site-nav__menu li .c-badge {
    display: flex;
    padding: 0;
    margin-left: 12px;
}
.c-site-nav__menu li .c-badge .icon {
    width: 20px;
    height: 20px;
}

body.u-menu-open {
    /* position: fixed; */
    height: 100%;
    overflow: hidden;
}

.u-menu-open .c-toggle__item {
    opacity: 0;
}
.u-menu-open .c-toggle__item:first-of-type {
    opacity: 1;
    transform: rotate(-45deg) translate(-6px, 6px);
}
.u-menu-open .c-toggle__item:last-of-type {
    opacity: 1;
    transform: rotate(45deg) translate(-6px, -6px);
}
.u-menu-open .c-site-nav {
    bottom: 0;
}

/*SUBMENU*/
.sub-menu {
    display: none;
}
.sub-menu li {
    display: block !important;
    font-size: 14px;
    line-height: 1;
    text-transform: none;
    padding: 0 !important;
}
.sub-menu li a {
    padding: 14px 20px !important;
    margin-bottom: 0 !important;
}
.sub-menu li.menu-item-has-children > a::after {
    display: none;
}
.sub-menu .sub-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.sub-menu .sub-menu li a {
    font-weight: 400;
    padding: 4px 20px !important;
    padding-left: 32px !important;
    margin-bottom: 8px !important;
}
.sub-menu .sub-menu li a::before {
    content: "•";
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@media screen and (min-width: 1024px) {
    /*HEADER*/
    .c-site-header__content {
        position: relative;
        z-index: 10;
    }
    .c-site-header__content .c-logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .c-toggle {
        display: none;
    }

    .c-site-nav {
        position: relative;
        left: auto;
        right: auto;
        display: block !important;
        max-width: calc(100% - 100px);
        background-color: transparent;
        text-align: right;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-left: auto;
        overflow: visible;
        transition: none;
    }

    .c-site-nav__menu {
        display: block;
        text-align: right;
        margin: 0;
    }
    .c-site-nav__menu li {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        font-weight: 400;
        padding: 8px 0;
    }
    .c-site-nav__menu li a:hover {
        position: relative;
        color: #e20e20;
        background: none;
    }
    .c-site-nav__menu li:last-of-type a {
        padding-right: 0;
    }
    .c-site-nav__menu li.current-menu-item a {
        position: relative;
        background: none;
    }
    .c-site-nav__menu li.current-menu-item:last-of-type a::after {
        right: 0;
    }

    /*LAYOUT*/
    body.u-menu-open {
        position: initial;
        overflow: initial;
    }

    /*SUBMENU*/
    .sub-menu {
        display: none !important;
    }

    .c-site-nav__menu li:hover .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: block !important;
        min-width: 250px;
        background-color: #fff;
        text-align: left;
        padding-block: 10px;
        border-radius: 8px;
        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.16);
        overflow: hidden;
    }

    .c-site-nav__menu li.u-submenu-grid:hover .sub-menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        min-width: 400px;
    }

    .c-site-nav__menu li.u-submenu-grid .sub-menu li a {
        font-size: 14px !important;
        padding: 6px 20px !important;
    }

    .c-site-nav__menu li.wpml-ls-item:hover .sub-menu {
        width: 66px;
        z-index: 2;
    }

    .sub-menu li.current-menu-item > a,
    .sub-menu li a:hover {
        color: #e20e20;
    }

    .sub-menu li a {
        background-color: #fff;
        line-height: 23px;
        font-weight: 400;
        padding: 10px 20px !important;
        transition: 0.3s ease;
    }
}
.c-hero {
    position: relative;
}

.c-hero__picture {
    position: relative;
    margin: 0 -20px 20px;
}
.c-hero__picture .c-hero__caption {
    position: absolute;
    right: 5px;
    bottom: 5px;
    max-width: 60%;
    background-color: #fff;
    font-size: 12px;
    padding: 16px;
}

.c-hero__picture .c-hero__caption a {
    color: #e20e20;
    font-weight: 600;
}

.c-hero__picture .c-hero__caption a:hover {
    text-decoration: underline;
}

.c-hero__picture img {
    display: block;
    width: 100%;
    height: 70vw;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.c-hero__text {
    color: #353434;
    background-color: #fff;
    font-size: 16px;
}
.c-hero__text li {
    display: flex;
    align-items: center;
}
.c-hero__text li::before {
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.176 19.276c-.353 0-.675-.118-.94-.382l-5.84-5.84a1.311 1.311 0 0 1 0-1.879 1.311 1.311 0 0 1 1.878 0l4.93 4.902 11.71-11.68a1.311 1.311 0 0 1 1.879 0c.528.527.528 1.35 0 1.877L9.144 18.894a1.4 1.4 0 0 1-.968.382Z' fill='%23E20E20'/%3E%3C/svg%3E");
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    color: #e20e20;
    background-color: #f8f7f7;
    font-size: 32px;
    border-radius: 9px;
    margin-right: 24px;
    counter-increment: counter;
}
.c-hero__text li + li {
    margin-top: 16px;
}

.c-hero__title {
    color: #353434;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.c-hero__lead {
    color: #7d7b7b;
    font-family: "usual", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 16px;
}
.c-hero__lead strong {
    color: #e20e20;
    font-weight: 700;
    text-transform: uppercase;
}

.c-hero .c-search {
    margin-top: 24px;
}

.c-hero__footer {
    margin-top: 16px;
}
.c-hero__footer .c-button,
.c-hero__footer input[type="submit"] {
    margin-right: 8px;
}
.c-hero__footer .c-button + .c-button,
.c-hero__footer input[type="submit"] + .c-button,
.c-hero__footer .c-button + input[type="submit"],
.c-hero__footer input[type="submit"] + input[type="submit"] {
    margin-top: 8px;
}

.c-hero--category {
    margin-bottom: 32px;
}

.c-hero-simple__link {
    color: #353434;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}
.c-hero-simple__link .icon {
    margin-right: 8px;
}
.c-hero-simple__title {
    max-width: 600px;
    font-weight: 700;
}
.c-hero-simple__meta {
    font-size: 14px;
    margin-top: 24px;
}
.c-hero-simple__meta li + li {
    margin-top: 8px;
}
.c-hero-simple__address {
    display: flex;
    align-items: center;
    color: #e20e20;
    text-decoration: underline;
}
.c-hero-simple__address .icon {
    margin-right: 6px;
}
.c-hero-simple__review {
    display: flex;
    align-items: center;
    color: #353434;
}
.c-hero-simple__review .icon {
    margin-right: 6px;
}
.c-hero-simple__review span:not(.c-rating) {
    display: block;
    color: #e20e20;
    margin-left: 4px;
    text-decoration: underline;
}
.c-hero-simple__wishlist {
    display: flex;
    align-items: center;
}
.c-hero-simple__wishlist .icon {
    margin-right: 6px;
}
.c-hero-simple__wishlist a {
    color: #e20e20;
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .c-hero__picture {
        margin: 0;
    }

    .c-hero__picture img {
        height: 760px;
    }

    .c-hero__text {
        position: absolute;
        top: 120px;
        max-width: 530px;
        font-size: 18px;
        padding: 40px;
        margin-left: 145px;
    }

    .c-hero__title {
        font-size: 24px;
    }

    .c-hero__lead {
        font-size: 16px;
    }

    .c-hero .c-search {
        margin-top: 32px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .c-hero__footer {
        display: flex;
        margin-top: 32px;
    }
    .c-hero__footer .c-button,
    .c-hero__footer input[type="submit"] {
        margin-right: 24px;
    }
    .c-hero__footer .c-button + .c-button,
    .c-hero__footer input[type="submit"] + .c-button,
    .c-hero__footer .c-button + input[type="submit"],
    .c-hero__footer input[type="submit"] + input[type="submit"] {
        margin-top: 0;
    }

    .c-hero--category {
        margin-bottom: 48px;
    }

    .c-hero-simple__meta {
        margin-top: 32px;
    }
    .c-hero-simple__meta li + li {
        display: flex;
        align-items: center;
        margin-top: 0;
        margin-left: 8px;
    }
    .c-hero-simple__meta li + li::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 4px;
        height: 4px;
        background-color: #c4c4c4;
        border-radius: 50%;
        margin-right: 8px;
    }
}
@media screen and (min-width: 1024px) {
    .c-hero--home .c-hero__title {
        font-size: 32px;
    }
}
.c-hero--geoloc {
    padding: 0 20px;
}
.c-hero--geoloc .c-hero__text {
    color: #646262;
    font-size: 18px;
}
.c-hero--geoloc .c-hero__title {
    font-size: 26px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .c-hero--geoloc {
        padding: 0;
        margin-bottom: 200px;
    }
    .c-hero--geoloc .c-hero__picture img {
        height: 520px;
    }
    .c-hero--geoloc .c-hero__text {
        position: absolute;
        top: auto;
        left: 50%;
        bottom: -116px;
        width: 80%;
        max-width: 860px;
        font-size: 22px;
        border-radius: 20px;
        margin: 0;
        transform: translateX(-50%);
    }
    .c-hero--geoloc .c-hero__title {
        font-size: 32px;
    }
}
.c-hero--luoghi {
    padding: 0 20px;
    margin-bottom: 40px;
}
.c-hero--luoghi .c-hero__text {
    color: #646262;
    text-align: center;
    font-size: 16px;
}
.c-hero--luoghi .c-hero__title {
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .c-hero--luoghi {
        padding: 0;
    }
    .c-hero--luoghi .c-hero__picture img {
        height: 520px;
    }
    .c-hero--luoghi .c-hero__text {
        position: absolute;
        top: auto;
        left: 50%;
        bottom: 0;
        width: 80%;
        max-width: 860px;
        font-size: 18px;
        padding-bottom: 0;
        border-radius: 20px 20px 0 0;
        margin: 0;
        transform: translateX(-50%);
    }

    .c-hero__picture .c-hero__caption {
        font-size: 16px;
        padding: 18px 23px;
    }
}
.c-hero--content .c-hero__text {
    position: relative;
    top: auto;
    max-width: none;
    margin-left: 0;
}

@media screen and (min-width: 768px) {
    .c-hero--content {
        background-image: linear-gradient(to right, #fff 55%, #f5f5f5 55%);
        padding: 60px 0;
    }
    .c-hero--content .c-hero__text {
        padding: 0;
        margin-right: 100px;
    }

    .c-hero--home {
        background-image: none;
        background-color: #f5f5f5;
        padding: 0;
    }

    .c-hero--home .c-hero__text {
        background-color: #f5f5f5;
        padding-block: 40px;
    }
}
.c-hero--location {
    background-color: #f8f7f7;
    padding-block: 32px;
}
.c-hero--location .c-hero-simple__address {
    font-weight: 600;
    margin-block: 24px;
}
.c-hero--location .c-hero__text {
    background-color: transparent;
}
.c-hero--location .c-hero__features {
    background-color: #fff;
    padding: 20px;
    margin-inline: -20px;
    margin-top: 36px;
}
.c-hero--location .c-hero__features-item + .c-hero__features-item {
    margin-top: 36px;
}
.c-hero--location .c-features {
    grid-template-columns: 1fr;
    font-size: 16px;
}
.c-hero--location .c-features + h3 {
    margin-top: 36px;
}
.c-hero--location .c-button--ghost {
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .c-hero--location {
        background-image: none;
        padding-block: 60px;
    }
    .c-hero--location .c-hero__features {
        position: relative;
        width: 45%;
        padding: 0;
        padding-left: 40px;
        margin: 0;
    }
    .c-hero--location .c-hero__features::before {
        content: "";
        position: absolute;
        top: -60px;
        left: 0;
        bottom: -60px;
        width: 50vw;
        background-color: #fff;
    }
    .c-hero--location .c-hero__features-item {
        position: relative;
    }
    .c-hero--location .c-hero__text {
        margin-right: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .c-hero--location .c-hero__text {
        margin-right: 100px;
    }
    .c-hero--location .c-hero__features {
        gap: 68px;
    }
    .c-hero--location .c-hero__features-item + .c-hero__features-item {
        margin-top: 0;
    }
}
/*C-CARD*/
.c-card__picture {
    position: relative;
    height: 0;
    padding-bottom: 110%;
    margin-bottom: 16px;
    overflow: hidden;
}

.c-card__picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s ease;
}

.c-card__content {
    color: #494949;
}
.c-card__content p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.c-card__quote {
    display: block;
    color: #e20e20;
    font-family: "usual", sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
}

.c-card__lead {
    color: #e20e20;
    margin-bottom: 16px;
}

.c-card__title {
    color: #494949;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.c-card:hover .c-card__picture img,
.c-card:focus .c-card__picture img,
.c-card:active .c-card__picture img {
    transform: scale(1.1);
}

.c-card--review {
    position: relative;
    display: block;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.c-card--review .icon-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}
.c-card--review .c-card__title {
    margin-bottom: 8px !important;
}
.c-card--review .c-card__picture {
    height: 300px;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}
.c-card--review .c-card__picture img {
    position: relative;
    top: auto;
    left: auto;
}
.c-card--review .c-card__content {
    font-size: 14px;
    padding: 16px;
    padding-right: 48px;
}
.c-card--review .c-card__content p {
    display: -webkit-box;
    color: #646262;
    margin-bottom: 32px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.c-card--review .icon-star {
    margin-right: 8px;
    margin-bottom: 2px;
}
.c-card--review .c-card__review {
    color: #353434;
}
.c-card--review .c-card__n-review {
    color: #e20e20;
    margin-left: 8px;
    text-decoration: underline;
}

.c-card--review:not(.l-tablet-flex) .icon-heart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #e20e20;
    border-radius: 50%;
}
.c-card--review:not(.l-tablet-flex) .icon-heart svg path {
    fill: #fff;
}

.c-card--red {
    background-color: #e20e20;
}
.c-card--red .c-card__picture {
    background-color: #fff;
}
.c-card--red .c-card__content p {
    color: #fff;
}
.c-card--red .c-card__title {
    color: #fff;
}

.c-card--inline .c-card__picture {
    width: 120px;
    height: 120px;
    padding-bottom: 0;
    border-radius: 50%;
    margin: 0 auto 24px;
}
.c-card--inline .c-card__content {
    flex: 1;
}
.c-card--inline .c-card__content p {
    display: block;
}

.c-card--testimonial {
    background-color: #f8f7f7;
    padding: 32px 16px;
}
.c-card--testimonial .c-card__title {
    color: #e20e20;
    line-height: 1.3;
    font-weight: 700;
}

.c-card--quote .c-card__content {
    font-size: 16px;
}
.c-card--quote .c-card__content .icon {
    display: block;
    width: 37px;
    height: 37px;
    margin-bottom: 4px;
}

@media screen and (min-width: 768px) {
    .c-card--review.l-tablet-flex {
        display: flex;
    }
    .c-card--review.l-tablet-flex .c-card__picture {
        width: 45%;
        margin-bottom: 0;
    }
    .c-card--review.l-tablet-flex .c-card__content {
        display: flex;
        flex-direction: column;
        width: 55%;
    }
    .c-card--review.l-tablet-flex .c-card__review {
        margin-top: auto;
    }

    .c-card--review:not(.l-tablet-flex) .c-card__picture {
        height: 212px;
    }
    .c-card--review:not(.l-tablet-flex) .c-card__content {
        padding: 32px;
    }
    .c-card--review:not(.l-tablet-flex) .c-card__content p {
        margin-bottom: 14px;
    }

    .c-card--inline .c-card__picture {
        width: 230px;
        height: 230px;
        margin-right: 40px;
        margin-bottom: 0;
    }
    .c-card--inline .c-card__title {
        font-size: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .c-card--testimonial {
        padding: 40px 112px 120px;
    }
    .c-card--testimonial .c-card__picture {
        width: 202px;
        height: 202px;
        margin-right: 60px;
    }
    .c-card--testimonial .c-card__title {
        margin-right: 110px;
    }
}
/*MODAL*/
body.u-modal-open {
    overflow: hidden;
}

.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

.c-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    max-width: 750px;
    max-height: 80vh;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.c-modal__header {
    margin-bottom: 30px;
}

.c-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #b0bec5;
    font-size: 14px;
    padding: 5px;
}

.c-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 20px;
}

.c-features__item {
    display: flex;
    align-items: center;
    color: #494949;
}
.c-features__item .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    background-color: #f8f7f7;
    padding: 8px;
    border-radius: 9px;
    margin-right: 16px;
    fill: #e20e20;
}
.c-features__item .icon * {
    fill: #e20e20;
}

@media screen and (min-width: 425px) {
    .c-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .c-features__item {
        font-size: 14px;
    }
}
@media screen and (min-width: 768px) {
    .c-features {
        gap: 15px 40px;
        margin-top: 30px;
    }

    .c-features {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .c-features__item .icon {
        width: 56px;
        min-width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 12px;
    }
}
.c-topic {
    margin: 60px 0;
}

.c-topic--background {
    background-color: #f8f7f7;
    padding-top: 50px;
    padding-bottom: 60px;
}

.c-topic .c-picture,
.c-topic .c-map {
    margin-bottom: 16px;
}

.c-topic__lead {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.c-topic__title {
    display: flex;
    align-items: center;
    color: #252525;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.c-topic__title::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #e20e20;
    border-radius: 50%;
    margin-right: 12px;
}

.c-topic__subtitle {
    color: #e20e20;
    margin-bottom: 16px;
}

.c-topic__content .c-button,
.c-topic__content input[type="submit"] {
    margin-top: 32px;
}

.c-topic__text ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: counter;
}
.c-topic__text ol li {
    display: flex;
    align-items: center;
}
.c-topic__text ol li::before {
    content: counter(counter);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    color: #e20e20;
    background-color: #fff;
    font-size: 32px;
    font-weight: 600;
    border-radius: 9px;
    margin-right: 24px;
    counter-increment: counter;
}
.c-topic__text ol li + li {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .c-topic .c-picture,
    .c-topic .c-map {
        width: 40%;
        margin-bottom: 0;
    }

    .c-topic .c-picture img,
    .c-topic .c-map iframe {
        max-height: 600px;
        min-height: 400px;
    }

    .c-topic__content {
        flex: 1;
        padding-left: 40px;
    }

    .c-topic--reverse .l-tablet-flex {
        flex-direction: row-reverse;
    }
    .c-topic--reverse .c-topic__content {
        padding-right: 40px;
    }

    .c-topic--fullscreen .c-picture,
    .c-topic--fullscreen .c-map {
        position: relative;
        left: 50%;
        width: 50vw;
        margin-left: -50vw;
    }
    .c-topic--fullscreen .c-topic__content {
        flex: initial;
        width: 50%;
        margin-left: auto;
    }

    .c-topic--fullscreen.c-topic--reverse .c-picture,
    .c-topic--fullscreen.c-topic--reverse .c-map {
        left: auto;
        right: 50%;
        margin-left: 0;
        margin-right: -50vw;
    }
    .c-topic--fullscreen.c-topic--reverse .c-topic__content {
        margin-left: 0;
        margin-right: auto;
    }
}
@media screen and (min-width: 1024px) {
    .c-topic {
        margin: 120px 0;
    }
}
.c-place-map {
    margin: 60px 0;
}

.c-place-map--background {
    background-color: #f8f7f7;
    padding-top: 50px;
    padding-bottom: 60px;
}

.c-place-map .c-picture,
.c-place-map .c-map {
    margin-bottom: 16px;
}

.c-place-map__lead {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.c-place-map__title {
    margin-bottom: 16px;
}

.c-place-map__subtitle {
    color: #e20e20;
    margin-bottom: 16px;
}

.c-place-map__text {
    margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
    .c-place-map .c-picture,
    .c-place-map .c-map {
        position: relative;
        left: 50%;
        width: 50vw;
        margin-block: 0;
        margin-left: -50vw;
    }

    .c-place-map .c-picture img,
    .c-place-map .c-map iframe {
        min-height: 400px;
    }

    .c-place-map__content {
        width: 50%;
        padding-left: 40px;
        margin-left: auto;
    }

    .c-place-map--reverse .l-tablet-flex {
        flex-direction: row-reverse;
    }
    .c-place-map--reverse .c-place-map__content {
        padding-right: 40px;
    }

    .c-place-map--fullscreen .c-picture,
    .c-place-map--fullscreen .c-map {
        position: relative;
        left: 50%;
        width: 50vw;
        margin-left: -50vw;
    }
    .c-place-map--fullscreen .c-place-map__content {
        flex: initial;
        width: 50%;
        margin-left: auto;
    }

    .c-place-map--fullscreen.c-place-map--reverse .c-picture,
    .c-place-map--fullscreen.c-place-map--reverse .c-map {
        left: auto;
        right: 50%;
        margin-left: 0;
        margin-right: -50vw;
    }
    .c-place-map--fullscreen.c-place-map--reverse .c-place-map__content {
        margin-left: 0;
        margin-right: auto;
    }
}
@media screen and (min-width: 1024px) {
    .c-place-map {
        margin: 120px 0;
    }
}
.c-accordion-item {
    border-bottom: 1px solid #9b9b9b;
}

/*ACCORDION-ITEM*/
.c-accordion-item__header {
    position: relative;
    padding: 24px 0;
    cursor: pointer;
}
.c-accordion-item__header .icon {
    width: 26px;
    height: 26px;
    margin-left: 16px;
    fill: #353434;
}
.c-accordion-item__header .icon-minus {
    display: none;
}

.c-accordion-item__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
}
.c-accordion-item__title span {
    flex: 1;
}

.c-accordion-item__content {
    display: none;
    padding: 24px 0;
    padding-top: 12px;
}

.c-accordion-item__content ul {
    list-style-type: disc;
}

.c-accordion-item__content ul,
.c-accordion-item__content ol {
    padding-left: 24px;
    margin-top: 16px;
}

.c-accordion-item__content ul li + li,
.c-accordion-item__content ol li + li {
    margin-top: 8px;
}

.c-accordion-item__content strong {
    color: #353434;
}
.c-accordion-item__content p {
    margin: 0;
}
.c-accordion-item__content * + p {
    margin-top: 16px;
}

.c-accordion-item.u-is-open .c-accordion-item__header .icon {
    fill: #e20e20;
}
.c-accordion-item.u-is-open .c-accordion-item__header .icon-minus {
    display: block;
}
.c-accordion-item.u-is-open .c-accordion-item__header .icon-plus {
    display: none;
}
.c-accordion-item.u-is-open .c-accordion-item__title {
    color: #e20e20;
}
.c-accordion-item.u-is-open .c-accordion-item__content {
    display: block;
}

@media screen and (min-width: 1024px) {
    .c-accordion-item {
        margin-bottom: 0;
    }
    .c-accordion-item__content {
        padding: 24px;
    }

    .c-accordion-item__header {
        padding: 24px;
    }
    .c-accordion-item__header .icon {
        margin-left: 22px;
    }
}
.c-gallery .c-picture {
    cursor: pointer;
}
.c-gallery__link {
    display: block;
    color: #e20e20 !important;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    transition: 0.3s ease;
    -webkit-text-decoration-line: underline !important;
    text-decoration-line: underline !important;
}
.c-gallery__link path {
    transition: 0.3s ease;
}
.c-gallery__link:hover {
    color: #494949 !important;
}
.c-gallery__link:hover svg path {
    fill: #494949;
}
.c-gallery--inline + .c-gallery__link {
    margin-top: -60px;
}

.c-gallery--grid {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin: 40px 0 60px;
}
.c-gallery--grid .c-picture {
    margin-bottom: 20px;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.c-gallery--slider .c-picture {
    height: 280px;
}
.c-gallery--slider .c-picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

@media screen and (min-width: 768px) {
    .c-gallery--grid {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
    .c-gallery--grid .c-picture {
        display: flex;
        margin-bottom: 40px;
    }
    .c-gallery--grid .c-picture:nth-child(3) {
        padding-top: 20px;
    }

    .c-gallery--inline .c-picture:nth-child(2) {
        transform: translateY(-50px);
    }
    .c-gallery--inline .c-picture:nth-child(3) {
        padding-top: 0;
    }
    .c-gallery--inline .c-picture:nth-child(n + 4) {
        display: none;
    }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
    .c-gallery--slider .c-picture {
        height: 530px;
    }
}
.c-guide .c-guide__picture {
    height: 300px;
}
.c-guide .c-guide__picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}
.c-guide .c-card__text {
    text-align: center;
    font-family: "usual", sans-serif;
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .c-guide .c-guide__picture {
        height: 400px;
    }
}
.c-cta {
    position: relative;
    padding: 16px;
    border: 2px solid #e10f20;
    margin: 60px 0;
}

.c-cta__title {
    color: #353434;
    font-family: "usual", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px !important;
}

.c-cta__text {
    color: #616161;
    font-size: 18px;
}
.c-cta__text p {
    margin: 0;
}

.c-cta__button {
    margin-top: 12px;
    margin-right: 12px;
}

.c-cta--big {
    min-height: 120px;
    padding-top: 120px;
    margin-top: 120px;
}

.c-cta__figure {
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
}
.c-cta__figure img {
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 1;
}

@media screen and (min-width: 768px) {
    .c-cta {
        padding: 32px;
    }

    .c-cta__button {
        margin-top: 16px;
        margin-right: 0;
    }

    .c-cta__button + .c-cta__button {
        margin-left: 16px;
    }

    .c-cta--big {
        padding-top: 32px;
        padding-left: 222px !important;
    }

    .c-cta__figure {
        top: -48px;
        left: 48px;
        transform: none;
    }
}
@media screen and (min-width: 1024px) {
    .c-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1090px;
        margin: 120px 0;
        margin-inline: auto !important;
    }

    .c-cta__buttons {
        margin-left: 32px;
    }

    .c-cta__button {
        margin-top: 0;
    }

    .c-cta--big {
        margin-top: 130px;
    }
}
.c-cta-contact {
    background-color: #f9f9f9;
    padding: 16px;
    border: 1px solid #9b9b9b;
}
.c-cta-contact__title {
    margin-bottom: 16px;
}
.c-cta-contact__button {
    display: flex;
    text-align: center;
}
.c-cta-contact__button + .c-cta-contact__button {
    margin-top: 16px;
}
.c-cta-contact__footer {
    margin-top: 24px;
}
.c-cta-contact__footer p {
    margin-bottom: 0;
}
.c-cta-contact__social svg {
    width: 20px;
    height: 20px;
}
.c-cta-contact__social li + li {
    margin-left: 16px;
}

@media screen and (min-width: 768px) {
    .c-cta-contact {
        padding: 32px;
    }
}
.c-search {
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.c-search .c-form-field label {
    font-family: "proxima-nova", sans-serif;
    line-height: 1.5;
    padding-left: 0;
    margin-bottom: 0;
}
.c-search .c-form-field input {
    height: 24px;
    font-size: 14px;
    padding: 0;
    border: none;
    border-radius: 0;
}
.c-search .c-form-field input::-moz-placeholder {
    font-size: 14px;
    opacity: 1;
}
.c-search .c-form-field input:-ms-input-placeholder {
    font-size: 14px;
}
.c-search .c-form-field input::-webkit-input-placeholder {
    font-size: 14px;
}
.c-search .c-button,
.c-search input[type="submit"] {
    margin-top: 16px;
}
.c-search .c-button .icon,
.c-search input[type="submit"] .icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

@media screen and (min-width: 768px) {
    .c-search {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding-left: 32px;
        border-radius: 125px;
    }
    .c-search .c-form-field {
        flex: 1;
    }
    .c-search .c-form-field + .c-form-field {
        margin-top: 0;
    }
    .c-search .c-button,
    .c-search input[type="submit"] {
        margin-top: -4px;
        margin-bottom: -4px;
    }
}
.c-search-map .c-search-map__image {
    display: block;
    width: 100%;
    height: 250px;
}

.c-search-map .c-search-map__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-search-map__content {
    position: relative;
    background-color: #fff;
    padding: 8px;
    border-radius: 20px;
    margin-top: -90px;
    z-index: 2;
}

.c-search-map__list {
    margin: 24px 16px 0;
}
.c-search-map__list li {
    display: flex;
    align-items: center;
    color: #7d7b7b;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: underline;
}
.c-search-map__list li + li {
    margin-top: 12px;
}
.c-search-map__list li::before {
    content: "";
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    background-color: #e20e20;
    border-radius: 50%;
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .c-search-map {
        position: relative;
    }
    .c-search-map .c-search-map__image {
        width: 100%;
        height: 450px;
    }
    .c-search-map .l-container,
    .c-search-map .wp-block-group__inner-container {
        position: relative;
    }

    .c-search-map__content {
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: -40px;
        padding: 35px 40px;
        margin-top: 0;
    }

    .c-search-map__list {
        margin: 32px 32px 0;
    }

    .c-search-map__list li:nth-child(-n + 3) {
        margin-top: 0;
    }
}
.c-social {
    margin-top: 20px;
}

.c-social__list {
    display: flex;
}

.c-social__list li a {
    display: block;
    line-height: 1;
    padding-right: 12px;
}
.c-social__list li .icon {
    width: 16px;
    height: 16px;
    fill: #919191;
}

.c-info-tile .c-badge {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}
.c-info-tile .c-badge .icon {
    width: 24px;
    height: 24px;
}

@media screen and (min-width: 768px) {
    .c-social {
        margin-top: 0;
    }

    .c-info-tile .c-badge {
        width: 72px;
        height: 72px;
    }

    .c-info-tile .c-badge .icon {
        width: 33px;
        height: 33px;
    }
}

.c-info-tile .c-link {
    margin-top: 16px;
}

.c-info-tile__title {
    margin-bottom: 8px;
}

.c-info-tile--inline {
    display: flex;
    align-items: center;
}

.c-info-tile--inline .c-badge {
    margin-right: 24px;
    margin-bottom: 0;
}
.c-info-tile--inline .c-info-tile__title {
    margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
    .c-info-tile__title {
        font-size: 20px;
    }

    .c-info-tile--small {
        max-width: 380px;
    }
}
.c-mini-tile__icon {
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: #f8f7f7;
    padding: 9px;
    border-radius: 9px;
    margin-right: 15px;
}
.c-mini-tile .icon {
    width: 25px;
    height: 25px;
    fill: #e20e20;
}

.c-mini-tile--location {
    color: #e20e20;
    font-weight: 600;
    margin-inline: auto;
    text-decoration: underline;
}
.c-mini-tile--location .c-mini-tile__icon {
    width: 48px;
    height: 48px;
    padding: 8px;
}
.c-mini-tile--location .c-mini-tile__icon .icon {
    width: 24px;
    height: 32px;
}

.c-mini-tile--download {
    color: #e20e20;
    font-weight: 600;
    margin-inline: auto;
    text-decoration: underline;
}
.c-mini-tile--download .c-mini-tile__icon {
    width: 60px;
    height: 60px;
}
.c-mini-tile--download .c-mini-tile__icon .icon {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 767px) {
    .c-mini-tile {
        font-size: 14px;
    }
}
@media screen and (min-width: 768px) {
    .c-mini-tile__icon {
        width: 56px;
        height: 56px;
        padding: 14px;
    }

    .c-mini-tile--download .c-mini-tile__icon {
        width: 80px;
        height: 80px;
    }
}
.c-tile {
    position: relative;
}

.c-tile__figure {
    height: 184px;
}
.c-tile__figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.c-tile__title {
    position: absolute;
    top: 50%;
    left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    color: #fff;
    background-color: #e20e20;
    text-align: center;
    font-family: "usual", sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 50%;
    margin: 0 !important;
    overflow: hidden;
    transform: translateY(-50%);
}

.c-notice {
    color: #bd0d1c;
    background-color: #fff;
    text-align: center;
    font-family: "usual", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px;
    border: 2px solid #e20e20;
}

@media screen and (min-width: 1024px) {
    .c-notice {
        font-size: 22px;
        padding: 24px 180px;
    }
}
.c-news {
    display: block;
}
.c-news:hover .c-news__figure img {
    transform: scale(1.1);
}
.c-news:hover .c-news__title {
    color: #e20e20;
}

.c-news__figure {
    height: 200px;
    margin-bottom: 16px;
    overflow: hidden;
}
.c-news__figure img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    transition: 0.3s ease;
}

.c-news__author {
    color: #e20e20;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 16px;
}
.c-news__author small {
    color: #7d7b7b;
    text-transform: none;
}

.c-news__title {
    margin: 0;
    transition: 0.3s ease;
}

.c-news__excerpt {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.c-news--inline {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 130px;
    padding-left: 150px;
}
.c-news--inline .c-news__title {
    display: -webkit-box;
    font-size: 14px;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.c-news--inline .c-news__figure {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 130px;
    height: auto;
    margin-bottom: 0;
}
.c-news--inline .c-news__author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.c-news--inline .c-news__cat {
    margin-top: auto;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .c-news__figure {
        height: 450px;
    }

    .c-news--inline {
        min-height: 180px;
        padding-left: 180px;
    }
    .c-news--inline .c-news__title {
        font-size: 16px;
    }
    .c-news--inline .c-news__figure {
        width: 160px;
    }
    .c-news--inline .c-news__author {
        font-size: 14px;
    }
}
.c-newsletter {
    color: #fff;
    background-color: #e20e20;
    padding: 20px;
    margin: 0 -20px;
}
.c-newsletter .c-form-field label {
    color: #fff;
    line-height: 1.5;
    padding-left: 0;
    margin-bottom: 8px;
}
.c-newsletter .c-checkbox {
    margin-top: 16px;
}
.c-newsletter .c-checkbox label {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}
.c-newsletter .c-checkbox label a {
    color: #fff;
}

.c-newsletter__header {
    margin-bottom: 16px;
}
.c-newsletter__header p {
    margin: 0;
}

.c-newsletter__title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 8px !important;
}

@media screen and (min-width: 768px) {
    .c-newsletter {
        padding: 32px;
    }
}
@media screen and (min-width: 1024px) {
    .c-newsletter {
        position: absolute;
        top: -80px;
        right: 30px;
        max-width: 308px;
        margin: 0;
    }
}
@media screen and (min-width: 1440px) {
    .c-newsletter {
        padding: 32px 48px;
        max-width: 428px;
    }
}
.c-category {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 16px;
    transition: 0.3s ease;
}
.c-category__figure {
    width: 110px;
    height: 100px;
    border-radius: 7px;
    margin-right: 16px;
    overflow: hidden;
}
.c-category__figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}
.c-category__title {
    transition: 0.3s ease;
}
.c-category:hover,
.c-category.u-is-active {
    color: #fff;
    background-color: #e20e20;
}
.c-category:hover .c-category__title,
.c-category.u-is-active .c-category__title {
    color: #fff;
}

.c-title {
    display: flex;
    align-items: center;
    color: #252525;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.c-title::before {
    content: "";
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    background-color: #e20e20;
    border-radius: 50%;
    margin-right: 12px;
}

.c-heading--center {
    text-align: center;
}

.c-heading--center .c-heading__title {
    justify-content: center;
}

.c-heading .c-link {
    margin-top: 8px;
}

@media screen and (min-width: 768px) {
    .c-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .c-heading--center {
        justify-content: center !important;
    }
    .c-heading .c-link {
        margin-top: 0;
    }
}
.c-box {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    padding: 16px 24px;
}
.c-box .icon {
    width: 60px;
    height: 50px;
}
.c-box__header {
    margin-bottom: 16px;
}
.c-box__title {
    color: #353434;
    font-family: "usual", sans-serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
}
.c-box__text {
    margin-bottom: 32px;
}
.c-box__footer {
    color: #fff;
    background: #e20e20;
    font-family: "usual", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    padding: 14px 0 20px;
    margin: 32px -48px -16px;
    margin-top: auto;
}
.c-box__footer strong {
    display: block;
    font-size: 36px;
    letter-spacing: -2px;
}
.c-box__footer span {
    display: -webkit-box;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
    .c-box {
        padding: 32px 48px;
    }
    .c-box__title {
        margin-top: 32px !important;
    }
    .c-box__footer {
        margin-inline: -60px;
        margin-bottom: -32px;
    }
}
@media screen and (min-width: 1024px) {
    .c-box__text {
        margin-bottom: 50px;
    }
    .c-box__footer {
        margin-inline: -72px;
    }
}
/*FOOTER*/
.c-site-footer {
    color: #8d9295;
    background-color: #f8f7f7;
    padding-inline: 0;
    padding-top: 24px;
    padding-bottom: 90px;
    margin-top: 60px;
}

.c-site-footer__nav {
    margin-top: 30px;
}

.c-site-footer__title {
    color: #7d7b7b;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.c-site-footer__meta {
    padding-bottom: 20px;
    border-bottom: 1px solid #c4c4c4;
    margin-top: 30px;
}

.c-site-footer__logo {
    margin-right: 20px;
}

.c-site-footer__text {
    flex: 1;
    color: #9b9b9b;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 2px;
}
.c-site-footer__text strong {
    font-family: "usual", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.c-site-footer__menu {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}
.c-site-footer__menu li {
    margin-bottom: 8px;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.c-site-footer__social {
    justify-content: center;
    text-align: center;
    margin-top: 16px;
    -webkit-box-pack: center;
}
.c-site-footer__social.c-social li {
    font-size: 18px;
    line-height: 1;
}

.c-site-footer__copy {
    font-size: 12px;
    text-transform: lowercase;
    margin-top: 20px;
}

.c-site-footer__columns .c-site-footer__menu {
    -moz-column-count: initial;
    column-count: initial;
}
.c-site-footer__columns .c-site-footer__menu li:first-child {
    color: #7d7b7b;
    font-family: "usual", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/*STICKY BUTTON FOOTER*/
.c-fixed-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: inline-flex;
    width: 100%;
    background-color: #e20e20;
    padding-block: 28px;
    border-top: 1px solid #e20e20;
    transition: 0.3s ease;
    transform: translateY(100%);
    z-index: 10;
}

body.u-scrolled .c-fixed-footer {
    transform: translateY(0);
}

.c-fixed-footer__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.c-fixed-footer__button svg {
    width: 16px;
    height: 16px;
    transition: 0.3s ease;
    fill: #fff;
}

.c-fixed-footer:hover {
    background-color: #494949;
}

.c-fixed-footer:hover .c-fixed-footer__button {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .c-site-footer {
        padding-top: 40px;
        padding-bottom: 100px;
        margin-top: 120px;
    }

    .c-site-footer__columns {
        gap: 60px;
        margin-bottom: 36px;
    }

    .c-site-footer__menu:not(.c-site-footer__menu--1col) {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .c-site-footer__meta {
        padding-bottom: 30px;
        margin-top: 40px;
    }

    .c-site-footer__social {
        justify-content: flex-end;
        margin-top: 0;
    }

    .c-site-footer__copy {
        margin-top: 30px;
    }

    .c-fixed-footer {
        padding-block: 24px;
    }

    .c-fixed-footer__button {
        font-size: 16px;
    }

    .c-fixed-footer__button svg {
        width: 24px;
        height: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .c-site-footer .l-container,
    .c-site-footer .wp-block-group__inner-container {
        position: relative;
    }

    .c-site-footer__nav {
        width: 50%;
        margin-top: 0;
    }

    .c-site-footer__columns {
        width: 50%;
    }
    .c-site-footer__columns .c-site-footer__nav {
        width: initial;
    }
}
