.brand-slider-container:before {
    content: '';
    width: 100%;
    height: 30%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, .4));
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.brand-slider-container:after {
    content: '';
    width: 100%;
    height: 15%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, .4));
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.brand-slider-container {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.brand-slide-container {
    overflow: hidden;
}

.brand-slider-title {
    font-family: HyundaiHeadMedium, sans-serif;
    font-size: 36px;
    text-align: center;
    font-weight: 400;
    margin-top: 70px;
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 1;
    color: white;
    width: 100%;
    transform: translateX(-50%);
}

.brand-slide {
    display: flex;
}

.brand-slide-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.brand-hotspot {
    opacity: 0;
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: #00aad2;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.4s ease-in;
}

.brand-hotspot.show {
    opacity: 1;
}

.brand-hotspot-content {
    position: absolute;
    width: 260px;
    padding: 30px;
    background-color: white;
    z-index: 1;
}

.brand-hotspot-content-section {
    display: flex;
    justify-content: space-between;
}

.brand-hotspot-content-title {
    font-family: HyundaiHeadMedium, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
}

.brand-hotspot-content-close {
    cursor: pointer;
    fill: #002C5F;
}

.brand-hotspot-content-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin: 20px 0;
}

.brand-hotspot-content-cta {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-family: HyundaiTextMedium, sans-serif;
    color: #002c5f;
}

.brand-hotspot-content-cta-svg {
    width: 28px;
    transition: all 0.5s ease-out;
    fill: #002C5F;
}

.brand-hotspot-content-cta:hover .brand-hotspot-content-cta-svg {
    width: 32px;
}

.prev {
    position: absolute;
    top: 45%;
    left: 0px;
    z-index: 2;
    cursor: pointer;
    fill: #ffffff;
}

.next {
    position: absolute;
    top: 45%;
    right: 0px;
    z-index: 2;
    cursor: pointer;
    fill: #ffffff;
}

.brand-slider-pagination {
    background-color: #767676;
    height: 2px;
    margin-left: 0.375rem;
    margin-right: 0.375rem;
    width: 40px;
    border: none;
    padding: 0;
    transition: all .2s ease-out;
    cursor: pointer;
}

.brand-slider-pagination.active,
.brand-slider-pagination:hover {
    height: 4px;
    background-color: #ffffff;
}

.brand-slider-pagination-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@keyframes  pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    45% {
        transform: scale(1.85);
        opacity: 0;
    }
}

@keyframes  stop-pulsate {
    from {
        opacity: 1;
    }

    to {
        transform: scale(3);
        opacity: 0;
    }
}

.brand-hotspot-ring {
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    transform-origin: 50% 50%;
    border-radius: 50%;
    border: 2px solid #00aad2;
    opacity: 0;
    animation: pulsate 2s ease-out infinite;
}

@media  screen and (max-width: 1023px) {

    .brand-hotspot,
    .brand-hotspot-ring {
        width: 25px;
        height: 25px;
    }
}

@media  screen and (max-width: 962px) {
    .brand-slider-container {
        overflow: visible;
        margin-bottom: 70px;
    }

    .brand-slider-title {
        margin-top: 50px;
    }

    .brand-hotspot,
    .brand-hotspot-ring {
        width: 20px;
        height: 20px;
    }

    .brand-hotspot-content {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        position: relative;
        margin-top: 60px;
    }

    .prev,
    .next {
        width: 60px;
        height: 60px;
        fill: #002c5f;
        top: calc(100vw * 0.5);
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    .brand-hotspots {
        height: calc(100vw * 0.5);
        position: absolute;
        top: 0;
        width: 100%;
    }

    .brand-hotspot-content-close {
        display: none;
    }

    .brand-hotspot-content-description {
        font-size: 16px;
    }

    .brand-slider-pagination-container {
        bottom: auto;
        top: calc(100vw * 0.5 _ 15px);
    }

    .brand-slider-pagination {
        background-color: #e5e5e5;
    }

    .brand-slider-pagination.active,
    .brand-slider-pagination:hover {
        background-color: #002c5f;
    }

    .brand-slider-container:after {
        display: none;
    }

    .brand-slider-container:before {
        height: calc(100vw * 0.15);
    }
}

@media  screen and (max-width: 768px) {
    .brand-slider-title {
        margin-top: 20px;
        font-size: 22px;
    }
}

@media  screen and (max-width: 540px) {

    .brand-hotspot,
    .brand-hotspot-ring {
        width: 15px;
        height: 15px;
    }
}

.hidden {
    display: none !important;
}