#site-slider {
    position: relative;
}
#site-slider .swiper-slide {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}
#site-slider .swiper-slide::before {
    background: linear-gradient(0deg, #000000 -60%, rgba(255, 255, 255, 0.0001) 200%);
    content: '';
    display: inline-block;
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
#site-slider .swiper-slide:first-child::before {
    background: none;
}
@media only screen and (max-width: 781px) {
    #site-slider .swiper-slide::before {
      background: rgba(0, 0, 0, 0.5);
    }
}
#site-slider .swiper-slide img {
    display: inline-block;
    height: 450px;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    #site-slider .swiper-slide img {
        height: 380px;
    }
}
@media only screen and (max-width: 781px) {
    #site-slider .swiper-slide img {
        height: 320px;
    }
}
@media only screen and (max-width: 600px) {
    #site-slider .swiper-slide img {
        height: 340px;
    }
}
#site-slider .swiper-slide .banner-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    position: absolute;
    text-align: center;
    text-shadow: 0 10px 15px #000;
    z-index: 9;
}
@media only screen and (max-width: 1536px) {
    #site-slider .swiper-slide .banner-text {
        max-width: 860px;
    }
}
@media only screen and (max-width: 1024px) {
    #site-slider .swiper-slide .banner-text {
        max-width: 800px;
        padding-left: 2em;
        padding-right: 2em;
    }
}
#site-slider .swiper-slide .banner-text h1, #site-slider .swiper-slide .banner-text p {
    color: #fff;
}
#site-slider .swiper-slide .banner-text h1 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 1em;
    text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
    #site-slider .swiper-slide .banner-text h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 781px) {
    #site-slider .swiper-slide .banner-text h1 {
        font-size: 22px;
    }
}
#site-slider .swiper-slide .banner-text p {
    font-size: 17px;
    line-height: 1.5;
}
@media only screen and (max-width: 1536px) {
    #site-slider .swiper-slide .banner-text p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1024px) {
    #site-slider .swiper-slide .banner-text p {
        font-size: 15px;
        line-height: 1.35;
    }
}
@media only screen and (max-width: 781px) {
    #site-slider .swiper-slide .banner-text p {
        font-size: 14px; 
    }
}
@media only screen and (max-width: 600px) {
    #site-slider .swiper-slide .banner-text h1 {
        margin-bottom: 15px;
    }
    
    #site-slider .swiper-slide .banner-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}
#site-slider .swiper-slide .banner-text .button {
    background: var(--secondary-color);
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.0125rem;
    line-height: 1.5;
    padding: 10px 35px;
    position: relative;
    text-transform: uppercase;
    top: 0;
    box-shadow: none;
    -webkit-transition: all 0.25s ease-in;
    transition: all .25s ease-in;
}
@media only screen and (max-width: 1024px) {
    #site-slider .swiper-slide .banner-text .button {
        font-size: 13px;
        padding: 8px 25px;
    }
}
@media only screen and (max-width: 781px) {
    #site-slider .swiper-slide .banner-text .button {
        font-size: 12px;
    }
}
#site-slider .swiper-slide .banner-text .button:hover {
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
    top: -5px;
}