﻿.mt-4
{
    margin-top:20px;
}
.topp {
    margin-top: 10px !important;
}
.w-100 {
    width: 100%;
}
.servicepageheading {
    font-size: 45px;
    line-height: 1.2em;
}
.servicepagesubheading {
    font-size: 36px;
    line-height: 1.2em;
}
.page-header {
    position: relative;
    display: block;
    padding: 150px 0px 150px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(96,56,20);
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

    .page-header__bg::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(96,46,23, 0.75);
        content: "";
        z-index: -1;
    }

.page-header .shape1 {
    position: absolute;
    top: -130px;
    left: -120px;
    opacity: 0.5;
    z-index: -1;
}

.page-header .container {
    max-width: 1050px;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

    .page-header__inner h2 {
        color: #fff;
        font-size: 50px;
        line-height: 1.4em;
        font-weight: 700;
        text-transform: capitalize;
    }
    .page-header__inner h2 span {
        color: #efcb81;
    }
        .page-header__inner h2 b {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 60px;
        }
        .page-header__inner h4 {
        color: #ffffff;
        margin-top: 10px;
        font-weight: 400;
        line-height: 1.8em;
    }
    .page-header__inner p {
        color: #ffffff;
        margin-top: 30px;
    }

    .page-header__inner .thm-breadcrumb {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 18px;
    }

        .page-header__inner .thm-breadcrumb li {
            color: var(--himconnect-white);
            font-size: 18px;
            line-height: 28px;
            font-weight: 600;
            text-transform: capitalize;
            margin-left: 5px;
            margin-right: 5px;
        }

            .page-header__inner .thm-breadcrumb li:first-child {
                margin-left: 0px;
            }

            .page-header__inner .thm-breadcrumb li:last-child {
                margin-right: 0px;
            }

            .page-header__inner .thm-breadcrumb li a {
                color: var(--himconnect-white);
                font-size: 18px;
                line-height: 28px;
                font-weight: 600;
                text-transform: capitalize;
            }

            .page-header__inner .thm-breadcrumb li span {
                position: relative;
                display: inline-block;
                font-size: 18px;
                line-height: 18px;
                font-weight: 400;
                top: 2px;
            }
.services-details__content-text2-bottom-content {
    position: relative;
    display: block;
    margin-top: 15px;
}

    .services-details__content-text2-bottom-content ul {
        position: relative;
        display: block;
    }

        .services-details__content-text2-bottom-content ul li {
            position: relative;
            display: flex;
        }
            .services-details__content-text2-bottom-content ul li span {
                color: #b89752;
            }
            .services-details__content-text2-bottom-content ul li + li {
                margin-top: 16px;
            }

            .services-details__content-text2-bottom-content ul li p {
               
                
                margin-top:0px;
            }

                .services-details__content-text2-bottom-content ul li p b {
                    color: #333;
                }

            .services-details__content-text2-bottom-content ul li span::before {
                position: relative;
                display: inline-block;
                color: var(--himconnect-base);
                font-size: 18px;
                line-height: 18px;
                font-weight: 700;
                top: 2px;
                margin-right: 15px;
            }
.button-secondry, .button-secondry:focus {
    color: rgb(96,56,20);
    background-color: #b89752;
    border-color: #b89752;
    font-size: 16px;
    font-weight:700;
}

.faq-container {
    max-width: 100%;
    margin: 0px auto;
    padding: 20px 0px;
    border-radius: 8px;
}

    .faq-container h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.faq-item {
    border-bottom: 1px solid #ddd;
    background: #f7f2f2;
    margin-bottom:30px;
}

    .faq-item input {
        display: none;
    }

    .faq-item label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        font-weight: bold;
        cursor: pointer;
    }

/* Arrow */
.faqarrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item input:checked + label .faqarrow {
    transform: rotate(-135deg);
}

/* Auto height animation */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

    .faq-content p {
        overflow: hidden;
        padding: 0 15px;
        margin: 0;
        color: #555;
    }

.faq-item input:checked ~ .faq-content {
    grid-template-rows: 1fr;
}

    .faq-item input:checked ~ .faq-content p {
        padding: 0 15px 15px;
    }
