@charset "UTF-8";
@import url('//fonts.googleapis.com/earlyaccess/nanumpenscript.css');
/* font-family: 'Nanum Pen Script', cursive;  */


/*******************************************************************************
                                    애니메이션
********************************************************************************/
@keyframes bgImg {
    0% {
        width: 120%;
        height: 120%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}
@keyframes btn {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(30%);
    }
}
@keyframes text {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}


/*******************************************************************************
                                  layout
********************************************************************************/
html,body {scroll-behavior: smooth}
.pandemic-section01 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pandemic-section01::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #DFFCEF url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section01-bg01-221021.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1;
    animation: bgImg 3s forwards;
}
.pandemic-section02 {
    height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pandemic-section02::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%,-50%);
    background: #DFFCEF url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section02-bg01-221021.jpg") no-repeat center bottom;
    background-size: cover;
    z-index: -1;
}
.pandemic-section02.active::before {
    animation: bgImg 3s forwards;
}
.pandemic-section03 {
    background: linear-gradient(to top ,#FFE9BF, #FFE9BF00 30%);
    padding-bottom: 6rem;
    text-align: center;
}
.pandemic-section04 {
    background: #ECFCFF;
}
.pandemic-section05 {
    background: linear-gradient(to bottom, #ECFCFF 20%, #6D453B 20%);
}

.pandemic-report * {
    box-sizing: border-box;
}

.pandemic-width {
    width: 1080px;
    margin: 0 auto;
    padding: 6rem 0;
    text-align: center;
}
.pandemic-section-btn {
    animation: btn 2s alternate infinite;
    display: inline-block;
}
.pandemic-section-btn > svg {
    width: 1.6rem;
}

@media screen and (max-width: 1200px) {
    .pandemic-width {
        width: 100%;
        padding: 6rem 1.5rem;
    }
}
@media screen and (max-width: 768px) {
    .pandemic-section01::before {
        background: #DFFCEF url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section01-bg02-221021.jpg") no-repeat center center;
        background-size: cover;
    }
    .pandemic-section05 {
        background: #6D453B;
    }

}
/*******************************************************************************
                                메인 타이틀
********************************************************************************/
.pandemic-section01-title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-100%);
    line-height: 1.2;
    width: 100%;
}
.pandemic-section01-title > span {
    font-size: 2rem;
    color: #565697;
    overflow: hidden;
    display: inline-block;
}
.pandemic-section01-title > span > span {
    display: inline-block;
    transform: translateY(1.4em);
    animation: text 1.6s forwards;
}
.pandemic-section01-title > strong {
    font-size: 4.5rem;
    color: #fff;
    overflow: hidden;
    display: inline-block;
}
.pandemic-section01-title > strong > strong {
    display: inline-block;
    transform: translateY(100%);
    animation: text 1.6s .2s forwards;
}
.pandemic-section01-con {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    width: 100%;
}
.pandemic-section01-con > p {
    font-size: 0;
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section01-img01-221021.png") no-repeat center center;
    background-size: 100%;
    width: 27.5rem;
    height: 2.2rem;
    margin: 0 auto .5rem;
}
@media screen and (max-width: 768px) {
    .pandemic-section01-title > span {
        font-size: calc(1rem + 3.6vw);
    }
    .pandemic-section01-title > strong {
        font-size: calc(1rem + 8.1vw);
    }
    .pandemic-section01-con > p {
         background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section01-img02-221021.png") no-repeat center center;
         background-size: contain;
         width: 80%;
         height: 80px;
     }
    .pandemic-section01-con {
        bottom: 15%;
    }
}
/*******************************************************************************
                            안전한 유학 문화 정착
********************************************************************************/
.pandemic-section02 > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.pandemic-section02-title {
    font-size: 2.7rem;
    margin-bottom: 1.2rem;
    color: #333;
    overflow: hidden;
}
.pandemic-section02-title > span {
    display: inline-block;
    transform: translateY(100%);
}
.pandemic-section02.active .pandemic-section02-title > span {
    animation: text 1.6s forwards;
}
.pandemic-section02-text {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
    overflow: hidden;
}
.pandemic-section02-text > span  {
    display: inline-block;
    transform: translateY(100%);
}
.pandemic-section02.active .pandemic-section02-text > span {
    animation: text 3.2s .4s forwards;
}
.pandemic-section02.active .pandemic-section02-text2 > span {
    animation: text 3.2s .8s forwards;
}
.pandemic-section02-text:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .pandemic-section02-title {
        font-size: calc(1rem + 5.3vw);
    }
    .pandemic-section02-text {
        font-size: calc(1rem + .9vw);
    }
}
/*******************************************************************************
                    코로나19로 인한 어학연수 취소 고객 환불 완료
********************************************************************************/
.pandemic-section03-title {
    margin-bottom: 2rem;
    font-size: 2.7rem;
    color: #333;
    text-align: left;
}
.pandemic-section03-con {
    position: relative;
    margin-bottom: 10rem;
    z-index: 1;
}
.pandemic-section03-con-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: #000;
    z-index: -1;
}
.pandemic-section03-con-textBox {
    width: 1080px;
    margin: 0 auto;
    text-align:left;
}
.pandemic-section03-con-title {
    color: #0F4FC8;
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
}
.pandemic-section03-con-title > strong {
    color: #0EB4C2;
}
.pandemic-section03-con-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    width: 50%;
}
.pandemic-section03-con-text > strong {
    color: #0F4FC8;
}
.pandemic-section03-con-text > small {
    color: #777;
    font-size: .9rem;
}
.pandemic-section03-con-text > small::before {
    content: '*';
}
.pandemic-section03-bottom-text {
    font-size: 1.7rem;
    color: #555555;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.pandemic-section03-bottom-text::after,
.pandemic-section03-bottom-text::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 1.6rem;
    height: 1.1rem;
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-icon01-221021.png") no-repeat center center;
    background-size: cover;
}
.pandemic-section03-bottom-text::after {
    left: 100%;
    right: auto;
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-icon02-221021.png") no-repeat center center;
    background-size: cover;
}
.pandemic-section03-bottom-text > strong {
    color: #C15424;
}
.pandemic-section03-con1 .pandemic-section03-con-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-img01-221021.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section03-con2 .pandemic-section03-con-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-img02-221021.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section03-con3 .pandemic-section03-con-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-img03-221021.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section03-con4 .pandemic-section03-con-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section03-img04-221021.jpg") no-repeat center center;
    background-size: cover;
}

@media screen and (max-width: 1200px) {
    .pandemic-section03 .pandemic-width {
        padding: 4rem 1.5rem;
    }
    .pandemic-section03-title {
        margin-bottom: 0;
    }
    .pandemic-section03-con {
        position: relative;
        margin-bottom: 9rem;
    }
    .pandemic-section03-con-img {
        position: static;
        height: 15rem;
        width: calc(100% - 1.5rem);
        margin: 0 0 2rem auto;
        z-index: 1;
    }
    .pandemic-section03-con-textBox {
        width: 100%;
        padding: 0 1.5rem;
    }
    .pandemic-section03-con-text {
        width: 100%;
    }
    .pandemic-section03-bottom-text {
        display: inline-block;
    }
}
@media screen and (max-width: 768px) {
    .pandemic-section03-title {
        font-size: calc(1rem + 5.3vw);
    }
    .pandemic-section03-con-title {
        font-size: calc(1rem + 2.4vw);
    }
    .pandemic-section03-con-text {
        font-size: calc(1rem + .9vw);
    }
    .pandemic-section03-con-text > small {
        font-size: calc(1rem + .3vw);
    }
    .pandemic-section03-bottom-text {
        font-size: calc(1rem + 2vw);
    }
    .pandemic-section03-bottom-text::after,
    .pandemic-section03-bottom-text::before {
        right: auto;
        left: 50%;
        top: 102%;
        transform: translateX(-50%);
    }
    .pandemic-section03-bottom-text::after {
        bottom: 102%;
        top: auto;
    }
}
/*******************************************************************************
                        유학원 사기 피해 학생들 구제 활동
********************************************************************************/
.pandemic-section04 .pandemic-width {
    text-align: left;
}
.pandemic-section04-title {
    font-size: 2.7rem;
    color: #333;
    margin-bottom: .7rem;
}
.pandemic-section04-title > span {
    display: inline-block;
    padding: .5rem 1.5rem;
    margin-bottom: .7rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    border-radius: 1.5rem;
    background: #333;
    color: #fff;
    font-size: 1.1rem;
}
.pandemic-section04-title > span svg {
    width: 3rem;
}
.pandemic-section04-title > span svg text {
    font-size: 0;
}
.pandemic-section04-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 4rem;
}
.pandemic-section04-con {
    background: #fff;
    padding: 3rem 2rem;
    -webkit-border-radius: .6rem;
    -moz-border-radius: .6rem;
    border-radius: .6rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pandemic-section04-textBox {
    width: calc(98% - 10.75rem);
}
.pandemic-section04-con-title {
    font-size: 1.7rem;
    color: #333333;
    line-height: 1.2;
    margin-bottom: .7rem;
}
.pandemic-section04-con-title > span {
    font-size: .8rem;
    color: #888888;
    font-weight: 400;
}
.pandemic-section04-con-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #000;
}
.pandemic-section04-imgBox {
    width: 10.75rem;
}
.pandemic-section04-imgBox > a {
    display: inline-block;
    width: 10.75rem;
    height: 10.75rem;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #000;
}
.pandemic-section04-imgBox > a > span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0F4FC8;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    width: 5rem;
    height: 5rem;
}
.pandemic-section04-con1 .pandemic-section04-imgBox > a {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section04-img01-221021.jpg") no-repeat center top;
    background-size: cover;
}
.pandemic-section04-con2 .pandemic-section04-imgBox > a {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section04-img02-221021.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section04-con3 .pandemic-section04-imgBox > a {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section04-img03-221021.jpg") no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 768px) {
    .pandemic-section04-title {
        font-size: calc(1rem + 5.3vw);
    }
    .pandemic-section04-title > span {
        font-size: calc(1rem + .3vw);
    }
    .pandemic-section04-title > span svg {
        width: 3rem;
        height: 100%;
    }
    .pandemic-section04-text {
        font-size: calc(1rem + .3vw);
    }
    .pandemic-section04-con {
        display: block;
        text-align: center;
    }
    .pandemic-section04-textBox {
        width: 100%;
        margin-bottom: 1rem;
    }
    .pandemic-section04-con-title {
        font-size: calc(1rem + 2.4vw);
    }
    .pandemic-section04-con-title > span {
        font-size: calc(1rem + .3vw);
    }
    .pandemic-section04-con-text {
        font-size: calc(1rem + .4vw);
    }
    .pandemic-section04-imgBox {
        width: 10.75rem;
        margin: 0 auto;
    }
    .pandemic-section04-imgBox > a {
        width: 10.75rem;
        height: 10.75rem;
    }
    .pandemic-section04-imgBox > a > span {
        font-size: calc(1rem + .4vw);
    }
}
/*******************************************************************************
                            소비자가 선택한 유학기업 1위
********************************************************************************/
.pandemic-section05 > .pandemic-width {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-bg01-221021.png") no-repeat center right;
    background-size: contain;
    text-align: left;
}
.pandemic-section05-text {
    text-align: center;
    color: #fff;
    font-size: 1.7rem;
    display: inline-block;
    transform: translateY(25%);
    line-height: 1.2;
    font-weight: 700;
}
.pandemic-section05-text > strong {
    display: inline-block;
    line-height: 1;
    position: relative;
}
.pandemic-section05-text > strong::after ,
.pandemic-section05-text > strong::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 3rem;
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img01-221021.png") no-repeat center center;
    background-size: contain;
}
.pandemic-section05-text > strong::after {
    right: auto;
    left: 100%;
    transform: translateY(-50%) rotateY(180deg);
}
.pandemic-section05-text > span {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    display: inline-block;
}
@media screen and (max-width: 768px){
    .pandemic-section05 > .pandemic-width {
        text-align: center;
        background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-bg01-221021.png") no-repeat right bottom;
        background-size: 150%;
        padding: 6rem 1.5rem 25rem;
    }
    .pandemic-section05-text {
        font-size: calc(1rem + 2.4vw);
        transform: translateY(0);
    }
    .pandemic-section05-text > span {
        font-size: calc(1rem + .4vw);
    }
}
/*******************************************************************************
                                    수상
********************************************************************************/
.pandemic-section06-title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    color: #000;
}
.pandemic-section06-con {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: .5rem;
    text-align: left;
}
.pandemic-section06-img {
    width: 100%;
    height: 12rem;
    margin-bottom: .5rem;
}
.pandemic-section06-con-text {font-size: .8rem;}
.pandemic-section06-con-text > span {color: #6CB741;}

.pandemic-section06-col1 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/brand-edm/trace_award_img01_250110.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section06-col2 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img02-220913.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section06-col3 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img03-220913.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section06-col4 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img04-220913.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section06-col5 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img05-220913.jpg") no-repeat center center;
    background-size: cover;
}
.pandemic-section06-col6 .pandemic-section06-img {
    background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/pages/pandemic/pandemic-section05-img06-220913.jpg") no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 1200px) {
    .pandemic-section06-con {
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 768px) {
    .pandemic-section06-title {
        font-size: calc(1rem + 4vw);
    }
    .pandemic-section06-con-text{
        font-size: calc(1rem - .6vw);
    }
    .pandemic-section06-img {
        height: 8rem;
    }
}
