@charset "utf-8";
.sub_title {
    display: block;
    color: #32B5E5;
    font-size: 2rem;
    text-decoration: underline;
    margin-bottom: 2rem;
}

.main_title {
    font-family: 'title';
    font-size: 4rem;
    color: #275F98;
    line-height: 1.3;
    margin-bottom:5rem;
}

.main_title span {
    color: #32B5E5;
}
/* review */
.review .inner {
    display: flex;
    gap: 10rem;
    padding: 10rem 0;
}
.tab {
    width: 70%;
    margin-top: 5rem;
}
.tabmenu {
    display: flex;
    gap: 1rem;
}
.tabmenu li {
    color: #275F98;
    border: 3px solid #275F98;
    padding: 0.5rem 2rem;
    font-size: 2rem;
    border-radius: 30px;
    width: fit-content;
    cursor: pointer;
    margin-bottom: 2rem;
}
.tabmenu li.on {
    color: #fff;
    background-color: #275F98;
}

.tabcontent {
    position: relative;
    width: 100%;
}

.tabcontent ul {
    position: relative;
    width: 100%;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
}

.tabcontent ul.on {
    display: flex;
}

.tabcontent ul li {
    width: 32%;
    padding: 2rem 2rem 8rem 2rem;
    border-radius: 50px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    box-sizing: border-box;
    margin-bottom: 2rem;
}
.tabcontent ul li span {
    background-color: #275F986A;
    color: #fff;
    font-size: 1.6rem;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    display: block;
    width: fit-content;
}
.tabcontent ul li h4 {
    font-size: 2.4rem;
    margin: 3rem 0;
    font-family: 'title';
    white-space: nowrap;
    text-align: center;
}
.tabcontent ul li p {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: justify;
}
.tabcontent ul li h3 {
    font-size: 3rem;
    margin-top: 4rem;
    color: #C0392B;
    text-align: center;
    font-family: 'title';
    position: absolute;
    width: 100%;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}
.tabcontent ul li .center {
    font-weight: 500;
    opacity: 0.8;
    padding-top: 5px;
    color: #C0392B;
}
.tabcontent ul.person2 span {
    background-color: #275f98c7;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}
.pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff;
    color: #333;
    transition: all 0.2s ease-in-out;
}
.pagination span.active {
    background-color: #275F98;
    color: #fff;
    border-color: #275F98;
    font-weight: bold;
}
/* count */
.count {
    background-color: #121216;
    padding: 3rem 0;
}

.count .inner {
    display: flex;
    justify-content: space-between;
    color: #e5e8eb;
    text-align: center;
}

.count .num h3 {
    font-family: 'title';
    font-size: 4rem;
    font-weight: 400;
}

.count .num h3 em {
    font-family: 'title';
    font-style: normal;
}

.count .num span {
    font-size: 2rem;
}
/* real */
.real {
    text-align: center;
    padding: 10rem 0;
}
.realslide {
    width: 100%;
    margin-top: 10rem;
    padding: 3rem;
}
.realslide .swiper-slide {
    height: 450px;
    border-radius: 50%;
    background-color: #275f9814;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    opacity: 0.5;
    transform: scale(0.9);
    position: relative;
}
.realslide .swiper-slide.swiper-slide-active {
    transition: all .5s;
    background-color: #275f9814;
    opacity: 1;
    box-shadow: 0 0 20px rgba(96, 129, 255, 0.2);
    transform: scale(1.1);
}
.realslide span {
    font-size: 1.6rem;
    margin: 2rem 0 0;
    transform: translateY(10px);
}
.realslide h3 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
    transform: translateY(10px);
}
.realslide b {
    color: #275F98;
}
.realslide p {
    text-align: justify;
    word-break: keep-all;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 2rem 0;
    transform: translateY(10px);
}
.realslide h2 {
    font-size: 3rem;
    color: #C0392B;
    border: 5px solid #C0392B;
    transform: rotate(-10deg) scale(0.3);
    background-color: #fff;
    width: 50%;
    align-self: flex-end;
    margin: 2rem 0;
    opacity: 0;
    transition: all .5s;
    position: absolute;
    bottom: 0; right: 0;
}
.realslide .swiper-slide.swiper-slide-active h2 {
    opacity: 1;
    transform: rotate(-10deg) scale(1.1);
}

@media screen and (max-width : 1869px) {
    .tabcontent ul li h3 {
        bottom: 1rem;
    }
}
@media screen and (max-width : 1783px) {
    .tabcontent ul {
        gap: 1rem;
    }
    .realslide .swiper-slide {
        height: 400px;
    }
}
@media screen and (max-width : 1600px) {
    .tabcontent ul li {
        width: 49%;
    }
    .tabcontent ul li h4 {
        margin: 2rem 0;
    }
}
@media screen and (max-width : 1280px) {
    .review .inner {
        gap: 5rem;
    }
    .review .inner > div:nth-child(1) {
        width: 25%;
    }
}
@media screen and (max-width : 1024px) {
    .tabcontent ul li {
        border-radius: 15px;
    }
    .realslide {
        padding: 5rem;
    }
    .realslide .swiper-slide {
        height: 345px;
    }
}
@media screen and (max-width : 924px) {
    .realslide .swiper-slide {
        height: 320px;
    }
}
@media screen and (max-width : 836px) {
    .review .inner {
        flex-direction: column;
        gap: 0;
    }
    .review .inner > div:nth-child(1) {
        width: 100%;
    }
    .main_title {
        margin-bottom: 0;
    }
    .tab {
        width: 100%;
    }
    .realslide .swiper-slide {
        height: 320px;
    }
}
@media screen and (max-width : 768px) {
    .realslide .swiper-slide {
        height: 270px;
    }
}
@media screen and (max-width : 599px) {
    .tabcontent ul li {
        width: 100%;
        padding-bottom: 6rem;
    }
    .tabcontent ul li span {
        display: none;
    }
    .tabcontent ul li h3 {
        text-align: right;
        padding-right: 2rem;
        left: auto;
        right: 0;
        transform: none;
    }
    .tabcontent ul li h4 {
        text-align: left;
        margin-top: 0;
    }
}
@media screen and (max-width : 425px) {
    .count .num h3 {
        font-size: 3rem;
    }
    .pagination span {
        width: 34px;
        height: 34px;
        line-height: 32px;
        font-size: 1.4rem;
    }
}