.home-header-banner{
	height: 500px;
}

.swiper-home .swiper-button-next, .swiper-home .swiper-rtl .swiper-button-prev {
    left: 60px;
    right: auto;
    top: 46%;
}

.swiper-home .swiper-button-prev, .swiper-home .swiper-rtl .swiper-button-next {
	right: 60px;
	left: auto;
	top: 46%;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	display: none;
}


.home-cards {
    width: 1650px;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 80px auto 110px auto;
    max-width: 100%;
    flex-wrap: wrap;
}
.home-card {
    width: 526px;
    height: 300px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.home-card:after {
    box-shadow: inset 0px -50px 100px 0px #00000063;
    content: 'xx';
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 100%;
    color: transparent;
}
.home-card-img{
	width: 100%;
	height: 100%;
}
.home-card-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    transition: .3s all;
}

.home-card:hover .home-card-img img{
    transform: scale(1.1);
}

.home-card-text {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: right;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    margin: 20px 40px;
    z-index: 1;
}

.home-content-section {
    /*width: 1920px;*/
    /*height: 764px;*/
    background: #35563c;
    margin-bottom: 100px;
    max-width: 100%;
    height: auto;
}

.home-content-section img{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}


@media(max-width: 640px){
	.home-cards {
	    padding: 0 20px;
	}
	.mobile-banner-image {
	    display: none;
	}
	.home-header-banner {
	    height: auto;
	}
    .home-cards {
        margin-top: 50px;
        margin-bottom: 70px;
    }
}