.media_page {
    .page-title {
        margin-bottom: 60px;
    }

    h4{
        font-size: 24px !important;
    }

    #strengths h2 {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px #AAAAAA solid;
    }

    .strengths_area h4 {
        margin-top: 30px;
    }

    .strengths_wrap {
        display: flex;
        justify-content: space-between;
        margin-top: 120px;

        @media screen and (max-width:498px) {
            margin-top: 30px;
        }
    }

    .strengths_single {
        width: 23%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    }

    .strengths_area {
        margin-top: 60px;
        background-color: #F3F9FC;
        padding: 30px 60px 60px;

        @media screen and (max-width:498px) {
            padding: 30px 30px 60px;
        }

        h3 {
            text-align: center;
            border: none;
            font-size: 30px;

            &::after {
                content: "";
                display: block;
                margin: 25px auto 0;
                width: 125px;
                height: 5px;
                background-color: #5ACFD6;
            }
        }

        h4 {
            color: #323232;
        }
    }

    .support_wrap,
    .dormitory_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5%;

        img {
            width: 25%;
            height: auto;
        }
    }

    .support_wrap h4 {
        width: fit-content;
        font-size: 22px !important;

        &::after {
            content: "";
            display: block;
            width: 100%;
            height: 10px;
            background-color: #5ACFD6;
            margin-top: -15px;
        }
    }

    .evaluation {
        ol {
            list-style: none;
        }
    }

    .evaluation_wrap {
        h4 {

            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            padding-left: 60px;

            &:nth-of-type(1) {
                background-image: url(../../images/media-page/evaluation_bg1.png);
            }

            &:nth-of-type(2) {
                background-image: url(../../images/media-page/evaluation_bg2.png);
            }
        }
    }

    .evaluation_wrap ol {
        margin: 0 0 60px;
    }

    .evaluation_wrap li {
        display: flex;
        align-items: center;
        background-color: #fff;
        border-radius: 20px;
        width: 70%;
        line-height: 1;
        padding: 15px;
        margin: 20px 0;
        font-size: 16px;
        font-weight: 600;

        @media screen and (max-width:498px) {
            width: 100%;
        }
    }

    .evaluation_num {
        font-size: 40px;
        color: #0E4D8F;
        padding: 0 30px;
        border-right: 4px #0E4D8F solid;
        margin-right: 30px;
    }

    .skill_wrap {
        .large {
            display: block;
            font-size: 20px;
            margin: 30px 0 10px;
        }
    }

    .skill_single {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;

        @media screen and (max-width:498px) {
            display: block;
        }

        h4 {
            margin: 0;
            padding: 0;
            background-size: 45px;
            background-repeat: no-repeat;
            background-position: left top;
            padding-left: 70px;
            width: 35%;

            @media screen and (max-width:498px) {

                width: 100%;

            }
        }

        &:nth-of-type(1) h4 {
            background-image: url(../../images/media-page/skill_bg1.png);
        }

        &:nth-of-type(2) h4 {
            background-image: url(../../images/media-page/skill_bg2.png);
            background-size: 30px;
        }

        &:nth-of-type(3) h4 {
            background-image: url(../../images/media-page/skill_bg3.png);
        }

        p {
            width: 60%;

            @media screen and (max-width:498px) {
                padding-left: 70px;
                width: 100%;
            }
        }
    }

    .dormitory_wrap {
        .large {
            font-size: 20px;
        }

        ul {
            list-style: none;
            margin-top: 30px;
            font-size: 23px;
            color: rgb(80, 80, 80);
            @media screen and (max-width: 480px) {
            /* font-size: 20px; */
            font-size: 16px !important;
        }
        }

        img {
            width: 10%
        }
    }


    @media screen and (max-width:769px) {
        .strengths_wrap {
            flex-wrap: wrap;
            padding: 3%;
            gap: 20px;
        }

        .strengths_single {
            width: 45%;
        }

        .support_wrap,
        .dormitory_wrap {
            flex-direction: column-reverse;

            img {
                width: 60%;
                margin: 0 auto;
                display: block;
            }
        }

        .dormitory_wrap img {
            width: 30%;
            margin-bottom: 30px;
        }
    }
}