/* Logo Bar Section
 * - Contains styles for in general content and in banner.  
 */

.logo-bar-wrapper {
    align-items: center;
    margin: auto;
    overflow: hidden;
}

.logo-left-content {
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0.84px;
    flex-shrink: 0;
    max-width: 400px;
    order: 1;
}

.logo-left-content p {
    margin-bottom: 0;
}

.logo-bar {
    margin-right: unset;
    overflow: hidden;
    order: 2;
    width: auto;
}

.logo-bar .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto !important;
    margin-left: 40px;
}

.logo-bar .logo-image {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-bar .logo-image:hover {
    opacity: 1; /* do something funky */
}

.enterprise .logo-bar .swiper-slide:not(:last-child):after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 1px;
    height: calc(100% + 80px);
    background: rgba(255, 255, 255, 0.2);
}

.page-banner .logo-bar .swiper-slide:not(:last-child):after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 1px;
    height: calc(100% + 80px);
    background: rgba(255, 255, 255, 0.2);
}

/* Banner context  */
.page-banner .logo-bar-wrapper {
    display: flex;
    justify-content: flex-end;
}

.page-banner .logo-bar {
    padding: 0;
    position: relative;
    margin-left: 0;
}
.page-banner .logo-bar::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}
.page-banner .logo-bar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-banner__left-content p {
    margin: 0;
}

.page-banner .logo-bar .swiper {
    width: 100%;
}

.page-banner .logo-bar .swiper-wrapper {
    display: flex;
    width: 100%;
    min-height: 80px;
    justify-content: flex-end;
}
.page-banner .logo-bar .swiper-slide {
    width: auto;
}

/* First slide left vertical line */

.page-banner .logo-bar .swiper-slide {
    position: relative;
}

.page-banner .logo-bar .logo-image {
    max-height: 62px;
    object-fit: contain;
    width: auto;
}

.enterprise .logo-bar {
    padding: 20px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.page-banner .logo-bar {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise .logo-bar:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.enterprise .logo-bar:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 991px) {
    .logo-bar-section {
        padding: 40px 0;
    }

    .logo-bar .logo-image {
        max-height: 60px;
    }

    .page-banner .logo-bar .logo-image {
        max-height: 40px;
    }

    .logo-left-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .logo-bar-section {
        padding: 30px 0;
    }

    .logo-bar .logo-image {
        max-height: 50px;
    }

    .page-banner .logo-bar .logo-image {
        max-height: 35px;
    }
}
