.home-swiper {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

.home-swiper .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    transition: all ease 0.4s;
    position: relative;
    height: 300px;
}

.home-swiper .swiper-slide::before {
    content: "";
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all ease-in 0.5s;
}

.home-swiper .swiper-slide span {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-family: "Dry Brush";
    font-size: 35px;
    line-height: 45px;
    text-align: center;
}

.home-swiper .swiper-slide.swiper-slide-prev:before {
    background-color: #0073ab;
}

.home-swiper .swiper-slide.swiper-slide-next:before {
    background-color: #83b81a;
}

.home-swiper .swiper-button {
    position: absolute;
    background-color: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: 50%;
}

.home-swiper .swiper-button::after {
    color: #83b81b;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
}

.home-swiper .swiper-button svg {
    display: none;
}

.home-swiper .swiper-button-prev {
    left: 3%;
}

.home-swiper .swiper-button-prev::after {
    content: "<";
}

.home-swiper .swiper-button-next {
    right: 3%;
}

.home-swiper .swiper-button-next::after {
    content: ">";
}

@media (min-width: 1024px) {
    .home-swiper .swiper-slide {
        height: 420px;
    }

    .home-swiper .swiper-slide span {
        font-size: 45px;
        line-height: 55px;
    }

    .home-swiper .swiper-button {
        height: 70px;
        width: 70px;
        font-size: 50px;
    }
}

@media (min-width: 1280px) {
    .home-swiper .swiper-slide span {
        font-size: 70px;
        line-height: 80px;
    }
}
