﻿/* Import Google font - Poppins */

.wrapper {
    display: flex;
    max-width: 1200px;
    position: relative;
}

    .wrapper i {
        top: 50%;
        height: 44px;
        width: 44px;
        color: #343F4F;
        cursor: pointer;
        font-size: 1.15rem;
        position: absolute;
        text-align: center;
        line-height: 44px;
        background: #fff;
        border-radius: 50%;
        transform: translateY(-50%);
        transition: transform 0.1s linear;
    }

        .wrapper i:active {
            transform: translateY(-50%) scale(0.9);
        }

        .wrapper i:hover {
            background: #f2f2f2;
        }

        .wrapper i:first-child {
            left: -22px;
            display: none;
        }

        .wrapper i:last-child {
            right: -22px;
        }

    .wrapper .slider_f {
        font-size: 0px;
        cursor: pointer;
        overflow: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
    }

.slider_f.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

    .slider_f.dragging img {
        pointer-events: none;
    }

.slider_f img {
    height: 340px;
    object-fit: cover;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 4);
}

    .slider_f img:first-child {
        margin-left: 0px;
    }

@media screen and (max-width: 4000px) {
    .slider_f img {
        margin-left:50px;
        margin-right:50px;
        width: 25%;
        height:auto;
    }
}

@media screen and (max-width: 550px) {
    .slider_f img {
        width: 50%;
        height:auto;
    }
}
