@font-face {
    font-family: 'BreathDemo';
    src: url('../font/BreathDemo.woff2') format('woff2'),
        url('../font/BreathDemo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Jost", sans-serif;
    font-size: 1.125em;
    line-height: 1.7;
    color: #848892;
}

h1, h2, h3, h4, h5 {
    color: #4D7983;
    font-family: 'BreathDemo';
}

.section {
    margin: 3em 0;
}

.content-container {
    max-width: 1200px;
    padding:0 20px;
    margin:0 auto;
    position: relative;
    z-index: 1;
}

.banner {
    width: 100%;
}

.bg-green {
    padding:3em 0;
    background: #fbf7f8;
    background: #c8d3c2;
    background: radial-gradient(#c8d3c2 50%, #88997f);
}

.bg-pink {
    padding:3em 0;
    background: #fbf7f8;
    background: #c8d3c2;
    background: radial-gradient(#d2bbc0 50%, #ae8c90)
}

.bg-petrol {
    padding:3em 0;
    background: #fbf7f8;
    background: #c8d3c2;
    background: radial-gradient(#216477 50%, #314a51);
}

.bg-sand {
    padding:3em 0;
    background: #fbf7f8;
    background: #c8d3c2;
    background: radial-gradient(#d9cec1 50%, #c5bdb1);
}

.button {
    background: radial-gradient(#a1b397 50%, #88997f);
    color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    transition: all .3s ease;
    display: inline-block;
    text-decoration: none;
    outline: none !important;
    border: 0;
    font-size: 1rem;
}



.button:hover {
    box-shadow: 0 0 40px rgba(0,0,0,0.5) inset;
}

body {
    margin: 0;
    min-height: 100vh;
}

.content-container.content-container--header {
    display: flex;
    flex-flow: row wrap;
    grid-gap: 30px;
    align-items: center;
    justify-content: space-between;
}

img.header-logo__img {
    width: 330px;
    display: block;
    transition: all .3s ease;
    max-width: calc(100vw - 130px);
}

header.header.header--low .header-logo__img {
    width: 250px;
}

header.header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    left:0;
    right: 0;
    transition: all .3s ease;
    z-index: 100;
    box-shadow: 0 0 19px rgb(132 136 146 / 30%);
    background: #fff;   
}

header.header.header--low {
    
}

nav ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    grid-gap: 20px;
    margin: 0;
}

nav a {
    color: inherit;
    padding: 10px 20px;
    text-decoration: none !important;
    background-image: linear-gradient(to bottom, transparent 0%, transparent calc(100% - .1em), currentColor calc(100% - .1em), currentColor 100%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    background-position-x: right;
    display: inline !important;
    transition: background-size .3s;
}

nav a:hover {
    background-size: 100% 100%;
    background-position-x: left;
}

h2.article__title {
    color: #577782;
    line-height: 1.2;
}

.bg-pink h2.article__title,
.bg-sand h2.article__title,
.bg-petrol h2.article__title,
.bg-green h2.article__title {
    color: #fff;
    margin-top:30px;
}

.header {
    transition: all .3s ease;
}

.header--hidden {
    transform:translateY(-100%);
}
.hero {
    position: relative;
}

.section.bg-petrol,
.section.bg-sand,
.section.bg-green,
.section.bg-pink {
    position: relative;
    padding: 7vw 0 8vw;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.section.bg-petrol::before,
.section.bg-sand::before,
.section.bg-green::before,
.section.bg-pink::before {
    transform:rotate(180deg);
    bottom:auto !important;
    top: -1px;
}

.section.bg-petrol::before,
.section.bg-sand::before,
.section.bg-petrol::after,
.section.bg-sand::after,
.section.bg-green::before,
.section.bg-pink::before,
.section.bg-green::after,
.section.bg-pink::after,
.hero::after {
    content: '';
    background-image: url(../img/mask.png);
    background-size: cover;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 11 / 1;
    position: absolute;
    bottom: -1px;
}

img.hero__img {
    width: 100%;
    /* display: block; */
    height: 44vw;
    object-fit: cover;
    min-height: 300px;
}

.hero-content {
    position: absolute;
    text-align: center;
    font-size: 2.5em;
    line-height: 1.2;
    inset: 0;
    display: grid;
    place-content: center;
    padding-bottom: 10vw;
    font-weight: 300;
    color:#fff;
    text-shadow: 0 4px 6px BLACK;
    font-size: clamp(1em, 6vw, 2.5em);
}

.hero-content h1 {
    margin: 0 0 .2em;
    font-weight: 400;
}


.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

h2.article__title {
    font-size: 2em;
    margin: 0.25em 0em 0;
    text-align: right;
}

div:nth-child(2) > h2.article__title {
    text-align: left;
}

.footer-bottom ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    grid-gap: 30px;
    align-items: center;
    justify-content: center;
}


.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    max-width: 890px;
    margin: 3em auto 3em;
}

@media screen and (max-width:600px){
    .highlight-container {
        grid-template-columns: 1fr;
    }
}

img.highlight__media-img {
    width: 100%;
    aspect-ratio: 15/10;
    object-fit: cover;
}

.highlight {
    padding: 20px;
    box-shadow: 0 0 19px rgb(132 136 146 / 30%);
    display: flex;
    flex-flow: column;
    background: #fff;
}

h3.highlight__title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
}

.highlight__content {
    flex: 1;
    display: flex;
    flex-flow: column;
}

.highlight__buttons {
    margin-top: auto;
    padding-top: 10px;
}

.highlight__buttons .button {
    width: 100%;
    text-align: center;
}

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

.review__item {
    box-shadow: 0 0 19px rgb(132 136 146 / 30%);
    padding: 40px;
    background: #fff5e9;
    border-radius: 0px;
    box-shadow: none;
    position: relative;
    text-align: center;
    height: auto !important;
}

.review__author-desc {
}

.review-container {
    margin-bottom:30px;
}

.swiper-wrapper {
    margin-bottom:50px;
    margin-top:30px;
}

.review__author {
    display: flex;
    grid-gap: 20px;
    align-items: center;
    line-height: 1.5;
    margin-bottom: 16px;
    justify-content: center;
}

.review__author-photo img {
    width: 50px;
}

.review__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
}

.review__content small {
    opacity: .9;
}

.two-columns__media-column img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    max-width: 490px;
    margin: 0 auto;
}

.two-columns__media-column {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 30px 0;
    align-items: center;
}

.two-columns__column:has(p) {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
}

div.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    width: 100%;
}

img {}

.gallery img {
    border-radius: 12px;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.gallery > img:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.footer-socials ul {
    margin: 20px -10px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.footer-socials ul li a {
    padding: 5px 10px;
    color: #fff;
    transition: color .2s ease;
}

.footer-socials ul li a:hover {
    color: #000
}

.footer-socials ul li a:hover {
    transform: none;
}

.footer-socials ul li a:hover svg {
    transform: scale(1.2);
}

svg.footer-socials__icon {
    height: 32px;
    width: auto;
    transition: transform .2s ease;
}

.footer-socials__container {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.footer-socials {
    margin: 0 auto;
}

.hero-content small {
    font-size: 32px;
    max-width: 26em;
    display: inline-block;
}

.highlight__content {
    color: #848892;
    text-shadow: none;

}

.hero-content h1 {
    color:#fff;
    text-shadow: 0 4px 6px BLACK;
}

.hamburger {
    display: none;
}

section.hero + * {
    margin-top: 30px;
}

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

    .hamburger {
        display: block;
    }

    header nav {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 100%;
        background: #fff;
        transition: transform .4s ease;
    }

    nav ul {
        display: grid;
        grid-template-columns: 1fr;
        padding: 30px;
        min-width: 270px;
        max-width: 100%;
    }

    .body--has-navigation header nav {
        transform: translateX(100%);
    }

    .hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 80%;
    width: 100px;
    transform: translateY(-50%);
}

    .section {
        margin:3em 0;
    }

    .bar {
        width: 50px;
        height: 4px;
        display: block;
        background: currentColor;
        border-radius: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: all .3s ease;
        transform: translate3d(-50%, -50%, 0);
    }

    .bar--1 {
        top: 25%;
    }

    .bar--3 {
        top: 75%;
    }

    .body--has-navigation .bar.bar--1 {
        top: 50%;
        transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    }

    .body--has-navigation .bar.bar--3 {
        top: 50%;
        transform: translate3d(-50%, -50%, 0) rotate(45deg);
    }

    .body--has-navigation .bar.bar--2 {
        opacity: 0;
    }

    .body--has-navigation .header--hidden {
        transform: translateY(0%);
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    h2.article__title {
        text-align: left;
    }
}

.review__content::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 3px solid #d09a30;
    border-radius: 0px;
}

.review__item::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    background: url(/static/img/hart.png) #fdf5ea;
    bottom: 0px;
    left: 50%;
    z-index: 1;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -20px;
}

.review__item::after {
    top:auto;
    bottom:10px;
    left:auto;
    right:10px;
    transform: rotate(180deg);
}

.bg-sand h2.article__title {
    color:#fff;
}

.highlight__buttons a.button {
    background: radial-gradient(#c09d4c 50%, #997c38);
}

.button.button--pink{
    background:radial-gradient(#d2bbc0 50%, #ae8c90);
}
.button.button--green{
    background:radial-gradient(#c8d3c2 50%, #88997f);
}
.button.button--petrol{
    background:radial-gradient(#216477 50%, #314a51);
}
.button.button--gold{
    background:radial-gradient(#c09d4c 50%, #997c38);
}

.media-left .two-columns__column {
    order: 2;
}

.two-columns.text-right .two-columns__column {
    align-items: flex-end;
    text-align: right;
}


.wf-group {
    display: grid;
    width: 100%;
}

.wf-group input, .wf-group textarea {
    width: 100%;
    display: block;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px 20px;
}

form#field-form {
    width: 100%;
    max-width: 350px;
}

.wf-group textarea {
    height: 90px;
}

form#field-form button {
    margin-top: 10px;
}

.footer__adress {
    color: #fff;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__adress ul {
    padding: 10px 40px;
    color: #fff;
    list-style: none;
    border: 1px solid #fff;
    display: flex;
    flex-flow: row wrap;
    grid-gap: 40px;
}

.footer__adress a {
    color: #fff;
    white-space: nowrap;
}

.footer__adress li {
    display: flex;
    align-items: center;
}

.footer__adress svg {
    height: 1em;
    margin-right: .4em;
}

.footer__adress path {
    fill: #fff;
}

div#thanks {
    margin-top: 20px;
    padding: 0px 20px;
    border: 1px solid #cad2c3;
    width: 100%;
    background: #f6fbf1;
}

