@keyframes zoomIn {
	0% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.1)
	}
}

@keyframes fadeInSlideUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideOutDown {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(20px)
	}
}
@keyframes banner-animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -50px);
    }
    100% {
        transform: translate(0, 0);
    }
}
.animate-slide {
	animation: fadeInSlideUp 0.8s ease-out
}

.animate-slide-out {
	animation: slideOutDown 0.8s ease-out
}

.hr-hero-banner {
	height: 800px;
	position: relative;
}

.hr-hero-banner .swiper-container {
	height: 100%
}

.hr-hero-banner .swiper-container .swiper-slide {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden
}

.hr-hero-banner .swiper-container .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .3;
	background: #000;
}

.hr-hero-banner .swiper-container .swiper-slide .slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
	z-index: -2;
}

.hr-hero-banner .swiper-container .swiper-slide-active .slide-bg {
	animation: zoomIn 8s ease forwards
}

.hr-hero-banner .swiper-container .swiper-slide-active .slide-bg {
	transform: scale(1.1)
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-sub-titel {
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: var(--color-4);
	padding: 10px 25px 10px 50px;
	border: 1px solid var(--color-4);
	border-style: dashed;
	display: inline-block;
	line-height: 25px;
	border-radius: 30px;
	position: relative;
	font-family: var(--font-02)
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-sub-titel::before {
	position: absolute;
	content: "";
	height: 12px;
	width: 12px;
	background: var(--color-4);
	border-radius: 50%;
	left: 25px;
	top: 50%;
	transform: translateY(-50%)
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content {
	z-index: 11;
	position: relative;
	text-align: center;
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-titel {
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--white);
	line-height: 1.3;
	margin-top: 10px;
	margin-bottom: 16px;
	line-height: 70px;
	/* width: 90%; */
	font-family: var(--font-02);
	-webkit-transform: translateY(-120px);
	transform: translateY(-120px);
	-webkit-transition-delay: 1000ms;
	transition-delay: 1000ms;
	-webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
	line-height: 1.4;
}

.hr-hero-banner .swiper-container .swiper-slide-active .hr-content .hr-titel,
.hr-hero-banner .swiper-container .swiper-slide-active .hr-content .hr-btns-wrap {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0) translateX(0);
	transform: translateY(0) translateX(0);
	text-transform: capitalize;
}

.hr-hero-banner .swiper-container .swiper-slide-active .hr-content .hr-sub-titel {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0) translateX(0);
	transform: translateY(0) translateX(0);
	text-transform: unset
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-titel span {
	color: var(--color-6)
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-text {
	margin-bottom: 40px;
	font-size: 16px;
	color: var(--white);
	/*width: 70%;*/
	font-family: var(--font-01);
	line-height: 28px
}

.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-btns-wrap {
	margin-top: 1.5rem;
	text-align: center;
	justify-content: center;
}

.hr-hero-banner .swiper-button-prev {
	left: 20px
}

.hr-hero-banner .swiper-button-next {
	right: 20px
}

.hr-hero-banner .swiper-button-next, .hr-hero-banner .swiper-button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	color: var(--color-3);
	border: 1px solid var(--white);
}
.hr-btns-wrap .hr-btn::before {
	background: var(--color-2);
}
.hr-hero-banner .swiper-button-next:hover, .hr-hero-banner .swiper-button-prev:hover {
	background: var(--color-3);
	color: var(--white);
}

.hr-desktop-slider {
	display: block
}

.hr-tablet-slider {
	display: none
}

.hr-mobile-slider {
	display: none
}

.hr-btns-wrap .hr-experience-text a {
	font-size: 21px;
	color: #222;
	text-decoration: underline;
	font-weight: 600;
	font-family: var(--font-02)
}

.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
	position: absolute;
	bottom: 0;
	right: calc(8% - 45px);
	width: 685px
}

.hr-hero-banner .swiper-container .swiper-slide .shape-01 img {
	width: 510px;
	animation: banner-animation 10s infinite linear;
}

.hr-hero-banner .swiper-pagination {
	display: flex;
	position: absolute;
	left: 50% !important;
	transform: translateX(-50%);
	bottom: -30px;
	justify-content: center;
	z-index: 11
}

.hr-hero-banner .swiper-pagination-bullets .swiper-pagination-bullet {
	font-size: 0;
	background: #fff;
	border: 2px solid var(--color-3);
	border-radius: 50%;
	margin: 0 5px;
	transition: all 0.3s ease;
	width: 25px;
	height: 8px;
	border-radius: 30px
}

.swiper-pagination-bullet-active {
	background: var(--color-4) !important;
	border: 2px solid var(--color-4) !important;
	width: 40px !important
}
.banner-bottom {
    border-top: 30px solid rgba(182, 157, 116, 0.3490196078);
    border-bottom: 30px solid rgba(182, 157, 116, 0.3490196078);
    border-left: 40px solid rgba(182, 157, 116, 0.3490196078);
    border-right: 40px solid rgba(182, 157, 116, 0.3490196078);
    display: inline-block;
    position: absolute;
    bottom: -230px;
    margin-left: auto;
}
.banner-bottom ul {
    margin: 0;
    padding: 0;
    margin-bottom: -2px;
}
.banner-bottom ul li {
    list-style-type: none;
    display: inline-block;
    background-color: #ffffff;
    position: relative;
}
.banner-bottom ul li i {
    padding-left: 20px;
    padding-right: 21px;
    line-height: 104px;
    text-align: center;
    font-size: 50px;
    display: inline-block;
    background-color: #b69d74;
    color: #fff;
}
.banner-bottom ul li:last-child {
    padding-left: 30px;
    padding-right: 110px;
    padding-top: 23px;
    padding-bottom: 24px;
    margin-left: -4px;
}
.banner-bottom ul li:last-child span {
    font-size: 14px;
    margin-bottom: 8px;
    color: #b69d74;
}
.banner-bottom ul li:last-child p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    color: #b69d74;
    line-height: 1.8;
}
.banner-bottom ul li:last-child img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.home-more-wapper.home-more-different {
	background: var(--color-2);
}
@media (max-width:1700px) {
	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 630px
	}
}

@media (max-width:1585px) {
	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 600px;
		right: calc(6% - 45px)
	}
}

@media (max-width:1400px) {
	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 500px;
		right: calc(14% - 45px)
	}
}

@media(max-width:1200px){
	.hr-hero-banner {
	height: 700px;
	position: relative;
}
}
@media screen and (max-width:1024px) {
	.hr-desktop-slider {
		display: none
	}

	.hr-tablet-slider {
		display: block
	}

	.hr-mobile-slider {
		display: none
	}

	.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-sub-titel {
		font-size: .9rem
	}

	.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-titel {
	font-size: calc(1.425rem + 2.1vw);
}
	.hr-hero-banner .swiper-button-prev {
		left: 15px
	}

	.hr-hero-banner .swiper-button-next {
		right: 15px
	}

	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 420px
	}

	.hr-hero-banner .swiper-container .swiper-slide .shape-01 img {
		width: 450px
	}
}

@media screen and (max-width:991px) {
	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 350px
	}

	.hr-hero-banner .swiper-container .swiper-slide .shape-01 img {
		width: 345px
	}
}

@media (max-width:767.98px) {
	.hr-btns-wrap {
		justify-content: flex-start;
		align-content: flex-start;
		flex-wrap: wrap
	}

	.hr-btns-wrap .hr-experience-text {
		margin-top: 20px !important
	}

	.hr-hero-banner .swiper-container .swiper-slide .shape-01 {
		width: 185px;
		right: calc(10% - 45px)
	}

	.hr-hero-banner .swiper-container .swiper-slide .shape-01 img {
		width: 190px
	}
	.banner-bottom {
        border-top: 5px solid rgba(182, 157, 116, 0.3490196078);
        border-bottom: 5px solid rgba(182, 157, 116, 0.3490196078);
        border-left: 5px solid rgba(182, 157, 116, 0.3490196078);
        border-right: 5px solid rgba(182, 157, 116, 0.3490196078);
        bottom: -200px;
        left: 20px;
    }
    .banner-bottom ul li i {
        line-height: 82px;
        font-size: 35px;
    }
    .banner-bottom ul li:last-child {
        padding-left: 15px;
        padding-right: 75px;
        padding-top: 12px;
        padding-bottom: 18px;
        text-align: left;
    }
    .banner-bottom ul li:last-child p {
        font-size: 15px;
    }
    .hr-hero-banner .swiper-button-next, .hr-hero-banner .swiper-button-prev {
	display: none;
}
.hr-hero-banner {
	height: 560px;
	position: relative;
}
.hr-hero-banner .swiper-container .swiper-slide .hr-content {
	padding-top: 100px;
}
}
@media screen and (max-width:480px) {
	.hr-desktop-slider {
		display: none
	}

	.hr-tablet-slider {
		display: none
	}

	.hr-mobile-slider {
		display: block
	}

	.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-sub-titel {
		font-size: .8rem
	}

	.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-titel {
		font-size: calc(1.425rem + 2.1vw)
	}
	.hr-hero-banner .swiper-container .swiper-slide .hr-content .hr-text {
	margin-bottom: 20px;
}
}