.home-slider-section{
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.home-slider-section .swiper-home-slider,
.home-slider-section .swiper-home-slider-item-image,
.home-slider-section .swiper-home-slider-item{
    height: 100%;
    position: relative;
}
.home-slider-section .swiper-home-slider-item picture{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home-slider-section .swiper-home-slider-item picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-home-slider-item .swiper-home-slider-item-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 150px);
    justify-content: center;
    display: flex;
    align-items: center;
}
.swiper-home-slider-item .swiper-home-slider-item-content .container{
    max-width: 1300px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}
.swiper-home-slider-item-content .swiper-home-slider-item-header{
    font-family: "Montserrat",sans-serif;
    line-height: 70px;
    font-size: 60px;
    font-weight: 800;
    color: rgb(31, 33, 44);
    margin-bottom: 20px;
    text-align: left;
}
.swiper-home-slider-item-content .swiper-home-slider-item-text{
    font-family: "Roboto",sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-align: left;
    color: rgb(47, 50, 65);
}

.swiper-home-slider-item-content .swiper-home-slider-item-buttons{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px
}
.swiper-home-slider-item-content .swiper-home-slider-item-buttons a{
    text-transform: uppercase;
    line-height: 24px;
    border-width: 2px;
    border-radius: 60px;
    font-size: 12px;
    background-color: rgb(145, 41, 61);
    border-color: rgba(0, 0, 0, 0);
    padding: 10px 41px;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
.swiper-home-slider-item-content .swiper-home-slider-item-buttons a:hover{
    background-color: rgb(248, 70, 79);
    border-color: rgb(248, 70, 79);
}
.home-slider-section .home-slider-prev img,
.home-slider-section .home-slider-next img{
    height: 40px;
    width: auto;
}
.home-slider-section .home-slider-prev,
.home-slider-section .home-slider-next{
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 20px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.home-slider-section .home-slider-prev img{
    transform: rotate(180deg);
}
.home-slider-section .home-slider-next{
    right: 20px;
    left: auto;
}
.home-slider-section .home-slider-prev:hover,
.home-slider-section .home-slider-next:hover{
    opacity: .6;
}
@media only screen and (max-width: 1400px){
    .swiper-home-slider-item .swiper-home-slider-item-content .container{
        max-width: 1050px;
    }
}
@media only screen and (max-width: 1199px){
    .swiper-home-slider-item .swiper-home-slider-item-content{
        height: calc(100% - 100px);
    }
    .swiper-home-slider-item .swiper-home-slider-item-content .container{
        max-width: 991px;
    }
    .home-slider-section .home-slider-prev{
        left: 5px;
    }
    .home-slider-section .home-slider-next{
        right: 5px;
    }
}
@media only screen and (max-width: 991px){
    .swiper-home-slider-item .swiper-home-slider-item-content{
        height: calc(100% - 70px);
    }
    .home-slider-section .home-slider-prev{
        display: none;
    }
    .home-slider-section .home-slider-next{
        display: none;
    }
}
@media only screen and (max-width: 767px){
    .home-slider-section{
        height: 500px;
    }
    .swiper-home-slider-item .swiper-home-slider-item-content{
        height: calc(100% - 50px);
    }
    .swiper-home-slider-item-content .swiper-home-slider-item-header{
        line-height: 50px;
        font-size: 40px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 580px){
    .home-slider-section{
        height: 400px;
    }
    .swiper-home-slider-item .swiper-home-slider-item-content{
        height: calc(100% - 20px);
    }
    .swiper-home-slider-item-content .swiper-home-slider-item-buttons{
        flex-wrap: wrap;
        gap: 15px;
    }
}
@media only screen and (max-width: 420px){
    .swiper-home-slider-item-content .swiper-home-slider-item-header{
        line-height: 33px;
        font-size: 28px;
    }
    .swiper-home-slider-item-content .swiper-home-slider-item-text{
        font-size: 16px;
        line-height: 20px;
    }
}

