/* ========================================================
ROOT VARIABLES
   ======================================================== */
:root {
    /* Hamburger Menu Variables */
    --ham-width: 40px;
    --ham-height: 4px;
    --ham-margin: 6px;
    --ham-translate: 10px;
    --ham-translate-negative: -10px;

    /* Color Palette */
    --primary-bg: #8cc63d;
    --primary-color: #6d6e71;
    --white: #fff;
    --black: #000;

    /* Transition Defaults */
    --transition-speed: 0.3s;
}

/* ========================================================
   CSS RESET & NORMALIZE
   ======================================================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 27.5px;
    line-height: 1.2;
    color: var(--primary-color);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
a {
    text-decoration: none;
    -webkit-transition: all var(--transition-speed) ease;
    -o-transition: all var(--transition-speed) ease;
    transition: all var(--transition-speed) ease;
}

a:hover {
    text-decoration: none !important;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--black);
    line-height: 1;
    text-decoration: unset;
}

/* ========================================================
   4. LAYOUT UTILITIES
   ======================================================== */
.transition-all {
    -webkit-transition: all var(--transition-speed) ease;
    -o-transition: all var(--transition-speed) ease;
    transition: all var(--transition-speed) ease;
}

/* ========================================================
   INTERACTIVE ELEMENTS
   ======================================================== */
button {
    background-color: transparent;
    border: 0;
    outline: 0;
}

button:active,
button:focus {
    outline: 0;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

/* ========================================================
   NAVIGATION - HAMBURGER MENU
   ======================================================== */
.hamburger {
    cursor: pointer;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.hamburger .line {
    width: var(--ham-width);
    height: var(--ham-height);
    background-color: var(--primary-bg);
    display: block;
    margin: var(--ham-margin) auto;
    -webkit-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
}

/* Hamburger Menu Expanded State */
[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

[aria-expanded="true"] .line:nth-child(1) {
    -webkit-transform: translateY(var(--ham-translate)) rotate(45deg);
    -ms-transform: translateY(var(--ham-translate)) rotate(45deg);
    transform: translateY(var(--ham-translate)) rotate(45deg);
}

[aria-expanded="true"] .line:nth-child(3) {
    -webkit-transform: translateY(var(--ham-translate-negative)) rotate(-45deg);
    -ms-transform: translateY(var(--ham-translate-negative)) rotate(-45deg);
    transform: translateY(var(--ham-translate-negative)) rotate(-45deg);
}
.mx-auto {
    margin-right: unset !important;
    margin-left: auto !important;
}
/* ========================================================
   SCROLL & PROGRESS UTILITIES
   ======================================================== */
.go-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    display: none;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: grey;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.angle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.progress-wrap:hover .angle-top path {
    fill: var(--primary-bg);
}

/* ========================================================
   Header
   ======================================================== */
.bg-light {
    background: transparent !important;
}
.navbar-brand {
    width: 388px;
    margin: 0;
}
.nav-link {
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    color: black !important;
}
.nav-link:hover {
    color: var(--primary-bg) !important;
}
.bttn {
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-bg);
    padding: 0 60px;
    line-height: 78px;
    display: inline-block;
    background-color: var(--black);
    border-radius: 15px;
}
.bttn:hover {
    background: var(--primary-bg);
    color: #fff;
}
.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.service-card {
    max-width: 25%;
    width: 100%;
    text-align: center;
}
h3 {
    font-size: 37px;
    font-weight: bold;
    color: var(--primary-color);
}
/* ========================================================
   Banner ARea
   ======================================================== */

.banner {
/*    background-image: url(../img/banner.jpg);*/
    padding: 10px 30px 50px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.banner h1 {
    font-weight: 900;
    max-width: 800px;
    line-height: 1.47;
    color: var(--primary-color);
    font-size: 30px;
}
.banner p {
    font-weight: normal;
    color: var(--primary-color);
    max-width: 800px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
}
/* ========================================================
   Service texte en haut 3 images
   ======================================================== */
.title h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.04;
    color: var(--primary-color);
    line-height: 1.2;
}
.text-center {
    text-align: center;
}
.service-area {
    padding: 100px 0;
}
.service-inner {
    padding-top: 75px;
}
.service-text {
    margin-top: 22px;
}
.management-text h3,
.service-text a {
    font-size: 37px;
    font-weight: bold;
    line-height: 1.51;
    text-align: center;
    color: var(--primary-color);
    display: block;
}
.management-text p,
.service-text p {
    font-weight: 300;
    text-align: center;
    color: var(--primary-color);
    max-width: 220px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-area {
    padding-top: 70px;
}
.gallery-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 70px;
    gap: 10px;
}
.gallery-img div img {
    width: 100%;
}
.gallery-img div {
    width: calc(25% - 8px);
}
/* ========================================================
   Contact
   ======================================================== */
.contact-area {
    margin: 100px 0;
    position: relative;
}
.contact-area:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #FFF;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-left {
    max-width: 520px;
    width: 100%;
}
.contact-left .title {
    margin-bottom: 65px;
    width: 100%;
}
.contact-left-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
}
.contact-left-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contact-left-inner img {
    margin-top: 10px;
}
.contact-left-text div {
    padding-left: 40px;
}
.contact-right {
    max-width: 570px;
    width: 100%;
    padding: 65px;
    padding-right: 0;
    position: relative;
}
.cross {
    margin-bottom: 15px;
}
.contact-right h3 {
    margin-bottom: 30px;
}
.contact-right a {
    font-size: 37px;
    font-weight: bold;
    line-height: 85px;
    padding-bottom: 4px;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    max-width: 357px;
    width: 100%;
    display: inline-block;
    margin-top: 50px;
}
.contact-right a:hover {
    background: var(--primary-bg);
    color: #fff;
}
/* ========================================================
   Content
   ======================================================== */

.content-area {
    background: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 90px;
}
.content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.content .title {
    margin-bottom: 60px;
}
.content-left-img {
}
.content-left-heading {
    margin-top: 25px;
    margin-bottom: 40px;
}
.content-btn a {
    border: 1px solid var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 37px;
    font-weight: bold;
    line-height: 2;
    color: var(--primary-color);
    gap: 25px;
    width: 100%;
}
.content-btn a:hover {
    background: var(--primary-bg);
    color: var(--primary-color);
}
.content-mdl {
    max-width: 480px;
}
.content-right {
    max-width: 320px;
    width: 100%;
}
.content-right ul li {
    list-style: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.24;
    color: var(--primary-color);
    position: relative;
    padding-left: 30px;
    margin-top: 35px;
}
.content-right ul li:before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 11px;
}
/* ========================================================
   Management
   ======================================================== */
.management-area {
    padding-top: 60px;
    font-size: 27px;
}
.management {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 65px;
    background-color: #eeeeed;
    padding-bottom: 70px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.management-card {
    max-width: calc(33% - 5px);
    width: 100%;
}
.management-img img {
    width: 100%;
}
.management-text {
    text-align: center;
    margin-top: 55px;
}
.management-text p {
    max-width: 315px;
    width: 100%;
    margin-bottom: 30px;
}
.management-text a {
    font-size: 27px;
    font-weight: 500;
    text-align: center;
    color: var(--primary-color);
    width: 217px;
    line-height: 61px;
    background-color: #d0d0d0;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
}
.management-text a:hover {
    background: var(--primary-bg);
    color: #fff;
}
/* ========================Footer================ */
.footer-area {
    background-color: #eeeeed;
}
.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 65px;
    padding-bottom: 150px;
    gap: 150px;
}
.footer-left {
    max-width: 300px;
    width: 100%;
}

.footer h3 {
    margin-bottom: 17px;
}
.footer-right {
    max-width: calc(100% - 300px);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-left p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.78;
    color: var(--primary-color);
}
.footer-card ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px 0;
    padding-top: 10px;
}
.footer-card ul li {
    list-style: none;
}
.footer-card ul li a {
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
    color: var(--primary-color);
}
.footer-card ul li a:hover {
    color: var(--primary-bg);
}
.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-top: 75px;
}
.social img {
    width: 20px;
}
.social a {
    font-size: 30.5px;
    font-weight: 900;
    text-align: center;
    color: var(--primary-color);
    width: 72px;
    height: 72px;
    background-color: #d0d0d0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}
.social a:hover {
    background: var(--primary-bg);
}
/* ========================================================
   RESPONSIVE UTILITIES
   ======================================================== */
@media (max-width: 768px) {
    /* Add mobile-specific adjustments here */
}
@media (max-width: 1399px) {
    .banner {
        padding: 30px 10px 50px 20px;
    }
    .banner h1 {
        font-size: 57px;
        font-weight: 900;
        line-height: 1.1;
        color: var(--primary-color);
    }
    .bttn {
        font-size: 30px;
        padding: 0 40px;
        line-height: 61px;
    }
    .content-card,
    .content-right {
        max-width: 30%;
    }
    .content-mdl {
        max-width: 36%;
    }
    .content-btn a {
        font-size: 25px;
        gap: 15px;
    }
    h3 {
        font-size: 30px;
    }
    .content-right ul li {
        font-size: 22px;
        padding-left: 30px;
        margin-top: 18px;
    }
    .content-left-heading {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .management-text h3,
    .service-text a {
        font-size: 30px;
    }
    .management-text p,
    .service-text p {
        font-size: 22px;
    }
    .contact-right a {
        font-size: 32px;
        line-height: 75px;
        max-width: 270px;
        margin-top: 30px;
    }
    .contact-left-text div {
        padding-left: 30px;
    }
    .nav-link {
        font-size: 25px;
    }
    .navbar-brand {
        width: 280px;
    }
    .navbar-nav {
        gap: 6px;
    }
}
@media (max-width: 1199px) {
    body {
        font-size: 22px;
    }
    .title h2 {
        font-size: 42px;
    }
    .contact-left {
        max-width: 440px;
        width: 100%;
    }
    .contact-right {
        max-width: calc(100% - 460px);
        width: 100%;
    }
    .contact-right a {
        font-size: 30px;
        line-height: 65px;
        max-width: 220px;
        margin-top: 30px;
    }
    .contact-right h3 {
        margin-bottom: 20px;
    }
    .contact-left-inner img {
        margin-top: 5px;
        width: 40px;
    }
    .contact-left-text div {
        padding-left: 20px;
    }
    .footer-card {
        max-width: 33%;
    }
    .footer {
        gap: 30px;
    }
    h3 {
        font-size: 26px;
    }
    .footer-card ul li a {
        font-size: 20px;
    }
    .social img {
        width: 15px;
    }
    .social a {
        width: 52px;
        height: 52px;
    }
    .social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 14px;
        margin-top: 35px;
    }
    .footer {
        padding-bottom: 90px;
    }
    .contact-left .title {
        margin-bottom: 45px;
    }
}
@media (max-width: 991px) {
    body {
        font-size: 18px;
    }
    .navbar-toggler {
        border: 0;
        padding: 0;
    }
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

    .navbar-brand {
        width: 230px;
    }
    .banner h1 {
        font-size: 42px;
        line-height: 1.3;
    }
    .management {
        margin-top: 45px;
    }
    .management-text h3,
    .service-text a {
        font-size: 24px;
    }
    .management-text a {
        font-size: 22px;
        width: 90%;
        line-height: 52px;
    }
    .service-card {
        max-width: 50%;
    }
    .service-inner {
        gap: 25px 0;
        padding-top: 50px;
    }
    .service-area {
        padding: 70px 0;
    }
    .gallery-img {
        margin-top: 50px;
    }
    .contact-right {
        max-width: calc(100% - 370px);
        width: 100%;
        padding-left: 0;
        padding: 40px 0;
    }
    .contact-left {
        max-width: 340px;
        width: 100%;
    }
    .title h2 {
        font-size: 37px;
    }
    .contact-area {
        margin: 70px 0;
    }
    .contact-left-inner {
        gap: 10px 0;
    }
    h3 {
        font-size: 22px;
    }
    .contact-left-text div {
        padding-left: 10px;
    }
    .contact-left-inner img {
        margin-top: 0;
        width: 35px;
    }
    .contact-right a {
        font-size: 27px;
        line-height: 55px;
        max-width: 200px;
        margin-top: 10px;
    }
    .footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-right {
        max-width: 100%;
    }
    .footer {
        padding-bottom: 70px;
    }
    .content-right ul li {
        font-size: 18px;
    }
    .banner h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    .bttn {
        font-size: 27px;
        padding: 0 30px;
        line-height: 56px;
    }
    .management {
        gap: 35px 0;
    }
    .management-card {
        max-width: calc(50% - 5px);
    }
    .management-text {
        text-align: center;
        margin-top: 25px;
    }
    .management-text h3,
    .service-text a {
        font-size: 22px;
    }
    .management-text p {
        margin-bottom: 20px;
    }
    .title h2 {
        font-size: 32px;
    }
    .content-card {
        max-width: 50%;
    }
    .content-right {
        max-width: 100%;
        margin-top: 50px;
    }
    .content-right ul li:before {
        width: 8px;
        height: 8px;
        left: 0;
        top: 50%;
        margin-top: -4px;
    }
    .content-btn a {
        font-size: 22px;
        gap: 15px;
    }
    .content-right ul li {
        padding-left: 15px;
    }
    .content-mdl {
        max-width: 40%;
    }
    .content-area {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .title h2 {
        text-align: center;
    }
    .contact-left {
        max-width: 100%;
    }
    .contact-area:before {
        right: unset;
        top: unset;
        width: 100%;
        height: 47%;
        z-index: -1;
        bottom: 0;
    }
    .contact-right {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding: 40px 0;
    }
    .contact-left-inner {
        padding-bottom: 30px;
    }
    .gallery-img {
        flex-wrap: wrap;
    }
    .gallery-img div {
        width: calc(50% - 5px);
    }
}
@media (max-width: 575px) {
    .banner h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .bttn {
        border-radius: 10px;
    }
    .title h2 {
        font-size: 26px;
    }
    .title h2 br {
        display: none;
    }
    .management {
        margin-top: 35px;
    }
    .management-card {
        max-width: 100%;
    }
    .service-card {
        max-width: 100%;
    }
    .content-card {
        max-width: 100%;
        width: 100%;
    }
    .content-mdl img,
    .content-left-img img {
        width: 100%;
    }
    .content-mdl {
        max-width: 100%;
        margin-top: 40px;
        width: 100%;
    }
    .content-right {
        margin-top: 40px;
    }
    .content-area {
        padding-bottom: 50px;
    }
    .content .title {
        margin-bottom: 40px;
    }
    .footer-card {
        max-width: 100%;
    }
    .footer-right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px 0;
    }
    .footer-card ul li a {
        font-size: 17px;
    }
    .social {
        margin-top: 25px;
    }
    .gallery-img {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .gallery-img div {
        width: 49%;
    }
    .navbar-brand {
        width: 180px;
    }
    .contact-area:before {
        height: 50%;
    }
    .content-right ul li:before {
        width: 6px;
        height: 6px;
        margin-top: -4px;
    }
    .content-right ul li {
        padding-left: 12px;
    }
}

@media (max-width: 575px) {
    .content-right ul li {
        font-size: 16px;
    }
    .content-right ul li:before {
        margin-top: -1px;
    }
}
