.swiper.home-slider {
    height: 90vh !important;

    & .swiper-wrapper {

        & .swiper-slide {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;

            &:before {
                content: "";
                background: #00000014;
                height: 100%;
                width: 100%;
                position: absolute;
                z-index: 10;
            }

            & .slide-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;
                text-align: center;
                position: relative;
                z-index: 20;

                & .title {
                    color: #ffffff;
                    line-height: 100px;
                    letter-spacing: 0px;
                    font-weight: 200;
                    font-size: 80px;
                }

                & p {
                    color: #ffffff;
                    line-height: 50px;
                    letter-spacing: 2px;
                    font-weight: 500;
                    font-size: 20px;
                }

                & .slide-buttons {
                    gap: 1rem;
                    display: flex;

                    & .btn {
                        border: 2px solid white;
                        text-decoration: unset;
                        border-radius: 0;
                        color: white;
                        background-color: #00000017;

                        &:hover, &:focus, &:active {
                            color: rgb(85, 85, 85);
                            border-color: rgb(255, 186, 0);
                            background-color: rgb(255, 186, 0);
                        }

                        &.btn-left {
                            color: rgb(85, 85, 85);
                            border-color: rgb(255, 186, 0);
                            background-color: rgb(255, 186, 0);

                            &:hover, &:focus, &:active {
                                color: white;
                                border-color: white;
                                background-color: #00000017;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1024px) {
        height: 70vh !important;
    }
}