* {
    outline: none;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    touch-action: manipulation;
    box-sizing: border-box;
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.splide--slide {
    position: relative;
}

.splide__track {
    position: relative;
    overflow: hidden;
}

.splide__sr {
  display: none;
}

.splide__list {
    display: flex;
}

.splide__slide {
    flex-shrink: 0;
}

.splide__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    background-color: rgba(255,255,255, .5);
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    display: flex;
    z-index: 2;
}

.splide__arrow svg {
    margin: auto;
    width: 24px;
    height: 24px;
    fill: #095988;
}

.splide__arrow--prev {
    left: 30px;
    transform: scaleX(-1);
}

.splide__arrow--next {
    right: 30px;
}

.splide__pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 30px;
    gap: 10px;
    z-index: 2;
}

.splide__pagination li {
    display: flex;
}

.splide__pagination__page {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: #ccc;
    display: block;
}

.splide__pagination__page.is-active {
    background-color: #095988;
}

body {
    height: 100vh;
    font-weight: 400;
    background-color: #eeeeee;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.wrapper {
    min-width: 320px;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100vh;
}

.slider-item {
    height: 100vh;
    background: url(../img/slider-preloader.svg) 50% no-repeat;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}