.school_container {
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
}

.q_01 {
    font-size: 3.6rem;
    font-weight: 500;
}

.a_01 {
    font-size: 2.4rem;
    margin-top: 20px;
}

.top_bar {
    background: #004b9d;
    height: 15vh;
}

.school_name {
    padding: 2% 0;
    text-align: center;
    font-size: 4rem;
}

.cta {
    border: solid 1px #004b9d;
    border-radius: 100px;
    padding: 1%;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    width: 350px;
    margin: 0 auto;
}

.centerling {
    text-align: center;
}

.left_container,
.right_container {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.left_container {
    transform: translateX(-50px);
}

.fade-in-left,
.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 1.6rem;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: ">";
    padding: 0 0.5em;
    color: #999;
}

.breadcrumb a {
    text-decoration: none;
    color: #004b9d;
}

.breadcrumb .top-link {
    font-weight: 600;
}


.animated-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.animated-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background-color: #004b9d;
    animation: underline-expand 1s forwards;
}

@keyframes underline-expand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.sec_01 {
    width: 100%;
    display: flex;
    margin-bottom: 100px;
    align-items: center;
}

.sec_01 .left_container {
    width: 55%;
    margin-right: 0;
    background: #004b9d;
    color: #fff;
    padding: 3%;
}

.sec_01 .right_container {
    width: 40%;
}

.sec_01 .right_container img {
    width: 100%;
}

.sec_02 {
    width: 100%;
    display: flex;
    margin-bottom: 100px;
    align-items: center;
}

.sec_02 .left_container {
    width: 40%;
}

.sec_02 .right_container {
    width: 55%;
    margin-right: 0;
    background: #004b9d;
    color: #fff;
    padding: 3%;
}

.sec_02 .left_container img {
    width: 100%;
}

@media screen and (max-width:767px) {

    .school_container {
        margin-top: 50px;
    }

    .school_name h2 {
        font-size: 2.4rem;
        width: 90%;
        margin: 0 auto;
    }

    .q_01 {
        font-size: 2.4rem;
        padding: 4%;
    }

    .a_01 {
        font-size: 1.6rem;
        padding: 4%;
        margin-top: 0;
    }

    .q_01 {
        font-size: 2.4rem;
        padding: 4% 4% 0;
    }

    .top_bar {
        height: 100px;
    }

    .cta {
        width: 90%;
        margin: 0 auto;
    }

    .sec_01 {
        width: 100%;
        margin-bottom: 50px;
        align-items: center;
        flex-direction: column;
    }

    .sec_01 .left_container {
        width: 100%;
        margin-right: 0;
        background: #004b9d;
        color: #fff;
        padding: 0%;
        order: 2;
    }

    .sec_01 .right_container {
        width: 100%;
        order: 1;
    }

    .sec_02 {
        width: 100%;
        display: flex;
        margin-bottom: 50px;
        align-items: center;
        flex-direction: column;
    }

    .sec_02 .left_container {
        width: 100%;
    }

    .sec_02 .right_container {
        width: 100%;
        margin-right: 0;
        background: #004b9d;
        color: #fff;
        padding: 0%;
    }

}

@media screen and (max-width:767px) {
    a.cta {
        font-size: 1.6rem;
    }
}