@charset "UTF-8";
/* ==========================================================================

    module-form-sender

        module-form-sender__form

        module-form-sender__message --success --failure --sending

   ========================================================================= */
.module-form-sender__message {
  display: none;
  min-height: 200px;
  line-height: 200px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 1em;
}

.module-form-sender__message--success {
  color: green;
}

.module-form-sender__message--failure {
  color: red;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/*----------------------------------------------

    colors

    bleu : #0089b6
    rouge : #bb1e10

    grey-light : #f0f0f0
    grey-medium : #b2b2b2

----------------------------------------------*/
.background-grey-light {
  background-color: #f0f0f0;
}

.background-grey-dark {
  background-color: #363636;
}

.background-blue {
  background-color: #0089b6;
}

.background-red {
  background-color: #bb1e10;
}

.color-inverse {
  color: #FFFFFF;
}

.color-inverse:hover {
  color: #FFFFFF;
}

.logo {
  width: 100px;
}

/*----------------------------------------------
    Text
----------------------------------------------*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1em;
}

h1 {
  font-size: 45px;
}

h1 small {
  font-size: 0.75em;
  margin: 0 10px;
  font-weight: 600;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  font-weight: 700;
}

.text-center-justified {
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
}

strong {
  font-weight: 900;
  color: #bb1e10;
}

/*----------------------------------------------
    Text
----------------------------------------------*/
.background-cover {
  background-size: cover;
  background-position: center center;
}

section {
  padding-bottom: 60px;
  padding-top: 60px;
}

/*----------------------------------------------

    section-slider
        section-slider__slider
        section-slider__picto

----------------------------------------------*/
.section-slider {
  padding-bottom: 0;
  padding-top: 0;
}

.section-slider__picto {
  background-color: #0089b6;
}

.ico {
  display: inline-block;
  height: 20px;
}

/* ==========================================================================

    .midi33-list   .midi33-list---hand
        .midi33-list ul
        .midi33-list li

   ========================================================================= */
ul.midi33-list {
  position: relative;
  padding-left: 1.5em;
}

ul.midi33-list li {
  padding-left: 0em;
  padding-bottom: 1em;
  list-style: none;
}

ul.midi33-list li::before {
  content: "\f054";
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  color: #BB1E10;
}

ul.midi33-list.midi33-list---hand li::before {
  content: "\f0a4";
}

ul.midi33-list--checked li::before {
  content: "\f00c";
}

/* ==========================================================================

    .quick-info
        .quick-info__list
            .quick-info__item
                .quick-info__picto
                .quick-info__text

   ========================================================================= */
.quick-info__list {
  padding: 10px 0px;
  overflow: auto;
}

.quick-info__item {
  overflow: auto;
  border-bottom: 1px #FFFFFF solid;
  float: left;
  width: 46%;
  font-size: 14px;
  margin-left: 2%;
  margin-right: 2%;
}

.quick-info__item:last-child {
  border-bottom: none;
}

.quick-info__picto {
  float: left;
}

.quick-info__picto > img {
  width: 40px;
}

.quick-info__text {
  float: right;
  line-height: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .quick-info__picto > img {
    width: 60px;
  }
  .quick-info__item {
    width: 92%;
    margin-left: 4%;
    margin-right: 2%;
    font-size: 14px;
  }
  .quick-info__text {
    line-height: 60px;
  }
}
/* ==========================================================================

    menu tunning

========================================================================= */
.navbar-light .navbar-nav .nav-link {
  color: #bb1e10;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  border: transparent 2px #bb1e10;
  margin-left: 1em;
  margin-right: 1em;
  padding-right: 1em;
  padding-left: 1em;
}

.navbar-light .navbar-nav .nav-link__lng {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
  padding-right: 0.5em !important;
  padding-left: 0.5em !important;
}

.navbar-light .navbar-nav .nav-link:hover {
  opacity: 1;
  color: #bb1e10;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #bb1e10;
  opacity: 1;
  border: solid 2px #bb1e10;
}

.nav-link {
  padding: 0.125rem 1rem;
}

/* ==========================================================================

    colapse

========================================================================= */
.midi33-colapse__btn {
  color: inherit;
}

.midi33-colapse__btn-text {
  margin-bottom: 0;
  text-decoration: none;
  color: #bb1e10;
  white-space: normal;
}

.midi33-colapse__btn-text::before {
  content: "-";
  font-size: 2em;
  position: relative;
  top: 0.15em;
  margin-right: 0.25em;
  color: #b2b2b2;
}

.midi33-colapse__btn.collapsed .midi33-colapse__btn-text::before {
  content: "+";
  font-size: 2em;
  position: relative;
  top: 0.15em;
  margin-right: 0.25em;
  color: #b2b2b2;
}

.midi33-colapse__btn:hover,
.midi33-colapse__btn:focus {
  color: inherit;
  text-decoration: inherit;
  background-color: transparent;
  border-color: transparent;
}

.card-header__midi33 {
  background-color: #FFFFFF;
  border-bottom: none;
}

.card__midi33 {
  border: none;
  border-radius: 0;
}

.card__midi33::after {
  width: 90%;
  width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  content: "";
  border-bottom: 1px #b2b2b2 solid;
}

.card__midi33:last-child::after {
  border-bottom: none;
}

/* ==========================================================================

    banner
        banner__text

========================================================================= */
.banner {
  position: absolute;
  left: 0;
  top: 0;
}

.banner__text {
  position: absolute;
  width: 800px;
  background-color: #bb1e10;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  padding: 10px;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  top: 30px;
  left: -260px;
}

/* ==========================================================================

    map

========================================================================= */
.map {
  width: 100%;
}

iframe {
  width: 100%;
  min-height: 585px;
}

.vk-contact-us-info-text-icon span {
  font-family: themify;
  font-size: 48px;
  line-height: 0.63;
  text-align: left;
  color: #bb1e10;
}

.vk-contact-us-info-text-icon {
  position: absolute;
  left: 0px;
  top: 10px;
}

.vk-contact-us-info-text ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 40px;
}

.vk-contact-us-info-text ul {
  margin: 0px;
  padding: 0px;
}

.vk-contact-us-info-text-right {
  padding-left: 60px;
}

.vk-contact-us-info-text-right h4 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.86;
  text-align: left;
  color: #333;
  margin: 0px;
}

/* ==========================================================================

    photo-ratio

========================================================================= */
.photo-ratio {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66%;
  background-size: cover;
  background-position: center center;
}

section.section-book-now {
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: -1px;
  z-index: 16;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#ui-datepicker-div {
  z-index: 16 !important;
}

/* ==========================================================================

    20201001 : tunning form

========================================================================= */
.btn-primary {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-primary:hover, .btn-primary:active {
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
}

.btn-primary.focus, .btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
}

.form-control:focus {
  border-color: #bd2130;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 0, 0, 0.5);
}

.form-custom label {
  margin-bottom: 0.125rem;
}
.form-custom button[type=submit] {
  margin-bottom: 1px;
}

/* ==========================================================================

    banner-02

========================================================================= */
.banner-02 {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.carousel-item > img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==========================================================================

    tableau

========================================================================= */
.table-price tr td {
  vertical-align: middle;
}

.appart-card {
  border: none;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.appart-card:hover {
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.appart-card__header {
  background-color: #bb1e10;
  color: #fff;
  padding: 1.2rem 1rem 1rem;
}

.appart-card__header h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.appart-card__header .appart-surface {
  font-size: 0.85rem;
  opacity: 0.85;
}

.appart-card .card-body {
  padding: 1.2rem;
}

.appart-card .card-body ul {
  padding-left: 0;
  margin-bottom: 0;
}

.appart-card .card-body li {
  list-style: none;
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.appart-card .card-body li:last-child {
  border-bottom: none;
}

.appart-card .card-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #bb1e10;
  font-weight: bold;
}

.appart-card__footer {
  background: #f8f9fa;
  text-align: center;
  padding: 1rem;
  border-top: 2px solid #f0f0f0;
}

.appart-card__price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #bb1e10;
  line-height: 1.1;
}

.appart-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
}

.appart-card__charges {
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.3rem;
}

.appart-card__persons {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  background: #eee;
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
  color: #444;
}/*# sourceMappingURL=main.css.map */