
.spearator {
    width: 100%;
    height: 1px;
    background-color: #dddfe3;
    margin: 1.5rem 0;
}
/* ---------------- */
nav .navbar-nav {
    gap: 2rem;
    flex-wrap: wrap;
    -webkit-justify-content: center !important;
    justify-content: center !important;
    -webkit-align-items: center;
    align-items: center;
}

.validation-message {
    color: red;
}

nav .navbar-nav .nav-link {
    color: #1f2938 !important;
    font-weight: 700 !important;
    font-size: 1rem;
}

@media screen and (max-width: 1170px) {
    nav .navbar-nav {
        gap: 1.5rem;
    }

        nav .navbar-nav .nav-link {
            font-size: 1rem;
        }
}

@media screen and (max-width:1120px) and (min-width:992px){
    .nav-contact{
        display:none;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }
}
/* ---------HERO--------- */
section {
    margin-bottom: 70px;
}

.hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: start;
    background-color: #c8b2741f;
    padding: 1.5rem 2rem;
    border-radius: 48px;
    width: 110%;
}

    .hero .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero .hero-content p {
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        width: 85%;
    }

    .hero .hero-content h5 {
        font-size: 1.1rem;
        font-weight: 500;
        position: relative;
        margin-right: 15px;
    }

        .hero .hero-content h5::before {
            content: '';
            position: absolute;
            top: 8px;
            right: -20px;
            width: 10px;
            height: 10px;
            background-color: #87b8cd;
            border-radius: 50%;
        }

.hero .hero-input-container .hero-input-container-child {
    width: 75%;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    border-radius: 16px;
}

    .hero .hero-input-container .hero-input-container-child input {
        border: none;
        border-radius: 16px;
        padding: 0.7rem 1rem; /* Increase padding */
        line-height: 1.5; /* Increase line-height */
        height: auto; /* Allow the input field to adjust its height */
        width: 100%;
        background-color: transparent;
    }

        .hero .hero-input-container .hero-input-container-child input::placeholder {
            font-size: 1rem;
            line-height: 0%;
            padding: 0;
        }

        .hero .hero-input-container .hero-input-container-child input:focus,
        .hero .hero-input-container .hero-input-container-child input:active {
            outline: none;
            box-shadow: none;
        }

    .hero .hero-input-container .hero-input-container-child button {
        padding: 0.5rem 1.5rem;
    }

.hero .hero-image img {
    height: 30rem;
    overflow: hidden;
    /*margin-right: -50px;*/
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .hero .hero-content {
        width: 100%;
    }

    .hero .hero-image {
        text-align: center;
        margin: 1.5rem 0;
    }
}

/* ---------latest-News & Projects---------- */
.latest-news-cards-container .swiper,
.projects-cards-container .swiper,
.blog .swiper {
    height: 100%;
}

.latest-news-cards-container .card,
.projects-cards-container .card,
.blog .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    /* padding: 1.5rem; */
    margin-bottom: 1.5rem;
}

    .latest-news-cards-container .card img,
    .projects-cards-container .card img,
    .blog .card img{
        max-height :250px;
        height:250px;
        object-fit:cover;
    }
    .latest-news-cards-container .card .card-title,
    .projects-cards-container .card .card-title,
    .blog .card .card-title,
    .card .card-title h5 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1; /* number of lines to show */
        line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .latest-news-cards-container .card .card-text,
    .projects-cards-container .card .card-text,
    .blog .card .card-text,
    .card .card-text{
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1; /* number of lines to show */
        line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .latest-news-cards-container .swiper-pagination-bullet,
    .projects-cards-container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

.latest-news-cards-container .swiper-pagination-bullet-active,
.projects-cards-container .swiper-pagination-bullet-active,
.blog .swiper-pagination-bullet-active {
    background-color: #d0b76f;
    /* width: 20px; */
    /* height: 20px; */
}

.latest-news-cards-container .card a,
.projects-cards-container .card a,
.blog .card a {
    padding: 15px;
    border-radius: 16px;
    background-color: transparent !important;
    color: #1f2938;
}

    .latest-news-cards-container .card a:hover,
    .projects-cards-container .card a:hover,
    .blog .card a:hover {
        background-color: #d0b76f !important;
        color: #fff;
    }
/* -----------job-offer------------------ */
.job-offer {
    position: relative;
}

    .job-offer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        background-image: url('../img/job-offer-pattern.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 17rem;
        height: 100%;
        z-index: -1;
    }

    .job-offer .section-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        text-align: start;
        padding: 1.5rem 2rem;
    }

    .job-offer h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .job-offer h5 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    .job-offer a {
        padding: 15px;
        display: inline;
    }

    .job-offer img {
        height: 22rem;
        width: 100%;
        overflow: hidden;
        object-fit: contain;
    }
/* -------------newsletter--------------- */

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.newsletter .content {
    background-color: #87b8cd;
    border-radius: 20px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    padding: 1.5rem 2rem;
    position: relative;
}

    .newsletter .content::before {
        content: '';
        position: absolute;
        top: 45%;
        right: 4%;
        width: 90%;
        height: 200px;
        background-color: #7cb4c75c;
        z-index: -2;
        border-radius: 20px;
    }

    .newsletter .content::after {
        content: '';
        position: absolute;
        top: 40%;
        background-color: #7cb4c780;
        right: 2%;
        width: 95%;
        height: 200px;
        z-index: -1;
        border-radius: 20px;
    }

.newsletter .newsletter-input-container .newsletter-input-container-child {
    width: 55%;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    border-radius: 16px;
}

    .newsletter
    .newsletter-input-container
    .newsletter-input-container-child
    input {
        border: none;
        border-radius: 16px;
        padding: 0.7rem 1rem; /* Increase padding */
        line-height: 1.5; /* Increase line-height */
        height: auto; /* Allow the input field to adjust its height */
        width: 100%;
        background-color: transparent;
    }

        .newsletter
        .newsletter-input-container
        .newsletter-input-container-child
        input::placeholder {
            font-size: 1rem;
            line-height: 0%;
            padding: 0;
        }

        .newsletter
        .newsletter-input-container
        .newsletter-input-container-child
        input:focus,
        .newsletter
        .newsletter-input-container
        .newsletter-input-container-child
        input:active {
            outline: none;
            box-shadow: none;
        }

    .newsletter
    .newsletter-input-container
    .newsletter-input-container-child
    button {
        padding: 0.5rem 1.5rem;
    }
/* -----------footer------------ */
footer {
    padding: 2rem 0;
}

    footer h5 {
        color: #87b8cd;
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1.3rem;
    }

    footer ul li {
        list-style: none;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
.social-icons {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background-color: #bcbcbc3b;
        /*font-size: 1.3rem;*/
        margin-right: 0.5rem;
        padding: 0.5rem;
        border-radius: 50%;
        color: #d0b76f;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center
    }
    footer .copyrights i {
        color: #d0b76f;
    }

/* ----------ABOUT PAGE----------- */
.about-page-header {
    background-color: #c8b2741f;
    padding: 2rem 0;
    border-radius: 0 0 100px 100px;
}

    .about-page-header .about-page-header-content {
        padding: 3rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
        text-align: start;
    }

        .about-page-header .about-page-header-content p {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            width: 85%;
        }

        .about-page-header .about-page-header-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .about-page-header .about-page-header-content a {
            box-shadow: 0px 4px 18px 0px #d0b76f;
            padding: 0.5rem 1.5rem;
        }

.team-item {
    background: #f4eede;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    margin-bottom: 1.5rem;
}

.team-item-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 16px;
    max-height: 225px;
}
/* ---------breadcrumbs------------- */
.breadcrumbs {
    background-color: #c8b2741f;
    padding: 3rem 0;
}
/* ---------REGULATIONS--------- */
.regulations .regulations-cards-container img {
    height: 5rem;
    width: 5rem;
    object-fit: cover;
    margin-right: 1rem;
}

.regulations .regulations-cards-container .card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    margin-bottom: 1rem;
}

    .regulations .regulations-cards-container .card h5 {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 0.5rem 0;
    }
/* ---------blog----------- */
.blog {
    padding: 2rem 0;
}

.blog-sidebar .search {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
}

    .blog-sidebar .search h4 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

.blog-sidebar .categories {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background-color: #f8f6ee;
    padding-bottom: 0 !important;
    border: 1px solid #e5e5e5;
}

.blog-sidebar .cat-list {
    padding: 1rem 0;
}

    .blog-sidebar .cat-list li {
        list-style: none;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #dddfe3;
        padding: 0.5rem 0;
        color: #1c1c1eb2 !important;
        font-size: 1.1rem;
    }

        .blog-sidebar .cat-list li:last-child {
            border-bottom: none;
        }

        .blog-sidebar .cat-list li a {
            color: #1c1c1eb2 !important;
        }

            .blog-sidebar .cat-list li a:hover {
                color: #000 !important;
            }

.blog-sidebar .tags {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
    padding-bottom: 0 !important;
}

    .blog-sidebar .tags h4 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .blog-sidebar .tags ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-top: 1rem;
    }

        .blog-sidebar .tags ul li {
            list-style: none;
            margin-bottom: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 16px;
            background-color: #f8f6ee;
            box-shadow: 0px 0px 0px 3px #c8b27414;
        }

blockquote {
    padding: 1rem;
    border-right: 5px solid #c8b274;
    background-color: #f8f6ee;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.contact-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    position: relative;
}

.contact-form-container {
    background-color: #fff !important;
    display: block;
    position: relative;
    top: -15rem;
    padding: 2rem;
    box-shadow: 0px 0px 8px 0px #e9e8e8c2;
}

    .contact-form-container h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .contact-form-container form label {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .contact-form-container form input {
        border-radius: 16px;
        padding: 0.7rem 1rem; /* Increase padding */
        line-height: 1.5; /* Increase line-height */
        height: auto; /* Allow the input field to adjust its height */
        width: 100%;
        margin-bottom: 1rem;
        text-align: start;
        direction: rtl;
    }

    .contact-form-container form textarea {
        border-radius: 16px;
        padding: 0.7rem 1rem; /* Increase padding */
        line-height: 1.5; /* Increase line-height */
        height: auto; /* Allow the input field to adjust its height */
        width: 100%;
        margin-bottom: 1rem;
        text-align: start;
        direction: rtl;
    }

    .contact-form-container form button {
        padding: 0.5rem 1.5rem;
    }

.more-contact {
    margin-top: -15rem;
}

.contact-item span {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.contact-item a {
    color: #1f2938;
    font-weight: 500;
}

.jobs-section .jobs-cards-container .card {
    border-radius: 25px;
    box-shadow: 0px 0px 0px 3px #c8b27414;
    margin-bottom: 1.5rem;
}

.jobs-section .jobs-cards-container .card-title {
    margin-bottom: 1rem;
}

.jobs-section .jobs-cards-container .card h5 {
    font-size: 1.3rem;
    font-weight: 500;
}

.jobs-section .jobs-cards-container .card p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.job-tag {
    padding: 0.5rem 1rem;
    border-radius: 16px;
    background-color: #87B8CD1F;
    color: #87B8CD;
}

.questionnaires .question-item {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

    .questionnaires .question-item .form-check label {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .questionnaires .question-item form label {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .questionnaires .question-item form input {
        padding: 0.7rem 1rem; /* Increase padding */
        line-height: 1.5; /* Increase line-height */
        height: auto; /* Allow the input field to adjust its height */
        width: 100%;
        margin-bottom: 1rem;
        text-align: start;
        direction: rtl;
    }

footer {
    background: #f3f3f3;
}

.floating-whatsapp {
    z-index: 10;
    position: fixed;
    top: 450px;
    right: 20px;
}
    .floating-whatsapp img {
        width: 40px;
    }