section.section-banner {
    margin-bottom: 100px;
}

.section-banner .container--custom {
    display: flex;
    justify-content: flex-end;
}

.section-banner .banner {
    position: relative;
    height: calc(70vh - 80px);
}

.banner .banner__info {
    position: absolute;
    bottom: 0;
    width: 100%;
    cursor: initial;
}

.banner .banner-wrapper {
    margin: 0 0 100px 0;
    color: var(--c-main-white);
    position: relative;
    z-index: 20;
}

.banner .banner-wrapper--row {
    display: flex;
    justify-content: space-evenly;
}

.banner .banner__logo {
    max-height: 80px;
    width: auto;
}


.banner-title-wrap {
    overflow: hidden;
}

.container .banner__title {
    margin: 0 0 24px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
}

.swiper--animated .banner__title {
    opacity: 1;
    transform: translateY(0);
}

.banner-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0 0 32px 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.swiper--animated .banner-tags {
    opacity: 1;
}

.banner-tags__item {
    padding: 4px 16px;
    border-radius: 10px;
    background: rgba(103, 182, 208, 0.01);
    box-shadow: inset 0px -80px 65px rgba(212, 212, 212, 0.2), inset 0px 1px 40px rgba(226, 226, 226, 0.2);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

.banner__button {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.swiper--animated .banner__button {
    opacity: 1;
}
.swiper-custom-nav.nav--next.nav--banner{
	right: 30px;
    top: 50%;
	transform: translate(0, -50%);
}
.swiper-custom-nav.nav--prev.nav--banner{
	left: 30px;
    top: 50%;
	transform: translate(0, -50%) rotate(180deg);
}
.swiper-custom-nav.nav--prev:hover, .swiper-button-prev:hover {
    transform: translate(0, -50%) rotate(180deg);
}

@media (max-width: 1919px) {
    section.section-banner {
        margin-bottom: 80px;
    }

    .banner .banner-wrapper {
        margin: 0 0 80px 0;
    }
}

@media (max-width: 1439px) {
    section.section-banner {
        margin-bottom: 50px;
    }

    .section-banner .banner {
        height: calc(70vh - 64px);
    }

    .banner .banner-wrapper {
        margin: 0 0 50px 0;
    }
}

@media (max-width: 1023px) {
    .banner .banner-wrapper {
        margin: 0 0 100px 0;
    }
}

@media (max-width: 767px) {
    section.section-banner {
        margin-bottom: 0;
    }

    .banner .button.banner__button {
        width: 100%;
    }

    .banner .banner-wrapper {
        justify-content: unset;
    }

    .banner .banner__logo {
        max-width: 80%;
        max-height: 100px;
    }
}

.swiper.custom--cursor-off{
    cursor: unset;
}

.swiper.custom--cursor-off .swiper-custom__cursor{
    display: none;
}