@import '../../../../css/src/general/mixin.scss';

.zypento-blocks-simple-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 2em auto;
}
.zypento-blocks-simple-slider-belt {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.zypento-blocks-simple-slide {
    min-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 1em;
}
.zypento-blocks-simple-slide-content{
    margin: 0 auto;
    @media screen and (max-width : 1200px) {
        padding: 2em 2em 6em 2em !important;
    }
    @media screen and (min-width : 1201px) {
        padding-right: 40% !important;
    }
    &>h3{
        font-size: clamp(2.5rem, 2.5rem + ((1vw - 0.2rem) * 2.386), 4.2rem);
        margin: 0;
    }
    &>p{
        margin: 2rem 0 0 0;
        @media screen and (min-width : 1201px) {
            margin: 3rem 0 0 0;
        }
    }
    & .zypento-button{
        margin: 2rem 0 0 0;
        @media screen and (min-width : 1201px) {
            margin: 3rem 0 0 0;
        }
        &>span{
            background: #000000;
            color: #ffffff;
            padding: 0.5em 2em;
            display: inline-block;
        }
        &>a{
            background: #000000;
            color: #ffffff;
            padding: 0.5em 2em;
            display: inline-block;
            text-decoration: none;
        }
    }
}
.zypento-blocks-simple-slider-navigation {
    position: absolute;
    z-index: 99;
    bottom: 2em;
    display: flex;
    justify-content: center;
    width: 100%;
}
.zypento-blocks-simple-slider-nav-inner{
    padding: 10px;
    background: #ffffff;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    gap: 0.5em;
    align-items: center;
}
.zypento-blocks-simple-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}
.zypento-blocks-simple-slider-dot.active {
    background: #333;
}
.zypento-blocks-simple-slider-arrow {
    color: #000;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2;
}
.zypento-blocks-simple-slider-arrow.prev {}
.zypento-blocks-simple-slider-arrow.next {}
