/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: "Roboto", serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button:hover {
    color: #fff;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: #2E537D;
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: #2E537D;
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:hover:after {
    width: 60%;
}

.button:hover:before {
    width: 60%;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.form-area {
    padding: 70px 0;
}

.form-content {
    max-width: 900px;
    margin: 0 auto;
}

.google-map {
    margin-bottom: 40px;
}

.google-map iframe {
    width: 100%;
    height: 400px;
}

.google-map-inner {
    padding: 30px 25px;
    background: #f4efe4;
    border: 1px solid #dddbd7;
}

.google-map-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #292929;
}

.google-map-inner p {
    font-size: 20px;
    font-weight: 400;
    color: #999999;
}

.google-map-inner p a {
    color: #999999;
    margin-left: 20px;
}

.google-map-inner p a:hover {
    color: #2E537D;
}

.form-item h2 {
    font-size: 32px;
    font-weight: 700;
    color: #292929;
    border-left: 4px solid #292929;
    padding: 5px 15px;
    padding-right: 0;
    margin-bottom: 40px;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.form-group-inner {
    margin-bottom: 40px;
}

.form-group-inner label {
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 15px;
}

.form-group-inner input,
.form-group-inner .nice-select {
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1px solid #dddbd7;
    border-radius: 4px;
    padding: 0 20px;
}

.form-group-inner input::placeholder {
    color: #999999;
    opacity: 1;
}

.form-group-inner .nice-select:after {
    width: 10px;
    height: 10px;
    border-color: #999999;
}

.form-group-inner .nice-select .list {
    width: 100%;
}

.form-item-inner {
    margin-bottom: 40px;
}

.form-item-inner h3 {
    font-size: 22px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 8px;
}

.form-item-inner p {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 8px;
}

.form-item-inner a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    background: #2E537D;
}

.form-item-inner a:after {
    background: #292929;
}

.form-item-inner a:before {
    background: #292929;
}

.form-item button {
    font-size: 26px;
    font-weight: 700;
    color: #2E537D;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #2E537D;
    width: 300px;
    height: 60px;
    margin-left: auto;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.form-item button:hover {
    color: #fff;
    background: #2E537D;
}

/* page 02 start */

.form-upper {
    margin-bottom: 50px;
}

.form-upper h2 {
    font-size: 50px;
    font-weight: 700;
    color: #292929;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-upper h2 span {
    font-size: 24px;
    font-weight: 400;
    color: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 45px;
    border-radius: 30px;
    border: 1px solid #292929;
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.form-button a {
    font-size: 20px;
    font-weight: 500;
    color: #999999;
    margin-right: 40px;
}

.form-button a:hover {
    color: #2E537D;
}

/* page 03 start */

.form-group-inner-second input {
    width: 140px;
}

.form-item-inner h4 {
    font-size: 22px;
    font-weight: 600;
    color: #999999;
    text-align: right;
    margin-bottom: 12px;
}

.form-item-inner h6 {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    text-align: right;
}

.form-button-second button {
    width: 350px;
}

/* page 04 start */

.video-area video {
    width: 100%;
}

.career-area {
    padding-top: 110px;
}

.career-item {
    display: flex;
    flex-wrap: wrap;
}

.career-item-image {
    width: 663px;
    margin-bottom: 180px;
}

.career-item-image img {
    width: 100%;
}

.career-item-content {
    width: calc(100% - 663px);
    margin-bottom: 180px;
    padding-top: 60px;
    padding-left: 70px;
}

.career-item-content h2 {
    font-size: 44px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 32px;
}

.career-item-content p {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 32px;
}

.career-item-content p:last-of-type {
    margin-bottom: 0;
}

.career-item-content-second {
    padding-left: 0;
    padding-right: 90px;
}

.career-item-content-second h2 {
    font-size: 24px;
}

.career-item-content ul {
    padding-top: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.career-item-content ul li {
    width: 25%;
    padding: 0 25px;
    text-align: center;
}

/* team area start */

.team-area {
    padding: 20px 0 80px;
}

.team-title {
    margin-bottom: 36px;
}

.team-title h2 {
    font-size: 28px;
    font-weight: 500;
    color: #292929;
}

.team-item ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.team-item ul li {
    width: 25%;
    padding: 0 16px;
}

.team-item-inner {
    background-image: url(https://media.remax-quebec.com/agt/www_small/h8032.jpg?v=2024-12-05%2011%3A00%3A59.432742-05);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    margin-bottom: 32px;
}

.team-item-content {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 32px;
    background-image: linear-gradient(180deg, #02010100 -1%, #020000 48%);    
}

.team-item-content-inner {
    overflow: hidden;
}

.team-item-content-inner-second {
    transform: translateY(74px);
    transition: 0.6s all ease;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
}

.team-item-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 17px;
}

.team-item-content h3 strong {
    font-weight: 700;
    display: block;
}

.team-item-content a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 179px;
    height: 58px;
    border: 1px solid #fff;
}

.team-item-content a:hover {
    color: #000;
}

.team-item-content a:after {
    background: #fff;
}

.team-item-content a:before {
    background: #fff;
}

.team-item-inner:hover .team-item-content-inner-second {
    transform: translateY(-1px);
}

.team-title-second {
    padding-top: 100px;
}

.team-item-second .team-item-content-inner h3 span {
    font-size: 16px;
    font-weight: 300;
    display: block;
    margin-top: 20px;
}

.team-item-second .team-item-content-inner a {
    width: 128px;
}

.team-item ul li:nth-of-type(2) .team-item-inner {
    background-image: url(https://ucarecdn.com/76c59f5a-15d4-45df-b910-c97e8cdb6a23/-/crop/1280x1600/0,139/-/resize/320x400/);
}

.team-item ul li:nth-of-type(3) .team-item-inner {
    background-image: url(https://media.remax-quebec.com/agt/www_small/j1779.jpg?v=2025-02-13%2009%3A40%3A34.055559-05);
}

.team-item ul li:nth-of-type(4) .team-item-inner {
    background-image: url(https://ucarecdn.com/eacc67a4-f9bc-40d0-acc6-6a06db79e6c3/-/crop/2850x3566/0,24/-/resize/320x400/);
}

.team-item ul li:nth-of-type(5) .team-item-inner {
    background-image: url(https://media.remax-quebec.com/agt/www_small/j5759.jpg?v=2025-02-11%2010%3A47%3A41.177998-05);
}

.team-item ul li:nth-of-type(6) .team-item-inner {
    background-image: url(https://media.remax-quebec.com/agt/www_small/j5065.jpg?v=2024-12-16%2015%3A31%3A43.524519-05);
}


/* apply area start */

.apply-area {
    padding: 115px 0 100px;
    background: #f4f4f4;
    text-align: center;
}

.apply-item h2 {
    font-size: 30px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 50px;
}

.apply-item p {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 50px;
}

.apply-item a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: #292929;
    width: 130px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* page 05 start */

.about-area {
    padding-top: 70px;
}

.about-item {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.about-item-left {
    width: calc(100% - 700px);
    padding-right: 25px;
    padding-bottom: 60px;
}

.about-item-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 24px;
}

.about-item-left p {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 50px;
}

.about-item-left > a.button {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 190px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #292929;
    margin-bottom: 50px;
}

.about-item-left h4 {
    font-size: 18px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 24px;
}

.about-item-left ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.about-item-left ul li a {
    font-size: 22px;
    color: #292929;
    margin-right: 22px;
}

.about-item-left ul li a:hover {
    color: #2E537D;
}

.about-item-left-inner ul {
    margin-bottom: 0;
}

.about-item-left-inner ul li a {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 45px;
    margin-right: 10px;
    background: #3b5998;
}

.about-item-left-inner ul li:nth-of-type(2) a {
    background: #1da1f2;
}

.about-item-left-inner ul li:nth-of-type(3) a {
    background: #0077b5;
}

.about-item-left-inner ul li a:hover {
    color: #fff;
}

.about-item-left-inner ul li a:after {
    background: #366cdc;
}

.about-item-left-inner ul li a:before {
    background: #366cdc;
}

.about-item-left-inner ul li:nth-of-type(2) a:after {
    background: #00ceff;
}

.about-item-left-inner ul li:nth-of-type(2) a:before {
    background: #00ceff;
}

.about-item-left-inner ul li:nth-of-type(3) a:after {
    background: #009aff;
}

.about-item-left-inner ul li:nth-of-type(3) a:before {
    background: #009aff;
}

.about-item-right {
    width: 700px;
}

.about-item-right img {
    width: 100%;
}








===================================
Home Page Start Here
====================================
*/

.custom-btn a {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    text-align: center;
    text-transform: capitalize;
}

.heading-title {
    color: var(--whiteColor);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.heading-title span {
    color: var(--primaryColor);
}

/*== Header Section Start Here ==*/

.list-header {
    background-image: url(images/DSC_2887_v1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.list-header {
    min-height: 500px; /* ou toute autre valeur */
}

.menu-area {
    padding-top: 35px;
}

.menu-area {
    padding-top: 35px;
}

.menu-bar ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 0 15px;
}

.menu-bar ul li a:hover,
.menu-bar ul li a.active {
    color: var(--primaryColor);
}

.menu-btn a {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 10px;
    color: var(--primaryColor);
    background: var(--whiteColor);
    text-transform: capitalize;
}

.menu-btn a:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.offcanvas-body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.offcanvas-body .mobile-side-bar-menu {
    padding-top: 30px;
}

.offcanvas-body .mobile-side-bar-menu ul li {
    display: block;
}

.offcanvas-body .mobile-side-bar-menu ul li a {
    color: #888888;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 18px;
    width: 100%;
    border-left: 2px solid transparent;
}

.offcanvas-body .mobile-side-bar-menu ul li a:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-left: 2px solid var(--primaryColor);
    color: var(--primaryColor);
}

.offcanvas-start .offcanvas-header {
    padding-top: 28px;
    padding-bottom: 28px;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.offcanvas-header .btn-close {
    box-shadow: none !important;
}

.mobile-side-bar-btn {
    margin: 0 20px;
    margin-bottom: 30px;
}

.mobile-side-bar-btn a {
    width: 100%;
    text-align: center;
    border: 1px solid var(--primaryColor);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primaryColor);
    padding: 14px 0;
    text-transform: capitalize;
}

.mobile-side-bar-btn a:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.off-menu-bar i {
    font-size: 24px;
    color: #fff;
}

.header-area {
    padding-top: 145px;
    padding-bottom: 210px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-area-inner1 p {
    font-size: 14px;
    color: var(--whiteColor);
    padding-left: 9px;
}

.header-area-inner2 h2 {
    padding-top: 5px;
    font-size: 60px;
    color: var(--whiteColor);
}

.header-area-inner2 h2 span {
    color: #2E537D;
}

.header-area-inner2 p {
    padding-top: 7px;
    font-size: 22px;
    font-weight: 500;
    color: var(--whiteColor);
}

.header-area-inner2 ul {
    padding-top: 65px;
}

.header-area-inner2 ul li a {
    padding: 18px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}

.header-area-inner2 ul li:first-child a {
    margin-right: 20px;
    border: 1px solid #2E537D;
    color: var(--whiteColor);
    background: #2E537D;
}

.header-area-inner2 ul li:first-child a:hover {
    background: transparent;
    color: var(--whiteColor);
    border-color: var(--whiteColor);
}

.header-area-inner2 ul li:last-child a {
    border: 1px solid var(--whiteColor);
    color: var(--whiteColor);
    background: transparent;
    padding-left: 42px;
    padding-right: 42px;
}

.header-area-inner2 ul li:last-child a:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
}

/*== Estate Section Start Here ==*/

.estate-section {
    background-image: url(images/estate-bg-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 115px 0;
}

.estate-right strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.estate-right h2 {
    padding: 6px 0;
}

.estate-right p {
    padding-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.estate-right-btn a {
    margin-top: 18px;
    padding-left: 38px;
    padding-right: 38px;
}

.estate-right-btn a:hover {
    color: #fff;
    background: var(--primaryColor);
}

/*== Featured Section Start Here ==*/

.featured-section {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    padding-bottom: 80px;
}

.featured-top-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #292929;
}

.featured-top-left h2 span {
    color: var(--primaryColor);
}

.featured-top-left p {
    padding-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.featured-top-right a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.featured-slider {
    margin-top: 60px;
    position: relative;
}

.featured-slider-items {
    padding: 20px;
    background: #f5f5f580;
    border-radius: 12px;
    box-shadow: 0px 1px 6px 0px #aba9a959;
    margin: 5px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-slider-items h4 {
    padding-top: 30px;
    padding-bottom: 9px;
    font-size: 24px;
    font-weight: 600;
    color: #292929;
}

.featured-slider-items span {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.featured-slider-items span i {
    font-size: 15px;
    padding-right: 10px;
}

.featured-slider-items p {
    padding-top: 10px;
    color: #565656;
    font-size: 16px;
}

.featured-slider-inner {
    padding: 30px 0;
}

.featured-slider-inner div span {
    font-size: 18px;
    font-weight: 500;
    color: #3e3838;
    padding-right: 24px;
    position: relative;
}

.featured-slider-inner div h6 {
    font-size: 20px;
    font-weight: 600;
    color: #3e3838;
}

.featured-slider-inner2 a {
    width: 100%;
    padding: 15px 0;
}

.featured-slider-inner2 a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.featured-slider .owl-nav {
    position: absolute;
    right: 0;
    margin-top: 35px;
}

.featured-slider .owl-nav .owl-next,
.featured-slider .owl-nav .owl-prev {
    height: 58px;
    width: 58px;
    line-height: 65px !important;
    text-align: center;
    border: 1px solid #cdcdcd !important;
    background: transparent !important;
    border-radius: 50%;
    transition: 0.3s;
}

.featured-slider .owl-nav .owl-next i,
.featured-slider .owl-nav .owl-prev i {
    font-size: 22px;
    color: #cdcdcd;
    transition: 0.3s;
}

.featured-slider .owl-nav .owl-next:hover,
.featured-slider .owl-nav .owl-prev:hover {
    background: var(--primaryColor) !important;
    border: 1px solid #fff;
}

.featured-slider .owl-nav .owl-next:hover i,
.featured-slider .owl-nav .owl-prev:hover i {
    color: #fff !important;
}

.featured-slider-page p {
    padding-top: 55px;
    font-size: 20px;
    font-weight: 500;
    color: #999999;
}

.featured-slider-page p span {
    color: var(--primaryColor);
}

.featured-slider-img {
    position: relative;
}

.featured-slider-img-btn {
    position: absolute;
    top: 12px;
    left: 10px;
}

.featured-slider-img-btn a {
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    color: var(--primaryColor);
}

.featured-slider-img-btn a:hover {
    background: var(--primaryColor);
}
