.sliders-container {
    position: relative;
}

.hero-slider-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;

    .background-image {
        position: absolute;
        display: block;
        top: 0;
        width: 100%;
        height: 100%;

        .image {
            position: absolute;
            display: block;
            top: 0;
            width: 100%;
            height: 100%;

            .img {
                position: absolute;
                display: block;
                top: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .container {
        &.header {
            position: absolute;
            top: clamp(2.778rem, 1.81rem + 4.839vi, 6.111rem);
            z-index: 10;

            .headline {
                color: #FFF;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(2.778rem, 1.971rem + 4.032vi, 5.556rem);
                font-style: normal;
                font-weight: 800;
                line-height: 1.1;
                text-transform: capitalize;
                margin: 0 auto;
            }
        }
    }

	.swiper-wrapper {
		align-items: stretch;

		.swiper-slide {
			padding-top: clamp(13.889rem, 11.308rem + 12.903vi, 22.778rem);
			padding-bottom: 275px;
			min-height: clamp(38.889rem, 37.276rem + 8.065vi, 44.444rem);
			overflow: hidden;
			height: auto;

			&:not(:last-child) {
				width: min(17.5rem + 26.25*((100vw - 20rem) / 28), 43.75rem);

				@media (min-width: 768px) {
					width: min(38.75rem + 64.375*((100vw - 48rem) / 72), 103.125rem);
				}
			}

			&.swiper-slide-active {
				.container {
					opacity: 1;
				}
			}
		}
	}

    .container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(1.111rem, 0.789rem + 1.613vi, 2.222rem);
        z-index: 2;
        max-width: 1450px;
		opacity: 0;
		transition: all .5s ease-in-out;

        .text-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
            max-width: clamp(16.667rem, 6.821rem + 23.077vi, 27.333rem);

            .title {
                padding: 0;
                color: #FFF;
                font-family: "League Spartan";
                font-size: clamp(2.125rem, 1.865rem + 1.154vi, 3.25rem);
                font-style: normal;
                font-weight: 800;
                line-height: 1.1;
                text-transform: capitalize;
                margin: 0;
            }

            .text {
                align-self: stretch;
                color: #FFF;
                font-family: Dosis;
                font-size: 18px;
                font-style: normal;
                font-weight: 500;
                line-height: 1.4;
                margin: 0;
            }

            .button {
                padding: 0;
            }
        }
    }

	.swiper-controls-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: grid;
		grid-template-columns: min(17.5rem + 26.25*((100vw - 20rem) / 28), 43.75rem) 1fr;
		pointer-events: none;

		@media (min-width: 768px) {
			align-items: center;
			grid-template-columns: min(38.75rem + 64.375*((100vw - 48rem) / 72), 103.125rem) 1fr;
			margin: auto;
		}

		.swiper-controls {
			display: flex;
			z-index: 1;
			align-items: center;
			gap: min(0.625rem + 0.3125*((100vw - 20rem) / 100), .9375rem);
			align-items: end;
			justify-content: right;
			padding-right: min(1.25rem + 0.625*((100vw - 20rem) / 28), 1.875rem);
			padding-bottom: min(1.25rem + 0.625*((100vw - 20rem) / 28), 1.875rem);

			@media (min-width: 768px) {
				grid-column: 2;
				justify-content: center;
				padding: 0;
			}

			.prev,
			.next {
				width: min(2.25rem + 0.75*((100vw - 20rem) / 100), 3rem);
				height: min(2.25rem + 0.75*((100vw - 20rem) / 100), 3rem);
				border: 1px solid #ffffff80;
				display: grid;
				place-content: center;
				pointer-events: all;

				@media (min-width: 768px) {
					border-width: 2px;
				}

				&:not(.swiper-button-disabled) {
					cursor: pointer;
					border-color: #ffffffbf;

					&:hover {
						svg {
							color: #258CCF;
						}
					}

					svg {
						color: #FFFFFF;
					}
				}

				svg {
					color: rgba(255, 255, 255, .5);
					fill: transparent;
					width: clamp(0.438rem, 0.412rem + 0.125vi, 0.563rem);
				}
			}

			.prev {
				transform: rotate(180deg);
			}
		}
	}
}

