@charset "utf-8"; /*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');*/
@font-face {
    font-family: 'Futura New';
    src: url('../fonts/futura-new/FuturaNewMedium-Reg.eot');
    src: local('Futura New Medium Reg'), local('FuturaNewMedium-Reg'), url('../fonts/futura-new/FuturaNewMedium-Reg.eot?#iefix') format('embedded-opentype'), url('../fonts/futura-new/FuturaNewMedium-Reg.woff2') format('woff2'), url('../fonts/futura-new/FuturaNewMedium-Reg.woff') format('woff'), url('../fonts/futura-new/FuturaNewMedium-Reg.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura New';
    src: url('../fonts/futura-new/FuturaNewBold-Obl.eot');
    src: local('Futura New Bold Obl'), local('FuturaNewBold-Obl'), url('../fonts/futura-new/FuturaNewBold-Obl.eot?#iefix') format('embedded-opentype'), url('../fonts/futura-new/FuturaNewBold-Obl.woff2') format('woff2'), url('../fonts/futura-new/FuturaNewBold-Obl.woff') format('woff'), url('../fonts/futura-new/FuturaNewBold-Obl.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Futura New';
    src: url('../fonts/futura-new/FuturaNewLight-Reg.eot');
    src: local('Futura New Light Reg'), local('FuturaNewLight-Reg'), url('../fonts/futura-new/FuturaNewLight-Reg.eot?#iefix') format('embedded-opentype'), url('../fonts/futura-new/FuturaNewLight-Reg.woff2') format('woff2'), url('../fonts/futura-new/FuturaNewLight-Reg.woff') format('woff'), url('../fonts/futura-new/FuturaNewLight-Reg.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Futura New';
    src: url('../fonts/futura-new/FuturaNewBold-Reg.eot');
    src: local('Futura New Bold Reg'), local('FuturaNewBold-Reg'), url('../fonts/futura-new/FuturaNewBold-Reg.eot?#iefix') format('embedded-opentype'), url('../fonts/futura-new/FuturaNewBold-Reg.woff2') format('woff2'), url('../fonts/futura-new/FuturaNewBold-Reg.woff') format('woff'), url('../fonts/futura-new/FuturaNewBold-Reg.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, html {
    font-family: 'Futura New', sans-serif;
    position: relative;
    font-size: 17px;
}

/* BUTTONS */
.btn.btn-primary {
    background: #5572a4;
    border-color: #5572a4;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
    background: #5572a4;
    border-color: #5572a4;
    box-shadow: none;
}

.btn.btn-primary:active {
    background: #5572a4 !important;
    border-color: #5572a4 !important;
    box-shadow: rgba(10, 10, 10, 0.15) 0 3px 6px !important;
    outline: none !important;
}

/* TOP BAR */
.top-bar {
    display: block;
    background: #ddd;
    padding: 7.5px 0;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.75);
}

.top-bar b {
    font-weight: 600;
}

.top-bar a.contact-item {
    display: inline-block;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.75);
    margin-left: 15px;
}

/* NAVIGATION */
.navbar-light {
    background: #fff !important;
    box-shadow: rgba(10, 10, 10, 0.05) 0 5px 10px;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar .navbar-brand {
    position: relative;
    padding-left: 55px;
    line-height: 1;
    user-select: none;
}

.navbar .navbar-brand img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    margin: auto;
}

.navbar .navbar-brand span.title {
    display: block;
    font-size: 0.7rem;
    color: #333;
}

.navbar .navbar-brand span.notary {
    font-size: 1rem;
    display: block;
    color: #333;
    font-weight: 600;
}

.navbar .nav-item > .nav-link {
    color: #333;
    font-size: 0.95rem;
    margin-right: 10px;
}

.navbar .nav-item > .nav-link:hover, .navbar .nav-item.active > .nav-link {
    color: #5572a4;
}

.navbar .dropdown .dropdown-toggle {
    background: #f2f3f4;
    border-radius: 25px;
    padding: 5px 10px;
    transition: 0.15s ease all;
    margin-right: 0;
}

.navbar .dropdown .dropdown-toggle:hover {
    background: #e5e5e5;
}

.navbar .dropdown .dropdown-toggle img {
    display: inline-block;
    width: 20px;
    height: 16px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 3px;
}

.navbar .dropdown .dropdown-toggle span {
    display: inline-block;
    vertical-align: middle;
}

.navbar .dropdown .dropdown-toggle:after {
    display: none;
}

.navbar .dropdown .dropdown-menu {
    padding: 7.5px;
    border: none;
    border-radius: 6px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 5px 15px;
    min-width: 180px;
}

.navbar .dropdown .dropdown-item {
    padding: 7.5px 10px;
    transition: 0.15s ease all;
    border-radius: 6px;
    font-size: 0.85rem;
}

.navbar .dropdown .dropdown-item:hover {
    background: #f2f3f4;
}

.navbar .dropdown .dropdown-item:active {
    background: #ddd;
    color: #1f1f1f;
}

.navbar .dropdown .dropdown-item img {
    width: 26px;
    height: 20px;
    border-radius: 6px;
    box-shadow: rgba(10, 10, 10, 0.2) 0 2px 2px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

.navbar .dropdown .dropdown-item span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 3px;
}

/* MAIN */
.main {
    display: block;
    position: relative;
    padding: 175px 0;
    background: url("../img/main-bg.jpg") center top no-repeat;
    background-size: cover;
}
.main .container {
    position: relative;
    z-index: 1;
}

.main h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin: 10px 0 20px 0;
}

.main h1 span {
    font-weight: normal;
}

.main h6 {
    font-size: 1.25rem;
    font-weight: normal;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.main p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 80%;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* FEATURE BOXES */
.feature-boxes {
    display: block;
    padding: 1px 0 1px 0;
}

.feature-boxes .feature-box {
    display: block;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    padding: 30px;
    border-radius: 6px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 2px;
    height: calc(100% + 50px);
    color: #333;
    text-decoration: none;
    transition: 0.15s ease all;
}

.feature-boxes .feature-box.calculator-box {
    background: #5572a4;
    color: #fff;
}

.feature-boxes .feature-box:hover {
    transform: scale(1.025);
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 4px;
}

.feature-boxes .feature-box.calculator-box:hover {
    background: #5572a4;
}

.feature-boxes .feature-box img {
    display: block;
    width: 64px;
    height: 64px;
    transition: 0.15s ease all;
}

.feature-boxes .feature-box:hover img {
    filter: none;
}

.feature-boxes .feature-box h4 {
    display: block;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 15px 0 5px 0;
    transition: 0.15s ease all;
}

.feature-boxes .feature-box:not(.calculator-box) h4 {
    color: #5572a4;
}

.feature-boxes .feature-box.v2:hover h4, .feature-boxes .feature-box.v2 h4 {
    color: #5572a4;
}

.feature-boxes .feature-box.v3:hover h4, .feature-boxes .feature-box.v3 h4 {
    color: #5572a4;
}

.feature-boxes .feature-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

.feature-boxes.features-page {
    padding: 30px 0 60px 0;
}

.feature-boxes.features-page .feature-box {
    margin-top: 30px;
    height: calc(100% - 30px);
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 5px;
}

/* IMMO */
.immobilieres {
    display: block;
    padding: 40px 0;
}

.immobilieres .box {
    padding: 40px;
    background: #f2f3f4;
    border-radius: 6px;
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 5px;
}

.immobilieres h3 {
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.immobilieres .offers-controls {
    text-align: right;
}

.immobilieres .offers-controls .btn.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f2f3f4;
    text-align: center;
    line-height: 45px;
    padding: 0;
    font-size: 1.25rem;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    transition: 0.15s ease all;
}

.immobilieres .offers-controls .btn.btn-circle:hover, .immobilieres .offers-controls .btn.btn-circle:focus {
    background: #ddd;
    box-shadow: none;
}

.immobilieres .offers-controls .btn.btn-circle:active {
    background: #ccc;
    box-shadow: none;
}

.immobilieres .offers-slider {
    margin-top: 20px;
}

.offer .offer-image {
    position: relative;
    display: block;
}

.offer .offer-image .faire-offer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 15px 10px 15px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    border-radius: 0 0 6px 6px;
}

.offer .offer-image .faire-offer u {
    display: block;
    text-decoration: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.offer .offer-image .faire-offer b {
    display: block;
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    margin-top: -5px;
}

.offer .offer-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(1);
    border: 1px solid #eee;
    border-radius: 6px;
    position: relative;
    z-index: 0;
    transition: 0.15s ease all;
}

.offer:hover .offer-image img {
    filter: none;
}

.offer .offer-details {
    position: relative;
    padding-top: 15px;
}

.offer .offer-title {
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.1;
    color: #333;
}

.offer .offer-title:hover {
    color: #5572a4;
}

.offer .offer-specifics {
    margin-top: 5px;
}

.offer .offer-specifics .item {
    display: inline-block;
    vertical-align: middle;
}

.offer .offer-specifics .item + .item {
    margin-left: 15px;
}

.offer .offer-specifics .item i {
    color: #5572a4;
}

/* SERVICES */
.services {
    padding: 0 0 40px 0;
    position: relative;
}

.services .box {
    display: block;
    position: relative;
    padding: 45px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 5px 8px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    z-index: 2;
}

.services .box img.img-fluid {
    position: absolute;
    user-select: none;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% / 12) * 5);
    height: 100%;
    object-position: center right;
    object-fit: cover;
}

.services h3 {
    font-weight: bold;
    color: #020e1c;
    margin: 0 0 5px 0;
}

.services p {
    margin-bottom: 0;
    color: #020e1c;
}

.services .service-category {
    display: block;
    margin-top: 30px;
}

.services .service-category h4 {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #5572a4;
    margin: 0 0 5px 0;
}

.services .service-category ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services .service-category ul li {
    display: block;
    padding-left: 15px;
    position: relative;
    color: #020e1c;
    font-size: 0.8rem;
}

.services .service-category ul li:before {
    position: absolute;
    content: '-';
    top: 0;
    bottom: 0;
    left: 0;
    height: 10px;
    line-height: 10px;
    margin: auto;
    opacity: 0.25;
    color: #020e1c;
}

/* TEAM */
.team {
    padding: 240px 0 80px 0;
    position: relative;
}

.team.team-page {
    padding: 50px 0 80px 0;
    background: #fff;
}

.team h3 {
    font-weight: bold;
    color: #fff;
    margin: 0 0 5px 0;
}

.team p {
    color: rgba(255, 255, 255, 0.75);
}

.team .team-member {
    display: block;
    position: relative;
    margin-top: 30px;
}

.team .team-member img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: rgba(10, 10, 10, 0.2) 0 4px 15px;
}

.team:not(.team-page) .team-member:not(.main-member) img {
    border: 15px solid #ddd;
    outline: none;
    box-shadow: none;
}

.team .team-member .info {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 15px 25px 25px;
    z-index: 2;
    color: #fff;
    border-radius: 0 0 6px 6px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

.team .team-member .info b {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    display: block;
}

.team .team-member .info b i {
    font-style: normal;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 2rem;
}

.team .team-member .info span {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.63);
    margin: 0 0 0 0;
}

.team .btn.btn-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 30px;
    padding: 0;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

.team .btn.btn-link:after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-weight: normal;
    margin-left: 5px;
}

.team.team-page .team-member .info {
    bottom: 40px;
    border-radius: 0;
}

.team.team-page .team-member img {
    border-radius: 6px 6px 0 0;
    filter: grayscale(15%);
}

.team.team-page .team-member .contact {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    height: 40px;
    position: relative;
    border-radius: 0 0 6px 6px;
    background: #5572a4;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 6px;
}

.team.team-page .team-member:not(.main-member) .contact {
    background: #999;
}

.team.team-page .team-member .contact .contact-item {
    width: 50%;
    text-align: center;
    line-height: 40px;
    padding: 0;
    height: 40px;
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
}

.team.team-page .team-member .contact .contact-item + .contact-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.team.team-page .team-member .contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.tooltip .tooltip-inner {
    background: #333;
    font-size: 0.9rem;
    padding: 10px;
    font-weight: 600;
}

.tooltip .arrow {
    display: none;
}

.team .team-member.main-member {
    background: #5572a4;
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.team .team-member.main-member img {
    width: 50%;
    border-radius: 6px 0 0 6px;
}
.team .team-member.main-member .member-details {
    display: block;
    width: 50%;
    padding: 2rem;
}
.team .team-member.main-member .info {
    position: static;
    padding: 0;
    display: block;
    bottom: 0;
    background: none;
}
.team.team-page .team-member.main-member .contact {
    margin-top: 1.5rem;
    background: rgba(0,0,0,0.15);
    border-radius: 6px;
}

@media (max-width: 767px) {
    .team .team-member.main-member {
        flex-wrap: wrap;
    }
    .team .team-member.main-member img {
        width: 100%;
        border-radius: 6px 6px 0 0;
    }
    .team .team-member.main-member .member-details {
        width: 100%;
    }
}

/* FOOTER */
footer {
    display: block;
    padding: 60px 0;
    background: #020e1c;
}

footer h3 {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

footer .contact-item {
    display: block;
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

footer .contact-item + .contact-item {
    margin-top: 7.5px;
}

footer .contact-item a {
    color: inherit;
}

footer .contact-item i {
    position: absolute;
    top: 0;
    left: 0;
}

footer p.copyright {
    margin: 30px 0 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

footer .hours {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .hours li {
    display: block;
    margin-top: 7.5px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

footer .navbar-brand {
    position: relative;
    padding-left: 60px;
    line-height: 1;
    user-select: none;
    display: block;
    white-space: normal;
}

footer .navbar-brand img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    margin: auto;
}

footer .navbar-brand span.title {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

footer .navbar-brand span.notary {
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-weight: 600;
}

footer .navbar-brand span.notary:after {
    content: ' &';
    opacity: 0.5;
    font-weight: normal;
}

footer .navbar-brand span.notary + span.notary:after {
    display: none;
}

/* PAGE HEADER */
.page-hero {
    display: block;
    padding: 250px 0 100px 0;
    background: #f2f3f4;
    position: relative;
}

.page-hero h3 {
    font-weight: bold;
    color: #333;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.page-hero p {
    margin: 0;
    font-size: 0.9rem;
}

.page-hero.white-content h3 {
    color: #fff;
}

.page-hero.white-content p {
    color: #fff;
}

.page-hero.offer-hero {
    padding: 45px 0;
}

.page-hero.offer-hero h3 span {
    opacity: 0.5;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 10px;
}

.page-hero.hero-lg {
    padding: 250px 0 100px 0;
}

.page-hero .page-hero-bg {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.page-hero .page-hero-bg.bg-top {
    object-position: center top;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero.shadow-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: ' ';
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    opacity: 0.5;
}

/* IMMO PAGE */
.immobilieres-page {
    padding: 60px 0 20px 0;
}

.immobilieres-page .form-group.search {
    position: relative;
}

.immobilieres-page .form-group.search .form-control {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    padding: 10px;
    height: auto;
}

.immobilieres-page .form-group.search button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 0 10px;
    z-index: 2;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    opacity: 0.5;
}

.immobilieres-page .submenu ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.immobilieres-page .submenu ul li {
    display: block;
    padding-bottom: 3px;
}

.immobilieres-page .submenu ul li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.15s ease all;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
}

.immobilieres-page .submenu ul li a b {
    font-weight: 600;
}

.immobilieres-page .submenu ul li a:hover {
    background: #f2f3f4;
}

.immobilieres-page .submenu ul li a:active {
    background: #ddd;
}

.immobilieres-page .submenu ul li.active a {
    background: #eee;
    color: #5572a4;
}

.immobilieres-page .results-wrapper .results {
    display: none;
}

.immobilieres-page .results-wrapper .results.active {
    display: block;
}

.immobilieres-page .offer {
    margin-bottom: 40px;
}

.immobilieres-page .no-offers {
    display: block;
    padding: 0 10% 20vh 10%;
    text-align: center;
}

.immobilieres-page .no-offers img {
    display: block;
    width: 64px;
    height: 64px;
    filter: grayscale(1);
    margin: auto;
}

.immobilieres-page .no-offers h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin: 15px 0 5px 0;
}

.immobilieres-page .no-offers p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* CALCULATOR */
.calculator-screen {
    padding: 1px 0 50px 0;
    margin-top: 50px;
    position: relative;
    background: url("../img/team-bg.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.calculator-screen .box {
    display: block;
    padding: 45px;
    box-shadow: rgba(10, 10, 10, 0.2) 0 5px 10px;
    border-radius: 6px;
    background: #fff;
    margin-top: -50px;
}

.calculator-screen h3 {
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.calculator-screen p {
    margin: 0;
    color: #333;
}

/* WEBSITE LINKS */
.web-links {
    display: block;
    padding: 50px 0 100px 0;
    background: #f2f3f4;
    margin-bottom: -50px;
}

.web-links .link {
    display: block;
    color: #333;
    position: relative;
}

.web-links .link a {
    color: #333;
    text-decoration: none;
    transition: 0.15s ease all;
}

.web-links .link:hover a {
    color: #5572a4;
}

.web-links .link img {
    display: block;
    height: 50px;
    filter: grayscale(1);
    transition: 0.15s ease all;
}

.web-links .link:hover img {
    filter: none;
}

.web-links .link p {
    font-size: 0.9rem;
    margin: 15px 0 0 0;
}

/* MAP */
.map-wrapper #map {
    width: 100%;
    height: 300px;
    background: #f2f3f4;
}

/* CONTACT */
.contact-page {
    padding: 1px 0 60px 0;
}

.contact-page .box {
    display: block;
    padding: 35px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 3px 6px;
    border-radius: 6px;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

.contact-page .box h3 {
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-page .box p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
}

.contact-page .box .form-group label {
    display: block;
    margin: 0 0 3px 0;
    font-weight: 600;
    font-size: 0.8rem;
    color: #333;
}

.contact-page .box .form-group .form-control {
    height: auto;
    padding: 10px;
    box-shadow: none;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    font-family: sans-serif;
}

.contact-page .box .form-group textarea.form-control {
    min-height: 140px;
}

.contact-page .box .form-group .form-control:focus {
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 4px;
    border: 1px solid #ddd;
}

.contact-page .contact-box {
    display: block;
    position: relative;
    padding-left: 65px;
}

.contact-page .contact-box + .contact-box {
    margin-top: 30px;
}

.contact-page .contact-box img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    margin: auto;
}

.contact-page .contact-box .info h6 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-page .contact-box .info p {
    margin: 0;
}

/* OFFER PAGE */
.offer-page {
    padding: 30px 0;
}

.offer-page .offer-feature {
    position: relative;
    padding: 15px 0 15px 70px;
}

.offer-page .offer-feature .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background: #5572a4;
    text-align: center;
    line-height: 60px;
}

.offer-page .offer-feature .icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.offer-page .offer-feature h5 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin: 0 0;
}

.offer-page .offer-feature p {
    margin: 0;
    padding-left: 0;
    display: block;
    font-size: 1rem;
}

.offer-page p.description {
    font-size: 0.9rem;
    margin: 15px 0 0 0;
}

.offer-page .offer-price {
    margin-top: 15px;
    background: #f2f3f4;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    line-height: 1;
}

.offer-page .offer-price span {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.offer-page .offer-price b {
    font-weight: 700;
    color: #5572a4;
    font-size: 2rem;
    display: block;
    margin: 5px 0 0 0;
}

.offer-page .specifications {
    position: relative;
    margin-top: 15px;
    padding: 20px;
    background: #f2f3f4;
    border-radius: 6px;
    color: #333;
}

.offer-page .specifications h5 {
    font-weight: 600;
    font-size: 0.8rem;
}

.offer-page .specifications ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-page .specifications ul li {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    position: relative;
    font-size: 0.8rem;
    align-items: center;
}

.offer-page .specifications ul li + li {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
}

.offer-page .specifications ul li span {
    width: 40%;
}

.offer-page .specifications ul li strong {
    width: 60%;
    text-align: right;
    padding-left: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-item > .nav-link {
        margin-right: 0;
    }

    .main {
        padding: 120px 0 150px 0;
    }

    .main h1 {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 14px;
    }

    .navbar .nav-item > .nav-link {
        margin-right: 0;
    }

    .navbar .navbar-brand {
        margin-right: 0;
    }

    .navbar .navbar-brand span.notary {
        display: block;
    }

    .navbar .navbar-brand span.notary + span.notary {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row div[class^='col'] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .main {
        padding: 50px 0 50px 0;
    }

    .main h1 {
        font-size: 2.25rem;
    }

    .main p {
        font-size: 1rem;
    }

    .feature-boxes .feature-box {
        padding: 20px;
    }

    .feature-boxes .feature-box img {
        width: 48px;
        height: 48px;
    }

    .team .team-member {
        margin-top: 10px;
    }

    .page-hero {
        padding: 30px 0;
    }

    .team.team-page {
        padding: 30px 0 40px 0;
    }

    .immobilieres-page {
        padding: 40px 0 10px 0;
    }

    .feature-boxes.features-page {
        padding: 30px 0 40px 0;
    }

    .feature-boxes.features-page .feature-box {
        margin-top: 10px;
        height: calc(100% - 10px);
    }

    .web-links .link img {
        height: 40px;
    }

    .offer-page .gallery-slider {
        margin-bottom: 30px;
    }

    .offer-page .offer-feature {
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .top-bar .col-md-7:first-child {
        display: none;
    }

    .navbar-light {
        padding: 0.5rem 15px;
    }

    .navbar .navbar-brand {
        margin-right: 0;
    }

    .navbar .navbar-brand span.notary {
        display: block;
        font-size: 0.9rem;
    }

    .navbar .navbar-brand span.notary + span.notary {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .navbar-light .navbar-toggler {
        border: none;
        box-shadow: none;
        padding: 5px;
        font-size: 15px;
        outline: none;
    }

    .navbar-light .navbar-toggler:active {
        background: #ddd;
        transition: 0.15s ease all;
    }

    .navbar .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar .nav-item > .nav-link {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .navbar .dropdown .dropdown-toggle {
        border-radius: 6px;
        padding: 8px;
        line-height: 1;
    }

    .navbar .dropdown .dropdown-toggle img {
        margin-right: 0;
        display: inline-block;
    }

    .main {
        text-align: center;
        padding: 250px 0 50px 0;
        background-position: center right 47%;
    }

    .main h6 {
        color: #fff;
    }

    .main h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .main p {
        font-size: 0.9rem;
        max-width: 100%;
        color: #fff;
    }

    .feature-boxes {
        margin-top: -15px;
    }

    .feature-boxes .feature-box {
        margin-top: 0;
        margin-bottom: 15px;
        height: auto;
        padding: 20px;
    }

    .feature-boxes .feature-box img {
        width: 48px;
        height: 48px;
    }

    .feature-boxes .feature-box h4 {
        font-size: 1.1rem;
        margin-top: 5px;
    }

    .feature-boxes .feature-box p {
        font-size: 0.8rem;
    }

    .immobilieres h3, .services .box h3, .team h3, .calculator-screen h3, .contact-page .box h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .page-hero h3 {
        font-size: 1.75rem;
    }

    .immobilieres p, .services .box p, .team p, .calculator-screen p, .contact-page .box p {
        font-size: 0.9rem;
        text-align: center;
    }

    .immobilieres {
        padding: 60px 0;
    }

    .immobilieres .offers-controls {
        text-align: center;
    }

    .services .box {
        padding: 30px 30px 30px 30px;
    }

    .services .box img.img-fluid {
        top: auto;
        width: 150%;
        max-width: 150%;
        object-position: right top;
        height: 220px;
        margin-left: -50%;
    }

    .services .service-category h4 {
        font-size: 0.9rem;
    }

    footer h3 {
        margin: 30px 0 10px 0;
    }

    .page-hero {
        padding: 30px 0;
    }

    .immobilieres-page {
        padding: 30px 0 10px 0;
    }

    .immobilieres-page .submenu ul {
        margin-bottom: 15px;
    }

    .calculator-screen .box {
        padding: 30px;
    }

    .calculator-screen .box .btn {
        margin-top: 15px;
    }

    .team.team-page {
        padding: 15px 0 30px 0;
    }

    .team .team-member {
        max-width: 80%;
        margin: 15px auto auto auto;
    }

    .feature-boxes.features-page {
        padding: 15px 0 30px 0;
        margin-top: 0;
    }

    .feature-boxes.features-page .feature-box {
        margin-top: 15px;
        margin-bottom: 0;
        height: auto;
    }

    .web-links {
        padding: 30px 0 90px 0;
    }

    .web-links .link {
        text-align: center;
        margin-top: 30px;
    }

    .web-links .link img {
        margin: auto;
    }

    .contact-page .box {
        padding: 25px;
    }

    .contact-page .contact-box {
        margin-top: 30px;
    }

    .page-hero.offer-hero {
        padding: 30px 0;
    }

    .page-hero.offer-hero h3 span {
        display: block;
    }

    .page-hero.offer-hero .btn {
        margin-top: 15px;
    }

    .offer-page .gallery-slider {
        margin-bottom: 15px;
    }

    .page-hero {
        padding-right: 25%;
    }

    .page-hero.mobile-blue {
        background: #5572a4;
        padding: 0 0 50px 0;
    }

    .page-hero .page-hero-bg.mobile-w-100 {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 50px;
    }
}