@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #FBF0DC;
    font-family: "DM Sans", sans-serif;
    color: #474344;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
    scroll-behavior: smooth;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: rgba(71, 67, 68, 0);
    transition: 0.3s;
    z-index: 99;
}

.bar-alt {
    background-color: #FFFFFF;
}

.bar-fix {
    padding-top: 150px;
}

.bar-compact {
    height: 90px;
    background-color: rgba(71, 67, 68, 0.45);
    backdrop-filter: blur(16px);
    box-shadow: 0px 0px 24px -8px rgba(0, 0, 0, 0.25);
}

.bar-alt.bar-compact {
    background-color: rgba(255, 255, 255, 0.45);
}

.bar-layout {
    display: flex;
    column-gap: 32px;
    width: 100%;
    height: 100%;
    padding-left: 54px;
    padding-right: 54px;
    margin: 0 auto;
    transition: 0.3s;
}

.bar-brand {
    flex: none;
    display: flex;
    align-items: center;
    padding-right: 24px;
}

.bar-brand img {
    width: 314px;
    height: 94px;
    transition: 0.3s;
}

.bar-compact .bar-brand img {
    width: 220px;
    height: 64px;
}

.bar-brand-link {
    display: block;
}

.bar-buttons-frame {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 2px;
    padding-right: 24px;
}

.bar-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 752px;
}

.bar-button {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    border-bottom: solid 2px transparent;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    transition: 0.25s;
}

.bar-alt .bar-button {
    color: #474344;
    text-shadow: none;
}

.bar-button:hover {
    opacity: 0.5;
}

.touch .bar-button:hover {
    opacity: 1;
}

.bar-button:active,
.touch .bar-button:active {
    opacity: 0.5;
}

.bar-button-on {
    border-bottom-color: #FFFFFF;
}

.bar-button-on:hover {
    opacity: 1;
}

.touch .bar-button-on:hover {
    opacity: 1;
}

.bar-button-on:active,
.touch .bar-button-on:active {
    opacity: 1;
}

.bar-submenu {
    position: relative;
}

.bar-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
    padding-top: 6px;
    z-index: 100;
}

.bar-box-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    padding: 18px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.75);
}

.bar-alt .bar-box-buttons {
    background-color: rgba(71, 67, 68, 0.1);
}

.bar-box-button {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #474344;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.25s;
}

.bar-box-button:first-of-type {
    padding-top: 0px;
}

.bar-box-button:last-of-type {
    padding-bottom: 0px;
}

.bar-box-button:hover {
    color: #B53C09;
}

.touch .bar-box-button:hover {
    color: #474344;
}

.bar-box-button:active,
.touch .bar-box-button:active {
    color: #B53C09;
}

.bar-box-button-on {
    color: #B53C09;
}

.bar-box-button-on:hover {
    color: #B53C09;
}

.touch .bar-box-button-on:hover {
    color: #B53C09;
}

.bar-box-button-on:active,
.touch .bar-box-button-on:active {
    color: #B53C09;
}

.bar-actions {
    flex: none;
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.bar-action {
    opacity: 0.5;
    transition: 0.25s;
}

.bar-action:hover {
    opacity: 1;
}

.touch .bar-action:hover {
    opacity: 0.5;
}

.bar-action:active,
.touch .bar-action:active {
    opacity: 1;
}

.bar-action-on {
    opacity: 1;
}

.bar-action-on:hover {
    opacity: 1;
}

.touch .bar-action-on:hover {
    opacity: 1;
}

.bar-action-on:active,
.touch .bar-action-on:active {
    opacity: 1;
}

.bar-networks {
    flex: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.bar-network {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    transition: 0.25s;
}

.bar-network-youtube {
    padding-top: 2px;
}

.bar-network:hover {
    opacity: 0.5;
}

.touch .bar-network:hover {
    opacity: 1;
}

.bar-network:active,
.touch .bar-network:active {
    opacity: 0.5;
}

.bar-menu {
    flex: none;
    display: none;
    align-items: center;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 38px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.bar-alt .bar-menu-line {
    background-color: #474344;
}

.bar-menu-btn:hover .bar-menu-line {
    transform: scaleX(0.8);
}

.touch .bar-menu-btn:hover .bar-menu-line {
    transform: scaleX(1);
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    transform: scaleX(0.8);
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: rgba(251, 240, 220, 0.9);
    backdrop-filter: blur(8px);
    animation: panel-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 67, 68, 0.85);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.panel-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
    padding-left: 32px;
    padding-right: 32px;
}

.panel-close {
    position: absolute;
    top: 36px;
    right: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 21px;
    height: 21px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-langs {
    display: flex;
    column-gap: 24px;
    padding-bottom: 48px;
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: flex-start;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
}

.panel-link-block {
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #B53C09;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    opacity: 0.5;
}

.touch .panel-link:hover {
    opacity: 1;
}

.panel-link:active,
.touch .panel-link:active {
    opacity: 0.5;
}

.panel-link-on {
    opacity: 0.5;
}

.panel-link-on:hover {
    opacity: 0.5;
}

.touch .panel-link-on:hover {
    opacity: 0.5;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    opacity: 0.5;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.6s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.7s;
}

.panel-link-block:nth-child(7) {
    animation-delay: 0.8s;
}

.panel-link-block:nth-child(8) {
    animation-delay: 0.9s;
}

.panel-link-block:nth-child(9) {
    animation-delay: 1s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-networks {
    flex: none;
    display: flex;
    column-gap: 24px;
}

.panel-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.panel-social-youtube {
    padding-top: 3px;
}

.panel-social img {
    transition: 0.25s;
}

.panel-social:hover img {
    opacity: 0.5;
}

.touch .panel-social:hover img {
    opacity: 1;
}

.panel-social:active img,
.touch .panel-social:active img {
    opacity: 0.5;
}

.panel-social:nth-child(1) {
    animation-delay: 1s;
}

.panel-social:nth-child(2) {
    animation-delay: 1.25s;
}

.panel-social:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBALS */

.margin {
    padding-left: 24px;
    padding-right: 24px;
}

.margin-alt {
    padding-left: 70px;
    padding-right: 70px;
}

.frame {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.frame-alt {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.frame-alt-2 {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.frame-alt-3 {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.bg-white {
    background-color: #FFFFFF;
}

.layout-content {
    display: flex;
    column-gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.layout-content-text {
    order: 1;
    width: 50%;
    padding-top: 32px;
    padding-bottom: 32px;
}

.layout-content-pic {
    order: 2;
    width: 50%;
}

.layout-content-picture {
    position: relative;
    width: 100%;
    padding-bottom: 85.71428571428571%;
    background-color: #FBF0DC;
    overflow: hidden;
}

.layout-content-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/sonia.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
}

.pretitle {
    color: #B53C09;
    font-family: "Raleway", serif;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.pretitle-alt {
    padding-bottom: 10px;
    color: #B53C09;
    font-family: "Raleway", serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.tagline {
    padding-bottom: 16px;
    color: #B53C09;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
}

.title {
    position: relative;
    color: #B53C09;
    font-family: "Raleway", serif;
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
}

.centered {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.text {
    font-size: 22px;
    line-height: 32px;
}

.text p {
    padding-top: 24px;
}

.button-frame {
    padding-top: 48px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 100px;
    background-color: #B53C09;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background-color: #FEBD59;
    color: #B53C09;
}

.touch .button:hover {
    background-color: #B53C09;
    color: #FFEEEA;
}

.button:active,
.touch .button:active {
    background-color: #FEBD59;
    color: #B53C09;
}

.button-alt {
    background-color: #FEBD59;
    color: #474344;
}

.button-alt:hover {
    background-color: #B53C09;
    color: #FFFFFF;
}

.touch .button-alt:hover {
    background-color: #FEBD59;
    color: #474344;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #B53C09;
    color: #FFFFFF;
}

/* SLIDER */

.slider-swiper {
    position: relative !important;
    height: 100% !important;
    background-color: #777673;
    --swiper-theme-color: #FFFFFF;
    --swiper-navigation-size: 24px;
    --swiper-navigation-sides-offset: 0px;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 40px;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-bullet-horizontal-gap: 7px;
    --swiper-pagination-bullet-inactive-color: rgb(255, 255, 255);
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.slider-swiper-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: 1200px;
    height: 24px;
    margin: 0 auto;
    z-index: 2;
}

.slider-swiper-nav .swiper-button-prev {
    left: 16px !important;
    width: 24px;
    height: 24px;
    margin-top: -12px !important;
    background-image: url(../assets/prev.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-swiper-nav .swiper-button-prev::after {
    content: '';
}

.slider-swiper-nav .swiper-button-next {
    right: 16px !important;
    width: 24px;
    height: 24px;
    margin-top: -12px !important;
    background-image: url(../assets/next.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-swiper-nav .swiper-button-next::after {
    content: '';
}

.slider-slide {
    position: relative;
    overflow: hidden;
}

.slider-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation-name: slider-picture-anima;
    animation-duration: 45s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.45;
}

@keyframes slider-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.slider-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 164px;
    padding-bottom: 100px;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 2;
}

.slider-content>div {
    width: 100%;
}

.slider-header {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    padding-bottom: 40px;
    color: #FFFFFF;
    font-family: "Raleway", serif;
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(-30%);
}

.slider-slide-on .slider-header {
    animation-name: slider-header-anima;
    animation-fill-mode: forwards;
    animation-duration: 2s;
}

@keyframes slider-header-anima {
    0% {
        opacity: 0;
        transform: translateY(-30%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-caption {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
}

.slider-slide-on .slider-caption {
    animation-name: slider-caption-anima;
    animation-fill-mode: forwards;
    animation-duration: 6s;
}

@keyframes slider-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slider-button {
    padding-top: 64px;
    text-align: center;
    opacity: 0;
    transform: translateY(20%);
}

.slider-slide-on .slider-button {
    animation-name: slider-button-anima;
    animation-fill-mode: forwards;
    animation-duration: 3s;
}

@keyframes slider-button-anima {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */

.header {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #777673;
    overflow: hidden;
}

.header-alt {
    height: 60%;
}

.header-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation-name: header-picture-anima;
    animation-duration: 45s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.45;
}

.header-about {
    background-image: url(../assets/about.jpg);
}

.header-videos {
    background-image: url(../assets/videos.jpg);
}

.header-blog {
    background-image: url(../assets/blog.jpg);
}

@keyframes header-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
}

.header-alt .header-content {
    align-items: flex-end;
    padding-bottom: 62px;
}

.header-title {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
    color: #FFFFFF;
    font-family: "Raleway", serif;
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(-30%);
    animation-name: header-title-anima;
    animation-fill-mode: forwards;
    animation-duration: 2s;
}

.header-alt .header-title {
    padding-bottom: 16px;
}

@keyframes header-title-anima {
    0% {
        opacity: 0;
        transform: translateY(-30%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-caption {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    animation-name: header-caption-anima;
    animation-fill-mode: forwards;
    animation-duration: 6s;
}

@keyframes header-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header-down {
    position: absolute;
    left: 50%;
    bottom: 10%;
    margin-left: -12px;
    animation: header-down-anima 1.5s linear infinite;
}

.header-down img {
    width: 24px;
    height: 24px;
}

@keyframes header-down-anima {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    40% {
        opacity: 0;
        transform: translateY(16px) scale(.95);
    }

    60% {
        opacity: 0;
        transform: translateY(-16px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ABOUT */

.about-swiper {
    position: relative !important;
    height: 100% !important;
    padding-bottom: 48px !important;
    --swiper-theme-color: #C9C9C9;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-bullet-inactive-color: #C9C9C9;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.about-slide {
    position: relative;
    overflow: hidden;
}

.about-slide-title {
    padding-top: 28px;
    font-family: "Raleway", serif;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
}

.about-slide-caption {
    padding-top: 16px;
    color: #B53C09;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    font-style: italic;
}

.about-slide-author {
    padding-top: 24px;
    color: #43200F;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

/* SERVICES */

.services {
    padding-top: 60px;
    padding-bottom: 130px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 52px;
}

.services-item {
    width: calc((100% - 20px) / 2);
    padding-bottom: 56px;
    border-radius: 24px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.services-item-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item-content {
    flex: auto;
    height: 100%;
}

.service-item-header {
    padding-top: 40px;
}

.service-item-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 1000px;
    background-color: #FBF0DC;
}

.service-item-icon svg {
    width: 100%;
    height: 100%;
}

.service-item-title {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.service-item-intro {
    padding-top: 36px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 24px;
    line-height: 34px;
}

.service-item-benefits {
    padding-top: 32px;
    padding-bottom: 24px;
    color: #B53C09;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.service-item-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    max-width: 500px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.service-item-benefit {
    display: flex;
    column-gap: 16px;
    color: #B53C09;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.service-item-tick img {
    width: 26px;
    height: 26px;
}

.service-item-button {
    flex: none;
    padding-top: 64px;
    text-align: center;
}

.service-header {
    padding-top: 32px;
    padding-bottom: 32px;
}

.service-icon {
    width: 190px;
    height: 190px;
    margin: 0 auto;
    border-radius: 1000px;
    background-color: #FBF0DC;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-booking {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.service-content {
    padding-bottom: 90px;
    font-size: 22px;
    line-height: 32px;
}

.service-content h2 {
    padding-top: 48px;
    color: #B53C09;
    font-family: "Raleway", serif;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
}

.service-content p {
    padding-top: 24px;
}

.service-content ul {
    padding-top: 24px;
    list-style: none;
}

.service-content ul li::before {
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    margin-top: -6px;
    margin-right: 14px;
    background-image: url(../assets/tick.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.service-consultation {
    padding-top: 90px;
    padding-bottom: 90px;
}

.service-consultation-subtitle {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #B53C09;
    font-weight: 700;
    text-align: left;
}

.service-consultation-content {
    font-size: 22px;
    line-height: 32px;
}

.service-consultation-content ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
}

.service-consultation-content ul li::before {
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    margin-top: -6px;
    margin-right: 14px;
    background-image: url(../assets/tick.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.service-consultation-note {
    padding-top: 40px;
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.service-consultation-button {
    text-align: center;
}

/* PACKS */

.packs {
    padding-bottom: 140px;
}

.packs-frame {
    position: relative;
    padding-left: 48px;
    padding-right: 48px;
}

.packs-swiper {
    width: 100%;
}

.packs .swiper-button-prev {
    width: 24px;
    height: 24px;
    left: 12px !important;
    margin-top: -12px !important;
    background-image: url(../assets/prev-alt.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.packs .swiper-button-prev::after {
    content: '';
}

.packs .swiper-button-next {
    right: 12px !important;
    width: 24px;
    height: 24px;
    margin-top: -12px !important;
    background-image: url(../assets/next-alt.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.packs .swiper-button-next::after {
    content: '';
}

.packs-slide {
    height: unset !important;
    border-radius: 24px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.packs-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.packs-header {
    flex: none;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.packs-content {
    flex: auto;
    height: 100%;
    padding-top: 36px;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 20px;
    line-height: 30px;
}

.packs-description {
    padding-bottom: 18px;
    padding-left: 40px;
    padding-right: 40px;
}

.packs-description-text {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    opacity: 0;
    transform: scale(0.9);
    animation: packs-description-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.packs-description-on .packs-description-text {
    display: block;
}

@keyframes packs-description-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.packs-description-btn {
    display: inline-flex;
    column-gap: 4px;
    color: #474344;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.packs-description-btn:hover {
    color: #B53C09;
}

.touch .packs-description-btn:hover {
    color: #474344;
}

.packs-description-btn:active,
.touch .packs-description-btn:active {
    color: #B53C09;
}

.packs-description-btn path {
    transition: 0.25s;
}

.packs-description-btn:hover path {
    fill: #B53C09;
}

.touch .packs-description-btn:hover path {
    fill: #474344;
}

.packs-description-btn:active path,
.touch .packs-description-btn:active path {
    fill: #B53C09;
}

.packs-description-btn svg {
    width: 14px;
    height: 9px;
}

.packs-duration {
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    color: #B53C09;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.packs-duration img {
    width: 32px;
    height: 32px;
    margin-top: -2px;
}

.packs-price {
    color: #B53C09;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.packs-button {
    flex: none;
    padding-bottom: 56px;
    text-align: center;
}

.packs-btn {
    margin-top: 20px;
}

/* REVIEWS */

.reviews {
    position: relative;
    padding-top: 100px;
    padding-bottom: 62px;
    background-color: #EEDED7;
    overflow: hidden;
}

.reviews-shapes-1 {
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 116%;
    background-image: url(../assets/shapes-1.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
}

.reviews-shapes-2 {
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 116%;
    background-image: url(../assets/shapes-2.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
}

.reviews-swiper {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    margin-top: 84px;
    padding-bottom: 80px !important;
}

.reviews-swiper .swiper-button-prev {
    top: unset !important;
    bottom: 0px !important;
    left: 45% !important;
    right: unset !important;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: 0px !important;
    background-image: url(../assets/prev-alt.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reviews-swiper .swiper-button-prev::after {
    content: '';
}

.reviews-swiper .swiper-button-next {
    top: unset !important;
    bottom: 0px !important;
    left: 55% !important;
    right: unset !important;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: 0px !important;
    background-image: url(../assets/next-alt.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reviews-swiper .swiper-button-next::after {
    content: '';
}

.reviews-slide {
    height: unset !important;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 48px;
    padding-right: 48px;
    border-radius: 24px;
    background-color: #FFFFFF;
}

.reviews-layout {
    display: flex;
    column-gap: 24px;
}

.reviews-quotes {
    padding-top: 5px;
}

.reviews-content {
    font-size: 26px;
    line-height: 36px;
}

.reviews-author {
    font-size: 16px;
    line-height: 24px;
}

.reviews-stars {
    display: flex;
    column-gap: 9px;
    padding-top: 40px;
}

.reviews-stars-off {
    opacity: 0.2;
}

.reviews-name {
    padding-top: 20px;
    text-transform: uppercase;
}

/* VIDEOS */

.videos {
    padding-bottom: 100px;
}

.videos-swiper {
    width: 100%;
    margin-top: 60px !important;
    padding-bottom: 40px !important;
    --swiper-theme-color: #B53C09;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-bullet-horizontal-gap: 7px;
    --swiper-pagination-bullet-inactive-color: #B53C09;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.videos-slide {
    height: unset !important;
}

.videos-picture {
    flex: none;
    position: relative;
    width: 100%;
    padding-bottom: 177.7777777777778%;
    border-radius: 16px;
    background-color: rgba(181, 60, 9, 0.1);
    overflow: hidden;
}

.videos-picture-alt {
    padding-bottom: 56.25%;
}

.videos-image {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.videos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #B53C09;
    opacity: 0;
    transition: 0.25s;
}

.videos-layout:hover .videos-overlay {
    opacity: 0.25;
}

.touch .videos-layout:hover .videos-overlay {
    opacity: 0;
}

.videos-layout:active .videos-overlay,
.touch .videos-layout:active .videos-overlay {
    opacity: 0.25;
}

.videos-header {
    padding-top: 24px;
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    overflow: hidden;
    transition: 0.25s;
}

.videos-layout:hover .videos-header {
    color: #B53C09;
}

.touch .videos-layout:hover .videos-header {
    color: #474344;
}

.videos-layout:active .videos-header,
.touch .videos-layout:active .videos-header {
    color: #B53C09;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.videos-grid-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.videos-group {
    padding-top: 48px;
    padding-bottom: 16px;
    margin-bottom: 48px;
    border-bottom: solid 1px rgba(181, 60, 9, 0.25);
    color: #B53C09;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
}

.videos-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
}

.videos-featured:hover .videos-overlay {
    opacity: 0.25;
}

.touch .videos-featured:hover .videos-overlay {
    opacity: 0;
}

.videos-featured:active .videos-overlay,
.touch .videos-featured:active .videos-overlay {
    opacity: 0.25;
}

/* ARTICLES */

.blog {
    padding-top: 60px;
    padding-bottom: 140px;
}

.blog-button {
    text-align: center;
}

.articles-filter {
    padding-top: 64px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
}

.articles-filter-title {
    padding-bottom: 32px;
    font-size: 28px;
    line-height: 38px;
}

.articles-filter-title-alt {
    padding-top: 32px;
}

.articles-filters {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.articles-filters-button {
    padding: 14px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 200px;
    border: solid 1px #B53C09;
    color: #B53C09;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    transition: 0.25s;
}

.articles-filters-button:hover {
    border-color: #FEBD59;
    color: #FEBD59;
}

.touch .articles-filters-button:hover {
    border-color: #B53C09;
    color: #B53C09;
}

.articles-filters-button:active,
.touch .articles-filters-button:active {
    border-color: #FEBD59;
    color: #FEBD59;
}

.articles-filters-button-on {
    border-color: transparent;
    background-color: #B53C09;
    color: #FBF0DC;
    cursor: default;
}

.articles-filters-button-on:hover {
    border-color: transparent;
    color: #FBF0DC;
}

.touch .articles-filters-button-on:hover {
    border-color: transparent;
    color: #FBF0DC;
}

.articles-filters-button-on:active,
.touch .articles-filters-button-on:active {
    border-color: transparent;
    color: #FBF0DC;
}

.articles-grid {
    display: none;
    position: relative;
    padding-bottom: 100px;
}

.articles-grid-alt {
    margin-top: 48px;
    padding-bottom: 48px;
}

.articles-layout {
    padding: 16px;
    padding-bottom: 48px;
}

.articles-header {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    transition: 0.25s;
}

.articles-picture {
    flex: none;
    position: relative;
    width: 100%;
    border-radius: 6px;
    background-color: rgba(181, 60, 9, 0.1);
    overflow: hidden;
}

.articles-picture img {
    width: 100%;
}

.articles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #B53C09;
    opacity: 0;
    transition: 0.25s;
}

.articles-layout:hover .articles-overlay {
    opacity: 0.25;
}

.touch .articles-layout:hover .articles-overlay {
    opacity: 0;
}

.articles-layout:active .articles-overlay,
.touch .articles-layout:active .articles-overlay {
    opacity: 0.25;
}

.articles-body {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-top: 24px;
}

.articles-header {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    transition: 0.25s;
}

.articles-layout:hover .articles-header {
    color: #B53C09;
}

.touch .articles-layout:hover .articles-header {
    color: #474344;
}

.articles-layout:active .articles-header,
.touch .articles-layout:active .articles-header {
    color: #B53C09;
}

.articles-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 18px;
    line-height: 22px;
    overflow: hidden;
    transition: 0.25s;
}

.articles-layout:hover .articles-intro {
    color: #B53C09;
}

.touch .articles-layout:hover .articles-intro {
    color: #474344;
}

.articles-layout:active .articles-intro,
.touch .articles-layout:active .articles-intro {
    color: #B53C09;
}

.articles-tag {
    display: inline-block;
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 4px;
    background-color: #E6DFD2;
    color: #B53C09;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.article-layout {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    column-gap: 72px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 48px;
    padding-bottom: 100px;
}

.article-title {
    padding-bottom: 16px;
    color: #474344;
}

.article-intro {
    padding-top: 18px;
    padding-bottom: 32px;
    font-size: 22px;
    line-height: 30px;
}

.article-author {
    display: flex;
    column-gap: 16px;
    align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: solid 1px rgba(181, 60, 9, 0.25);
    font-size: 18px;
    line-height: 24px;
}

.article-author-picture {
    width: 72px;
    height: 72px;
    border-radius: 500px;
    background-color: rgba(181, 60, 9, 0.1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.article-date {
    padding-top: 12px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 18px;
    line-height: 24px;
}

.article-picture {
    width: 100%;
    border-radius: 6px;
    background-color: rgba(181, 60, 9, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.article-picture img {
    width: 100%;
}

.article-download {
    display: inline-flex;
    align-items: center;
    column-gap: 14px;
    margin-top: 40px;
    margin-bottom: 32px;
    color: #B53C09;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    transition: 0.25s;
}

.article-download:hover {
    color: #FEBD59;
}

.touch .article-download:hover {
    color: #B53C09;
}

.article-download:active,
.touch .article-download:active {
    color: #FEBD59;
}

.article-download svg {
    width: 26px;
    height: 26px;
}

.article-download path {
    fill: #B53C09;
    transition: 0.25s;
}

.article-download:hover path {
    fill: #FEBD59;
}

.touch .article-download:hover path {
    fill: #B53C09;
}

.article-download:active path,
.touch .article-download:active path {
    fill: #FEBD59;
}

.article-share {
    padding-top: 16px;
    margin-top: 48px;
    border-top: solid 1px rgba(181, 60, 9, 0.25);
    color: #B53C09;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
}

.article-share-buttons {
    display: flex;
    column-gap: 4px;
    margin-top: 24px;
}

.article-share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

.article-share-button svg {
    width: auto;
    height: 18px;
}

.article-share-button path {
    fill: #474344;
    transition: 0.25s;
}

.article-share-button:hover path {
    fill: #B53C09;
}

.touch .article-share-button:hover path {
    fill: #474344;
}

.article-share-button:active path,
.touch .article-share-button:active path {
    fill: #B53C09;
}

.articles-suggestions-title {
    padding-bottom: 16px;
    margin-top: 16px;
    margin-bottom: 22px;
    border-bottom: solid 1px rgba(181, 60, 9, 0.25);
    color: #B53C09;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
}

.articles-suggestions {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-bottom: 72px;
}

.articles-suggestion {
    display: flex;
    column-gap: 16px;
    width: 100%;
}

.articles-suggestion:hover .articles-overlay {
    opacity: 0.25;
}

.touch .articles-suggestion:hover .articles-overlay {
    opacity: 0;
}

.articles-suggestion:active .articles-overlay,
.touch .articles-suggestion:active .articles-overlay {
    opacity: 0.25;
}

.articles-suggestion-picture {
    flex: none;
    width: 164px;
}

.articles-suggestion-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 6px;
    background-color: rgba(181, 60, 9, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.articles-suggestion-info {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.articles-suggestion-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    overflow: hidden;
    transition: 0.25s;
}

.articles-suggestion:hover .articles-suggestion-title {
    color: #B53C09;
}

.touch .articles-suggestion:hover .articles-suggestion-title {
    color: #474344;
}

.articles-suggestion:active .articles-suggestion-title,
.touch .articles-suggestion:active .articles-suggestion-title {
    color: #B53C09;
}

.articles-suggestion-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 15px;
    line-height: 19px;
    overflow: hidden;
}

/* CONTENT */

.content {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 16px;
}

.content h2,
.content h3,
.content p,
.content ul,
.content ol,
.content-image,
.content-embed {
    display: block;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
}

.content-embed {
    padding-top: 24px;
    padding-bottom: 24px;
}

.content-embed-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.content-embed-frame-alt {
    overflow: hidden;
}

.content-embed iframe {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.content-embed-frame iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.content strong,
.content b {
    font-weight: 700;
}

.content p,
.content ul,
.content ol {
    color: #474344;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.content ul,
.content ol {
    padding-left: 32px;
    padding-right: 0px;
}

.content li {
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
}

.content h2 {
    padding-top: 40px;
    color: #B53C09;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.content h3 {
    padding-top: 24px;
    color: #B53C09;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.content a,
.content a:link,
.content a:visited {
    color: #B53C09;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.content a:hover {
    opacity: 0.5;
}

.touch .content a:hover {
    opacity: 1;
}

.content a:active,
.touch .content a:active {
    opacity: 0.5;
}

.content-image {
    padding-top: 24px;
    padding-bottom: 24px;
}

.content img {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
}

.content-image-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.content-image-full img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
}

.content-image-with-border img {
    border: solid 1px #FFFFFF;
}

.content-image-with-bg img {
    padding: 24px;
    background-color: #FFFFFF;
}

.content figcaption {
    padding-top: 10px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    opacity: 0.5;
}

.content-embed figcaption {
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
}

/* LABELS */

.labels {
    position: fixed;
    bottom: 32px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 24px;
    max-width: 320px;
    z-index: 99;
}

.label-stamp {
    width: 110px;
    height: 110px;
    margin-right: 24px;
}

.label-stamp-alt {
    display: none;
    margin-top: 48px;
}

.label-stamp img {
    width: 100%;
    height: 100%;
}

@keyframes label-stamp-shake {

    0%,
    10%,
    100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(5deg);
    }

    25% {
        transform: rotate(-4deg);
    }

    30% {
        transform: rotate(4deg);
    }

    35% {
        transform: rotate(0deg);
    }

}

.label {
    display: flex;
    height: 56px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    background-color: #31BF3A;
    color: #FFFFFF;
    transition: 0.25s;
}

.label:hover {
    background-color: #B53C09;
}

.touch .label:hover {
    background-color: #31BF3A;
}

.label:active,
.touch .label:active {
    background-color: #B53C09;
}

.label-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 18px;
    padding-right: 8px;
}

.label-icon img {
    width: 30px;
    height: 30px;
}

.label-caption {
    display: flex;
    align-items: center;
    padding-right: 14px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

/* CONTACT */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-address {
    padding-top: 64px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    color: #474344;
    font-size: 18px;
    line-height: 24px;
    transition: 0.25s;
}

.contact-link img {
    width: 44px;
    height: auto;
}

.contact-link:hover {
    color: #B53C09;
}

.touch .contact-link:hover {
    color: #474344;
}

.contact-link:active,
.touch .contact-link:active {
    color: #B53C09;
}

.contact-caption {
    padding-top: 16px;
    padding-bottom: 24px;
    color: #B53C09;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-transform: uppercase;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 48px;
    border-radius: 8px;
    background-color: #EEDED7;
}

.contact-fields-alt {
    padding: 0px;
    border-radius: 0px;
    row-gap: 16px;
    background-color: transparent;
}

.contact-textbox {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 16px;
    border: solid 2px transparent;
    background-color: #FFFFFF;
    color: #B53C09;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    transition: 0.25s;
}

.contact-textbox:focus {
    border-color: #B53C09;
}

.contact-textbox::placeholder {
    color: #474344;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    opacity: 0.36;
}

.contact-textbox-alt {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 10px;
    border: solid 1px #707070;
    background-color: #FFFFFF;
    color: #B53C09;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    transition: 0.25s;
}

.contact-textbox-alt:focus {
    border-color: #B53C09;
}

.contact-textbox-alt::placeholder {
    color: #474344;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    opacity: 0.36;
}

.contact-textarea {
    width: 100%;
    height: 320px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 16px;
    border: solid 2px transparent;
    background-color: #FFFFFF;
    color: #B53C09;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.contact-textarea:focus {
    border-color: #B53C09;
}

.contact-textarea::placeholder {
    color: #474344;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    opacity: 0.36;
}

.contact-textarea-alt {
    width: 100%;
    height: 120px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 10px;
    border: solid 1px #707070;
    background-color: #FFFFFF;
    color: #B53C09;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.contact-textarea-alt:focus {
    border-color: #B53C09;
}

.contact-textarea-alt::placeholder {
    color: #474344;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    opacity: 0.36;
}

.contact-checkbox {
    position: relative;
    display: inline-block;
    padding-top: 4px;
    padding-left: 38px;
    margin-left: 20px;
    margin-top: 4px;
    margin-bottom: 20px;
    color: #474344;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-checkbox-alt {
    margin-left: 0px;
    padding-left: 36px;
    font-size: 16px;
    line-height: 16px;
}

.contact-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.contact-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: solid 1px #707070;
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.contact-checkbox:hover input~.contact-checkbox-checkmark {
    border-color: #B53C09;
}

.contact-checkbox input:checked~.contact-checkbox-checkmark {
    border-color: transparent;
    background-color: #B53C09;
}

.contact-checkbox-checkmark:after {
    content: "";
    display: none;
    position: absolute;
}

.contact-checkbox input:checked~.contact-checkbox-checkmark:after {
    display: block;
}

.contact-checkbox .contact-checkbox-checkmark:after {
    top: 1px;
    left: 7px;
    width: 8px;
    height: 15px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-button {
    text-align: center;
}

/* FAQS */

.faqs {
    background-color: #FFFFFF;
    padding-top: 70px;
    padding-bottom: 100px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
}

.faqs-item {
    border-bottom: solid 1px rgba(71, 67, 68, 0.3);
}

.faqs-header {
    display: flex;
    column-gap: 10px;
    cursor: pointer;
    padding-top: 24px;
    padding-bottom: 20px;
    color: #474344;
    transition: 0.25s;
}

.faqs-header:hover {
    color: #B53C09;
}

.touch .faqs-header:hover {
    color: #474344;
}

.faqs-header:active,
.touch .faqs-header:active {
    color: #B53C09;
}

.faqs-item-on .faqs-header {
    color: #B53C09;
}

.faqs-item-on .faqs-header:hover {
    color: #B53C09;
}

.touch .faqs-item-on .faqs-header:hover {
    color: #B53C09;
}

.faqs-item-on .faqs-header:active,
.touch .faqs-item-on .faqs-header:active {
    color: #B53C09;
}

.faqs-question {
    flex: auto;
    font-size: 24px;
    line-height: 32px;
}

.faqs-arrow {
    flex: none;
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    padding-right: 16px;
}

.faqs-arrow svg {
    transition: 0.5s;
}

.faqs-item-on .faqs-arrow svg {
    transform: rotate(180deg);
}

.faqs-arrow path {
    fill: #474344;
    transition: 0.25s;
}

.faqs-header:hover .faqs-arrow path {
    fill: #B53C09;
}

.touch .faqs-header:hover .faqs-arrow path {
    fill: #474344;
}

.faqs-header:active .faqs-arrow path,
.touch .faqs-header:active .faqs-arrow path {
    fill: #B53C09;
}

.faqs-item-on .faqs-arrow path {
    fill: #B53C09;
    transition: 0.25s;
}

.faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #B53C09;
}

.touch .faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #B53C09;
}

.faqs-item-on .faqs-header:active .faqs-arrow path,
.touch .faqs-item-on .faqs-header:active .faqs-arrow path {
    fill: #B53C09;
}

.faqs-response {
    display: none;
    width: 100%;
    padding-bottom: 34px;
    font-size: 20px;
    line-height: 28px;
    opacity: 0;
    transform: scale(0.9);
    animation: faqs-response-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.faqs-item-on .faqs-response {
    display: block;
}

.faqs-response p {
    padding-bottom: 8px;
}

.faqs-response p:last-of-type {
    padding-bottom: 0px;
}

@keyframes faqs-response-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* BANNER */

.banner {
    position: relative;
    background-color: #FEBD59;
    overflow: hidden;
}

.banner-picture {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-50%);
    opacity: 0.8;
}

.banner-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
    padding-top: 52px;
    padding-bottom: 52px;
}

.banner-circle {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border-radius: 1000px;
    background-color: #FBF0DC;
}

.banner-circle svg {
    width: 100%;
    height: 100%;
}

.banner-title {
    max-width: 540px;
    padding-bottom: 12px;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-caption {
    max-width: 540px;
    padding-bottom: 8px;
    color: #FFFFFF;
    font-size: 34px;
    line-height: 44px;
}

.banner-button {
    display: flex;
    justify-content: center;
}

/* AD */

.ad {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.ad-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.75;
    animation-name: ad-picture-anima;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes ad-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.ad-content {
    position: relative;
    padding: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.ad-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 1000px;
    background-color: #FBF0DC;
}

.ad-circle svg {
    width: 100%;
    height: 100%;
}

.ad-title {
    padding-top: 24px;
    padding-bottom: 12px;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.ad-caption {
    padding-bottom: 32px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

.ad-button {
    text-align: center;
}

/* FOOTER */

.footer {
    padding-left: 24px;
    padding-right: 24px;
    background-color: #474344;
}

.footer-layout {
    display: flex;
    column-gap: 24px;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 90px;
}

.footer-brand {
    flex: none;
    display: flex;
    align-items: center;
    width: 20%;
}

.footer-brand img {
    width: 260px;
    height: 76px;
}

.footer-brand-link {
    display: inline-block;
}

.footer-caption {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
}

.footer-caption>div {
    width: 100%;
    max-width: 440px;
}

.footer-buttons {
    flex: none;
    display: flex;
    justify-content: center;
    width: 20%;
}

.footer-buttons>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
}

.footer-button {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    transition: 0.25s;
}

.footer-button:hover {
    opacity: 0.5;
}

.touch .footer-button:hover {
    opacity: 1;
}

.footer-button:active,
.touch .footer-button:active {
    opacity: 0.5;
}

.footer-button-on {
    border-bottom: solid 1px #FFFFFF;
}

.footer-button-on:hover {
    opacity: 1;
}

.touch .footer-button-on:hover {
    opacity: 1;
}

.footer-button-on:active,
.touch .footer-button-on:active {
    opacity: 1;
}

.footer-networks {
    flex: none;
    width: 10%;
    display: flex;
    column-gap: 20px;
}

.footer-legals {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    padding-bottom: 40px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.footer-link {
    transition: 0.25s;
}

.footer-link:hover {
    opacity: 0.5;
}

.touch .footer-link:hover {
    opacity: 1;
}

.footer-link:active,
.touch .footer-link:active {
    opacity: 0.5;
}

/* TOAST */

#toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 100px;
    background-color: #FEBD59;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(181, 60, 9, 0.2);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #B53C09;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

.toast-inverse .toast-caption {
    color: #474344;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #474344;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: rgba(254, 189, 89, 0.9);
    backdrop-filter: blur(8px);
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 67, 68, 0.85);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: center;
}

.advice-close {
    display: inline-flex;
    padding: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 24px;
    height: 24px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #B53C09;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.advice-main strong {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.advice-main div {
    padding-bottom: 10px;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* IFRAME */

.iframe {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 560px;
    height: 100%;
    background-color: #FFFFFF;
    animation: iframe-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes iframe-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.iframe-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 67, 68, 0.85);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes iframe-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.iframe-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.iframe-frame iframe {
    display: block;
    margin: 0;
    padding: 0;
}

.iframe-fill {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100px;
    background-color: #FFFFFF;
}

.iframe-close {
    position: absolute;
    top: 10px;
    right: 18px;
    display: inline-flex;
    padding: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.iframe-close img {
    display: block;
    width: 24px;
    height: 24px;
    transition: 0.5s;
}

.iframe-close:hover img {
    transform: rotate(180deg);
}

.touch .iframe-close:hover img {
    transform: rotate(0deg);
}

.iframe-close:active img,
.touch .iframe-close:active img {
    transform: rotate(180deg);
}

@keyframes iframe-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ------- DIALOG ------- */

#dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1310;
}

.dialog-block {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    background-color: #FFFFFF;
    text-align: center;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

@keyframes anima-dialog-show {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dialog-show {
    animation-name: anima-dialog-show;
    animation-duration: 0.25s;
}

@keyframes anima-dialog-hide {
    from {
        opacity: 1;
        transform: translateY(0%);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.dialog-hide {
    animation-name: anima-dialog-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 67, 68, 0.75);
    z-index: 1310;
}

@keyframes anima-dialog-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dialog-overlay-show {
    animation-name: anima-dialog-overlay-show;
    animation-duration: 0.25s;
}

@keyframes anima-dialog-overlay-hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.dialog-overlay-hide {
    animation-name: anima-dialog-overlay-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.dialog-message {
    color: #B53C09;
    padding: 32px;
    padding-top: 44px;
    padding-bottom: 2px;
}

.dialog-caption {
    font-family: "Raleway", serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

.dialog-detail {
    color: #474344;
    font-size: 17px;
    line-height: 25px;
    padding-top: 16px;
}

.dialog-detail strong {
    font-weight: 700;
}

.dialog-detail a {
    font-weight: 400;
    color: #CCCCCC;
    text-decoration: none;
    transition: 0.15s;
}

.dialog-detail a {
    font-weight: 700;
    color: #B53C09;
    text-decoration: none;
    transition: 0.15s;
}

.dialog-detail a:hover {
    color: #CCCCCC;
}

.touch .dialog-detail a:hover {
    color: #B53C09;
}

.dialog-detail a:active,
.touch .dialog-detail a:active {
    font-weight: 700;
    color: #B53C09;
    text-decoration: none;
}

.dialog-buttons {
    margin-left: 32px;
    margin-right: 32px;
    padding-top: 20px;
    padding-bottom: 38px;
}

.dialog-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    font-size: 16px;
    line-height: 16px;
    padding-left: 18px;
    padding-right: 18px;
    border: solid 1px transparent;
    cursor: pointer;
    border-radius: 0px;
    transition: 0.25s;
}

.dialog-button-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #B53C09;
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s;
}

.dialog-button-confirm:hover {
    background-color: #FEBD59;
    color: #B53C09;
}

.touch .dialog-button-confirm:hover {
    background-color: #B53C09;
    color: #FFEEEA;
}

.dialog-button-confirm:active,
.touch .dialog-button-confirm:active {
    background-color: #FEBD59;
    color: #B53C09;
}

.dialog-button-cancel {
    color: #B0B0B0;
    background-color: #F3F3F3;
}

.dialog-button-cancel:hover {
    border-color: #D2D2D2;
}

.touch .dialog-button-cancel:hover {
    border-color: transparent;
}

.dialog-button-cancel:active,
.touch .dialog-button-cancel:active {
    border-color: #D2D2D2;
}

/* VIEWER */

.viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 240, 220, 0.9);
    opacity: 0;
    overflow: auto;
    z-index: 102;
}

.viewer-show {
    opacity: 1 !important;
    transition: 0.5s;
}

.viewer-hide {
    opacity: 0 !important;
    transition: 0.35s !important;
}

.viewer-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.viewer-centered {
    margin: auto;
    width: 100%;
}

.viewer-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.viewer-close-frame {
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    z-index: 3;
}

.viewer-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 48px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    cursor: pointer;
}

.viewer-close img {
    width: 20px;
    height: 20px;
    transition: 0.25s;
}

.viewer-close:hover img {
    transform: scale(1.2);
}

.touch .viewer-close:hover img {
    transform: scale(1);
}

.viewer-close:active img,
.touch .viewer-close:active img {
    transform: scale(1.2);
}

.viewer-content {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 48px;
    padding-right: 48px;
}

/* VIDEO VIEWER */

.video-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
}

.video-viewer-show {
    opacity: 1 !important;
    transition: 0.25s;
}

.video-viewer-hide {
    opacity: 0 !important;
    transition: 0.35s !important;
}

.video-viewer-bg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
    background-color: rgba(71, 67, 68, 0.85);
    backdrop-filter: blur(10px);
    transition: 0.35s !important;
}

.video-viewer-player {
    width: 100%;
    max-width: 900px;
}

.video-viewer-player-short {
    max-width: 360px;
}

.video-viewer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    padding: 20px;
    cursor: pointer;
}

.video-viewer-close img {
    display: block;
    width: 100%;
    transition: 0.18s;
}

.video-viewer-close:hover img {
    transform: scale(1.2);
}

.touch .video-viewer-close:hover img {
    transform: scale(1);
}

.video-viewer-close:active img,
.touch .video-viewer-close:active img {
    transform: scale(1.2);
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    max-width: 100%;
    height: 0;
    overflow: hidden;
}

.video-viewer-player-short .embed-container {
    padding-bottom: 177.78%;
    max-width: 100%;
    height: 0;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */

@media (max-width: 1400px) {

    .bar-buttons-frame {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .bar-actions {
        flex: auto;
        justify-content: flex-end;
    }

}

@media (max-width: 1280px) {

    .footer-layout {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        width: unset;
    }

    .footer-caption {
        width: unset;
    }

    .footer-buttons {
        width: unset;
    }

    .footer-networks {
        width: unset;
        padding-top: 48px;
    }

}

@media (max-width: 1020px) {

    .layout-content {
        display: flex;
        flex-direction: column;
    }

    .layout-content-text {
        order: 2;
        width: 100%;
    }

    .layout-content-pic {
        order: 1;
    }


    .layout-content-text-alt {
        order: 1;
    }

    .layout-content-pic-alt {
        order: 2;
        width: 100%;
    }

    .contact {
        grid-template-columns: 1fr;
        row-gap: 80px;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .banner-content {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .banner-picture {
        padding-bottom: 120%;
    }

    .banner-title {
        max-width: unset;
        text-align: center;
    }

    .banner-caption {
        max-width: unset;
        text-align: center;
    }

}

@media (max-width: 960px) {

    .article-layout {
        grid-template-columns: 1fr;
        row-gap: 130px;
    }

    .services-item {
        width: 100%;
    }

    .videos-featured {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .videos-featured-content {
        order: 2;
    }

    .videos-featured-picture {
        order: 1;
    }

    .footer-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-caption {
        justify-content: flex-start;
        padding-top: 48px;
    }

    .footer-buttons {
        justify-content: flex-start;
        padding-top: 48px;
    }

    .footer-legals {
        justify-content: flex-start;
        text-align: left;
    }

}

@media (max-width: 840px) {

    .bar-actions {
        display: none;
    }

    .bar-networks {
        display: none;
    }

    .bar-menu {
        flex: auto;
        justify-content: flex-end;
    }

}

@media (max-width: 740px) {

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .videos-grid-alt {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .margin-alt {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-alt {
        height: 65%;
    }

    .header-title {
        padding-bottom: 40px;
        font-size: 38px;
        line-height: 48px;
    }

    .header-caption {
        font-size: 20px;
        line-height: 30px;
    }

    .pretitle {
        font-size: 24px;
        line-height: 34px;
    }

    .pretitle-alt {
        padding-bottom: 8px;
        font-size: 24px;
        line-height: 34px;
    }

    .title {
        font-size: 32px;
        line-height: 42px;
    }

    .text {
        font-size: 18px;
        line-height: 28px;
    }

    .text p {
        padding-top: 18px;
    }

    .button-frame {
        padding-top: 32px;
    }

    .layout-content {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .layout-content-pic {
        width: 100%;
    }

    .slider-swiper {
        --swiper-navigation-size: 18px;
        --swiper-pagination-bullet-size: 8px;
        --swiper-pagination-bullet-width: 8px;
        --swiper-pagination-bullet-height: 8px;
        --swiper-pagination-bullet-horizontal-gap: 6px;
    }

    .slider-swiper-nav {
        height: 18px;
    }

    .slider-swiper-nav .swiper-button-prev {
        left: 8px !important;
        width: 18px;
        height: 18px;
        margin-top: -9px !important;
    }

    .slider-swiper-nav .swiper-button-next {
        right: 8px !important;
        width: 18px;
        height: 18px;
        margin-top: -9px !important;
    }

    .slider-content {
        padding-top: 140px;
        padding-left: 34px;
        padding-right: 34px;
    }

    .slider-header {
        padding-bottom: 20px;
        font-size: 28px;
        line-height: 38px;
    }

    .slider-caption {
        font-size: 18px;
        line-height: 28px;
    }

    .slider-button {
        padding-top: 32px;
    }

    .button {
        height: 48px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 16px;
        line-height: 16px;
    }

    .services {
        padding-bottom: 90px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-item-header {
        padding-top: 32px;
    }

    .service-item-icon {
        width: 120px;
        height: 120px;
    }

    .service-item-title {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 24px;
        line-height: 32px;
    }

    .service-item-intro {
        padding-top: 26px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .service-item-benefits {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
    }

    .service-item-list {
        row-gap: 8px;
        max-width: unset;
        padding-left: 24px;
        padding-right: 24px;
        margin: 0 auto;
    }

    .service-item-benefit {
        column-gap: 10px;
        font-size: 17px;
        line-height: 25px;
    }

    .service-item-tick img {
        margin-top: 2px;
        width: 20px;
        height: 20px;
    }

    .service-item-button {
        padding-top: 32px;
    }

    .service-icon {
        width: 160px;
        height: 160px;
    }

    .service-booking {
        padding-top: 20px;
        font-size: 26px;
        line-height: 34px;
    }

    .service-content {
        padding-bottom: 56px;
        font-size: 18px;
        line-height: 28px;
    }

    .service-content h2 {
        padding-top: 40px;
        font-size: 30px;
        line-height: 40px;
    }

    .service-content ul li::before {
        height: 20px;
        width: 20px;
        margin-top: -4px;
        margin-right: 12px;
    }

    .packs {
        padding-bottom: 90px;
    }

    .packs-frame {
        padding-left: 30px;
        padding-right: 30px;
    }

    .packs .swiper-button-prev {
        width: 18px;
        height: 18px;
        left: 6px !important;
        margin-top: -9px !important;
    }

    .packs .swiper-button-next {
        width: 18px;
        height: 18px;
        right: 6px !important;
        margin-top: -9px !important;
    }

    .packs-slide {
        height: auto !important;
    }

    .packs-layout {
        height: auto !important;
    }

    .packs-content {
        height: auto;
    }

    .packs-header {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 24px;
        line-height: 32px;
    }

    .packs-content {
        padding-top: 26px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 20px;
        line-height: 30px;
    }

    .packs-description {
        padding-bottom: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .packs-duration {
        font-size: 24px;
        line-height: 34px;
    }

    .packs-duration img {
        width: 24px;
        height: 24px;
        margin-top: -2px;
    }

    .packs-price {
        font-size: 24px;
        line-height: 34px;
    }

    .faqs {
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .faqs-list {
        padding-top: 22px;
    }

    .faqs-header {
        padding-top: 20px;
        padding-bottom: 16px;
    }

    .faqs-question {
        font-size: 18px;
        line-height: 26px;
    }

    .faqs-arrow {
        padding-top: 10px;
    }

    .faqs-arrow svg {
        width: 16px;
        height: auto;
    }

    .faqs-response {
        font-size: 18px;
        line-height: 26px;
    }

    .service-consultation {
        padding-top: 72px;
        padding-bottom: 82px;
    }

    .service-consultation-content {
        font-size: 18px;
        line-height: 28px;
    }

    .service-consultation-content ul {
        row-gap: 8px;
    }

    .service-consultation-content ul li::before {
        height: 20px;
        width: 20px;
        margin-top: -4px;
        margin-right: 12px;
    }

    .banner-picture {
        padding-bottom: 200%;
    }

    .banner-content {
        padding-bottom: 64px;
    }

    .banner-circle {
        width: 140px;
        height: 140px;
    }

    .banner-title {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-caption {
        font-size: 20px;
        line-height: 30px;
    }

    .videos {
        padding-bottom: 70px;
    }

    .videos-swiper {
        margin-top: 24px !important;
        --swiper-pagination-bullet-size: 8px;
        --swiper-pagination-bullet-width: 8px;
        --swiper-pagination-bullet-height: 8px;
        --swiper-pagination-bullet-horizontal-gap: 6px;
    }

    .videos-picture {
        border-radius: 10px;
    }

    .videos-header {
        padding-top: 12px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 24px;
        font-size: 15px;
        line-height: 21px;
    }

    .videos-grid {
        gap: 10px;
    }

    .videos-grid-alt {
        gap: 0px;
    }

    .videos-group {
        padding-top: 24px;
        margin-bottom: 24px;
    }

    .videos-featured-content .title {
        font-size: 28px;
        line-height: 38px;
    }

    .reviews {
        padding-top: 86px;
        padding-bottom: 40px;
    }

    .reviews-shapes-1 {
        top: 2%;
        left: 5%;
        width: 90%;
        height: 100%;
        background-size: contain;
        background-position: left top;
    }

    .reviews-shapes-2 {
        top: unset;
        left: unset;
        right: 5%;
        bottom: 2%;
        width: 90%;
        height: 100%;
        background-size: contain;
        background-position: right bottom;
    }

    .reviews-swiper {
        margin: 0 auto;
        margin-top: 72px;
        padding-bottom: 60px !important;
    }

    .reviews-swiper .swiper-button-prev {
        width: 20px;
        height: 20px;
        left: 35% !important;
        margin-left: -10px;
    }

    .reviews-swiper .swiper-button-next {
        left: 65% !important;
        width: 20px;
        height: 20px;
        margin-left: -10px;
    }

    .reviews-slide {
        padding-top: 48px;
        padding-bottom: 48px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .reviews-layout {
        flex-direction: column;
        row-gap: 16px;
    }

    .reviews-content {
        font-size: 20px;
        line-height: 30px;
    }

    .blog {
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .articles-grid {
        padding-bottom: 64px;
    }

    .articles-grid-alt {
        padding-bottom: 0px;
    }

    .articles-layout {
        padding: 0px;
        padding-bottom: 48px;
    }

    .articles-body {
        row-gap: 10px;
        padding-top: 24px;
    }

    .articles-header {
        font-size: 24px;
        line-height: 32px;
    }

    .articles-intro {
        font-size: 17px;
        line-height: 21px;
    }

    .articles-tag {
        padding: 6px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 15px;
        line-height: 21px;
    }

    .articles-filter {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .articles-filter-title {
        padding-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
    }

    .articles-filter-title-alt {
        padding-top: 32px;
        padding-bottom: 0px;
    }

    .articles-filters {
        gap: 10px;
    }

    .articles-filters-button {
        padding: 8px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 15px;
        line-height: 21px;
    }

    .article-intro {
        padding-bottom: 24px;
        font-size: 19px;
        line-height: 27px;
    }

    .article-author-picture {
        width: 64px;
        height: 64px;
    }

    .article-author {
        column-gap: 14px;
        font-size: 16px;
        line-height: 22px;
    }

    .article-date {
        font-size: 16px;
        line-height: 22px;
    }

    .article-download {
        font-size: 17px;
        line-height: 19px;
    }

    .article-download svg {
        width: 22px;
        height: 22px;
    }

    .article-share {
        font-size: 17px;
        line-height: 19px;
    }

    .articles-suggestions-title {
        margin-top: 0px;
        font-size: 24px;
        line-height: 26px;
    }

    .articles-suggestion-picture {
        width: 100px;
    }

    .articles-suggestion-info {
        padding-top: 0px;
        padding-bottom: 10px;
        margin-top: -3px;
    }

    .content h2,
    .content h3,
    .content p,
    .content ul,
    .content ol,
    .content-image,
    .content-embed {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .content h2 {
        padding-top: 20px;
    }

    .content h3 {
        padding-top: 18px;
    }

    .content p,
    .content ul,
    .content ol {
        font-size: 17px;
        line-height: 23px;
    }

    .about-swiper {
        --swiper-pagination-bullet-size: 8px;
        --swiper-pagination-bullet-width: 8px;
        --swiper-pagination-bullet-height: 8px;
        --swiper-pagination-bullet-horizontal-gap: 6px;
    }

    .about-slide-title {
        padding-top: 28px;
        font-size: 26px;
        line-height: 36px;
    }

    .about-slide-caption {
        padding-top: 16px;
        font-size: 20px;
        line-height: 28px;
    }

    .about-slide-author {
        font-size: 18px;
        line-height: 26px;
    }

    .contact {
        row-gap: 64px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .contact-address {
        padding-top: 48px;
    }

    .contact-fields {
        row-gap: 16px;
        padding: 16px;
        padding-bottom: 64px;
    }

    .contact-textbox {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 14px;
        padding-right: 14px;
        border-radius: 12px;
        font-size: 18px;
        line-height: 22px;
    }

    .contact-textbox::placeholder {
        font-size: 18px;
        line-height: 22px;
    }

    .contact-textarea {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 14px;
        padding-right: 14px;
        border-radius: 12px;
        font-size: 18px;
        line-height: 22px;
    }

    .contact-textarea::placeholder {
        font-size: 18px;
        line-height: 22px;
    }

    .contact-fields-alt {
        padding: 0px;
        padding-bottom: 32px;
    }

    .contact-checkbox {
        margin-left: 16px;
        padding-left: 36px;
        font-size: 16px;
        line-height: 16px;
    }

    .dialog-button-confirm {
        height: 48px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 16px;
        line-height: 16px;
    }

    .toast-item {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .toast-caption {
        font-size: 16px;
        line-height: 20px;
        white-space: nowrap;
    }

    .viewer-frame {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .viewer-content {
        padding-top: 100px;
        padding-bottom: 48px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .viewer-close {
        top: 24px;
        right: 24px;
    }

}

@media (max-width: 640px) {

    .footer-layout {
        padding-bottom: 70px;
    }

    .footer-legals {
        flex-direction: column;
        row-gap: 10px;
        padding-bottom: 148px;
    }

    .footer-separator {
        display: none;
    }

}

@media (max-width: 580px) {

    .bar {
        height: 120px;
    }

    .bar-layout {
        column-gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .bar-compact {
        height: 80px;
    }

    .bar-brand img {
        width: 220px;
        height: 64px;
    }

    .bar-compact .bar-brand img {
        width: 180px;
        height: 52px;
    }

    .bar-fix {
        padding-top: 120px;
    }

    .label-stamp {
        display: none;
    }

    .label-stamp-alt {
        display: block;
    }

}

@media (max-width: 480px) {

    .viewer-content {
        padding-top: 76px;
    }

    .labels {
        row-gap: 18px;
    }

    .label {
        height: 48px;
    }

    .label-icon {
        padding-left: 14px;
        padding-right: 6px;
    }

    .label-icon img {
        width: 26px;
        height: 26px;
    }

    .label-caption {
        padding-right: 12px;
        font-size: 15px;
        line-height: 20px;
    }

}