@font-face {
    font-display: optional;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: local("Inter Bold"), local("inter-bold"), url(../fonts/inter-bold.woff) format("woff"), url(../fonts/inter-bold.woff) format("woff")
}

@font-face {
    font-display: optional;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: local("Inter Regular"), local("inter-regular"), local("inter-regular"), url(../fonts/inter-regular.woff) format("woff2"), url(../fonts/inter-regular.woff) format("woff")
}

@font-face {
    font-display: optional;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: local("Inter Bold"), local("inter-bold"), local("inter-bold"), url(../fonts/inter-bold.woff) format("woff"), url(../fonts/inter-bold.woff) format("woff")
}

*,
*::before,
*::after {
    box-sizing: border-box
}

:focus {
    outline-color: var(--lt-color-primary);
    outline-style: dotted;
    outline-width: 1px
}

html {
    scroll-padding-top: 90px
}

body {
    background: var(--lt-color-bg-primary);
    color: var(--lt-color-text-primary);
    font-family: "Inter", sans-serif;
    margin: 0;
    min-width: 360px
}

figure,
picture {
    display: block;
    margin: 0
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
    transition: opacity .3s ease-out
}

a img:hover {
    opacity: .8
}

a {
    color: var(--lt-color-primary);
    text-decoration: none;
    transition: all .3s ease-out;
    transition-property: color, background-color, border
}

a:active,
a:hover {
    color: var(--lt-color-secondary)
}

.skip-to-content {
    left: -9999px;
    position: absolute;
    top: -9999px
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important
}

form {
    clear: both;
    width: 100%
}

form :focus {
    outline-offset: -3px
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

label {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 700
}

input,
select,
optgroup,
textarea {
    color: var(--lt-color-text-primary);
    font-family: "Inter", sans-serif;
    margin: 0;
    vertical-align: top;
    font-size: 1rem;
    line-height: 1.25rem
}

input,
select,
textarea {
    background: var(--lt-color-bg-form);
    border: 1px solid var(--lt-color-border);
    border-radius: 0;
    width: 100%
}

input,
select {
    height: 60px
}

input[type="text"],
textarea,
button {
    -webkit-appearance: none
}

input {
    overflow: visible;
    padding: 0 15px
}

input[type="file"] {
    border-radius: 0;
    border: 0;
    height: auto;
    padding: 0;
    width: auto
}

[type="checkbox"],
[type="radio"] {
    height: auto;
    padding: 0;
    vertical-align: middle;
    width: auto
}

select {
    text-transform: none
}

textarea {
    height: 180px;
    overflow: auto;
    padding: 15px;
    resize: none
}

[hidden] {
    display: none
}

.forms-content {
    background: var(--lt-color-bg-secondary);
    border-radius: 10px;
    margin: 15px auto;
    padding: 30px;
    text-align: center
}

@media (min-width:769px) {
    .forms-content {
        width: 50%
    }
}

.sidebar .forms-content {
    width: 100%
}

.forms-content>:first-child {
    margin-top: 0
}

.forms-content p {
    margin: 0
}

.forms-content__input {
    display: block;
    margin-top: 15px;
    text-align: center;
    width: 100%
}

.forms-content button.button,
.forms-content .content button.wp-block-button__link,
.content .forms-content button.wp-block-button__link,
.forms-content .content button.wp-block-file__button,
.content .forms-content button.wp-block-file__button {
    margin-top: 15px;
    max-width: 100%
}

@media (min-width:981px) {
    .cols--1-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:641px) {
    .cols--1-2 .cols--1-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

.cols--carousel {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width:768px) {
    .cols--carousel.cols--1-3 {
        grid-template-columns: none
    }
}

.cols--carousel .col {
    scroll-snap-align: center
}

.col>:first-child {
    margin-top: 0
}

.col>:last-child {
    margin-bottom: 0
}

.max {
    width: 100%;
    clear: both;
    position: relative
}

.wrapper {
    clear: both;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    min-width: 360px;
    position: relative;
    width: 100%;
    max-width: 1170px;
    padding: 0 30px
}

.wrapper--content {
    max-width: var(--lt-content-max-width)
}

.wrapper--max {
    max-width: 100%
}

.wrapper--cols {
    display: flex
}

@media (max-width:980px) {
    .wrapper--cols {
        flex-wrap: wrap;
        justify-content: center
    }
}

@media (min-width:981px) {
    .wrapper--cols {
        flex-wrap: nowrap;
        justify-content: space-between
    }
}

.wrapper__content {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--lt-content-max-width)
}

@media (max-width:980px) {
    .wrapper__content {
        width: 100%
    }
}

@media (min-width:981px) {
    .wrapper__content {
        width: calc(100% - 350px - 30px)
    }
}

.wrapper__sidebar {
    max-width: 350px;
    width: 100%
}

@media (max-width:980px) {
    .wrapper__sidebar {
        margin-top: 30px
    }
}

@media (min-width:981px) {
    .wrapper__sidebar {
        margin-left: 30px
    }
}

.header {
    background: var(--lt-color-primary);
    color: #FFF;
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 10;
    font-size: 0;
    line-height: 1
}

.header__bar {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: space-between
}

.header__menu {
    align-items: center;
    display: flex;
    position: relative;
    text-align: right;
    z-index: 1
}

@media (min-width:981px) {
    .header__menu {
        white-space: nowrap
    }
}

.logo {
    margin: 0
}

.logo__link {
    display: block;
    font-size: 26px;
    color: #fff;
    text-transform: lowercase;
    font-style: italic
}

.logo--header path {
    fill: #FFF
}

@media (max-width:980px) {
    .nav-open.button-icon {
        height: 24px;
        margin: 0 15px;
        width: 24px;
        z-index: 1
    }

    .nav-open.button-icon path {
        fill: #FFF
    }
}

@media (min-width:981px) {
    .nav-open.button-icon {
        display: none
    }
}

@media (max-width:980px) {
    .nav-close.button-icon {
        height: 30px;
        position: absolute;
        right: 21px;
        top: 15px;
        width: 30px;
        z-index: 5
    }

    .nav-close.button-icon path {
        fill: #FFF
    }
}

@media (min-width:981px) {
    .nav-close.button-icon {
        display: none
    }
}

@media (max-width:980px) {
    .nav {
        background: var(--lt-color-secondary);
        height: 100vh;
        left: -720px;
        overflow: auto;
        position: fixed;
        text-align: left;
        top: 0;
        transition: left .45s ease-in-out .15s;
        width: 330px;
        z-index: 3
    }

    .nav--active {
        left: 0
    }

    .nav::after {
        background: rgba(0, 0, 0, .66);
        bottom: 0;
        content: "";
        left: 330px;
        opacity: 0;
        position: fixed;
        right: calc(100vw * 2);
        top: 0;
        transition: opacity .15s ease-out, right .01s ease-out .6s;
        z-index: -1
    }

    .nav--active::after {
        opacity: 1;
        right: 0;
        transition: opacity .3s ease-out .6s, right .01s ease-out .01s
    }
}

@media (min-width:981px) {
    .nav {
        align-items: center;
        display: flex;
        justify-content: space-between
    }
}

.nav__list {
    flex-grow: 1;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav__item {
    position: relative
}

@media (max-width:980px) {
    .nav__item {
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
}

@media (min-width:981px) {
    .nav__item {
        display: inline-block;
        margin-right: 30px
    }

    .nav__item:first-child {
        margin-left: 30px
    }
}

.nav__item__expand {
    content: "";
    cursor: pointer;
    position: absolute;
    right: 0;
    font-size: 0;
    line-height: 1
}

@media (max-width:980px) {
    .nav__item__expand {
        background: transparent;
        border: 0;
        height: 60px;
        top: 0;
        width: 60px
    }
}

@media (min-width:981px) {
    .nav__item__expand {
        height: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px
    }
}

.nav__item__expand::after {
    right: calc(50% - 1.5px);
    top: calc(50% - 1.5px);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #fff;
    content: "";
    position: absolute;
    transition: all .3s ease-out;
    width: 0
}

@media (min-width:981px) {
    .nav__item__expand::after {
        right: 0
    }
}

.nav__item--submenu-active .nav__item__expand::after {
    transform: rotate(-180deg)
}

.nav__item a {
    color: #FFF;
    display: block;
    transition: background .3s ease-out, opacity .3s ease-out;
    font-size: .875rem;
    line-height: 1.125rem;
    font-family: "Inter", sans-serif;
    font-weight: 700
}

@media (max-width:980px) {
    .nav__item a {
        padding: 20px 30px
    }
}

@media (min-width:981px) {
    .nav__item a {
        padding: 7.5px 0
    }

    .nav__item a:hover {
        opacity: .75
    }
}

@media (max-width:980px) {
    .nav__item--submenu>a {
        border-right: 60px solid rgba(255, 255, 255, .1);
        padding-right: 15px
    }
}

@media (min-width:981px) {
    .nav__item--submenu>a {
        margin-right: 10px
    }
}

.nav__submenu {
    background: var(--lt-color-secondary);
    list-style: none;
    margin: 0;
    padding: 0
}

@media (max-width:980px) {
    .nav__submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height .6s ease-out
    }

    .nav__item--submenu-active .nav__submenu {
        max-height: 100vh;
        overflow: auto
    }
}

@media (min-width:981px) {
    .nav__submenu {
        left: -9999vw;
        opacity: 0;
        position: absolute;
        text-align: center;
        top: 200%;
        transform: translateX(-50%);
        transition: left .01s ease-out .6s, opacity .3s ease-out .3s, top .3s ease-out .3s;
        white-space: normal;
        width: 180px
    }

    .nav__item--submenu:hover>.nav__submenu,
    .nav__item--submenu-active>.nav__submenu {
        left: 50%;
        opacity: 1;
        top: 100%;
        transition: left .01s ease-out .01s, opacity .3s ease-out .3s, top .3s ease-out .3s
    }

    .nav__submenu::after {
        left: calc(50% - 5px / 2);
        top: 0;
        border-bottom: 5px solid var(--lt-color-secondary);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        content: "";
        position: absolute;
        transition: all .3s ease-out;
        width: 0
    }

    .nav__item--submenu-active .nav__submenu::after {
        top: -5px
    }
}

@media (min-width:981px) {
    .nav__submenu .nav__submenu {
        border-left: 1px solid var(--lt-color-secondary);
        left: 110%;
        top: 0;
        transform: translateX(0)
    }

    .nav__submenu .nav__submenu::after {
        display: none
    }
}

.nav__submenu__item {
    position: relative
}

@media (max-width:980px) {
    .nav__submenu__item {
        background: rgba(255, 255, 255, .1);
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
}

@media (min-width:981px) {
    .nav__submenu__item:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
}

.nav__submenu__item:hover .nav__submenu {
    left: 100%;
    opacity: 1;
    transition: left .3s ease-out .3s, opacity .3s ease-out .3s
}

@media (min-width:981px) {
    .nav__submenu__item .nav__submenu__item {
        background: rgba(255, 255, 255, .1)
    }

    .nav__submenu__item .nav__submenu__item:hover {
        background: rgba(255, 255, 255, .05)
    }
}

@media (min-width:981px) {
    .nav__submenu a {
        padding: 12.5px 15px
    }

    .nav__submenu a:hover {
        background: rgba(0, 0, 0, .1);
        opacity: 1
    }
}

.languages {
    align-items: center;
    background-color: #FFF;
    border-radius: 30px;
    flex-shrink: 0;
    gap: 15px;
    height: 30px;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0 15px
}

@media (max-width:980px) {
    .languages {
        display: inline-flex;
        margin: 15px 30px
    }
}

@media (min-width:981px) {
    .languages {
        display: flex;
        margin-right: 30px;
        order: 2
    }
}

.languages__item {
    flex-shrink: 0
}

.searchform--header {
    align-items: center;
    display: flex;
    height: 30px;
    width: 24px;
    z-index: 2
}

.searchform--header .searchform__wrapper {
    background: #FFF;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease-out, width .3s ease-out;
    width: 0
}

.searchform--header .searchform__wrapper--active {
    min-width: 300px;
    opacity: 1
}

@media (max-width:980px) {
    .searchform--header .searchform__wrapper--active {
        width: calc(100vw - 60px)
    }
}

@media (min-width:981px) {
    .searchform--header .searchform__wrapper--active {
        width: 100%
    }
}

.searchform--header .searchform__input,
.searchform--header .searchform__submit {
    background: transparent
}

.searchform--header .searchform__input {
    padding-left: 25px;
    padding-right: 30px;
    font-size: 1rem;
    line-height: 1.25rem
}

.searchform--header .searchform__submit.button-icon {
    cursor: pointer;
    height: 30px;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30px
}

.searchform--header .searchform__submit.button-icon path {
    fill: var(--lt-color-primary)
}

.searchform-open.button-icon {
    height: 24px;
    transition: transform .3s ease-out;
    width: 24px
}

.searchform-open.button-icon path {
    fill: #FFF;
    transition: fill .3s ease-out
}

.searchform-open.button-icon:hover path {
    fill: var(--lt-color-secondary)
}

.searchform-open--active.button-icon {
    transform: translateX(-5px)
}

.searchform-open--active.button-icon path {
    fill: var(--lt-color-primary)
}

.searchform-close.button-icon {
    height: 24px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px
}

.main__section {
    background-color: var(--lt-color-bg-secondary);
    padding: 40px 0px;
}

.main__section:nth-child(2n+1) {
    background-color: var(--lt-color-bg-primary)
}

.main__banner.main__section {
    align-items: center;
    background-color: var(--lt-color-bg-secondary);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: flex;
    padding: 80px 0px;
}

.main__banner.main__section p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFF
}

.main__about__cols {
    font-size: .875rem;
    line-height: 1.375rem
}

.main__cta__cols {
    margin-bottom: 30px
}

@media (min-width:769px) {
    .main__cta__cols {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column
    }
}

@media (min-width:769px) {
    .main__cta__img {
        order: 2;
        width: calc(33.4% - 15px)
    }
}

.main__cta__thumb {
    display: block;
    margin: auto
}

@media (max-width:768px) {
    .main__cta__text {
        margin-top: 30px;
        font-size: .875rem;
        line-height: 1.375rem;
        text-align: center
    }
}

@media (min-width:769px) {
    .main__cta__text {
        order: 1;
        width: calc(66.6% - 15px);
        text-align: center;
    }
}

.heading {
    margin-bottom: 30px
}

.heading__description {
    margin: 15px 0 0 0
}

.heading__description :first-child {
    margin-top: 0
}

.heading__description :last-child {
    margin-bottom: 0
}

.heading__byline {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 15px;
    row-gap: 5px
}

@media (max-width:768px) {
    .heading__byline {
        column-gap: 10px;
        font-size: .75rem;
        line-height: 1rem
    }
}

@media (min-width:769px) {
    .heading__byline {
        column-gap: 15px;
        font-size: .875rem;
        line-height: 1.125rem
    }
}

.heading__byline .icon {
    margin-right: 5px;
    vertical-align: -2px
}

.heading__byline .icon path {
    fill: var(--lt-color-text-secondary)
}

.heading__avatar {
    border-radius: 10px;
    grid-row: 1 / span 3
}

@media (max-width:768px) {
    .heading__avatar {
        height: 60px;
        width: 60px
    }
}

@media (min-width:769px) {
    .heading__avatar {
        height: 75px;
        width: 75px
    }
}

.breadcrumbs {
    color: var(--lt-color-primary);
    display: none;
    margin: 0 auto 15px auto;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0;
    line-height: 1
}

.breadcrumbs:empty {
    display: none
}

.breadcrumbs p {
    margin: 0
}

.breadcrumbs *+*::before {
    content: "\203A";
    padding: 0 5px;
    font-size: 1rem;
    line-height: 1.25rem
}

.breadcrumbs a,
.breadcrumbs .last {
    font-size: 1rem;
    line-height: 1.25rem
}

.breadcrumbs a {
    color: var(--lt-color-primary)
}

.breadcrumbs a:hover {
    color: var(--lt-color-secondary)
}

.breadcrumbs .separator {
    display: none
}

.loop {
    display: grid;
    gap: 30px
}

@media (max-width:480px) {
    .loop {
        grid-template-columns: 1fr
    }
}

@media (min-width:481px) and (max-width:768px) {
    .loop {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:481px) and (min-width:769px) {
    .loop {
        grid-template-columns: repeat(3, 1fr)
    }
}

.loop__item {
    display: flex;
    flex-direction: column;
    font-size: .875rem;
    line-height: 1.375rem
}

.loop__item__title.title {
    margin-top: 15px;
    font-size: 24px;
    line-height: 32px;
}

.loop__item__description {
    flex-grow: 1
}

.loop__item p {
    margin: 15px 0 0 0
}

.loop__item__byline {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr;
    margin-top: 15px
}

.loop__item__byline .icon {
    margin-right: 5px;
    vertical-align: -2px
}

.loop__item__byline .icon path {
    fill: var(--lt-color-text-secondary)
}

.pagination {
    clear: both;
    color: var(--lt-color-text-secondary);
    margin-top: 52.5px;
    overflow: hidden;
    position: relative;
    font-size: .75rem;
    line-height: 1rem;
    font-family: "Inter", sans-serif;
    font-weight: 700
}

@media (min-width:769px) {
    .pagination {
        display: flex;
        justify-content: space-between
    }
}

.pagination__links {
    text-align: center
}

.pagination__links * {
    border-radius: 30px;
    display: inline-block;
    height: 30px;
    margin: 7.5px 0 0 15px;
    min-width: 30px;
    padding: 7px 0;
    vertical-align: middle
}

@media (max-width:768px) {

    .pagination--posts .pagination__links *,
    .pagination--comments .pagination__links * {
        display: none
    }

    .pagination--posts .pagination__links * .pagination__title,
    .pagination--comments .pagination__links * .pagination__title {
        display: inline-block
    }
}

.pagination__title {
    margin: 7.5px 15px 0 0;
    padding: 7px 0
}

@media (max-width:768px) {
    .pagination__title {
        bottom: 0;
        left: 50%;
        position: absolute;
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .pagination--posts>.pagination__title {
        display: inline-block
    }
}

.pagination a {
    color: #FFF;
    background: var(--lt-color-primary)
}

.pagination a:hover {
    background: var(--lt-color-secondary)
}

.pagination .prev,
.pagination .next {
    position: relative;
    font-size: 0;
    line-height: 1
}

@media (max-width:768px) {

    .pagination .prev,
    .pagination .next {
        display: inline-block;
        margin-left: 0;
        margin-right: 0
    }
}

@media (max-width:768px) {
    .pagination .prev {
        float: left
    }
}

.pagination .prev::after {
    left: calc(50% - 3.5px);
    top: calc(50% - 5px);
    border-bottom: 5px solid transparent;
    border-right: 5px solid #fff;
    border-top: 5px solid transparent;
    content: "";
    position: absolute;
    transition: all .3s ease-out;
    width: 0
}

@media (max-width:768px) {
    .pagination .next {
        float: right
    }
}

.pagination .next::after {
    left: calc(50% - 2.5px);
    top: calc(50% - 5px);
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    content: "";
    position: absolute;
    transition: all .3s ease-out;
    width: 0
}

.sidebar__widget {
    clear: both;
    font-size: 1rem;
    line-height: 1.25rem
}

@media (min-width:981px) {
    .sidebar__widget--sticky {
        position: sticky;
        top: 30px
    }
}

.sidebar__widget:not(:first-child) {
    margin-top: 30px
}

.sidebar__widget:empty {
    display: none
}

.sidebar__widget>:first-child {
    margin-top: 0
}

.sidebar__widget>:last-child {
    margin-bottom: 0
}

.sidebar__widget__title+* {
    margin-top: 15px
}

.sidebar #wp-calendar {
    text-align: center
}

.sidebar #wp-calendar .pad,
.sidebar #wp-calendar tfoot td {
    background: transparent
}

.sidebar .textwidget:empty {
    display: none
}

.sidebar .title+ul,
.sidebar .title+ol {
    margin-top: 0
}

.footer {
    font-size: .875rem;
    line-height: 1.375rem;
    background-color: var(--lt-color-bg-secondary);
}

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

.banner-button {
    padding: 20px;
    width: 358px;
    text-align: center;
    border-radius: 8px;
    display: inline-block
}

.banner-home {
    width: 512px
}

.banner-home h1 {
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #ffffff !important;
}

.footer__cols {
    padding-bottom: 30px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer__bar.wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    background: var(--lt-color-primary);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.footer__info.col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

@media (max-width:767px) {
    .footer__cols {
        padding: 20px 16px
    }

    .banner-home {
        width: 100%
    }



    .wrapper {

        min-width: 358px;
        padding: 16px;
    }

    .banner-home {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .banner-home h1 {
        margin: 0;
        font-weight: 700;
        font-size: 25px;
        line-height: 32px;
        text-align: center
    }

    .main__banner.main__section p {
        text-align: center
    }

    .slide-home {
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    .title--medium--bigger {
        font-size: 24px;
        line-height: 32px
    }

    .footer__info.col p {
        text-align: center
    }

    .header__bar {
        padding: 0 16px
    }

    .title--big {
        font-size: 25px;
        line-height: 32px
    }
}

@media (max-width:640px) {
    .footer__links li {
        margin-top: 15px
    }
}

.footer__links li:first-child {
    margin-top: 15px
}

@media (max-width:768px) {
    .footer__bar {
        padding-bottom: 30px;
        padding-top: 30px
    }
}

@media (min-width:769px) {
    .footer__bar {
        background: var(--lt-color-primary);
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 60px;
        padding-bottom: 15px;
        padding-top: 15px
    }
}

.footer__copyright {
    color: #FFF;
    position: relative
}

.cookies {
    border-radius: 10px;
    background: var(--lt-color-bg-primary);
    border: 1px solid var(--lt-color-border);
    padding: 15px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity .15s ease-out, visibility .01s ease-out .6s;
    visibility: hidden
}

.cookies--visible {
    opacity: 1;
    transition: opacity .3s ease-out .6s, visibility .01s ease-out .01s;
    visibility: visible
}

@media (max-width:768px) {
    .cookies {
        bottom: 0;
        left: 0;
        max-width: 100%
    }
}

@media (min-width:769px) {
    .cookies {
        bottom: 10px;
        left: 10px;
        max-width: 300px
    }
}

.cookies__text {
    display: block;
    margin-bottom: 15px;
    font-size: .875rem;
    line-height: 1.125rem
}

.banner {
    position: relative;
    text-align: center;
    font-size: 0;
    line-height: 1
}

.banner *:not(script),
.content .banner *:not(script) {
    margin: 0 auto
}

[class*="wp-block"] .banner,
.forms-content .banner,
.wpcf7 .banner .banner:empty {
    display: none
}

.banner--full {
    background: var(--lt-color-bg-secondary);
    padding: 15px 0
}

.banner--header {
    padding-top: 15px
}

@media (min-width:769px) {
    .banner--mobile {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        visibility: hidden
    }

    .banner--mobile * {
        display: none !important
    }
}

@media (max-width:768px) {
    .banner--desktop {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        visibility: hidden
    }

    .banner--desktop * {
        display: none !important
    }
}

.banner--content {
    clear: both;
    float: none;
    margin: 30px auto;
    width: 100%
}

@media (min-width:769px) {
    .banner--content--left {
        clear: left;
        float: left;
        margin: 5px 30px 30px 0;
        width: 300px
    }

    .banner--content--right {
        clear: right;
        float: right;
        margin: 5px 0 30px 30px;
        width: 300px
    }
}

.banner__title {
    display: block;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: .75rem;
    line-height: 1rem
}

.button,
.content .wp-block-button__link,
.content .wp-block-file__button {
    background: var(--lt-color-primary);
    border-radius: 10px;
    border: 0;
    color: #FFF;
    cursor: pointer;
    display: table;
    height: auto;
    margin: 0 auto;
    padding: 18px 30px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    -webkit-appearance: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
    transition-property: color, background-color, border;
    transition: all .3s ease-out
}

@media (max-width:768px) {

    .button,
    .content .wp-block-button__link,
    .content .wp-block-file__button {
        max-width: 100%
    }
}

@media (min-width:769px) {

    .button,
    .content .wp-block-button__link,
    .content .wp-block-file__button {
        max-width: 360px
    }
}

.button:not(a):not(div),
.content .wp-block-button__link:not(a):not(div),
.content .wp-block-file__button:not(a):not(div) {
    height: 60px;
    padding-bottom: 0;
    padding-top: 0
}

.button:hover,
.content .wp-block-button__link:hover,
.content .wp-block-file__button:hover {
    background: var(--lt-color-secondary);
    color: #FFF
}

.button:disabled,
.content .wp-block-button__link:disabled,
.content .wp-block-file__button:disabled {
    opacity: .33
}

.button--small {
    padding: 12.5px 30px;
    font-size: 1rem;
    line-height: 1.25rem
}

.button--small:not(a):not(div) {
    height: 45px
}

.button-icon {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    -webkit-appearance: none;
    font-size: 0;
    line-height: 1
}

.icon {
    display: inline-block;
    height: auto;
    position: relative;
    font-size: 0;
    line-height: 1
}

.icon--center {
    display: flex;
    height: 100%;
    position: relative;
    width: 100%
}

.icon svg {
    max-height: 100%;
    max-width: 100%;
    overflow: visible;
    transition: opacity .3s ease-out
}

.icon svg path,
.icon svg rect {
    transition: fill .3s ease-out
}

.icon--center svg {
    height: auto;
    margin: auto;
    width: auto
}

.title {
    color: var(--lt-color-secondary);
    display: block;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700
}

.title+.title {
    margin-top: 30px
}

.title--small {
    font-size: 1.25rem;
    line-height: 1.5rem
}

@media (max-width:768px) {
    .title--medium {
        font-size: 1.5rem;
        line-height: 1.75rem;
        text-align: center
    }
}

@media (min-width:769px) {
    .title--medium {
        font-size: 2rem;
        line-height: 2.25rem;
        text-align: center
    }
}

.title--big {
    border-bottom: 1px solid var(--lt-color-border);
    padding-bottom: 30px;
    text-align: center
}

.title--section {
    color: var(--lt-color-primary);
    margin-bottom: 30px
}

@media (max-width:768px) {
    .title--section {
        font-size: 1rem;
        line-height: 1.25rem;
        text-align: center;
    }
}

@media (min-width:769px) {
    .title--section {
        font-size: 1.25rem;
        line-height: 1.5rem;
        text-align: center;
    }
}

.title--section::before {
    content: "\2014\000A0"
}

@media (max-width:768px) {
    .title--singular {
        font-size: 2.75rem;
        line-height: 3rem
    }
}

@media (min-width:769px) {
    .title--singular {
        font-size: 3.5rem;
        line-height: 3.75rem
    }
}

.thumb {
    border-radius: 10px;
    display: block;
    width: 100%
}

#subscribe-email input {
    text-align: center;
    min-width: 100%
}

#subscribe-submit {
    margin-bottom: 0
}

#subscribe-submit button {
    width: 100%
}

.comments-form__fields .comment-subscription-form {
    margin: 0 0 15px 0;
    font-size: 0;
    line-height: 1
}

.comments-form__fields .comment-subscription-form+.comment-subscription-form {
    margin: 0 0 30px 0
}

.comments-form__fields input {
    margin-right: 7.5px
}

.comments-form__fields .subscribe-label {
    display: inline;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin: 0;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.25rem
}

.lazyload,
.lazyloading {
    opacity: 0
}

.lazyloaded {
    opacity: 1;
    transition: opacity .3s ease-out
}

.slide-home {
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}