.web-slider .slider {
    display: flex;
    align-items: center;
}

.web-slider .slider img {
    height: 100px;
    width: auto;
}

.web-slider .slider-content {
    background-color: white;
    text-align: center;
}

.web-slider .slider-content .title {
    padding-top: 15px;
}

.web-slider .slider-content .title h2 {
    font-size: 30px;
    font-weight: 600;
}

.web-slider .slider-content .title a {
    display: inline-block;
    text-decoration: none;
    color: #014C8D;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 25px;
    margin-top: 15px;
    border-radius: 50px;
    border: 2px solid #014C8D;
    transition: all 0.3s ease;
}

.web-slider .slider-content .title a:hover {
    color: #fff;
    background-color: #014C8D;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    /* background: white; */
    height: 200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 200px;
}

@media (max-width: 690px) {
    .web-slider .slider-content .title h2 {
        font-size: 20px;
    }
}