* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* -webkit-font-smoothing: antialiased; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --gradient: linear-gradient(108deg, #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
}

@property --gradient-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 10deg;
}

@keyframes animGrad {
    from {
        --gradient-angle: 0deg;
    }
    to {
        --gradient-angle: 360deg;
    }
}

body {
    overflow-x: hidden;
}

.colored-text {
    background-image: var(--gradient);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.grad {
    --gradient-angle: 0deg;
    background: linear-gradient(var(--gradient-angle), #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
    animation: animGrad 5s linear infinite both;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    position: absolute;
    z-index: -1;
}

main {
    width: 100vw;
    height: 100svh;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    position: relative;
    flex-direction: column;
    padding: 0 20px;
    overflow: hidden;
    padding-top: 130px;
}

main::before {
    background-color: #fff;
    position: absolute;
    display: block;
    content: '';
    inset: 3px;
    filter: blur(10px);
}

main h1 {
    font-size: 48px;
    font-weight: 500;
    color: transparent;
    background-clip: text;
    z-index: 2;
    background-image: var(--gradient);
    transition: .1s;
}

main h2 {
    color: #1d1d1f;
    z-index: 2;
    font-weight: 600;
    margin-top: 20px;
    font-size: 21px;
    transition: .1s;
}

@media(max-width:700px) {
    main h1 {
        font-size: 40px;
    }
    main h2 {
        font-size: 19px;
    }
}

main::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100vw;
    height: 80px;
    content: '';
    display: block;
    background-image: linear-gradient(to bottom, #ffffff00, #fff 75%);
}

section {
    min-height: 300vh;
}

.slider-wrapper {
    width: 100vw;
    margin-top: 60px;
}

.s-section-title {
    padding-left: 20px;
    padding-bottom: 40px;
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
}

.slider-content .slides {
    white-space: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    padding-left: 20px;
    font-size: 0;
    display: block;
}

.slider-content .slides::-webkit-scrollbar {
    opacity: 0;
    display: none;
    width: 0;
    height: 0;
    visibility: hidden;
}

.slider-content .slides .slide {
    height: 400px;
    width: 300px;
    background-color: #f5f5f7;
    display: inline-block;
    scroll-snap-align: start;
    margin-right: 20px;
    scroll-snap-stop: always;
    list-style: none;
    font-size: 17px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slider-content .slides .slide .slide-h3 {
    padding: 20px 15px;
    font-size: 17px;
    font-weight: 700;
    color: #666;
    line-height: 1.35;
    position: absolute;
    white-space: normal;
    bottom: 15px;
    width: 300px;
}

.slider-content .slides .slide .slide-item-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    white-space: unset;
}

.slider-dots-wrapper {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-dots {
    width: 150px;
    height: 45px;
    background-color: #f5f5f7;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    background-color: #777;
    border-radius: 25px;
    margin: 0 5px;
    transition: .3s;
    cursor: pointer;
}

.dot-wrapper {
    cursor: pointer;
}

.slider-dots .dot-wrapper:hover .dot {
    background-color: #555;
}

.slider-dots .dot-wrapper.active .dot {
    width: 30px;
    background-color: #222;
    border-radius: 25px;
}

.dot-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}