.agb-introduction {
    padding: 24px 0;
}

.agb-introduction .slides .owl-stage {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.agb-introduction .slides .owl-item {
    padding: 4px;
    height: auto;
}

.agb-introduction .slides .owl-nav {
    position: absolute;
    bottom: -16px;
    left: 0;
}

.agb-introduction .slides .owl-prev,
.agb-introduction .slides .owl-next {
    font-size: 24px !important;
    width: 44px;
    border-radius: 50% !important;
}

.agb-introduction .slides.owl-carousel .owl-nav button.owl-prev,
.agb-introduction .slides.owl-carousel .owl-nav button.owl-next {
    padding: 4px !important;
}

.agb-introduction .slide {
    height: 100%;
}

.agb-introduction .row.introduction {
    align-items: center;
    height: 100%;
}

.agb-introduction .partners-wrapper,
.agb-introduction .investors-wrapper {
    display: flex;
    overflow: hidden;
}

.agb-introduction .partners-marquee,
.agb-introduction .investors-marquee {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 auto;
}

.agb-introduction .partners,
.agb-introduction .investors {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    animation: agb-introduction-scroll 16s linear 0s infinite;
}

.agb-introduction .partners-title,
.agb-introduction .investors-title {
    font-size: 16px;
    margin: 0 0 24px;
}

.agb-introduction .partners .partner,
.agb-introduction .investors .investor {
    flex: 0 0 auto;
    margin: 0 64px 0 0;
}

.agb-introduction .partner img,
.agb-introduction .investor img {
    width: 108px;
    height: 54px;
}

.agb-introduction .video {
    width: 100%;
    height: 360px;
}

.agb-introduction .video iframe {
    width: 100%;
    height: 100%;
}

.agb-introduction .image {
    width: 100%;
    height: 360px;
}

.agb-introduction .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.agb-introduction .list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.agb-introduction .list-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
    margin-bottom: 18px;
}

.agb-introduction .list-icon {
    flex: 0 0 auto;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 16px 0 0;
}

.agb-introduction .list-content {
    flex: 1 0 auto;
    width: 50%;
}

@keyframes agb-introduction-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 767px) {
    .agb-introduction .slides .owl-nav {
        bottom: -56px;
        width: 100%;
    }
}