:root {
    --minRangeValue: 250px;
    --filtersHeight: 0px;
}
h1 {
    border-bottom: none;
}
.vh-200 {
    min-height: 200vh !important;
}
.vh-10 {
    min-height: 10vh !important;
}
.vh-20 {
    min-height: 20vh !important;
}
.vh-30,
.vh-cards {
    min-height: 30vh !important;
}
.vh-40 {
    min-height: 40vh !important;
}
.vh-50 {
    min-height: 50vh !important;
}
.vh-90 {
    min-height: 80vh !important;
}
.vh {
    min-height: 100vh !important;
}
.mt-150 {
   margin-top: 150vh !important; 
}

img,
.img-fluid {
    width: 100%;
}
/*body,*/
.fp-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*
body > .page,
body main,
*/
.fp-wrapper .page,
.fp-wrapper main {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}


figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    /*    background: red; */
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
}

figure {
/*    padding-bottom: calc((3/4)*100%) !important;*/
    padding-bottom: calc((2.8/4)*100%);
}
figure.portrait {
/*    padding-bottom: calc((16/9)*100%) !important;*/
    padding-bottom: calc((902/664)*100%) !important;
}
figure:after {
    /*
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
*/
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

figure img {
    position: absolute;
    left: 0;
}

article > *,
.row-grid > *,
.row > * {
    /*    background-color: red;*/
    /*    border: 1px dashed red*/
}

/*
article {
    border: 1px solid red
}
*/
/*************/
.row-grid {
    display: -ms-grid;
    display: grid;
    /*
    grid-row-gap: 2.5rem;
    grid-column-gap: 2.5rem;
*/
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}

.row-flex {
    display: flex
}

/*************/
.g-col > div {
    flex-basis: auto
}

.g-col {
    background-color: #fff;
}


.g-col--2x {
    grid-row-end: span 2;
}

.g-col--3x {
    grid-row-end: span 3;
}

.g-col--4x {
    grid-row-end: span 4;
}


.g-col-v-2x {
    grid-column-end: span 2;
}

.g-col-v-3x {
    grid-column-end: span 3;
}

/*
@media (min-width: 550px) {}

*/
.row-grid {

    grid-template-columns: repeat(auto-fill, minmax(var(--minRangeValue), 1fr));
    grid-auto-rows: max-content;
}

.row-grid .g-col {}


.row {
    margin-left: 0;
    margin-right: 0;
}

.map-responsive {
/*    overflow: hidden;*/
    /*    padding-bottom:56.25%;*/
    padding-bottom: 450px;
    position: relative;
    height: 0;
    background-color: #fff;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.map-responsive .row {
        box-shadow: 0px 3px 65.36px 10.64px rgba(52,54,57,0.06);
position: absolute;
left: 10%;

background: #fff;
bottom: 0;
transform: translateY(50%);
    z-index: 99;
}


.text-thin {
    font-weight: 300 !important;
}

.ttc {
    text-transform: capitalize !important;
}
.fsi {
    font-style: italic !important;
}
.fsn {
    font-style: normal !important;
}
.ttu {
    text-transform: uppercase !important;
}
.fwn {
    font-weight: normal !important;
}
.strong {
    font-weight: bold !important;
}
/*
.fp-wrapper > header .row > * {
    border: 1px dashed red
}
*/

/** Mobile Bar **/


.toggle-nav {
    display: none;
}




label {
    margin: 0;
}

.mobile-bar {
    z-index: 5;
    /*  position: relative;*/
    height: 60px;
    /*    background-color: #E53935;*/
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 20;
}

.mobile-bar label {
    position: absolute;
    top: 0;
    left: 10px;
    width: 60px;
    height: 60px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.mobile-bar label:after {
    content: "\2630";
    font-size: 2em;
    color: #eee;
    line-height: 60px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

/** Slide-Down Effect **/


.toggle-nav:checked ~ .fp-wrapper > header {
    /* when the checkbox is checked the container slide-down */
    transform: translateY(calc(-100% - var(--filtersHeight)));
    transform: translate3d(0, calc(-100% - var(--filtersHeight)), 0);
}

/** Label Effect (Menu Icon) **/


.toggle-nav:checked + .mobile-bar label {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.toggle-nav:checked + .mobile-bar label:after {
    color: black;
}

.fp-wrapper > header {
    width: 100%;
    z-index: 10;
    top: 60px;
    
    transform: translateY(0);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease, background .3s ease;
}
.fixed {
    position: fixed; 
}

/** Content **/



/** Viewport >= 730px **/
.fp-wrapper > header input[type='search'] {
    display: none;
    width: 100%;
}

@media (min-width: 768px) {
    .fp-wrapper > header input[type='search'] {
        display: inline-block;
    }

    .mobile-bar {
        display: none;
    }

    .fp-wrapper > header {
/*        position: fixed;*/
        top: 0;
        /*        transform: translateY(0)*/
    }

    .toggle-nav:checked ~ .fp-wrapper > header {
        transform: translateY(0);
    }
}

/*
.fp-wrapper > header {
  margin-top: 0;
  -webkit-transition: none;
  transition: none;
    position: relative;
}
*/
.mobile-bar input[type="search"] {
    height: 34px;
    margin-top: 11px;
}



.featherlight .featherlight-content {
    height: 100%;
    width: 90%;
}
.featherlight iframe {
    width: 100%;
    height: 100%;
}
.demo ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom:0;
}
.demo li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor:pointer;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: 100%;
    margin-bottom: 1rem;
    text-indent:  .5rem;
}
.goTop {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 2rem;
    outline: 0 !important;
}

.clear {
    background-color: transparent !important;
    background: transparent !important;
    border-color: transparent !important;
    outline: none !important
}

[data-before]:before{
    content: attr(data-before);
}

.console > div {
    color: #fff;
    background-color: #B3143E;
    padding: 1rem ;
    border-radius: 5px;
}
@keyframes flashcolor {
  from, 50%, to {
    opacity: 1;
      background: #B3143E;
  }

  25%, 75% {
    opacity: 0;
      background: transparent;
  }
}

.flashcolor {
  animation-name: flashcolor;
}

.error::placeholder,
.error {
/*
    border-color: #B3143E !important;
    background:   #B3143E !important;
*/
/*    border-width: 1px;*/
    animation: headShake .75s ease;
}
i.error {
    color: #B3143E !important;
}
.euro:after {
    content : ' €';
}

.revealOnScroll { opacity: 0; }