:root {
    --white: #fff;
    --blue: #002261;
    --light: #f5f5f5;
    --light-blue: #f3f0ff;
    --grey: #eee;
    --dark-grey: #666;
    --black: #222;
    --black-pure: black;
    --orange: #e35a01;
}

.main-content {
    /* margin-bottom: 8rem; */

    .bold {
        font-weight: 600 !important;
    }

    .bold1 {
        font-weight: 500 !important;
    }

    .bold2 {
        font-weight: 700 !important;
    }

    .mb1 {
        margin-bottom: 1rem !important;
    }

    .mt4 {
        margin-top: 4rem;
    }

    .mt2 {
        margin-top: 2rem;
    }

    .ml1 {
        margin-left: 12px;
    }

    .ml2 {
        margin-left: 18px;
    }

    .underline {
        text-decoration: underline;
        color: var(--black-pure) !important;
    }

    & .main-heading {
        background-color: var(--light-blue);
        padding: 3rem 1rem;
        text-align: center;
        margin-bottom: 5rem;

        @media screen and (max-width: 900px) {
            margin-bottom: 0;
        }

        & h1 {
            font-size: 3rem;
            margin-bottom: 2rem;

            @media screen and (max-width: 600px) {
                font-size: 1.8rem;
            }
        }
    }

    & .container {
        /* max-width: 600px; */
        width: 100%;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        margin-bottom: 5rem;
        padding: 0 5%;

        @media screen and (max-width: 500px) {
            padding: 0 0.2rem;
        }

        & .wrapper {
            display: flex;
            border: 1px solid rgba(255, 0, 0, 0.156);
            padding: 0 1.5rem;
            border-radius: 1rem;

            @media screen and (max-width: 900px) {
                padding: 0;
                border: none;
                border-radius: unset;
            }
        }

        & .indicator {
            padding: 1.5rem 0;
            border-right: 1px solid var(--grey);
            flex: 0 0 20%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            @media screen and (max-width: 900px) {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px 5px;
                padding: 1.5rem 0;
            }
        }

        & .indicator li {
            display: flex;
            align-items: center;
            grid-gap: 0.5rem;
            padding: 10px 2rem;
            cursor: pointer;
            font-size: 0.875rem;
            color: var(--black);
            border-right: 3px solid transparent;

            @media screen and (max-width: 900px) {
                /* color: orange; */
                text-align: center;
                background-color: #80808096;
                padding: 7px;
                border-radius: 6px;
                font-size: 13px;
            }
        }

        & .indicator li i {
            font-size: 1rem;
        }

        & .indicator li:hover {
            background: var(--light-blue);
        }

        & .indicator li.active {
            border-right-color: var(--orange);
            color: var(--white);
            background: var(--blue);
            font-weight: 900;
        }

        & .content {
            padding: 1.5rem 2rem;
        }

        & .content li {
            display: none;
        }

        & .content li.active {
            display: flex;
            gap: 10%;

            ol {
                margin-left: 2rem;

                li {
                    display: block !important;
                    margin-bottom: 1rem;
                    font-weight: 300;
                }
            }

            p {
                font-weight: 300;
            }
        }

        & .content li h1 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 0.75rem;
        }

        & .content li p {
            margin-bottom: 0.5rem;
            color: var(--black-pure);
            font-size: 1rem;
            line-height: 1.5;
        }

    }
}


.section-clients {
    & .clients {
        display: flex;
        align-items: center;
        margin-bottom: 5rem;

        & .cl-head {
            text-align: center;
            margin: 0 0 1rem 0rem;
            color: white;
            font-size: 1rem;
            padding: 0 1.1rem 0.5rem;
            flex: 0 0 30%;
            color: #002261;

            .counter {
                font-size: 7rem;
            }
        }

        & .clients-logos {
            flex: 1;
            overflow: hidden;
            display: flex;
            margin-bottom: 2rem;
            padding: 0 0 0 2rem;

            & .logo {
                & img {
                    width: 5.5rem;
                }
            }
        }
    }
}

.section-temoignages {
    background-color: #3d4a61;
    padding: 3rem 0;
    margin-bottom: 5rem;

    & .tem-heading {
        text-align: center;
        margin-bottom: 1.5rem;

        & > p {
            color: gray;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        & h3 {
            font-size: 1.8rem;
            text-transform: capitalize;
            color: white;
        }
    }
}

.custom-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #002261;
    font-size: 1.5rem;
    padding-left: 2rem;
    margin-bottom: 1.5rem;

    & > i {
        font-weight: 700;
    }

    @media screen and (max-width: 500px) {
        padding-left: 1rem;
        font-size: 1.2rem;
    }
}

.custom-link2 {
    text-decoration: none;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: white;
    border-radius: 15px;
    padding: 12px;
    font-weight: 900;
    transition: all 0.1s;
    cursor: pointer;

    &:hover {
        background-color: white;
        color: var(--blue);
    }
}


.section-ct-us {
    margin-bottom: 6rem;

    .content {
        padding: 1rem 5% 0;
        display: flex;
        gap: 8rem;
        justify-content: center;
        align-items: center;

         @media screen and (max-width: 850px) {
          flex-direction: column;
        }

        .des {
            flex: 0 0 50%;

            @media screen and (max-width: 1080px) {
                flex: 0 0 50%;
            }

            @media screen and (max-width: 840px) {
                flex: 1;
            }

            p {
                margin-bottom: 2rem;
                font-size: 1.2rem;

                @media screen and (max-width: 480px) {
                    font-size: 1rem;
                }
            }

            .link {
                margin-left: 2rem;

                @media screen and (max-width: 850px) {
                    text-align: center;
                }

                @media screen and (max-width: 480px) {
                    text-align: center;
                    margin-left: 0;
                }

                a {
                    font-size: 18px;
                    padding: 12px 20px;

                    @media screen and (max-width: 480px) {
                        font-size: 16px;
                    }
                }
            }

            .infos {
                margin-bottom: 4rem;

                i {
                    color: #cb2d3e;
                    font-size: 1.5rem;
                }

                h3 {
                    font-size: 1.1rem;
                    font-weight: 500;
                }

                .custom-title {
                    @media screen and (max-width: 480px) {
                        padding-left: 0.5rem;
                    }
                }
            }
        }

        .img {


            img {
                width: 100%;
                height: 22rem;
                border-radius: 15px;
            }
        }
    }
}

.footer2 {
    margin-bottom: 0 !important;
}

.f3 {
    background-color: #f3f1f1 !important;
}

/* MEDIA QUERIES  */

@media screen and (max-width: 1260px) {
    .main-content {
        & .container {
            & .content li.active {
                flex-direction: column;
                align-items: center;
                gap: 3rem;
            }

        }
    }

    .section-documents {
        & .docs {
            gap: 1rem;
        }
    }
}

@media screen and (max-width: 900px) {
    .main-content {
        & .container {
            & .wrapper {
                flex-direction: column;
            }
        }
    }
}

@media screen and (max-width: 800px) {
    .section-temoignages {
        & .tem-boxs {
            padding: 0 1rem;
        }
    }

    .section-blog {
        & .blog-cards {
            padding: 0 3rem;
        }
    }
}

@media screen and (max-width: 600px) {

    .section-temoignages {
        padding: 2rem 0;

        & .tem-heading {
            & h3 {
                font-size: 1.2rem;
            }
        }

        & .cl-head {
            font-size: 1rem;
        }
    }


    & .clients-logos {
        & .logo {
            & img {
                width: 3rem;
                margin-right: 10px;
            }
        }
    }

    .section-clients {
        & .clients {
            & .cl-head {
                .counter {
                    font-size: 5rem;
                }
            }
        }
    }
}

.footer2 {
    background-color: #f7f7f7 !important;
}

/* TEMOIGNAGE NEW */

.tem-wrap {
    display: flex;
    padding: 0 1rem;
}

.testimonial-block {
    position: relative;
}

.testimonial-block .inner-box {
    position: relative;
    padding: 20px 30px 30px;
    background-color: #faebd7d6;
    border-radius: 8px;
    margin-right: 1rem;
}

.testimonial-block .inner-box .image {
    position: relative;
    width: 75px;
    height: 70px;
    /* border-radius:50%; */
    overflow: hidden;
    display: inline-block;

    img {
        width: 4rem;
    }
}

.testimonial-block .inner-box .content {
    position: relative;
}

.testimonial-block .inner-box .content i {
    position: absolute;
    right: 0;
    top: -35px;
    font-size: 30px;
    font-style: italic;
    color: #da5e00;
}

.testimonial-block .inner-box .content .author-info {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #d31348;
}

.testimonial-block .inner-box .content .text {
    position: relative;
    margin-top: 20px;
    color: black;
    font-size: 15px;
}

/* INFO NEW */

.more-details {
    margin-bottom: 5rem;
}

.description-2 {
    display: flex;
    justify-content: space-evenly;
    text-align: center;

    @media screen and (max-width: 700px) {
        flex-direction: column;
        gap: 3rem;
    }
}

.title-2 {
    color: #d31348;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 10px;

    @media screen and (max-width: 700px) {
        font-size: 1rem;
    }
}
