
/* =========================================================
   BLUE BUTTON AT TOP
   ========================================================= */
/* Request Quote Button */
.request-quote-btn {
    display: inline-block;
    background: #0066b3;
    color: #ffffff !important;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    line-height: 1.4;
    margin-left: 25px;
    white-space: nowrap;
    border: 1px solid #0066b3;
    transition: all 0.3s ease;
}

.request-quote-btn:hover {
    background: #004f8c;
    border-color: #004f8c;
    color: #ffffff !important;
}

/* Keep button on the right */
.navbar-collapse {
    align-items: center;
}

.request-quote-btn {
    margin-left: auto;
}

/* Mobile */
@media (max-width: 1199px) {

    .request-quote-btn {
        display: block;
        width: fit-content;
        margin: 15px 0 10px auto;
        padding: 8px 18px;
        font-size: 12px;
    }

}


/* =========================================================
   BULEME COMPANY SARL
   HOME PAGE HERO SECTION
   ========================================================= */
html,
body {
    background-color: #f5f6f7;
    margin: 0;
    padding: 0;
}

.buleme-presentation-section {
    background-color: #f5f6f7;
}
.buleme-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #071d35;
}


/* ---------------------------------------------------------
   Hero Image
   --------------------------------------------------------- */

.buleme-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.buleme-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ---------------------------------------------------------
   Dark Overlay
   --------------------------------------------------------- */

.buleme-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 27, 54, 0.92) 0%,
            rgba(4, 27, 54, 0.78) 35%,
            rgba(4, 27, 54, 0.35) 65%,
            rgba(4, 27, 54, 0.10) 100%
        );
}


/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */

.buleme-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}


/* ---------------------------------------------------------
   Hero Content
   --------------------------------------------------------- */

.buleme-hero-content {
    max-width: 680px;
    padding-top: 20px;
}


/* ---------------------------------------------------------
   Hero Title
   --------------------------------------------------------- */

.buleme-hero-title {
    margin: 0 0 20px 0;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: -0.5px;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   Hero Description
   --------------------------------------------------------- */

.buleme-hero-description {
    max-width: 600px;

    color: #ffffff !important;

    font-size: 16px;
    line-height: 1.7;

    margin-bottom: 30px;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.buleme-hero-description p {
    color: #ffffff !important;
}

/* ---------------------------------------------------------
   Hero Buttons
   --------------------------------------------------------- */

.buleme-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* Primary Button */

.buleme-btn-primary {
    display: inline-flex;
    align-items: center;

    padding: 12px 22px;

    background: #0066cc;
    color: #ffffff !important;

    border: 1px solid #0066cc;
    border-radius: 3px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.buleme-btn-primary:hover {
    background: #004f9e;
    border-color: #004f9e;

    transform: translateY(-2px);
}


/* Secondary Button */

.buleme-btn-secondary {
    display: inline-flex;
    align-items: center;

    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff !important;

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 3px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.buleme-btn-secondary:hover {
    background: #ffffff;
    color: #071d35 !important;

    border-color: #ffffff;

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   Mobile Responsive
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .buleme-hero {
        height: 550px;
    }

    .buleme-hero-title {
        font-size: 40px;
    }

    .buleme-hero-description {
        font-size: 15px;
    }

}


/* ---------------------------------------------------------
   Tablet / Small Devices
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .buleme-hero {
        height: 520px;
    }

    .buleme-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 27, 54, 0.90) 0%,
                rgba(4, 27, 54, 0.70) 100%
            );
    }

    .buleme-hero-title {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 15px;
    }

    .buleme-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

}


/* ---------------------------------------------------------
   Mobile Phones
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .buleme-hero {
        height: 580px;
    }

    .buleme-hero-content {
        padding: 20px 10px;
    }

    .buleme-hero-title {
        font-size: 29px;
    }

    .buleme-hero-description {
        font-size: 14px;
    }

    .buleme-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .buleme-btn-primary,
    .buleme-btn-secondary {
        width: auto;
        min-width: 160px;
        justify-content: center;
    }

}
/* =========================================================
   BULEME COMPANY SARL
   PRESENTATION SECTION
   ========================================================= */

.buleme-presentation-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.buleme-presentation-content {
    padding-right: 35px;
}


/* Small section label */

.buleme-section-label {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: #0b4f9c;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.buleme-section-label span {
    display: inline-block;

    width: 28px;
    height: 3px;

    background: #dcae28;
}


/* Presentation Title */

.buleme-presentation-title {
    margin: 0 0 20px 0;

    color: #12345a;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;
}


/* Presentation Text */

.buleme-presentation-text {
    color: #555555;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.buleme-presentation-text p {
    margin-bottom: 12px;
}


/* =========================================================
   VISION / MISSION
   ========================================================= */

.buleme-vision-mission {
    margin-top: 15px;
}


.buleme-info-box {
    position: relative;

    padding: 0 20px 0 0;

    margin-bottom: 25px;
}


/* Icon */

.buleme-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 10px;

    background: #0b5fae;

    color: #ffffff;

    border-radius: 50%;

    font-size: 15px;
}


/* Vision / Mission title */

.buleme-info-box h3 {
    margin: 0 0 8px 0;

    color: #12345a;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;
}


/* Vision / Mission text */

.buleme-info-text {
    color: #666666;

    font-size: 13px;
    line-height: 1.65;
}

.buleme-info-text p {
    margin: 0 0 8px 0;
}


/* =========================================================
   PRESENTATION IMAGE
   ========================================================= */

.buleme-presentation-image {
    position: relative;

    margin-left: 20px;

    overflow: visible;
}


.buleme-presentation-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 0;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   LOCAL COMMITMENT BADGE
   ========================================================= */

.buleme-local-badge {
    position: absolute;

    right: -8px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 78px;

    padding: 8px;

    background: #0065b3;

    color: #ffffff;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}


.buleme-local-badge strong {
    display: block;

    font-size: 22px;
    line-height: 1;

    font-weight: 800;
}


.buleme-local-badge span {
    display: block;

    margin-top: 5px;

    font-size: 8px;
    line-height: 1.2;

    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   IMAGE DECORATION
   ========================================================= */

.buleme-presentation-image::before {
    content: "";

    position: absolute;

    top: -12px;
    right: -12px;

    width: 90px;
    height: 90px;

    border-top: 4px solid #dcae28;
    border-right: 4px solid #dcae28;

    z-index: -1;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-presentation-section {
        padding: 70px 0;
    }

    .buleme-presentation-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .buleme-presentation-title {
        font-size: 34px;
    }

    .buleme-presentation-image {
        margin-left: 0;
    }

    .buleme-presentation-image img {
        height: 450px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-presentation-section {
        padding: 55px 0;
    }

    .buleme-presentation-title {
        font-size: 30px;
    }

    .buleme-presentation-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .buleme-info-box {
        padding-right: 10px;
    }

    .buleme-presentation-image img {
        height: 350px;
    }

    .buleme-local-badge {
        right: 0;
        bottom: 15px;

        width: 95px;
        height: 70px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .buleme-presentation-section {
        padding: 45px 0;
    }

    .buleme-presentation-title {
        font-size: 27px;
    }

    .buleme-section-label {
        font-size: 11px;
    }

    .buleme-presentation-image img {
        height: 300px;
    }

    .buleme-vision-mission {
        margin-top: 10px;
    }

}
/* =========================================================
   BULEME COMPANY SARL
   SERVICES / AREAS OF ACTIVITY
   ========================================================= */

.buleme-services-section {
    position: relative;

    width: 100%;

    padding: 85px 0 95px;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.buleme-services-header {
    margin-bottom: 38px;
}


/* Small Gold Label */

.buleme-services-label {
    display: inline-block;

    padding: 4px 9px;

    margin-bottom: 9px;

    background: #dcae28;

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* Main Title */

.buleme-services-heading h2 {
    margin: 0;

    color: #122b4a;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 800;

    text-transform: uppercase;
}


/* Blue Line */

.buleme-heading-line {
    width: 42px;
    height: 3px;

    margin-top: 11px;

    background: #0967b2;
}


/* Intro Description */

.buleme-services-intro {
    max-width: 500px;

    margin-left: auto;

    color: #6a6a6a;

    font-size: 12px;

    line-height: 1.6;

    text-align: left;
}

.buleme-services-intro p {
    margin-bottom: 0;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.buleme-services-grid {
    margin-left: -8px;
    margin-right: -8px;
}


.buleme-services-grid > div {
    padding-left: 8px;
    padding-right: 8px;

    margin-bottom: 18px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.buleme-service-card {
    position: relative;

    height: 100%;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.buleme-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.buleme-service-image {
    position: relative;

    width: 100%;

    height: 155px;

    overflow: hidden;

    background: #d9dde1;
}


.buleme-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}


.buleme-service-card:hover .buleme-service-image img {
    transform: scale(1.05);
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.buleme-service-icon {
    position: absolute;
    left: 10px;
    bottom: 0;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0867b2;
    color: #ffffff;

    font-size: 15px;

    z-index: 5;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.20);
}

.buleme-service-icon i {
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.buleme-service-content {
    padding: 13px 14px 17px;

    min-height: 105px;
}


/* Service Title */

.buleme-service-content h3 {
    margin: 0 0 7px;

    color: #162e4c;

    font-size: 13px;

    line-height: 1.15;

    font-weight: 800;

    text-transform: uppercase;
}


/* Description */

.buleme-service-description {
    color: #777777;

    font-size: 10px;

    line-height: 1.55;
}


.buleme-service-description p {
    margin: 0;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-services-section {
        padding: 70px 0 75px;
    }

    .buleme-services-header {
        margin-bottom: 32px;
    }

    .buleme-services-heading h2 {
        font-size: 27px;
    }

    .buleme-services-intro {
        margin-top: 15px;
    }

    .buleme-service-image {
        height: 170px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-services-section {
        padding: 55px 0 60px;
    }

    .buleme-services-header {
        margin-bottom: 28px;
    }

    .buleme-services-heading h2 {
        font-size: 25px;
    }

    .buleme-services-intro {
        margin-left: 0;
        margin-top: 18px;
        max-width: 100%;
    }

    .buleme-services-grid {
        margin-left: -7px;
        margin-right: -7px;
    }

    .buleme-services-grid > div {
        padding-left: 7px;
        padding-right: 7px;

        margin-bottom: 15px;
    }

    .buleme-service-image {
        height: 190px;
    }

    .buleme-service-content {
        min-height: 110px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-services-section {
        padding: 45px 0 50px;
    }

    .buleme-services-heading h2 {
        font-size: 23px;
    }

    .buleme-service-image {
        height: 210px;
    }

    .buleme-service-content {
        padding: 14px 15px 18px;
    }

    .buleme-service-content h3 {
        font-size: 14px;
    }

    .buleme-service-description {
        font-size: 11px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .buleme-service-image {
        height: 190px;
    }

}

 /* =========================================================
    BULEME COMPANY SARL
    OPERATIONAL CAPABILITIES & INTERNAL ORGANIZATION
    TYPOGRAPHY MATCHED TO EXISTING HOME PAGE
    ========================================================= */


.buleme-capabilities-section li,
.buleme-capabilities-section span {
    font-family: "Poppins", sans-serif;
    /*font-size: 17px;*/
}

.buleme-capabilities-section {
    position: relative;
    width: 100%;
    padding: 85px 0 95px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   MAIN COLUMNS
   ========================================================= */

.buleme-capabilities-left {
    padding-right: 35px;
}

.buleme-organization-right {
    padding-left: 10px;
}


/* =========================================================
   SECTION TITLES
   Matches existing Services heading typography
   ========================================================= */

.buleme-capabilities-title,
.buleme-organization-title {
    position: relative;

    margin: 0 0 20px 0;

    color: #122b4a;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}


/* Blue vertical accent */

.buleme-capabilities-title::before,
.buleme-organization-title::before {
    content: "";

    display: inline-block;

    width: 3px;
    height: 27px;

    margin-right: 10px;

    vertical-align: -4px;

    background: #0066b3;
}


/* =========================================================
   MAIN DESCRIPTION
   Matches existing presentation/service typography
   ========================================================= */

.buleme-capabilities-description {
    margin-bottom: 30px;
     font-family: "Oswald", sans-serif;
    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BULLET LIST
   ========================================================= */

.buleme-capability-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


.buleme-capability-list li {
    display: flex;

    align-items: flex-start;

    margin-bottom: 10px;

    color: #666666;
     font-family: "Oswald", sans-serif;
    font-size: 13px;
    line-height: 1.65;
}


.buleme-capability-list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BULLET ICON
   ========================================================= */

.buleme-list-icon {
    flex: 0 0 14px;

    width: 14px;
    height: 14px;

    margin-right: 9px;
    margin-top: 3px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dcae28;

    border-radius: 50%;

    color: #0066b3;

    font-size: 6px;
}


.buleme-list-icon i {
    line-height: 1;
}


.buleme-list-text {
    flex: 1;
}


/* =========================================================
   STRATEGIC ASSETS BOX
   ========================================================= */

.buleme-strategic-box {
    position: relative;

    display: flex;

    margin-top: 30px;

    background: #f1f3f5;

    min-height: 155px;
}


/* Blue vertical border */

.buleme-strategic-border {
    flex: 0 0 3px;

    width: 3px;

    background: #0066b3;
}


/* Box content */

.buleme-strategic-content {
    padding: 22px 25px;
}


/* Strategic Assets Title */

.buleme-strategic-title {
    margin: 0 0 14px 0;

    color: #12345a;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;
}


/* Strategic list */

.buleme-strategic-content .buleme-capability-list li {
    margin-bottom: 9px;

    color: #666666;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   INTERNAL ORGANIZATION
   ========================================================= */

.buleme-organization-title {
    margin-bottom: 25px;
}


/* =========================================================
   DEPARTMENTS GRID
   ========================================================= */

.buleme-departments {
    margin-left: -8px;
    margin-right: -8px;
}


.buleme-departments > div {
    padding-left: 8px;
    padding-right: 8px;

    margin-bottom: 25px;
}


/* =========================================================
   DEPARTMENT
   ========================================================= */

.buleme-department {
    min-height: 85px;
}


/* Department heading */

.buleme-department h3 {
    display: flex;

    align-items: center;

    margin: 0 0 10px 0;

    color: #12345a;

    font-size: 13px;

    line-height: 1.25;

    font-weight: 800;

    text-transform: uppercase;
}


/* Small blue line */

.buleme-department-line {
    display: inline-block;

    flex: 0 0 3px;

    width: 3px;
    height: 16px;

    margin-right: 8px;

    background: #0066b3;
}


/* Department descriptions */

.buleme-department .buleme-capability-list li {
    margin-bottom: 6px;

    color: #666666;

    font-size: 11px;

    line-height: 1.55;
}


.buleme-department .buleme-list-icon {
    flex: 0 0 11px;

    width: 11px;
    height: 11px;

    margin-right: 6px;
    margin-top: 3px;

    font-size: 5px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.buleme-capabilities-image {
    position: relative;

    width: 100%;

    margin-top: 5px;

    overflow: hidden;

    background: #e5e8eb;
}


.buleme-capabilities-image img {
    display: block;

    width: 100%;

    height: 220px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}


.buleme-capabilities-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   IMAGE BLUE ACCENT
   ========================================================= */

.buleme-capabilities-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 50px;
    height: 3px;

    background: #0066b3;

    z-index: 2;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-capabilities-section {
        padding: 70px 0 75px;
    }


    .buleme-capabilities-left {
        padding-right: 0;

        margin-bottom: 50px;
    }


    .buleme-organization-right {
        padding-left: 0;
    }


    .buleme-capabilities-title,
    .buleme-organization-title {
        font-size: 27px;
    }


    .buleme-capabilities-description {
        font-size: 14px;
    }


    .buleme-capabilities-image img {
        height: 300px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-capabilities-section {
        padding: 55px 0 60px;
    }


    .buleme-capabilities-left {
        margin-bottom: 45px;
    }


    .buleme-capabilities-title,
    .buleme-organization-title {
        font-size: 25px;

        margin-bottom: 18px;
    }


    .buleme-capabilities-title::before,
    .buleme-organization-title::before {
        height: 23px;

        width: 3px;

        margin-right: 8px;

        vertical-align: -3px;
    }


    .buleme-capabilities-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .buleme-capability-list li {
        font-size: 12px;

        line-height: 1.6;

        margin-bottom: 9px;
    }


    .buleme-strategic-box {
        margin-top: 25px;
    }


    .buleme-strategic-content {
        padding: 20px;
    }


    .buleme-strategic-title {
        font-size: 14px;
    }


    .buleme-strategic-content .buleme-capability-list li {
        font-size: 11px;
    }


    .buleme-departments {
        margin-left: -7px;
        margin-right: -7px;
    }


    .buleme-departments > div {
        padding-left: 7px;
        padding-right: 7px;

        margin-bottom: 25px;
    }


    .buleme-department h3 {
        font-size: 12px;
    }


    .buleme-department .buleme-capability-list li {
        font-size: 10px;

        line-height: 1.5;
    }


    .buleme-capabilities-image img {
        height: 250px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-capabilities-section {
        padding: 45px 0 50px;
    }


    .buleme-capabilities-title,
    .buleme-organization-title {
        font-size: 23px;
    }


    .buleme-capabilities-description {
        font-size: 13px;
    }


    .buleme-capability-list li {
        font-size: 11px;
    }


    .buleme-strategic-content {
        padding: 18px;
    }


    .buleme-strategic-title {
        font-size: 13px;
    }


    .buleme-strategic-content .buleme-capability-list li {
        font-size: 10px;
    }


    .buleme-department h3 {
        font-size: 11px;
    }


    .buleme-department .buleme-capability-list li {
        font-size: 9px;
    }


    .buleme-capabilities-image img {
        height: 220px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .buleme-capabilities-title,
    .buleme-organization-title {
        font-size: 21px;
    }


    .buleme-capabilities-description {
        font-size: 12px;
    }


    .buleme-capability-list li {
        font-size: 10px;
    }


    .buleme-department h3 {
        font-size: 10px;
    }


    .buleme-department .buleme-capability-list li {
        font-size: 8.5px;
    }


    .buleme-capabilities-image img {
        height: 200px;
    }

}
/* =========================================================
   BULEME COMPANY SARL
   CORE VALUES & QUALITY COMMITMENT SECTION
   ========================================================= */

.buleme-values-section {
    position: relative;
    width: 100%;

    padding: 75px 0 80px;

    background: #032b55;

    color: #ffffff;

    /* Use the same font as the existing website */
    font-family: inherit;

    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.buleme-values-header {
    width: 100%;
    max-width: 800px;

    margin: 0 auto 30px;

    text-align: center;
}


.buleme-values-title {
    position: relative;

    margin: 0 0 14px;

    color: #ffffff;

    font-family: inherit;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0;
}


/* Gold line underneath the main heading */

.buleme-values-title::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin: 12px auto 0;

    background: #dcae28;
}


.buleme-values-intro {
    color: #d5dce4;

    font-family: inherit;

    font-size: 10px;

    line-height: 1.6;
}


.buleme-values-intro p {
    margin: 0;
}


/* =========================================================
   VALUES GRID
   IMPORTANT:
   FLEX + STRETCH CREATES EQUAL HEIGHT CARDS
   ========================================================= */

.buleme-values-grid {
    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -6px;
    margin-right: -6px;
}


.buleme-values-grid > div {
    display: flex;

    padding-left: 6px;
    padding-right: 6px;

    margin-bottom: 12px;
}


/* =========================================================
   VALUE CARD
   All cards automatically take the height of the
   tallest card in the row.
   ========================================================= */

.buleme-value-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    height: 100%;

    min-height: 126px;

    padding: 14px 13px;

    box-sizing: border-box;

    background: #8799ad;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.08);

    font-family: inherit;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* Card hover */

.buleme-value-card:hover {
    transform: translateY(-3px);

    background: #91a2b5;
}


/* =========================================================
   VALUE ICON
   ========================================================= */

.buleme-value-icon {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin-bottom: 7px;

    color: #dcae28;

    font-family: inherit;

    font-size: 11px;

    line-height: 1;
}


/* =========================================================
   VALUE TITLE
   ========================================================= */

.buleme-value-card h3 {
    flex: 0 0 auto;

    margin: 0 0 6px;

    color: #ffffff;

    font-family: inherit;

    font-size: 10px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   VALUE DESCRIPTION
   flex-grow makes the content area fill the card
   ========================================================= */

.buleme-value-description {
    flex: 1 1 auto;

    color: #e9edf1;

    font-family: inherit;

    font-size: 8px;

    line-height: 1.45;
}


.buleme-value-description p {
    margin: 0 0 3px;
}


.buleme-value-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUALITY COMMITMENT AREA
   ========================================================= */

.buleme-quality-row {
    margin-top: 35px;
}


/* =========================================================
   QUALITY CONTENT
   ========================================================= */

.buleme-quality-content {
    padding-right: 35px;
}


/* =========================================================
   QUALITY TITLE
   ========================================================= */

.buleme-quality-title {
    position: relative;

    margin: 0 0 15px;

    padding-left: 12px;

    color: #ffffff;

    font-family: inherit;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 800;

    text-transform: uppercase;
}


/* Gold vertical accent */

.buleme-quality-title::before {
    content: "";

    position: absolute;

    top: 2px;
    left: 0;

    width: 3px;
    height: 17px;

    background: #dcae28;
}


/* =========================================================
   QUALITY DESCRIPTION
   ========================================================= */

.buleme-quality-description {
    max-width: 540px;

    color: #d9e0e7;

    font-family: inherit;

    font-size: 10px;

    line-height: 1.6;
}


.buleme-quality-description p {
    margin: 0 0 7px;
}


.buleme-quality-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   REPORTING BOX
   ========================================================= */

.buleme-reporting-box {
    display: flex;

    align-items: center;

    max-width: 430px;

    margin-top: 18px;

    padding: 10px 13px;

    background: rgba(255,255,255,0.035);

    border-left: 3px solid #dcae28;
}


/* =========================================================
   REPORTING ICON
   ========================================================= */

.buleme-reporting-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    margin-right: 12px;

    color: #dcae28;

    font-size: 16px;

    line-height: 1;
}


/* =========================================================
   REPORTING CONTENT
   ========================================================= */

.buleme-reporting-content {
    color: #cbd4dd;

    font-family: inherit;

    font-size: 8px;

    line-height: 1.45;
}


.buleme-reporting-content h3 {
    margin: 0 0 3px;

    color: #ffffff;

    font-family: inherit;

    font-size: 9px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-reporting-content p {
    margin: 0;
}


/* =========================================================
   QUALITY IMAGE
   ========================================================= */

.buleme-quality-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;
}


.buleme-quality-image img {
    display: block;

    width: 100%;

    height: 215px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}


.buleme-quality-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   IMAGE TOP ACCENT
   ========================================================= */

.buleme-quality-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 45px;
    height: 3px;

    background: #dcae28;

    z-index: 2;
}


/* =========================================================
   LARGE TABLETS
   ========================================================= */

@media (max-width: 1199px) {

    .buleme-value-card {
        min-height: 130px;
    }

}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-values-section {
        padding: 65px 0 70px;
    }


    .buleme-values-title {
        font-size: 27px;
    }


    .buleme-quality-content {
        padding-right: 0;

        margin-bottom: 30px;
    }


    .buleme-quality-image img {
        height: 300px;
    }


    /*
     * On tablets Bootstrap uses two cards per row.
     * Flex stretch keeps the two cards in each row equal.
     */

    .buleme-values-grid > div {
        display: flex;
    }


    .buleme-value-card {
        height: 100%;

        min-height: 135px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-values-section {
        padding: 55px 0 60px;
    }


    .buleme-values-title {
        font-size: 25px;
    }


    .buleme-values-intro {
        font-size: 10px;
    }


    /* Keep equal-height cards on each mobile row */

    .buleme-values-grid {
        display: flex;

        flex-wrap: wrap;

        align-items: stretch;
    }


    .buleme-values-grid > div {
        display: flex;

        margin-bottom: 10px;
    }


    .buleme-value-card {
        width: 100%;

        height: 100%;

        min-height: 135px;

        padding: 13px 11px;
    }


    .buleme-value-icon {
        font-size: 10px;

        margin-bottom: 6px;
    }


    .buleme-value-card h3 {
        font-size: 9px;
    }


    .buleme-value-description {
        font-size: 8px;
    }


    .buleme-quality-row {
        margin-top: 30px;
    }


    .buleme-quality-content {
        margin-bottom: 25px;
    }


    .buleme-quality-title {
        font-size: 16px;
    }


    .buleme-quality-description {
        font-size: 10px;
    }


    .buleme-quality-image img {
        height: 250px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-values-section {
        padding: 45px 0 50px;
    }


    .buleme-values-title {
        font-size: 22px;
    }


    .buleme-values-intro {
        font-size: 9px;
    }


    /* Two equal cards per row */

    .buleme-values-grid {
        display: flex;

        flex-wrap: wrap;

        align-items: stretch;
    }


    .buleme-values-grid > div {
        display: flex;

        padding-left: 5px;
        padding-right: 5px;

        margin-bottom: 10px;
    }


    .buleme-value-card {
        width: 100%;

        height: 100%;

        min-height: 125px;

        padding: 11px 10px;
    }


    .buleme-value-icon {
        width: 17px;
        height: 17px;

        font-size: 10px;

        margin-bottom: 5px;
    }


    .buleme-value-card h3 {
        font-size: 8px;

        line-height: 1.25;
    }


    .buleme-value-description {
        font-size: 7px;

        line-height: 1.4;
    }


    .buleme-quality-title {
        font-size: 15px;
    }


    .buleme-quality-description {
        font-size: 9px;
    }


    .buleme-reporting-box {
        padding: 9px 10px;
    }


    .buleme-quality-image img {
        height: 220px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .buleme-values-title {
        font-size: 21px;
    }


    .buleme-values-intro {
        font-size: 8.5px;
    }


    .buleme-value-card {
        min-height: 120px;

        padding: 10px 9px;
    }


    .buleme-value-icon {
        font-size: 9px;
    }


    .buleme-value-card h3 {
        font-size: 7.5px;
    }


    .buleme-value-description {
        font-size: 6.8px;

        line-height: 1.4;
    }


    .buleme-quality-title {
        font-size: 14px;
    }


    .buleme-quality-description {
        font-size: 8.5px;
    }


    .buleme-quality-image img {
        height: 200px;
    }

}
.buleme-values-section p {
    color: #ffffff !important;
}
/* =========================================================
   BULEME COMPANY SARL
   CALL TO ACTION / CONTACT SECTION
   ========================================================= */

.buleme-cta-section {
    position: relative;
    width: 100%;

    padding: 55px 0 60px;

    background: #ffffff;

    color: #122b4a;

    font-family: inherit;
}


/* =========================================================
   CTA BOX
   ========================================================= */

.buleme-cta-box {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 35px 45px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    box-sizing: border-box;
}


/* =========================================================
   TITLE
   ========================================================= */

.buleme-cta-title {
    margin: 0 0 13px;

    color: #122b4a;

    font-family: inherit;

    font-size: 24px;

    line-height: 1.25;

    font-weight: 800;

    text-transform: uppercase;
}


/* Gold accent line */

.buleme-cta-title::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin: 10px auto 0;

    background: #dcae28;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.buleme-cta-description {
    max-width: 650px;

    margin: 0 auto 20px;

    color: #777777;

    font-family: inherit;

    font-size: 10px;

    line-height: 1.65;
}


.buleme-cta-description p {
    margin: 0;

    color: #777777 !important;
}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.buleme-cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 28px;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.buleme-cta-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 155px;

    min-height: 42px;

    padding: 12px 20px;

    background: #0066b3;

    border: 1px solid #0066b3;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: none !important;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.buleme-cta-primary:hover {
    background: #004f8c;

    border-color: #004f8c;

    color: #ffffff !important;
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.buleme-cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 155px;

    min-height: 42px;

    padding: 12px 20px;

    background: #ffffff;

    border: 1px solid #dcdcdc;

    color: #555555 !important;

    font-family: inherit;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: none !important;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.buleme-cta-secondary:hover {
    background: #f5f7f9;

    border-color: #0066b3;

    color: #0066b3 !important;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.buleme-cta-contact {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 80px;

    padding-top: 20px;

    border-top: 1px solid #f1f1f1;
}


/* =========================================================
   CONTACT ITEM
   ========================================================= */

.buleme-cta-contact-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    min-width: 150px;
}


/* =========================================================
   CONTACT LABEL
   ========================================================= */

.buleme-cta-contact-label {
    display: block;

    margin-bottom: 6px;

    color: #0066b3;

    font-family: inherit;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   EMAIL AND PHONE VALUES
   ========================================================= */

.buleme-cta-contact-value {
    display: inline-block;

    color: red !important;

    font-family: inherit;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none !important;

    white-space: nowrap;
}


.buleme-cta-contact-value:hover {
    color: #0066b3 !important;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-cta-section {
        padding: 50px 0 55px;
    }


    .buleme-cta-box {
        padding: 32px 35px 28px;
    }


    .buleme-cta-title {
        font-size: 22px;
    }


    .buleme-cta-primary,
    .buleme-cta-secondary {
        min-width: 150px;

        min-height: 42px;

        padding: 11px 18px;

        font-size: 10px;
    }


    .buleme-cta-contact {
        gap: 65px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-cta-section {
        padding: 45px 0 50px;
    }


    .buleme-cta-box {
        padding: 28px 20px 25px;
    }


    .buleme-cta-title {
        font-size: 20px;
    }


    .buleme-cta-description {
        font-size: 9px;

        line-height: 1.6;
    }


    .buleme-cta-buttons {
        flex-wrap: wrap;

        gap: 8px;

        margin-bottom: 24px;
    }


    .buleme-cta-primary,
    .buleme-cta-secondary {
        min-width: 145px;

        min-height: 40px;

        padding: 11px 17px;

        font-size: 9px;
    }


    .buleme-cta-contact {
        gap: 35px;
    }


    .buleme-cta-contact-label {
        font-size: 8px;
    }


    .buleme-cta-contact-value {
        font-size: 9px;

        white-space: normal;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-cta-section {
        padding: 40px 0 45px;
    }


    .buleme-cta-box {
        padding: 25px 15px 22px;
    }


    .buleme-cta-title {
        font-size: 18px;
    }


    .buleme-cta-description {
        font-size: 8px;

        margin-bottom: 18px;
    }


    .buleme-cta-buttons {
        width: 100%;

        flex-direction: column;

        gap: 8px;
    }


    .buleme-cta-primary,
    .buleme-cta-secondary {
        width: 100%;

        max-width: 220px;

        min-height: 42px;

        padding: 11px 17px;

        font-size: 9px;
    }


    .buleme-cta-contact {
        gap: 20px;

        flex-wrap: wrap;
    }


    .buleme-cta-contact-item {
        min-width: 110px;
    }


    .buleme-cta-contact-label {
        font-size: 8px;
    }


    .buleme-cta-contact-value {
        font-size: 9px;

        white-space: normal;

        word-break: break-word;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .buleme-cta-title {
        font-size: 17px;
    }


    .buleme-cta-description {
        font-size: 8px;
    }


    .buleme-cta-primary,
    .buleme-cta-secondary {
        max-width: 210px;

        min-height: 40px;

        font-size: 8.5px;
    }


    .buleme-cta-contact {
        gap: 15px;
    }


    .buleme-cta-contact-label {
        font-size: 7.5px;
    }


    .buleme-cta-contact-value {
        font-size: 8.5px;
    }

}
/* =========================================================
   BULEME COMPANY SARL
   COMPLETE ABOUT US PAGE
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.buleme-about-page {
    width: 100%;

    font-family: inherit;

    color: #122b4a;

    overflow: hidden;
}


.buleme-about-page p {
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   HERO
   ========================================================= */

.buleme-about-hero {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #062d52;
}


.buleme-about-hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.buleme-about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.buleme-about-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 37, 70, 0.95) 0%,
            rgba(3, 37, 70, 0.82) 45%,
            rgba(3, 37, 70, 0.30) 100%
        );
}


.buleme-about-hero .container {
    position: relative;

    z-index: 2;
}


.buleme-about-hero-content {
    max-width: 650px;

    padding: 90px 0;
}


.buleme-about-eyebrow,
.buleme-section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #dcae28;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.buleme-about-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 52px;

    line-height: 1.05;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-about-hero h1::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-top: 18px;

    background: #dcae28;
}


.buleme-about-hero-content p {
    max-width: 570px;

    margin: 0 0 25px;

    color: #e1e8ef !important;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.buleme-about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;

    min-height: 42px;

    padding: 11px 20px;

   font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 800;

    line-height: 1;

    text-decoration: none !important;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.buleme-about-btn-primary {
    background: #0066b3;

    border: 1px solid #0066b3;

    color: #ffffff !important;
}


.buleme-about-btn-primary:hover {
    background: #dcae28;

    border-color: #dcae28;

    color: #122b4a !important;

    transform: translateY(-2px);
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.buleme-about-intro {
    padding: 90px 0;

    background: #ffffff;
}


.buleme-about-intro-content {
    padding-right: 45px;
}


.buleme-about-intro h2,
.buleme-about-advantages h2,
.buleme-about-commitment h2 {
    margin: 0 0 18px;

    color: #122b4a;

   font-family: "Oswald", sans-serif;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-about-text {
    color: #666666;

    font-size: 15px;

    line-height: 1.75;
}


.buleme-about-text p {
    margin: 0 0 12px;

    color: #666666 !important;
}


.buleme-about-image-wrapper {
    position: relative;

    overflow: hidden;

    min-height: 370px;

    background: #eef2f5;
}


.buleme-about-image-wrapper img {
    display: block;

    width: 100%;
    height: 370px;

    object-fit: cover;
}


.buleme-about-image-badge {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;

    flex-direction: column;

    padding: 17px 23px;

    background: #0066b3;

    color: #ffffff;
}


.buleme-about-image-badge strong {
    font-size: 21px;

    line-height: 1;

    font-weight: 800;
}


.buleme-about-image-badge span {
    margin-top: 5px;

    font-size: 14px;

    color: #e4edf5;
}


/* =========================================================
   VISION / MISSION
   ========================================================= */

.buleme-about-vision {
    background: #062e54;
}


.buleme-about-vm-card {
    position: relative;

    min-height: 310px;

    padding: 55px 60px;
}


.buleme-vision-card {
    background: #062e54;

    color: #ffffff;
}


.buleme-mission-card {
    background: #0066b3;

    color: #ffffff;
}


.buleme-vm-number {
    position: absolute;

    top: 25px;
    right: 35px;

    color: rgba(255,255,255,0.12);

    font-size: 55px;

    line-height: 1;

    font-weight: 800;
}


.buleme-about-vm-card .buleme-section-label {
    color: #dcae28;
}


.buleme-about-vm-card h2 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-about-vm-card p {
    max-width: 500px;

    margin: 0;

    color: #dfe8f0 !important;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MISSION LIST
   ========================================================= */

.buleme-check-list {
    padding: 0;

    margin: 0;

    list-style: none;
}


.buleme-check-list li {
    position: relative;

    margin-bottom: 10px;

    padding-left: 22px;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.5;
}


.buleme-check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #dcae28;

    font-weight: 800;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.buleme-about-capabilities {
    padding: 90px 0;

    background: #f5f7f9;
}


.buleme-centered-heading {
    max-width: 680px;

    margin: 0 auto 40px;

    text-align: center;
}


.buleme-centered-heading h2 {
    margin: 0 0 15px;

    color: #122b4a;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-centered-heading p {
    margin: 0;

    color: #777777 !important;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   CAPABILITY CARDS
   ========================================================= */

.buleme-capability-grid {
    display: flex;

    align-items: stretch;
}


.buleme-capability-grid > div {
    display: flex;

    margin-bottom: 20px;
}


.buleme-capability-card {
    position: relative;

    width: 100%;

    min-height: 190px;

    padding: 28px 23px;

    background: #ffffff;

    border-top: 3px solid #0066b3;

    box-shadow: 0 8px 25px rgba(10,40,70,0.06);

    transition: all 0.3s ease;
}


.buleme-capability-card:hover {
    transform: translateY(-7px);

    border-top-color: #dcae28;

    box-shadow: 0 15px 35px rgba(10,40,70,0.12);
}


.buleme-card-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #e8edf2;

    font-size: 27px;

    line-height: 1;

    font-weight: 800;
}


.buleme-capability-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 22px;

    background: #0066b3;
}


.buleme-capability-icon span {
    width: 10px;
    height: 10px;

    border: 2px solid #dcae28;

    transform: rotate(45deg);
}


.buleme-capability-card h3 {
    margin: 0;

    color: #122b4a;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   STRATEGIC ADVANTAGES
   ========================================================= */

.buleme-about-advantages {
    padding: 90px 0;

    background: #ffffff;
}


.buleme-advantages-heading {
    padding-right: 40px;
}


.buleme-advantages-heading p {
    color: #666666 !important;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   ADVANTAGE LIST
   ========================================================= */

.buleme-advantages-list {
    border-top: 1px solid #e6eaee;
}


.buleme-advantage-item {
    display: flex;

    align-items: center;

    min-height: 67px;

    padding: 10px 0;

    border-bottom: 1px solid #e6eaee;

    transition: all 0.3s ease;
}


.buleme-advantage-item:hover {
    padding-left: 12px;

    background: #f8fafc;
}


.buleme-advantage-number {
    flex: 0 0 50px;

    color: #0066b3;

    font-size: 16px;

    font-weight: 800;
}


.buleme-advantage-text {
    flex: 1;

    color: #444444;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;
}


.buleme-advantage-arrow {
    padding-left: 20px;

    color: #dcae28;

    font-size: 18px;
}


/* =========================================================
   VALUES
   ========================================================= */

.buleme-about-values {
    padding: 90px 0;

    background: #062e54;
}


.buleme-values-heading h2 {
    color: #ffffff;
}


.buleme-values-heading p {
    color: #d5dfe8 !important;
}


.buleme-values-grid {
    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -6px;

    margin-right: -6px;
}


.buleme-values-grid > div {
    display: flex;

    padding-left: 6px;

    padding-right: 6px;

    margin-bottom: 12px;
}


.buleme-about-value-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    height: 100%;

    min-height: 180px;

    padding: 25px 20px;

    background: #8799ad;

    transition: all 0.3s ease;
}


.buleme-about-value-card:hover {
    background: #0066b3;

    transform: translateY(-4px);
}


.buleme-value-index {
    margin-bottom: 25px;

    color: #dcae28;

    font-size: 15px;

    font-weight: 800;
}


.buleme-about-value-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-about-value-card p {
    flex-grow: 1;

    margin: 0;

    color: #ffffff !important;

    font-size: 16px;

    line-height: 1.55;
}


/* =========================================================
   COMMITMENT
   ========================================================= */

.buleme-about-commitment {
    padding: 90px 0;

    background: #f5f7f9;
}


.buleme-about-commitment h2 {
    font-size: 30px;
}


.buleme-about-commitment > .container > .row > div:first-child {
    padding-right: 45px;
}


.buleme-about-commitment p {
    color: #666666 !important;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   COMMITMENT LIST
   ========================================================= */

.buleme-commitment-list {
    padding-left: 30px;
}


.buleme-commitment-item {
    display: flex;

    align-items: center;

    min-height: 57px;

    padding: 10px 15px;

    margin-bottom: 8px;

    background: #ffffff;

    color: #444444;

    font-size: 16px;

    font-weight: 600;

    box-shadow: 0 5px 15px rgba(10,40,70,0.04);

    transition: all 0.3s ease;
}


.buleme-commitment-item:hover {
    transform: translateX(5px);

    color: #0066b3;
}


.buleme-commitment-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 25px;

    width: 25px;
    height: 25px;

    margin-right: 13px;

    background: #0066b3;

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.buleme-about-cta {
    padding: 85px 0;

    background: #ffffff;
}


.buleme-about-cta-inner {
    position: relative;

    max-width: 850px;

    margin: 0 auto;

    padding: 55px 40px;

    text-align: center;

    background: #062e54;

    overflow: hidden;
}


.buleme-about-cta-inner::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #dcae28;
}


.buleme-about-cta-inner h2 {
    position: relative;

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;
}


.buleme-about-cta-inner p {
    max-width: 600px;

    margin: 0 auto 25px;

    color: #dce5ed !important;

    font-size: 16px;

    line-height: 1.7;
}


.buleme-slogan {
    margin-top: 25px;

    color: #dcae28;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   LARGE TABLETS
   ========================================================= */

@media (max-width: 1199px) {

    .buleme-about-hero h1 {
        font-size: 46px;
    }

}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-about-hero {
        min-height: 450px;
    }


    .buleme-about-hero-content {
        padding: 75px 0;
    }


    .buleme-about-hero h1 {
        font-size: 40px;
    }


    .buleme-about-intro {
        padding: 70px 0;
    }


    .buleme-about-intro-content {
        padding-right: 0;

        margin-bottom: 35px;
    }


    .buleme-about-vm-card {
        min-height: 280px;

        padding: 45px 40px;
    }


    .buleme-about-capabilities,
    .buleme-about-advantages,
    .buleme-about-values,
    .buleme-about-commitment {
        padding: 70px 0;
    }


    .buleme-advantages-heading {
        padding-right: 0;

        margin-bottom: 35px;
    }


    .buleme-about-commitment > .container > .row > div:first-child {
        padding-right: 0;

        margin-bottom: 35px;
    }


    .buleme-commitment-list {
        padding-left: 0;
    }


    .buleme-about-value-card {
        min-height: 165px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-about-hero {
        min-height: 440px;
    }


    .buleme-about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,37,70,0.95),
                rgba(3,37,70,0.75)
            );
    }


    .buleme-about-hero-content {
        padding: 65px 0;
    }


    .buleme-about-hero h1 {
        font-size: 34px;
    }


    .buleme-about-hero-content p {
        font-size: 11px;
    }


    .buleme-about-intro {
        padding: 60px 0;
    }


    .buleme-about-intro h2,
    .buleme-about-advantages h2 {
        font-size: 28px;
    }


    .buleme-about-image-wrapper,
    .buleme-about-image-wrapper img {
        min-height: 300px;

        height: 300px;
    }


    .buleme-about-vm-card {
        min-height: auto;

        padding: 45px 30px;
    }


    .buleme-centered-heading h2 {
        font-size: 28px;
    }


    .buleme-capability-card {
        min-height: 165px;
    }


    .buleme-about-value-card {
        min-height: 155px;
    }


    .buleme-about-cta-inner {
        padding: 45px 25px;
    }


    .buleme-about-cta-inner h2 {
        font-size: 25px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-about-hero {
        min-height: 420px;
    }


    .buleme-about-hero h1 {
        font-size: 29px;
    }


    .buleme-about-hero-content p {
        font-size: 14px;
    }


    .buleme-about-intro,
    .buleme-about-capabilities,
    .buleme-about-advantages,
    .buleme-about-values,
    .buleme-about-commitment {
        padding: 55px 0;
    }


    .buleme-about-intro h2,
    .buleme-about-advantages h2 {
        font-size: 25px;
    }


    .buleme-about-image-wrapper,
    .buleme-about-image-wrapper img {
        min-height: 250px;

        height: 250px;
    }


    .buleme-about-value-card {
        min-height: 145px;

        padding: 18px 13px;
    }


    .buleme-about-value-card h3 {
        font-size: 14px;
    }


    .buleme-about-value-card p {
        font-size: 7px;
    }


    .buleme-about-cta {
        padding: 55px 0;
    }


    .buleme-about-cta-inner {
        padding: 40px 18px;
    }


    .buleme-about-cta-inner h2 {
        font-size: 22px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .buleme-about-hero h1 {
        font-size: 26px;
    }


    .buleme-about-hero-content p {
        font-size: 14px;
    }


    .buleme-about-value-card {
        min-height: 135px;

        padding: 15px 11px;
    }


    .buleme-about-value-card h3 {
        font-size: 14px;
    }


    .buleme-about-value-card p {
        font-size: 14px;
    }

}
/* =========================================================
   BULEME COMPANY
   FOUNDER & MANAGEMENT TEAM
   ========================================================= */

.buleme-management-section {

    position: relative;

    padding: 95px 0;

    background: #ffffff;

    overflow: hidden;
}


/* Subtle background decoration */

.buleme-management-section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #c9a227;
}


.buleme-management-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -150px;

    top: 100px;

    border: 1px solid rgba(0,43,85,0.05);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.buleme-management-heading {

    max-width: 800px;

    margin: 0 auto 55px;

    position: relative;

    z-index: 2;
}


.buleme-management-label {

    display: inline-block;

    position: relative;

    padding-left: 18px;

    margin-bottom: 15px;

    color: #c9a227;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.buleme-management-label::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 5px;

    height: 28px;

    transform: translateY(-50%);

    background: #c9a227;
}


.buleme-management-heading h2 {

    margin: 0 0 18px;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 40px;

    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
}


.buleme-management-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #666666;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.buleme-team-card {

    position: relative;

    height: 100%;

    background: #ffffff;

    border: 1px solid #e1e6eb;

    box-shadow: 0 8px 25px rgba(0,43,85,0.07);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.buleme-team-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,43,85,0.14);
}


/* =========================================================
   TEAM IMAGE
   ========================================================= */

.buleme-team-image {

    position: relative;

    width: 100%;

    height: 330px;

    overflow: hidden;

    background: #e9edf1;
}


.buleme-team-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform .5s ease;
}


.buleme-team-card:hover .buleme-team-image img {

    transform: scale(1.04);
}


/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */

.buleme-team-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #edf1f4,
            #dce3e9
        );

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 14px;

    letter-spacing: 1px;
}


/* =========================================================
   NUMBER
   ========================================================= */

.buleme-team-number {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #002b55;

    color: #c9a227;

    border-top: 3px solid #c9a227;

    font-family: "Oswald", sans-serif;

    font-size: 16px;

    font-weight: 600;
}


/* =========================================================
   TEAM CONTENT
   ========================================================= */

.buleme-team-content {

    position: relative;

    padding: 25px 25px 27px;

    min-height: 125px;

    border-top: 1px solid #edf0f3;
}


.buleme-team-position {

    display: block;

    margin-bottom: 7px;

    color: #c9a227;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.buleme-team-content h3 {

    margin: 0;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 23px;

    font-weight: 500;

    line-height: 1.25;
}


/* Gold decorative line */

.buleme-team-line {

    width: 42px;

    height: 3px;

    margin-top: 15px;

    background: #c9a227;
}


/* =========================================================
   ADMINISTRATORS HEADING
   ========================================================= */

.buleme-administrators-heading {

    position: relative;

    margin: 75px 0 40px;

    padding-top: 35px;

    text-align: center;

    border-top: 1px solid #e2e6ea;
}


.buleme-administrators-heading::before {

    content: "";

    position: absolute;

    top: -1px;

    left: 50%;

    width: 100px;

    height: 3px;

    transform: translateX(-50%);

    background: #c9a227;
}


.buleme-administrators-heading h2 {

    margin: 0;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 32px;

    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   ADMINISTRATOR CARDS
   ========================================================= */

.buleme-administrator-card {

    background: #f8f9fa;
}


.buleme-administrator-card .buleme-team-image {

    height: 300px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-management-section {

        padding: 75px 0;
    }

    .buleme-management-heading h2 {

        font-size: 36px;
    }

    .buleme-team-image {

        height: 300px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-management-section {

        padding: 60px 0;
    }

    .buleme-management-heading {

        margin-bottom: 40px;
    }

    .buleme-management-heading h2 {

        font-size: 31px;
    }

    .buleme-management-heading p {

        padding: 0 10px;
    }

    .buleme-team-image {

        height: 350px;
    }

    .buleme-team-content h3 {

        font-size: 21px;
    }

    .buleme-administrators-heading {

        margin-top: 55px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .buleme-management-heading h2 {

        font-size: 28px;
    }

    .buleme-team-image {

        height: 320px;
    }

    .buleme-team-content {

        padding: 22px;
    }

    .buleme-team-content h3 {

        font-size: 20px;
    }

}











/* =========================================================
   BULEME COMPANY SARL
   BTP - BATIMENT ET TRAVAUX PUBLICS
   COMPLETE RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   GLOBAL BTP PAGE
   ========================================================= */

.buleme-btp-page {
    width: 100%;
    overflow: hidden;
    color: #122b4a;
}


/* =========================================================
   FONT SYSTEM
   ========================================================= */

/* ALL HEADINGS */
.buleme-btp-page h1,
.buleme-btp-page h2,
.buleme-btp-page h3,
.buleme-btp-page h4,
.buleme-btp-page h5,
.buleme-btp-page h6 {
    font-family: "Oswald", sans-serif !important;
}


/* ALL OTHER TEXT */
.buleme-btp-page p,
.buleme-btp-page span,
.buleme-btp-page li,
.buleme-btp-page a,
.buleme-btp-page button,
.buleme-btp-page label,
.buleme-btp-page div {
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.buleme-btp-page .buleme-section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #0066b3;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.buleme-btp-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #062e54;
}


.buleme-btp-hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.buleme-btp-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.buleme-btp-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 37, 70, 0.97) 0%,
            rgba(3, 37, 70, 0.88) 40%,
            rgba(3, 37, 70, 0.48) 70%,
            rgba(3, 37, 70, 0.18) 100%
        );
}


.buleme-btp-hero .container {
    position: relative;

    z-index: 2;
}


.buleme-btp-hero-content {
    max-width: 720px;

    padding: 100px 0;
}


/* HERO H1 */

.buleme-btp-hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.buleme-btp-hero-content h1::after {
    content: "";

    display: block;

    width: 65px;
    height: 4px;

    margin-top: 20px;

    background: #dcae28;
}


/* HERO PARAGRAPH */

.buleme-btp-hero-content p {
    max-width: 650px;

    margin: 0 0 32px;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buleme-btp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 190px;
    min-height: 52px;

    padding: 14px 28px;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    text-decoration: none !important;
    text-transform: uppercase;

    border-radius: 0;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.buleme-btp-btn-primary {
    background: #0066b3;

    border: 1px solid #0066b3;

    color: #ffffff !important;
}


.buleme-btp-btn-primary:hover {
    background: #dcae28;

    border-color: #dcae28;

    color: #122b4a !important;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


/* =========================================================
   INTRODUCTION SECTION
   ========================================================= */

.buleme-btp-intro {
    padding: 100px 0;

    background: #ffffff;
}


.buleme-btp-intro-content {
    padding-right: 50px;
}


/* INTRO HEADING */

.buleme-btp-intro-content h2 {
    margin: 0 0 25px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


/* INTRO TEXT */

.buleme-btp-text {
    color: #555555;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


.buleme-btp-text p {
    margin: 0 0 18px;

    color: #555555 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* INTRO IMAGE */

.buleme-btp-intro-image {
    width: 100%;
    min-height: 400px;

    overflow: hidden;
}


.buleme-btp-intro-image img {
    display: block;

    width: 100%;
    height: 400px;

    object-fit: cover;

    transition: transform .5s ease;
}


.buleme-btp-intro-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   GENERAL SECTION HEADINGS
   ========================================================= */

.buleme-btp-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.buleme-btp-heading h2 {
    margin: 0 0 20px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


.buleme-btp-heading p {
    margin: 0;

    color: #666666 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


.buleme-btp-heading-light h2 {
    color: #ffffff !important;
}


.buleme-btp-heading-light p {
    color: #e1e8ef !important;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.buleme-btp-services {
    padding: 100px 0;

    background: #f5f7f9;
}


.buleme-btp-service-grid {
    display: flex;

    flex-wrap: wrap;
}


.buleme-btp-service-grid > div {
    display: flex;

    margin-bottom: 30px;
}


/* SERVICE CARD */

.buleme-btp-service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    min-height: 440px;

    padding: 35px;

    background: #ffffff;

    border-top: 4px solid #0066b3;

    box-shadow: 0 8px 30px rgba(10, 40, 70, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.buleme-btp-service-card:hover {
    transform: translateY(-8px);

    border-top-color: #dcae28;

    box-shadow: 0 18px 45px rgba(10, 40, 70, .14);
}


/* SERVICE TOP */

.buleme-btp-service-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


/* SERVICE NUMBER */

.buleme-btp-service-number {
    color: #0066b3 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}


/* SERVICE CATEGORY */

.buleme-btp-service-category {
    color: #7f8d99 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* SERVICE TITLE */

.buleme-btp-service-card h3 {
    margin: 0 0 20px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;

    text-transform: uppercase;
}


/* SERVICE DESCRIPTION */

.buleme-btp-service-description {
    flex-grow: 1;

    color: #555555;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


.buleme-btp-service-description p {
    margin: 0 0 15px;

    color: #555555 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* SERVICE FEATURES */

.buleme-btp-service-features {
    padding-top: 20px;

    border-top: 1px solid #e3e8ec;

    color: #444444;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


.buleme-btp-service-features ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.buleme-btp-service-features li {
    position: relative;

    margin-bottom: 8px;

    padding-left: 25px;

    color: #444444 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.7;
}


.buleme-btp-service-features li::before {
    content: "✓";

    position: absolute;

    top: 0;
    left: 0;

    color: #dcae28;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   PROJECT CAPACITY SECTION
   ========================================================= */

.buleme-btp-projects {
    padding: 100px 0;

    background: #062e54;
}


.buleme-btp-projects .buleme-section-label {
    color: #dcae28 !important;
}


/* PROJECT CARDS */

.buleme-btp-project-card {
    height: 100%;

    min-height: 280px;

    padding: 40px 32px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .18);

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}


.buleme-btp-project-card:hover {
    background: #0066b3;

    border-color: #0066b3;

    transform: translateY(-6px);
}


/* PROJECT NUMBER */

.buleme-btp-project-card > span {
    display: block;

    margin-bottom: 35px;

    color: #dcae28 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* PROJECT TITLE */

.buleme-btp-project-card h3 {
    margin: 0 0 18px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;

    text-transform: uppercase;
}


/* PROJECT TEXT */

.buleme-btp-project-card p {
    margin: 0;

    color: #dce5ed !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   APPROACH SECTION
   ========================================================= */

.buleme-btp-approach {
    padding: 100px 0;

    background: #ffffff;
}


.buleme-btp-approach-heading {
    padding-right: 50px;
}


.buleme-btp-approach-heading h2 {
    margin: 0 0 22px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


.buleme-btp-approach-heading p {
    margin: 0;

    color: #555555 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* APPROACH LIST */

.buleme-btp-approach-list {
    border-top: 1px solid #e1e6ea;
}


/* APPROACH ITEM */

.buleme-btp-approach-item {
    display: flex;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid #e1e6ea;
}


.buleme-btp-approach-item > span {
    flex: 0 0 50px;

    color: #0066b3 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* APPROACH TITLE */

.buleme-btp-approach-item h3 {
    margin: 0 0 10px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}


/* APPROACH DESCRIPTION */

.buleme-btp-approach-item p {
    margin: 0;

    color: #666666 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   ADVANTAGES SECTION
   ========================================================= */

.buleme-btp-advantages {
    padding: 100px 0;

    background: #f5f7f9;
}


.buleme-btp-advantages > .container > .row > .col-lg-5 {
    padding-right: 45px;
}


/* ADVANTAGES TITLE */

.buleme-btp-advantages h2 {
    margin: 0 0 22px;

    color: #122b4a !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


/* ADVANTAGES DESCRIPTION */

.buleme-btp-advantages > .container > .row > .col-lg-5 p {
    margin: 0;

    color: #555555 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* ADVANTAGES LIST */

.buleme-btp-advantages-list {
    border-top: 1px solid #dfe5ea;
}


/* ADVANTAGE ITEM */

.buleme-btp-advantage-item {
    display: flex;

    align-items: center;

    min-height: 70px;

    padding: 12px 18px;

    background: #ffffff;

    border-bottom: 1px solid #dfe5ea;

    color: #444444 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;

    transition:
        padding .3s ease,
        color .3s ease,
        background .3s ease;
}


.buleme-btp-advantage-item:hover {
    padding-left: 25px;

    color: #0066b3 !important;

    background: #ffffff;
}


/* CHECK ICON */

.buleme-btp-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    margin-right: 18px;

    background: #0066b3;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.buleme-btp-cta {
    padding: 100px 0;

    background: #ffffff;
}


.buleme-btp-cta-inner {
    position: relative;

    max-width: 950px;

    margin: 0 auto;

    padding: 70px 50px;

    text-align: center;

    background: #062e54;

    overflow: hidden;
}


.buleme-btp-cta-inner::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #dcae28;
}


/* CTA LABEL */

.buleme-btp-cta-inner .buleme-section-label {
    color: #dcae28 !important;
}


/* CTA TITLE */

.buleme-btp-cta-inner h2 {
    margin: 0 0 22px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif !important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


/* CTA PARAGRAPH */

.buleme-btp-cta-inner p {
    max-width: 720px;

    margin: 0 auto 32px;

    color: #dce5ed !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-btp-hero-content {
        padding: 85px 0;
    }


    .buleme-btp-hero-content h1 {
        font-size: 44px;
    }


    .buleme-btp-intro,
    .buleme-btp-services,
    .buleme-btp-projects,
    .buleme-btp-approach,
    .buleme-btp-advantages,
    .buleme-btp-cta {
        padding: 75px 0;
    }


    .buleme-btp-intro-content {
        padding-right: 0;

        margin-bottom: 40px;
    }


    .buleme-btp-approach-heading {
        padding-right: 0;

        margin-bottom: 40px;
    }


    .buleme-btp-advantages > .container > .row > .col-lg-5 {
        padding-right: 0;

        margin-bottom: 40px;
    }


    .buleme-btp-service-card {
        min-height: 420px;
    }


    .buleme-btp-project-card {
        min-height: 270px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /* HERO */

    .buleme-btp-hero {
        min-height: 500px;
    }


    .buleme-btp-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 37, 70, .96),
                rgba(3, 37, 70, .78)
            );
    }


    .buleme-btp-hero-content {
        padding: 75px 0;
    }


    .buleme-btp-hero-content h1 {
        font-size: 38px;
    }


    .buleme-btp-hero-content p {
        font-size: 14px;
    }


    /* GENERAL HEADINGS */

    .buleme-btp-intro-content h2,
    .buleme-btp-approach-heading h2,
    .buleme-btp-advantages h2,
    .buleme-btp-heading h2 {
        font-size: 32px;
    }


    /* INTRO */

    .buleme-btp-intro-image,
    .buleme-btp-intro-image img {
        min-height: 320px;

        height: 320px;
    }


    /* SERVICES */

    .buleme-btp-service-card {
        min-height: 0;

        padding: 30px;
    }


    .buleme-btp-service-card h3 {
        font-size: 22px;
    }


    /* PROJECTS */

    .buleme-btp-project-card {
        min-height: 0;

        margin-bottom: 20px;
    }


    /* APPROACH */

    .buleme-btp-approach-item {
        gap: 20px;
    }


    /* CTA */

    .buleme-btp-cta-inner {
        padding: 55px 30px;
    }


    .buleme-btp-cta-inner h2 {
        font-size: 32px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .buleme-btp-page .buleme-section-label {
        font-size: 14px;
    }


    .buleme-btp-hero {
        min-height: 520px;
    }


    .buleme-btp-hero-content {
        padding: 70px 0;
    }


    .buleme-btp-hero-content h1 {
        font-size: 34px;
    }


    .buleme-btp-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    .buleme-btp-intro,
    .buleme-btp-services,
    .buleme-btp-projects,
    .buleme-btp-approach,
    .buleme-btp-advantages,
    .buleme-btp-cta {
        padding: 60px 0;
    }


    .buleme-btp-intro-content h2,
    .buleme-btp-approach-heading h2,
    .buleme-btp-advantages h2,
    .buleme-btp-heading h2 {
        font-size: 29px;
    }


    .buleme-btp-text,
    .buleme-btp-text p,
    .buleme-btp-service-description,
    .buleme-btp-service-description p,
    .buleme-btp-service-features,
    .buleme-btp-service-features li,
    .buleme-btp-project-card p,
    .buleme-btp-approach-heading p,
    .buleme-btp-approach-item p,
    .buleme-btp-advantages > .container > .row > .col-lg-5 p,
    .buleme-btp-cta-inner p {
        font-size: 14px;
    }


    .buleme-btp-service-card {
        padding: 25px;
    }


    .buleme-btp-service-card h3 {
        font-size: 21px;
    }


    .buleme-btp-service-category {
        font-size: 14px;
    }


    .buleme-btp-service-number {
        font-size: 25px;
    }


    .buleme-btp-project-card h3 {
        font-size: 21px;
    }


    .buleme-btp-approach-item h3 {
        font-size: 20px;
    }


    .buleme-btp-advantage-item {
        font-size: 14px;
    }


    .buleme-btp-cta-inner {
        padding: 50px 22px;
    }


    .buleme-btp-cta-inner h2 {
        font-size: 29px;
    }


    .buleme-btp-btn {
        width: 100%;

        min-height: 54px;

        font-size: 14px;
    }

}


/* =========================================================
   EXTRA SAFETY:
   PREVENT THEME FROM SHRINKING BTP TEXT BELOW 14PX
   ========================================================= */

.buleme-btp-page p,
.buleme-btp-page li,
.buleme-btp-page a,
.buleme-btp-page span {
    font-size: max(14px, 1em);
}


/* Maintain explicit heading sizes */
.buleme-btp-page h1 {
    font-family: "Oswald", sans-serif !important;
}

.buleme-btp-page h2 {
    font-family: "Oswald", sans-serif !important;
}

.buleme-btp-page h3 {
    font-family: "Oswald", sans-serif !important;
}


/* =========================================================
   END BULEME BTP CSS
   ========================================================= */
   
/* =========================================================
   BULEME COMPANY SARL
   PARAFISCALITÉ PAGE
   COMPLETE RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   1. GLOBAL PAGE
   ========================================================= */

.buleme-parafiscal-page {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block !important;
    visibility: visible !important;
    overflow: hidden;
    background: #ffffff;
    color: #333333;
    font-family: "Poppins", sans-serif;
}


/* Prevent theme styles from changing the page */

.buleme-parafiscal-page *,
.buleme-parafiscal-page *::before,
.buleme-parafiscal-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   2. FONT SYSTEM
   ========================================================= */

.buleme-parafiscal-page h1,
.buleme-parafiscal-page h2,
.buleme-parafiscal-page h3,
.buleme-parafiscal-page h4,
.buleme-parafiscal-page h5,
.buleme-parafiscal-page h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    margin-top: 0;
}


/* All normal text */

.buleme-parafiscal-page p,
.buleme-parafiscal-page li,
.buleme-parafiscal-page span,
.buleme-parafiscal-page div,
.buleme-parafiscal-page a {
    font-family: "Poppins", sans-serif;
}


/* Minimum font size */

.buleme-parafiscal-page p,
.buleme-parafiscal-page li,
.buleme-parafiscal-page a,
.buleme-parafiscal-page span {
    font-size: 14px;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.buleme-parafiscal-page .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   4. SECTION LABEL
   ========================================================= */

.buleme-parafiscal-page .buleme-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #0066b3 !important;

    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
    font-weight: 700;

    line-height: 1.4;
    letter-spacing: 0.5px;

    text-transform: uppercase;
}


.buleme-parafiscal-page .buleme-section-label::before {
    content: "";

    display: inline-block;

    width: 30px;
    height: 3px;

    background: #dcae28;

    flex-shrink: 0;
}


/* =========================================================
   5. HERO
   ========================================================= */

.buleme-parafiscal-hero {
    position: relative;

    width: 100%;
    min-height: 620px;

    overflow: hidden;

    background: #071d35;
}


/* Hero image */

.buleme-parafiscal-hero-image {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}


.buleme-parafiscal-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/* =========================================================
   HERO BLUE OVERLAY
   ========================================================= */

.buleme-parafiscal-hero-overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 70, 0.94) 0%,
            rgba(4, 35, 70, 0.88) 25%,
            rgba(4, 35, 70, 0.60) 48%,
            rgba(4, 35, 70, 0.25) 70%,
            rgba(4, 35, 70, 0.08) 100%
        );
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.buleme-parafiscal-hero .container {
    position: relative;

    z-index: 3;

    min-height: 620px;

    display: flex;
    align-items: center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.buleme-parafiscal-hero-content {
    width: 100%;
    max-width: 650px;

    padding: 60px 0;
}


/* Hero label */

.buleme-parafiscal-hero .buleme-section-label {
    color: #ffffff !important;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.buleme-parafiscal-hero h1 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif;

    font-size: 54px;
    line-height: 1.08;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.3px;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.buleme-parafiscal-hero-content > p {
    max-width: 600px;

    margin: 0 0 30px;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif;

    font-size: 16px !important;
    line-height: 1.8;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.35);
}


/* If ACF contains paragraphs */

.buleme-parafiscal-hero-content > p p {
    color: #ffffff !important;
}


/* =========================================================
   HERO BUTTON
   ========================================================= */

.buleme-parafiscal-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 13px 25px;

    border: 1px solid #0066b3;
    border-radius: 2px;

    background: #0066b3;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: none !important;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.buleme-parafiscal-btn:hover {
    background: #004f8c;
    border-color: #004f8c;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-2px);
}


/* =========================================================
   6. INTRODUCTION
   ========================================================= */

.buleme-parafiscal-intro {
    position: relative;

    padding: 90px 0;

    background: #ffffff;
}


.buleme-parafiscal-intro-content {
    padding-right: 40px;
}


/* Intro heading */

.buleme-parafiscal-intro h2 {
    margin: 0 0 22px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    text-transform: uppercase;
}


/* Intro paragraphs */

.buleme-parafiscal-text {
    color: #555555;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    line-height: 1.8;
}


.buleme-parafiscal-text p {
    margin: 0 0 16px;

    color: #555555 !important;

    font-size: 15px !important;
    line-height: 1.8;
}


/* =========================================================
   INTRO IMAGE
   ========================================================= */

.buleme-parafiscal-intro-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #eeeeee;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


.buleme-parafiscal-intro-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.buleme-parafiscal-intro-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   7. SERVICES SECTION
   ========================================================= */

.buleme-parafiscal-services {
    position: relative;

    padding: 90px 0 100px;

    background: #f3f5f7;
}


/* Services heading */

.buleme-parafiscal-heading {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;
}


.buleme-parafiscal-heading .buleme-section-label {
    justify-content: center;
}


.buleme-parafiscal-heading h2 {
    margin: 0 0 18px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-parafiscal-heading > p {
    max-width: 700px;

    margin: 0 auto;

    color: #666666 !important;

    font-size: 15px !important;
    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.buleme-parafiscal-service-grid {
    display: flex;
    flex-wrap: wrap;
}


.buleme-parafiscal-service-grid > [class*="col-"] {
    display: flex;

    margin-bottom: 25px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.buleme-parafiscal-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 100%;

    padding: 30px;

    background: #ffffff;

    border-top: 4px solid #0066b3;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.buleme-parafiscal-service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   SERVICE TOP
   ========================================================= */

.buleme-parafiscal-service-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


.buleme-parafiscal-service-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #0066b3;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 20px !important;

    line-height: 1;
}


.buleme-parafiscal-service-category {
    color: #8a8a8a;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;

    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.buleme-parafiscal-service-card h3 {
    margin: 0 0 18px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.buleme-parafiscal-service-description {
    margin-bottom: 20px;

    color: #555555;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;

    line-height: 1.75;
}


.buleme-parafiscal-service-description p {
    margin: 0 0 14px;

    color: #555555 !important;

    font-size: 14px !important;

    line-height: 1.75;
}


/* =========================================================
   SERVICE FEATURES
   ========================================================= */

.buleme-parafiscal-service-features {
    margin-top: auto;

    padding-top: 15px;

    border-top: 1px solid #e3e6e8;
}


.buleme-parafiscal-service-features ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.buleme-parafiscal-service-features li {
    position: relative;

    margin: 0 0 11px;

    padding-left: 25px;

    color: #555555;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;

    line-height: 1.6;
}


.buleme-parafiscal-service-features li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #0066b3;

    font-size: 14px !important;
    font-weight: 700;
}


/* =========================================================
   8. APPROACH SECTION
   ========================================================= */

.buleme-parafiscal-approach {
    padding: 95px 0;

    background: #ffffff;
}


.buleme-parafiscal-approach-heading {
    padding-right: 40px;
}


.buleme-parafiscal-approach-heading h2 {
    margin: 0 0 20px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-parafiscal-approach-heading > p {
    color: #555555 !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   APPROACH LIST
   ========================================================= */

.buleme-parafiscal-approach-list {
    width: 100%;
}


.buleme-parafiscal-approach-item {
    display: flex;

    gap: 25px;

    padding: 24px 0;

    border-bottom: 1px solid #e1e5e8;
}


.buleme-parafiscal-approach-item:first-child {
    padding-top: 0;
}


.buleme-parafiscal-approach-item:last-child {
    border-bottom: none;
}


/* Number */

.buleme-parafiscal-approach-item > span {
    flex: 0 0 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    background: #071d35;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 20px !important;
}


/* Approach title */

.buleme-parafiscal-approach-item h3 {
    margin: 0 0 8px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 600;

    text-transform: uppercase;
}


/* Approach description */

.buleme-parafiscal-approach-item p {
    margin: 0;

    color: #666666 !important;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;

    line-height: 1.7;
}


/* =========================================================
   9. ADVANTAGES
   ========================================================= */

.buleme-parafiscal-advantages {
    padding: 90px 0;

    background: #071d35;
}


.buleme-parafiscal-advantages .buleme-section-label {
    color: #ffffff !important;
}


.buleme-parafiscal-advantages h2 {
    margin: 0 0 20px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-parafiscal-advantages > .container > .row > div:first-child > p {
    color: #ffffff !important;

    font-family: "Poppins", sans-serif;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   ADVANTAGE LIST
   ========================================================= */

.buleme-parafiscal-advantages-list {
    padding-left: 35px;
}


.buleme-parafiscal-advantage-item {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    color: #ffffff !important;

    font-family: "Poppins", sans-serif;

    font-size: 14px !important;

    line-height: 1.6;
}


.buleme-parafiscal-advantage-item:last-child {
    border-bottom: none;
}


/* Check */

.buleme-parafiscal-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    border: 1px solid #dcae28;

    color: #dcae28 !important;

    font-family: "Poppins", sans-serif;

    font-size: 16px !important;
    font-weight: 700;
}


/* =========================================================
   10. CTA
   ========================================================= */

.buleme-parafiscal-cta {
    padding: 90px 0;

    background: #f5f6f7;
}


.buleme-parafiscal-cta-inner {
    position: relative;

    max-width: 900px;

    margin: 0 auto;

    padding: 60px 50px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e1e4e7;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
}


.buleme-parafiscal-cta-inner .buleme-section-label {
    justify-content: center;
}


.buleme-parafiscal-cta-inner h2 {
    margin: 0 0 20px;

    color: #12345a;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-parafiscal-cta-inner > p {
    max-width: 720px;

    margin: 0 auto 30px;

    color: #555555 !important;

    font-family: "Poppins", sans-serif;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   11. TABLETS
   ========================================================= */

@media (max-width: 991px) {

    .buleme-parafiscal-hero,
    .buleme-parafiscal-hero .container {
        min-height: 560px;
    }


    .buleme-parafiscal-hero h1 {
        font-size: 46px;
    }


    .buleme-parafiscal-intro,
    .buleme-parafiscal-services,
    .buleme-parafiscal-approach,
    .buleme-parafiscal-advantages,
    .buleme-parafiscal-cta {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .buleme-parafiscal-intro-content,
    .buleme-parafiscal-approach-heading {
        padding-right: 0;

        margin-bottom: 40px;
    }


    .buleme-parafiscal-intro h2,
    .buleme-parafiscal-heading h2,
    .buleme-parafiscal-approach-heading h2,
    .buleme-parafiscal-advantages h2,
    .buleme-parafiscal-cta-inner h2 {
        font-size: 34px;
    }


    .buleme-parafiscal-intro-image img {
        height: 420px;
    }


    .buleme-parafiscal-advantages-list {
        padding-left: 0;

        margin-top: 35px;
    }

}


/* =========================================================
   12. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-parafiscal-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* HERO */

    .buleme-parafiscal-hero,
    .buleme-parafiscal-hero .container {
        min-height: 600px;
    }


    .buleme-parafiscal-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 35, 70, 0.94) 0%,
                rgba(4, 35, 70, 0.82) 55%,
                rgba(4, 35, 70, 0.45) 100%
            );
    }


    .buleme-parafiscal-hero-content {
        padding: 40px 0;
    }


    .buleme-parafiscal-hero h1 {
        font-size: 38px;

        line-height: 1.1;

        margin-bottom: 18px;
    }


    .buleme-parafiscal-hero-content > p {
        font-size: 14px !important;

        line-height: 1.7;
    }


    /* SECTIONS */

    .buleme-parafiscal-intro,
    .buleme-parafiscal-services,
    .buleme-parafiscal-approach,
    .buleme-parafiscal-advantages,
    .buleme-parafiscal-cta {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .buleme-parafiscal-intro h2,
    .buleme-parafiscal-heading h2,
    .buleme-parafiscal-approach-heading h2,
    .buleme-parafiscal-advantages h2,
    .buleme-parafiscal-cta-inner h2 {
        font-size: 30px;

        line-height: 1.18;
    }


    .buleme-parafiscal-text p,
    .buleme-parafiscal-service-description p {
        font-size: 14px !important;

        line-height: 1.7;
    }


    /* IMAGE */

    .buleme-parafiscal-intro-image {
        margin-top: 20px;
    }


    .buleme-parafiscal-intro-image img {
        height: 350px;
    }


    /* SERVICE */

    .buleme-parafiscal-service-card {
        padding: 25px;
    }


    .buleme-parafiscal-service-card h3 {
        font-size: 23px;
    }


    /* APPROACH */

    .buleme-parafiscal-approach-item {
        gap: 16px;

        padding: 20px 0;
    }


    .buleme-parafiscal-approach-item > span {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        font-size: 18px !important;
    }


    .buleme-parafiscal-approach-item h3 {
        font-size: 20px;
    }


    /* CTA */

    .buleme-parafiscal-cta-inner {
        padding: 40px 22px;
    }

}


/* =========================================================
   13. SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .buleme-parafiscal-hero,
    .buleme-parafiscal-hero .container {
        min-height: 620px;
    }


    .buleme-parafiscal-hero h1 {
        font-size: 32px;
    }


    .buleme-parafiscal-hero-content > p {
        font-size: 14px !important;
    }


    .buleme-parafiscal-page .buleme-section-label {
        font-size: 14px !important;
    }


    .buleme-parafiscal-intro h2,
    .buleme-parafiscal-heading h2,
    .buleme-parafiscal-approach-heading h2,
    .buleme-parafiscal-advantages h2,
    .buleme-parafiscal-cta-inner h2 {
        font-size: 27px;
    }


    .buleme-parafiscal-intro-image img {
        height: 290px;
    }


    .buleme-parafiscal-service-card {
        padding: 22px;
    }


    .buleme-parafiscal-service-card h3 {
        font-size: 21px;
    }


    .buleme-parafiscal-service-description,
    .buleme-parafiscal-service-description p {
        font-size: 14px !important;
    }


    .buleme-parafiscal-service-features li {
        font-size: 14px !important;
    }


    .buleme-parafiscal-approach-item {
        display: block;
    }


    .buleme-parafiscal-approach-item > span {
        margin-bottom: 14px;
    }


    .buleme-parafiscal-cta-inner {
        padding: 35px 18px;
    }


    .buleme-parafiscal-cta-inner > p {
        font-size: 14px !important;
    }


    .buleme-parafiscal-btn {
        width: 100%;

        min-height: 48px;
    }

}


/* =========================================================
   14. THEME OVERRIDES
   Prevent the existing theme from breaking this page
   ========================================================= */

.buleme-parafiscal-page img {
    max-width: 100%;
}


.buleme-parafiscal-page a:hover {
    text-decoration: none;
}


.buleme-parafiscal-page h1,
.buleme-parafiscal-page h2,
.buleme-parafiscal-page h3,
.buleme-parafiscal-page h4,
.buleme-parafiscal-page h5,
.buleme-parafiscal-page h6 {
    letter-spacing: normal;
}


.buleme-parafiscal-page p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   15. FORCE WHITE TEXT IN DARK SECTIONS
   ========================================================= */

.buleme-parafiscal-hero p,
.buleme-parafiscal-hero .buleme-section-label,
.buleme-parafiscal-advantages p,
.buleme-parafiscal-advantages span {
    color: #ffffff !important;
}


/* Keep gold check mark */

.buleme-parafiscal-advantages .buleme-parafiscal-check {
    color: #dcae28 !important;
}


/* =========================================================
   END
   ========================================================= */
   
/* =========================================================
   BULEME COMPANY
   RESSOURCES HUMAINES PAGE
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.buleme-rh-page {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    background: #ffffff;
    color: #333333;
    font-family: "Poppins", sans-serif;
}

.buleme-rh-page *,
.buleme-rh-page *::before,
.buleme-rh-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   FONTS
   ========================================================= */

.buleme-rh-page h1,
.buleme-rh-page h2,
.buleme-rh-page h3,
.buleme-rh-page h4,
.buleme-rh-page h5,
.buleme-rh-page h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

.buleme-rh-page p,
.buleme-rh-page span,
.buleme-rh-page li,
.buleme-rh-page a,
.buleme-rh-page div {
    font-family: "Poppins", sans-serif;
}


/* Minimum text size */

.buleme-rh-page p,
.buleme-rh-page li,
.buleme-rh-page a,
.buleme-rh-page span {
    font-size: 14px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.buleme-rh-page .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.buleme-rh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #0066b3 !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.buleme-rh-section-label::before {
    content: "";

    width: 30px;
    height: 3px;

    background: #dcae28;

    flex-shrink: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.buleme-rh-hero {
    position: relative;

    width: 100%;
    min-height: 620px;

    overflow: hidden;

    background: #071d35;
}


.buleme-rh-hero-image {
    position: absolute;

    inset: 0;

    z-index: 1;
}


.buleme-rh-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.buleme-rh-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 70, .94) 0%,
            rgba(4, 35, 70, .86) 27%,
            rgba(4, 35, 70, .58) 50%,
            rgba(4, 35, 70, .22) 75%,
            rgba(4, 35, 70, .05) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.buleme-rh-hero .container {
    position: relative;

    z-index: 3;

    min-height: 620px;

    display: flex;

    align-items: center;
}


.buleme-rh-hero-content {
    width: 100%;
    max-width: 670px;

    padding: 60px 0;
}


.buleme-rh-hero .buleme-rh-section-label {
    color: #ffffff !important;
}


.buleme-rh-hero h1 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif !important;

    font-size: 54px;

    line-height: 1.08;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-rh-hero-content > p {
    max-width: 610px;

    margin: 0 0 30px;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 16px !important;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
   ========================================================= */

.buleme-rh-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 27px;

    background: #0066b3;

    border: 1px solid #0066b3;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    font-weight: 600;

    line-height: 1.4;

    text-decoration: none !important;

    transition: all .3s ease;
}


.buleme-rh-btn:hover {
    background: #004f8c;

    border-color: #004f8c;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   INTRO
   ========================================================= */

.buleme-rh-intro {
    padding: 90px 0;

    background: #ffffff;
}


.buleme-rh-intro-content {
    padding-right: 40px;
}


.buleme-rh-intro h2 {
    margin: 0 0 22px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 40px;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-rh-text {
    color: #555555;

    font-family: "Poppins", sans-serif !important;

    font-size: 15px;

    line-height: 1.8;
}


.buleme-rh-text p {
    margin: 0 0 16px;

    color: #555555 !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   INTRO IMAGE
   ========================================================= */

.buleme-rh-intro-image {
    width: 100%;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
}


.buleme-rh-intro-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;

    transition: transform .5s ease;
}


.buleme-rh-intro-image:hover img {
    transform: scale(1.03);
}


.buleme-rh-intro-placeholder {
    width: 100%;
    height: 470px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0066b3,
            #071d35
        );

    color: #ffffff;

    font-family: "Oswald", sans-serif !important;

    font-size: 30px !important;

    text-align: center;
}


/* =========================================================
   SERVICES
   ========================================================= */

.buleme-rh-services {
    padding: 90px 0 100px;

    background: #f3f5f7;
}


.buleme-rh-heading {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;
}


.buleme-rh-heading .buleme-rh-section-label {
    justify-content: center;
}


.buleme-rh-heading h2 {
    margin: 0 0 18px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 40px;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-rh-heading > p {
    max-width: 750px;

    margin: 0 auto;

    color: #666666 !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.buleme-rh-service-grid > div {
    margin-bottom: 25px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.buleme-rh-service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;
    height: 100%;

    padding: 30px;

    background: #ffffff;

    border-top: 4px solid #0066b3;

    box-shadow:
        0 8px 25px rgba(0,0,0,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.buleme-rh-service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
}


/* =========================================================
   SERVICE TOP
   ========================================================= */

.buleme-rh-service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.buleme-rh-service-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #0066b3;

    color: #ffffff;

    font-family: "Oswald", sans-serif !important;

    font-size: 20px !important;
}


.buleme-rh-service-category {
    color: #888888;

    font-size: 14px !important;

    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.buleme-rh-service-card h3 {
    margin: 0 0 18px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 25px;

    line-height: 1.2;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.buleme-rh-service-description {
    margin-bottom: 20px;

    color: #555555;

    font-size: 14px !important;

    line-height: 1.75;
}


.buleme-rh-service-description p {
    margin: 0 0 14px;

    color: #555555 !important;

    font-size: 14px !important;

    line-height: 1.75;
}


/* =========================================================
   SERVICE FEATURES
   ========================================================= */

.buleme-rh-service-features {
    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid #e3e6e8;
}


.buleme-rh-service-features ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.buleme-rh-service-features li {
    position: relative;

    margin-bottom: 11px;

    padding-left: 25px;

    color: #555555;

    font-size: 14px !important;

    line-height: 1.6;
}


.buleme-rh-service-features li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #0066b3;

    font-size: 14px !important;

    font-weight: 700;
}


/* =========================================================
   APPROACH
   ========================================================= */

.buleme-rh-approach {
    padding: 95px 0;

    background: #ffffff;
}


.buleme-rh-approach-heading {
    padding-right: 40px;
}


.buleme-rh-approach-heading h2 {
    margin: 0 0 20px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 40px;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-rh-approach-heading > p {
    color: #555555 !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   APPROACH LIST
   ========================================================= */

.buleme-rh-approach-item {
    display: flex;

    gap: 25px;

    padding: 24px 0;

    border-bottom: 1px solid #e1e5e8;
}


.buleme-rh-approach-item:first-child {
    padding-top: 0;
}


.buleme-rh-approach-item:last-child {
    border-bottom: none;
}


.buleme-rh-approach-item > span {
    flex: 0 0 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    background: #071d35;

    color: #ffffff;

    font-family: "Oswald", sans-serif !important;

    font-size: 20px !important;
}


.buleme-rh-approach-item h3 {
    margin: 0 0 8px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 23px;

    line-height: 1.2;

    text-transform: uppercase;
}


.buleme-rh-approach-item p {
    margin: 0;

    color: #666666 !important;

    font-size: 14px !important;

    line-height: 1.7;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.buleme-rh-advantages {
    padding: 90px 0;

    background: #071d35;
}


.buleme-rh-advantages .buleme-rh-section-label {
    color: #ffffff !important;
}


.buleme-rh-advantages h2 {
    margin: 0 0 20px;

    color: #ffffff !important;

    font-family: "Oswald", sans-serif !important;

    font-size: 40px;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-rh-advantages > .container > .row > div:first-child > p {
    color: #ffffff !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   ADVANTAGES LIST
   ========================================================= */

.buleme-rh-advantages-list {
    padding-left: 35px;
}


.buleme-rh-advantage-item {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);

    color: #ffffff !important;

    font-size: 14px !important;

    line-height: 1.6;
}


.buleme-rh-advantage-item:last-child {
    border-bottom: none;
}


.buleme-rh-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    border: 1px solid #dcae28;

    color: #dcae28 !important;

    font-size: 16px !important;

    font-weight: 700;
}


/* =========================================================
   CTA
   ========================================================= */

.buleme-rh-cta {
    padding: 90px 0;

    background: #f5f6f7;
}


.buleme-rh-cta-inner {
    max-width: 900px;

    margin: 0 auto;

    padding: 60px 50px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e1e4e7;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}


.buleme-rh-cta-inner .buleme-rh-section-label {
    justify-content: center;
}


.buleme-rh-cta-inner h2 {
    margin: 0 0 20px;

    color: #12345a;

    font-family: "Oswald", sans-serif !important;

    font-size: 40px;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-rh-cta-inner > p {
    max-width: 720px;

    margin: 0 auto 30px;

    color: #555555 !important;

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-rh-hero,
    .buleme-rh-hero .container {
        min-height: 560px;
    }

    .buleme-rh-hero h1 {
        font-size: 46px;
    }

    .buleme-rh-intro,
    .buleme-rh-services,
    .buleme-rh-approach,
    .buleme-rh-advantages,
    .buleme-rh-cta {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .buleme-rh-intro-content,
    .buleme-rh-approach-heading {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .buleme-rh-intro h2,
    .buleme-rh-heading h2,
    .buleme-rh-approach-heading h2,
    .buleme-rh-advantages h2,
    .buleme-rh-cta-inner h2 {
        font-size: 34px;
    }

    .buleme-rh-intro-image img,
    .buleme-rh-intro-placeholder {
        height: 420px;
    }

    .buleme-rh-advantages-list {
        padding-left: 0;
        margin-top: 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-rh-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .buleme-rh-hero,
    .buleme-rh-hero .container {
        min-height: 600px;
    }

    .buleme-rh-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,35,70,.94) 0%,
                rgba(4,35,70,.82) 55%,
                rgba(4,35,70,.45) 100%
            );
    }

    .buleme-rh-hero-content {
        padding: 40px 0;
    }

    .buleme-rh-hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .buleme-rh-hero-content > p {
        font-size: 14px !important;
        line-height: 1.7;
    }

    .buleme-rh-intro,
    .buleme-rh-services,
    .buleme-rh-approach,
    .buleme-rh-advantages,
    .buleme-rh-cta {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .buleme-rh-intro h2,
    .buleme-rh-heading h2,
    .buleme-rh-approach-heading h2,
    .buleme-rh-advantages h2,
    .buleme-rh-cta-inner h2 {
        font-size: 30px;
    }

    .buleme-rh-intro-image img,
    .buleme-rh-intro-placeholder {
        height: 350px;
    }

    .buleme-rh-service-card {
        padding: 25px;
    }

    .buleme-rh-service-card h3 {
        font-size: 23px;
    }

    .buleme-rh-approach-item {
        gap: 16px;
        padding: 20px 0;
    }

    .buleme-rh-approach-item > span {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        font-size: 18px !important;
    }

    .buleme-rh-approach-item h3 {
        font-size: 20px;
    }

    .buleme-rh-cta-inner {
        padding: 40px 22px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .buleme-rh-hero,
    .buleme-rh-hero .container {
        min-height: 620px;
    }

    .buleme-rh-hero h1 {
        font-size: 32px;
    }

    .buleme-rh-intro h2,
    .buleme-rh-heading h2,
    .buleme-rh-approach-heading h2,
    .buleme-rh-advantages h2,
    .buleme-rh-cta-inner h2 {
        font-size: 27px;
    }

    .buleme-rh-intro-image img,
    .buleme-rh-intro-placeholder {
        height: 290px;
    }

    .buleme-rh-service-card {
        padding: 22px;
    }

    .buleme-rh-service-card h3 {
        font-size: 21px;
    }

    .buleme-rh-approach-item {
        display: block;
    }

    .buleme-rh-approach-item > span {
        margin-bottom: 14px;
    }

    .buleme-rh-cta-inner {
        padding: 35px 18px;
    }

    .buleme-rh-btn {
        width: 100%;
    }
}
/* =========================================================
   BULEME COMPANY
   FORMATION PROFESSIONNELLE
   BLUE + GOLD DESIGN
========================================================= */

.buleme-formation-page {
    --buleme-blue: #0879b7;
    --buleme-dark-blue: #064e78;
    --buleme-deep-blue: #123d59;
    --buleme-light-blue: #eef6fa;
    --buleme-gold: #c9a227;
    --buleme-gold-light: #dfc45a;
    --buleme-white: #ffffff;
    --buleme-text: #444444;
    --buleme-border: #e5e5e5;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--buleme-text);
    overflow: hidden;
}

.buleme-formation-page *,
.buleme-formation-page *::before,
.buleme-formation-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

.buleme-formation-page h1,
.buleme-formation-page h2,
.buleme-formation-page h3,
.buleme-formation-page h4,
.buleme-formation-page h5,
.buleme-formation-page h6 {
    font-family: "Oswald", sans-serif !important;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
}

.buleme-formation-page p,
.buleme-formation-page li,
.buleme-formation-page span,
.buleme-formation-page a,
.buleme-formation-page div {
    font-family: "Poppins", sans-serif;
}

.buleme-formation-page p,
.buleme-formation-page li {
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SECTION LABEL
   GOLD LINE EFFECT
========================================================= */

.buleme-formation-page .buleme-section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--buleme-gold);

    margin-bottom: 18px;
}


/* Gold line AFTER label */

.buleme-formation-page .buleme-section-label::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--buleme-gold);
}


/* =========================================================
   HERO
========================================================= */

.buleme-formation-hero {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--buleme-dark-blue);
}


/* Hero image */

.buleme-formation-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.buleme-formation-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;

    display: block;
}


/* Hero overlay */

.buleme-formation-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 61, 96, 0.97) 0%,
            rgba(6, 79, 119, 0.91) 30%,
            rgba(7, 90, 133, 0.65) 55%,
            rgba(7, 90, 133, 0.25) 78%,
            rgba(7, 90, 133, 0.05) 100%
        );
}


/* Hero content */

.buleme-formation-hero .container {
    position: relative;
    z-index: 3;
}

.buleme-formation-hero-content {
    max-width: 680px;
    padding: 80px 0;
}


/* Hero label */

.buleme-formation-hero-content .buleme-section-label {
    color: var(--buleme-gold);
}


/* Hero heading */

.buleme-formation-hero-content h1 {
    position: relative;

    color: var(--buleme-white);

    font-size: 56px;

    margin-bottom: 28px;
    padding-bottom: 25px;
}


/* Gold line beneath hero title */

.buleme-formation-hero-content h1::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 90px;
    height: 4px;

    background: var(--buleme-gold);
}


/* Hero paragraph */

.buleme-formation-hero-content p {
    color: var(--buleme-white);

    max-width: 650px;

    margin-bottom: 32px;

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.buleme-formation-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 14px 32px;

    border-radius: 2px;

    text-decoration: none !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    transition:
        all 0.3s ease;
}


/* Primary button */

.buleme-formation-btn-primary {
    background: var(--buleme-blue);

    color: var(--buleme-white) !important;

    border: 2px solid var(--buleme-gold);
}


/* Gold bottom accent */

.buleme-formation-btn-primary::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 3px;

    background: var(--buleme-gold);

    transition: all 0.3s ease;
}


.buleme-formation-btn-primary:hover {
    background: var(--buleme-gold);

    color: var(--buleme-white) !important;

    border-color: var(--buleme-gold);
}


.buleme-formation-btn-primary:hover::after {
    bottom: -7px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.buleme-formation-intro {
    position: relative;

    padding: 100px 0;

    background: var(--buleme-white);
}


/* Gold decorative line at top */

.buleme-formation-intro::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--buleme-blue) 0%,
            var(--buleme-blue) 70%,
            var(--buleme-gold) 70%,
            var(--buleme-gold) 100%
        );
}


.buleme-formation-intro-content {
    padding-right: 45px;
}


/* Intro title */

.buleme-formation-intro-content h2 {
    position: relative;

    color: var(--buleme-deep-blue);

    font-size: 42px;

    margin-bottom: 30px;
    padding-bottom: 22px;
}


/* Gold title line */

.buleme-formation-intro-content h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 65px;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-text p {
    color: var(--buleme-text);

    margin-bottom: 18px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.buleme-formation-intro-image {
    position: relative;

    min-height: 450px;

    overflow: hidden;

    border-left: 5px solid var(--buleme-gold);
}


.buleme-formation-intro-image::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75px;
    height: 75px;

    border-right: 5px solid var(--buleme-gold);
    border-bottom: 5px solid var(--buleme-gold);
}


.buleme-formation-intro-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    display: block;
}


.buleme-formation-intro-placeholder {
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--buleme-light-blue);

    color: var(--buleme-blue);

    font-family: "Oswald", sans-serif !important;
    font-size: 28px !important;
    font-weight: 600;

    text-align: center;

    border: 2px solid var(--buleme-gold);
}


/* =========================================================
   SERVICES
========================================================= */

.buleme-formation-services {
    position: relative;

    padding: 100px 0;

    background: #f4f8fb;
}


/* Gold line at top */

.buleme-formation-services::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--buleme-gold);
}


/* Section heading */

.buleme-formation-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.buleme-formation-heading .buleme-section-label {
    justify-content: center;
}


/* Heading title */

.buleme-formation-heading h2 {
    position: relative;

    color: var(--buleme-deep-blue);

    font-size: 42px;

    margin-bottom: 28px;
    padding-bottom: 22px;
}


/* Centered gold line */

.buleme-formation-heading h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 70px;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-heading p {
    color: #555555;

    margin: 0 auto;

    max-width: 750px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.buleme-formation-service-grid {
    row-gap: 30px;
}


.buleme-formation-service-grid > div {
    display: flex;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.buleme-formation-service-card {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 35px;

    background: var(--buleme-white);

    border-top: 5px solid var(--buleme-blue);
    border-bottom: 3px solid var(--buleme-gold);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-top-color 0.3s ease;
}


/* Gold corner */

.buleme-formation-service-card::after {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 45px;
    height: 45px;

    border-top: 3px solid var(--buleme-gold);
    border-right: 3px solid var(--buleme-gold);
}


.buleme-formation-service-card:hover {
    transform: translateY(-8px);

    border-top-color: var(--buleme-gold);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   SERVICE TOP
========================================================= */

.buleme-formation-service-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--buleme-border);
}


.buleme-formation-service-number {
    font-family: "Oswald", sans-serif !important;

    font-size: 34px !important;
    font-weight: 600;

    color: var(--buleme-gold);
}


.buleme-formation-service-category {
    font-size: 14px !important;

    font-weight: 600;

    color: var(--buleme-blue);

    text-align: right;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.buleme-formation-service-card h3 {
    color: var(--buleme-deep-blue);

    font-size: 28px;

    margin-bottom: 20px;
}


/* Gold line beneath service title */

.buleme-formation-service-card h3::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 12px;

    background: var(--buleme-gold);
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.buleme-formation-service-description {
    flex-grow: 1;
}


.buleme-formation-service-description p {
    color: #555555;

    margin-bottom: 15px;
}


/* =========================================================
   SERVICE FEATURES
========================================================= */

.buleme-formation-service-features {
    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid var(--buleme-border);
}


.buleme-formation-service-features ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.buleme-formation-service-features li {
    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: #444444;
}


/* Gold check */

.buleme-formation-service-features li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--buleme-gold);

    font-weight: 700;
}


/* =========================================================
   APPROACH
========================================================= */

.buleme-formation-approach {
    position: relative;

    padding: 100px 0;

    background: var(--buleme-white);
}


/* Gold top line */

.buleme-formation-approach::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-approach-heading {
    padding-right: 40px;
}


.buleme-formation-approach-heading h2 {
    position: relative;

    color: var(--buleme-deep-blue);

    font-size: 42px;

    margin-bottom: 30px;

    padding-bottom: 22px;
}


.buleme-formation-approach-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 65px;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-approach-heading p {
    color: #555555;
}


/* =========================================================
   APPROACH LIST
========================================================= */

.buleme-formation-approach-list {
    position: relative;

    border-left: 3px solid var(--buleme-gold);
}


.buleme-formation-approach-item {
    position: relative;

    display: flex;

    gap: 25px;

    padding: 25px 0 25px 30px;

    border-bottom: 1px solid var(--buleme-border);
}


/* Blue number */

.buleme-formation-approach-item > span {
    min-width: 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--buleme-blue);

    color: var(--buleme-white);

    font-family: "Oswald", sans-serif !important;

    font-size: 18px !important;
    font-weight: 600;

    border: 2px solid var(--buleme-gold);

    flex-shrink: 0;
}


/* Approach heading */

.buleme-formation-approach-item h3 {
    color: var(--buleme-deep-blue);

    font-size: 23px;

    margin-bottom: 10px;
}


.buleme-formation-approach-item p {
    color: #555555;

    margin: 0;
}


/* =========================================================
   ADVANTAGES
========================================================= */

.buleme-formation-advantages {
    position: relative;

    padding: 100px 0;

    background: var(--buleme-light-blue);
}


/* Gold accent */

.buleme-formation-advantages::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 7px;
    height: 100%;

    background: var(--buleme-gold);
}


.buleme-formation-advantages h2 {
    position: relative;

    color: var(--buleme-deep-blue);

    font-size: 42px;

    margin-bottom: 30px;

    padding-bottom: 22px;
}


.buleme-formation-advantages h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 65px;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-advantages p {
    color: #555555;
}


/* =========================================================
   ADVANTAGES LIST
========================================================= */

.buleme-formation-advantages-list {
    padding-left: 35px;
}


.buleme-formation-advantage-item {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(8, 121, 183, 0.18);
}


.buleme-formation-check {
    position: relative;

    width: 36px;
    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--buleme-blue);

    color: var(--buleme-white) !important;

    border-radius: 50%;

    border: 2px solid var(--buleme-gold);

    font-weight: 700;

    font-size: 14px !important;
}


/* =========================================================
   CTA
========================================================= */

.buleme-formation-cta {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            var(--buleme-dark-blue) 0%,
            var(--buleme-blue) 100%
        );

    overflow: hidden;
}


/* Gold top line */

.buleme-formation-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--buleme-gold);
}


/* Decorative gold circle */

.buleme-formation-cta::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -80px;

    width: 220px;
    height: 220px;

    border: 3px solid rgba(201, 162, 39, 0.35);

    border-radius: 50%;
}


.buleme-formation-cta-inner {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.buleme-formation-cta-inner .buleme-section-label {
    color: var(--buleme-gold);
}


.buleme-formation-cta-inner h2 {
    position: relative;

    color: var(--buleme-white);

    font-size: 44px;

    margin-bottom: 30px;

    padding-bottom: 22px;
}


/* CTA title gold line */

.buleme-formation-cta-inner h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 75px;
    height: 3px;

    background: var(--buleme-gold);
}


.buleme-formation-cta-inner p {
    color: var(--buleme-white);

    margin-bottom: 32px;

    font-size: 15px;
}


/* CTA button */

.buleme-formation-cta-inner .buleme-formation-btn-primary {
    background: var(--buleme-white);

    color: var(--buleme-blue) !important;

    border-color: var(--buleme-gold);
}


.buleme-formation-cta-inner .buleme-formation-btn-primary:hover {
    background: var(--buleme-gold);

    color: var(--buleme-white) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .buleme-formation-hero {
        min-height: 600px;
    }

    .buleme-formation-hero-content {
        max-width: 600px;
        padding: 70px 0;
    }

    .buleme-formation-hero-content h1 {
        font-size: 46px;
    }

    .buleme-formation-intro-content {
        padding-right: 0;

        margin-bottom: 40px;
    }

    .buleme-formation-intro-content h2,
    .buleme-formation-heading h2,
    .buleme-formation-approach-heading h2,
    .buleme-formation-advantages h2 {
        font-size: 36px;
    }

    .buleme-formation-advantages-list {
        padding-left: 0;

        margin-top: 40px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 767px) {

    .buleme-formation-hero {
        min-height: 650px;
    }


    .buleme-formation-hero-image img {
        object-position: 65% center;
    }


    .buleme-formation-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 61, 96, 0.97) 0%,
                rgba(6, 79, 119, 0.90) 60%,
                rgba(7, 90, 133, 0.65) 100%
            );
    }


    .buleme-formation-hero-content {
        padding: 60px 15px;
    }


    .buleme-formation-hero-content h1 {
        font-size: 38px;
    }


    .buleme-formation-hero-content p {
        font-size: 14px;
    }


    .buleme-formation-intro,
    .buleme-formation-services,
    .buleme-formation-approach,
    .buleme-formation-advantages,
    .buleme-formation-cta {
        padding: 70px 0;
    }


    .buleme-formation-intro-content h2,
    .buleme-formation-heading h2,
    .buleme-formation-approach-heading h2,
    .buleme-formation-advantages h2 {
        font-size: 32px;
    }


    .buleme-formation-intro-image img,
    .buleme-formation-intro-placeholder {
        height: 350px;
        min-height: 350px;
    }


    .buleme-formation-service-card {
        padding: 28px;
    }


    .buleme-formation-service-card h3 {
        font-size: 25px;
    }


    .buleme-formation-approach-heading {
        padding-right: 0;

        margin-bottom: 35px;
    }


    .buleme-formation-approach-item {
        padding-left: 20px;
    }


    .buleme-formation-cta-inner h2 {
        font-size: 34px;
    }


    .buleme-formation-advantages::before {
        width: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .buleme-formation-hero-content h1 {
        font-size: 32px;
    }


    .buleme-formation-service-top {
        align-items: flex-start;

        gap: 15px;
    }


    .buleme-formation-service-number {
        font-size: 30px !important;
    }


    .buleme-formation-service-category {
        font-size: 14px !important;
    }


    .buleme-formation-approach-item {
        gap: 15px;
    }


    .buleme-formation-approach-item > span {
        min-width: 42px;

        width: 42px;

        height: 42px;
    }


    .buleme-formation-btn {
        width: 100%;

        text-align: center;
    }


    .buleme-formation-page .buleme-section-label {
        font-size: 14px !important;

        letter-spacing: 1.5px;
    }

}
/* =========================================================
   BULEME COMPANY SARL
   COMPTABILITÉ ET FISCALITÉ
   COMPLETE PAGE CSS
========================================================= */


/* =========================================================
   01. DESIGN VARIABLES
========================================================= */

.buleme-compta-page {

    --buleme-blue: #0879b7;
    --buleme-blue-dark: #075b8b;
    --buleme-blue-deep: #063f61;

    --buleme-gold: #c9a227;
    --buleme-gold-light: #dfc45a;

    --buleme-white: #ffffff;
    --buleme-black: #111111;

    --buleme-text: #444444;
    --buleme-text-light: #666666;

    --buleme-light: #f4f8fb;
    --buleme-light-blue: #eaf4f9;

    --buleme-border: #e1e7eb;

    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;

    color: var(--buleme-text);

    overflow: hidden;
}


/* =========================================================
   02. RESET / GLOBAL
========================================================= */

.buleme-compta-page *,
.buleme-compta-page *::before,
.buleme-compta-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   03. TYPOGRAPHY
========================================================= */

.buleme-compta-page h1,
.buleme-compta-page h2,
.buleme-compta-page h3,
.buleme-compta-page h4,
.buleme-compta-page h5,
.buleme-compta-page h6 {

    font-family: "Oswald", sans-serif !important;

    font-weight: 600;

    line-height: 1.2;

    margin-top: 0;

    color: var(--buleme-blue-deep);
}


.buleme-compta-page p,
.buleme-compta-page li,
.buleme-compta-page a,
.buleme-compta-page span,
.buleme-compta-page div {

    font-family: "Poppins", sans-serif;
}


/* Minimum font size */

.buleme-compta-page p,
.buleme-compta-page li {

    font-size: 14px !important;

    line-height: 1.8;
}


/* =========================================================
   04. SECTION LABEL
========================================================= */

.buleme-compta-page .buleme-section-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    color: var(--buleme-gold);

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Gold line after label */

.buleme-compta-page .buleme-section-label::after {

    content: "";

    width: 48px;

    height: 2px;

    display: block;

    background: var(--buleme-gold);

    flex-shrink: 0;
}


/* =========================================================
   05. HERO SECTION
========================================================= */

.buleme-compta-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--buleme-blue-deep);
}


/* Hero image */

.buleme-compta-hero-image {

    position: absolute;

    inset: 0;

    z-index: 1;
}


.buleme-compta-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center right;

    display: block;
}


/* Hero overlay */

.buleme-compta-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 61, 96, 0.97) 0%,
            rgba(6, 75, 111, 0.92) 28%,
            rgba(7, 91, 134, 0.72) 52%,
            rgba(7, 91, 134, 0.35) 75%,
            rgba(7, 91, 134, 0.08) 100%
        );
}


/* Hero container */

.buleme-compta-hero .container {

    position: relative;

    z-index: 3;
}


/* Hero content */

.buleme-compta-hero-content {

    max-width: 690px;

    padding: 85px 0;
}


/* Hero label */

.buleme-compta-hero-content .buleme-section-label {

    color: var(--buleme-gold);
}


/* Hero title */

.buleme-compta-hero-content h1 {

    position: relative;

    color: var(--buleme-white) !important;

    font-size: 58px;

    line-height: 1.12;

    margin-bottom: 28px;

    padding-bottom: 25px;
}


/* Gold line under title */

.buleme-compta-hero-content h1::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 95px;

    height: 4px;

    background: var(--buleme-gold);
}


/* Hero paragraph */

.buleme-compta-hero-content p {

    max-width: 650px;

    color: var(--buleme-white) !important;

    font-size: 16px !important;

    line-height: 1.9;

    margin-bottom: 32px;
}


/* =========================================================
   06. BUTTONS
========================================================= */

.buleme-compta-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 14px 32px;

    border-radius: 2px;

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    text-decoration: none !important;

    transition: all 0.3s ease;

    cursor: pointer;
}


/* Primary button */

.buleme-compta-btn-primary {

    background: var(--buleme-blue);

    color: var(--buleme-white) !important;

    border: 2px solid var(--buleme-gold);
}


/* Gold underline */

.buleme-compta-btn-primary::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 100%;

    height: 3px;

    background: var(--buleme-gold);

    transition: all 0.3s ease;
}


.buleme-compta-btn-primary:hover {

    background: var(--buleme-gold);

    color: var(--buleme-white) !important;

    border-color: var(--buleme-gold);
}


.buleme-compta-btn-primary:hover::after {

    bottom: -7px;
}


/* =========================================================
   07. INTRODUCTION
========================================================= */

.buleme-compta-intro {

    position: relative;

    padding: 105px 0;

    background: var(--buleme-white);
}


/* Top blue/gold line */

.buleme-compta-intro::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--buleme-blue) 0%,
            var(--buleme-blue) 72%,
            var(--buleme-gold) 72%,
            var(--buleme-gold) 100%
        );
}


.buleme-compta-intro-content {

    padding-right: 45px;
}


/* Intro heading */

.buleme-compta-intro-content h2 {

    position: relative;

    font-size: 43px;

    line-height: 1.2;

    color: var(--buleme-blue-deep);

    margin-bottom: 30px;

    padding-bottom: 22px;
}


/* Gold heading line */

.buleme-compta-intro-content h2::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 68px;

    height: 3px;

    background: var(--buleme-gold);
}


/* Intro text */

.buleme-compta-text p {

    color: var(--buleme-text);

    margin-bottom: 18px;
}


/* =========================================================
   08. INTRODUCTION IMAGE
========================================================= */

.buleme-compta-intro-image {

    position: relative;

    min-height: 460px;

    overflow: hidden;

    border-left: 5px solid var(--buleme-gold);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);
}


/* Gold corner */

.buleme-compta-intro-image::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 80px;

    height: 80px;

    border-right: 5px solid var(--buleme-gold);

    border-bottom: 5px solid var(--buleme-gold);

    pointer-events: none;
}


.buleme-compta-intro-image img {

    display: block;

    width: 100%;

    height: 460px;

    object-fit: cover;
}


/* Placeholder */

.buleme-compta-intro-placeholder {

    position: relative;

    min-height: 460px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background: var(--buleme-light-blue);

    border-left: 5px solid var(--buleme-gold);

    border-right: 1px solid var(--buleme-border);

    border-top: 1px solid var(--buleme-border);

    border-bottom: 1px solid var(--buleme-border);

    text-align: center;
}


.buleme-compta-intro-placeholder span {

    font-family: "Oswald", sans-serif !important;

    font-size: 28px !important;

    font-weight: 600;

    color: var(--buleme-blue);

    letter-spacing: 1px;
}


/* =========================================================
   09. SERVICES SECTION
========================================================= */

.buleme-compta-services {

    position: relative;

    padding: 105px 0;

    background: var(--buleme-light);
}


/* Gold top line */

.buleme-compta-services::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: var(--buleme-gold);
}


/* Services heading */

.buleme-compta-heading {

    max-width: 900px;

    margin: 0 auto 60px;

    text-align: center;
}


.buleme-compta-heading .buleme-section-label {

    justify-content: center;
}


/* Services heading title */

.buleme-compta-heading h2 {

    position: relative;

    font-size: 43px;

    line-height: 1.2;

    color: var(--buleme-blue-deep);

    margin-bottom: 28px;

    padding-bottom: 22px;
}


/* Center gold line */

.buleme-compta-heading h2::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    width: 72px;

    height: 3px;

    background: var(--buleme-gold);
}


.buleme-compta-heading p {

    max-width: 760px;

    margin: 0 auto;

    color: var(--buleme-text-light);
}


/* =========================================================
   10. SERVICE GRID
========================================================= */

.buleme-compta-service-grid {

    row-gap: 30px;
}


.buleme-compta-service-grid > div {

    display: flex;
}


/* =========================================================
   11. SERVICE CARDS
========================================================= */

.buleme-compta-service-card {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    padding: 36px;

    background: var(--buleme-white);

    border-top: 5px solid var(--buleme-blue);

    border-bottom: 3px solid var(--buleme-gold);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-top-color 0.3s ease;
}


/* Gold corner decoration */

.buleme-compta-service-card::after {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 48px;

    height: 48px;

    border-top: 3px solid var(--buleme-gold);

    border-right: 3px solid var(--buleme-gold);
}


.buleme-compta-service-card:hover {

    transform: translateY(-8px);

    border-top-color: var(--buleme-gold);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.13);
}


/* =========================================================
   12. SERVICE CARD TOP
========================================================= */

.buleme-compta-service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--buleme-border);
}


.buleme-compta-service-number {

    font-family: "Oswald", sans-serif !important;

    font-size: 36px !important;

    font-weight: 600;

    line-height: 1;

    color: var(--buleme-gold);
}


.buleme-compta-service-category {

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    font-weight: 600;

    line-height: 1.4;

    color: var(--buleme-blue);

    text-align: right;
}


/* =========================================================
   13. SERVICE TITLE
========================================================= */

.buleme-compta-service-card h3 {

    position: relative;

    font-size: 29px;

    line-height: 1.25;

    color: var(--buleme-blue-deep);

    margin-bottom: 23px;

    padding-bottom: 15px;
}


/* Gold line */

.buleme-compta-service-card h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 48px;

    height: 3px;

    background: var(--buleme-gold);
}


/* =========================================================
   14. SERVICE DESCRIPTION
========================================================= */

.buleme-compta-service-description {

    flex-grow: 1;
}


.buleme-compta-service-description p {

    color: var(--buleme-text);

    margin-bottom: 15px;
}


/* =========================================================
   15. SERVICE FEATURES
========================================================= */

.buleme-compta-service-features {

    margin-top: 25px;

    padding-top: 24px;

    border-top: 1px solid var(--buleme-border);
}


.buleme-compta-service-features ul {

    list-style: none;

    margin: 0;

    padding: 0;
}


.buleme-compta-service-features li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: var(--buleme-text);

    font-size: 14px !important;

    line-height: 1.7;
}


/* Gold check */

.buleme-compta-service-features li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--buleme-gold);

    font-weight: 700;

    font-size: 15px;
}


/* =========================================================
   16. APPROACH SECTION
========================================================= */

.buleme-compta-approach {

    position: relative;

    padding: 105px 0;

    background: var(--buleme-white);
}


/* Gold line */

.buleme-compta-approach::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: var(--buleme-gold);
}


.buleme-compta-approach-heading {

    padding-right: 40px;
}


.buleme-compta-approach-heading h2 {

    position: relative;

    font-size: 43px;

    line-height: 1.2;

    color: var(--buleme-blue-deep);

    margin-bottom: 30px;

    padding-bottom: 22px;
}


.buleme-compta-approach-heading h2::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 68px;

    height: 3px;

    background: var(--buleme-gold);
}


.buleme-compta-approach-heading p {

    color: var(--buleme-text);
}


/* =========================================================
   17. APPROACH LIST
========================================================= */

.buleme-compta-approach-list {

    position: relative;

    border-left: 3px solid var(--buleme-gold);
}


.buleme-compta-approach-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    padding: 25px 0 25px 30px;

    border-bottom: 1px solid var(--buleme-border);
}


.buleme-compta-approach-item:last-child {

    border-bottom: none;
}


/* Approach number */

.buleme-compta-approach-item > span {

    min-width: 50px;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--buleme-blue);

    border: 2px solid var(--buleme-gold);

    color: var(--buleme-white);

    font-family: "Oswald", sans-serif !important;

    font-size: 18px !important;

    font-weight: 600;

    flex-shrink: 0;
}


/* Approach title */

.buleme-compta-approach-item h3 {

    font-size: 24px;

    color: var(--buleme-blue-deep);

    margin-bottom: 10px;
}


/* Approach paragraph */

.buleme-compta-approach-item p {

    color: var(--buleme-text-light);

    margin: 0;
}


/* =========================================================
   18. ADVANTAGES SECTION
========================================================= */

.buleme-compta-advantages {

    position: relative;

    padding: 105px 0;

    background: var(--buleme-light-blue);
}


/* Gold vertical accent */

.buleme-compta-advantages::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;

    background: var(--buleme-gold);
}


.buleme-compta-advantages h2 {

    position: relative;

    font-size: 43px;

    line-height: 1.2;

    color: var(--buleme-blue-deep);

    margin-bottom: 30px;

    padding-bottom: 22px;
}


/* Gold heading line */

.buleme-compta-advantages h2::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 68px;

    height: 3px;

    background: var(--buleme-gold);
}


.buleme-compta-advantages > .container > .row > .col-lg-5 > p {

    color: var(--buleme-text);

    margin-bottom: 0;
}


/* =========================================================
   19. ADVANTAGES LIST
========================================================= */

.buleme-compta-advantages-list {

    padding-left: 35px;
}


.buleme-compta-advantage-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(8, 121, 183, 0.18);

    color: var(--buleme-text);

    font-size: 14px !important;

    line-height: 1.7;
}


.buleme-compta-advantage-item:last-child {

    border-bottom: none;
}


/* Check circle */

.buleme-compta-check {

    width: 37px;

    height: 37px;

    min-width: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--buleme-blue);

    border: 2px solid var(--buleme-gold);

    color: var(--buleme-white) !important;

    font-size: 14px !important;

    font-weight: 700;
}


/* =========================================================
   20. OBJECTIVE SECTION
========================================================= */

.buleme-compta-objective {

    position: relative;

    padding: 95px 0;

    background: var(--buleme-white);

    overflow: hidden;
}


/* Gold top accent */

.buleme-compta-objective::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--buleme-gold) 0%,
            var(--buleme-gold) 25%,
            var(--buleme-blue) 25%,
            var(--buleme-blue) 100%
        );
}


.buleme-compta-objective-inner {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    padding: 20px;
}


/* Objective heading */

.buleme-compta-objective-inner h2 {

    position: relative;

    font-size: 43px;

    line-height: 1.2;

    color: var(--buleme-blue-deep);

    margin-bottom: 30px;

    padding-bottom: 22px;
}


/* Gold centered line */

.buleme-compta-objective-inner h2::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    width: 72px;

    height: 3px;

    background: var(--buleme-gold);
}


.buleme-compta-objective-inner p {

    max-width: 800px;

    margin: 0 auto;

    color: var(--buleme-text);

    font-size: 15px !important;

    line-height: 1.9;
}


/* =========================================================
   21. CTA SECTION
========================================================= */

.buleme-compta-cta {

    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            var(--buleme-blue-deep) 0%,
            var(--buleme-blue) 100%
        );

    overflow: hidden;
}


/* Gold top bar */

.buleme-compta-cta::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: var(--buleme-gold);
}


/* Decorative gold circle */

.buleme-compta-cta::after {

    content: "";

    position: absolute;

    right: -90px;

    bottom: -90px;

    width: 250px;

    height: 250px;

    border: 3px solid rgba(201, 162, 39, 0.35);

    border-radius: 50%;
}


.buleme-compta-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* CTA label */

.buleme-compta-cta-inner .buleme-section-label {

    color: var(--buleme-gold);
}


/* CTA heading */

.buleme-compta-cta-inner h2 {

    position: relative;

    color: var(--buleme-white) !important;

    font-size: 45px;

    line-height: 1.2;

    margin-bottom: 30px;

    padding-bottom: 23px;
}


/* Gold line */

.buleme-compta-cta-inner h2::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    width: 78px;

    height: 3px;

    background: var(--buleme-gold);
}


/* CTA paragraph */

.buleme-compta-cta-inner p {

    max-width: 780px;

    margin: 0 auto 34px;

    color: var(--buleme-white) !important;

    font-size: 15px !important;

    line-height: 1.9;
}


/* CTA button */

.buleme-compta-cta-inner .buleme-compta-btn-primary {

    background: var(--buleme-white);

    color: var(--buleme-blue) !important;

    border-color: var(--buleme-gold);
}


.buleme-compta-cta-inner .buleme-compta-btn-primary:hover {

    background: var(--buleme-gold);

    color: var(--buleme-white) !important;
}


/* =========================================================
   22. LINKS
========================================================= */

.buleme-compta-page a {

    transition: all 0.3s ease;
}


/* =========================================================
   23. WORDPRESS IMAGE SAFETY
========================================================= */

.buleme-compta-page img {

    max-width: 100%;

    height: auto;
}


/* =========================================================
   24. BOOTSTRAP ROW SAFETY
========================================================= */

.buleme-compta-page .row {

    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

}


/* =========================================================
   25. TABLET
========================================================= */

@media (max-width: 1199px) {

    .buleme-compta-hero-content h1 {

        font-size: 52px;
    }


    .buleme-compta-intro-content h2,
    .buleme-compta-heading h2,
    .buleme-compta-approach-heading h2,
    .buleme-compta-advantages h2,
    .buleme-compta-objective-inner h2 {

        font-size: 39px;
    }


    .buleme-compta-service-card {

        padding: 30px;
    }


    .buleme-compta-service-card h3 {

        font-size: 27px;
    }

}


/* =========================================================
   26. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .buleme-compta-hero {

        min-height: 610px;
    }


    .buleme-compta-hero-content {

        max-width: 620px;

        padding: 75px 0;
    }


    .buleme-compta-hero-content h1 {

        font-size: 46px;
    }


    .buleme-compta-intro-content {

        padding-right: 0;

        margin-bottom: 45px;
    }


    .buleme-compta-intro-image,
    .buleme-compta-intro-image img,
    .buleme-compta-intro-placeholder {

        min-height: 400px;

        height: 400px;
    }


    .buleme-compta-approach-heading {

        padding-right: 0;

        margin-bottom: 45px;
    }


    .buleme-compta-advantages-list {

        padding-left: 0;

        margin-top: 45px;
    }


    .buleme-compta-services,
    .buleme-compta-intro,
    .buleme-compta-approach,
    .buleme-compta-advantages,
    .buleme-compta-objective,
    .buleme-compta-cta {

        padding-top: 85px;

        padding-bottom: 85px;
    }

}


/* =========================================================
   27. MOBILE
========================================================= */

@media (max-width: 767px) {

    .buleme-compta-page {

        font-size: 14px !important;
    }


    /* Hero */

    .buleme-compta-hero {

        min-height: 650px;
    }


    .buleme-compta-hero-image img {

        object-position: 65% center;
    }


    .buleme-compta-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(4, 61, 96, 0.98) 0%,
                rgba(6, 75, 111, 0.92) 55%,
                rgba(7, 91, 134, 0.65) 100%
            );
    }


    .buleme-compta-hero-content {

        padding: 65px 15px;
    }


    .buleme-compta-hero-content h1 {

        font-size: 38px;

        line-height: 1.15;
    }


    .buleme-compta-hero-content p {

        font-size: 14px !important;

        line-height: 1.8;
    }


    /* Sections */

    .buleme-compta-intro,
    .buleme-compta-services,
    .buleme-compta-approach,
    .buleme-compta-advantages,
    .buleme-compta-objective,
    .buleme-compta-cta {

        padding: 70px 0;
    }


    /* Section titles */

    .buleme-compta-intro-content h2,
    .buleme-compta-heading h2,
    .buleme-compta-approach-heading h2,
    .buleme-compta-advantages h2,
    .buleme-compta-objective-inner h2 {

        font-size: 32px;

        line-height: 1.25;
    }


    /* Intro image */

    .buleme-compta-intro-image,
    .buleme-compta-intro-image img,
    .buleme-compta-intro-placeholder {

        min-height: 350px;

        height: 350px;
    }


    /* Service cards */

    .buleme-compta-service-card {

        padding: 28px;

        margin-bottom: 0;
    }


    .buleme-compta-service-card h3 {

        font-size: 25px;
    }


    /* Approach */

    .buleme-compta-approach-item {

        gap: 18px;

        padding-left: 20px;
    }


    .buleme-compta-approach-item > span {

        min-width: 45px;

        width: 45px;

        height: 45px;
    }


    .buleme-compta-approach-item h3 {

        font-size: 21px;
    }


    /* Advantages */

    .buleme-compta-advantages::before {

        width: 4px;
    }


    /* CTA */

    .buleme-compta-cta-inner h2 {

        font-size: 34px;
    }


    .buleme-compta-cta-inner p {

        font-size: 14px !important;
    }


    /* Buttons */

    .buleme-compta-btn {

        min-height: 52px;

        padding: 13px 25px;

        font-size: 14px !important;
    }

}


/* =========================================================
   28. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* Hero */

    .buleme-compta-hero {

        min-height: 620px;
    }


    .buleme-compta-hero-content {

        padding: 55px 15px;
    }


    .buleme-compta-hero-content h1 {

        font-size: 32px;
    }


    /* Labels */

    .buleme-compta-page .buleme-section-label {

        font-size: 14px !important;

        letter-spacing: 1.4px;

        gap: 10px;
    }


    .buleme-compta-page .buleme-section-label::after {

        width: 35px;
    }


    /* Titles */

    .buleme-compta-intro-content h2,
    .buleme-compta-heading h2,
    .buleme-compta-approach-heading h2,
    .buleme-compta-advantages h2,
    .buleme-compta-objective-inner h2 {

        font-size: 29px;
    }


    /* Service */

    .buleme-compta-service-top {

        align-items: flex-start;

        gap: 12px;
    }


    .buleme-compta-service-number {

        font-size: 30px !important;
    }


    .buleme-compta-service-category {

        font-size: 14px !important;

        text-align: right;
    }


    .buleme-compta-service-card h3 {

        font-size: 23px;
    }


    /* Approach */

    .buleme-compta-approach-item {

        padding-left: 15px;

        gap: 13px;
    }


    .buleme-compta-approach-item > span {

        min-width: 42px;

        width: 42px;

        height: 42px;

        font-size: 16px !important;
    }


    .buleme-compta-approach-item h3 {

        font-size: 20px;
    }


    /* CTA */

    .buleme-compta-cta-inner h2 {

        font-size: 30px;
    }


    /* Full-width mobile button */

    .buleme-compta-btn {

        width: 100%;

        text-align: center;
    }


    /* Objective */

    .buleme-compta-objective-inner {

        padding-left: 10px;

        padding-right: 10px;
    }

}


/* =========================================================
   29. EXTRA SAFETY - NEVER ALLOW TEXT BELOW 14PX
========================================================= */

.buleme-compta-page p,
.buleme-compta-page li,
.buleme-compta-page a,
.buleme-compta-page span {

    font-size: max(14px, 1em);
}


/* =========================================================
   END
========================================================= */
/* =========================================================
   BULEME COMPANY
   CONTACT FORM 7
   BLUE + GOLD DESIGN
   ========================================================= */


/* ---------------------------------------------------------
   MAIN FORM CONTAINER
   --------------------------------------------------------- */

.buleme-contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}


/* ---------------------------------------------------------
   FORM GROUP
   --------------------------------------------------------- */

.buleme-contact-form .buleme-form-group {
    position: relative;
    width: 100%;
}


/* ---------------------------------------------------------
   LABEL
   --------------------------------------------------------- */

.buleme-contact-form .buleme-form-group label {
    display: block;
    margin-bottom: 9px;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;

    color: #002b55;

    letter-spacing: 0.2px;
}


/* Gold line underneath label */

.buleme-contact-form .buleme-form-group label::after {
    content: "";
    display: block;

    width: 32px;
    height: 2px;

    margin-top: 6px;

    background: #c9a227;
}


/* ---------------------------------------------------------
   INPUTS
   --------------------------------------------------------- */

.buleme-contact-form input[type="text"],
.buleme-contact-form input[type="email"],
.buleme-contact-form textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d7dee6;

    border-radius: 2px;

    background: #ffffff;

    color: #333333;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    padding: 14px 16px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* ---------------------------------------------------------
   INPUT HEIGHT
   --------------------------------------------------------- */

.buleme-contact-form input[type="text"],
.buleme-contact-form input[type="email"] {

    min-height: 50px;
}


/* ---------------------------------------------------------
   MESSAGE BOX
   --------------------------------------------------------- */

.buleme-contact-form textarea {

    min-height: 160px;

    resize: vertical;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   PLACEHOLDER
   --------------------------------------------------------- */

.buleme-contact-form input::placeholder,
.buleme-contact-form textarea::placeholder {

    color: #8995a3;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    opacity: 1;
}


/* ---------------------------------------------------------
   INPUT FOCUS
   --------------------------------------------------------- */

.buleme-contact-form input:focus,
.buleme-contact-form textarea:focus {

    border-color: #c9a227;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.10);

    outline: none;
}


/* ---------------------------------------------------------
   SUBMIT AREA
   --------------------------------------------------------- */

.buleme-form-submit {

    margin-top: 8px;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */

.buleme-contact-form input[type="submit"],
.buleme-contact-form .buleme-submit {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 14px 30px;

    border: 1px solid #c9a227;

    border-radius: 2px;

    background: #003b70;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* ---------------------------------------------------------
   BUTTON HOVER
   --------------------------------------------------------- */

.buleme-contact-form input[type="submit"]:hover,
.buleme-contact-form .buleme-submit:hover {

    background: #c9a227;

    border-color: #c9a227;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   BUTTON ACTIVE
   --------------------------------------------------------- */

.buleme-contact-form input[type="submit"]:active,
.buleme-contact-form .buleme-submit:active {

    transform: translateY(0);

    box-shadow: none;
}


/* ---------------------------------------------------------
   CF7 VALIDATION
   --------------------------------------------------------- */

.buleme-contact-form .wpcf7-not-valid {

    border-color: #c9a227 !important;

    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.08);
}


/* ---------------------------------------------------------
   VALIDATION MESSAGE
   --------------------------------------------------------- */

.buleme-contact-form .wpcf7-not-valid-tip {

    margin-top: 6px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    color: #b08a16;
}


/* ---------------------------------------------------------
   SUCCESS MESSAGE
   --------------------------------------------------------- */

.buleme-contact-form .wpcf7-response-output {

    margin: 25px 0 0;

    padding: 14px 18px;

    border: 1px solid #c9a227 !important;

    background: #f8f9fa;

    color: #002b55;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   SPINNER
   --------------------------------------------------------- */

.buleme-contact-form .wpcf7-spinner {

    margin-left: 10px;

    vertical-align: middle;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .buleme-contact-form {
        padding: 5px 0;
    }

    .buleme-contact-form .buleme-form-group label {
        font-size: 14px;
    }

    .buleme-contact-form input[type="text"],
    .buleme-contact-form input[type="email"],
    .buleme-contact-form textarea {

        font-size: 14px;

        padding: 13px 14px;
    }

    .buleme-contact-form input[type="text"],
    .buleme-contact-form input[type="email"] {

        min-height: 48px;
    }

    .buleme-contact-form textarea {

        min-height: 140px;
    }

    .buleme-contact-form input[type="submit"],
    .buleme-contact-form .buleme-submit {

        width: 100%;

        min-height: 50px;

        padding: 14px 20px;

        font-size: 14px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .buleme-contact-form .buleme-form-group label {
        font-size: 14px;
    }

    .buleme-contact-form input[type="text"],
    .buleme-contact-form input[type="email"],
    .buleme-contact-form textarea {

        font-size: 14px;
    }

}

/* =========================================================
   BULEME COMPANY
   CONTACT PAGE
   BLUE + GOLD CORPORATE DESIGN
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.buleme-contact-page {
    font-family: "Poppins", sans-serif;
    color: #333333;
}

.buleme-contact-page h1,
.buleme-contact-page h2,
.buleme-contact-page h3,
.buleme-contact-page h4,
.buleme-contact-page h5,
.buleme-contact-page h6 {
    font-family: "Oswald", sans-serif;
}

.buleme-contact-page p,
.buleme-contact-page span,
.buleme-contact-page a,
.buleme-contact-page label {
    font-family: "Poppins", sans-serif;
}

.buleme-contact-page p,
.buleme-contact-page span,
.buleme-contact-page a,
.buleme-contact-page label {
    font-size: 14px;
}


/* =========================================================
   HERO
   ========================================================= */

.buleme-contact-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            #002b55 0%,
            #003b70 55%,
            #064b82 100%
        );

    overflow: hidden;
}


/* decorative gold line */

.buleme-contact-hero::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 5px;

    background: #c9a227;
}


.buleme-contact-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(201,162,39,0.12),
            transparent 35%
        );

    pointer-events: none;
}


.buleme-contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 80px 0;
}


/* =========================================================
   GOLD LABEL
   ========================================================= */

.buleme-contact-label {

    display: inline-block;

    position: relative;

    padding-left: 18px;

    margin-bottom: 18px;

    color: #c9a227;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.buleme-contact-label::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 5px;

    height: 28px;

    background: #c9a227;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.buleme-contact-hero h1 {

    margin: 0 0 22px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: clamp(36px, 5vw, 62px);

    font-weight: 600;

    line-height: 1.1;

    text-transform: uppercase;
}


.buleme-contact-hero p {

    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,0.88);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   MAIN CONTACT SECTION
   ========================================================= */

.buleme-contact-main {

    padding: 90px 0;

    background: #ffffff;
}


/* =========================================================
   INFORMATION COLUMN
   ========================================================= */

.buleme-contact-information h2 {

    margin: 0 0 20px;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 38px;

    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
}


.buleme-contact-intro {

    margin-bottom: 40px;

    color: #555555;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PERSON CARD
   ========================================================= */

.buleme-contact-person {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    position: relative;

    padding: 20px 0;

    border-bottom: 1px solid #e4e8ed;
}


.buleme-contact-person:first-of-type {

    border-top: 1px solid #e4e8ed;
}


/* Gold number */

.buleme-contact-person-icon {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #002b55;

    border-left: 3px solid #c9a227;
}


.buleme-contact-person-icon span {

    color: #c9a227;

    font-family: "Oswald", sans-serif;

    font-size: 14px;

    font-weight: 600;
}


/* Person content */

.buleme-contact-person-content h3 {

    margin: 0 0 6px;

    color: #c9a227;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.buleme-contact-person-content h4 {

    margin: 0 0 7px;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 21px;

    font-weight: 500;
}


.buleme-contact-person-content a {

    color: #555555;

    font-size: 14px;

    text-decoration: none;

    word-break: break-word;
}


.buleme-contact-person-content a:hover {

    color: #c9a227;
}


/* =========================================================
   COMPANY EMAIL
   ========================================================= */

.buleme-contact-company-email {

    margin-top: 30px;

    padding: 25px;

    background: #f3f5f7;

    border-left: 4px solid #c9a227;
}


.buleme-contact-email-label {

    display: block;

    margin-bottom: 7px;

    color: #002b55;

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;
}


.buleme-contact-company-email a {

    color: #003b70;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    word-break: break-word;
}


.buleme-contact-company-email a:hover {

    color: #c9a227;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.buleme-contact-form-wrapper {

    position: relative;

    padding: 45px;

    background: #f7f8fa;

    border-top: 4px solid #002b55;

    border-bottom: 1px solid #dce2e8;

    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}


.buleme-contact-form-wrapper::before {

    content: "";

    position: absolute;

    top: -4px;

    left: 0;

    width: 90px;

    height: 4px;

    background: #c9a227;
}


/* =========================================================
   FORM HEADER
   ========================================================= */

.buleme-contact-form-header {

    margin-bottom: 30px;
}


.buleme-contact-form-header h2 {

    margin: 0 0 14px;

    color: #002b55;

    font-family: "Oswald", sans-serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
}


.buleme-contact-form-header p {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM 7
   ========================================================= */

.buleme-contact-form {

    width: 100%;
}


/* CF7 rows */

.buleme-contact-form .row {

    margin-left: -10px;

    margin-right: -10px;
}


.buleme-contact-form .buleme-form-column {

    padding-left: 10px;

    padding-right: 10px;

    margin-bottom: 20px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.buleme-form-group {

    width: 100%;
}


.buleme-form-group label {

    display: block;

    margin-bottom: 8px;

    color: #002b55;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;
}


/* Gold line */

.buleme-form-group label::after {

    content: "";

    display: block;

    width: 28px;

    height: 2px;

    margin-top: 6px;

    background: #c9a227;
}


/* =========================================================
   FORM INPUTS
   ========================================================= */

.buleme-contact-form input[type="text"],
.buleme-contact-form input[type="email"],
.buleme-contact-form textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #d7dee5;

    border-radius: 2px;

    background: #ffffff;

    color: #333333;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.5;

    transition: all .3s ease;
}


.buleme-contact-form input[type="text"],
.buleme-contact-form input[type="email"] {

    min-height: 50px;
}


.buleme-contact-form textarea {

    min-height: 160px;

    resize: vertical;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.buleme-contact-form input::placeholder,
.buleme-contact-form textarea::placeholder {

    color: #929ba5;

    font-size: 14px;

    opacity: 1;
}


/* =========================================================
   FOCUS
   ========================================================= */

.buleme-contact-form input:focus,
.buleme-contact-form textarea:focus {

    outline: none;

    border-color: #c9a227;

    box-shadow: 0 0 0 3px rgba(201,162,39,.10);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.buleme-form-submit {

    margin-top: 5px;
}


.buleme-contact-form input[type="submit"] {

    display: inline-block;

    padding: 14px 30px;

    min-height: 50px;

    border: 1px solid #c9a227;

    border-radius: 2px;

    background: #002b55;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .4px;

    text-transform: uppercase;

    cursor: pointer;

    transition: all .3s ease;
}


.buleme-contact-form input[type="submit"]:hover {

    background: #c9a227;

    border-color: #c9a227;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 20px rgba(0,0,0,.12);
}


/* =========================================================
   CF7 VALIDATION
   ========================================================= */

.buleme-contact-form .wpcf7-not-valid {

    border-color: #c9a227 !important;
}


.buleme-contact-form .wpcf7-not-valid-tip {

    margin-top: 5px;

    color: #b18b1e;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}


.buleme-contact-form .wpcf7-response-output {

    margin: 20px 0 0;

    padding: 14px;

    border: 1px solid #c9a227 !important;

    background: #ffffff;

    color: #002b55;

    font-size: 14px;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.buleme-contact-bottom-cta {

    position: relative;

    padding: 85px 0;

    background: #002b55;

    overflow: hidden;
}


.buleme-contact-bottom-cta::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #c9a227;
}


.buleme-contact-bottom-inner {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.buleme-contact-bottom-inner h2 {

    margin: 10px 0 20px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 38px;

    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
}


.buleme-contact-bottom-inner p {

    max-width: 760px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.86);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.buleme-contact-button {

    display: inline-block;

    padding: 14px 28px;

    border: 1px solid #c9a227;

    background: transparent;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

    transition: all .3s ease;
}


.buleme-contact-button:hover {

    background: #c9a227;

    border-color: #c9a227;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-contact-main {

        padding: 70px 0;
    }

    .buleme-contact-information {

        margin-bottom: 20px;
    }

    .buleme-contact-form-wrapper {

        padding: 35px;
    }

    .buleme-contact-hero {

        min-height: 380px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-contact-hero {

        min-height: 360px;
    }

    .buleme-contact-hero-content {

        padding: 60px 15px;
    }

    .buleme-contact-hero h1 {

        font-size: 38px;
    }

    .buleme-contact-main {

        padding: 55px 0;
    }

    .buleme-contact-information h2 {

        font-size: 30px;
    }

    .buleme-contact-form-wrapper {

        padding: 25px 20px;
    }

    .buleme-contact-form-header h2 {

        font-size: 29px;
    }

    .buleme-contact-bottom-cta {

        padding: 60px 20px;
    }

    .buleme-contact-bottom-inner h2 {

        font-size: 30px;
    }

    .buleme-contact-form input[type="submit"] {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .buleme-contact-hero h1 {

        font-size: 32px;
    }

    .buleme-contact-person {

        gap: 12px;
    }

    .buleme-contact-person-icon {

        flex: 0 0 42px;

        width: 42px;

        height: 42px;
    }

    .buleme-contact-person-content h4 {

        font-size: 19px;
    }

    .buleme-contact-form-wrapper {

        padding: 22px 15px;
    }

}

/* =========================================================
   BULEME COMPANY SARL
   ALL SERVICES PAGE
   Bootstrap 5 Compatible
   Scoped CSS - Does Not Override Existing Service Pages
   ========================================================= */


/* =========================================================
   01. PAGE VARIABLES
   ========================================================= */

.buleme-all-services-page {
    --buleme-as-blue: #0066b3;
    --buleme-as-blue-dark: #004f8c;
    --buleme-as-deep: #071d35;
    --buleme-as-navy: #122b4a;
    --buleme-as-gold: #dcae28;
    --buleme-as-white: #ffffff;
    --buleme-as-light: #f5f6f7;
    --buleme-as-grey: #666666;
    --buleme-as-border: #e1e5e8;

    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #333333;

    font-family: "Poppins", sans-serif;
}


/* =========================================================
   02. BOX SIZING
   ========================================================= */

.buleme-all-services-page *,
.buleme-all-services-page *::before,
.buleme-all-services-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

.buleme-all-services-page h1,
.buleme-all-services-page h2,
.buleme-all-services-page h3,
.buleme-all-services-page h4,
.buleme-all-services-page h5,
.buleme-all-services-page h6 {
    font-family: "Oswald", sans-serif !important;
    margin-top: 0;
}

.buleme-all-services-page p,
.buleme-all-services-page li,
.buleme-all-services-page a,
.buleme-all-services-page span,
.buleme-all-services-page div {
    font-family: "Poppins", sans-serif;
}


/*
 * IMPORTANT:
 * Keep normal text at 14px or larger.
 */

.buleme-all-services-page p,
.buleme-all-services-page li,
.buleme-all-services-page a {
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   04. HERO
   ========================================================= */

.buleme-all-services-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4, 27, 54, 0.95) 0%,
            rgba(4, 27, 54, 0.86) 35%,
            rgba(4, 27, 54, 0.50) 65%,
            rgba(4, 27, 54, 0.20) 100%
        ),
        url("../images/services/services-hero.jpg") center center / cover no-repeat;

    color: #ffffff;
}


.buleme-all-services-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


.buleme-all-services-hero .container {
    position: relative;
    z-index: 2;
}


.buleme-all-services-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--buleme-as-gold);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.buleme-all-services-label span {
    display: inline-block;

    width: 38px;
    height: 3px;

    background: var(--buleme-as-gold);
}


.buleme-all-services-hero h1 {
    max-width: 850px;

    margin-bottom: 24px;

    color: #ffffff;

    font-size: 54px;
    font-weight: 600;
    line-height: 1.08;

    text-transform: uppercase;
}


.buleme-all-services-hero p {
    max-width: 700px;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.8;
}


.buleme-all-services-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buleme-all-services-btn-primary,
.buleme-all-services-btn-outline,
.buleme-all-services-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 12px 23px;

    text-decoration: none !important;

    font-size: 14px !important;
    font-weight: 600;

    transition: all 0.3s ease;
}


.buleme-all-services-btn-primary {
    background: var(--buleme-as-blue);
    border: 1px solid var(--buleme-as-blue);
    color: #ffffff !important;
}


.buleme-all-services-btn-primary:hover {
    background: var(--buleme-as-blue-dark);
    border-color: var(--buleme-as-blue-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
}


.buleme-all-services-btn-outline {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.7);
    color: #ffffff !important;
}


.buleme-all-services-btn-outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--buleme-as-deep) !important;
    transform: translateY(-2px);
}


.buleme-all-services-btn-secondary {
    background: transparent;
    border: 1px solid var(--buleme-as-blue);
    color: var(--buleme-as-blue) !important;
}


.buleme-all-services-btn-secondary:hover {
    background: var(--buleme-as-blue);
    color: #ffffff !important;
}


/* =========================================================
   05. INTRODUCTION
   ========================================================= */

.buleme-all-services-intro {
    padding: 85px 0 70px;
    background: #ffffff;
}


.buleme-all-services-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: var(--buleme-as-blue);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.buleme-all-services-section-label span {
    display: inline-block;

    width: 30px;
    height: 3px;

    background: var(--buleme-as-gold);
}


.buleme-all-services-section-label.centered {
    justify-content: center;
}


.buleme-all-services-section-label.light {
    color: #ffffff;
}


.buleme-all-services-intro h2,
.buleme-all-services-advantages h2 {
    margin-bottom: 0;

    color: var(--buleme-as-navy);

    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-all-services-intro p {
    margin: 0;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   06. QUICK SERVICE NAVIGATION
   ========================================================= */

.buleme-service-nav {
    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    height: 100%;
    min-height: 82px;

    padding: 15px;

    background: #f1f3f5;

    border-left: 3px solid var(--buleme-as-blue);

    color: var(--buleme-as-navy) !important;

    text-decoration: none !important;

    transition: all .3s ease;
}


.buleme-service-nav:hover {
    background: var(--buleme-as-deep);
    color: #ffffff !important;

    transform: translateY(-3px);
}


.buleme-service-nav-number {
    color: var(--buleme-as-gold);

    font-family: "Oswald", sans-serif !important;
    font-size: 22px !important;
    font-weight: 600;
}


.buleme-service-nav > span:last-child {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 600;
}


.buleme-service-nav i {
    color: var(--buleme-as-blue);
    font-size: 18px;
}


.buleme-service-nav:hover i {
    color: var(--buleme-as-gold);
}


/* =========================================================
   07. SERVICES SECTION
   ========================================================= */

.buleme-all-services-list {
    padding: 15px 0 90px;
    background: #f5f6f7;
}


/* =========================================================
   08. SERVICE BLOCK
   ========================================================= */

.buleme-all-service-block {
    position: relative;

    margin-bottom: 35px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.055);

    overflow: hidden;
}


.buleme-all-service-block:last-child {
    margin-bottom: 0;
}


/* =========================================================
   09. SERVICE IMAGE
   ========================================================= */

.buleme-all-service-image {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 470px;

    overflow: hidden;

    background: #dfe4e8;
}


.buleme-all-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 470px;

    object-fit: cover;
    object-position: center;

    transition: transform .5s ease;
}


.buleme-all-service-block:hover
.buleme-all-service-image img {
    transform: scale(1.035);
}


/* =========================================================
   SERVICE NUMBER
   ========================================================= */

.buleme-all-service-number {
    position: absolute;

    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 72px;

    background: var(--buleme-as-blue);

    color: #ffffff;

    font-family: "Oswald", sans-serif !important;
    font-size: 30px !important;
    font-weight: 600;
}


/* =========================================================
   10. SERVICE CONTENT
   ========================================================= */

.buleme-all-service-content {
    position: relative;

    height: 100%;

    padding: 50px 55px 45px;
}


.buleme-all-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    background: var(--buleme-as-blue);

    color: #ffffff;

    font-size: 22px;

    box-shadow: 0 7px 18px rgba(0,102,179,.20);
}


.buleme-all-service-label {
    margin-bottom: 8px;

    color: var(--buleme-as-gold);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.buleme-all-service-content h2 {
    margin-bottom: 18px;

    color: var(--buleme-as-navy);

    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;

    text-transform: uppercase;
}


.buleme-all-service-content p {
    color: #555555;

    font-size: 14px;
    line-height: 1.8;
}


.buleme-all-service-content p.buleme-all-service-lead {
    margin-bottom: 14px;

    color: #333333;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}


/* =========================================================
   11. FEATURES
   ========================================================= */

.buleme-all-service-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px 25px;

    margin: 28px 0 30px;

    padding-top: 25px;

    border-top: 1px solid var(--buleme-as-border);
}


.buleme-all-service-features > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


.buleme-all-service-features i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: var(--buleme-as-blue);

    font-size: 16px;
    font-weight: 700;
}


.buleme-all-service-features span {
    color: #555555;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   12. SERVICE LINK
   ========================================================= */

.buleme-all-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--buleme-as-blue) !important;

    font-size: 14px !important;
    font-weight: 700;

    text-decoration: none !important;

    transition: all .3s ease;
}


.buleme-all-service-link:hover {
    color: var(--buleme-as-blue-dark) !important;
    gap: 14px;
}


/* =========================================================
   13. APPROACH
   ========================================================= */

.buleme-all-services-approach {
    padding: 90px 0;

    background: var(--buleme-as-deep);

    color: #ffffff;
}


.buleme-all-services-approach h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-all-services-approach > .container > .row > .col-lg-5 > p {
    max-width: 560px;

    color: #d6dee7;

    font-size: 15px;
    line-height: 1.8;
}


.buleme-approach-list {
    border-top: 1px solid rgba(255,255,255,.16);
}


.buleme-approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255,255,255,.16);
}


.buleme-approach-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    background: var(--buleme-as-blue);

    color: #ffffff;

    font-family: "Oswald", sans-serif !important;
    font-size: 20px !important;
}


.buleme-approach-item h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 500;

    text-transform: uppercase;
}


.buleme-approach-item p {
    margin: 0;

    color: #d3dbe4;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   14. ADVANTAGES
   ========================================================= */

.buleme-all-services-advantages {
    padding: 90px 0;

    background: #ffffff;
}


.buleme-advantage-card {
    height: 100%;

    padding: 30px 25px;

    background: #f5f6f7;

    border-top: 3px solid var(--buleme-as-blue);

    transition: all .3s ease;
}


.buleme-advantage-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}


.buleme-advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 18px;

    background: var(--buleme-as-deep);

    color: var(--buleme-as-gold);

    font-size: 20px;
}


.buleme-advantage-card h3 {
    margin-bottom: 10px;

    color: var(--buleme-as-navy);

    font-size: 19px;
    font-weight: 600;

    text-transform: uppercase;
}


.buleme-advantage-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   15. CTA
   ========================================================= */

.buleme-all-services-cta {
    padding: 70px 0;

    background: #f5f6f7;
}


.buleme-all-services-cta-inner {
    max-width: 950px;

    margin: 0 auto;

    padding: 60px 50px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e1e5e8;

    box-shadow:
        0 10px 35px rgba(0,0,0,.06);
}


.buleme-all-services-cta h2 {
    max-width: 800px;

    margin: 0 auto 20px;

    color: var(--buleme-as-navy);

    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-all-services-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


.buleme-all-services-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}


.buleme-all-services-slogan {
    padding-top: 22px;

    border-top: 1px solid #e5e5e5;

    color: var(--buleme-as-gold);

    font-family: "Oswald", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================================
   16. TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-all-services-hero {
        min-height: 540px;
    }

    .buleme-all-services-hero h1 {
        font-size: 46px;
    }

    .buleme-all-services-intro,
    .buleme-all-services-advantages,
    .buleme-all-services-approach {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .buleme-all-services-intro h2,
    .buleme-all-services-advantages h2,
    .buleme-all-services-approach h2 {
        font-size: 34px;
    }

    .buleme-all-service-image,
    .buleme-all-service-image img {
        min-height: 400px;
    }

    .buleme-all-service-content {
        padding: 40px;
    }

    .buleme-all-service-content h2 {
        font-size: 34px;
    }

    .buleme-all-service-features {
        gap: 12px 18px;
    }

}


/* =========================================================
   17. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-all-services-hero {
        min-height: 620px;

        background:
            linear-gradient(
                90deg,
                rgba(4,27,54,.94),
                rgba(4,27,54,.78)
            ),
            url("../images/services/services-hero.jpg")
            center center / cover no-repeat;
    }

    .buleme-all-services-hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .buleme-all-services-hero p {
        font-size: 14px;
    }

    .buleme-all-services-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .buleme-all-services-intro h2,
    .buleme-all-services-advantages h2,
    .buleme-all-services-approach h2 {
        font-size: 30px;
    }

    .buleme-all-services-intro {
        padding: 55px 0;
    }

    .buleme-all-services-list {
        padding-bottom: 55px;
    }

    .buleme-all-service-block {
        margin-bottom: 25px;
    }

    .buleme-all-service-image,
    .buleme-all-service-image img {
        min-height: 300px;
        height: 300px;
    }

    .buleme-all-service-content {
        padding: 35px 25px;
    }

    .buleme-all-service-content h2 {
        font-size: 30px;
    }

    .buleme-all-service-content p.buleme-all-service-lead {
        font-size: 15px;
    }

    .buleme-all-service-features {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 24px;
        padding-top: 22px;
    }

    .buleme-all-services-approach {
        padding: 60px 0;
    }

    .buleme-approach-item {
        gap: 15px;
    }

    .buleme-approach-item > span {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .buleme-all-services-advantages {
        padding: 60px 0;
    }

    .buleme-all-services-cta {
        padding: 50px 0;
    }

    .buleme-all-services-cta-inner {
        padding: 40px 22px;
    }

    .buleme-all-services-cta h2 {
        font-size: 30px;
    }

}


/* =========================================================
   18. SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .buleme-all-services-hero {
        min-height: 650px;
    }

    .buleme-all-services-hero h1 {
        font-size: 32px;
    }

    .buleme-all-services-hero p {
        font-size: 14px;
    }

    .buleme-all-services-btn-primary,
    .buleme-all-services-btn-outline,
    .buleme-all-services-btn-secondary {
        width: 100%;
    }

    .buleme-all-services-intro h2,
    .buleme-all-services-advantages h2,
    .buleme-all-services-approach h2 {
        font-size: 27px;
    }

    .buleme-all-service-image,
    .buleme-all-service-image img {
        min-height: 250px;
        height: 250px;
    }

    .buleme-all-service-number {
        width: 65px;
        height: 58px;

        font-size: 25px !important;
    }

    .buleme-all-service-content {
        padding: 30px 20px;
    }

    .buleme-all-service-content h2 {
        font-size: 27px;
    }

    .buleme-all-service-content p,
    .buleme-all-service-features span {
        font-size: 14px;
    }

    .buleme-all-services-cta-inner {
        padding: 35px 18px;
    }

    .buleme-all-services-slogan {
        font-size: 15px !important;
        letter-spacing: 1px;
    }

}

/* =========================================================
   BULEME COMPANY SARL
   BLOG / NEWS PAGE
   Bootstrap 5
   Scoped CSS
   ========================================================= */


/* =========================================================
   01. BLOG PAGE VARIABLES
   ========================================================= */

.buleme-blog-page {

    --buleme-blog-blue: #0066b3;
    --buleme-blog-blue-dark: #075b8b;
    --buleme-blog-deep: #071d35;
    --buleme-blog-navy: #063f61;

    --buleme-blog-gold: #dcae28;

    --buleme-blog-white: #ffffff;

    --buleme-blog-light: #f5f6f7;
    --buleme-blog-border: #e1e5e8;

    --buleme-blog-text: #444444;
    --buleme-blog-text-light: #666666;

    width: 100%;

    background: #ffffff;

    color: var(--buleme-blog-text);

    font-family: "Poppins", sans-serif;

    overflow: hidden;
}


/* =========================================================
   02. BOX SIZING
   ========================================================= */

.buleme-blog-page *,
.buleme-blog-page *::before,
.buleme-blog-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

.buleme-blog-page h1,
.buleme-blog-page h2,
.buleme-blog-page h3,
.buleme-blog-page h4,
.buleme-blog-page h5,
.buleme-blog-page h6 {

    font-family: "Oswald", sans-serif !important;

    font-weight: 600;

    line-height: 1.2;

    margin-top: 0;
}


.buleme-blog-page p,
.buleme-blog-page a,
.buleme-blog-page span,
.buleme-blog-page div {

    font-family: "Poppins", sans-serif;
}


/*
 * NORMAL TEXT MUST NEVER FALL BELOW 14PX
 */

.buleme-blog-page p,
.buleme-blog-page a,
.buleme-blog-page span {

    font-size: 14px;
}


/* =========================================================
   04. HERO
   ========================================================= */

.buleme-blog-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(4, 27, 54, 0.95) 0%,
            rgba(4, 27, 54, 0.86) 35%,
            rgba(4, 27, 54, 0.48) 68%,
            rgba(4, 27, 54, 0.20) 100%
        ),

        url("../images/blog/blog-hero.jpg")
        center center / cover no-repeat;

    color: #ffffff;
}


.buleme-blog-hero .container {

    position: relative;

    z-index: 2;
}


.buleme-blog-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: var(--buleme-blog-gold);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.buleme-blog-label span {

    display: inline-block;

    width: 38px;

    height: 3px;

    background: var(--buleme-blog-gold);
}


.buleme-blog-hero h1 {

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 52px;

    font-weight: 600;

    line-height: 1.1;

    text-transform: uppercase;
}


.buleme-blog-hero p {

    max-width: 680px;

    margin: 0;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   05. BLOG SECTION
   ========================================================= */

.buleme-blog-section {

    padding: 85px 0 95px;

    background: var(--buleme-blog-light);
}


.buleme-blog-section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: var(--buleme-blog-blue);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.buleme-blog-section-label span {

    display: inline-block;

    width: 32px;

    height: 3px;

    background: var(--buleme-blog-gold);
}


.buleme-blog-section h2 {

    margin-bottom: 0;

    color: var(--buleme-blog-navy);

    font-size: 40px;

    font-weight: 600;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-blog-intro {

    margin: 0;

    color: var(--buleme-blog-text-light);

    font-size: 15px !important;

    line-height: 1.8;
}


/* =========================================================
   06. BLOG CARD
   ========================================================= */

.buleme-blog-card {

    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    background: #ffffff;

    border: 1px solid var(--buleme-blog-border);

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.buleme-blog-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   07. FEATURED IMAGE
   ========================================================= */

.buleme-blog-card-image {

    position: relative;

    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #e5e9ec;
}


.buleme-blog-card-image a {

    display: block;

    width: 100%;

    height: 100%;
}


.buleme-blog-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.buleme-blog-card:hover
.buleme-blog-card-image img {

    transform: scale(1.05);
}


/* =========================================================
   08. IMAGE CATEGORY
   ========================================================= */

.buleme-blog-card-category {

    position: absolute;

    left: 15px;

    bottom: 15px;

    padding: 7px 12px;

    background: var(--buleme-blog-blue);

    color: #ffffff;

    font-size: 14px !important;

    font-weight: 600;

    letter-spacing: .3px;

    text-transform: uppercase;
}


/* =========================================================
   09. IMAGE PLACEHOLDER
   ========================================================= */

.buleme-blog-placeholder {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(
            135deg,
            var(--buleme-blog-deep),
            var(--buleme-blog-blue)
        );

    color: var(--buleme-blog-gold);

    font-size: 50px;
}


/* =========================================================
   10. CARD CONTENT
   ========================================================= */

.buleme-blog-card-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px 25px 27px;
}


/* =========================================================
   11. META
   ========================================================= */

.buleme-blog-card-meta {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 12px;

    color: #777777;
}


.buleme-blog-card-meta span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 14px !important;

    line-height: 1.4;
}


.buleme-blog-card-meta i {

    color: var(--buleme-blog-blue);

    font-size: 14px;
}


/* =========================================================
   12. CARD TITLE
   ========================================================= */

.buleme-blog-card h3 {

    margin-bottom: 13px;
}


.buleme-blog-card h3 a {

    display: block;

    color: var(--buleme-blog-navy) !important;

    font-family: "Oswald", sans-serif !important;

    font-size: 24px !important;

    font-weight: 600;

    line-height: 1.25;

    text-decoration: none !important;

    transition: color .3s ease;
}


.buleme-blog-card h3 a:hover {

    color: var(--buleme-blog-blue) !important;
}


/* =========================================================
   13. EXCERPT
   ========================================================= */

.buleme-blog-card-excerpt {

    margin-bottom: 20px;

    color: var(--buleme-blog-text-light);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   14. READ MORE
   ========================================================= */

.buleme-blog-read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: var(--buleme-blog-blue) !important;

    font-size: 14px !important;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        color .3s ease,
        gap .3s ease;
}


.buleme-blog-read-more:hover {

    color: var(--buleme-blog-blue-dark) !important;

    gap: 13px;
}


.buleme-blog-read-more i {

    font-size: 16px;
}


/* =========================================================
   15. NO POSTS
   ========================================================= */

.buleme-blog-no-posts {

    padding: 70px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid var(--buleme-blog-border);
}


.buleme-blog-no-posts-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    background: var(--buleme-blog-deep);

    color: var(--buleme-blog-gold);

    font-size: 27px;
}


.buleme-blog-no-posts h3 {

    margin-bottom: 10px;

    color: var(--buleme-blog-navy);

    font-size: 25px;
}


.buleme-blog-no-posts p {

    margin: 0;

    color: #666666;

    font-size: 14px;
}


/* =========================================================
   16. PAGINATION
   ========================================================= */

.buleme-blog-pagination {

    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.buleme-blog-pagination ul {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.buleme-blog-pagination li {

    margin: 0;

    padding: 0;
}


.buleme-blog-pagination a,
.buleme-blog-pagination span {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 42px;

    min-height: 42px;

    padding: 8px 13px;

    background: #ffffff;

    border: 1px solid var(--buleme-blog-border);

    color: var(--buleme-blog-navy) !important;

    font-size: 14px !important;

    text-decoration: none !important;

    transition: all .3s ease;
}


.buleme-blog-pagination a:hover {

    background: var(--buleme-blog-blue);

    border-color: var(--buleme-blog-blue);

    color: #ffffff !important;
}


.buleme-blog-pagination .current {

    background: var(--buleme-blog-blue);

    border-color: var(--buleme-blog-blue);

    color: #ffffff !important;
}


/* =========================================================
   17. CTA
   ========================================================= */

.buleme-blog-cta {

    padding: 70px 0;

    background: #ffffff;
}


.buleme-blog-cta-inner {

    padding: 55px 50px;

    background: var(--buleme-blog-deep);

    color: #ffffff;
}


.buleme-blog-cta-inner h2 {

    max-width: 720px;

    margin-bottom: 15px;

    color: #ffffff;

    font-size: 38px;

    font-weight: 600;

    line-height: 1.15;

    text-transform: uppercase;
}


.buleme-blog-cta-inner p {

    max-width: 650px;

    margin: 0;

    color: #d7e0e8;

    font-size: 14px;

    line-height: 1.8;
}


.buleme-blog-section-label.light {

    color: #ffffff;
}


.buleme-blog-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 13px 25px;

    background: var(--buleme-blog-blue);

    border: 1px solid var(--buleme-blog-blue);

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 600;

    text-decoration: none !important;

    transition: all .3s ease;
}


.buleme-blog-cta-button:hover {

    background: var(--buleme-blog-gold);

    border-color: var(--buleme-blog-gold);

    color: var(--buleme-blog-deep) !important;
}


/* =========================================================
   18. TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-blog-hero {

        min-height: 400px;
    }


    .buleme-blog-hero h1 {

        font-size: 45px;
    }


    .buleme-blog-section {

        padding: 70px 0 80px;
    }


    .buleme-blog-section h2 {

        font-size: 35px;
    }


    .buleme-blog-card-image {

        height: 220px;
    }


    .buleme-blog-cta-inner h2 {

        font-size: 34px;
    }

}


/* =========================================================
   19. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-blog-hero {

        min-height: 500px;

        background:

            linear-gradient(
                90deg,
                rgba(4, 27, 54, .95),
                rgba(4, 27, 54, .75)
            ),

            url("../images/blog/blog-hero.jpg")
            center center / cover no-repeat;
    }


    .buleme-blog-hero h1 {

        font-size: 38px;
    }


    .buleme-blog-hero p {

        font-size: 14px;
    }


    .buleme-blog-section {

        padding: 55px 0 65px;
    }


    .buleme-blog-section h2 {

        font-size: 30px;
    }


    .buleme-blog-intro {

        margin-top: 18px;
    }


    .buleme-blog-card-image {

        height: 230px;
    }


    .buleme-blog-card-content {

        padding: 23px 20px 25px;
    }


    .buleme-blog-card h3 a {

        font-size: 22px !important;
    }


    .buleme-blog-cta {

        padding: 50px 0;
    }


    .buleme-blog-cta-inner {

        padding: 40px 25px;
    }


    .buleme-blog-cta-inner h2 {

        font-size: 30px;
    }


    .buleme-blog-cta-button {

        width: 100%;
    }

}


/* =========================================================
   20. SMALL PHONES
   ========================================================= */

@media (max-width: 575px) {

    .buleme-blog-hero {

        min-height: 530px;
    }


    .buleme-blog-hero h1 {

        font-size: 32px;
    }


    .buleme-blog-section h2 {

        font-size: 27px;
    }


    .buleme-blog-card-image {

        height: 215px;
    }


    .buleme-blog-card h3 a {

        font-size: 21px !important;
    }


    .buleme-blog-card-excerpt {

        font-size: 14px;
    }


    .buleme-blog-pagination a,
    .buleme-blog-pagination span {

        min-width: 38px;

        min-height: 38px;

        padding: 7px 10px;
    }

}


/* =========================================================
   21. EXTRA TYPOGRAPHY SAFETY
   ========================================================= */

.buleme-blog-page p,
.buleme-blog-page li,
.buleme-blog-page a,
.buleme-blog-page span {

    font-size: max(14px, 1em);
}


/* =========================================================
   END BULEME BLOG PAGE
   ========================================================= */


/* =========================================================
   BULEME COMPANY
   COMPANY ADMINISTRATIVE INFORMATION
   ========================================================= */

.buleme-company-info-section {
    position: relative;
    width: 100%;
    padding: 75px 0 70px;
    background: #022348;
    overflow: hidden;
}


/* Decorative background element */

.buleme-company-info-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -160px;

    border: 1px solid rgba(217, 165, 20, 0.18);
    border-radius: 50%;

    pointer-events: none;
}


/* Second decorative element */

.buleme-company-info-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -120px;

    border: 1px solid rgba(217, 165, 20, 0.12);
    border-radius: 50%;

    pointer-events: none;
}


/* Container */

.buleme-company-info-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.buleme-company-info-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}


/* Gold label */

.buleme-company-info-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;

    color: #d9a514;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Gold line before label */

.buleme-company-info-label::before {
    content: "";

    width: 40px;
    height: 2px;

    background: #d9a514;

    display: inline-block;
}


/* Gold line after label */

.buleme-company-info-label::after {
    content: "";

    width: 40px;
    height: 2px;

    background: #d9a514;

    display: inline-block;
}


/* Heading */

.buleme-company-info-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 600;

    line-height: 1.15;

    text-transform: uppercase;
}


/* Description */

.buleme-company-info-heading p {
    max-width: 750px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   INFORMATION GRID
   ========================================================= */

.buleme-company-info-grid {
    position: relative;
}


/* =========================================================
   INFORMATION CARD
   ========================================================= */

.buleme-company-info-card {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 115px;

    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(217, 165, 20, 0.35);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


/* Gold top line */

.buleme-company-info-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 55px;
    height: 3px;

    background: #d9a514;

}


/* Hover */

.buleme-company-info-card:hover {

    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.10);

    border-color: #d9a514;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

}


/* =========================================================
   ICON
   ========================================================= */

.buleme-company-info-icon {

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    margin-right: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #d9a514;

    color: #022348;

    font-size: 20px;

}


/* Font Awesome icon */

.buleme-company-info-icon i {

    font-size: 19px;

    line-height: 1;

}


/* =========================================================
   CONTENT
   ========================================================= */

.buleme-company-info-content {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 7px;

}


/* Information title */

.buleme-company-info-content > span {

    color: #d9a514;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.5px;

}


/* Registration number */

.buleme-company-info-content strong {

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

    word-break: break-word;

}


/* =========================================================
   BOOTSTRAP COLUMN PROTECTION
   ========================================================= */

.buleme-company-info-section .row {

    margin-left: -12px;
    margin-right: -12px;
}

.buleme-company-info-section [class*="col-"] {

    padding-left: 12px;
    padding-right: 12px;
}


/* =========================================================
   GLOBAL FONT PROTECTION
   ========================================================= */

.buleme-company-info-section h1,
.buleme-company-info-section h2,
.buleme-company-info-section h3,
.buleme-company-info-section h4,
.buleme-company-info-section h5,
.buleme-company-info-section h6 {

    font-family: "Oswald", sans-serif;

}


.buleme-company-info-section p,
.buleme-company-info-section span,
.buleme-company-info-section strong,
.buleme-company-info-section a {

    font-family: "Poppins", sans-serif;

    font-size: 14px;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .buleme-company-info-section {

        padding: 65px 0 60px;

    }

    .buleme-company-info-heading {

        margin-bottom: 40px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-company-info-section {

        padding: 55px 0;

    }


    .buleme-company-info-heading {

        margin-bottom: 35px;

    }


    .buleme-company-info-heading h2 {

        font-size: 32px;

    }


    .buleme-company-info-card {

        min-height: 105px;

        padding: 20px;

    }


    .buleme-company-info-icon {

        flex: 0 0 46px;

        width: 46px;
        height: 46px;

        margin-right: 14px;

    }


    .buleme-company-info-icon i {

        font-size: 17px;

    }


    .buleme-company-info-content > span,
    .buleme-company-info-content strong {

        font-size: 14px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .buleme-company-info-section {

        padding: 50px 0;

    }


    .buleme-company-info-label {

        gap: 9px;

        font-size: 14px;

    }


    .buleme-company-info-label::before,
    .buleme-company-info-label::after {

        width: 25px;

    }


    .buleme-company-info-heading h2 {

        font-size: 29px;

    }


    .buleme-company-info-card {

        padding: 18px;

    }

}





/* =========================================================
FOOTER COUMUMN 4
   ========================================================= */
/* =========================================================
   BULEME FOOTER CONTACT
   ========================================================= */

.buleme-footer-contact {
    width: 100%;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   TITLE
   ========================================================= */

.buleme-footer-contact-title {
    position: relative;

    margin: 0 0 30px 0;
    padding-bottom: 15px;

    color: #002B55 !important;

    font-family: "Oswald", sans-serif !important;

    font-size: 22px !important;
    font-weight: 600 !important;

    line-height: 1.3;

    text-transform: uppercase;
}


/* Gold line

.buleme-footer-contact-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #C9A227;
} */


/* =========================================================
   CONTACT ITEM
   ========================================================= */

.buleme-footer-contact-item {

    display: flex !important;

    align-items: center;

    width: 100%;

    margin: 0 0 15px 0;

    padding: 0;

    color: #002B55 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    line-height: 1.5;

    text-decoration: none !important;
}


/* =========================================================
   ICON BOX
   ========================================================= */

.buleme-footer-contact-icon {

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    margin-right: 10px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    color: #C9A227 !important;

    background: transparent;

    border-left: 2px solid #C9A227;

    font-size: 15px;

    visibility: visible !important;
    opacity: 1 !important;
}


/* =========================================================
   ICON ITSELF
   ========================================================= */

.buleme-footer-contact-icon i {

    display: inline-block !important;

    width: auto;
    height: auto;

    color: #C9A227 !important;

    font-size: 15px !important;

    line-height: 1;

    visibility: visible !important;
    opacity: 1 !important;
}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

.buleme-footer-contact-text {

    display: block !important;

    max-width: calc(100% - 42px);

    color: #002B55 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 14px !important;

    font-weight: 400 !important;

    line-height: 1.5;

    text-decoration: none !important;

    overflow-wrap: anywhere;

    word-break: break-word;
}


/* =========================================================
   HOVER
   ========================================================= */

.buleme-footer-contact-item:hover {
    text-decoration: none !important;
}

.buleme-footer-contact-item:hover
.buleme-footer-contact-text {
    color: #C9A227 !important;
}

.buleme-footer-contact-item:hover
.buleme-footer-contact-icon {
    color: #002B55 !important;
    background: #C9A227;
}

.buleme-footer-contact-item:hover
.buleme-footer-contact-icon i {
    color: #002B55 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .buleme-footer-contact-title {
        font-size: 20px !important;
    }

    .buleme-footer-contact-item,
    .buleme-footer-contact-text {
        font-size: 14px !important;
    }

}

