section .service {
    position: relative;
    overflow-x: hidden;
    height: -webkit-fill-available;
    scroll-behavior: smooth;
}

.content-container {
    opacity: 0;
    position: absolute;
    top: 5%;
    padding-top: 10rem;
    padding-left: 20rem;
    display: flex;
    flex-direction: row;
    position: relative;
    width: auto;
    height: 100vh;
}

@media (max-width: 900px) {
    .content-container {
        transform: translateY(0%);
    }
}

.arrow {
    position: absolute;
    top: 400px;
    left: 120px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (min-width: 901px) {
    .arrow {
        display: none;
    }
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 1em;
    border-radius: 10px;
    border: 1px solid #fff;
    background-color: black;
    max-height: 100vh;
    height: 90%;
    padding: 0 4rem;
    width: 400px !important;
    text-align: center;
    cursor: grabbing;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: .6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.slide .content {
    position: relative;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.slide>* {
    text-decoration: none;
    color: #fff;
}

.slide a {
    cursor: pointer;
}

.slide a:hover {
    color: #ea3352;
}

.slide h2 {
    font-size: 3vw;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
}

.slide h3 {
    text-transform: uppercase;
    font-size: 2.5vw;
    font-weight: 100;
    line-height: 0.75;
    width: 100%;
}

.slide p {
    font-size: 1.25vw;
    font-weight: 400;
    margin: 2em 0 0 0;
}

@media (max-width: 900px) {
    .content-container {
        padding-top: 0rem;
        padding-left: 10rem;
    }
    .slide {
        top: 10%;
        justify-content: flex-start;
        align-items: flex-start;
        height: 80%;
    }

    .slide h2 {
        margin-top: 100px;
        font-size: 7vw;
    }

    .slide h3 {
        font-size: 10vw;
    }

    .slide p {
        font-size: 5vw;
    }
}

/*! locomotive-scroll v4.1.0 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    white-space: nowrap;
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.c-scrollbar:hover {
    transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1;
}

[data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1);
}

[data-scroll-direction="horizontal"] .c-scrollbar:hover {
    transform: scaleY(1.3);
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: black;
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0;
}

@media (max-width: 900px) {}