@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Literata';
    src: url('../fonts/Literata/Literata-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

:root {
    --color-main: #D21235;
    --color-text-dark: #1C1C1E;
    --font: "Lexend", sans-serif;
    --font-2: "Literata", sans-serif;
}

* {
    box-sizing: border-box;
}

/* Html */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

@media (max-width: 1199.98px) {
    html {
        font-size: 9.5px;
    }
}

@media (max-width: 419.98px) {
    html {
        font-size: 8.5px;
    }
}

/* End Html */

body {
    font-family: var(--font);
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    background-color: #F2F2F7;
    color: var(--color-text-dark);
}

button, input, textarea {
    font-family: var(--font);
}

a {
    text-decoration: none;
    transition: all 0.25s;
}

.d-none {
    display: none;
}

.pt-120 {
    padding-top: 12rem;
}

.mb-120 {
    margin-bottom: 12rem;
}

.pb-32 {
    padding-bottom: 3.2rem;
}

.pt-32 {
    padding-top: 3.2rem!important;
}

.pt-48 {
    padding-top: 4.8rem;
}

.pb-48 {
    padding-bottom: 4.8rem;
}

.pt-56 {
    padding-top: 5.6rem!important;
}

.pb-56 {
    padding-bottom: 5.6rem!important;
}

.pt-0 {
    padding-top: 0!important;
}

.text-center {
    text-align: center;
}

/* container */
.container {
    max-width: 117rem;
    margin: 0 auto;
}

@media (max-width: 1229.98px) {
    .container {
        max-width: 97rem;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 72rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 54rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

/* End container */

/* bg */
.bg-white {
    background-color: #fff;
}

.bg-yellow {
    background-color: #FFAD00!important;
}

.bg-green {
    background-color: #4ABA67;
}

.bg-blue {
    background-color: #23328C;
}

.bg-transparent {
    background-color: transparent!important;
}
/* End bg */

/* button-type-1 */
.button-type-1 {
    display: inline-flex;
    padding: 1rem 1.6rem 1rem 1.6rem;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--color-main);
    color: #fff;
    font-family: var(--font);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-type-1.type-light {
    background-color: #FAC7D0;
    color: #D21235;
}

.button-type-1 i {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* End button-type-1 */

/* button-type-2 */
.button-type-2 {
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--color-main);
}

.button-type-2 i {
    margin-left: 10px;
}
/* End button-type-2 */

/* box-menu-main */
.box-menu-main .inner-button-open,
.box-menu-main .inner-button-close {
    font-family: var(--font);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
    color: #828285;
    padding: 0;
    cursor: pointer;
}

.box-menu-main .inner-button-open i,
.box-menu-main .inner-button-close i {
    font-size: 2.6rem;
    color: #1C1B1F;
    margin-left: 0.8rem;
}

.box-menu-main .inner-main-menu {
    overflow: hidden;
    transition: width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: -1;
}

.box-menu-main.show .inner-main-menu {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
}

.box-menu-main .inner-main-menu .inner-close {
    width: 44.3rem;
    height: 4.8rem;
    padding: 0.8rem 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.box-menu-main .inner-main-menu .inner-logo-2 {
    margin: 1.2rem 2.4rem 1.2rem 2.4rem;
}

.box-menu-main .inner-main-menu .inner-logo-2 img {
    height: 3.6rem;
    width: auto;
}

.box-menu-main .inner-main-menu .inner-list {
    padding: 1.2rem 2.4rem;
}

.box-menu-main .inner-main-menu .inner-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-menu-main .inner-main-menu .inner-list > ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > a {
    color: var(--color-text-dark);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    text-transform: uppercase;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > a:hover {
    color: var(--color-main);
}

.box-menu-main .inner-main-menu .inner-list > ul > li > i {
    margin-left: 0.4rem;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul > li {
    position: relative;
    margin-right: 1rem;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul > li::after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background-color: var(--color-text-dark);
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: -0.6rem;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul > li:last-child::after {
    display: none;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul > li > a {
    color: #828285;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.box-menu-main .inner-main-menu .inner-list > ul > li > ul > li > a:hover {
    color: var(--color-main);
}

@media (max-width: 1199.98px) {
    .box-menu-main.show .inner-main-menu {
        width: 40rem;
    }

    .box-menu-main .inner-main-menu .inner-close {
        width: 40rem;
    }
}

@media (max-width: 991.98px) {
    .box-menu-main .inner-button-open {
        padding: 0 1rem;
        background: #ffffffb5;
        color: var(--color-main);
        height: 3.8rem;
    }

    .box-menu-main .inner-button-open i {
        color: var(--color-main);
    }

    .box-menu-main.show .inner-main-menu {
        height: 100vh;
        position: fixed;
    }
}

@media (max-width: 575.98px) {
    .box-menu-main .inner-button-open {
        height: 3.2rem;
    }

    .box-menu-main .inner-button-open i {
        font-size: 2rem;
    }

    .box-menu-main.show .inner-main-menu {
        width: 100vw;
        height: 100vh;
    }

    .box-menu-main .inner-main-menu .inner-close {
        width: 100vw;
    }
}

/* End box-menu-main */

/* home-header */
.home-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.home-header .inner-logo {
    position: absolute;
    top: 2.4rem;
    left: 2.4rem;
    z-index: 999;
}

.home-header .inner-logo img {
    width: 7.2rem;
    height: auto;
}

.home-header .box-menu-main {
    height: 4.8rem;
    padding: 0.8rem 2.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    width: 44.3rem;
    background-color: #fff;
}

@media (max-width: 1199.98px) {
    .home-header .box-menu-main {
        width: 40rem;
    }
}

@media (max-width: 991.98px) {
    .home-header .box-menu-main {
        background-color: transparent;
    }
}

@media (max-width: 575.98px) {
    .home-header .inner-logo {
        top: 1rem;
    }

    .home-header .inner-logo img {
        width: 5rem;
    }

    .home-header .box-menu-main {
        padding: 1rem 2.4rem 1rem 1rem;
        width: calc(100% - 8rem);
    }
}

/* End home-header */

/* home-main */
.home-main {
    height: calc(100vh - 4.8rem);
    display: flex;
    align-items: stretch;
}

.home-main .inner-left {
    width: calc(100% - 44.3rem);
    position: relative;
}

.home-main .inner-slides-1 {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-main .inner-slides-1 .swiper {
    height: 100%;
}

.home-main .inner-slides-1 .inner-item {
    height: 100%;
    cursor: grab;
}

.home-main .inner-slides-1 .inner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-main .inner-right {
    width: 44.3rem;
    display: flex;
    flex-direction: column;
    padding-top: 4.8rem;
    background-color: #fff;
}

.home-main .inner-slides-2 {
    flex: 1;
}

.home-main .inner-slides-2 .swiper {
    height: 100%;
}

.home-main .inner-slides-2 .inner-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.4rem;
    background-color: #fff;
}

.home-main .inner-slides-2 .inner-item .inner-top .inner-title {
    color: var(--color-text-dark);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.home-main .inner-slides-2 .inner-item .inner-top .inner-title span {
    display: block;
}

.home-main .inner-slides-2 .inner-item .inner-top .inner-title span:nth-child(2) {
    margin-left: 3.2rem;
}

.home-main .inner-slides-2 .inner-item .inner-top .inner-info {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4rem;
    text-transform: uppercase;
    margin-top: 0.6rem;
}

.home-main .inner-slides-2 .inner-item .inner-top .inner-info b {
    font-weight: 600;
}

.home-main .inner-slides-2 .inner-item .inner-bottom .inner-icon-quote {
    height: 2.8rem;
    width: auto;
    margin-bottom: 0.4rem;
}

.home-main .inner-slides-2 .inner-item .inner-bottom .inner-desc {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 2.4rem;
}

.home-main .inner-slides-2 .inner-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    position: absolute;
    top: 10rem;
    right: 2.4rem;
}

.home-main .inner-slides-2 .inner-actions .swiper-button-next,
.home-main .inner-slides-2 .inner-actions .swiper-button-prev,
.home-main .inner-slides-2 .inner-actions .swiper-pagination {
    position: static;
    margin: 0;
    padding: 0;
}

.home-main .inner-slides-2 .inner-actions .swiper-button-next,
.home-main .inner-slides-2 .inner-actions .swiper-button-prev {
    width: auto;
    height: 3.2rem;
    display: inline-flex;
}

.home-main .inner-slides-2 .inner-actions .swiper-button-next::after,
.home-main .inner-slides-2 .inner-actions .swiper-button-prev::after {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: var(--color-text-dark);
}

.home-main .inner-slides-2 .inner-actions .swiper-button-prev::after {
    content: "\f177";
}

.home-main .inner-slides-2 .inner-actions .swiper-button-next::after {
    content: "\f178";
}

.home-main .inner-slides-2 .inner-actions .swiper-button-disabled {
    opacity: 0.4;
}

.home-main .inner-slides-2 .inner-actions .swiper-pagination {
    color: var(--color-text-dark);
    text-align: center;
    font-family: Lexend;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.home-main .inner-list-links .inner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.2rem 1.2rem 2.4rem;
    color: var(--color-text-dark);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.4rem;
    text-transform: uppercase;
}

.home-main .inner-list-links .inner-link:nth-child(1) {
    background-color: #FAC7D0;
}

.home-main .inner-list-links .inner-link:nth-child(2) {
    background-color: #FFEBD6;
}

.home-main .inner-list-links .inner-link:nth-child(3) {
    background-color: #B5E3C3;
}

.home-main .inner-list-links .inner-link:nth-child(4) {
    background-color: #ADDDFF;
}

.home-main .inner-list-links .inner-link i {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.home-main .inner-lms a {
    display: block;
    padding: 1.6rem 2.4rem;
    background-color: #23328C;
}

.home-main .inner-lms .inner-lms-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3.8rem;
}

.home-main .inner-lms .inner-lms-top span {
    color: #ADDDFF;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.home-main .inner-lms .inner-lms-top img {
    height: 5.6rem;
    width: auto;
}

.home-main .inner-lms .inner-lms-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.home-main .inner-lms .inner-lms-bottom span {
    color: #ADDDFF;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    flex: 1;
    margin-right: 5.8rem;
}

.home-main .inner-lms .inner-lms-bottom i {
    font-size: 2.2rem;
    color: #ADDDFF;
}

@media (min-width: 1503px) and (max-width: 1505px) {
    .home-main .inner-slides-2 .inner-item .inner-top .inner-title {
        font-size: 2rem;
    }

    .home-main .inner-list-links .inner-link i {
        height: 2rem;
    }

    .home-main .inner-lms .inner-lms-top {
        margin-bottom: 1.6rem;
    }

    .home-main .inner-lms .inner-lms-top img {
        height: 4rem;
    }

    .home-main .inner-lms .inner-lms-bottom span {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-right: 5rem;
    }
}

@media (width: 1280px) and (height: 720px) {
    .home-main .inner-slides-2 .inner-actions {
        top: 8rem;
    }

    .home-main .inner-slides-2 .inner-item .inner-top .inner-title {
        font-size: 2rem;
    }

    .home-main .inner-slides-2 .inner-item .inner-bottom .inner-desc {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .home-main .inner-list-links .inner-link {
        padding: 0.8rem 1.2rem 0.8rem 2.4rem;
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .home-main .inner-list-links .inner-link i {
        height: 2rem;
    }

    .home-main .inner-lms .inner-lms-top {
        margin-bottom: 1.6rem;
    }

    .home-main .inner-lms .inner-lms-top span {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .home-main .inner-lms .inner-lms-top img {
        height: 4rem;
    }

    .home-main .inner-lms .inner-lms-bottom span {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-right: 5rem;
    }
}

@media (width: 1280px) and (min-height: 830px) and (max-height: 834px) {
    .home-main .inner-slides-2 .inner-actions {
        top: 8.5rem;
    }

    .home-main .inner-slides-2 .inner-item .inner-top .inner-title {
        font-size: 2.4rem;
    }

    .home-main .inner-list-links .inner-link i {
        height: 2rem;
    }

    .home-main .inner-lms .inner-lms-top {
        margin-bottom: 1.6rem;
    }

    .home-main .inner-lms .inner-lms-top img {
        height: 4rem;
    }

    .home-main .inner-lms .inner-lms-bottom span {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-right: 5rem;
    }
}

@media (min-width: 992px) and (max-height: 910px) {
    .home-main .inner-left {
        width: calc(100% - 40rem);
    }

    .home-main .inner-right {
        width: 40rem;
    }

    .home-main .inner-slides-2 .inner-actions {
        top: 6rem;
    }

    .home-main .inner-slides-2 .inner-item {
        padding: 1.2rem 3rem 2.2rem;
    }

    .home-main .inner-slides-2 .inner-item .inner-top .inner-title {
        font-size: 2rem;
    }

    .home-main .inner-slides-2 .inner-item .inner-bottom .inner-desc {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .home-main .inner-list-links .inner-link {
        padding: 0.6rem 1.2rem 0.6rem 2.4rem;
        font-size: 1.3rem;
        line-height: 2.5;
    }

    .home-main .inner-list-links .inner-link i {
        height: 2rem;
    }

    .home-main .inner-lms .inner-lms-top {
        margin-bottom: 1.6rem;
    }

    .home-main .inner-lms .inner-lms-top span {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .home-main .inner-lms .inner-lms-top img {
        height: 4rem;
    }

    .home-main .inner-lms .inner-lms-bottom span {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-right: 5rem;
    }

    .home-header .box-menu-main{
        width: 40rem;
    }
    .box-menu-main .inner-main-menu .inner-close{
        width: 40rem;
    }
}

@media (max-width: 991.98px) {
    .home-main {
        flex-wrap: wrap;
        height: auto;
    }

    .home-main .inner-left {
        width: 100%;
    }

    .home-main .inner-right {
        width: 100%;
        padding-top: 0;
    }

    .home-main .inner-slides-1 .inner-item {
        aspect-ratio: 16 / 10;
    }

    .home-main .inner-slides-2 .inner-item .inner-bottom {
        margin-top: 3rem;
    }
}

/* End home-main */

/* home-footer */
.home-footer {
    background-image: url(../images/background-footer.svg);
    padding: 0.8rem 2.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 4.8rem;
}

.home-footer .inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-footer .inner-right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.home-footer .inner-phone {
    color: #fff;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    background-color: var(--color-main);
}

.home-footer .inner-phone i {
    font-size: 1.6rem;
    margin-right: 0.4rem;
}

.home-footer .box-socials {
    margin-left: 2.4rem;
}

@media (max-width: 575.98px) {
    .home-footer {
        height: auto;
    }

    .home-footer .inner-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-footer .inner-wrap .inner-left {
        width: 100%;
        text-align: center;
    }

    .home-footer .inner-wrap .inner-right {
        width: 100%;
        justify-content: center;
    }
}

/* End home-footer */

/* box-change-language */
.box-change-language select {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    color: #fff;
    background: var(--color-main);
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
    font-family: var(--font);
}

/* End box-change-language */

/* box-socials */
.box-socials {
    display: inline-flex;
    align-items: center;
}

.box-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    color: #fff;
    background-color: var(--color-main);
}

.box-socials a img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.box-socials a:hover img {
    filter: brightness(0) invert(1);
}

.home-footer .box-socials a img {
    filter: brightness(0) invert(1);
}

.box-socials.type-2 {
    gap: 1.2rem;
}

.box-socials.type-2 a {
    width: 4rem;
    height: 4rem;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--color-text-dark);
    font-size: 2rem;
}

.box-socials.type-2 a:hover {
    border-color: var(--color-main);
    color: #fff;
    background-color: var(--color-main);
}

/* End box-socials */

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 2.4rem;
}

.header .inner-logo img {
    height: 3.6rem;
    width: auto;
}

.header .box-menu-main.show .inner-main-menu {
    width: 44.3rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1199.98px) {
    .header .box-menu-main.show .inner-main-menu {
        width: 40rem;
    }
}

@media (max-width: 991.98px) {
    .header .box-menu-main .inner-button-open {
        background: transparent;
    }
}

@media (max-width: 575.98px) {
    .header .box-menu-main.show .inner-main-menu {
        width: 100vw;
    }
}

/* End Header */

/* section-1 */
.section-1 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 0.8rem 2.4rem;
    border-bottom: 1px solid #E5E5EA;
    gap: 1.2rem 2.4rem;
}

.section-1 .inner-item a {
    display: inline-block;
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.section-1 .inner-item a.active::after,
.section-1 .inner-item a:hover::after {
    content: "";
    display: inline-block;
    width: 4.8rem;
    height: 0.2rem;
    border-radius: 0.2rem 0.2rem 0 0;
    background: var(--color-text-dark);
    position: absolute;
    bottom: -0.8rem;
    left: calc(50% - 2.4rem);
}

@media (max-width: 767.98px) {
    .section-1 {
        justify-content: center;
    }
}

/* End section-1 */

/* section-2 */
.section-2 {
    padding: 4.8rem 0 6.2rem 0;
}

.section-2 .inner-title {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.section-2 .inner-title > div:nth-child(2) {
    margin-left: 3.2rem;
}

.section-2 .inner-info {
    margin-top: 0.6rem;
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4rem;
    text-transform: uppercase;
}

.section-2 .inner-info b {
    font-weight: 600;
}

.section-2 .inner-wrap {
    margin-top: 4.8rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.2rem;
}

.section-2 .inner-content p {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.28px;
    margin-top: 0;
    margin-bottom: 2.1rem;
}

.section-2 .inner-content img {
    width: 100%;
    height: auto;
}

.section-2 .inner-wrap .inner-content:nth-child(2),
.section-2 .inner-wrap .inner-content:nth-child(3) {
    margin-top: 4.2rem;
}

@media (max-width: 991.98px) {
    .section-2 .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-2 .inner-wrap .inner-content:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .section-2 .inner-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .section-2 .inner-wrap .inner-content:nth-child(2) {
        margin-top: 0;
    }
}

/* End section-2 */

/* footer */
.footer {
    display: flex;
    align-items: stretch;
}

.footer .inner-left {
    width: 21%;
    background-color: var(--color-main);
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .inner-logo img {
    height: 7.2rem;
    width: auto;
}

.footer .inner-copyright {
    color: #FAC7D0;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .inner-right {
    width: 79%;
    display: flex;
    flex-direction: column;
}

.footer .inner-main {
    flex: 1;
    padding: 4.8rem 3.2rem;
    background-color: #fff;
}

.footer .inner-main .inner-list-box {
    width: 65vw;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer .inner-main .inner-box-info {
    width: 37rem;
}

.footer .inner-main .inner-box .inner-title {
    color: var(--color-text-dark);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

.footer .inner-main .inner-list-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer .inner-main .inner-list-info .inner-name {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .inner-main .inner-list-info .inner-desc {
    color: #828285;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 0.4rem;
}

.footer .inner-main .inner-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer .inner-main .inner-links ul li a {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.28;
}

.footer .inner-main .inner-links ul li a:hover {
    color: var(--color-main);
}

.footer .inner-main .inner-box .box-socials {
    margin-top: 3rem;
}

.footer .inner-bg {
    height: 4.8rem;
}

.footer .inner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199.98px) {
    .footer .inner-main .inner-box-info {
        width: 29rem;
    }
}

@media (max-width: 991.98px) {
    .footer {
        flex-wrap: wrap;
    }

    .footer .inner-left {
        width: 100%;
        order: 2;
        flex-direction: row;
        align-items: center;
        padding: 1rem 2.4rem;
    }

    .footer .inner-right {
        width: 100%;
        order: 1;
    }

    .footer .inner-logo img {
        height: 5rem;
    }

    .footer .inner-main .inner-list-box {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer .inner-main .inner-list-box {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer .inner-main .inner-box-info {
        width: 100%;
    }

    .footer .inner-bg {
        height: 2.5rem;
    }
}

/* End footer */

/* button-scroll-to-top */
.button-scroll-to-top {
    width: 4rem;
    height: 4rem;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--color-text-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.25s;
    position: fixed;
    bottom: 9.6rem;
    right: 2.4rem;
    z-index: 99;
    background: #fff;
    display: none;
}

.button-scroll-to-top.show {
    display: inline-block;
}

.button-scroll-to-top:hover {
    color: #fff;
    background-color: var(--color-main);
}

/* End button-scroll-to-top */

/* section-3 */
.section-3 {
    padding: 4.8rem 0;
}

.section-3 .inner-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3.2rem;
}

.section-3 .inner-desc {
    color: var(--color-text-dark);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    margin-top: 8rem;
    font-family: var(--font-2);
}

.section-3-bg img {
    display: block;
    margin-left: auto;
    width: 62%;
    height: 8rem;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .section-3 .inner-wrap {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .section-3 .inner-desc {
        margin-top: 0;
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .section-3-bg img {
        width: 100%;
    }
}
/* End section-3 */

/* box-title */
.box-title-icon {
    display: flex;
    gap: 2.4rem;
}

.box-title-icon .inner-icon img {
    width: 4.8rem;
    height: auto;
}

.box-title {
    color: var(--color-text-dark);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.box-title div:nth-child(2) {
    margin-left: 3.2rem;
}

.box-title.text-white {
    color: #fff;
}
/* End box-title */

/* section-4 */
.section-4 {
    position: relative;
}

.section-4 .inner-main {
    padding: 4.8rem 0;
    position: relative;
}

.section-4 .inner-main .inner-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem 3.2rem;
    position: relative;
    z-index: 1;
}

.section-4 .inner-main .inner-bg-1 {
    position: absolute;
    top: 0;
    right: -3.2rem;
    width: calc(100% + 16.2rem);
    height: 100%;
    background-color: #23328C;
}

.section-4 .inner-main .inner-item .inner-icon {
    height: 8rem;
    width: auto;
    margin-bottom: 2.4rem;
}

.section-4 .inner-main .inner-item .inner-name {
    color: #fff;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.section-4 .inner-main .inner-item .inner-desc {
    color: #fff;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 1.2rem;
}

.section-4 .inner-main .inner-item .inner-icon-quote {
    height: 3.2rem;
    width: auto;
    margin-bottom: 0.8rem;
}

.section-4 .inner-main .inner-item .inner-text-quote {
    color: #FAC7D0;
    font-family: var(--font-2);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
}

.section-4 .inner-bg-2 {
    margin-top: -17.7rem;
}

.section-4 .inner-bg-2 img {
    display: block;
    margin: 0 auto;
    max-width: 143rem;
}

@media (max-width: 767.98px) {
    .section-4 .inner-main .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .section-4 .inner-bg-2 {
        display: none;
    }

    .section-4 .inner-main .inner-bg-1 {
        right: -1.5rem;
        width: calc(100% + 3rem);
    }
}

/* End section-4 */

/* section-5 */
.section-5 {
    position: relative;
    background-color: #fff;
}

.section-5 .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.section-5 .inner-main {
    padding: 4.8rem 0 2.4rem;
    width: calc((100% * 2 / 3) - 1.6rem);
}

.section-5 .inner-main .inner-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.2rem
}

.section-5 .inner-main .inner-head .inner-left {
    max-width: 47rem;
}

.section-5 .inner-main .inner-head .inner-left .box-desc {
    margin-top: 0.8rem;
}

.section-5 .inner-main .inner-icon img {
    height: 12.2rem;
    width: auto;
}

.section-5 .inner-main .inner-list-text {
    margin-top: 7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 3.2rem;
}

.section-5 .inner-main .inner-list-text .inner-text {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.28px;
}

.section-5 .inner-bg {
    position: relative;
    width: calc((100% * 1 / 3) - 1.6rem);
}

.section-5 .inner-bg img {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .section-5 .inner-main .inner-list-text {
        margin-top: 3.2rem;
    }
}

@media (max-width: 767.98px) {
    .section-5 {
        padding-top: 3.2rem;
    }

    .section-5 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-5 .inner-main {
        width: 100%;
        order: 2;
    }

    .section-5 .inner-bg {
        width: 100%;
        order: 1;
    }

    .section-5 .inner-bg img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .section-5 .inner-main .inner-head {
        flex-wrap: wrap;
    }
}

/* End section-5 */

/* box-desc */
.box-desc {
    color: var(--color-text-dark);
    font-family: var(--font-2);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    line-height: 130%;
}

/* End box-desc */

/* section-6 */
.section-6 {
    position: relative;
    background-color: #F2F2F7;
}

.section-6 .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.section-6 .inner-main {
    padding: 4.8rem 0 2.4rem;
    width: calc((100% * 2 / 3) - 1.6rem);
}

.section-6 .inner-main .inner-head .inner-left {
    max-width: 47rem;
}

.section-6 .inner-main .inner-head .inner-left .box-desc {
    margin-top: 0.8rem;
}

.section-6 .inner-main .inner-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    margin-top: 10rem;
}

.section-6 .inner-main .inner-icon img {
    height: 12.2rem;
    width: auto;
}

.section-6 .inner-main .inner-list-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
}

.section-6 .inner-main .inner-list-text .inner-text {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.28px;
}

.section-6 .inner-bg {
    position: relative;
    width: calc((100% * 1 / 3) - 1.6rem);
}

.section-6 .inner-bg img {
    position: relative;
    top: 0;
    left: 100%;
    height: 100%;
    width: auto;
    display: block;
    transform: translateX(-100%);
}

@media (max-width: 991.98px) {
    .section-6 .inner-main .inner-middle {
        grid-template-columns: 1fr 2fr;
        gap: 2.4rem;
        margin-top: 6rem;
    }
}

@media (max-width: 767.98px) {
    .section-6 {
        padding-top: 3.2rem;
    }

    .section-6 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-6 .inner-main {
        width: 100%;
        order: 2;
    }

    .section-6 .inner-bg {
        width: 100%;
        order: 1;
    }

    .section-6 .inner-bg img {
        width: 100%;
        height: auto;
    }
}

/* End section-6 */

/* section-7 */
.section-7 {
    position: relative;
    background-color: #fff;
}

.section-7 .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.section-7 .inner-main {
    padding: 4.8rem 0 2.4rem;
    width: calc((100% * 2 / 3) - 1.6rem);
}

.section-7 .inner-main .inner-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.2rem
}

.section-7 .inner-main .inner-head .inner-left {
    max-width: 47rem;
}

.section-7 .inner-main .inner-head .inner-left .box-desc {
    margin-top: 0.8rem;
}

.section-7 .inner-main .inner-icon img {
    height: 12.2rem;
    width: auto;
}

.section-7 .inner-main .inner-list-text {
    margin-top: 2.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 3.2rem;
}

.section-7 .inner-main .inner-list-text .inner-name {
    color: var(--color-text-dark);
    font-family: Lexend;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 144.444%;
    text-transform: uppercase;
}

.section-7 .inner-main .inner-list-text .inner-desc {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.28px;
    margin-top: 1.2rem;
}

.section-7 .inner-bg {
    position: relative;
    width: calc((100% * 1 / 3) - 1.6rem);
}

.section-7 .inner-bg img {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    display: block;
}

@media (max-width: 767.98px) {
    .section-7 {
        padding-top: 3.2rem;
    }

    .section-7 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-7 .inner-main {
        width: 100%;
        order: 2;
    }

    .section-7 .inner-bg {
        width: 100%;
        order: 1;
    }

    .section-7 .inner-bg img {
        width: 100%;
        height: auto;
    }
}

/* End section-7 */

/* section-8 */
.section-8 {
    padding: 8rem 0;
}

.section-8 .inner-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
}

.section-8 .inner-item a {
    display: flex;
    justify-content: space-between;
    height: 100%;
    background-color: #fff;
}

.section-8 .inner-item .inner-content {
    flex: 1;
    padding: 3.2rem 2.4rem 2.4rem 3.2rem;
}

.section-8 .inner-item .inner-content .inner-title {
    color: var(--color-text-dark);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 111.111%;
    text-transform: uppercase;
}

.section-8 .inner-item .inner-content .inner-title div:nth-child(2) {
    margin-left: 2rem;
    font-weight: 600;
}

.section-8 .inner-item .inner-content i {
    color: var(--color-text-dark);
    font-size: 1.8rem;
    margin-top: 2rem;
}

.section-8 .inner-item .inner-icon img {
    height: 12.2rem;
    width: auto;
    display: block;
    margin-top: 3rem;
    margin-right: 3.2rem;
}

@media (max-width: 991.98px) {
    .section-8 .inner-wrap {
        grid-template-columns: 1fr;
    }
}

/* End section-8 */

/* section-9 */
.section-9 {
    position: relative;
}

.section-9 .inner-main {
    position: relative;
    padding-top: 4.8rem;
}

.section-9 .inner-wrap {
    margin-top: 4.8rem;
    background: #23328C;
    display: flex;
    position: relative;
    z-index: 1;
}

.section-9 .inner-content {
    flex: 1;
    margin-right: 10rem;
    padding: 6.2rem 0 9.2rem 3.2rem;
    display: flex;
    flex-direction: column;
}

.section-9 .inner-content .inner-title {
    color: #fff;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 144.444%;
    text-transform: uppercase;
}

.section-9 .inner-content .inner-desc {
    flex: 1;
    color: #fff;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.28px;
}

.section-9 .inner-content .inner-author {
    color: #fff;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 116.667%;
    text-transform: uppercase;
}

.section-9 .inner-content .inner-author b {
    font-weight: 600;
}

.section-9 .inner-image {
    width: 26.9rem;
    margin-top: 3.4rem;
    margin-right: 10rem;
}

.section-9 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-9 .inner-bg {
    position: absolute;
    top: 0;
    right: -12.7rem;
    bottom: 0;
}

.section-9 .inner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .section-9 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-9 .inner-content {
        flex: none;
        width: 100%;
        padding: 3.2rem;
        margin: 0;
    }

    .section-9 .inner-image {
        width: 50%;
        padding: 0 3.2rem;
        margin: 0 auto;
    }

    .section-9 .inner-bg {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-9 .inner-image {
        width: 70%;
    }
}

/* End section-9 */

/* section-10 */
.section-10 {
    padding-top: 8rem;
    background-color: #fff;
}

.section-10.pb {
    padding-bottom: 8rem;
}

.section-10.only-mobile {
    display: none;
}

.section-10.type-1 .box-title {
    margin-bottom: 3.2rem;
}

.section-10 .inner-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem 3.2rem;
}

@media (max-width: 1229.98px) {
    .section-10.type-1 .box-title {
        margin-bottom: 2.4rem;
    }

    .section-10.type-2 .inner-item:nth-of-type(1) {
        grid-column: span 3;
    }

    .section-10 .inner-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-10 .inner-item.empty {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .section-10.type-2 .inner-item:nth-of-type(1) {
        grid-column: span 1;
    }

    .section-10 .inner-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-10.only-mobile {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .section-10 .box-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 575.98px) {
    .section-10 .inner-list {
        gap: 2.4rem;
    }

    .section-10.type-2 .inner-item:nth-of-type(1),
    .section-10.type-3 .inner-item:nth-of-type(1) {
        grid-column: span 2;
    }
}

/* End section-10 */

/* section-11 */
.section-11 {
    padding-top: 8rem;
    background-color: #fff;
}

.section-11 .inner-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2.4rem 3.2rem;
}

.section-11 .box-title {
    margin-bottom: 3.2rem;
}

.section-11 .inner-wrap {
    background: #D21235;
    display: grid;
    grid-template-columns: 1fr 2fr;
    position: relative;
}

.section-11 .inner-content {
    flex: 1;
    padding: 6.2rem 0 4.2rem 3.2rem;
    display: flex;
    flex-direction: column-reverse;
}

.section-11 .inner-content .box-team-item .inner-info {
    color: #fff !important;
}

.section-11 .inner-content .box-team-item .inner-position {
    color: #fff !important;
}

.section-11 .inner-image-main {
    display: flex;
    justify-content: center;
    position: relative;
}

.section-11 .inner-image {
    width: 26.9rem;
    margin-top: 3.4rem;
    z-index: 2;
}

.section-11 .inner-image > img {
    width: 100%;
    height: auto;
    display: block;
}

.section-11 .inner-bg {
    background: #D9D9D9;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.section-11 .inner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .section-11 {
        display: none;
    }

}

/* End section-11 */


/* box-team-item */
.box-team-item {
    position: relative;
}

.box-team-item .inner-image {
    aspect-ratio: 269/320;
}

.box-team-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-team-item .inner-info {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 116.667%;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.box-team-item .inner-info b {
    font-weight: 600;
}

.box-team-item .inner-position {
    color: #828285;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 108.333%;
    padding-left: 3.2rem;
    margin-top: 0.8rem;
}

@media (max-width: 575.98px) {
    .box-team-item .inner-position {
        padding-left: 2rem;
    }
}

/* End box-team-item */

/* section-12 */
.section-12 .inner-wrap {
    display: flex;
}

.section-12 .inner-content {
    width: 50%;
    background-color: #fff;
}

.section-12 .inner-content .inner-bg {
    display: flex;
    align-items: flex-start;
}

.section-12 .inner-content .inner-bg .inner-bg-image {
    flex: 1;
    height: 11.2rem;
}

.section-12 .inner-content .inner-bg .inner-bg-image.inner-bg-yellow {
    background-color: #FFAD00;
}

.section-12 .inner-content .inner-bg .inner-bg-image.inner-bg-green {
    background-color: #4ABA67;
}

.section-12 .inner-content .inner-bg .inner-bg-image.inner-bg-blue {
    background-color: #23328C;
}

.section-12 .inner-content .inner-bg .inner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-12 .inner-content .inner-bg .inner-icon {
    width: 11.8rem;
    height: 11.2rem;
    padding: 1.2rem 2rem;
}

.section-12 .inner-content .inner-bg .inner-icon.inner-bg-yellow {
    background-color: #FFEBD6;
}

.section-12 .inner-content .inner-bg .inner-icon.inner-bg-green {
    background-color: #B5E3C3;
}

.section-12 .inner-content .inner-bg .inner-icon.inner-bg-blue {
    background-color: #ADDDFF;
}

.section-12 .inner-content .inner-bg .inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-12 .inner-content .inner-text {
    padding: 3.2rem 9rem 3.2rem 0;
    margin-left: calc(50vw - 58.5rem);
}

.section-12 .inner-content .inner-text .inner-title {
    margin-bottom: 4.8rem;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.section-12 .inner-content .inner-text .inner-title .inner-title-1 {
    font-weight: 300;
    font-size: 1.8rem;
}

.section-12 .inner-content .inner-text .inner-title .inner-title-2 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-left: 3.2rem;
}

.section-12 .inner-content .inner-text .inner-title .inner-title-3 {
    font-weight: 700;
    font-size: 2.8rem;
}

.section-12 .inner-content .inner-text .inner-title .inner-title-3 small {
    font-size: 1.8rem;
}

.section-12 .inner-content .inner-text .inner-desc-1 {
    font-family: var(--font-2);
    font-weight: 500;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 2.4rem;
}

.section-12 .inner-content .inner-text .inner-desc-2 {
    font-weight: 400;
    font-size: 1.4rem;
}

.section-12 .inner-image {
    width: 50%;
}

.section-12 .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1229.98px) {
    .section-12 .inner-content .inner-text {
        padding: 3.2rem 3.2rem 3.2rem 0;
        margin-left: calc(50vw - 48.5rem);
    }

    .section-12 .inner-content .inner-text .inner-title {
        margin-bottom: 3.2rem;
    }
}

@media (max-width: 991.98px) {
    .section-12 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-12 .inner-content {
        width: 100%;
    }

    .section-12 .inner-image {
        width: 100%;
    }

    .section-12 .inner-content .inner-text {
        padding: 2.4rem;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .section-12 .inner-content .inner-text .inner-title .inner-title-1 {
        font-size: 1.6rem;
    }

    .section-12 .inner-content .inner-text .inner-title .inner-title-2 {
        font-size: 2.4rem;
    }

    .section-12 .inner-content .inner-text .inner-title .inner-title-3 {
        font-size: 2.4rem;
    }

    .section-12 .inner-content .inner-text .inner-title .inner-title-3 small {
        font-size: 1.6rem;
    }

    .section-12 .inner-content .inner-text .inner-desc-1 {
        font-size: 1.8rem;
    }
}
/* End section-12 */

/* text-color */
.text-yellow {
    color: #FFAD00;
}

.text-green {
    color: #4ABA67;
}

.text-blue {
    color: #23328C;
}
/* End text-color */

/* section-13 */
.section-13 {
    padding: 8rem 0 12rem 0;
}

.section-13 .inner-head {
    margin-bottom: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-13 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.section-13 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-13 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-13 .swiper-wrapper {
    align-items: stretch;
}

.section-13 .swiper-slide {
    background-color: #fff;
    padding: 2.4rem;
    width: calc((117rem - 60px) / 3);
    height: auto;
}

.section-13 .inner-wrap-2 {
    display: grid;
    gap: 3.2rem;
    grid-template-columns: repeat(3, 1fr);
}

.section-13 .inner-wrap-2 .inner-item {
    background-color: #fff;
    padding: 2.4rem;
    height: 100%;
    min-height: 27.2rem;
}

.section-13 .inner-wrap-3 {
    display: grid;
    gap: 3.2rem;
    grid-template-columns: repeat(2, 1fr);
}

.section-13 .inner-wrap-3 .inner-item {
    background-color: #fff;
    padding: 2.4rem;
    height: 100%;
    min-height: 27.2rem;
}

.section-13 .inner-item .inner-icon {
    margin-bottom: 4.8rem;
}

.section-13 .inner-item .inner-icon img {
    height: 10.4rem;
    width: auto;
}

.section-13 .inner-item .inner-desc {
    font-weight: 700;
    font-size: 1.6rem;
}

.section-13 .inner-wrap-3 .inner-item .inner-desc {
    font-weight: 400;
}

@media (max-width: 1229.98px) {
    .section-13 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-13 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }

    .section-13 .inner-wrap-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-13 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }
}

@media (max-width: 575.98px) {
    .section-13 .inner-wrap {
        width: calc(100vw - 3rem);
    }

    .section-13 .inner-wrap-2 {
        gap: 1.6rem;
    }

    .section-13 .inner-wrap-3 {
        gap: 1.6rem;
    }
}
/* End section-13 */

/* section-14 */
.section-14 .inner-wrap {
    display: flex;
    gap: 4.8rem;
    padding: 5.6rem 0;
}

.section-14 .inner-left {
    width: 28rem;
}

.section-14 .inner-right {
    flex: 1;
}

.section-14 .inner-box {
    display: flex;
    align-items: center;
    gap: 6.5rem;
    margin-bottom: 2.4rem;
}

.section-14 .inner-box:last-child {
    margin-bottom: 0;
}

.section-14 .inner-box .inner-content {
    flex: 1;
}

.section-14 .inner-box .inner-content .inner-title {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-14 .inner-box.inner-box-white .inner-content .inner-title {
    color: #fff;
}

.section-14 .inner-box .inner-content .inner-title div:nth-child(2) {
    font-weight: 600;
    margin-left: 2rem;
}

.section-14 .inner-box .inner-content .inner-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-14 .inner-box .inner-content .inner-list ul li {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.section-14 .inner-box.inner-box-white .inner-content .inner-list ul li {
    color: #fff;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot {
    display: inline-block;
    width: 2.4rem;
    height: 0.8rem;
    border-radius: 0.6rem;
    margin-right: 0.8rem;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot.inner-color-1 {
    background-color: #23328C;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot.inner-color-2 {
    background-color: #FFEBD6;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot.inner-color-3 {
    background-color: #FAC7D0;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot.inner-color-4 {
    background-color: #ADDDFF;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-dot.inner-color-5 {
    background-color: #FFAD00;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-number {
    font-weight: 600;
    font-size: 2.4rem;
    margin-right: 0.8rem;
}

.section-14 .inner-box .inner-content .inner-list ul li .inner-text {
    font-weight: 400;
    font-size: 1.4rem;
    flex: 1;
}

.section-14 .inner-box .inner-content .inner-button {
    margin-top: 2.4rem;
}

.section-14 .inner-box .inner-image {
    width: 32.4rem;
}

.section-14 .inner-box .inner-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 1229.98px) {
    .section-14 .inner-wrap {
        flex-wrap: wrap;
        gap: 2.4rem;
    }

    .section-14 .inner-left {
        width: 100%;
    }

    .section-14 .inner-right {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section-14 .inner-box {
        flex-wrap: wrap;
        gap: 2.4rem;
    }

    .section-14 .inner-box .inner-content {
        flex: none;
        width: 100%;
        order: 1;
    }
}
/* End section-14 */

/* section-15 */
.section-15 {
    padding-top: 5.6rem;
    background-color: #fff;
}

.section-15 .inner-head {
    margin-bottom: 4.8rem;
}

.section-15 .inner-title {
    margin-bottom: 2.4rem;
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.section-15 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-15 .swiper-slide {
    width: calc((117rem - 24px) / 4);
}

.section-15 .inner-item {
    position: relative;
}

.section-15 .inner-item .inner-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.section-15 .inner-item .inner-icon img {
    height: 6.4rem;
    width: auto;
}

.section-15 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 286/380;
}

.section-15 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1229.98px) {
    .section-15 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-15 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }
}

@media (max-width: 767.98px) {
    .section-15 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }
}

@media (max-width: 575.98px) {
    .section-15 .inner-head .box-title {
        font-size: 2.4rem;
    }

    .section-15 .inner-wrap {
        width: calc(100vw - 3rem);
    }
}
/* End section-15 */

/* section-16 */
.section-16 {
    padding-top: 4.8rem;
    background-color: #fff;
}

.section-16 .box-title-4 {
    margin-bottom: 3.2rem;
}

.section-16 .inner-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2.4rem;
}

.section-16 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-16 .swiper-slide {
    width: calc((117rem - 8px) / 2);
}

.section-16 .inner-item {
    position: relative;
}

.section-16 .inner-item .inner-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.section-16 .inner-item .inner-icon img {
    height: 6.4rem;
    width: auto;
}

.section-16 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 580/380;
}

.section-16 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1229.98px) {
    .section-16 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-16 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }
}

@media (max-width: 767.98px) {
    .section-16 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }

    .section-16 .swiper-slide {
        width: calc((80rem - 8px) / 2);
    }
}

@media (max-width: 575.98px) {
    .section-16 .inner-wrap {
        width: calc(100vw - 3rem);
    }
}
/* End section-16 */

/* box-content */
.box-content {
    width: calc(75% - 2px);
    padding: 2.2rem 1.6rem 2.2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.box-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: calc(50vw - 58.5rem);
    height: 100%;
}

.box-content.inner-bg-yellow {
    background-color: #FFAD00;
}

.box-content.inner-bg-yellow::before {
    background-color: #FFAD00;
}

.box-content.inner-bg-green {
    background-color: #4ABA67;
}

.box-content.inner-bg-green::before {
    background-color: #4ABA67;
}

.box-content.inner-bg-blue {
    background-color: #ADDDFF;
}

.box-content.inner-bg-blue::before {
    background-color: #ADDDFF;
}

.box-content .inner-text {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
}

.box-content .inner-text div:nth-child(2) {
    font-weight: 600;
    margin-left: 1.6rem;
}

.box-content .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.box-content .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

@media (max-width: 1229.98px) {
    .box-content::before {
        width: calc(50vw - 48.5rem);
    }
}

@media (max-width: 991.98px) {
    .box-content {
        width: 100%;
    }

    .box-content::before {
        width: calc(50vw - 36rem);
    }
}

@media (max-width: 767.98px) {
    .box-content::before {
        width: calc(50vw - 27rem);
    }
}

@media (max-width: 575.98px) {
    .box-content::before {
        width: calc(100vw - 3rem);
    }
}
/* End box-content */

/* section-17 */
.section-17 {
    padding-top: 3.2rem;
    background-color: #fff;
}

.section-17 .inner-title-main {
    margin-bottom: 2.4rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.8rem;
}

.section-17 .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.section-17 .inner-wrap .inner-item {
    width: calc((100% - 0.8rem) / 2);
}

.section-17 .inner-wrap .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 580/380;
}

.section-17 .inner-wrap .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 575.98px) {
    .section-17 .inner-wrap .inner-item {
        width: 100%;
    }
}
/* End section-17 */

/* section-18 */
.section-18 {
    padding: 4.8rem 0 4rem 0;
    background-color: #fff;
}

.section-18 .inner-title-main {
    margin-bottom: 2.4rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.8rem;
}

.section-18 .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem 0.8rem;
}

.section-18 .inner-wrap .inner-item {
    width: calc((100% - 1.6rem) / 3);
}

.section-18 .inner-wrap .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 384/288;
}

.section-18 .inner-wrap .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-18 .inner-wrap .inner-item .inner-title {
    margin-top: 0.8rem;
    font-weight: 300;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.section-18 .inner-wrap .inner-item .inner-title div:nth-child(2) {
    margin-left: 1.6rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .section-18 .inner-wrap .inner-item {
        width: calc((100% - 0.8rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .section-18 .inner-wrap .inner-item {
        width: 100%;
    }
}
/* End section-18 */

/* section-19 */
.section-19 {
    padding-top: 5.6rem;
}

.section-19 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-19 .swiper-slide {
    width: calc((117rem - 96px) / 4);
}

.section-19 .inner-wrap-2 {
    display: flex;
    gap: 16rem;
}

.section-19 .inner-wrap-2.type-2 {
    justify-content: center;
    gap: 3.2rem;
}

.section-19 .inner-wrap-2 .inner-item {
    width: 27rem;
}

.section-19 .inner-item .inner-icon {
    margin-bottom: 2.4rem;
}

.section-19 .inner-item .inner-icon img {
    height: 4.8rem;
    width: auto;
}

.section-19 .inner-item .inner-content .inner-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-19 .inner-item .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

@media (max-width: 1229.98px) {
    .section-19 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }

    .section-19 .inner-wrap-2 {
        gap: 8rem;
    }
}

@media (max-width: 991.98px) {
    .section-19 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }

    .section-19 .inner-wrap-2 {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .section-19 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }

    .section-19 .inner-wrap-2 {
        gap: 3.2rem;
    }

    .section-19 .inner-wrap-2 .inner-item {
        width: calc(50% - 1.6rem);
    }
}

@media (max-width: 575.98px) {
    .section-19 .inner-wrap {
        width: calc(100vw - 3rem);
    }

    .section-19 .inner-wrap-2 .inner-item {
        width: 100%;
    }
}
/* End section-19 */

/* section-20 */
.section-20 {
    padding: 5.6rem 0;
}

.section-20 .inner-head {
    margin-bottom: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-20 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.section-20 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-20 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-20 .swiper-wrapper {
    align-items: stretch;
}

.section-20 .swiper-slide {
    width: calc((117rem - 32px) / 2);
    height: auto;
}

.section-20 .inner-item {
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-20 .inner-item .inner-content {
    padding: 3.2rem;
}

.section-20 .inner-item .inner-content .inner-icon-quote {
    font-size: 10rem;
    color: #E5E5EA;
    line-height: 1;
    height: 5rem;
    margin-bottom: 1rem;
}

.section-20 .inner-item .inner-content .inner-desc {
    font-weight: 500;
    font-style: italic;
    font-size: 2rem;
    font-family: var(--font-2);
}

.section-20 .inner-item .inner-info {
    padding: 1.6rem 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-20 .inner-yellow .inner-item .inner-info {
    background-color: #FFAD00;
}

.section-20 .inner-yellow .swiper-slide:nth-child(2n) .inner-item .inner-info {
    background-color: #FFEBD6;
}

.section-20 .inner-green .inner-item .inner-info {
    background-color: #4ABA67;
}

.section-20 .inner-green .swiper-slide:nth-child(2n) .inner-item .inner-info {
    background-color: #B5E3C3;
}

.section-20 .inner-blue .inner-item .inner-info {
    background-color: #23328C;
}

.section-20 .inner-blue .swiper-slide:nth-child(2n + 1) .inner-item .inner-info {
    color: #fff;
}

.section-20 .inner-blue .swiper-slide:nth-child(2n) .inner-item .inner-info {
    background-color: #ADDDFF;
}

.section-20 .inner-item .inner-info .inner-name {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-20 .inner-item .inner-info .inner-name b {
    font-weight: 600;
}

.section-20 .inner-item .inner-info .inner-class {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-20 .inner-item .inner-info .inner-info-2 img {
    width: 6.4rem;
    height: 6.4rem;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 1229.98px) {
    .section-20 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-20 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }

    .section-20 .inner-item .inner-content .inner-desc {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .section-20 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }

    .section-20 .swiper-slide {
        width: calc((80rem - 32px) / 2);
    }
}

@media (max-width: 575.98px) {
    .section-20 .inner-head .box-title {
        font-size: 2.4rem;
    }

    .section-20 .inner-wrap {
        width: calc(100vw - 3rem);
    }
}
/* End section-20 */

/* section-21 */
.section-21.inner-bg-yellow {
    background-color: #FFAD00;
}

.section-21.inner-bg-green {
    background-color: #4ABA67;
}

.section-21.inner-bg-blue {
    background-color: #23328C;
    color: #fff;
}

.section-21.inner-bg-red {
    background-color: #D21235;
    color: #fff;
}

.section-21 .inner-wrap {
    display: flex;
}

.section-21 .inner-content {
    width: 68%;
    display: flex;
    align-items: flex-start;
    gap: 2.4rem;
    padding: 4.8rem 3.8rem 2rem 0;
}

.section-21 .inner-content .inner-text-1 {
    width: calc(50% - 2.4rem);
}

.section-21 .inner-content .inner-text-1 .inner-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
    text-transform: uppercase;
    line-height: 1.25;
}

.section-21 .inner-content .inner-text-2 {
    width: 50%;
    font-size: 1.4rem;
    font-weight: 400;
}

.section-21 .inner-content .inner-text-2 p:first-child {
    margin-top: 0;
}

.section-21 .inner-content .inner-text-3 {
    font-weight: 300;
    font-size: 1.8rem;
    color: #FAC7D0;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

.section-21 .inner-content .inner-text-3 div:nth-child(2) {
    font-weight: 600;
    margin-left: 1.6rem;
}

.section-21 .inner-image {
    width: 32%;
}

.section-21 .inner-image img {
    display: block;
    width: calc(100% + (50vw - 59.2rem));
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
}

@media (max-width: 1229.98px) {
    .section-21 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-21 .inner-content {
        width: 100%;
        padding: 2.4rem 0;
    }

    .section-21 .inner-image {
        width: 100%;
    }

    .section-21 .inner-image img {
        width: 50%;
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .section-21 .inner-content {
        flex-wrap: wrap;
    }

    .section-21 .inner-content .inner-text-1 {
        width: 100%;
    }

    .section-21 .inner-content .inner-text-2 {
        width: 100%;
    }

    .section-21 .inner-image {
        width: 100%;
    }

    .section-21 .inner-image img {
        width: 100%;
        height: auto;
    }
}
/* End section-21 */

/* section-22 */
.section-22 {
    padding: 5.6rem 0 8rem 0;
}

.section-22 .inner-head {
    margin-bottom: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-22 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    position: relative;
}

.section-22 .inner-head .inner-arrow.type-2 {
    gap: 2.4rem;
}

.section-22 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-22 .inner-head .inner-arrow .inner-number {
    font-size: 1.6rem;
    font-weight: 400;
}

.section-22 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-22 .swiper-slide {
    width: calc((117rem - 96px) / 4);
}

.section-22 .inner-item .inner-image {
    margin-bottom: 1.6rem;
    width: 100%;
    aspect-ratio: 269/154;
}

.section-22 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-22 .inner-item .inner-content .inner-title {
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 1.2rem;
}

.section-22 .inner-item .inner-content .inner-desc {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-dark);
}

.section-22 .inner-item .inner-content .inner-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-22 .inner-item .inner-content .inner-foot .inner-date {
    color: #828285;
    font-size: 1.2rem;
    font-weight: 400;
}

.section-22 .inner-item .inner-content .inner-foot i {
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

@media (max-width: 1229.98px) {
    .section-22 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-22 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }
}

@media (max-width: 767.98px) {
    .section-22 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }
}

@media (max-width: 575.98px) {
    .section-22 .inner-wrap {
        width: calc(100vw - 3rem);
    }
}
/* End section-22 */

/* section-23 */
.section-23 {
    padding: 8rem 0 12rem 0;
    background-color: #fff;
}

.section-23.type-2 {
    padding: 0 0 5.6rem 0;
    background-color: transparent;
}

.section-23 .inner-head {
    margin-bottom: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-23 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.section-23 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-23 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-23 .swiper-wrapper {
    align-items: stretch;
}

.section-23 .swiper-slide {
    width: calc((117rem - 64px) / 3);
    height: auto;
}

.section-23 .inner-wrap-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.section-23 .inner-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-23 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 369/460;
}

.section-23 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-23 .inner-item .inner-content {
    padding: 1.6rem;
    flex: 1;
}

.section-23 .inner-item .inner-content.inner-bg-green {
    background: #4ABA67;
}

.section-23 .inner-item .inner-content.inner-bg-blue {
    background: #ADDDFF;
}

.section-23 .inner-item .inner-content .inner-title {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-23 .inner-item .inner-content .inner-title div:nth-child(2) {
    font-weight: 600;
    margin-left: 1.5rem;
}

.section-23 .inner-item .inner-content .inner-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-23 .inner-item .inner-content .inner-info .inner-text {
    flex: 1;
    margin-right: 4.2rem;
}

.section-23 .inner-item .inner-content .inner-info .inner-text .inner-text-1 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.28;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.section-23 .inner-item .inner-content .inner-info .inner-text .inner-text-2 {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.28;
}

.section-23 .inner-item .inner-content .inner-info .inner-icon {
    width: 6.4rem;
}

.section-23 .inner-item .inner-content .inner-info .inner-icon img {
    width: 100%;
    height: auto;
}

@media (max-width: 1229.98px) {
    .section-23 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }
}

@media (max-width: 991.98px) {
    .section-23 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }

    .section-23 .inner-wrap-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-23 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }
}

@media (max-width: 575.98px) {
    .section-23 .inner-wrap {
        width: calc(100vw - 3rem);
    }

    .section-23 .inner-wrap-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End section-23 */

/* section-24 */
.section-24 {
    background-color: #fff;
    padding-bottom: 4rem;
}

.section-24 .inner-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 6.4rem;
}

.section-24 .inner-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.2rem;
}

.section-24 .inner-content {
    width: calc(50% - 1.6rem);
}

.section-24 .inner-content .box-title {
    margin-bottom: 3.2rem;
}

.section-24 .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
}

.section-24 .inner-content .inner-desc p:first-child {
    margin-top: 0;
}

.section-24 .inner-content .inner-desc ul {
    margin: 0;
    padding-left: 2rem;
}

.section-24 .inner-image {
    width: calc(50% - 1.6rem);
}

.section-24 .inner-image .inner-image-main {
    width: 100%;
    height: auto;
    display: block;
}

.section-24 .inner-image .inner-image-bg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .section-24 .inner-content {
        width: 100%;
        order: 1;
    }

    .section-24 .inner-image {
        width: 100%;
        order: 0;
    }
}
/* End section-24 */

/* section-25 */
.section-25 .inner-wrap {
    display: flex;
}

.section-25 .inner-content {
    width: 50%;
}

.section-25 .inner-content .inner-text {
    padding: 4.8rem 6.4rem 3.2rem 0;
    margin-left: calc(50vw - 58.5rem);
}

.section-25 .inner-content .inner-text .box-title {
    margin-bottom: 1.2rem;
}

.section-25 .inner-content .inner-text  .inner-desc-1 {
    font-family: var(--font-2);
    font-weight: 500;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 3.2rem;
}

.section-25 .inner-content .inner-text  .inner-desc-2 {
    font-weight: 400;
    font-size: 1.4rem;
}

.section-25 .inner-content .inner-text  .inner-desc-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem
}

.section-25 .inner-content .inner-text  .inner-desc-2 ul li {
    display: flex;
    align-items: center;
}

.section-25 .inner-content .inner-text  .inner-desc-2 ul li img {
    width: 2.4rem;
    height: auto;
    margin-right: 0.8rem;
}

.section-25 .inner-image {
    width: 50%;
}

.section-25 .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-25 .inner-bg {
    background-color: #fff;
}

.section-25 .inner-bg img {
    width: 70%;
    height: 8rem;
    object-fit: cover;
    display: block;
}

@media (max-width: 1229.98px) {
    .section-25 .inner-content .inner-text {
        padding: 3.2rem 3.2rem 3.2rem 0;
        margin-left: calc(50vw - 48.5rem);
    }
}

@media (max-width: 991.98px) {
    .section-25 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-25 .inner-content {
        width: 100%;
    }

    .section-25 .inner-image {
        width: 100%;
    }

    .section-25 .inner-content .inner-text {
        padding: 2.4rem;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .section-25 .inner-bg img {
        width: 100%;
    }
}
/* End section-25 */

/* section-26 */
.section-26 {
    padding: 8rem 0;
    background-color: #fff;
}

.section-26 .inner-wrap {
    display: flex;
}

.section-26 .inner-map {
    width: 66%;
    height: 42rem;
}

.section-26 .inner-map iframe {
    width: 100%;
    height: 100%;
}

.section-26 .inner-content {
    width: 34%;
    background-color: #23328C;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-26 .inner-content .inner-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

.section-26 .inner-content .inner-info .inner-icon {
    height: 4.8rem;
    width: auto;
    display: block;
    margin-bottom: 1.2rem;
}

.section-26 .inner-content .inner-info .inner-desc {
    font-weight: 400;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2.4rem;
}

@media (max-width: 991.98px) {
    .section-26 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-26 .inner-map {
        width: 100%;
    }

    .section-26 .inner-content {
        width: 100%;
    }
}
/* End section-26 */

/* section-27 */
.section-27 {
    background-color: #fff;
    padding-bottom: 8rem;
}

.section-27 .box-title {
    margin-bottom: 3.2rem;
}

.section-27 .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
}

.section-27 .inner-item {
    width: calc(50% - 1.6rem);
}

.section-27 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 569/320;
}

.section-27 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-27 .inner-item .inner-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.2rem 1.6rem;
    gap: 1rem;
}

.section-27 .inner-item .inner-content .inner-text {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-27 .inner-item .inner-content .inner-text div:nth-child(2) {
    margin-left: 1.6rem;
}

.section-27 .inner-item .inner-content .inner-icon img {
    display: block;
}

.section-27 .inner-item .inner-content.inner-blue-light {
    background-color: #ADDDFF;
    color: #23328C;
}

.section-27 .inner-item .inner-content.inner-red {
    background-color: #D21235;
    color: #FAC7D0;
}

.section-27 .inner-item .inner-content.inner-blue {
    background-color: #23328C;
    color: #ADDDFF;
}

.section-27 .inner-item .inner-content.inner-red-light {
    background-color: #FAC7D0;
    color: #D21235;
}

.section-27 .inner-item .inner-content.inner-green {
    background-color: #4ABA67;
    color: #FFFFFF;
}

.section-27 .inner-item .inner-content.inner-yellow {
    background-color: #FFAD00;
    color: #1C1C1E;
}

@media (max-width: 991.98px) {
    .section-27 .inner-item {
        width: 100%;
    }
}
/* End section-27 */

/* section-28 */
.section-28 .section-14 .inner-wrap {
    position: relative;
}

.section-28 .section-14 .inner-wrap::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 1.6rem solid transparent;
    border-right: 1.6rem solid transparent;
    border-top: 1.6rem solid #fff;
    position: absolute;
    top: 100%;
    left: 0;
}

.section-28 .section-14.bg-yellow .inner-wrap::after {
    border-top-color: #FFAD00;
}

.section-28 .section-14.bg-green .inner-wrap::after {
    border-top-color: #4ABA67;
}

.section-28 .section-14.bg-blue .inner-wrap::after {
    border-top-color: #23328C;
}
/* End section-28 */

/* box-title-2 */
.box-title-2 {
    display: flex;
}

.box-title-2 .inner-text {
    position: relative;
    display: inline-block;
    min-width: 46.8rem;
    padding: 3.5rem 1rem 3.5rem 0;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.box-title-2 .inner-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: calc(50vw - 58.5rem);
    height: 100%;
}

.box-title-2 .inner-icon {
    width: 11.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.2rem;
}

.box-title-2 .inner-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.box-title-2.inner-yellow .inner-text {
    background-color: #FFAD00;
}

.box-title-2.inner-yellow .inner-text::before {
    background-color: #FFAD00;
}

.box-title-2.inner-green .inner-text {
    background-color: #4ABA67;
    color: #fff;
}

.box-title-2.inner-green .inner-text::before {
    background-color: #4ABA67;
}

.box-title-2.inner-red .inner-text {
    background-color: #D21235;
    color: #fff;
}

.box-title-2.inner-red .inner-text::before {
    background-color: #D21235;
}

.box-title-2.inner-blue .inner-text {
    background-color: #23328C;
    color: #fff;
}

.box-title-2.inner-blue .inner-text::before {
    background-color: #23328C;
}

.box-title-2.inner-blue .inner-icon {
    background-color: #ADDDFF;
}

@media (max-width: 1229.98px) {
    .box-title-2 .inner-text {
        min-width: 40rem;
        padding: 3rem 1rem 3rem 0;
        font-size: 2.4rem;
    }

    .box-title-2 .inner-text::before {
        width: calc(50vw - 48.5rem);
    }
}

@media (max-width: 991.98px) {
    .box-title-2 .inner-text::before {
        width: calc(50vw - 36rem);
    }
}

@media (max-width: 767.98px) {
    .box-title-2 .inner-text::before {
        width: calc(50vw - 27rem);
    }
}

@media (max-width: 575.98px) {
    .box-title-2 .inner-text {
        min-width: 80%;
        padding: 2.4rem 1rem 2.4rem 0;
        font-size: 2rem;
    }

    .box-title-2 .inner-text::before {
        width: calc(100vw - 3rem);
    }
}
/* End box-title-2 */

/* box-title-5 */
.box-title-5 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
    text-transform: uppercase;
}
/* End box-title-5 */

/* section-29 */
.section-29 {
    padding-bottom: 5.6rem;
    background-color: #fff;
    position: relative;
}

.section-29::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background-color: #F2F2F7;
}

.section-29 .box-title-2 {
    margin-bottom: 3.2rem;
}

.section-29 .box-title-5 {
    margin-bottom: 3.2rem;
}

.section-29 .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.section-29 .inner-desc-2 {
    margin-bottom: 8rem;
    font-family: var(--font-2);
    font-weight: 500;
    font-style: italic;
    text-align: center;
    font-size: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.section-29 .inner-content {
    width: 37rem;
    margin-right: 9.8rem;
}

.section-29 .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
}

.section-29 .inner-content .inner-desc p:first-child {
    margin-top: 0;
}

.section-29 .inner-content .inner-image {
    width: 32.4rem;
    margin-top: 1.6rem;
    margin-bottom: 3.2rem;
}

.section-29 .inner-content .inner-image img {
    width: 100%;
    height: auto;
}

.section-29 .inner-content .inner-title {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-29 .inner-content .inner-title div:nth-child(2) {
    font-weight: 600;
    margin-left: 2rem;
}

.section-29 .inner-content .inner-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-29 .inner-content .inner-list ul li {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.section-29 .inner-content .inner-list ul li .inner-dot {
    display: inline-block;
    width: 2.4rem;
    height: 0.8rem;
    border-radius: 0.6rem;
    margin-right: 0.8rem;
}

.section-29 .inner-content .inner-list ul li .inner-dot.inner-color-1 {
    background-color: #23328C;
}

.section-29 .inner-content .inner-list ul li .inner-dot.inner-color-2 {
    background-color: #FFEBD6;
}

.section-29 .inner-content .inner-list ul li .inner-dot.inner-color-3 {
    background-color: #FAC7D0;
}

.section-29 .inner-content .inner-list ul li .inner-dot.inner-color-4 {
    background-color: #ADDDFF;
}

.section-29 .inner-content .inner-list ul li .inner-dot.inner-color-5 {
    background-color: #FFAD00;
}

.section-29 .inner-content .inner-list ul li .inner-number {
    font-weight: 600;
    font-size: 2.4rem;
    margin-right: 0.8rem;
}

.section-29 .inner-content .inner-list ul li .inner-text {
    font-weight: 400;
    font-size: 1.4rem;
}

.section-29 .inner-table {
    flex: 1;
    position: relative;
}

.section-29 .inner-table .inner-note {
    font-size: 1.2rem;
    margin-top: 1.6rem;
    color: var(--color-main);
    font-weight: 500;
}

.section-29 .inner-table .inner-note i {
    margin-right: 0.8rem;
}

.section-29 .inner-wrap-2 {
    margin-bottom: 3.2rem;
}

.section-29 .inner-wrap-2 .inner-ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.section-29 .inner-wrap-2 .inner-ul li {
    margin-left: 1.5rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.section-29 .inner-title-main {
    text-transform: uppercase;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    text-align: center;
}

.section-29 .inner-title-main.inner-blue {
    color: #23328C;
}

.section-29 .inner-wrap-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 21.2rem;
    margin-bottom: 5.6rem;
}

.section-29 .inner-wrap-3 .inner-content {
    margin-right: 0;
    width: 100%;
}

.section-29 .inner-wrap-3 .inner-content .inner-desc {
    min-height: 14.2rem;
}

.section-29 .inner-wrap-4 {
    margin-bottom: 5.6rem;
}

.section-29 .inner-wrap-4 .inner-wrap-4-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10.6rem;
}

.section-29 .inner-wrap-4 .inner-list-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
}

.section-29 .inner-wrap-4 .inner-list-box .inner-box {
    padding: 4.8rem 1.6rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.section-29 .inner-wrap-4 .inner-list-box .inner-box.inner-box-blue {
    background-color: #ADDDFF;
}

.section-29 .inner-wrap-4 .inner-list-box .inner-box.inner-box-red {
    background-color: #FAC7D0;
}

.section-29 .inner-wrap-4 .inner-list-box .inner-box b {
    font-weight: 600;
}

@media (max-width: 1229.98px) {
    .section-29 .inner-content {
        margin-right: 3rem;
    }
}

@media (max-width: 991.98px) {
    .section-29 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-29 .inner-content {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2.4rem;
    }

    .section-29 .inner-table {
        flex: none;
        width: 100%;
    }

    .section-29 .inner-wrap-2 {
        margin-bottom: 5.6rem;
    }

    .section-29 .inner-wrap-2 .inner-ul {
        gap: 2.4rem 4.8rem;
    }

    .section-29 .inner-wrap-3 {
        gap: 2.4rem 4.8rem;
    }

    .section-29 .inner-wrap-4 .inner-wrap-4-list {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
}

@media (max-width: 767.98px) {
    .section-29 .inner-wrap-2 .inner-ul {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .section-29 .inner-wrap-3 {
        grid-template-columns: 1fr;
        gap: 4.8rem;
    }
}

@media (max-width: 575.98px) {
    .section-29 .inner-wrap-4 .inner-wrap-4-list {
        gap: 1.6rem;
    }

    .section-29 .inner-wrap-4 .inner-list-box {
        gap: 1.6rem;
    }
}
/* End section-29 */

/* table */
.table {
    border: 1px solid #fff;
    border-collapse: collapse;
    font-size: 1.4rem;
    width: 100%;
}

.table th, .table td {
    border: 1px solid #fff;
    padding: 0.5rem 0.8rem;
    text-align: center;
}

.table th {
    font-weight: 500;
    color: #fff;
    background-color: var(--color-main);
    text-transform: uppercase;
}

.table th.bg-white {
    background-color: white;
}

.table td {
    color: var(--color-main);
}

.table td ul {
    padding-left: 1.5rem;
    margin: 0;
}

.table td i {
    color: var(--color-main);
}

.table td i.fa-star {
    font-size: 0.8rem;
    position: relative;
    top: -0.2rem;
}

.table td:nth-child(1) {
    color: #fff;
    background-color: var(--color-main);
}

.table td:nth-child(2) {
    text-align: left;
}

.table-yellow td {
    background-color: #FFEBD6;
}

.table-yellow td:nth-child(1) {
    background-color: #FFAD00;
}

.table-green td {
    background-color: #B5E3C3;
}

.table-green td:nth-child(1) {
    background-color: #4ABA67;
}

.table-blue td {
    background-color: #ADDDFF;
}

.table-blue td:nth-child(1) {
    background-color: #23328C;
}

@media (max-width: 991.98px) {
    .table {
        font-size: 1.2rem;
    }

    .table th, .table td {
        padding: 0.3rem 0.5rem;
    }
}
/* End table */

/* section-30 */
.section-30 {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
}

.section-30 .box-title-2 {
    margin-bottom: 2.4rem;
}

.section-30 .box-title-5 {
    margin-bottom: 3.2rem;
}

.section-30 .inner-table {
    max-width: 97rem;
    margin: 0 auto 2.4rem auto;
}

.section-30 .inner-list-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.2rem;
    max-width: 77.2rem;
    margin: 0 auto;
}

.section-30 .inner-list-item.type-2 {
    max-width: 100%;
}

.section-30 .inner-list-item .inner-item {
    width: calc((100% - 3.2rem) / 2);
    background-color: #fff;
    padding: 1.6rem 2.4rem;
    min-height: 31.8rem;
}

.section-30 .inner-list-item.type-2 .inner-item {
    width: calc((100% - 6.4rem) / 3);
}

.section-30 .inner-list-item .inner-item .inner-icon {
    margin-bottom: 4rem;
}

.section-30 .inner-list-item .inner-item .inner-icon img {
    height: 10.4rem;
    width: auto;
}

.section-30 .inner-list-item .inner-item .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .section-30 .inner-list-item .inner-item {
        width: calc((100% - 3.2rem) / 2);
    }

    .section-30 .inner-list-item.type-2 .inner-item {
        width: calc((100% - 3.2rem) / 2);
    }
}

@media (max-width: 767.98px) {
    .section-30 .inner-list-item .inner-item {
        min-height: 100%;
    }

    .section-30 .inner-list-item .inner-item .inner-icon {
        margin-bottom: 2rem;
    }

    .section-30 .inner-list-item .inner-item .inner-icon img {
        height: 6rem;
    }
}

@media (max-width: 575.98px) {
    .section-30 .inner-list-item {
        gap: 1.6rem;
    }

    .section-30 .inner-list-item .inner-item {
        padding: 1.6rem;
        width: calc((100% - 1.6rem) / 2);
    }

    .section-30 .inner-list-item.type-2 .inner-item {
        width: 100%;
    }
}
/* End section-30 */

/* table-2 */
.table-2 {
    width: 100%;
    border-collapse: collapse;
}

.table-2 th, .table-2 td {
    border-bottom: 1px solid var(--color-main);
    height: 7.2rem;
    text-align: center;
    padding: 0;
    position: relative;
    width: 25%;
}

.table-2 th, .table-2 td {
    border-right: 1px dashed var(--color-main);
}

.table-2 th:last-child, .table-2 td:last-child {
    border-right: 0;
}

.table-2 th {
    font-weight: 400;
    font-size: 1.4rem;
}

.table-2 td:nth-child(1) {
    font-weight: 600;
    font-size: 1.6rem;
}

.table-2 .inner-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 2rem;
    width: calc(100% - 4rem);
}

.table-2 .inner-box.inner-box-2-row {
    height: 14.4rem;
}

.table-2 th:last-child, .table-2 td:last-child {
    width: 23%;
}

.table-2 td:last-child .inner-box {
    width: calc(100% - 2rem);
}

@media (max-width: 991.98px) {
    .table-2 th {
        font-size: 1.2rem;
    }

    .table-2 td:nth-child(1) {
        font-size: 1.2rem;
    }

    .table-2 .inner-box {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .table-2 .inner-box {
        left: 0;
        width: 100%;
    }

    .table-2 td:last-child .inner-box {
        width: 100%;
    }
}
/* End table-2 */

/* bg-red */
.bg-red-100 {
    background-color: #D21235;
}

.bg-red-80 {
    background-color: #D83F5C;
}

.bg-red-60 {
    background-color: #DF6C83;
}

.bg-red-40 {
    background-color: #E598A9;
}
/* End bg-red */

/* bg-blue */
.bg-blue-100 {
    background-color: #23328C;
}

.bg-blue-80 {
    background-color: #4C58A1;
}

.bg-blue-60 {
    background-color: #767FB7;
}
/* End bg-blue */

/* bg-green */
.bg-green-100 {
    background-color: #4ABA67;
}

.bg-green-80 {
    background-color: #6CC584;
}

.bg-green-60 {
    background-color: #8DD0A1;
}

.bg-green-40 {
    background-color: #AFDCBD;
}
/* End bg-green */

.text-white {
    color: #fff;
}

/* section-31 */
.section-31 {
    padding-bottom: 5.6rem;
}

.section-31 .box-title-2 {
    margin-bottom: 3.2rem;
}

.section-31 .box-title-5 {
    margin-bottom: 3.2rem;
}

.section-31 .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 58rem;
    margin: 0 auto 0.8rem auto;
}

.section-31 .inner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-31 .inner-box .inner-left {
    width: calc(100% / 3);
    padding-right: 8rem;
}

.section-31 .inner-box .inner-center {
    width: calc(100% / 3);
}

.section-31 .inner-box .inner-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.section-31 .inner-box .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-31 .inner-box .inner-right {
    width: calc(100% / 3);
    padding-left: 8rem;
}

.section-31 .inner-box .inner-left, .section-31 .inner-box .inner-right {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.section-31 .inner-box .inner-item {
    display: flex;
    align-items: center;
}

.section-31 .inner-box .inner-item .inner-icon {
    width: 4rem;
    height: 4rem;
    padding: 0.6rem;
}

.section-31 .inner-box .inner-item .inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-31 .inner-box .inner-item .inner-text {
    flex: 1;
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    border-left: 0.2rem solid #fff;
}

.section-31 .inner-box.inner-yellow .inner-item .inner-icon {
    background-color: #FFAD00;
}

.section-31 .inner-box.inner-yellow .inner-item .inner-text {
    border-left-color: #FFAD00;
}

.section-31 .inner-box.inner-green .inner-item .inner-icon {
    background-color: #4ABA67;
}

.section-31 .inner-box.inner-green .inner-item .inner-text {
    border-left-color: #4ABA67;
}

@media (max-width: 1229.98px) {
    .section-31 .inner-box .inner-left {
        padding-right: 3rem;
    }

    .section-31 .inner-box .inner-right {
        padding-left: 3rem;
    }
}

@media (max-width: 991.98px) {
    .section-31 .inner-desc {
        margin: 0 auto 2.4rem auto;
    }

    .section-31 .inner-box {
        flex-wrap: wrap;
    }

    .section-31 .inner-box .inner-left {
        padding-right: 0;
        width: 100%;
    }

    .section-31 .inner-box .inner-center {
        width: 50%;
        margin: 3.2rem auto;
    }

    .section-31 .inner-box .inner-right {
        padding-left: 0;
        width: 100%;
    }

    .section-31 .inner-box .inner-left, .section-31 .inner-box .inner-right {
        flex-direction: row;
        gap: 3.2rem;
    }

    .section-31 .inner-box .inner-item {
        width: calc(50% - 1.6rem);
    }
}

@media (max-width: 767.98px) {
    .section-31 .inner-box .inner-center {
        width: 60%;
    }

    .section-31 .inner-box .inner-left, .section-31 .inner-box .inner-right {
        flex-wrap: wrap;
    }

    .section-31 .inner-box .inner-item {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .section-31 .inner-box .inner-center {
        width: 80%;
    }
}
/* End section-31 */

/* section-32 */
.section-32 {
    padding-bottom: 5.6rem;
}

.section-32 .inner-wrap {
    display: flex;
}

.section-32 .inner-content {
    width: 50%;
    padding: 3.2rem 6.8rem 0 0;
}

.section-32 .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3.2rem;
}

.section-32 .inner-image {
    width: 50%;
}

.section-32 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-32 .inner-content .inner-list-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.section-32 .inner-content .inner-list-box .inner-box {
    display: flex;
    width: 100%;
}

.section-32 .inner-content .inner-list-box .inner-box .inner-icon {
    width: 10rem;
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
}

.section-32 .inner-content .inner-list-box .inner-box .inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-32 .inner-content .inner-list-box .inner-box .inner-text {
    flex: 1;
    display: flex;
    height: 100%;
    padding: 0.6rem 1.2rem;
    flex-direction: column;
    justify-content: center;
}

.section-32 .inner-content .inner-list-box .inner-box.inner-box-blue .inner-icon {
    background-color: #23328C;
}

.section-32 .inner-content .inner-list-box .inner-box.inner-box-blue .inner-text {
    background-color: #ADDDFF;
}

@media (max-width: 991.98px) {
    .section-32 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-32 .inner-content {
        width: 100%;
        padding: 3.2rem 0 0 0;
        order: 1;
    }

    .section-32 .inner-image {
        width: 100%;
        order: 0;
        margin-top: 3.2rem;
    }
}
/* End section-32 */

/* section-33 */
.section-33 {
    padding-bottom: 5.6rem;
}

.section-33 .box-title-2 {
    margin-bottom: 3.2rem;
}

.section-33 .inner-wrap {
    display: flex;
    gap: 3.2rem;
}

.section-33 .inner-item {
    width: calc((100% - 9.6rem) / 4);
}

.section-33 .inner-item .inner-button {
    display: flex;
    height: 100%;
    align-items: flex-end;
}

.section-33 .inner-item .inner-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 268/402;
}

.section-33 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .section-33 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-33 .inner-item {
        width: calc((100% - 3.2rem) / 2);
    }

    .section-33 .inner-item:nth-child(1) {
        order: 1;
    }
}

@media (max-width: 575.98px) {
    .section-33 .inner-wrap {
        gap: 1.6rem;
    }

    .section-33 .inner-item {
        width: calc((100% - 1.6rem) / 2);
    }
}
/* End section-33 */

/* section-34 */
.section-34 {
    padding-top: 3.2rem;
    background-color: #fff;
}

.section-34 .inner-title-main-2 {
    margin-top: 3.2rem;
    margin-bottom: 2.4rem;
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.section-34 .inner-main {
    position: relative;
    margin-top: 3.2rem;
}

.section-34 .inner-main .inner-bg {
    position: absolute;
    top: 0;
    right: 100%;
    width: calc(50vw - 58.5rem);
    height: 100%;
}

.section-34 .inner-main .inner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-34 .inner-main .inner-wrap {
    width: calc(100vw - (50vw - 57.8rem));
    display: flex;
}

.section-34 .inner-main .inner-item {
    width: 25%;
}

.section-34 .inner-main .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 1/1;
}

.section-34 .inner-main .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-34 .inner-main .inner-item .inner-content {
    width: 100%;
    aspect-ratio: 1/1;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.section-34 .inner-main .inner-item .inner-content .inner-text-1,
.section-34 .inner-main .inner-item .inner-content .inner-text-5 {
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: #FFEBD6;
    font-family: var(--font-2);
}

.section-34 .inner-main .inner-item .inner-content .inner-text-3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.section-34 .inner-main .inner-item .inner-content .inner-text-4 {
    font-size: 1.6rem;
    font-weight: 400;
}

.section-34 .inner-main.inner-green .inner-bg {
    background-color: #4ABA67;
}

.section-34 .inner-main.inner-green .inner-item .inner-content {
    background-color: #4ABA67;
}

.section-34 .inner-main.inner-green .inner-item .inner-content.type-2 {
    background-color: #B5E3C3;
}

.section-34 .inner-main .inner-item .inner-content.type-2 .inner-text-1, .section-34 .inner-main .inner-item .inner-content.type-2 .inner-text-5 {
    color: #4ABA67;
}

.section-34 .inner-main.inner-blue .inner-bg {
    background-color: #ADDDFF;
}

.section-34 .inner-main.inner-blue .inner-item .inner-content {
    background-color: #23328C;
}

.section-34 .inner-main.inner-blue .inner-item .inner-content .inner-text-1, .section-34 .inner-main.inner-blue .inner-item .inner-content .inner-text-5 {
    color: #FFAD00;
}

.section-34 .inner-main.inner-blue .inner-item .inner-content .inner-text-2 {
    color: #fff;
}

@media (max-width: 1229.98px) {
    .section-34 .inner-main .inner-bg {
        width: calc(50vw - 48.5rem);
    }

    .section-34 .inner-main .inner-wrap {
        width: calc(100vw - (50vw - 47.8rem));
    }

    .section-34 .inner-main .inner-item .inner-content {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .section-34 .inner-main .inner-bg {
        width: calc(50vw - 36rem);
    }

    .section-34 .inner-main .inner-wrap {
        width: calc(100vw - (50vw - 35.2rem));
    }

    .section-34 .inner-main .inner-item .inner-content .inner-text-3 {
        font-size: 1.6rem;
    }

    .section-34 .inner-main .inner-item .inner-content .inner-text-4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .section-34 .inner-main .inner-bg {
        width: calc(50vw - 27rem);
    }

    .section-34 .inner-main .inner-wrap {
        width: calc(100vw - (50vw - 26.2rem));
        flex-wrap: wrap;
    }

    .section-34 .inner-main .inner-item {
        width: 100%;
        display: flex;
    }

    .section-34 .inner-main .inner-item .inner-image {
        width: 50%;
    }

    .section-34 .inner-main .inner-item .inner-content {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .section-34 .box-title {
        font-size: 2.4rem;
    }

    .section-34 .inner-main .inner-bg {
        width: calc(100vw - 3rem);
    }

    .section-34 .inner-main .inner-wrap {
        width: calc(100vw - 3rem);
    }
}
/* End section-34 */

/* box-title-3 */
.box-title-3 {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}
/* End box-title-3 */

/* section-35 */
.section-35 {
    background-color: #fff;
    padding: 5.6rem 0 4.4rem 0;
}

.section-35 .inner-title-main-2 {
    margin-bottom: 2.4rem;
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.section-35 .inner-title-main {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 7.6rem;
}

.section-35 .inner-wrap {
    display: flex;
    gap: 10rem;
    margin-top: 3.2rem;
}

.section-35 .inner-center {
    width: 42rem;
}

.section-35 .inner-left, .section-35 .inner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13rem;
}

.section-35 .inner-left {
    text-align: right;
}

.section-35 .inner-image {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}

.section-35 .inner-image .inner-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-35 .inner-image .inner-image-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section-35 .inner-item .inner-icon {
    margin-bottom: 1.8rem;
}

.section-35 .inner-item .inner-icon img {
    height: 6.4rem;
    width: auto;
}

.section-35 .inner-item .inner-title {
    font-size: 2rem;
    font-weight: 500;
}

.section-35 .inner-item .inner-desc {
    font-size: 1.6rem;
    font-weight: 400;
}

@media (max-width: 1229.98px) {
    .section-35 .inner-wrap {
        gap: 5rem;
    }
}

@media (max-width: 991.98px) {
    .section-35 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-35 .inner-left, .section-35 .inner-right {
        width: 100%;
        flex: none;
        text-align: left;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }

    .section-35 .inner-item {
        width: calc(50% - 0.5rem);
        text-align: left;
    }

    .section-35 .inner-item:nth-child(2) {
        text-align: right;
    }

    .section-35 .inner-center {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .section-35 .inner-wrap {
        gap: 3.2rem;
    }

    .section-35 .inner-left, .section-35 .inner-right {
        text-align: center;
    }

    .section-35 .inner-center {
        width: 80%;
    }

    .section-35 .inner-item .inner-title {
        font-size: 1.6rem;
    }

    .section-35 .inner-item .inner-desc {
        font-size: 1.4rem;
    }
}
/* End section-35 */

/* section-36 */
.section-36 {
    padding: 8rem 0 12rem 0;
}

.section-36 .inner-head {
    margin-bottom: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-36 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    position: relative;
}

.section-36 .inner-head .inner-arrow.type-2 {
    gap: 2.4rem;
}

.section-36 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-36 .inner-head .inner-arrow .inner-number {
    font-size: 1.6rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.section-36 .inner-item {
    display: flex;
}

.section-36 .inner-item .inner-image {
    width: 67%;
    height: 49.7rem;
}

.section-36 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-36 .inner-item .inner-content {
    width: 33%;
    padding: 4.8rem 3.2rem 2.4rem 3.2rem;
}

.section-36 .inner-item .inner-content .inner-icon {
    margin-bottom: 3.2rem;
}

.section-36 .inner-item .inner-content .inner-icon img {
    height: 10.2rem;
    width: auto;
}

.section-36 .inner-item .inner-content .inner-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.6rem;
}

.section-36 .inner-item .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.section-36 .inner-item .inner-content .inner-desc b {
    font-weight: 600;
}

.section-36 .inner-item .inner-content .inner-list ol {
    padding-left: 1.5rem;
}

.section-36 .inner-item .inner-content .inner-list ol li {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
}

.section-36 .inner-item .inner-content.inner-green {
    background-color: #4ABA67;
}

.section-36 .inner-item .inner-content.inner-green .inner-desc {
    color: #B5E3C3;
}

.section-36 .inner-item .inner-content.inner-blue {
    background-color: #23328C;
}

.section-36 .inner-item .inner-content.inner-blue .inner-desc {
    color: #ADDDFF;
}

@media (max-width: 1229.98px) {
    .section-36 .inner-item .inner-image {
        height: 44rem;
    }

    .section-36 .inner-item .inner-content {
        padding: 2.4rem;
    }

    .section-36 .inner-item .inner-content .inner-icon {
        margin-bottom: 2rem;
    }

    .section-36 .inner-item .inner-content .inner-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .section-36 .inner-item .inner-content .inner-desc {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section-36 .inner-item .inner-content .inner-list ol li {
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .section-36 .inner-item {
        flex-wrap: wrap;
    }

    .section-36 .inner-item .inner-image {
        width: 100%;
        height: auto;
        aspect-ratio: 769/497;
    }

    .section-36 .inner-item .inner-content {
        width: 100%;
    }

    .section-36 .inner-item .inner-content .inner-icon img {
        height: 6rem;
    }
}
/* End section-36 */

/* section-37 */
.section-37 {
    padding: 5.6rem 0;
}

.section-37 .inner-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
}

.section-37 .inner-title-main {
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 2.8rem;
    text-transform: uppercase;
}

.section-37 .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.section-37 .inner-item {
    width: 43%;
    background-color: #fff;
    padding: 3.2rem;
    display: flex;
    justify-content: space-between;
}

.section-37 .inner-item:first-child {
    padding-left: 6.8rem;
}

.section-37 .inner-item:last-child {
    padding-right: 6.8rem;
}

.section-37 .inner-item .inner-icon img {
    width: 8.8rem;
    height: auto;
}

.section-37 .inner-item .inner-content .inner-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.section-37 .inner-item .inner-content .inner-desc {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
}

.section-37 .inner-item .inner-content.type-2 {
    flex: 1;
    margin-left: 6rem;
}

.section-37 .inner-item .inner-content.type-2 .inner-desc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.6rem;
}

@media (max-width: 991.98px) {
    .section-37 .inner-item {
        width: calc(50% - 1.6rem);
    }

    .section-37 .inner-item:first-child {
        padding-left: 3.2rem;
    }

    .section-37 .inner-item:last-child {
        padding-right: 3.2rem;
    }
}

@media (max-width: 767.98px) {
    .section-37 .inner-wrap {
        flex-wrap: wrap;
        gap: 2.4rem;
    }

    .section-37 .inner-item {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .section-37 .box-title {
        font-size: 2.4rem;
    }
}
/* End section-37 */

/* section-38 */
.section-38 {
    padding-top: 5.6rem;
}

.section-38 .inner-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2rem;
    flex-wrap: wrap;
}

.section-38 .inner-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
}

.section-38 .inner-item {
    background-color: #fff;
    padding: 2.4rem;
    display: flex;
    justify-content: space-between;
    min-height: 16.2rem;
    gap: 1rem;
}

.section-38 .inner-item .inner-icon img {
    width: 8.8rem;
    height: auto;
}

.section-38 .inner-item .inner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.section-38 .inner-item .inner-content .inner-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (max-width: 1229.98px) {
    .section-38 .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .section-38 .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-38 .inner-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End section-38 */

/* section-39 */
.section-39 {
    padding-bottom: 8rem;
}

.section-39 .inner-wrap {
    margin-top: 3.2rem;
    display: flex;
    gap: 6.8rem;
}

.section-39 .inner-content {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 400;
}

.section-39 .inner-image {
    width: 50%;
}

.section-39 .inner-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .section-39 .inner-wrap {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .section-39 .inner-image {
        width: 100%;
    }

    .section-39 .inner-content {
        flex: none;
        width: 100%;
        order: 1;
        margin-top: 0;
    }
}
/* End section-39 */

/* section-40 */
.section-40 {
    margin-top: 0.8rem;
    padding: 3.2rem 0 0 0;
    background-color: #fff;
}

.section-40 .inner-title-main-2 {
    margin-bottom: 2.4rem;
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.section-40 .inner-wrap {
    display: flex;
    margin-top: 4rem;
}

.section-40 .inner-image {
    width: 50%;
}

.section-40 .inner-image .inner-image-main {
    width: 100%;
    height: auto;
    display: block;
}

.section-40 .inner-image .inner-image-bg {
    width: 100%;
    height: auto;
    display: block;
}

.section-40 .inner-content {
    flex: 1;
    margin-left: 6.8rem;
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.section-40 .inner-content-item {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.section-40 .inner-content-item .inner-icon {
    width: 4rem;
}

.section-40 .inner-content-item .inner-icon img {
    width: 100%;
    height: auto;
}

.section-40 .inner-content-item .inner-text {
    flex: 1;
}

.section-40 .inner-content-item .inner-text .inner-text-1 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.section-40 .inner-content-item .inner-text .inner-text-2 {
    font-weight: 400;
    font-size: 1.4rem;
}

@media (max-width: 991.98px) {
    .section-40 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-40 .inner-image {
        width: 100%;
    }

    .section-40 .inner-content {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 2.4rem;
    }
}
/* End section-40 */

/* section-41 */
.section-41 {
    padding-top: 1.2rem;
    padding-bottom: 8rem;
    background-color: #fff;
}

.section-41 .inner-wrap {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
}

.section-41 .inner-wrap.type-2 {
    grid-template-columns: repeat(3, 1fr);
}

.section-41 .inner-green .inner-item {
    background-color: #B5E3C3;
}

.section-41 .inner-blue .inner-item {
    background-color: #ADDDFF;
}

.section-41 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 501/251;
}

.section-41 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-41 .inner-item .inner-content {
    padding: 1.6rem 6rem;
}

.section-41 .inner-item .inner-content .inner-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.section-41 .inner-item .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
}

@media (max-width: 1229.98px) {
    .section-41 .inner-item .inner-content {
        padding: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .section-41 .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-41 .inner-wrap.type-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .section-41 .inner-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-41 .inner-wrap.type-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End section-41 */

/* section-42 */
.section-42 {
    position: relative;
}

.section-42 .inner-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-42 .inner-image-main::after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 102, 102, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-42 .inner-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-42 .inner-main {
    position: relative;
    padding-top: 11.6rem;
    padding-bottom: 5rem;
}

.section-42.type-2 .inner-main {
    padding-bottom: 12rem;
}

.section-42 .inner-main .inner-wrap {
    display: flex;
    min-height: 39.3rem;
}

.section-42 .inner-main .inner-left {
    width: 60rem;
    margin-right: 6.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-42 .inner-main .inner-right {
    flex: 1;
}

.section-42 .inner-main .inner-content-main .inner-tag {
    margin-bottom: 2.8rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    display: flex;
    gap: 1.4rem;
}

.section-42 .inner-main .inner-content-main .inner-title a {
    color: #fff;
    font-size: 4.4rem;
    font-weight: 600;
    line-height: 1.2;
}

.section-42 .inner-main .inner-news-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.section-42 .inner-main .inner-news-1 .inner-news-item {
    padding: 1.6rem;
}

.section-42 .inner-main .inner-news-1 .inner-news-item.type-2 {
    background: #FFFFFF1A;
    backdrop-filter: blur(10px);
    border-left: 0.4rem solid #D21235;
}

.section-42 .inner-main .inner-news-1 .inner-news-item .inner-image {
    width: 12rem;
    height: 8rem;
    margin-bottom: 1.6rem;
}

.section-42 .inner-main .inner-news-1 .inner-news-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-42 .inner-main .inner-news-1 .inner-news-item .inner-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
}

.section-42 .inner-main .inner-news-2 {
    background: #FFFFFF1A;
    backdrop-filter: blur(10px);
    padding: 2.4rem;
}

.section-42 .inner-main .inner-news-2 .inner-label-main {
    margin-bottom: 2.4rem;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
}

.section-42 .inner-main .inner-news-2 .inner-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.section-42 .inner-main .inner-news-2 .inner-news-item a {
    display: flex;
    align-items: flex-start;
}

.section-42 .inner-main .inner-news-2 .inner-news-item .inner-image {
    width: 14.4rem;
    aspect-ratio: 144/104;
    margin-right: 2.4rem;
}

.section-42 .inner-main .inner-news-2 .inner-news-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-42 .inner-main .inner-news-2 .inner-news-item .inner-content {
    flex: 1;
}

.section-42 .inner-main .inner-news-2 .inner-news-item .inner-content .inner-tag {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.6rem;
    display: flex;
    gap: 0.5rem 2rem;
    flex-wrap: wrap;
}

.section-42 .inner-main .inner-news-2 .inner-news-item .inner-content .inner-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.section-42 .inner-main.type-2 .inner-wrap {
    min-height: 60rem;
}

.section-42 .inner-main .inner-meta-data {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}

.section-42 .inner-main .inner-meta-data .inner-author {
    display: flex;
    align-items: center;
}

.section-42 .inner-main .inner-meta-data .inner-author .inner-icon {
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 1.6rem;
    background-color: #fff;
    border-radius: 50%;
    padding: 1.2rem;
    overflow: hidden;
}

.section-42 .inner-main .inner-meta-data .inner-author .inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-42 .inner-main .inner-meta-data .inner-author .inner-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
}

.section-42 .inner-main .inner-meta-data .inner-list-action {
    display: flex;
    gap: 1rem 3.4rem;
}

.section-42 .inner-main .inner-meta-data .inner-list-action .inner-item {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.section-42 .inner-main .inner-meta-data .inner-list-action .inner-item i {
    font-size: 2rem;
}

.section-42.type-2 .inner-main .inner-left {
    width: 70rem;
    margin-right: 0;
}

@media (max-width: 1229.98px) {
    .section-42 .inner-main .inner-left {
        width: 48rem;
        margin-right: 3.2rem;
    }

    .section-42 .inner-main .inner-content-main .inner-title a {
        font-size: 3.2rem;
    }

    .section-42 .inner-main .inner-news-1 .inner-news-item .inner-title {
        font-size: 1.4rem;
    }

    .section-42 .inner-main .inner-news-2 .inner-label-main {
        font-size: 2.4rem;
    }

    .section-42 .inner-main .inner-news-2 .inner-news-item .inner-content .inner-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .section-42 .inner-image-main {
        position: relative;
    }

    .section-42 .inner-main {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-42 .inner-main .inner-wrap {
        flex-wrap: wrap;
        background: #FFFFFF1A;
        backdrop-filter: blur(10px);
        margin-top: -12rem;
        padding: 1.6rem;
        min-height: auto;
    }

    .section-42 .inner-main .inner-left {
        width: 100%;
        margin-right: 0;
    }

    .section-42.type-2 .inner-main .inner-left {
        width: 100%;
    }

    .section-42 .inner-main .inner-content-main {
        margin-bottom: 4.8rem;
    }

    .section-42 .inner-main .inner-content-main .inner-tag {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-content-main .inner-title a {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-news-1 .inner-news-item .inner-title {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-news-2 .inner-label-main {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-news-2 .inner-news-item .inner-content .inner-tag {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-news-2 .inner-news-item .inner-content .inner-title {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-news-2 {
        background: #acacac1a;
    }

    .section-42 .inner-main .inner-meta-data {
        gap: 2rem;
    }

    .section-42 .inner-main .inner-meta-data .inner-author .inner-text {
        color: var(--color-text-dark);
    }

    .section-42 .inner-main .inner-meta-data .inner-list-action .inner-item {
        color: var(--color-text-dark);
    }

    .section-42.type-2 .inner-main {
        padding-bottom: 5.6rem;
    }
}

@media (max-width: 767.98px) {
    .section-42 .inner-main .inner-wrap {
        margin-top: -8rem;
    }

    .section-42 .inner-main .inner-content-main .inner-title a {
        font-size: 2.4rem;
    }

    .section-42 .inner-main .inner-content-main .inner-tag {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .section-42 .inner-main .inner-wrap {
        margin-top: 0;
    }

    .section-42 .inner-main .inner-news-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End section-42 */

/* section-43 */
.section-43 {
    padding-top: 10rem;
}

.section-43 .inner-head {
    margin-bottom: 5.6rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-43 .inner-head .inner-arrow {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.section-43 .inner-head .inner-arrow button {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.section-43 .inner-wrap {
    width: calc(100vw - (50vw - 57.5rem));
}

.section-43 .swiper-wrapper {
    align-items: stretch;
}

.section-43 .swiper-slide {
    width: calc(124rem / 2);
    height: auto;
}

.section-43 .inner-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.section-43 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 608/376;
    position: relative;
}

.section-43 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-43 .inner-item .inner-image .inner-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-dark);
    padding: 1.4rem 2.2rem;
    line-height: 1.1;
}

.section-43 .inner-item .inner-image .inner-tag.inner-yellow {
    background-color: #FFAD00;
}

.section-43 .inner-item .inner-image .inner-tag.inner-green {
    background-color: #4ABA67;
}

.section-43 .inner-item .inner-image .inner-tag.inner-blue {
    background-color: #23328C;
    color: #fff;
}

.section-43 .inner-item .inner-content {
    padding: 2.4rem 1.6rem;
}

.section-43 .inner-item .inner-content .inner-title a {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-text-dark);
}

.section-43 .inner-item .inner-content .inner-tag-2 {
    margin-top: 2.4rem;
    color: #C7C7CC;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 5rem;
}

@media (max-width: 1229.98px) {
    .section-43 {
        padding-top: 5.6rem;
    }

    .section-43 .inner-wrap {
        width: calc(100vw - (50vw - 48.5rem));
    }

    .section-43 .swiper-slide {
        width: calc(100rem / 2);
    }

    .section-43 .inner-item .inner-content .inner-title a {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .section-43 .inner-wrap {
        width: calc(100vw - (50vw - 36rem));
    }

    .section-43 .swiper-slide {
        width: calc(86rem / 2);
    }
}

@media (max-width: 767.98px) {
    .section-43 .inner-wrap {
        width: calc(100vw - (50vw - 27rem));
    }

    .section-43 .swiper-slide {
        width: calc(68rem / 2);
    }
}

@media (max-width: 575.98px) {
    .section-43 .inner-wrap {
        width: calc(100vw - 3rem);
    }

    .section-43 .swiper-slide {
        width: calc(100% - 8rem);
    }
}
/* End section-43 */

/* section-44 */
.section-44 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-44 .inner-main {
    font-size: 1.6rem;
    color: #515151;
}

.section-44 .inner-main img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .section-44 {
        margin-top: 0;
    }
}
/* End section-44 */

/* section-45 */
.section-45 {
    margin-top: 8rem;
    margin-bottom: 6.4rem;
}

.section-45 .inner-comment-form {
    display: flex;
    align-items: flex-start;
}

.section-45 .inner-comment-form .inner-avatar {
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 2.4rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}

.section-45 .inner-comment-form .inner-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-45 .inner-comment-form form {
    flex: 1;
}

.section-45 .inner-comment-form form textarea {
    border: 1px solid #E1E1E1;
    background-color: #fff;
    width: 100%;
    margin-bottom: 1.6rem;
    height: 16.8rem;
    padding: 2.4rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 400;
    outline: none;
}

.section-45 .inner-comment-form form textarea::placeholder {
    color: #C7C7CC;
}

.section-45 .inner-comment-form form button {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    padding: 1.8rem 2.4rem;
    background-color: var(--color-main);
    border: 0;
    cursor: pointer;
}

.section-45 .inner-comment-list {
    margin-top: 5.6rem;
    display: flex;
    flex-direction: column;
    gap: 5.2rem;
}

.section-45 .inner-comment-item {
    display: flex;
    align-items: flex-start;
}

.section-45 .inner-comment-item .inner-avatar {
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 2.4rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}

.section-45 .inner-comment-item .inner-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-45 .inner-comment-item .inner-content {
    flex: 1;
    padding-top: 1.4rem;
}

.section-45 .inner-comment-item .inner-content .inner-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    gap: 1rem 1.6rem;
}

.section-45 .inner-comment-item .inner-content .inner-info .inner-name {
    font-size: 1.6rem;
    font-weight: 500;
    color: #11142D;
}

.section-45 .inner-comment-item .inner-content .inner-info .inner-time {
    font-size: 1.5rem;
    font-weight: 400;
    color: #9A9AB0;
}

.section-45 .inner-comment-item .inner-content .inner-text {
    font-size: 1.6rem;
    font-weight: 400;
    color: #515151;
}
/* End section-45 */

/* section-46 */
.section-46 {
    margin-bottom: 5.6rem;
}

.section-46 .inner-wrap {
    display: flex;
    gap: 13.2rem;
}

.section-46 .inner-content {
    width: calc(50% - 6.6rem);
    margin-top: 5.6rem;
}

.section-46 .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 0.8rem;
    margin-bottom: 3.2rem;
    max-width: 37rem;
}

.section-46 .inner-image {
    width: calc(50% - 6.6rem);
    margin-top: -11.2rem;
}

.section-46 .inner-image .inner-image-main, .section-46 .inner-image .inner-image-bg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1229.98px) {
    .section-46 .inner-image {
        margin-top: -9.6rem;
    }
}

@media (max-width: 991.98px) {
    .section-46 .inner-wrap {
        flex-wrap: wrap;
        gap: 3.2rem;
    }

    .section-46 .inner-content {
        width: 100%;
    }

    .section-46 .inner-image {
        width: 100%;
        margin-top: 0;
    }
}
/* End section-46 */

/* box-title-4 */
.box-title-4 {
    font-size: 2.4rem;
    font-weight: 700;
}
/* End box-title-4 */

/* section-47 */
.section-47 {
    margin-bottom: 5.6rem;
}

.section-47 .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 0.8rem;
    margin-bottom: 2.4rem;
}

.section-47 .inner-button {
    text-align: center;
    margin-top: 3.2rem;
}
/* End section-47 */

/* table-3 */
.table-3 {
    border: 1px solid #fff;
    border-collapse: collapse;
    width: 100%;
}

.table-3 th, .table-3 td {
    border: 1px solid #fff;
    padding: 1.2rem;
    text-align: center;
}

.table-3 th {
    background-color: #FFAD00;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
}

.table-3 td {
    background-color: #FFEBD6;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .table-3 th, .table-3 td {
        padding: 1rem;
    }

    .table-3 th {
        font-size: 1.4rem;
    }

    .table-3 td {
        font-size: 1.3rem;
    }
}
/* End table-3 */

/* section-48 */
.section-48 {
    margin-bottom: 5.6rem;
}

.section-48 .inner-wrap {
    display: flex;
    gap: 3.2rem;
    margin-top: 3.2rem;
}

.section-48 .inner-table {
    width: calc(50% - 1.6rem);
}

.section-48 .inner-table table {
    height: 100%;
}

.section-48 .inner-content {
    width: calc(50% - 1.6rem);
}

.section-48 .inner-image {
    width: calc(50% - 1.6rem);
}

.section-48 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .section-48 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-48 .inner-table {
        width: 100%;
    }

    .section-48 .inner-image {
        width: 100%;
    }

    .section-48 .inner-content {
        width: 100%;
    }
}
/* End section-48 */

/* table-4 */
.table-4 {
    border: 1px solid #fff;
    border-collapse: collapse;
    width: 100%;
}

.table-4 td {
    border: 1px solid #fff;
    padding: 1.2rem;
    text-align: center;
    background-color: #FFEBD6;
}

@media (max-width: 575.98px) {
    .table-4 td {
        font-size: 1.3rem;
        padding: 1rem;
    }
}
/* End table-4 */

/* section-49 */
.section-49 {
    background-color: #fff;
    padding-bottom: 5.6rem;
}

.section-49 .inner-content {
    margin-top: 3.2rem;
    text-align: center;
    color: #000000;
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    font-family: var(--font-2);
}

.section-49 .inner-content.inner-blue {
    color: #23328C;
}

@media (max-width: 767.98px) {
    .section-49 .inner-content {
        font-size: 1.6rem;
    }
}
/* End section-49 */

/* section-50 */
.section-50 {
    padding: 5.6rem 0;
}

.section-50 .inner-wrap {
    margin-top: 3.8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.section-50 .inner-item {
    background-color: #fff;
    padding: 1.6rem 2.4rem;
}

.section-50 .inner-item .inner-icon {
    margin-bottom: 1rem;
}

.section-50 .inner-item .inner-icon img {
    height: 10rem;
    width: auto;
}

.section-50 .inner-item .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .section-50 .inner-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .section-50 .inner-wrap {
        gap: 1.6rem;
        grid-template-columns: repeat(1, 1fr);
    }
}
/* End section-50 */

/* section-51 */
.section-51 {
    padding: 5.6rem 0;
    background-color: #fff;
}

.section-51 .inner-wrap {
    margin-top: 3.2rem;
    display: flex;
}

.section-51 .inner-content {
    flex: 1;
    margin-right: 9.4rem;
}

.section-51 .inner-content ul {
    padding-left: 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.section-51 .inner-content .inner-content-wrap {
    display: flex;
    gap: 1.6rem;
}

.section-51 .inner-content .inner-content-wrap p {
    margin: 0;
}

.section-51 .inner-content .inner-content-wrap ul {
    gap: 0;
}

.section-53 .inner-content .inner-title-2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-51 .inner-image {
    width: 48%;
}

.section-51 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .section-51 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-51 .inner-content {
        flex: none;
        margin-right: 0;
        width: 100%;
    }

    .section-51 .inner-image {
        width: 100%;
        margin-top: 3.2rem;
    }
}
/* End section-51 */

/* section-52 */
.section-52 {
    padding: 5.6rem 0;
}

.section-52 .inner-wrap {
    margin-top: 3.2rem;
    display: flex;
    gap: 3.2rem;
}

.section-52 .inner-left, .section-52 .inner-right {
    width: calc((100% - 6.4rem) / 3);
}

.section-52 .inner-center {
    width: calc((100% - 6.4rem) / 3);
}

.section-52 .inner-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.section-52 .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-52 .inner-item {
    background-color: #fff;
    padding: 1.6rem;
    min-height: 15rem;
    margin-bottom: 1.6rem;
}

.section-52 .inner-item:first-child {
    min-height: 20.4rem;
}

.section-52 .inner-item .inner-title {
    font-size: 1.6rem;
    color: #FFAD00;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
}

.section-52 .inner-item .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .section-52 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-52 .inner-left, .section-52 .inner-right {
        width: 100%;
    }

    .section-52 .inner-center {
        width: 60%;
        margin: 0 auto;
    }

    .section-52 .inner-item:first-child {
        min-height: 15rem;
    }
}

@media (max-width: 575.98px) {
    .section-52 .inner-center {
        width: 80%;
    }
}
/* End section-52 */

/* section-53 */
.section-53 {
    padding: 5.6rem 0;
    background-color: #fff;
}

.section-53 .inner-wrap {
    margin-top: 3.2rem;
    display: flex;
    gap: 3.2rem;
}

.section-53 .inner-content {
    width: calc(50% - 1.6rem);
}

.section-53 .inner-content .inner-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #23328C;
    text-align: center;
    margin-bottom: 1.6rem;
}

.section-53 .inner-content .inner-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
}

.section-53 .inner-image {
    width: calc(50% - 1.6rem);
}

.section-53 .inner-image .inner-image-main, .section-53 .inner-image .inner-image-bg {
    display: block;
    width: 100%;
    height: auto;
}

.section-53 .inner-button {
    text-align: center;
    margin-top: 3.2rem;
}

@media (max-width: 991.98px) {
    .section-53 .inner-wrap {
        flex-wrap: wrap;
        gap: 1.6rem;
    }

    .section-53 .inner-content {
        width: 100%;
        order: 1;
    }

    .section-53 .inner-image {
        width: 100%;
    }
}
/* End section-53 */

/* section-54 */
.section-54 {
    background-color: #fff;
    padding-bottom: 5.6rem;
}

.section-54 .inner-content {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
}
/* End section-54 */

/* section-55 */
.section-55 {
    padding-top: 8rem;
    background-color: #fff;
}

.section-55 .box-title div:nth-child(2) {
    text-align: right;
}

.section-55 .inner-wrap {
    display: flex;
}

.section-55 .inner-left {
    width: 32%;
    background-color: #23328C;
    padding: 2.4rem;
}

.section-55 .inner-right {
    width: 68%;
    background-image: url(../images/background-14.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.section-55 .inner-content {
    width: 24rem;
    background-color: #FAC7D0;
    padding: 0.8rem 1.2rem;
    color: #D21235;
    margin-left: 3.2rem;
    margin-bottom: 2.4rem;
}

.section-55 .inner-content .inner-info {
    font-size: 1.2rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 300;
}

.section-55 .inner-content .inner-info b {
    font-weight: 600;
}

.section-55 .inner-content .inner-position {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 300;
    margin-left: 3.2rem;
    margin-top: 0.4rem;
}

.section-55 .inner-image {
    width: 37rem;
    margin-left: 8.5rem;
    margin-top: 2rem;
}

.section-55 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1229.98px) {
    .section-55 .inner-image {
        margin-left: 2rem;
    }
}

@media (max-width: 991.98px) {
    .section-55 .box-title div:nth-child(2) {
        text-align: left;
    }

    .section-55 .inner-wrap {
        flex-wrap: wrap;
    }

    .section-55 .inner-left {
        width: 100%;
    }

    .section-55 .inner-right {
        width: 100%;
    }

    .section-55 .inner-content .inner-position {
        margin-left: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .section-55 .box-title {
        font-size: 2.6rem;
    }

    .section-55 .inner-left {
        padding: 1.6rem;
    }

    .section-55 .inner-right {
        flex-wrap: wrap;
    }

    .section-55 .inner-content {
        width: 100%;
        margin: 0;
        order: 1;
    }

    .section-55 .inner-image {
        margin: 0;
        width: 100%;
    }
}
/* End section-55 */

/* section-56 */
.section-56 {
    padding: 5.6rem 0;
}

.section-56 .box-title {
    margin-bottom: 3.2rem;
}

.section-56 .inner-title-main {
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 2.8rem;
    text-transform: uppercase;
}

.section-56 .inner-wrap {
    display: flex;
    justify-content: center;
}

.section-56 .inner-content {
    max-width: 800px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .section-56 .inner-content {
        max-width: 500px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .section-56 .inner-content {
        max-width: 350px;
        text-align: center;
    }
}
/* End section-56 */
