/** Slider   *************************************/

.section-hero {
    margin-top: -145px;
}

.hero-slide {
    position: relative;
}
.hero-slide img {
    width: 100%;
}

.section-hero .swiper-button-prev::after,
.section-hero .swiper-button-next::after {
    display: none;
}

.section-hero .swiper-button-next {
    left: 80px;
}

.section-hero .swiper-button-prev {
    right: 80px;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 21%;
    transform: translateY(-50%);
}

.hero-slide-title {
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    line-height: normal;
}

.hero-slide-des {
    font-family: MagnetoBold;
    font-size: 30px;
    color: rgba(154, 166, 178, 1);
    margin-bottom: 38px;
}


.hero-slide-content .websima-button {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 8px;
}

.hero-slide-content .websima-button:hover i::before {
    color: #fff;
}

.websima-button i {
    transition: 0.3s;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -124px;
    z-index: 2;
    position: relative;
    width: 197px;
    height: 197px;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 30.03%, rgba(188, 204, 220, 0.5) 100%);
    backdrop-filter: blur(15px);
    margin-right: auto;
    border:1px solid #fff
}

.border-logo .border-logo-image {
    width: 100%;
    animation: spin 15s linear infinite;
    border-radius: 50%;
}

.hero-logo-image {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 88px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-swiper .swiper-button-next i::before,
.hero-swiper .swiper-button-prev i::before {
    color: #fff;
}


.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    font-size: 22px;
    top: calc(50% + 50px);
}


@media (max-width: 991px) {

    .hero-logo {
        margin-top: -87px;
        width: 152px;
        height: 152px;
            margin-left: 17px;
    }
    .hero-logo-image{
        width: 72px;
    }

    .hero-slide-content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-slide img {
        object-fit: cover;
        height: 100%;
        flex: 1;
    }

    .hero-slide-content>div {
        padding: 0 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .hero-slide-title {
        font-size: 28px;
    }

    .hero-slide-des {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .section-hero {
        margin-top: -127px;
    }

    .hero-slide,
    .section-hero {
        min-height: 50vh;
    }
    .hero-slide {
        display: flex;
        flex-direction: column;
    }
    .slide-image_holder {
        height: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .section-hero .swiper-button-next {
        left: 24px;
    }

    .section-hero .swiper-button-prev {
        right: 24px;
    }
}