.landing {
    width: auto;
    height: 100%;
    background-image: url(Images/Index/BGDonut.png);
    background-size: 100%;
    text-align: center;
    background-color: #adf5ff;
}

.landing__content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.landing__content img {
    padding-top: 5vh;
    object-fit: contain;
    width: 45%;
}

.landing__content p {
    font-size: 1.5vw;
    font-family: dynapuff, quicksand, Helvetica;
    color: #13070c;
    width: 50%;
}

@media (max-width: 767px) {
    .landing__content p {
        font-size: 2.5vw;
    }
}



/*slider*/

@keyframes scroll {
    0% {
        transform: translateX(calc(-200px * 14));
    }

    100% {
        transform: translateX(0);
    }
}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 20vh;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

/*
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(Images/Index/BGCarousel.jpg);
    background-repeat: repeat;
    background-size: contain;
    filter: blur(0px) brightness(0.9);
    z-index: 0;
    pointer-events: none;
}
    */

/*
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 200px;
  position: absolute;
  width: 10vw;
  z-index: 2;
}
  */

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    display: flex;
    width: calc(20vh * 28);
    animation: scroll 40s linear infinite;
}

.slider .slide {
    height: 20vh;
    width: 20vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slide img {
    height: 16vh;
    width: 100%;
    object-fit: cover;
    padding-top: 1.5vh;
}

.slide-title {
    font-size: 2vh;
    color: #22577A;
    margin-top: -5px;
    text-align: center;
}