.container.page-head {
    color: #fff;
    background: url(images/page-head-bg.png) center top no-repeat;
        background-size: cover;
        min-height: auto;
        margin-top: 30px;
        opacity: 0.9;

    @media (max-width: 576px)  {
        background: url(images/page-head-mobile-bg.png) center top no-repeat;
        background-size: cover;
        min-height: auto;
        margin-top: 30px;
    }

    & h1 {
        font-weight: 500;
        font-size: 34px;
        line-height: 36px;
        max-width: 420px;
        padding: 0 50px;

        @media (max-width: 576px) {
            font-size: 18px;
            max-width: 50%;
            padding: 0 10px;
            line-height: 22px;
        }
    }
    & .description {
        padding: 40px 50px 0;
        font-size: 26px;

        @media (max-width: 576px) {
            padding: 30px 10px;
            font-size: 14px;
        }

        & h2, h3, h4, h5 {
            font-size: 32px;
            font-weight: 500;

            @media (max-width: 576px) {
                font-size: 16px;
            }
        }
        & p {
            max-height: 195px;
            overflow: hidden;
        }
        & .btn-cover {
            width: 100%;
            text-align: center;
			margin-bottom: 20px;
            padding-bottom: 20px;
        }
    }
}
.container.page-body {
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;

    @media (max-width: 576px) {
        padding: 30px 10px;
    }

    & .page-item {
        padding-bottom: 15px;

        & h4 {
            font-size: 32px;
            font-weight: 500;
            border-bottom: 1px solid var(--black);
            padding-bottom: 10px;
            position: relative;
            @media (max-width: 576px) {
                font-size: 16px;
            }

            & svg {
                position: absolute;
                top: 8px;
                right: 0;

                @media (max-width: 576px) {
                    width: 20px;
                    height: 20px;
                    top: 2px;
                }
            }
        }
        & .page-body-text {
            height: 0px;
            overflow: hidden;
            transition: all .5s;
            font-size: 26px;
            & .strong {
                font-weight: 500;
                margin: 0;
            }
            @media (max-width: 576px) {
                font-size: 14px;
            }
        }
        &.open {
            & h4 {
                color: var(--primary);
                border-color: var(--primary);

                & svg {
                    stroke: var(--primary);
                    & rect {
                        stroke: var(--primary);
                    }
                    & path {
                        fill: var(--primary);
                    }
                }
            }
            & .page-body-text {
                height: auto;
                padding-bottom: 20px;
            }
        }
    }
}