.home_banner{
	position: fixed;
	width: 850px;
	height: 465px;
	bottom: 80px;
	padding:28px;
	right: 0;
	z-index: 999;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-radius: 10px 0 0 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.home_banner .inner_wrapper{
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
	justify-content: space-between;
}

.home_banner .img-virtual{
  max-width: 350px;
}

.request-button {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  padding: 24px 70px 24px 26px;
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
	min-width: 200px;
  z-index: 1;
  background: linear-gradient(145deg, #171757 67.44%, #FF384F 102.39%);
}
.request-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, #171758 33.34%, #FF384F 85.49%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.request-button:hover::after {
  opacity: 1;
}
.request-button .request-button-arrow {
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform 0.3s ease;
}
.request-button:hover .request-button-arrow {
  transform: rotate(45deg);
}
.request-button svg {
  pointer-events: none;
}

.popup-content{
	max-width: 420px;
	backdrop-filter: blur(100px);
	background: linear-gradient(179.8deg, rgba(255, 255, 255, 0.2) -47.4%, rgba(255, 255, 255, 0.9) 170.66%);
	border-radius: 10px;
	padding: 40px;
}

.home_banner .close_popup {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 99;
}

.home_banner .close_popup img {
	width: 14px;
	height: 14px;
}

.date-title{
	display: block;
	line-height: 1.4;
	margin-bottom: 40px;
}

.popup-title{
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 20px;
}

@media all and (max-width: 767px) {


	.home_banner .img-virtual{
		position: unset;
		max-width: 100%;
		display: block;
		margin: 0 auto;
		margin-top: 30px;
		margin-bottom: 60px;
	}

	.home_banner{
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
		background-image: unset !important;
		background-color: rgba(0, 13, 51, 0.9);
		opacity: 1;
		visibility: visible;
		transition: visibility 0.6s ease, opacity 0.6s ease;
		z-index: 9999;
		padding: 25px;
		border-radius: 0;
	}

	.home_banner_button-wrap{
		text-align: center;
	}

	.home_banner .img-city{
		width: 100%;
		left: 0;
	}

	.home_banner .bg_wrapper {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	.home_banner .inner_wrapper {
		background-image: url(../img/CTRL_pop_up_m.png);
		width: 100%;
		min-height: 500px;
		height: auto;
		max-width: 1000px;
		position: relative;
		z-index: 1;
		overflow: hidden;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		padding: 60px 30px;
		z-index: 9999;
		position: relative;
	}

	.popup-content{
		background: unset;
		backdrop-filter: unset;
		padding: 0;
	}

	.popup-title{
		font-size: 26px;
		color: #fff;
	}

	.date-title{
		color: #fff;
	}

}

@media (max-width: 1023px) {
  .form_popup_wrapper .request-button .request-button-arrow {
    right: 5px;
    top: 5px;
  }
}