body {
    background-color: #fff;
}
.banner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(150, 199, 255, 0.23) 41.83%, rgba(37, 96, 206, 0.33) 56.73%, #1350cf 100%);
    padding: var(--sp-64) 0;
    text-align: center;
    margin: 0 var(--sp-16);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.banner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bg/bg-1.png");
    background-size: cover;
}
.banner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2584px;
    height: 2584px;
    border-radius: 2584px;
    background: radial-gradient(50% 50% at 50% 50%, #fff 0%, rgba(255, 255, 255, 0.22) 28.85%, rgba(255, 255, 255, 0.22) 50.96%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
    background-size: cover;
}
.banner-title {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--Light-Third-50);
    background-color: #f8eeed;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: var(--sp-32) 0;
}
.banner-title span {
    background: var(--Gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.banner-title i {
    color: var(--Light-Third-50);
}
.banner-headline {
    font-size: var(--sp-64);
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--Light-Primary-20);
}
.banner-headline span {
    background: linear-gradient(180deg, #0071e3 73.56%, #1235ae 94.23%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-headline img {
    display: inline-block;
    width: 100px;
    transform: translateY(12px);
}
@media (max-width: 575px) {
    .banner-title {
        font-size: 12px;
        margin: 16px 0;
    }
}
.number {
    border-radius: 28px;
    padding: 40px 0;
    margin-top: 180px;
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 999;
}

.number-card {
    background: #fff;
    border-radius: 24px;
    margin: 0 8px;
    transition: box-shadow 0.2s;
    font-size: 40px;
    color: var(--Light-Primary-50);
}

.number-value {
    font-size: var(--fs-48);
    font-weight: 400;
    color: var(--Light-Primary-50);
    letter-spacing: 1px;
    vertical-align: middle;
}

.number-label {
    margin-top: 8px;
    font-size: var(--fs-14);
    font-weight: 300;
    color: var(--Light_mode-Gray_Scale-5);
}
@media (max-width: 991px) {
    .banner {
        padding: var(--sp-32) 0 12px;
        margin: 0 4px;
    }
    .banner-headline {
        font-size: var(--sp-48);
    }
    .banner-headline img {
        width: 68px;
    }
    .number {
        margin-top: 48px;
        padding: 16px;
    }
}
@media (max-width: 575px) {
    .banner-headline {
        font-size: var(--sp-32);
    }
    .banner-headline img {
        width: 48px;
    }
    .number-value {
        font-size: 36px;
    }
}
.job {
    margin: 120px 0;
}

.job-more {
    display: block;
    text-align: center;
    margin-top: var(--sp-48);
    color: var(--Light_mode-Gray_Scale-30);
    transition: 0.3s;
}
.job-more:hover {
    color: var(--Light_mode-Gray_Scale-50);
}
@media (max-width: 575px) {
    .job {
        margin: 60px 0;
    }
    .job-more {
        margin-top: 20px;
    }
}
.why {
    margin: 0 10px 30px;
    padding: 60px 0 0;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) -7.44%, rgba(150, 199, 255, 0.23) 37.5%, rgba(37, 96, 206, 0.33) 53.51%, #1350cf 100%);
}
.why .why_headline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.why .why_headline a {
    width: 25%;
    border: 2px solid rgba(235, 41, 19, 0.3);
    background: linear-gradient(180deg, #ff7f7e 0%, #eb2813 100%);
}
.why .container {
    position: relative;
    z-index: 1;
}
.why::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bg/bg-2.png");
    background-size: cover;
    z-index: 0;
}
.why .row {
    align-items: center;
}

.why-title h2 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--sp-24);
    text-transform: uppercase;
    line-height: 65px;
    width: 75%;
}
.why-title h2 > span {
    position: relative;
    padding: 4px 12px;
}
.why-title h2 > span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ff7f7e 0%, #eb2813 100%);
    bottom: 0;
    left: 0;
    transform: skewX(-10deg);
    z-index: 0;
}
.why-title h2 > span span {
    position: relative;
}
.why-title p {
    font-size: 18px;
    color: var(--Light-Primary-50);
}
.card-why {
    border-left: 0.5px solid var(--Light-Primary-50);
    padding-left: 32px;
}

.card-why_title {
    color: var(--Light-Primary-50);
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
}
.card-why_title span {
    color: #eb2813;
}
.card-why_content {
    color: var(--Light-Primary-50);
    font-size: 18px;
}
@media (max-width: 1260px) {
    .why-title h2 {
        width: 90%;
    }
}
@media (max-width: 991px) {
    .why .why_headline {
        display: block;
    }
    .why .why_headline a {
        width: auto;
    }
    .why-title h2 {
        font-size: 38px;
        line-height: 56px;
    }
    .why-title p {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .why-title h2 {
        font-size: 28px;
        line-height: 44px;
    }
}
@media (max-width: 575px) {
    .why {
        padding: 20px 10px;
        margin: 0 10px 30px;
    }
    .why .why_headline {
        margin-bottom: 32px;
    }
    .why-title h2 {
        font-size: 20px;
        line-height: 32px;
    }
    .why-title h2 > span::before {
        display: none;
    }
    .why-title h2 > span {
        padding: 0;
    }
    .card-why_title {
        font-size: 32px;
        margin-bottom: 4px;
    }
    .card-why_content {
        font-size: 16px;
    }
    .card-why {
        padding-left: 16px;
    }
}
