* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

*,
*:focus,
*:hover {
    outline: none;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid transparent;
    background: #ECECEC;
    background-clip: content-box;

    &:hover {
        border: 2px solid transparent;
        background: #4e4e4e;
        background-clip: content-box;
    }
}

.swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

html {
    font-family: 'Century Gothic', Helvetica;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    color: #263c64;
    text-align: left;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

.frame {
    width: 375px;
    overflow-x: hidden;
    position: relative;
    background: #ffffff;
    padding-top: 40px;
    padding-bottom: 30px;
    margin: auto;
}

.frame .padding {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
}

.frame .caption {
    color: #263C64;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    margin-bottom: 20px;
}

.frame .text_big {
    color: #263C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.15px;
    margin-bottom: 30px;
}

.frame .text_small {
    color: #263C64;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
}

ul {
    padding-left: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
}

ul li {
    margin-bottom: 10px;
}

ul li:last-child {
    margin-bottom: 0px;
}

a {
    color: #263C64;
}

.frame .card_1 {
    position: relative;
    height: 230px;
    margin-bottom: 20px;
}

.frame .card_1 img {
    position: absolute;
    left: -4px;
    top: 0px;
    width: 336px;
}

.frame .card_2 {
    position: relative;
    margin-top: 24px;
    margin-bottom: 24px;
}

.frame .card_2 img {
    width: 100%;
}

.frame .link {
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.15px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 25px;
}

.slider_container {
    width: calc(100% - 96px);
    height: 176px;
    position: relative;
    display: block;
    text-align: center;
    margin-left: 48px;
    user-select: none;
}

.slider_container .prev {
    width: 48px;
    height: 48px;
    content: url(images/prev.svg);
    position: absolute;
    left: -48px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.slider_container .next {
    width: 48px;
    height: 48px;
    content: url(images/next.svg);
    position: absolute;
    right: -48px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.slider_container .slider {
    width: 100%;
    height: 176px;
    position: relative;
    display: block;
    overflow: visible;
    text-align: left;
}

.slider_container .slider .slide {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    z-index: 666;
    width: 100%;
    opacity: 0.5;
    transition-property: opacity;
    transition-duration: 0.5s;
    pointer-events: none;
}

.slider_container .slider .slide .img {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
}

.slider_container .slider .swiper-slide-active {
    opacity: 1;
    pointer-events: visible;
}