@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body, html {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 14px;
    color: #3c3c3b;
}
body {
    padding-top: 200px;
}
p {
    line-height: 1.85;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .container-fluid {
        max-width: 95%;
    }
}
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 90%;
    }
}

/* NAVIGATION */
.navbar-light {
    height: 100px;
    padding-top: 100px;
    padding-bottom: 0;
    background: transparent !important;
    padding-left: 0;
    padding-right: 0;
}
.navbar-light.active {
    height: 100px;
    box-shadow: rgba(10,10,10,0.1) 0 2px 5px;
    background: #fff !important;
    transition: 0.3s ease background;
}
.navbar-light .container-fluid {
    transition: 0.5s ease transform;
}
.navbar-light.active .container-fluid {
    transform: translateY(-50px);
}
.navbar .navbar-brand {
    position: relative;
    padding-left: 64px;
    text-decoration: none !important;
}
.navbar .navbar-brand img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 48px;
    margin: auto;
}
.navbar .navbar-brand h3 {
    display: block;
    margin: 0 0 -3px 0;
    font-weight: 600;
    color: #3c3c3b;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.navbar .navbar-brand h1 {
    display: block;
    margin: 0;
    font-weight: 600;
    color: #3c3c3b;
    font-size: 2rem;
    letter-spacing: -1px;
}
.navbar .nav-item > .nav-link {
    color: #3c3c3b;
    font-size: 1rem;
    margin-left: 10px;
}
.navbar .nav-item > .nav-link:hover {
    color: #00b3c4;
    text-decoration: none !important;
}
.navbar .nav-item.active > .nav-link {
    color: #00b3c4;
}

/* MAIN SLIDER */
.main-wrapper {
    position: relative;
}
.main-wrapper .slide-item {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
}
.main-wrapper .slide-item .slide-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /*width: calc(100% - 110px);*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    user-select: none;
    pointer-events: none;
}
.main-wrapper .slide-item .slide-link {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 100%;
    overflow: hidden;
}
.main-wrapper .slide-item .slide-link .slide-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #00b3c4;
    cursor: pointer;
    transition: 0.15s ease all;
}
.main-wrapper .slide-item .slide-link:hover .slide-arrow {
    background: #008c99;
}
.main-wrapper .slide-item .slide-link .slide-arrow img {
    display: block;
    width: 40px;
    filter: brightness(0) invert(1);
}
.main-wrapper .slide-item .slide-link .slide-arrow img.rotate-right {
    transform: rotate(-90deg);
}
.main-wrapper .slide-item .slide-link .slide-info {
    width: 20vw;
    height: 110px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    transform-origin: top left;
    transform: rotate(90deg) translateY(-100%);
    padding-top: 20px;
}
.main-wrapper .slide-item .slide-link .slide-info h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #00b3c4;
    letter-spacing: -1px;
    margin: 0;
    transition: 0.15s ease all;
}
.main-wrapper .slide-item .slide-link:hover .slide-info h1 {
    color: #008c99;
}
.main-wrapper .slide-item .slide-link .slide-info p {
    display: block;
    color: #3c3c3b;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
}
.main-wrapper .owl-theme .owl-dots {
    width: calc(100% - 110px);
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 50px;
    padding-left: calc(5% + 15px);
    z-index: 5;
}
.main-wrapper .owl-theme .owl-dots .owl-dot {
    outline: none;
    margin-right: 5px;
}
.main-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
    background: #fff;
    box-shadow: rgba(10,10,10,0.1) 0 2px 4px;
    transition: 0.15s ease all;
}
.main-wrapper .owl-theme .owl-dots .owl-dot:hover span {
    transform: scale(1.15);
}
.main-wrapper .owl-theme .owl-dots .owl-dot.active span {
    background: #00b3c4;
}
.main-wrapper.v2 .slide-item .slide-bg {
    width: 100%;
}
.main-wrapper.v2 .main-info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 5%;
    z-index: 2;
    background: rgba(10,10,10,0.2);
}
.main-wrapper.v2 .main-info h2 {
    font-size: 11rem;
    letter-spacing: -3px;
    color: #00b3c4;
    margin: 0 0 0 0;
    line-height: 9rem;
    font-weight: 700;
}
.main-wrapper.v2 .main-info h2 span {
    display: block;
    color: #fff;
    font-weight: 600;
}
.main-wrapper.v2 .main-info h2 strong {
    display: block;
}
.main-wrapper.v2 .main-info h2 span {
    margin-top: 10px;
}
.main-wrapper.v3 #main-slider {
    width: 60%;
    margin-left: auto;
}
.main-wrapper.v3 .main-info {
    width: 100%;
    z-index: 0;
    background: none;
}
.main-wrapper.v3 .main-info h3 {
    color: #3c3c3b;
    font-weight: 700;
}
.main-wrapper.v3 .main-info h2 span {
    color: #3c3c3b;
    margin-top: -15px;
}
.main-wrapper.v3 .main-info p img {
    width: 24px;
}

/* BONJOUR */
.bonjour {
    display: block;
    padding: 120px 0;
}
.bonjour .image-link {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.bonjour .image-link > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
.bonjour .image-link .icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    z-index: 1;
    border-radius: 50%;
    transition: 0.15s ease all;
}
.bonjour .image-link:hover .icon {
    box-shadow: rgba(10,10,10,0.2) 0 4px 6px;
    transform: scale(1.05);
}
.bonjour .image-link .icon img {
    display: block;
    width: 48px;
}
.bonjour .image-link .icon img.rotate-right {
    transform: rotate(-90deg);
}
.bonjour h3 {
    font-size: 2.5rem;
    /*letter-spacing: -3px;*/
    color: #00b3c4;
    margin: 0 0 15px 0;
    font-weight: 700;
}
.bonjour h3:not(:first-of-type) {
    margin-top: 3rem;
}

.bonjour p strong {
    color: #00b3c4;
}
.bonjour .btn {
    margin-bottom: 100px;
    padding: 0;
    font-weight: 600;
    color: #00b3c4;
}
.bonjour .btn:hover,
.bonjour .btn:focus,
.bonjour .btn:active {
    box-shadow: none;
}

.join-team h3 {
    font-size: 3rem;
    letter-spacing: -3px;
    color: #00b3c4;
    margin: 0 0 15px 0;
    font-weight: 700;
}

/* BLUE SECTION */
.blue-banner {
    display: block;
    position: relative;
    background: #00b3c4;
    padding: 120px 0;
    color: #fff;
    margin-bottom: 100px;
}
.blue-banner h3 {
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: -1px;
}
.blue-banner .btn {
    padding: 0;
    font-weight: 600;
    color: #fff;
}
.blue-banner .btn:after {
    content: ' >';
}
.blue-banner .btn:hover,
.blue-banner .btn:focus,
.blue-banner .btn:active {
    box-shadow: none;
}

/* FOOTER */
footer {
    display: block;
    padding: 0 0 100px 0;
}
footer h1 {
    font-weight: 600;
    color: #00b3c4;
    margin: 0 0 15px 0;
    font-size: 1.75rem;
}
footer h3 {
    font-weight: 600;
    color: #00b3c4;
    margin: 0 0 15px 0;
    font-size: 1rem;
}
footer p {
    margin: 0;
    color: #3c3c3b;
    font-size: 0.9rem;
}
footer ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
footer ul.menu li {
    margin-bottom: 5px;
}
footer ul.menu li a {
    display: block;
    color: #3c3c3b;
    font-size: 0.9rem;
    text-decoration: none;
}
footer ul.socials {
    display: block;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}
footer ul.socials li {
    display: inline-block;
    vertical-align: middle;
}
footer ul.socials li a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #f2f3f4;
}
footer ul.socials li a:hover {
    background: #00b3c4;
}
footer ul.socials li a img {
    width: 14px;
    height: 14px;
    filter: brightness(0);
}
footer ul.socials li a:hover img {
    filter: brightness(0) invert(1);
}
footer .hours {
    color: #3c3c3b;
    font-size: 0.9rem;
}

/* SERVICES */
.services-wrapper {
    display: block;
    padding: 80px 0 120px 0;
}
.services-wrapper p.lead {
    line-height: 1.35;
    margin: 0 0 30px 0;
    font-size: 1.35rem;
}
.services-wrapper p.lead strong {
    color: #00b3c4;
    font-weight: 700;
}
.services-wrapper .link-box {
    display: block;
    position: relative;
    padding: 30px 20px;
    width: 100%;
    /*margin: 0 auto 0 -20px;*/
    margin: 0 auto 0 0;
    transition: 0.15s ease all;
    border-radius: 1.5rem;
}
.services-wrapper .link-box:hover {
    background: #f2f3f4;
}
/*.services-wrapper .col-lg-4:nth-child(2) .link-box img,*/
/*.services-wrapper .col-lg-4:nth-child(4) .link-box img,*/
/*.services-wrapper .col-lg-4:nth-child(6) .link-box img {*/
/*    filter: brightness(0);*/
/*    opacity: 0.75;*/
/*}*/
.services-wrapper .link-box img {
    display: block;
    width: 100%;
    height: 22rem;
    object-fit: cover;
    border-radius: 1rem
}
.services-wrapper .link-box .info {
    display: block;
    padding-top: 15px;
}
.services-wrapper .link-box .info b, .services-wrapper .link-box .info strong {
    display: block;
    font-weight: 700;
    color: #3c3c3b;
    font-size: 1.5rem;
}
.services-wrapper .link-box .info p {
    color: #3c3c3b;
    margin: 5px 0 15px 0;
}
.services-wrapper .link-box .btn {
    padding: 0;
    font-weight: 600;
    color: #00b3c4;
}
.services-wrapper .link-box .btn:after {
    content: ' >';
}
.services-wrapper .link-box .btn:hover,
.services-wrapper .link-box .btn:focus,
.services-wrapper .link-box .btn:active {
    box-shadow: none;
}

/* TEAM */
.team {
    display: block;
    position: relative;
    overflow: hidden;
    /*padding: 120px 0;*/
    padding: 50px 0 120px 0;
}
.team .team-member {
    cursor: pointer;
}
.team .team-member .member-avatar {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f9f9f9;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
}
.team .team-member .member-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease all;
}
.team .team-member:hover .member-avatar img {
    transform: scale(1.1);
}
.team .team-member .member-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 35px 45px;
    position: relative;
    user-select: none;
}
.team .team-member .member-name:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    content: ' ';
    z-index: 2;
    transform-origin: center;
    transform: rotate(45deg);
    margin: auto;
}
.team .col-md-6:nth-child(3) .team-member .member-name:after,
.team .col-md-6:nth-child(4) .team-member .member-name:after {
    left: auto;
    right: -25px;
}
.team .team-member .member-name h1 {
    display: block;
    margin: 15px 0 0 0;
    font-weight: 600;
    color: #00b3c4;
    letter-spacing: -1px;
    font-size: 3rem;
    line-height: 1;
    transition: 0.3s ease all;
}
.team .team-member:hover .member-name h1 {
    color: #008c99;
}

/* CONTACT PAGE */
.contact-page {
    display: block;
    /*padding: 100px 0 120px 0;*/
    padding: 0 0 120px 0;
}
.contact-page a.contact-item {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -3px;
    color: #00b3c4;
    line-height: 1.2;
    text-decoration: none;
    transition: 0.2s ease all;
}
.contact-page a.contact-item:hover {
    color: #008c99;
    text-decoration: none !important;
}
.contact-page a.contact-item span {
    color: #ddd;
    opacity: 0;
}
.contact-page .contact-desc {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -3px;
    color: #ddd;
}
.contact-page h5 {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #00b3c4;
}
.contact-page p a,
.contact-page p strong {
    font-weight: 600;
    color: #00b3c4;
    font-size: 1rem;
}
.contact-page p a:after {
    content: ' >';
}

/* IMMO */
.immobiliers {
    display: block;
    position: relative;
    padding: 0 0 120px 0;
}
.immobiliers h3 {
    font-weight: 700;
    font-size: 7rem;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
    color: #ddd;
}
.immobiliers h6 {
    display: block;
    font-weight: 400;
    color: #3c3c3b;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}
.immobiliers .nav-tabs {
    border-bottom: none;
}
.immobiliers .nav-tabs .nav-item {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ddd;
}
.immobiliers .nav-tabs .nav-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.immobiliers .nav-tabs .nav-item .nav-link {
    background: none;
    border: none;
    padding: 0;
    color: #3c3c3b;
    transition: 0.15s ease all;
}
.immobiliers .nav-tabs .nav-item .nav-link.active,
.immobiliers .nav-tabs .nav-item .nav-link:hover {
    color: #00b3c4;
    text-decoration: none !important;
    cursor: pointer;
}
.immobiliers .nav-tabs .nav-item .nav-link strong {
    font-weight: 600;
}
.immobiliers .error-message {
    padding: 60px 0 0 0;
}
.immobiliers .error-message h4 {
    font-size: 4rem;
    font-weight: 700;
    color: #3c3c3b;
    line-height: 1;
    letter-spacing: -2px;
}
.immobiliers .offers-row {
    margin-top: 60px;
}
.immobiliers .offer-box {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease all;
}
.immobiliers .offer-box.inactive {
    filter: grayscale(1);
}
.immobiliers .offer-box .offer-thumb {
    display: block;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.immobiliers .offer-box .offer-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: 0.3s ease all;
    object-fit: cover;
}
.immobiliers .offer-box:hover .offer-thumb img {
    transform: scale(1.1);
}
.immobiliers .offer-box .offer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 45px 55px;
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.immobiliers .offer-box .offer-details:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    content: ' ';
    margin: auto;
    transform-origin: center;
    transform: rotate(45deg);
}
.immobiliers .col-lg-6:nth-child(4n) .offer-box .offer-details:before,
.immobiliers .col-lg-6:nth-child(4n - 1) .offer-box .offer-details:before {
    left: auto;
    right: -25px;
}
.immobiliers .offer-box .offer-details .offer-main .offer-title {
    display: block;
    font-size: 4rem;
    text-decoration: none;
    font-weight: 700;
    color: #00b3c4;
    transition: 0.15s ease all;
    margin: 0;
    line-height: 1.1;
}
.immobiliers .offer-box:hover {
    text-decoration: none !important;
}
.immobiliers .offer-box:hover .offer-details .offer-main .offer-title {
    color: #008c99;
}
.immobiliers .offer-box .offer-details .offer-main .offer-type {
    font-size: 2rem;
    font-weight: 700;
    color: #3c3c3b;
    display: inline-block;
    vertical-align: middle;
}
.immobiliers .offer-box .offer-details .offer-main img.peb {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}
.immobiliers .offer-box .offer-details .offer-features {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: none;
}
.immobiliers .offer-box .offer-details .offer-features li {
    display: inline-flex;
    flex-direction: column-reverse;
    vertical-align: middle;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #eee;
}
.immobiliers .offer-box .offer-details .offer-features li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.immobiliers .offer-box .offer-details .offer-features li strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c3c3b;
}
.immobiliers .offer-box .offer-details .offer-features li span {
    display: block;
    font-size: 0.9rem;
}
.immobiliers .offer-box .offer-details .offer-price {
    color: #00b3c4;
    font-size: 1.5rem;
    font-weight: 700;
}

/* OFFER DETAILS */
.offer-details {
    padding: 120px 0;
}
.offer-details p.lead {
    line-height: 1.35;
    margin: 0 0 30px 0;
    font-size: 1.35rem;
}
.offer-details p.lead strong {
    color: #00b3c4;
    font-weight: 600;
}
.offer-details .offer-features {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    padding-left: 30px;
    border-left: 1px solid #eee;
    color: #3c3c3b;
}
.offer-details .offer-features li {
    display: block;
    padding-bottom: 25px;
}
.offer-details .offer-features li span {
    display: block;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    /*.bonjour h3 {*/
    /*    font-size: 8rem;*/
    /*}*/
    .blue-banner h3 {
        font-size: 2.5rem;
    }
    .services-wrapper .link-box {
        width: 100%;
    }
    .immobiliers h3 {
        font-size: 5rem;
    }
    .immobiliers .offer-box .offer-details {
        padding: 25px;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-title {
        font-size: 2rem;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-type {
        font-size: 1.2rem;
    }
    .immobiliers .offer-box .offer-details .offer-main img.peb {
        height: 20px;
    }
    .immobiliers .offer-box .offer-details .offer-features {
        border-left: none;
        position: relative;
        z-index: 1;
    }
    .immobiliers .offer-box .offer-details .offer-features li {
        display: block;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        padding-bottom: 10px;
    }
    .immobiliers .offer-box .offer-details .offer-features li span {
        display: block;
        font-size: 0.9rem;
    }
    .immobiliers .offer-box .offer-details .offer-features li strong {
        display: block;
        font-size: 0.9rem;
        line-height: 1;
        margin: 0;
    }
    .team .team-member .member-name h1 {
        font-size: 2.5rem;
    }
    .contact-page .contact-desc,
    .contact-page a.contact-item {
        font-size: 4rem;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    /*.bonjour h3 {*/
    /*    font-size: 6rem;*/
    /*}*/
    .blue-banner h3 {
        line-height: 1;
        font-size: 2.5rem;
    }
    .main-wrapper.v2 .main-info h2 {
        font-size: 8rem;
        line-height: 0.9;
    }
    .services-wrapper .link-box {
        width: 100%;
    }
    .immobiliers h3 {
        font-size: 5rem;
    }
    .immobiliers .offer-box .offer-details {
        padding: 25px;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-title {
        font-size: 2rem;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-type {
        font-size: 1.2rem;
    }
    .immobiliers .offer-box .offer-details .offer-main img.peb {
        height: 20px;
    }
    .immobiliers .offer-box .offer-details .offer-features {
        border-left: none;
        position: relative;
        z-index: 1;
        display: none;
    }
    .immobiliers .offer-box .offer-details .offer-features li {
        display: block;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        padding-bottom: 10px;
    }
    .immobiliers .offer-box .offer-details .offer-features li span {
        display: block;
        font-size: 0.9rem;
    }
    .immobiliers .offer-box .offer-details .offer-features li strong {
        display: block;
        font-size: 0.9rem;
        line-height: 1;
        margin: 0;
    }
    .team .team-member .member-name h1 {
        font-size: 2rem;
    }
    .contact-page .contact-desc,
    .contact-page a.contact-item {
        font-size: 3.5rem;
    }
    /*.services-wrapper .link-box img {*/
    /*   height: 18rem;*/
    /*}*/
    .services-wrapper .link-box .info b, .services-wrapper .link-box .info strong {
        font-size: 1.2rem;
    }
    .main-wrapper.v3 .main-info {
        width: 40%;
    }
    .main-wrapper.v3 .main-info h2 {
        font-size: 5rem;
    }
    .main-wrapper.v3 .main-info h2 span {
        margin-top: 0;
        font-size: 4rem;
        margin-bottom: 15px;
    }
    .main-wrapper.v3 .slide-item {
        height: 400px;
    }
    .offer-details p.lead {
        font-size: 1rem;
        line-height: 1.5;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    body {
        padding-top: 150px;
    }
    .navbar-light {
        height: 75px;
        padding-top: 75px;
    }
    .navbar-light.active {
        height: 75px;
    }
    .navbar-light.active .container-fluid {
        transform: translateY(-37.5px);
    }
    .navbar .navbar-brand {
        padding-left: 40px;
    }
    .navbar .navbar-brand h1 {
        font-size: 1.5rem;
    }
    .navbar .navbar-brand img {
        width: 32px;
        height: 32px;
    }
    .navbar .nav-item > .nav-link {
        margin-left: 0;
    }
    .main-wrapper .slide-item {
        height: 450px;
    }
    .main-wrapper .slide-item .slide-link .slide-info h1 {
        font-size: 2rem;
    }
    .bonjour .image-link .icon {
        width: 100px;
        height: 100px;
    }
    .bonjour .image-link .icon img {
        width: 30px;
    }
    /*.bonjour h3 {*/
    /*    font-size: 6rem;*/
    /*}*/
    .bonjour .row.align-items-center {
        align-items: flex-start !important;
    }
    .bonjour .btn {
        margin-bottom: 0;
    }
    .blue-banner h3 {
        font-size: 2.5rem;
        line-height: 1;
    }
    footer .col-md-12 {
        position: relative;
        padding-bottom: 30px;
    }
    footer ul.socials {
        position: absolute;
        top: 0;
        right: 0;
    }
    .main-wrapper.v2 .main-info {
        padding-bottom: 10%;
    }
    .main-wrapper.v2 .main-info h2 {
        font-size: 7rem;
        line-height: 0.9;
    }
    .services-wrapper .link-box {
        width: 100%;
    }
    /*.services-wrapper .link-box img {*/
    /*    width: 64px;*/
    /*}*/
    .services-wrapper .link-box .info b, .services-wrapper .link-box .info strong {
        font-size: 1.25rem;
    }
    .services-wrapper .link-box .info p {
        line-height: 1.35;
    }
    .immobiliers {
        overflow: hidden;
    }
    .immobiliers h3 {
        font-size: 3rem;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-title {
        font-size: 2.5rem;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-type {
        font-size: 1.5rem;
    }
    .immobiliers .error-message h4 {
        font-size: 3rem;
    }
    .team .team-member .member-name {
        padding: 15px;
        z-index: 2;
    }
    .team .team-member .member-name h1 {
        font-size: 1.85rem;
        z-index: 4;
        position: relative;
    }
    .contact-page {
        padding-top: 50px;
    }
    .contact-page .contact-desc,
    .contact-page a.contact-item {
        font-size: 4rem;
    }
    .contact-page h5 {
        margin-top: 25px;
    }
    .main-wrapper.v3 {
        display: flex;
        flex-direction: column-reverse;
    }
    .main-wrapper.v3 #main-slider {
        width: 100%;
    }
    .main-wrapper.v3 .main-info {
        position: relative;
        padding-bottom: 0;
        padding-top: 50px;
    }
    .main-wrapper.v3 .main-info h2 span {
        margin-top: 0;
        font-size: 5rem;
        margin-bottom: 20px;
    }
    .offer-details {
        padding-top: 40px;
    }
    .offer-details p.lead {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    html, body {
        font-size: 12px;
    }
    body {
        padding-top: 100px;
    }
    .navbar-light {
        height: 50px;
        padding-top: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-light.active {
        height: 50px;
    }
    .navbar-light.active .container-fluid {
        transform: translateY(-18px);
    }
    .navbar-collapse {
        background: #fff;
        box-shadow: rgba(10,10,10,0.1) 0 2px 5px;
        width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar .navbar-brand {
        padding-left: 30px;
    }
    .navbar .navbar-brand h1 {
        font-size: 1.5rem;
    }
    .navbar .navbar-brand img {
        width: 24px;
        height: 24px;
    }
    .navbar .nav-item:last-child {
        margin-bottom: 15px;
    }
    .navbar-light .navbar-toggler {
        border-color: transparent;
        margin-right: -10px;
        box-shadow: none;
        outline: none;
    }
    .navbar-light .navbar-toggler:focus,
    .navbar-light .navbar-toggler:active {
        box-shadow: none;
        background: #f2f3f4;
        border-radius: 0;
    }
    .main-wrapper .slide-item {
        height: 300px;
    }
    .main-wrapper .slide-item .slide-bg {
        /*width: calc(100% - 50px);*/
        width: 100%;
    }
    .main-wrapper .slide-item .slide-link {
        width: 50px;
    }
    .main-wrapper .slide-item .slide-link .slide-info {
        height: 50px;
        width: 15vw;
        padding-top: 10px;
    }
    .main-wrapper .slide-item .slide-link .slide-info h1 {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .main-wrapper .slide-item .slide-link .slide-info p {
        display: none;
    }
    .main-wrapper .slide-item .slide-link .slide-arrow {
        width: 50px;
        height: 50px;
    }
    .main-wrapper .slide-item .slide-link .slide-arrow img {
        width: 20px;
    }
    .main-wrapper .owl-theme .owl-dots {
        width: calc(100% - 50px);
        padding-left: 15px;
        bottom: 15px;
    }
    .main-wrapper .owl-theme .owl-dots .owl-dot {
        margin-right: 10px;
    }
    .main-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 14px;
        height: 14px;
        margin: 0;
    }
    .bonjour {
        padding: 40px 25px;
    }
    .bonjour h3 {
        font-size: 3rem;
    }
    .bonjour .btn {
        margin-bottom: 40px;
    }
    /*.bonjour .image-link {*/
    /*    margin-left: -40px;*/
    /*}*/
    .bonjour .image-link {
        margin-top: 3rem;
    }
    .bonjour .image-link .icon {
        width: 70px;
        height: 70px;
    }
    .bonjour .image-link .icon img {
        width: 24px;
    }
    .blue-banner {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .blue-banner h3 {
        font-size: 2rem;
        letter-spacing: 0;
    }
    .blue-banner p {
        line-height: 1.5;
    }
    .blue-banner .col-md-5:last-child h3 {
        margin-top: 40px;
    }
    footer {
        padding-bottom: 40px;
        padding-left: 80px;
        position: relative;
    }
    footer .col-md-12 {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 160px;
        text-align: right;
        transform-origin: top left;
        transform: rotate(-90deg) translateX(-180px) translateY(20px);
    }
    footer .col-md-12 p,
    footer .col-md-12 ul {
        display: none;
    }
    footer h3 {
        margin: 30px 0 5px 0;
    }
    .main-wrapper.v2 .main-info {
        padding-bottom: 10%;
    }
    .main-wrapper.v2 .main-info h2 {
        font-size: 4rem;
        line-height: 0.9;
    }
    .services-wrapper {
        padding: 40px 0;
    }
    .services-wrapper p.lead {
        font-size: 1rem;
        line-height: 1.5;
    }
    .services-wrapper .link-box {
        margin: 15px 0 0 0;
        width: 100%;
    }
    /*.services-wrapper .link-box img {*/
    /*    width: 64px;*/
    /*}*/
    .immobiliers {
        padding-bottom: 0;
    }
    .immobiliers h3 {
        font-size: 3rem;
    }
    .immobiliers h6 {
        margin-top: 30px;
    }
    .immobiliers .offer-box .offer-details {
        position: relative;
        padding: 20px 15px 50px 15px;
    }
    .immobiliers .offer-box .offer-details:before {
        left: auto;
        right: 25px !important;
        top: -25px !important;
        bottom: auto;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-title {
        font-size: 2.5rem;
    }
    .immobiliers .offer-box .offer-details .offer-main .offer-type {
        font-size: 1.5rem;
    }
    .immobiliers .offer-box .offer-details .offer-main img.peb {
        height: 14.5px;
    }
    .immobiliers .offer-box .offer-details .offer-features {
        padding-top: 15px;
    }
    .immobiliers .error-message h4 {
        font-size: 3rem;
    }
    .team {
        /*padding: 40px 0;*/
        padding: 15px 0;
    }
    .team .team-member .member-name {
        padding: 20px;
        justify-content: space-around;
    }
    .team .team-member .member-name h1 {
        font-size: 1.5rem;
        letter-spacing: -0.25px;
        position: relative;
        z-index: 3;
        margin-top: 0;
    }
    .team .team-member .member-name p {
        margin-bottom: 0;
        line-height: 1;
    }
    .team .team-member .member-name:after {
        left: -10px !important;
        right: auto !important;
        width: 20px;
        height: 20px;
    }
    .team .col-md-6:nth-child(2n) .team-member .member-name:after {
        left: auto !important;
        right: -10px !important;
    }
    .contact-page {
        padding: 0 0 40px 0;
    }
    .contact-page .contact-desc,
    .contact-page a.contact-item {
        font-size: 1.75rem;
        letter-spacing: 0;
    }
    .contact-page h5 {
        margin-top: 40px;
    }
    .main-wrapper.v3 {
        display: flex;
        flex-direction: column-reverse;
    }
    .main-wrapper.v3 #main-slider {
        width: 100%;
    }
    .main-wrapper.v3 .main-info {
        position: relative;
        padding-bottom: 0;
        padding-top: 50px;
    }
    .main-wrapper.v3 .main-info h2 span {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 3rem;
    }
    .offer-details {
        padding-top: 40px;
        padding-bottom: 0;
    }
    .offer-details p.lead {
        font-size: 1rem;
    }
    .offer-details .offer-features {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 0;
        border-top: 1px solid #eee;
    }

    .join-team h3 {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
}


/* Fix for immo title */
@media (min-width: 1198px) {
    .main-wrapper.v2.v3 .main-info.first-slide .container-fluid h2 strong {
        max-width: 38%;
        font-size: 7rem;
        word-break: break-word;
    }
    .main-wrapper.v2.v3 .main-info.first-slide .container-fluid h2 span {
        font-size: 8rem
    }
}

.services-wrapper .row .col-md-6 {
    text-align: center;
}



@media (min-width: 1500px) {
    .contact-page .contact-desc, .contact-page a.contact-item {
        font-size: 6rem;
    }

}
.services-wrapper .row .col-md-6 .link-box img {
    margin: 0 auto;
}

.btn-submit-contact {
    background: #00B3C4;
    border-color: #00B3C4
}


/* Email sending error/success */
.process-info .successMessage, .process-info .warningMessage, .process-info .errorMessage {
    background: #03c303;
    text-align: center;
    padding: 10px 4px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    margin: 8px 0;
    letter-spacing: 0.4px;
}

.process-info .warningMessage {
    background: #ab0404;
}

.process-info .errorMessage {
    background: red;
}

.process-info > div:first-of-type {
    margin-top: 0;
}

.process-info > div:last-of-type {
    margin-bottom: 1rem;
}

.process-info.contact-form {
    margin-top: 15px;
}


.hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.costs {
    padding: 5rem 0;
}
.costs .accordion {
    margin-bottom: 1rem;
}
.costs a {
    color: #00b3c4;
    font-weight: bold;
}
.costs h3 {
    margin: 1rem 0 0.5rem 0;
}
.costs p {
    margin: 1rem 0;
}
.costs .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.costs .accordion-button {
    border-radius: 0.25rem !important;
}
.costs .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #00b3c4;
}
.costs .accordion-button:focus {
    box-shadow: 0 0 0 0.1rem #00b3c4;
    border-color: #00b3c4;
}
.costs .accordion-flush .accordion-item:not(.collapsed) {
    border: 0.1rem solid #00b3c4;
    border-radius: 0.25rem;
}
.costs .title {
    margin-bottom: 2rem;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline !important;
}

.form-group {
    margin-bottom: 1rem;
}

.services-wrapper a,
.services-wrapper a:hover,
.services-wrapper a:focus,
.services-wrapper a:active {
    text-decoration: none !important;
}