/* page-banner */
.page-banner {
    height: 40.1250rem;
    padding: 0 var(--section);
    background: #EEEEEE;
}

.page-banner .section-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner .about-nav {
    gap: 1.2500rem;
    position: absolute;
    bottom: 0;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    margin-left: 0;
}

.page-banner .section-bg-overlay {
    background-color: transparent;
    background-image: linear-gradient(60deg, #450903 0%, #000000 100%);
    opacity: 0.79;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.page-banner h1 {
    font-size: 3.3125rem;
    color: #fff;
    text-align: center;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.text-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    transition: width 1s ease-in-out;
    position: relative;
}

.page-banner h1:before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: -4px;
    width: 2px;
    height: 100%;
    background-color: #fff;
    animation: blink-cursor 2.5s step-end infinite;
}

@keyframes blink-cursor {
    50% {
        background-color: transparent;
    }
}

.page-banner .about-nav a {
    display: block;
    color: #2C2C2C;
    background-color: #FFFFFFB3;
    border-radius: 0.6250rem 0.6250rem 0px 0px;
    padding: 1rem 2.3125rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    text-align: center
}

.page-banner .about-nav a:hover,
.page-banner .about-nav .active a {
    color: #FFFFFF;
    background-color: transparent;
    background-image: linear-gradient(180deg, #E05252 0%, #BB3434 100%);
}

.page-banner .about-nav .about-item {
    flex: auto;
}

.page-banner .page-banner__content {
    max-width: 30.9375rem;
}

.page-banner .page-banner__content h2 {
    font-size: 50px;
    color: #E12E2D;
    margin-bottom: 1rem;
}

.page-banner .page-banner__content p {
    font-size: 1.0625rem;
}

.page-banner .page-banner__content strong {
    color: #E12E2D;
}

/* End page-banner */
/* profile-iframe */
.profile-iframe {
    padding: 7rem 7rem 5rem;
    position: relative;
    text-align: center
}

.profile-iframe .btn__primary {
    margin: 2.5rem 0 0
}

.profile-iframe>img {
    position: absolute;
    width: 100%;
    height: 10rem;
    top: 0;
    left: 0;
    display: block;
    object-fit: contain;
}

.profile-iframe .box-iframe+.box-iframe {
    margin-top: 5rem
}

/* End profile-iframe */
@media screen and (max-width: 767.98px) {
    .profile-iframe {
        padding: var(--50) 1rem;
    }

    .profile-iframe .video-fit {
        padding-top: 120%
    }

    .page-banner {
        height: 29.1250rem;
        padding-top: var(--50);
        text-align: center;
    }

    .page-banner .section-content {
        align-items: flex-start
    }

    .page-banner .page-banner__content h2 {
        font-size: var(--30)
    }

    .profile-iframe .box-iframe+.box-iframe {
        margin-top: 3rem
    }
}