.banner__wrap {
	position: relative;
	padding: 100px;
	border-radius: 150px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.banner__wrap:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.banner__text-wrap {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 30px;
	z-index: 1;
}

.banner__text-inner {
	width: 100%;
	margin-bottom: 20px;
}

.banner__item_title {
	font-family: 'TT Travels Text', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.banner__button {
	margin-top: 2rem;
}

.banner__item_subtitle_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.banner__item_icon {
	width: 40px;
	min-width: 40px;
	margin-right: 1rem;
}

.banner__item-img img {
	width: 100%;
	height: auto;
}

.banner__item_subtitle {
	font-size: 1.2rem;
	line-height: 1.2;
	color: #fff;
}

@media screen and (max-width: 992px) {
	.banner__wrap {
		padding: 3rem;
		border-radius: 50px;
	}

	.banner__item_title {
		font-size: 2rem;
	}
}

@media screen and (max-width: 575px) {
	.banner__wrap {
		padding: 0;
		border-radius: 2rem;
	}
}