@media (min-width: 1200px) {
    .slider-home,
    #slider,
    #slider .splide__track,
    #slider .splide__list,
    #slider .splide__slide,
    #slider .splide__slide img {
        height: 100%;
    }

    #slider .splide__slide img {
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .slider-home {
        margin: 0 !important;
    }
}

.slider-item {
    position: relative;
}

.slider-item img {
    width: 100%;
}

.slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 576px) {
    .slider-inner {
        padding: 30px 30px;
        align-items: start;
        justify-content: center;
    }
}

.slider-inner::after,
.hero-aside__item:not(.hero-aside__item--first)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
    border-radius: 8px;
    pointer-events: none;
}

.slider-inner > * {
    position: relative;
    z-index: 2;
}

.slider-inner .subtitle {
    letter-spacing: -0.84px;
    color: #FFF;
}

.slider-inner .btn {
    margin-top: 24px;
}

.slider-inner .subtitle {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .slider-inner .subtitle {
        text-align: center;
        width: 100%;
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
        margin-top: 0;
    }

    .slider-inner .btn {
        margin-top: 12px;
    }
}

@media (min-width: 576px) {
    .slider-inner .subtitle {
        max-width: 532px;
        font-size: 34px;
        line-height: 42px;
        font-weight: 600;
        margin-top: 24px;
    }
}

@media (min-width: 1200px) {
    .slider-inner .subtitle {
        font-size: 42px;
        line-height: 50px;
    }
}

.slider-inner-desc {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    max-width: 265px;
}

.slider-inner-desc p {
    line-height: 1.25;
}

#slider .splide__pagination {
    font-size: 0;
}

#slider .splide__pagination__page.is-active::after {
    background: var(--main);
}

#slider .splide__pagination__page::after {
    background: var(--main);
}

@media (max-width: 575px) {
    .splide__pagination__page.is-active circle {
        stroke: var(--main);
    }
}

@media (min-width: 576px) {
    #slider .splide__pagination__page.is-active::after {
        background: #fff;
    }

    #slider .splide__pagination__page::after {
        background: #fff;
    }
}

#slider .splide__pagination__page::before {
    border: 0;
}

#slider .splide__arrows {
    top: auto;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    display: flex;
    width: auto;
    gap: 8px;
}

@media (min-width: 1200px) {
    #slider .splide__arrows {
        right: 32px;
        bottom: 40px;
    }
}

#slider .splide__arrows button,
#slider .splide__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background-color: #fff;
    border-radius: 50%;
    transition: background-color .2s ease, border .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#slider .splide__arrows button:hover,
#slider .splide__arrow:hover {
    background-color: var(--main);
    border-color: var(--main);
}

#slider .splide__arrow {
    top: auto;
    bottom: auto;
    position: relative;
    right: auto;
    left: auto;
}

#slider .splide__arrow::before {
    display: none;
}

#slider .splide__arrow svg {
    display: block;
}

#slider .splide__arrow path,
#slider .splide__arrows button path {
    transition: stroke .2s ease, fill .2s ease;
}

#slider .splide__arrow:hover svg path,
#slider .splide__arrows button:hover svg path {
    stroke: #fff;
}

#slider .splide__arrows button.hero-play:hover svg path {
    fill: #fff;
}

#slider .splide__pagination {
    bottom: 16px;
}

@media (min-width: 1200px) {
    #slider .splide__pagination {
        bottom: 40px;
    }
}

@media (min-width: 576px) {
    .slider-inner {
        padding: 30px 40px;
    }

    .slider-inner-desc {
        font-size: 34px;
        max-width: 400px;
    }
}

@media (min-width: 992px) {
    .slider-inner {
        padding: 16px;
    }
}

@media (min-width: 1200px) {
    .slider-inner {
        padding: 30px 80px;
    }

    .slider-inner-desc {
        font-size: 42px;
        max-width: 525px;
    }
}

#slider {
    border-radius: 8px;
    overflow: hidden;
}

#slider .splide__pagination__page {
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
}

#slider .splide__pagination__page svg {
    width: 40px;
    height: 40px;
    display: block;
}

#slider .splide__pagination__page circle.splide-progress{
    animation: none;
}

#slider.is-animating .splide__pagination__page.is-active circle.splide-progress{
    animation: splideProgress var(--splide-interval, 5000ms) linear forwards;
}

#slider.is-paused .splide__pagination__page.is-active circle.splide-progress{
    animation-play-state: paused !important;
}

@keyframes splideProgress {
    from { stroke-dashoffset: var(--splide-circumference); }
    to   { stroke-dashoffset: 0; }
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-aside__item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.hero-aside__item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 100%;
    z-index: 2;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 16px;
}

@media (min-width: 576px) {
    .hero-aside__item-content {
        padding: 40px;
    }
}

@media (min-width: 991px) {
    .hero-aside__item-content {
        padding: 16px;
    }
}

@media (min-width: 1200px) {
    .hero-aside__item-content {
        padding: 32px;
    }
}

.hero-aside__item-content--tag {
    top: 0;
    justify-content: space-between;
}

.hero-aside__item-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

@media (min-width: 576px) {
    .hero-aside__item-title {
        font-size: 28px;
        line-height: 40px;
        font-weight: 600;
    }
}

@media (min-width: 992px) {
    .hero-aside__item-title {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (min-width: 1200px) {
    .hero-aside__item--first .hero-aside__item-title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (min-width: 1200px) {
    .hero-aside__item--url button {
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease, background-color .3s ease, color .3s ease;
    }

    .hero-aside__item--url .hero-aside__item-content {
        transform: translateY(68px);
        transition: transform .3s ease;
    }
}

.hero-aside__item--url:hover .hero-aside__item-content {
    transform: translateY(0);
}

.hero-aside__item--url:hover button {
    opacity: 1;
    visibility: visible;
}

.home-icons {
    padding-top: 24px;
}

@media (min-width: 992px) {
    .home-icons {
        padding-top: 48px;
    }
}

@media (min-width: 1200px) {
    .home-icons {
        padding-top: 64px;
    }
}

.home-icons__wrapper {
    justify-content: center;
    margin: 0;
}

@media (min-width: 992px) {
    .home-icons__wrapper {
        gap: 16px;
        justify-content: space-between;
    }
}

.home-icon {
    font-size: 14px;
    gap: 12px;
    font-weight: 600;
    display: inline-flex;
    padding: 20px 20px 0;
}


@media (min-width: 992px) {
    .home-icon {
        padding: 0;
    }
}

.home-icon svg {
    flex-shrink: 0;
}

/*@media (min-width: 576px) {
    .home-icon {
        font-size: 14px;
        width: auto;
    }

    .home-icon span {
        width: 168px;
    }
}*/

/*@media (min-width: 768px) {
    .home-icon span {
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .home-icon span {
        width: 164px;
    }
}

@media (min-width: 1230px) {
    .home-icon span {
        width: 180px;
    }
}*/

.hero-section {
    margin-top: 10px;
}

@media (min-width: 992px) {
    .hero-section {
        margin-top: 24px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        margin-top: 32px;
    }
}


@media (max-width: 575px) {
    .hero-section {
        margin-bottom: 64px;
    }
}



.hero-aside__item {
    border-radius: 8px;
    position: relative;
}

@media (max-width: 991px) {
    .hero-aside {
        margin-top: 20px;
    }
}

.home-about {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seotext {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .seotext {
        padding-left: 20px;
        padding-right: 20px;
    }

    .seotext-right {
        padding-top: 36px;
    }
}

@media (min-width: 992px) {
    .seotext {
        padding-left: 40px;
        padding-right: 40px;
    }

    .seotext-right {
        padding-top: 36px;
    }
}

.baner-item--bigger {
    overflow: hidden;
    position: relative;
    box-shadow: 0;
    transition: box-shadow .2s ease;
}

.baner-item--bigger:hover {
    box-shadow: 0 -4px 24px 12px rgba(0, 0, 0, 0.20);
}

.baner-item--bigger::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 3;
    border-radius: 8px;
}

.baner-item img {
    position: relative;
    z-index: 2;
}

.baner-item-flag {
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 30px;
    background: #fff;
    display: none;
    padding: 6px 8px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1px;
}

.baner-item-desc {
    position: absolute;
    z-index: 5;
}

.baner-item--bigger .h1 {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
}

.baner-item--bigger .subtitle {
    color: #fff;
    display: none;
}

.baner-item--bigger .baner-item__content {
    color: #FFF;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

@media (min-width: 1200px) {
    .baner-item--bigger .baner-item__content {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: .176px;
    }
}

@media (max-width: 575px) {
    .baner-item--bigger .baner-item__content {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (min-width: 440px) {

    .baner-item--bigger .subtitle,
    .baner-item-flag {
        display: block;
    }
}

@media (min-width: 480px) {
    .baner-item .h4 {
        font-size: 4vw;
    }
}

.baner-item--bigger .baner-item-desc {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px;
}

@media (min-width: 576px) {
    .baner-item--bigger .h1 {
        font-size: 22px;
        line-height: 28px;
    }

    .baner-item .h4 {
        font-size: 5vw;
    }

    .baner-item--bigger .baner-item-desc {
        padding: 40px;
    }
}

@media (min-width: 768px) {
    .baner-item .h4 {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .baner-item .btn--sec {
        display: none;
    }

    .baner-item-desc {
        bottom: 15px;
        left: 15px;
    }
}

@media (min-width: 1200px) {
    .baner-item .btn--sec {
        display: block;
    }

    .baner-item-desc {
        bottom: 30px;
        left: 30px;
    }

    .baner-item--bigger .baner-item-desc {
        padding: 48px;
    }

    .baner-item--bigger .h1 {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (min-width: 1360px) {
    .baner-item .h4 {
        font-size: 18px;
    }
}

@media (max-width: 359px) {
    .col-last-seen {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    #slider .splide__arrows {
        display: none;
    }

    #slider .splide__pagination {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
    }

    .categories-carousel .splide__arrows,
    .products-carousel .splide__arrows {
        display: none;
    }

    .categories-container {
        padding: 0;
    }

    .baner-item--bigger .h1 {
        margin-bottom: 16px !important;
    }
}
