.FlowContainerFoldMenuTitle h2 {
    text-align: center;
    margin: 70px 0;
}

.FlowNanoanAnalyzerFoldMenuBox {
    border-radius: 40px;
    margin-bottom: 40px;
}

.FlowNanoanAnalyzerFoldMenuBox:nth-child(1) {
    background-color: rgba(72, 110, 217, 1);
}

.FlowNanoanAnalyzerFoldMenuBox:nth-child(2) {
    background-color: rgba(27, 168, 207, 1);
}

.FlowNanoanAnalyzerFoldMenuBox:nth-child(3) {
    background-color: rgba(237, 139, 40, 1);
}

.FlowNanoanAnalyzerFoldMenuTitle {
    display: flex;
    align-items: center;
    padding: 24px;
    transition: height 0.5s ease, border-radius 0.5s ease;
    height: 225px;
    position: relative;
}

.FlowNanoanAnalyzerFoldMenuTitle.active {
    height: 140px;
    border-radius: 40px 40px 0px 0px;
}

.FlowNanoanAnalyzerImg {
    opacity: 1;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease, height 0.5s ease, background-color 0.5s ease;
    width: 230px;
    height: 180px;
    background-color: rgba(255, 255, 255, 1);
}

.FlowNanoanAnalyzerFoldMenuTitle.active .FlowNanoanAnalyzerImg {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0);
}

.FlowNanoanAnalyzerSelectImg {
    display: none;
}

.FlowNanoanAnalyzerUnselectedImg {
    padding: 40px;
    transition: transform 0.3s;
}

.FlowNanoanAnalyzerFoldMenuBox:hover .FlowNanoanAnalyzerUnselectedImg {
    transform: scale(1.2);
}

.FlowNanoAnalyzerTitleBox {
    margin: 0 0px 0px 50px;
}

.FlowNanoAnalyzerTitleBox .FlowNanoAnalyzerTitle {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    width: auto;
}

.FlowNanoanAnalyzerSelectTitle {
    opacity: 0;
    width: 100%;
    position: absolute;
    transform: translateY(-40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.FlowNanoanAnalyzerFoldMenuBox:hover .FlowNanoanAnalyzerSelectTitle {
    opacity: 1;
    transform: translateY(0);
}

.FlowNanoanAnalyzerUnselectedTitle {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.FlowNanoanAnalyzerFoldMenuBox:hover .FlowNanoanAnalyzerUnselectedTitle {
    opacity: 0;
    transform: translateY(40px);
}

.fa-arrow-right:before {
    color: #ffffff;
    font-size: 32px;
}

.FlowNanoanAnalyzerText {
    border-radius: 0px 0px 40px 40px;
    background: rgba(240, 241, 242, 1);
    display: flex;
    align-items: center;
    padding: 40px;
    display: none;
}

.FlowNanoanAnalyzerText.active {
    display: block;
}

.FlowNanoanAnalyzerText p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(43, 43, 43, 1);
}

.FlowNanoanAnalyzerFoldFaRight {
    transform: rotate(45deg);
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.FlowNanoanAnalyzerFoldMenuBox:hover .FlowNanoanAnalyzerFoldFaRight {
    /* transform: rotate(225deg); */
    background-color: #ffffff50;

}

@media only screen and (max-width: 991px) {
    .FlowNanoAnalyzerTitleBox .FlowNanoAnalyzerTitle {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .FlowNanoanAnalyzerFoldMenuBox {
        border-radius: 10px;
    }

    .FlowNanoanAnalyzerFoldMenuTitle {
        height: 90px;
    }

    .FlowNanoanAnalyzerFoldMenuTitle.active {
        height: 39px;
    }

    .FlowNanoAnalyzerTitleBox .FlowNanoAnalyzerTitle {
        font-size: 14px;
        font-weight: 500;
    }

    .FlowNanoanAnalyzerFoldMenuTitle.active {
        height: 39px;
    }

    .FlowNanoanAnalyzerImg {
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }

    .FlowNanoanAnalyzerFoldMenuTitle.active .FlowNanoanAnalyzerImg {
        width: 30px;
        height: 30px;
    }

    .FlowNanoanAnalyzerUnselectedImg {
        padding: 5px;
    }

    .FlowNanoanAnalyzerText {
        border-radius: 0px 0px 10px 10px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .FlowNanoanAnalyzerText p {
        font-size: 13px;
    }

    .fa-arrow-right:before {
        font-size: 18px;
    }

    .FlowNanoanAnalyzerFoldFaRight {
        padding: 5px;
        right: 5px;
        bottom: 5px;
    }
}