/* ====================================================================== banner ====================================================================== */
.banner-block {
    height: 100vh;
    position: relative;
    background: url(../images/banner.webp);
    background-size: cover;
    overflow: hidden;
}

.banner-block .container-l {
    position: relative;
    height: 100vh;
}

.slogan-block {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
}

.slogan-main {
    font-size: 10rem;
}

.counter-group {
    display: flex;
    text-shadow: #00000050 3px 3px 6px;
}

.counter-item {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 2.6rem;
    font-weight: bold;
    padding: 0 4rem;
}

.counter-item:first-child {
    padding-left: 0rem;
}

.counter-item:after {
    content: "";
    position: absolute;
    width: 0.2rem;
    height: 2.5rem;
    background: #ffffff;
    left: 0rem;
}

.counter-item:first-child::after {
    display: none;
}

.timer {
    font-family: Exo;
    font-size: 6.2rem;
    font-weight: bold;
    color: var(--second-color);
    padding-left: 1.5rem;
}

.counter-plus {
    font-family: Exo;
    font-size: 6.2rem;
    font-weight: bold;
    color: var(--second-color);
}

.work-block {
    position: relative;
    overflow: hidden;
    padding-bottom: 18rem;
}

.float-1 {
    width: 700px;
    height: 700px;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
    transform: translatey(0px);
    animation: float-1 4s ease-in-out infinite;
    position: absolute;
    right: -10rem;
    top: -10rem;
    z-index: -2;
}

@keyframes float-1 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-25px);
    }

    100% {
        transform: translatey(0px);
    }
}

.float-2 {
    width: 300px;
    height: 300px;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
    transform: translatey(0px);
    animation: float-2 4s ease-in-out infinite;
    position: absolute;
    left: 2rem;
    bottom: -2rem;
    z-index: -2;
}

@keyframes float-2 {
    0% {
        transform: translatey(-30px);
    }

    50% {
        transform: translatey(0px);
    }

    100% {
        transform: translatey(-30px);
    }
}

.card-item-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 584px;
}

.card-item-sp-content {
    padding: 12rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-item-sp img {
    width: 16rem;
    margin-bottom: 2.5rem;
}

.team-block {
    background-image: url(../images/night-starry-sky-background.webp);
    height: 45rem;
    background-size: cover;
    z-index: -10;
    position: relative;
}

.team-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8rem;
}

.team-item {
    width: 22.5%;
}

.team-item img {
    background: #fff;
}

.member-name {
    font-size: 2.4rem;
    font-weight: bold;
}

.member-info {
    margin: 1.5rem 0 0.5rem;
    padding-left: 5rem;
    position: relative;
}

.member-info:before {
    content: "";
    position: absolute;
    height: 15rem;
    width: 2px;
    background-color: var(--first-color);
    left: 2rem;
    top: -50px;
}

.team-bk {
    background-image: url(../images/team-bk.webp);
    position: relative;
    background-size: cover;
    overflow: hidden;
    z-index: -11;
    height: 50rem;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.slogan-sec span {
    font-size: 3.2rem;
}

/* ====================================================================== RWD ====================================================================== */
@media(max-width:1700px) {
    .team-bk {
        height: 40rem;
    }
}

@media(max-width:1450px) {

    /*======================================== 1450 ========================================*/
    .animated-title span {
        font-size: 8.5rem;
    }

    .slogan-sec {
        font-size: 2.8rem;
    }

    .slogan-sec span {
        font-size: 2.8rem;
    }

    .team-bk {
        height: 35rem;
    }
}

@media(max-width:1360px) {
    .card-num {
        font-size: 12rem;
    }

    .title.sp-5 h1 {
        background: transparent;
    }

    .card-item h2 {
        font-size: 2.6rem;
    }

    .member-info {
        padding: 0;
    }

    .member-info:before {
        display: none;
    }

    .team-group {
        align-items: baseline;
    }

}

@media(max-width:1200px) {

    /*======================================== 1200 ========================================*/
    .navbar-toggler {
        border-radius: 0;
        padding: 0.75rem 1.5rem;
        background: #fff;
    }

    .slogan-block {
        width: 100%;
        text-align: center;
    }

    .slogan-sec {
        font-size: 2.4rem;
    }

    .slogan-sec span {
        font-size: 2.4rem;
    }

    .counter-group {
        justify-content: center;
    }

    .card-num {
        font-size: 10rem;
        left: 1.5rem;
    }

    .card-item-sp img {
        width: 12rem;
        margin-bottom: 2.5rem;
    }

    .card-content p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        box-sizing: border-box;
    }

    .card-item-sp-content {
        padding: 8rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-item-sp {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .team-bk {
        height: 30rem;
    }

}

@media(max-width:1100px) {}

@media(max-width:992px) {
    .banner-block {
        aspect-ratio: 1 / 1;
        height: auto;
        background: url(../images/banner-mob.webp);
        background-size: cover;
    }

    .animated-title span {
        font-size: 6.5rem;
    }

    .scroll-block {
        display: none;
    }

    .counter-item:first-child {
        padding-left: 4rem;
    }

    .banner-block .container-l {
        position: relative;
        height: -webkit-fill-available;
    }

    .card-item h2 {
        font-size: 2.2rem;
    }

    .card-item-sp img {
        width: 10rem;
        margin-bottom: 2.5rem;
    }

    .card-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .team-group {
        flex-wrap: wrap;
    }

    .team-item {
        width: 47.5%;
        margin-bottom: 2.5rem;
    }

    .team-bk {
        display: none;
    }

    .team-block {
        height: auto;

    }

    .team-item {
        width: 47.5%;
        margin-bottom: 2.5rem;
        color: #fff;
    }

    .team-block {
        height: auto;
        padding: 0 0 4rem 0;
    }
}

@media(max-width:768px) {


    .animated-title span {
        font-size: 5.5rem;
    }

    .slogan-sec {
        font-size: 2.0rem;
    }

    .slogan-sec span {
        font-size: 2rem;
    }

    .slogan-sec {
        margin: 1.25rem 0 0;
    }

    .counter-group {
        align-items: end;
    }

    .counter-item.text-orbitron {
        flex-direction: column-reverse;
        align-items: center;
    }

    .counter-item {
        padding: 0 2.5rem;
    }

    .timer {
        font-size: 5rem;
        color: var(--second-color);
        padding-left: 0;
    }

    .counter-item h4 {
        margin-top: 0.5rem;
    }

    .card-item {
        width: 47.5% !important;
    }

    .float-1 {
        width: 500px;
        height: 500px;
    }

    .title h1 {
        margin-top: 6rem;
        font-size: 4.2rem;
    }

}

@media(max-width:576px) {
    a.navbar-brand img {
        width: 22.5rem;
    }

    .animated-title span {
        font-size: 3.8rem;
    }

    .animated-word:after {
        height: 2rem;
        bottom: 25px;
    }

    .slogan-sec {
        margin: -2rem;
        font-size: 1.6rem;
        background: transparent;
        color: #fff;
    }

    .timer {
        font-size: 3.6rem;
        color: var(--second-color);
        padding-left: 0;
    }

    .counter-plus {
        font-family: Exo;
        font-size: 4.2rem;
        font-weight: bold;
        color: var(--second-color);
    }

    .card-item {
        width: 100% !important;
    }

    .card-group {
        flex-direction: column;
    }

    .card-item-sp-content img {
        display: none;
    }

    .card-item-sp {
        margin: 4rem 0 0 0;
    }

    .card-item-sp-content {
        padding: 3rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .more {
        margin: 0;
    }

    .team-item {
        width: 100%;
    }

    .sp-1 {
        padding: 0rem !important;
    }

}

@media(max-width:480px) {
    .banner-block {
        aspect-ratio: 1 / 1.25 !important;
    }

    .navbar {
        margin-top: 2.5rem;
    }

    a.navbar-brand img {
        width: 18rem;
    }

    .animated-title span {
        font-size: 2.8rem;
    }

    .slogan-main {
        font-size: inherit;
    }

    .animated-word:after {
        height: 2rem;
        bottom: -5px;
    }

    .slogan-sec {
        margin: 0;
    }

    .counter_wrapper {
        padding-top: 0;
        padding-bottom: 0;

    }

    .counter-item h4 {
        font-size: 1.6rem;
    }

}

@media(max-width:420px) {
    .counter_wrapper {

        display: none;
    }
}

@media(max-width:350px) {
    .animated-title span {
        font-size: 2.4rem;
    }
}