.certification-support-section {
    @media screen and (min-width: 767.8px) {
        padding-block: 100px;
    }
}

.certification-support-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.certification-support-section .container > div {
    width: 100%;
    flex-basis: 100%;
}

.certification-support-section__text-wrapper p {
    width: 850px;
    max-width: 100%;
    margin-inline: auto;
}

.certification-support-values {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 850px;
    flex-basis: 850px;
    margin-inline: auto;
    max-width: 100%;
}

.certification-support-value {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    column-gap: 24px;
    @media screen and (min-width: 767.8px) {
        align-items: center;
    }
}

.certification-support-value .icon {
    width: 24px;
    flex: 0 0 24px;

}

.certification-support-value .text {
    flex: 1 1 auto;
    margin: 0;
}

.certification-support-title .arrow {
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certification-support-title .arrow svg{
    transition: 0.4s all;
}
.certification-support-title.active .arrow svg{
   transform: rotate(180deg);
}
.certification-support-value .text h5 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
    @media screen and (min-width: 767.8px) {
        font-size: 24px;
    }
}

.certification-support-value .text p {
    @media screen and (max-width: 767.8px) {
        font-size: 14px;
    }
}

.certification-support-section__button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.certification-support-section__button-wrapper a {
    width: 100%;
    @media screen and (min-width: 575.8px) {
        width: auto;
    }
}

.certification-accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
}

.certification-support-content {
    /*transition: all .4s ease-out;*/
    display: none;
    background-color: #fafafa;
    padding: 16px;
    border-radius: 0;
    color: var(--grey-100);
    width: 100%;
}

/*.close .certification-support-content {*/
/*    height: 0;*/
/*    -webkit-transform: scaleY(0);*/
/*    -o-transform: scaleY(0);*/
/*    -ms-transform: scaleY(0);*/
/*    transform: scaleY(0);*/
/*    float: left;*/
/*    display: block;*/


/*}*/

/*.open .certification-support-content {*/
/*    padding: 20px;*/
/*    background-color: #fff;*/
/*    border: 1px solid #ddd;*/
/*    width: 100%;*/
/*    margin: 0 0 10px 0;*/
/*    display: block;*/
/*    -webkit-transform: scaleY(1);*/
/*    -o-transform: scaleY(1);*/
/*    -ms-transform: scaleY(1);*/
/*    transform: scaleY(1);*/
/*    -webkit-transform-origin: top;*/
/*    -o-transform-origin: top;*/
/*    -ms-transform-origin: top;*/
/*    transform-origin: top;*/
/*    box-sizing: border-box;*/
/*}*/


.certification-support-title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background-color: var(--green-700);
    border-radius: 16px;
    cursor: pointer;
}

.certification-support-title h5 {
    font-size: 18px;
    font-weight: 500;
}

