.about-brand {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-brand-intro {
    position: relative;
    aspect-ratio: 36 / 17;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.about-brand-intro__bg {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.about-brand-intro__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.about-brand-intro__cover {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, #FFF 69.4%);
}

.about-brand-intro__content {
    width: 50%;
    margin-left: auto;
}

.about-brand-intro__title {
    margin-bottom: 60px;
}

.about-brand-intro__desc {
    white-space: pre-line;
}


.about-brand-swiper {
    max-width: 1440px;
    margin: 0px auto;
    position: relative;
    padding: 0 120px;
}

.about-brand-swiper__body {
    overflow-x: clip;
    overflow-y: visible;
}

.about-brand-swiper__prev,
.about-brand-swiper__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;

}
.about-brand-swiper__prev-svg,
.about-brand-swiper__next-svg {
    width: 100%;
    height: 100%;
    color: var(--color-gray-5);
    transition: color 0.3s;

}
.about-brand-swiper__prev-svg:hover,
.about-brand-swiper__next-svg:hover {
    color: var(--color-primary-1);
}

.about-brand-swiper__prev {
    left: 44px;
}

.about-brand-swiper__next {
    right: 44px;
}

.about-brand-swiper-card {
    padding: 31px 22px;
    border-radius: 10px;
    background-color: white;
    transition: background-color 0.3s, box-shadow 0.3s;

}
.about-brand-swiper-card:hover {
    background-color: var(--color-secondary-3);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.10);
}
.about-brand-swiper-card:hover > .deco > div {
    background-color: white;
}

.about-brand-swiper-card__deco {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}
.about-brand-swiper-card__deco-circle {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-gray-1);
    transition: background-color 0.3s;
}

.about-brand-swiper-card__deco-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-gray-1);
    transition: background-color 0.3s;
}

.about-brand-swiper-card__img-container {
    max-width: 120px;
    aspect-ratio: 1;
    margin-bottom: 24px;
}
.about-brand-swiper-card__img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-brand-swiper-card__title{
    color: var(--color-primary-1);
}



@media screen and (width < 1248px) {
    .about-brand-intro__content {
        width: 40%;
    }
}

@media screen and (width < 1024px) {
    .about-brand-intro {
        aspect-ratio: 16 / 9;
    }

    .about-brand-swiper {
        padding: 0 74px;
    }

    .about-brand-swiper__prev,
    .about-brand-swiper__next {
        width: 40px;
        height: 40px;
    }

    .about-brand-swiper__prev {
        left: 24px;
    }

    .about-brand-swiper__next {
        right: 24px;
    }
}

@media screen and (width < 768px) {
    .about-brand {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .about-brand-intro {
        margin-bottom: 40px;
        aspect-ratio: 3 / 2;
    }
    .about-brand-intro__title {
        margin-bottom: 40px;
    }
}

@media screen and (width < 576px) {
    .about-brand-intro {
        aspect-ratio: auto;
    }
    .about-brand-intro__bg-img {
        object-fit: cover;
    }
    .about-brand-intro__cover {
        background: rgba(255, 255, 255, 0.8);
    }
    .about-brand-intro__content {
        padding-top: 80px;
        padding-bottom: 80px;
        width: 100%;
    }
    .about-brand-swiper {
        padding: 0 52px;
    }
    .about-brand-swiper__prev,
    .about-brand-swiper__next {
        width: 20px;
        height: 20px;
    }
}