﻿
html,
body {
    margin: 0;
    padding: 0;
    color: #666666;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    font-weight: 100;
}

a {
    color: #FFFFFF;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.video-zoom {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px; /* optionnel : arrondir les coins */
}

.video-zoom video {
  transition: transform 0.3s ease;
}

.video-zoom video:hover {
  transform: scale(1.1); /* Zoom Ã  110% */
  cursor: pointer;
}


.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #C9A227;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #000000;
    background: #D9D9D9;
}

.back-to-top i {
    padding-top: 10px;
}

.row {
justify-content: center;
text-align: center;
}

.header {
    width: 100%;
    padding: 15px 0 0 0;
    background: linear-gradient(rgba(0, 156, 86, 1), rgb(26, 63, 47));
}

.header.home {
    background: linear-gradient(90deg, #0F0F0F 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.3s ease;
}

.header.home + .hero {
    margin-top: 0;
    padding-top: 130px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .header.home + .hero {
        padding-top: 172px;
    }
}


@media (min-width: 992px) {
    .header .row {
        padding: 0 60px;
    }
}

.header .header-top {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header .brand {
    position: relative;
}

.header .brand a {
    color: #ffffff;
    font-size: 37px;
    font-weight: 100;
}

.header .brand img {
    max-width: 85px; 
    height: auto;       
}


.header .topbar {
    position: relative;
    text-align: right;
}

.header .topbar .topbar-col {
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 15px;
}

.header .topbar-col a {
    color: #ffffff;
    font-size: 13px;
}

.header .topbar-col a i {
    margin-right: 10px;
    color: #C9A227;
}

.header .topbar-social {
    position: relative;
}

.header .topbar-social a {
    display: inline-block;
}

.header .topbar-social a i {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
}

.header .topbar-social a:last-child i {
    margin: 0;
}

.header .topbar-social a:hover i {
    color: #C9A227;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 5px;
    background: #eeeeee;
}

.header .dropdown-menu a.active {
    color: #C9A227;
}

.imgmd7 {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 4px solid #C9A227; /* contour blanc propre */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





@media (min-width: 992px) {
    .header .navbar {
        background: transparent !important;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header .navbar-light a.nav-link,
    .header .navbar-light .show > .nav-link {
        position: relative;
        padding: 8px 10px;
        color: #ffffff;
        font-size: 16px;
        z-index: 1;
    }
    
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: #C9A227;
    }
}

@media (max-width: 992px) {
    .header .header-top {
        position: relative;
        padding-bottom: 10px;
    }

    .header .header-top > .col-lg-3,
    .header .header-top > .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .brand {
        position: absolute;
        top: 0;
        left: 15px;
        text-align: left;
        margin-bottom: 0;
        z-index: 2;
    }

    .header .brand img {
        max-width: 62px;
    }

    .header .topbar {
        position: absolute;
        top: 10px;
        right: 15px;
        text-align: right;
        margin-bottom: 0;
        z-index: 2;
    }

    .header .topbar .topbar-col {
        margin: 0;
        padding: 0;
        font-size: 0;
        line-height: 1.3;
    }

    .header .topbar .topbar-col i {
        display: inline-block;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .header .topbar .topbar-col a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 12px;
        line-height: 1.35;
    }

    .header .topbar .topbar-col a + a {
        margin-top: 2px;
    }

    .header .topbar .topbar-col .phone-sep {
        display: none;
    }
    
    .header .topbar .topbar-social {
        margin-top: 5px;
    }

    .header .col-lg-9 {
        padding-top: 72px;
    }
    
    .header .navbar {
        background: #ffffff !important;
        border: none;
        margin-top: 6px;
        z-index: 1;
    }
    
    .header a.nav-link {
        padding: 5px 0;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }

}

.header .navbar .btn {
    position: relative;
    margin-left: 15px;
    padding: 12px 20px 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    color: #0F0F0F;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    transition: .3s;
}

.header .navbar .btn:hover {
    color: #000000;
    background: #C9A227;
}

.header .navbar .btn i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .header .navbar {
        border-radius: 5px;
    }
    
    .header .navbar .btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .header .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        padding: 4px 8px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .header .navbar-brand {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
        color: #3a3a3a;
    }

    .header .navbar-toggler {
        border: 1px solid rgba(201, 162, 39, 0.55);
        border-radius: 8px;
        padding: 0.14rem 0.45rem;
        background: #fff8e7;
    }

    .header .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 0.12rem rgba(201, 162, 39, 0.28);
    }

    .header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(70,54,14,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .header .navbar-collapse {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .header .navbar-nav {
        gap: 8px;
    }

    .header a.nav-link {
        padding: 10px 12px;
        border-radius: 8px;
        background: #ffffff;
        color: #232323;
        font-weight: 500;
    }

    .header a.nav-link:hover,
    .header a.nav-link.active {
        background: #f8f1de;
        color: #7a5c12;
    }

    .header #navbarCollapse .btn {
        display: block;
        margin: 0;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid #dcc77f;
        background: #f4e8c6;
        color: #5b4b22;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        text-align: center;
    }

    .header #navbarCollapse .btn:hover {
        background: #eddcb0;
        color: #4a3c1c;
    }
}


.header .hero h2 {
    margin: 0;
    font-size: 60px;
    font-weight: 100;
    color: #ffffff;
}

.header .hero h2 span {
    color: #C9A227;
}

.header .hero p {
    margin: 10px 0 20px 0;
    font-size: 22px;
    color: #ffffff;
}

.header .hero a.btn {
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: uppercase;
    color: #0F0F0F;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    transition: .3s;
}

.header .hero a.btn:hover {
    color: #000000;
    background: #C9A227;
}

.header .hero .form {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .3);
    border-radius: 5px;
}

.header .hero .form h3 {
    color: #ffffff;
    font-weight: 300;
}

.header .hero .form input,
.header .hero .form select,
.header .hero .form textarea {
    margin-bottom: 15px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .2);
}

.header .hero .form textarea {
    height: 75px;
}

.header .hero .form select,
.header .hero .form input::placeholder,
.header .hero .form textarea::placeholder {
    color: #ffffff;
}

.header .hero .form select option:not(:checked) {
    color: #666666;
}

.header .hero .form .btn {
    position: relative;
    padding: 10px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #C9A227;
    transition: .3s;
}

.header .hero .form .btn:hover {
    color: linear-gradient(rgba(0, 156, 86, 1), rgb(26, 63, 47));
    background: #ffffff;
}

.hero {
    background-image: url(/img/bgswiss.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 800px;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    width: auto;
}


@media (max-width: 767.98px) {
    .header .hero .form {
        margin-top: 45px;
    }

    .imgmd7 {
        width: 88%;
    }

    .hero {
        height: 800px;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #C9A227;
}


.page-header h2 {
    color: #000000;
    font-size: 60px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    font-weight: 300;
    color: #0F0F0F;
}

.page-header a:hover {
    color: #000000;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #666666;
}

.page-header a:last-child::after {
    display: none;
}




/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-bottom: 15px;
}

.section-header::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
    border-radius: 50px;
}



.btnint {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(91, 75, 34, 0.14);
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease, color 0.45s ease, background-color 0.45s ease;
    color: #ffffff;
    background: #0f0f0fb6;
}

.btnint:hover {
    color: #f4e8c6;
    background: #C9A227;
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 75, 34, 0.096);
}


.section-header p {
    margin-bottom: 10px;
    font-size: 20px;
}

.section-header h2 {
    color: #0F0F0F;
    font-size: 50px;
    font-weight: 600;
}

.section-header.left {
    text-align: left;
}

.section-header.left::before {
    width: 60px;
    left: 0;
    background: linear-gradient(to left, #C9A227, #0F0F0F, #0F0F0F);
    border-radius: 0 100% 100% 0;
}

.section-header.left::after {
    left: 0;
    border-radius: 5px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
}

.about .about-text h2 {
    position: relative;
    color: #0F0F0F;
    font-size: 50px;
    margin-bottom: 15px;
}

.about .about-text h2 span {
    font-size: 120px;
}

.about .about-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.about .about-text a.btn {
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #C9A227;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.introab {
    text-align: justify;
}

.h2pres {
    font-weight: 600;
    color: #0F0F0F;
}

.h3pres {
    padding-bottom: 10px;
    font-weight: 600;
    color: #C9A227;
}

.h5title {
    color: #0F0F0F;
    font-weight: 900;
}

.service-item {
    text-align: justify;
    height: 285px;
}

.service-item-pre {
    text-align: justify;
}

@media (max-width: 767.98px) {
    .about .about-img img {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0px 0;
}


.why-choose-section {
    position: relative;
    box-shadow: inset 0 10px 14px -12px rgba(0, 0, 0, 0.55);
}

.why-choose-section .why-choose-row {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 30px 0;
    overflow: hidden;
    
}

.why-choose-section .why-choose-row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('/img/bgclean.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    box-shadow: inset 0 10px 14px -15px rgba(0, 0, 0, 0.55);

}

.why-choose-section .why-choose-row > .col-12 {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 28px 24px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.753);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
    
}

@media (max-width: 767.98px) {
    .why-choose-section .why-choose-row {
        padding-left: 14px;
        padding-right: 14px;
    }

    .why-choose-section .why-choose-row > .col-12 {
        padding: 24px 18px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .why-choose-section .why-choose-row {
        padding-left: 22px;
        padding-right: 22px;
    }

    .why-choose-section .why-choose-row > .col-12 {
        width: calc(100% - 44px);
        max-width: calc(100% - 44px);
        padding: 26px 24px;
    }
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    border-radius: 15px;
    max-width: 350px;
    margin: 0 auto 24px auto;
    overflow: hidden;
}

.service .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.service .service-item img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 20px;
    font-weight: 300;
    color: #0F0F0F;
}

.service .service-item p {
    margin: 0;
    padding: 0 25px 25px 25px;
    font-size: 16px;
    color: #2f2f2f;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    background: #0F0F0F;
    transition: .3s;
}


.service .service-item a.btn:hover {
    color: #000000;
    background: #28a745;
}

@media (max-width: 767.98px) {
    .service-item {
        height: auto;
    }

    .service {
        padding: 28px 0 0 0;
    }

    .service .service-item {
        max-width: 100%;
        margin: 0 auto 14px auto;
    }

    .service .service-item h3 {
        padding: 16px 14px 10px 14px;
        font-size: 18px;
        line-height: 1.25;
    }

    .service .service-item p {
        padding: 0 14px 16px 14px;
        font-size: 15px;
        line-height: 1.4;
    }
}


.imgserv {
    width: auto;
    height: 99px;
    padding: 10px;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.feature .section-header {
    margin-bottom: 30px;
}

.feature a.btn {
    margin-top: 10px;
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #C9A227;
    transition: .3s;
}

.feature a.btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-item img {
    width: 100%;
    border-radius: 5px;
}

.feature .feature-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 300;
    color: #0F0F0F;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .feature a.btn {
        margin-bottom: 45px;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
    font-size: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.team .team-img img {
    width: 100%;
    height: auto;
}

.team .team-text {
    padding: 150px 15px 30px 15px;
    margin-top: -130px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition: .3s;
    
}

.team .team-text:hover {
    background: #C9A227;
    border: 1px solid #C9A227;
}

.team .team-text h2 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
    color: #0F0F0F;
}

.team .team-text h3 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
}

.team .team-social {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    transition: .3s;
}

.team .team-social a.social-tw {
    background: #00acee;
}

.team .team-social a.social-fb {
    background: #3b5998;
}

.team .team-social a.social-li {
    background: #0e76a8;
}

.team .team-social a.social-in {
    background: #3f729b;
}

.team .team-social a.social-yt {
    background: #c4302b;
}

.team .team-social a:last-child {
    margin-right: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #0F0F0F;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .section-header {
    margin-bottom: 30px;
}

.faqs img {
    width: 100%;
    border-radius: 5px;
}

@media(max-width: 767.98px) {
    .faqs img {
        margin-bottom: 30px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #eeeeee;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #0F0F0F;
    font-size: 18px;
    font-weight: 300;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #C9A227;
    color: #000000;
    border-radius: 5px;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #0F0F0F;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #0F0F0F;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    margin-top: 30px;
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #C9A227;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.cookie{
 font-size: 15px;
 text-align: justify;
}
/*******************************/
/****** Pricing Plan CSS *******/
/*******************************/
.price {
    position: relative;
    padding: 45px 0 15px 0;
}

.price .price-item {
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.price .price-header {
    padding: 30px 0 50px 0;
    color: #000000;
    background: #C9A227;
    border-radius: 5px 5px 0 0;
}

.price .featured-item .price-header {
    color: #ffffff;
    background: #0F0F0F;
}

.price .price-icon {
    margin-bottom: 15px;
}

.price .price-icon i {
    display: inline-block;
    font-size: 45px;
}

.price .price-title h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.price .price-pricing h2 {
    font-size: 60px;
    font-weight: 100;
    margin-left: 15px;
    margin-bottom: 0;
}

.price .price-pricing h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin-left: -15px;
}

.price .price-body {
    padding: 20px 0;
    background: #ffffff;
    border-radius: 25px 30px 0 0;
    margin-top: -30px;
}

.price .price-des ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-des ul li {
    color: #2A293E;
    font-size: 14px;
    font-weight: 300;
    padding: 5px;
    border-bottom: 1px solid #eeeeee;
}

.price .price-des ul li:last-child {
    border: none;
}

.price .price-footer {
    padding-bottom: 30px;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
}


.price .price-action a {
    display: inline-block;
    padding: 10px 25px;
    color: #000000;
    font-size: 14px;
    letter-spacing: 2px;
    background: #C9A227;
    border-radius: 5px;
    transition:  .3s;
}

.price .price-action a i {
    margin-right: 5px;
}

.price .price-action a:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.price .featured-item .price-action a {
    color: #ffffff;
    background: #0F0F0F;
}

.price .featured-item .price-action a:hover {
    color: #000000;
    background: #C9A227;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    margin: 45px 0;
    padding: 60px 0;
    background: #0F0F0F;
}

.newsletter h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.newsletter p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.newsletter .form {
    position: relative;
}

.newsletter input {
    height: 60px;
    border: none;
    border-radius: 5px;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #C9A227;
    border-radius: 5px;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 150px;
    border: 15px solid #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-content {
    position: relative;
    margin-top: -90px;
    padding: 100px 25px 25px 25px;
    text-align: center;
    background: #C9A227;
    border-radius: 5px;
}

.testimonial .testimonial-item p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.testimonial .testimonial-content h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial .testimonial-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C9A227;
}

.testimonial .owl-dot.active {
    background: #0F0F0F;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.blog .blog-item img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    transition: transform .2s;
}

.blog .blog-item img:hover {
        transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.blog .blog-item h3 {
    margin: 0;
    padding: 25px 30px 5px 30px;
    font-size: 22px;
    font-weight: 300;
    color: #28a745;;
}

.blog .blog-item .meta {
    padding: 0 30px 15px 30px;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    padding: 0 30px;
    font-size: 16px;
}

.blog .blog-item a.btn {
    position: relative;
    margin: 5px 30px 30px 30px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    background: #28a745;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
    background: #28a745;
}

.blog .blog-item a.btn:hover {
    color: #FFFFFF;
    background: #28a745;
}


/*******************************/
/******* Call to Action ********/
/*******************************/
.call-to-action {
    position: relative;
    margin: 45px 0;
    padding: 60px 0;
    background: #0F0F0F;
}

.call-to-action h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.call-to-action a {
    float: right;
    height: 60px;
    padding: 16px 35px 14px 35px;
    font-size: 18px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #C9A227;
    border-radius: 5px;
}

.call-to-action a:hover {
    color: #C9A227;
    background: #ffffff;
}

@media (max-width: 768px) {
    .call-to-action a {
        float: left;
        margin-top: 30px;
    }
}


/*******************************/
/********** Story CSS **********/
/*******************************/
.story {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.story .container {
    max-width: 960px;
}

.story .story-container {
    position: relative;
    width: 100%;
}

.story .story-end,
.story .story-start,
.story .story-year {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.story .story-end p,
.story .story-start p,
.story .story-year p {
    display: inline-block;
    width: 100px;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    background: #C9A227;
    border: 1px solid #0F0F0F;
    border-radius: 5px;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
}

.story .story-year {
    margin: 30px 0;
}

.story .story-continue {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.story .story-continue::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1.5px;
    background: #C9A227;
    border-left: 1px solid #0F0F0F;
    border-right: 1px solid #0F0F0F;
}

.story .row.story-left,
.story .row.story-right .story-date {
    text-align: right;
}

.story .row.story-right,
.story .row.story-left .story-date {
    text-align: left;
}

.story .story-date {
    padding: 0 5px;
    font-size: 14px;
    font-weight: 400;
    margin: 41px 0 0 0;
}

.story .story-date::after {
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 42px;
    background: #C9A227;
    border: 1px solid #0F0F0F;
    border-radius: 15px;
    z-index: 1;
}

.story .row.story-left .story-date::after {
    left: -8.5px;
}

.story .row.story-right .story-date::after {
    right: -8.5px;
}

.story .story-box,
.story .story-launch {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 20px 25px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
}

.story .story-launch {
    width: 100%;
    margin: 15px 0;
    padding: 0;
    border: none;
    text-align: center;
    background: transparent;
}

.story .story-box::after,
.story .story-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.story .row.story-left .story-box::after,
.story .row.story-left .story-box::before {
    left: 100%;
}

.story .row.story-right .story-box::after,
.story .row.story-right .story-box::before {
    right: 100%;
}

.story .story-launch .story-box::after,
.story .story-launch .story-box::before {
    left: 50%;
    margin-left: -10px;
}

.story .story-box::after {
    top: 26px;
    border-color: transparent transparent transparent #ffffff;
    border-width: 10px;
}

.story .story-box::before {
    top: 25px;
    border-color: transparent transparent transparent #dddddd;
    border-width: 11px;
}

.story .row.story-right .story-box::after {
    border-color: transparent #ffffff transparent transparent;
}

.story .row.story-right .story-box::before {
    border-color: transparent #dddddd transparent transparent;
}

.story .story-launch .story-box::after {
    top: -20px;
    border-color: transparent transparent #dddddd transparent;
}

.story .story-launch .story-box::before {
    top: -19px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 10px;
    z-index: 1;
}

.story .story-box .story-text {
    position: relative;
    float: left;
}

.story .story-launch .story-text {
    max-width: 400px;
}

.story .story-text h3 {
    color: #0F0F0F;
    font-size: 18px;
    font-weight: 400;
}

.story .story-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story .story-continue::before {
        left: 48.5px;
    }
    
    .story .story-end,
    .story .story-start,
    .story .story-year,
    .story .row.story-left,
    .story .row.story-right .story-date,
    .story .row.story-right,
    .story .row.story-left .story-date,
    .story .story-launch {
        text-align: left;
    }
    
    .story .story-date {
        padding: 0;
    }
    
    .story .row.story-left .story-date::after,
    .story .row.story-right .story-date::after {
        left: 54.5px;
    }
    
    .story .story-box,
    .story .row.story-right .story-date,
    .story .row.story-left .story-date {
        margin-left: 77px;
    }
    
    .story .story-launch .story-box {
        margin-left: 0;
    }
    
    .story .row.story-left .story-box::after {
        left: -20px;
        border-color: transparent #ffffff transparent transparent;
    }

    .story .row.story-left .story-box::before {
        left: -22px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .story .story-launch .story-box::after,
    .story .story-launch .story-box::before {
        left: 30px;
        margin-left: 0;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 12px 15px;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    background: #C9A227;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #0F0F0F;
    color: #ffffff;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #ffffff;
    overflow: hidden;
    height: 400px;
    position: relative;
    margin: 0; 
}

.portfolio .portfolio-item figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 5px;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 80px;
    height: 80px;
    top: -50px;
    background: #ffffff;
    transition: .3s;
}

.portfolio .portfolio-item figure .link-preview {
    left: -50px;
    border-radius: 0 80px;
}

.portfolio .portfolio-item figure .link-details {
    right: -50px;
    border-radius: 80px 0;
}

.portfolio .portfolio-item figure:hover .link-preview {
    top: 0;
    left: 0;
}

.portfolio .portfolio-item figure:hover .link-details {
    top: 0;
    right: 0;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #0F0F0F;
    padding-top: 25px;
    font-size: 30px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: #0F0F0F;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #ffffff;
}

.portfolio .portfolio-item figure:hover .link-preview,
.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
}

.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    background: #C9A227;
    border-radius: 0 0 5px 5px;
    transition: .3s;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
    background: #0F0F0F;
    color: #ffffff;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .faqs {
    padding: 0;
}

@media(max-width: 767.98px) {
    .contact .faqs {
        margin-bottom: 30px;
    }
}

.contact .contact-form input {
    height: 60px;
    border-radius: 5px;
}

.contact .contact-form .btn {
    height: 60px;
    padding: 0 20px;
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    background: #0F0F0F;
    border-radius: 5px;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #000000;
    background: #C9A227;
}


/*******************************/
/******* Gallerie CSS *******/
/*******************************/
/* Assurez-vous que le conteneur de la galerie occupe toute la largeur disponible */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr)); /* Quatre colonnes avec une largeur minimale de 200px */
    gap: 16px; /* Espacement entre les images */
    justify-content: center;
    padding: 16px; /* Padding autour de la galerie */
  }
  
  /* Style pour chaque Ã©lÃ©ment de la galerie */
  .gallery-item {
    position: relative;
    overflow: hidden; /* Assure que les images ne dÃ©bordent pas du conteneur */
    border-radius: 8px; /* Coins arrondis pour un effet visuel */
  }
  
  /* Style pour les images */
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Assure que les images couvrent bien leur conteneur */
    border-radius: 8px; /* Assure que les images ont des coins arrondis */
  }
  

  /* Pour les Ã©crans trÃ¨s grands (par exemple, les Ã©crans de bureau larges) */
  @media (min-width: 1200px) {
    .gallery-container {
      grid-template-columns: repeat(2, minmax(500px, 1fr)); /* Quatre colonnes avec une largeur minimale de 200px */
    }
  }

  @media (min-width: 1200px) and (max-width: 991px) {
    .gallery-container {
      grid-template-columns: repeat(3, minmax(200px, 1fr)); /* Quatre colonnes avec une largeur minimale de 200px */
    }
  }
  
  /* Pour les Ã©crans grands (comme les Ã©crans de bureau standard ou de 13 pouces en Full HD) */
  @media (min-width: 992px) and (max-width: 1199px) {
    .gallery-container {
      grid-template-columns: repeat(3, minmax(200px, 1fr)); /* Trois colonnes avec une largeur minimale de 200px */
    }
  }
  
  /* Pour les Ã©crans de taille moyenne (tablettes en mode paysage ou petits Ã©crans de bureau) */
  @media (min-width: 768px) and (max-width: 991px) {
    .gallery-container {
      grid-template-columns: repeat(2, minmax(200px, 1fr)); /* Deux colonnes avec une largeur minimale de 200px */
    }
  }
  
  /* Pour les Ã©crans de petite taille (tablettes en mode portrait ou petits Ã©crans de smartphone) */
  @media (max-width: 767px) {
    .gallery-container {
      grid-template-columns: repeat(2, minmax(200px, 1fr)); /* Deux colonnes avec une largeur minimale de 200px */
    }
  }
  
  /* Pour les trÃ¨s petits Ã©crans (smartphones en mode portrait) */
  @media (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr; /* Une colonne */
    }
  }
  
  
  


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    background: #0F0F0F;
    color: #ffffff;
    font-weight: 300;
    padding-top: 40px;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-form {
    position: relative;
    margin-bottom: 45px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-form h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    color: #C9A227;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer .footer-contact p {
    font-size: 14px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 25px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 25px;
    color: #ffffff;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #C9A227;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    
}

.footer .footer-link a::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #C9A227;
}

.footer .footer-form input {
    height: 45px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
}

.footer .footer-form .btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 14px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #C9A227;
    border-radius: 5px;
    transition: .3s;
}

.footer .footer-form .btn:hover {
    color: #ffffff;
    background: #0F0F0F;
}

.footer .footer-menu {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu {
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu .f-menu a:hover {
    color: #C9A227;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright p {
    margin: 0;
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}


.colmd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    vertical-align: middle;
}


.col-12 {
    margin-bottom: 100px;
}




.footer .copyright p a {
    color: #C9A227;
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}



@media (max-width: 767.98px) {
    .contact-page .hero {
        display: none;
    }
}

