/* Style the frequently asked questions */
.PageMainFaq {
    width: 100%;

    padding-left: 17px;
    padding-right: 17px;
}

    .PageMainFaq details {
        transition: 0.4s;
    }

    .PageMainFaq .PageServicesLandingSection__Header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        width: 100%;

        margin-bottom: 47px;
    }

        .PageMainFaq .PageServicesLandingSectionHeader__Titul {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;

            color: rgb(217, 221, 225);

            width: 100%;
        }

            .PageMainFaq .PageServicesLandingSectionHeader__Titul > span {
                color: rgb(247, 197, 47);

                margin-left: 4px;
                margin-right: 4px;
            }

        .PageMainFaq .PageServicesLandingSectionHeader__Title {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;

            width: 100%;
        }

            .PageMainFaq .PageServicesLandingSectionHeader__Title > h2 {
                text-align: left;

                max-width: 700px;
            }

    .PageMainFaq .PageServicesLandingFaq__Block {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        width: 100%;
    }

        .PageMainFaq .PageServicesLandingFaqBlock__Item {
            background: rgb(60, 64, 68);
            border-radius: 3px;

            margin-bottom: 7px;
        }

            .PageMainFaq .PageServicesLandingFaqBlock__Item:hover,
            .PageMainFaq .PageServicesLandingFaqBlock__Item[open] {
                background: rgb(64, 68, 72);

                transition: 0.2s;
            }

            .PageMainFaq .PageServicesLandingFaqBlockItem__Question {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;

                min-height: 70px;

                padding: 17px 20px;

                cursor: pointer;
                list-style: none;
            }

                .PageMainFaq .PageServicesLandingFaqBlockItem__Question::-webkit-details-marker {
                    display: none;
                }

                .PageMainFaq .PageServicesLandingFaqBlockItem__Question > span {
                    font-size: 15px;
                    font-weight: 700;

                    margin-right: 17px;
                }

                .PageMainFaq .PageServicesLandingFaqBlockItem__Question > i {
                    color: rgb(97, 107, 117);
                    font-size: 17px;

                    transition: 0.4s;
                }

                    .PageMainFaq .PageServicesLandingFaqBlock__Item[open] .PageServicesLandingFaqBlockItem__Question > i {
                        transform: rotate( 180deg );

                        transition: 0.2s;
                    }

            .PageMainFaq .PageServicesLandingFaqBlockItem__Answer {
                color: rgb(217, 221, 225);
                font-size: 14px;
                font-weight: 300;
                line-height: 1.75;

                max-width: 900px;

                padding: 0 20px 24px 20px;
            }

/* Style the mobile version */
@media screen and (max-width: 550px){
    .PageMainFaq {
        padding-left: 12px;
        padding-right: 12px;
    }

        .PageMainFaq .PageServicesLandingSection__Header {
            align-items: center;
        }

            .PageMainFaq .PageServicesLandingSectionHeader__Titul {
                justify-content: center;
            }

            .PageMainFaq .PageServicesLandingSectionHeader__Title {
                justify-content: center;
            }

                .PageMainFaq .PageServicesLandingSectionHeader__Title > h2 {
                    text-align: center;
                }
}
