/*
Theme Name: Dalyse
Theme URI: https://www.dalyse.ca/
Author: Dalyse
Author URI: https://www.dalyse.aero/
Text Domain: Dalyse
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --main-color: #4A4540;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Outfit", sans-serif;
    background-color: #D9D9D9;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    font-size: 18px;
    line-height: 30px;
    color: #4A4540;
    font-weight: 200;
    margin: 0;
}

a {
    text-decoration: none;
}

.dalyse-outline-button {
    text-decoration: none;
    min-height: 48px;
    border: solid 1px var(--main-color);
    padding: 0 44px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    color: var(--main-color);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0 auto;
}

.dalyse-outline-button:hover {
    background-color: var(--main-color);
    color: #fff;
}

.header {
    width: calc(100% - 100px);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 50px;
    display: flex;
    flex-direction: row;
    z-index: 1000;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}

.header .header-inner {
    width: 100%;
    max-width: 1684px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 70px 0;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    position: relative;
}

.header.fixed .header-inner {
    padding: 40px 0;
}

.header-inner .logo {
    width: 160px;
    display: flex;
    flex-direction: row;
    z-index: 9;
}

.header.fixed .header-inner .logo {
    width: 140px;
}

.header-inner .logo a {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.header-inner .logo a img {
    width: 100%;
    height: auto;
}

.header-inner .main-menu {
    width: auto;
    display: flex;
    flex-direction: row;
}

.header-inner .main-menu ul {
    display: flex;
    flex-direction: row;
}

.header-inner .main-menu ul li {
    padding: 0 56px 0 0;
    position: relative;
}

.header-inner .main-menu ul li:after {
    content: "/";
    font-size: 32px;
    font-weight: 200;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
}

.header.fixed .header-inner .main-menu ul li:after {
    color: #D9D9D9;
}

.header-inner .main-menu ul li:last-of-type {
    padding: 0;
}

.header-inner .main-menu ul li:nth-last-child(-n + 2):after {
    display: none;
}

.header-inner .main-menu ul li a {
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    transition: all .3s ease-in-out;
}

.header.fixed .header-inner .main-menu ul li a {
    color: #D9D9D9;
}

.header-inner .main-menu ul li.book a {
    padding: 16px 44px;
    border: solid 1px #fff;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all .3s ease-in-out;
}

.header-inner .main-menu ul li.book a:hover {
    background-color: #fff;
    color: var(--main-color);
}

.header.fixed .header-inner .main-menu ul li.book a {
    border: solid 1px #D9D9D9;
}

.menu-icon-toggle {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 9;
}

.menu-icon-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    background-color: #fff;
    transform: translate(0, -50%);
    transition: opacity 0.3s 0.3s;
}

.menu-icon-toggle span {
    background-color: #fff;
}

.menu-icon-toggle::before,
.menu-icon-toggle::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
}

.menu-icon-toggle::before {
    top: 6px;
}

.menu-icon-toggle::after {
    bottom: 6px;
}

header.open .menu-icon-toggle span {
    opacity: 0;
    transition: opacity 0.3s;
}

header.open .menu-icon-toggle::before,
header.open .menu-icon-toggle::after {
    background-color: #fff;
}

header.open .menu-icon-toggle::before {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

header.open .menu-icon-toggle::after {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

header.open .menu-icon-toggle::before,
header.open .menu-icon-toggle::after {
    transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
}

/* Content */
.dalyse-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-banner {
    width: 100%;
    height: 100vh;
    min-height: 680px;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home-banner-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}

.home-banner-inner h1 {
    color: #fff;
    font-weight: bold;
    font-size: 80px;
    line-height: 80px;
    max-width: 500px;
    text-align: center;
}

.home-banner-search {
    width: calc(100% - 100px);
    margin: 0 auto;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    padding: 0 50px;
}

.home-banner-search-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 120px;
    background-color: var(--main-color);
}

.home-banner-search-inner p {
    min-width: 220px;
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.home-banner-search-inner form {
    display: flex;
    flex: 1;
    flex-direction: row;
    margin: 0 0 0 59px;
}

.home-banner-search-inner .form-group {
    display: flex;
    flex-direction: row;
    border: solid 1px #fff;
    min-height: 60px;
    flex: 1;
    margin: 0 16px 0 0;
    max-width: 520px;
}

.home-banner-search-inner .form-group:last-child {
    margin: 0;
}

.home-banner-search-inner .form-group .form-group-wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    position: relative;
}

.home-banner-search-inner .form-group .form-group-wrapper i {
    font-size: 16px;
    color: #D9D9D9;
    margin: 0 12px 0 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    pointer-events: none;
}

.home-banner-search-inner .form-group .form-group-wrapper input {
    min-height: 25px;
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    font-size: 18px;
    line-height: 18px;
    color: #D9D9D9;
    font-weight: 300;
    font-family: "outfit", sans-serif;
    padding: 0 20px 0 50px;
    height: 100%;
    cursor: pointer;
}

.home-banner-search-inner .form-group .select-wrapper {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.home-banner-search-inner .form-group.select {
    max-width: 314px;
}

.home-banner-search-inner .form-group .select-wrapper:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-size: 16px;
    color: #D9D9D9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 37px;
    pointer-events: none;
}

.home-banner-search-inner .form-group .select-wrapper select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    min-height: 25px;
    padding: 0 37px;
    color: #D9D9D9;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    outline: none;
    /* for Firefox */
    -moz-appearance: none;
    /* for Safari, Chrome, Opera */
    -webkit-appearance: none;
    appearance: none;
    font-family: "outfit", sans-serif;
}

.home-banner-search-inner .form-group .form-group-wrapper input::placeholder {
    color: #D9D9D9;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}

.home-banner-search-inner .form-group.submit {
    border: none;
    max-width: 60px;
}

.home-banner-search-inner .form-group.submit button {
    width: 60px;
    height: 60px;
    background-color: #D9D9D9;
    border: none;
    outline: none;
    color: var(--main-color);
}

.home-banner-search-inner .form-group.submit button i {
    font-size: 24px;
    font-weight: 900;
}

.home-condos-content {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    margin: 174px 0 0 0;
    padding: 0 50px;
}

.home-condos-content .home-condos-content-inner {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.home-condos-content-inner h2 {
    font-size: 27px;
    line-height: 30px;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
}

.home-condos-content-inner p {
    max-width: 1194px;
    line-height: 30px;
    text-align: center;
    margin: 12px auto 0 auto;
}

.home-condos-content-inner-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px 0 0 0;
}

.home-condos-content-inner-items .item {
    width: calc(33.33% - 15px);
    height: 320px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 50px rgba(10, 93, 99, .49);
}

.home-condos-content-inner-items .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-condos-content-inner a.dalyse-outline-button {
    margin: 54px auto 0;
}

/* General banner */
.banner {
    width: 100%;
    min-height: 594px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 81%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 100px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.banner-inner h1 {
    color: #fff;
    font-size: 80px;
    line-height: 100px;
    font-weight: 700;
}

.chalet {
    width: 100%;
    margin: 174px 0 0 0;
    display: flex;
    flex-direction: row;
    background-color: #fff;
}

.chalet-left {
    width: 50%;
    display: flex;
}

.chalet-left img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.chalet-right {
    width: calc(50% - 300px);
    display: flex;
    flex-direction: column;
    padding: 178px 120px;
    position: relative;
}

.chalet-right:before {
    content: "";
    width: 250px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -250px;
    background-color: #fff;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.chalet-right h2 {
    max-width: 482px;
    font-size: 27px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--main-color);
}

.chalet-right h2 span {
    font-weight: 300;
    text-transform: none;
}

.chalet-right p {
    max-width: 482px;
    margin: 30px 0 0 0;
}

.chalet-right a {
    margin: 30px auto 0 0;
}

.footer {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    background-color: var(--main-color);
    padding: 0 50px;
    margin: 0;
}

.footer .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 125px 0 90px 0;
}

.footer .footer-inner .infos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .footer-inner .infos .infos-left {
    width: auto;
}

.footer .footer-inner .infos .infos-left a {
    border-color: #D9D9D9;
    color: #D9D9D9;
}

.footer .footer-inner .infos .infos-left a:hover {
    background-color: #D9D9D9;
    color: var(--main-color);
}

.footer .footer-inner .infos .infos-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .footer-inner .infos .infos-center .widgettitle {
    color: #D9D9D9;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    margin: 0;
}

.footer .footer-inner .infos .infos-center ul {
    margin: 5px 0 0 0;
}

.footer .footer-inner .infos .infos-center ul li {
    margin: 0;
}

.footer .footer-inner .infos .infos-center ul li a {
    font-size: 18px;
    line-height: 30px;
    color: #D9D9D9;
    font-weight: 200;
}

.footer .footer-inner .infos .infos-center ul li a:hover {
    text-decoration: underline;
}

.footer .footer-inner .infos .infos-center .contact {
    /* margin: 0 0 0 100px; */
    margin: 0;
}

.footer .footer-inner .infos .infos-center .contact p {
    color: #D9D9D9;
    max-width: 180px;
    font-weight: 200;
}

.footer .footer-inner .infos .infos-center .contact p a {
    color: #fff;
}

.footer .footer-inner .infos .infos-right {
    width: 160px;
}

.footer .footer-inner .infos .infos-right img {
    width: 100%;
    height: auto;
}

.footer .footer-inner .copyright {
    width: 100%;
    margin: 61px 0 0 0;
    padding: 28px 0 0 0;
    border-top: solid 1px #D9D9D9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-inner .copyright-left {
    width: auto;
}

.footer .footer-inner .copyright-left ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer .footer-inner .copyright-left ul li {
    position: relative;
    padding: 0 40px 0 0;
}

.footer .footer-inner .copyright-left ul li:after {
    content: "/";
    font-size: 24px;
    font-weight: 200;
    color: #D9D9D9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.footer .footer-inner .copyright-left ul li:last-of-type {
    padding: 0;
}

.footer .footer-inner .copyright-left ul li:last-of-type:after {
    display: none;
}

.footer .footer-inner .copyright-left ul li a {
    color: #D9D9D9;
    font-weight: 200;
    font-size: 13px;
    line-height: 16px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer .footer-inner .copyright-left ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer .footer-inner .copyright-left ul li.current-menu-item a {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-inner .copyright-right {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.footer .footer-inner .copyright-right p {
    font-weight: 200px;
    color: #D9D9D9;
    font-size: 13px;
    line-height: 16px;
}

.ui-datepicker {
    width: 280px;
    padding: 0;
    background: var(--main-color);
    border-radius: 4px;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.ui-datepicker.active {
    padding: 5px;
    margin: 4px 0 0 0;
}

@media screen and (max-width: 580px) {
    .ui-datepicker {
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100%;
        border-radius: 0px;
    }
}

.ui-datepicker.active {
    opacity: 1;
}

.ui-datepicker-header {
    height: 40px;
    padding: 3px;
    margin-bottom: 10px;
}

.ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    line-height: 34px;
}

.ui-datepicker-month,
.ui-datepicker-year {
    /*-webkit-appearance: none;*/
    border: 0;
    background: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin: 0 1px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    text-indent: 9999px;
    overflow: hidden;
    border-radius: 3px;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(89, 98, 112, 0.6);
}

.ui-datepicker-prev {
    float: left;
}

.ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin-left: 15px;
}

.ui-datepicker-next {
    float: right;
}

.ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin-left: 13px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    content: "";
    position: absolute;
    display: block;
    margin-top: -10px;
    width: 6px;
    height: 6px;
    border-left: 2px solid #C2C7D1;
    border-bottom: 2px solid #C2C7D1;
    pointer-events: none;
}

.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

.ui-datepicker-calendar thead tr th {
    width: 40px;
    padding-bottom: 6px;
}

.ui-datepicker-calendar thead tr th span {
    display: block;
    width: 100%;
    padding: 0;
    color: #8D9298;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.ui-datepicker-calendar tbody tr td {
    padding-right: 3px;
    padding-bottom: 3px;
}

.ui-datepicker-calendar tbody tr td:first-child {
    padding-left: 3px;
}

.ui-state-default {
    display: block;
    text-decoration: none;
    color: white;
    height: 34px;
    line-height: 34px;
    border-radius: 3px;
    font-size: 12px;
}

.ui-state-default:hover {
    background: rgba(89, 98, 112, 0.6);
    text-decoration: none;
    color: white;
}

.ui-state-highlight {
    background-color: #fff;
    color: var(--main-color);
}

.ui-state-active:not(.ui-state-highlight) {
    color: white;
    background: #5D9CF5;
}

.ui-datepicker-unselectable .ui-state-default {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* Contact */
.contact-section {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    padding: 161px 50px;
    margin: 0;
    background-color: #fff;
}

.contact-section .contact-section-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-section-inner .contact-section-inner-left {
    width: calc(50% - 64px);
    display: flex;
    flex-direction: column;
    padding: 0 64px 0 0;
}

.contact-section-inner-left h2 {
    width: 100%;
    font-size: 27px;
    line-height: 30px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
}

.contact-section-inner-left p {
    font-size: 18px;
    line-height: 30px;
    color: var(--main-color);
    margin: 20px 0 0 0;
}

.contact-section-inner-left .info {
    width: 100%;
    margin: 78px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-section-inner-left .info .info-item {
    width: auto;
    display: flex;
    flex-direction: column;
    margin: 0 0 48px 0;
}

.contact-section-inner-left .info .info-item:last-child {
    margin-bottom: 0;
}

.contact-section-inner-left .info .info-item.half {
    width: calc(50% - 16px);
    padding: 0;
}

.contact-section-inner-left .info .info-item.full {
    width: 100%;
    padding: 0;
}

.contact-section-inner-left .info .info-item p {
    margin: 16px 0 0 0;
    font-size: 20px;
    line-height: 30px;
    color: var(--main-color);
    font-weight: 700;
}

.contact-section-inner-left .info .info-item ul {
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
}

.contact-section-inner-left .info .info-item ul li {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 16px 0;
    font-weight: 300;
}

.contact-section-inner-left .info .info-item ul li:last-child {
    margin: 0;
    font-weight: 500;
}

.contact-section-inner-left .info .info-item ul li a {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--main-color);
}

.contact-section-inner .contact-section-inner-right {
    width: calc(50% - 64px);
    display: flex;
    flex-direction: column;
    padding: 0 0 0 64px;
    margin: 0;
}

.contact-section-inner-right .wpcf7-form {
    width: calc(100% - 64px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 32px;
}

.contact-section-inner-right .wpcf7-form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 14px 0;
}

.contact-section-inner-right .wpcf7-form .form-group.half {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
}

.contact-section-inner-right .wpcf7-form .form-group.full {
    width: 100%;
}

.contact-section-inner-right .wpcf7-form .form-group p {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-section-inner-right .wpcf7-form .form-group p label {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-color);
    font-weight: 500;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 6px 0 0 0;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap input {
    height: 48px;
    border: solid 1px var(--main-color);
    padding: 0 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-color);
    font-family: "Outfit", sans-serif;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap textarea {
    border-radius: 0;
    resize: none;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap input::placeholder {
    color: var(--main-color);
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label input {
    width: 40px;
    height: 40px;
    display: none;
    border-radius: 0;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label .wpcf7-list-item-label {
    padding: 0 0 0 32px;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label .wpcf7-list-item-label:before {
    content: "";
    width: 19px;
    height: 19px;
    border: solid 1px var(--main-color);
    position: absolute;
    top: 2px;
    left: 0;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label input:checked+.wpcf7-list-item-label:before {
    background-color: var(--main-color);
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label .wpcf7-list-item-label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 4px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    visibility: hidden;
    opacity: 0;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label input:checked+.wpcf7-list-item-label:after {
    visibility: visible;
    opacity: 1;
}

.contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label .wpcf7-list-item-label a {
    text-decoration: underline;
    color: var(--main-color);
}

.contact-section-inner-right .wpcf7-form .submit {
    margin: 18px 0 0 0;
}

.contact-section-inner-right .wpcf7-form .submit p {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
}

.contact-section-inner-right .wpcf7-form .submit p .wpcf7-submit {
    width: 100%;
    background-color: var(--main-color);
    min-height: 50px;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;

}

.contact-section-inner-right .wpcf7-form .submit p .wpcf7-spinner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    margin: 0;
}

/* Terms & conditions */
.declarations-terms {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #fff;
}

.declarations-terms-inner {
    width: calc(100% - 100px);
    padding: 161px 50px;
    display: flex;
    flex-direction: column;
    max-width: 1540px;
    margin: 0 auto;
}

.declarations-terms-inner h1,
.declarations-terms-inner h2,
.declarations-terms-inner h3,
.declarations-terms-inner h4,
.declarations-terms-inner h5,
.declarations-terms-inner h6 {
    margin: 0 0 20px 0;
}

.declarations-terms-inner h2 {
    font-size: 27px;
    line-height: 44px;
    font-weight: 700;
    text-transform: uppercase;
}

.declarations-terms-inner h4 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 25px;
}

.declarations-terms-inner p {
    margin: 0 0 25px 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.declarations-terms-inner p a {
    color: var(--main-color);
    text-decoration: underline;
}

.declarations-terms-inner p strong {
    font-weight: 500;
}

.declarations-terms-inner p:last-of-type {
    margin: 0;
}

.declarations-terms-inner ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 25px 0;
    padding: 0 0 0 30px;
}

.declarations-terms-inner ul:last-of-type {
    margin: 0;
}

.declarations-terms-inner ul li {
    margin: 5px 0 0 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    list-style: disc;
}

.declarations-terms-inner ul li a {
    color: var(--main-color);
    text-decoration: underline;
}

/* Complianz */
body.cmplz-document .header {
    background-color: var(--main-color);
}

body.cmplz-document .header .header-inner {
    padding: 40px 0;
}

body.cmplz-document .dalyse-content {
    background-color: #fff;
}

.dalyse-content .cmplz-document-title {
    width: calc(100% - 100px);
    max-width: 1200px;
    margin: 260px auto 30px auto;
    padding: 0 50px;
    color: var(--main-color);
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.dalyse-content #cmplz-document {
    width: calc(100% - 100px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 90px 50px;
    font-size: 18px;
    line-height: 30px;
    color: var(--main-color);
    font-weight: 300;
}

.dalyse-content #cmplz-document p,
.dalyse-content #cmplz-document ul li,
.dalyse-content #cmplz-document ol li {
    font-size: 18px;
    line-height: 30px;
    color: var(--main-color);
    margin: 0 0 20px 0;
    font-weight: 300;
}

.dalyse-content #cmplz-document p:empty {
    margin: 0;
}

.dalyse-content #cmplz-document p:empty+h2 {
    margin: 15px 0 20px 0;
}

.dalyse-content #cmplz-document ul li,
.dalyse-content #cmplz-document ol li {
    margin: 0 0 10px 0;
}

.dalyse-content #cmplz-document p strong,
.dalyse-content #cmplz-document ul li strong,
.dalyse-content #cmplz-document ol li strong {
    font-weight: 500;
}

.dalyse-content #cmplz-document ul,
.dalyse-content #cmplz-document ol {
    padding: 0;
    margin: 0 0 10px 0;
}

.dalyse-content #cmplz-document ul li,
.dalyse-content #cmplz-document ol li {
    padding: 0 0 0 18px;
    position: relative;
}

.dalyse-content #cmplz-document ul li:before,
.dalyse-content #cmplz-document ol li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 7px;
}

.dalyse-content #cmplz-document h1,
.dalyse-content #cmplz-document h2,
.dalyse-content #cmplz-document h3,
.dalyse-content #cmplz-document h4,
.dalyse-content #cmplz-document h5,
.dalyse-content #cmplz-document h6 {
    font-weight: 500;
    margin: 0 0 20px 0;
    padding: 0;
}

.dalyse-content #cmplz-document a {
    color: var(--main-color);
    text-decoration: underline;
    outline: none;
}

.dalyse-content #cmplz-document .cmplz-dropdown:last-of-type {
    margin: 0 0 20px 0;
}

.dalyse-content #cmplz-document .cmplz-dropdown,
.dalyse-content #cmplz-document .cmplz-dropdown summary,
.dalyse-content #cmplz-document .cmplz-dropdown summary p,
.dalyse-content #cmplz-document .cmplz-dropdown summary ul,
.dalyse-content #cmplz-document .cmplz-dropdown summary ul li {
    background-color: transparent;
}

.dalyse-content #cmplz-document .cmplz-manage-consent-container {
    margin: 0 0 20px 0;
}

.dalyse-content #cmplz-document .cmplz-dropdown summary {
    padding-left: 0;
    padding-right: 0;
}

/* Responsive start here */
@media only screen and (max-width: 1500px) {
    .header .header-inner {
        padding: 50px 0;
    }

    .header.fixed .header-inner {
        padding: 30px 0;
    }

    .header .header-inner .logo {
        width: 120px;
    }

    .header.fixed .header-inner .logo {
        width: 100px;
    }

    .header .header-inner .main-menu ul li.book a {
        padding: 12px 38px;
        font-size: 16px;
        line-height: 20px;
    }

    .home-banner-inner h1,
    .banner-inner h1 {
        font-size: 64px;
        line-height: 64px;
        max-width: 420px;
    }

    .home-banner-search-inner {
        padding: 38px 90px;
    }

    .dalyse-content .cmplz-document-title {
        width: calc(100% - 80px);
        margin: 220px auto 30px auto;
        padding: 0 40px;
    }

    .dalyse-content #cmplz-document {
        width: calc(100% - 80px);
        padding: 0 40px 90px 40px;
    }

    .footer {
        width: calc(100% - 80px);
        padding: 0 40px;
    }
}

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

    .header,
    .home-condos-content {
        width: calc(100% - 80px);
        padding: 0 40px;
    }

    .home-condos-content {
        margin: 150px 0 0 0;
    }

    .header .header-inner {
        padding: 40px 0;
    }

    .header-inner .main-menu ul li {
        padding: 0 46px 0 0;
    }

    .header-inner .main-menu ul li:after {
        right: 18px;
    }

    .home-banner-search {
        width: calc(100% - 80px);
        padding: 0 40px;
        bottom: -45px;
    }

    .home-banner-search-inner {
        padding: 30px 50px;
    }

    .home-banner-search-inner p {
        font-size: 16px;
        max-width: 190px;
    }

    .home-banner-search-inner form {
        margin: 0;
    }

    .home-banner-search-inner .form-group {
        max-width: 450px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper i {
        left: 14px;
        font-size: 14px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper input {
        padding: 0 20px 0 34px;
    }

    .home-banner-search-inner .form-group .select-wrapper select {
        padding: 0 20px;
    }

    .home-condos-content {
        margin: 100px 0 0 0;
    }

    .home-condos-content-inner-items .item {
        height: 280px;
    }

    .chalet {
        margin: 150px 0 0 0;
    }

    .chalet-right {
        width: calc(50% - 150px);
        padding: 150px 100px 150px 50px;
    }

    .chalet-right:before {
        width: 200px;
        left: -200px;
    }

    .contact-section,
    .declarations-terms-inner {
        width: calc(100% - 80px);
        padding: 120px 40px;
    }

    .contact-section-inner .contact-section-inner-left {
        width: calc(50% - 50px);
        padding: 0 50px 0 0;
    }

    .contact-section-inner .contact-section-inner-right {
        width: calc(50% - 50px);
        padding: 0 0 0 50px;
    }

    .dalyse-content .cmplz-document-title {
        width: calc(100% - 70px);
        margin: 200px auto 30px auto;
        padding: 0 35px;
    }

    .dalyse-content #cmplz-document {
        width: calc(100% - 70px);
        padding: 0 35px 70px 35px;
    }

    .footer {
        width: calc(100% - 70px);
        padding: 0 35px;
    }

    .footer .footer-inner {
        padding: 100px 0 70px 0;
    }
}

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

    .header,
    .home-condos-content {
        width: calc(100% - 70px);
        padding: 0 35px;
    }

    .header .header-inner {
        padding: 30px 0;
    }

    .home-banner-inner h1,
    .banner-inner h1 {
        font-size: 44px;
        line-height: 46px;
        max-width: 320px;
    }

    .home-banner-search {
        width: calc(100% - 70px);
        padding: 0 35px;
    }

    .home-banner-search-inner {
        padding: 25px 30px;
    }

    .home-banner-search-inner p {
        font-size: 12px;
        line-height: 20px;
        min-width: auto;
        margin: 0 15px 0 0;
    }

    .home-banner-search-inner .form-group {
        min-height: 50px;
        max-width: 410px;
    }

    .home-banner-search-inner .form-group.submit button {
        width: 50px;
        height: 50px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper input {
        max-width: 80px;
        padding: 0 20px 0 34px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper {
        width: 50%;
    }

    .home-banner-search-inner .form-group.select {
        max-width: 180px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper i {
        left: 10px;
        font-size: 11px;
    }

    .home-banner-search-inner .form-group .select-wrapper:after {
        right: 25px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper input {
        padding: 0 15px 0 25px;
        font-size: 16px;
    }

    .home-banner-search-inner .form-group .select-wrapper select {
        font-size: 16px;
        line-height: 16px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper input::placeholder {
        font-size: 16px;
        line-height: 16px;
    }

    .chalet {
        margin: 120px 0 0 0;
    }

    .home-condos-content-inner-items .item {
        height: 250px;
    }

    .banner {
        min-height: 400px;
    }

    .contact-section,
    .declarations-terms-inner {
        width: calc(100% - 70px);
        padding: 80px 35px;
    }

    .contact-section-inner .contact-section-inner-left {
        width: calc(50% - 30px);
        padding: 0 30px 0 0;
    }

    .contact-section-inner-left h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .contact-section-inner-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-section-inner-left .info {
        margin: 40px 0 0 0;
    }

    .contact-section-inner .contact-section-inner-right {
        width: calc(50% - 30px);
        padding: 0 0 0 30px;
    }

    .contact-section-inner-right .wpcf7-form {
        width: 100%;
        padding: 40px 0 10px 0;
    }

    .footer .footer-inner {
        padding: 80px 0 60px 0;
    }
}

@media only screen and (max-width: 991px) {
    p {
        font-size: 16px;
        line-height: 24px;
    }

    .header,
    .home-condos-content {
        width: calc(100% - 60px);
        padding: 0 30px;
    }

    .header .header-inner {
        padding: 20px 0;
    }

    .header.fixed .header-inner {
        padding: 15px 0;
    }

    .header .header-inner .logo {
        width: 90px;
    }

    .header.fixed .header-inner .logo {
        width: 80px;
    }

    body.cmplz-document .header .header-inner {
        padding: 15px 0;
    }

    .menu-icon-toggle {
        display: block;
    }

    .header-inner .main-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        height: 100vh;
        background-color: var(--main-color);
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    header.open .header-inner .main-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    header .header-inner .main-menu .menu-main-menu-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    header .header-inner .main-menu .menu-main-menu-container ul {
        display: flex;
        flex-direction: column;
    }

    header .header-inner .main-menu .menu-main-menu-container ul li {
        margin: 0 0 30px 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .header-inner .main-menu .menu-main-menu-container ul li:after {
        display: none;
    }

    header .header-inner .main-menu .menu-main-menu-container ul li a {
        width: auto;
        font-size: 20px;
        line-height: 24px;
    }

    .header .header-inner .main-menu ul li.book a {
        padding: 10px 30px;
        font-size: 15px;
        line-height: 18px;
    }

    .home-banner-inner h1,
    .banner-inner h1 {
        font-size: 38px;
        line-height: 44px;
    }

    .home-banner-search {
        width: calc(100% - 60px);
        padding: 0 30px;
    }

    .home-banner-search-inner {
        padding: 20px 25px;
    }

    .home-banner-search-inner .form-group .select-wrapper:after {
        right: 15px;
    }

    .home-banner-search-inner .form-group .select-wrapper select {
        padding: 0 15px;
    }

    .home-condos-content {
        margin: 80px 0 0 0;
    }

    .home-condos-content-inner h2,
    .chalet-right h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .home-condos-content-inner-items .item {
        height: 200px;
    }

    .home-condos-content-inner a.dalyse-outline-button {
        margin: 40px 0 0 0;
    }

    .chalet {
        margin: 80px 0 0 0;
    }

    .chalet-right {
        width: calc(50% - 120px);
        padding: 150px 80px 150px 30px;
    }

    .chalet-right:before {
        width: 180px;
        left: -180px;
    }

    .contact-section,
    .declarations-terms-inner {
        width: calc(100% - 60px);
        padding: 60px 30px;
    }

    .contact-section-inner .contact-section-inner-left {
        width: calc(50% - 15px);
        padding: 0 15px 0 0;
    }

    .contact-section-inner-left .info .info-item {
        margin-bottom: 30px;
    }

    .contact-section-inner-left .info .info-item.half {
        width: calc(50% - 10px);
    }

    .contact-section-inner-left .info .info-item p {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-section-inner-left .info .info-item ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-section-inner .contact-section-inner-right {
        width: calc(50% - 15px);
        padding: 0 0 0 15px;
    }

    .declarations-terms-inner h1,
    .declarations-terms-inner h2,
    .declarations-terms-inner h3,
    .declarations-terms-inner h4,
    .declarations-terms-inner h5,
    .declarations-terms-inner h6 {
        margin: 0 0 15px 0;
    }

    .declarations-terms-inner h2 {
        font-size: 24px;
        line-height: 38px;
    }

    .declarations-terms-inner p {
        margin: 0 0 20px 0;
    }

    .declarations-terms-inner h4 {
        margin-top: 15px;
    }

    .dalyse-content .cmplz-document-title {
        width: calc(100% - 60px);
        margin: 160px auto 30px auto;
        padding: 0 30px;
    }

    .dalyse-content #cmplz-document {
        width: calc(100% - 60px);
        padding: 0 30px 60px 30px;
    }

    .footer {
        width: calc(100% - 60px);
        padding: 0 30px;
    }

    .footer .footer-inner {
        padding: 70px 0 50px 0;
    }

    .footer .footer-inner .infos .infos-left {
        padding: 0 10px 0 0;
    }

    .footer .footer-inner .infos .infos-center {
        padding: 0 10px;
    }

    .footer .footer-inner .infos .infos-right {
        padding: 0 0 0 10px;
    }

    .footer .footer-inner .infos .infos-right {
        width: 120px;
    }

    .footer .footer-inner .infos .infos-center .widgettitle {
        font-size: 18px;
        line-height: 24px;
    }

    .footer .footer-inner .infos .infos-center ul li a {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .footer-inner .infos .infos-center .contact p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .footer-inner .copyright {
        margin: 30px 0 0 0;
        padding: 20px 0 0 0;
        flex-direction: column;
    }

    .footer .footer-inner .copyright-left {
        width: 100%;
    }

    .footer .footer-inner .copyright-left ul {
        justify-content: center;
    }

    .footer .footer-inner .copyright-right {
        width: 100%;
        justify-content: center;
        margin: 20px 0 0 0;
    }
}

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

    .dalyse-outline-button {
        width: calc(100% - 60px);
        justify-content: center;
        padding: 0 30px;
    }

    .header,
    .home-condos-content {
        width: calc(100% - 50px);
        padding: 0 25px;
    }

    .header .header-inner {
        padding: 15px 0;
    }

    .header.fixed .header-inner {
        padding: 10px 0;
    }

    .header .header-inner .main-menu ul li.book a {
        padding: 10px 25px;
        font-size: 14px;
        line-height: 18px;
    }

    .home-condos-content {
        margin: 60px 0 0 0;
    }

    .home-banner {
        min-height: 400px;
    }

    .home-banner-inner h1,
    .banner-inner h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .home-banner-search-inner {
        flex-direction: column;
    }

    .home-banner-search {
        width: calc(100% - 50px);
        padding: 0 25px;
    }

    .home-banner-search-inner p {
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
    }

    .home-banner-search-inner form {
        width: 100%;
        margin: 20px 0 0 0;
        flex-direction: column;
    }

    .home-banner-search-inner .form-group {
        width: 100%;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .home-banner-search-inner .form-group .form-group-wrapper i {
        left: 10px;
        font-size: 14px;
    }

    .home-banner-search-inner .form-group .form-group-wrapper {
        max-width: 50%;
    }

    .home-banner-search-inner .form-group .form-group-wrapper input {
        max-width: calc(100% - 40px);
        padding: 0 10px 0 30px;
    }

    .home-banner-search-inner .form-group:last-of-type {
        margin: 0;
    }

    .home-banner-search-inner .form-group.select {
        max-width: 100%;
    }

    .home-banner-search-inner .form-group.submit {
        max-width: 100%;
        width: 100%;
    }

    .home-banner-search-inner .form-group.submit button {
        width: 100%;
        height: 50px;
    }

    .home-banner-search {
        bottom: -114px;
    }

    .home-condos-content-inner-items {
        flex-direction: column;
    }

    .home-condos-content-inner-items .item {
        width: 100%;
        height: auto;
        margin: 0 0 30px 0;
    }

    .home-condos-content-inner-items .item:last-of-type {
        margin: 0;
    }

    .home-condos-content-inner a.dalyse-outline-button {
        margin: 30px 0 0 0;
    }

    .chalet {
        margin: 60px 0 0 0;
        flex-direction: column;
    }

    .chalet-left {
        width: 100%;
        padding: 0;
    }

    .chalet-right {
        width: calc(100% - 50px);
        padding: 50px 25px;
    }

    .chalet-right:before {
        width: calc(100% + 20px);
        height: 50px;
        left: -10px;
        top: -49px;
        background-color: #fff;
    }

    .banner {
        min-height: 350px;
    }

    .contact-section,
    .declarations-terms-inner {
        width: calc(100% - 50px);
        padding: 50px 25px;
    }

    .contact-section .contact-section-inner {
        flex-direction: column;
    }

    .contact-section-inner .contact-section-inner-left {
        width: 100%;
        padding: 0;
    }

    .contact-section-inner-left p {
        margin: 10px 0 0 0;
    }

    .contact-section-inner-left .info {
        margin: 20px 0 0 0;
    }

    .contact-section-inner-left .info .info-item {
        margin-bottom: 20px;
    }

    .contact-section-inner-left .info .info-item.half {
        width: 100%;
    }

    .contact-section-inner-left .info .info-item p {
        margin: 8px 0 0 0;
    }

    .contact-section-inner-left .info .info-item ul li {
        margin-bottom: 8px;
    }

    .contact-section-inner .contact-section-inner-right {
        width: 100%;
        padding: 0;
        margin: 25px 0 0 0;
    }

    .contact-section-inner-right .wpcf7-form {
        padding: 0 0 10px 0;
    }

    .contact-section-inner-right .wpcf7-form .form-group.half {
        width: 100%;
    }

    .dalyse-content .cmplz-document-title {
        width: calc(100% - 50px);
        margin: 130px auto 20px auto;
        padding: 0 25px;
        font-size: 20px;
        line-height: 24px;
    }

    .dalyse-content #cmplz-document {
        width: calc(100% - 50px);
        padding: 0 25px 50px 25px;
    }

    .dalyse-content #cmplz-document p,
    .dalyse-content #cmplz-document ul li,
    .dalyse-content #cmplz-document ol li {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 15px 0;
    }

    .dalyse-content #cmplz-document p br,
    .dalyse-content #cmplz-document ul li br,
    .dalyse-content #cmplz-document ol li br {
        display: none;
    }

    .dalyse-content #cmplz-document h1,
    .dalyse-content #cmplz-document h2,
    .dalyse-content #cmplz-document h3,
    .dalyse-content #cmplz-document h4,
    .dalyse-content #cmplz-document h5,
    .dalyse-content #cmplz-document h6 {
        margin: 0 0 15px 0;
    }

    .footer {
        width: calc(100% - 50px);
        padding: 0 25px;
    }

    .footer .footer-inner {
        padding: 50px 0;
    }

    .footer .footer-inner .infos {
        flex-direction: column;
    }

    .footer .footer-inner .infos .infos-left {
        display: none;
        order: 3;
        padding: 0;
    }

    .footer .footer-inner .infos .infos-center {
        width: 100%;
        order: 2;
        padding: 0;
    }

    .footer .footer-inner .infos .infos-center {
        width: 100%;
        order: 2;
        padding: 0;
        flex-direction: column;
    }

    .footer .footer-inner .infos .infos-center .list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0 0;
    }

    .footer .footer-inner .infos .infos-center ul {
        margin: 5px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-inner .infos .infos-center .contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0 0;
    }

    .footer .footer-inner .infos .infos-center .contact p {
        text-align: center;
    }

    .footer .footer-inner .infos .infos-right {
        width: 100%;
        order: 1;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .contact-section-inner-right .wpcf7-form .form-group p .wpcf7-form-control-wrap .wpcf7-acceptance label .wpcf7-list-item-label a {
        font-size: 14px;
        line-height: 16px;
    }

    .declarations-terms-inner h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .declarations-terms-inner h4 {
        margin-top: 0;
    }

    .declarations-terms-inner p {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 15px 0;
    }

    .declarations-terms-inner ul {
        margin-bottom: 20px;
        padding: 0 0 0 25px;
    }

    .declarations-terms-inner ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .footer-inner .infos .infos-right img {
        max-width: 150px;
    }

    .footer .footer-inner .copyright-left ul li {
        padding: 0 24px 0 0;
    }

    .footer .footer-inner .copyright-left ul li:after {
        right: 7px;
    }

}

@media only screen and (max-width: 480px) {
    .header {
        width: calc(100% - 40px);
        padding: 0 20px;
    }

    .home-banner-search {
        width: calc(100% - 40px);
        padding: 0 20px;
    }

    .home-banner-search-inner {
        width: calc(100% - 40px);
        padding: 20px;
    }

    .home-banner-inner h1,
    .banner-inner h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .chalet-right {
        width: calc(100% - 40px);
        padding: 30px 20px 40px 20px;
    }

    .home-condos-content-inner h2,
    .chalet-right h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .banner {
        min-height: 320px;
    }

    .contact-section,
    .declarations-terms-inner {
        width: calc(100% - 40px);
        padding: 40px 20px;
    }

    .dalyse-content .cmplz-document-title {
        width: calc(100% - 40px);
        margin: 130px auto 20px auto;
        padding: 0 20px;
    }

    .dalyse-content #cmplz-document {
        width: calc(100% - 40px);
        padding: 0 20px 40px 20px;
    }

    .footer {
        width: calc(100% - 40px);
        padding: 0 20px;
    }
}