@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  scroll-behavior: smooth;
}

input, button, textarea, select {
  font-family: inherit;
}

:root {
  --font-body: "Catamaran", sans-serif;
  --color-dark: #2A2119;
  --color-light: #FFFFFF;
  --color-primary: #EBB077;
  --transition-time: 250ms;
}

@font-face {
  font-family: "purple_purseregular";
  src: url("../fonts/purplepurse-regular-webfont.woff2") format("woff2"), url("../fonts/purplepurse-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


.marginbr{

  display: inline-block;
  content: " ";
  margin:90px 0 0 0;
}


html, body {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

ins, u {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  word-wrap: break-word;
}

.fullimage {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 0;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

.form_group {
  margin-bottom: em(16);
}

label, .label {
  display: block;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=tel], input[type=date], input[type=number], input[type=search], input[type=time], textarea, .input-text, .input-textarea, .wpcf7-text, .wpcf7-textarea, .wpcf7-date {
  -webkit-appearance: none;
  border: em(1) solid;
  border-radius: 0;
  width: 100%;
}
input[type=text]:disabled, input[type=email]:disabled, input[type=url]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=date]:disabled, input[type=number]:disabled, input[type=search]:disabled, input[type=time]:disabled, textarea:disabled, .input-text:disabled, .input-textarea:disabled, .wpcf7-text:disabled, .wpcf7-textarea:disabled, .wpcf7-date:disabled {
  background-color: lightgrey !important;
  border-color: lightgrey !important;
}
input[type=text]:disabled:hover, input[type=email]:disabled:hover, input[type=url]:disabled:hover, input[type=password]:disabled:hover, input[type=tel]:disabled:hover, input[type=date]:disabled:hover, input[type=number]:disabled:hover, input[type=search]:disabled:hover, input[type=time]:disabled:hover, textarea:disabled:hover, .input-text:disabled:hover, .input-textarea:disabled:hover, .wpcf7-text:disabled:hover, .wpcf7-textarea:disabled:hover, .wpcf7-date:disabled:hover {
  cursor: not-allowed;
}

textarea {
  font-size: inherit;
  resize: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select {
  background: white url("../img/select.svg") no-repeat right em(8) center;
  font-size: em(16);
  height: em(33);
  line-height: normal;
  overflow: hidden;
  padding: em(5) em(23) em(5) em(5);
}

select::-ms-expand {
  display: none;
}

input[type=checkbox].input_svg, input[type=radio].input_svg {
  left: em(-9999);
  position: absolute;
}
input[type=checkbox].input_svg + label:hover, input[type=radio].input_svg + label:hover {
  cursor: pointer;
}
input[type=checkbox].input_svg + label::before, input[type=radio].input_svg + label::before {
  background-image: url(../img/formelements.png);
  content: "";
  display: inline-block;
  height: em(25);
  left: em(-2);
  margin-right: em(5);
  position: relative;
  top: em(5);
  width: em(25);
}
input[type=checkbox].input_svg:disabled + label:hover, input[type=radio].input_svg:disabled + label:hover {
  cursor: not-allowed;
}

input[type=checkbox].input_svg + label::before {
  background-position: 0 em(-25);
}

input[type=checkbox].input_svg:checked + label::before {
  background-position: 0 0;
}

input[type=checkbox].input_svg:disabled + label::before {
  color: lightgray;
}

input[type=radio].input_svg + label::before {
  background-position: em(-25) em(-25);
}

input[type=radio].input_svg:checked + label::before {
  background-position: em(-25) 0;
}

input[type=radio].input_svg:disabled + label::before {
  color: lightgray;
}

input[type=checkbox].input_font, input[type=radio].input_font {
  display: none;
}
input[type=checkbox].input_font + label:hover, input[type=radio].input_font + label:hover {
  cursor: pointer;
}
input[type=checkbox].input_font + label::before, input[type=radio].input_font + label::before {
  content: "";
  display: inline-block;
  font-family: var(--font-icons);
  margin-right: em(5);
  position: relative;
  top: em(1);
}
input[type=checkbox].input_font:disabled + label:hover, input[type=radio].input_font:disabled + label:hover {
  cursor: not-allowed;
}

input[type=checkbox].input_font + label::before {
  content: "\f0c8";
  font-weight: 500;
}

input[type=checkbox].input_font:checked + label::before {
  content: "\f14a";
  font-weight: 500;
}

input[type=checkbox].input_font:disabled + label::before {
  color: lightgray;
  content: "\f0c8";
  font-weight: 700;
}

input[type=radio].input_font + label::before {
  content: "\f111";
  font-weight: 500;
}

input[type=radio].input_font:checked + label::before {
  content: "\f192";
  font-weight: 500;
}

input[type=radio].input_font:disabled + label::before {
  color: lightgray;
  content: "\f111";
  font-weight: 700;
}

.inputfile {
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  width: 0.1px;
}

.inputfile + label {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.btn {
  background-color: #463628;
  border: 1px solid currentColor;
  color: var(--color-primary);
  flex-basis: 50%;
  font-weight: 900;
  padding-left: em(20);
  padding-right: em(20);
  text-align: center;
  text-transform: uppercase;
  transition: all var(--transition-time);
  width: 50%;
}
.btn:hover {
  background-color: var(--color-primary);
  color: #463628;
}

@media only screen and (max-width: 575px) {
  .btn {
    border-radius: 16px;
    flex-basis: 100%;
    font-size: 16px;
    padding: 8px 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .btn {
    font-size: calc(16px + (100vw - 576px) / 624 * 12);
    border-radius: calc(16px + (100vw - 576px) / 624 * 12);
    padding: calc((16px + (100vw - 576px) / 624 * 12) / 2) 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .btn {
    border-radius: 28px;
    font-size: 28px;
    padding: 14px 20px;
  }
}
.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1100px;
}

@media only screen and (min-width: 992px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
html, body {
  height: 100%;
}

html {
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-dark);
  color: var(--color-light);
}

main {
  background-color: var(--color-dark);
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 575px) {
  main {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  main {
    padding-top: calc(80px + (100vw - 576px) / 624 * 31);
  }
}
@media only screen and (min-width: 1200px) {
  main {
    padding-top: 111px;
  }
}
#site_header {
  background-color: var(--color-dark);
  inset: 0 0 auto 0;
  position: fixed;
  z-index: 100;
}
#site_header nav {
  align-items: center;
  display: flex;
  font-weight: 900;
  justify-content: center;
  text-transform: uppercase;
}
#site_header nav a {
  border-bottom: 3px solid transparent;
  color: var(--color-primary);
}
#site_header nav a.active, #site_header nav a:hover {
  border-bottom-color: var(--color-primary);
  color: var(--color-light);
}

@media only screen and (max-width: 575px) {
  #site_header {
    padding: 20px 0 30px;
  }
  #site_header nav {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    font-size: 10px;
  }
  #site_header nav a {
    padding: 6px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  #site_header {
    padding: calc(20px + (100vw - 576px) / 624 * 5) 0 calc(30px + (100vw - 576px) / 624 * 5);
  }
  #site_header nav {
    -webkit-column-gap: calc((10px + (100vw - 576px) / 624 * 0) * 3);
       -moz-column-gap: calc((10px + (100vw - 576px) / 624 * 0) * 3);
            column-gap: calc((10px + (100vw - 576px) / 624 * 0) * 3);
    font-size: calc(10px + (100vw - 576px) / 624 * 10);
  }
  #site_header nav a {
    padding: calc(6px + (100vw - 576px) / 624 * 4) 0;
  }
}
@media only screen and (min-width: 1200px) {
  #site_header {
    padding: 25px 0 35px;
  }
  #site_header nav {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    font-size: 20px;
  }
  #site_header nav a {
    padding: 10px 0;
  }
}
.portico_image {
  height: auto;
  width: 100%;
}

.welcome_portico_wrapper {
  text-align: center;
}

.welcome_image_wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .welcome_image_wrapper {
    height: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_image_wrapper {
    height: calc(200px + (100vw - 576px) / 624 * 100);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_image_wrapper {
    height: 300px;
  }
}
.welcome_portico {
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .welcome_portico {
    height: 150px;
    margin-top: -100px;
    width: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_portico {
    height: calc(150px + (100vw - 576px) / 624 * 156);
    margin-top: calc((160px + (100vw - 576px) / 624 * 168) / -1.5);
    width: calc(160px + (100vw - 576px) / 624 * 168);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_portico {
    height: 306px;
    margin-top: -204px;
    width: 328px;
  }
}
.welcome_portico_title {
  color: var(--color-dark);
  font-family: "purple_purseregular";
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.welcome_portico_title span {
  display: block;
}

@media only screen and (max-width: 575px) {
  .welcome_portico_title {
    font-size: 32px; /*line-height: calc($welcome-title-size-text-min - $welcome-title-line-height-difference);*/
  }
  .welcome_portico_title span {
    font-size: 24px; /*line-height: calc($welcome-title-span-size-text-min - $welcome-title-line-height-difference);*/
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_portico_title {
    font-size: calc(32px + (100vw - 576px) / 624 * 38); /*line-height: calc((32px + (100vw - 576px) / 624 * 38) - $welcome-title-line-height-difference);*/
  }
  .welcome_portico_title span {
    font-size: calc(24px + (100vw - 576px) / 624 * 26); /*line-height: calc((24px + (100vw - 576px) / 624 * 26) - $welcome-title-line-height-difference);*/
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_portico_title {
    font-size: 70px; /*line-height: calc($welcome-title-size-text-max - $welcome-title-line-height-difference);*/
  }
  .welcome_portico_title span {
    font-size: 50px; /*éline-height: calc($welcome-title-span-size-text-max - $welcome-title-line-height-difference);*/
  }
}
.welcome_address {
  text-transform: uppercase;
}

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

  .marginbr{

    display: inline-block;
    content: " ";
    margin:0px 0 0 0;
  }
  .welcome_address {
    margin-top: 0;
  }
}
@media only screen and (min-width: 430px) and (max-width: 1199px) {
  .welcome_address {
    margin-top: calc(-36px + (100vw - 576px) / 624 * -34);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_address {
    margin-top: -70px;
  }
}
.welcome_city {
  color: var(--color-light);
  font-weight: 900;
  line-height: 1.2;
}

@media only screen and (max-width: 575px) {
  .welcome_city {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_city {
    font-size: calc(28px + (100vw - 576px) / 624 * 34);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_city {
    font-size: 62px;
  }
}
.welcome_calendar {
  color: var(--color-primary);
  font-weight: 900;
}

@media only screen and (max-width: 575px) {
  .welcome_calendar {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_calendar {
    font-size: calc(32px + (100vw - 576px) / 624 * 43);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_calendar {
    font-size: 75px;
  }
}
.welcome_place {
  color: var(--color-light);
  font-weight: 400;
}
.welcome_place span {
  color: var(--color-primary);
  font-weight: 900;
}

@media only screen and (max-width: 575px) {
  .welcome_place {
    font-size: 20px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_place {
    font-size: calc(20px + (100vw - 576px) / 624 * 11);
    margin-top: calc(40px + (100vw - 576px) / 624 * 10);
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_place {
    font-size: 31px;
    margin-top: 50px;
  }
}
.welcome_button_group {
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
}

@media only screen and (max-width: 575px) {
  .welcome_button_group {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .welcome_button_group {
    padding: calc(40px + (100vw - 576px) / 624 * 95) 0;
  }
}
@media only screen and (min-width: 1200px) {
  .welcome_button_group {
    padding: 135px 0;
  }
}
@media only screen and (max-width: 575px) {
  .section {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section {
    padding: calc(60px + (100vw - 576px) / 624 * 110) 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section {
    padding: 90px 0;
  }
}
.section_light {
  background-color: var(--color-light);
  color: var(--color-dark);
  position: relative;
}
.section_light * {
  position: relative;
  z-index: 1;
}
.section_light::before {
  background-image: url(../img/bgi-light.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: 0.05;
  position: absolute;
}

.section_portico {
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .section_portico {
    height: 131px;
    width: 140px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section_portico {
    height: calc(131px + (100vw - 576px) / 624 * 139);
    width: calc(140px + (100vw - 576px) / 624 * 150);
  }
}
@media only screen and (min-width: 1200px) {
  .section_portico {
    height: 270px;
    width: 290px;
  }
}
.section_portico_text {
  color: var(--color-dark);
  font-weight: 900;
  left: 50%;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}

.section_light .section_portico_text {
  color: var(--color-light);
}

@media only screen and (max-width: 575px) {
  .section_portico_text {
    font-size: 24px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section_portico_text {
    font-size: calc(24px + (100vw - 576px) / 624 * 21);
    line-height: calc(24px + (100vw - 576px) / 624 * 21);
  }
}
@media only screen and (min-width: 1200px) {
  .section_portico_text {
    font-size: 45px;
    line-height: 45px;
  }
}
.section_title {
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

@media only screen and (max-width: 575px) {
  .section_title {
    font-size: 36px;
    margin-bottom: 40px;
    margin-top: -60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section_title {
    font-size: calc(36px + (100vw - 576px) / 624 * 76);
    margin-bottom: calc(40px + (100vw - 576px) / 624 * 15);
    margin-top: calc(-60px + (100vw - 576px) / 624 * -160);
  }
}
@media only screen and (min-width: 1200px) {
  .section_title {
    font-size: 112px;
    margin-bottom: 15;
    margin-top: -220px;
  }
}
.section_main_text {
  line-height: 1.2;
}

@media only screen and (max-width: 575px) {
  .section_main_text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section_main_text {
    font-size: calc(18px + (100vw - 576px) / 624 * 2);
  }
}
@media only screen and (min-width: 1200px) {
  .section_main_text {
    font-size: 20px;
  }
}
.section_text {
  line-height: 1.2;
}
.section_text p {
  margin-bottom: 30px;
}

@media only screen and (max-width: 575px) {
  .section_text {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .section_text {
    font-size: calc(16px + (100vw - 576px) / 624 * 4);
    margin-top: calc(40px + (100vw - 576px) / 624 * 25);
  }
}
@media only screen and (min-width: 1200px) {
  .section_text {
    font-size: 20px;
    margin-top: 65px;
  }
}
.maps_wrapper {
  text-align: center;
}
.maps_wrapper img {
  height: auto;
  max-width: 100%;
}

.btn_maps_wrapper {
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .maps_wrapper, .btn_maps_wrapper {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .maps_wrapper, .btn_maps_wrapper {
    margin-top: calc(40px + (100vw - 576px) / 624 * 25);
  }
}
@media only screen and (min-width: 1200px) {
  .maps_wrapper, .btn_maps_wrapper {
    margin-top: 65px;
  }
}
.site_footer_top {
  display: grid;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 30px;
}

.site_footer_top_title {
  color: var(--color-primary);
  font-size: 18px;
  margin-bottom: 10px;
}

.site_footer_logo {
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .site_footer_logo {
    max-width: 260px;
  }
}
@media only screen and (min-width: 768px) {
  .site_footer_top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .site_footer_top_title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .site_footer_top_title {
    font-size: 22px;
  }
}
.site_footer_bottom {
  align-items: center;
  border-top: 3px solid var(--color-primary);
  display: grid;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  row-gap: 30px;
  margin-top: 40px;
  padding: 40px 0;
}

@media screen and (min-width: 480px) {
  .site_footer_bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .site_footer_bottom {
    grid-template-columns: repeat(5, 1fr);
  }
}



/*# sourceMappingURL=style.css.map */
