/* virtual staging */

.live_viewing {
	box-shadow: rgb(17 15 15 / 42%) 0px 2px 6px;
    background: white;
	position: relative;

	#live_viewing__logo{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		background: url(/common/images/pages/live_viewing/header.jpg) center center no-repeat;
		background-size: cover;
		height: calc( 100vh );
		position: relative;
		overflow: hidden;

		.live_viewing__logo {
			display: flex;
			flex-direction: column;
			gap: 16px;
			align-items: start;

			.live_viewing__logo--title {
				text-align: left;
			}
			.live_viewing__logo--description {
				text-align: left;
			}
			.live_viewing__logo--buttons {
				display: flex;
				flex-direction: row;
				gap: 16px;

				@media (max-width:767px){
					flex-direction: column-reverse;
					align-items: start;
				}
			}
		}
	}

	#live_viewing__aparts {
		.live_viewing__aparts {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 48px;

			@media (max-width:767px){
				flex-direction: column;
			}

			.live_viewing__column { 
				display: flex;
				flex-direction: column;
				align-items: start;
				text-align: left;
				gap: 16px;
				width: 50%;

				img {
					max-width: 360px;;
				}

				.live_viewing__features {
					display: flex;
					flex-direction: column;
					gap: 8px;

					.li {
						padding-right: 16px;
					}
				}
			}

			.live_viewing__column:first-child { 
				width: 50%;

				@media (max-width:767px){
					width: 100%;
				}
			}
		}

	}

	#live_viewing_marketing {
		position: relative;
		padding: 80px 0;
		overflow: hidden;
		position: relative;
		/* background: url('/common/images/marketing/banner.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat; */

		.marketing-overlay {
			position: absolute;
			left: 0; top: 0; bottom: 0; width: 100%;
			background: linear-gradient(90deg, #ff3c1a 0%, rgba(255,60,26,0.8) 60%, rgba(255,60,26,1) 100%);
			z-index: 1;
			pointer-events: none;

			@media screen and (max-width: 767px) {
			width: 100%;
						background: linear-gradient(to top, rgba(255,255,255,0) 0%, #ff3c1a 50%);
			}
		}

		@media (max-width:767px){
			padding: 40px 0 320px 0;
			background: url('/common/images/marketing/banner-xs.png');
			background-size: cover;
			background-repeat: no-repeat;
		}
	  
		.marketing-bg {
			position: relative;
			width: 100%;
			flex-direction: column;
			display: flex;
			align-items: stretch;
			gap: 48px;

			@media (max-width:767px){
				align-items: end;
				gap: 16px;
			}
	  
			.container {
				margin-bottom: 50px;
				@media (max-width:767px){
					margin-bottom: 250px;
				}
			}

			.block-logo {
				display: flex;
				flex-direction: row;
				align-items: center;
				position: relative;
				gap: 8px;

				@media (max-width:767px){
					padding: 0;
					top: 0;
					left: 0;
					gap: 4px;
				}

				.title {
					color: #FFF;
					z-index: 100;
					position: relative;
					margin: 0;
					text-wrap: nowrap;
				}

				.subTitle {
					color: #FFF;
					z-index: 100;
					position: relative;
					margin: 0;
				}

				.logo {
					z-index: 100;
					position: relative;
					width: 49px;
				}
				}
			}

		.marketing-flex {
			position: relative;
			z-index: 2;
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			gap: 32px;


			@media (max-width:767px){
				flex-direction: column;
			}
		}

		.marketing-left {
			width: 50%;
			color: #fff;
			display: flex;
			flex-direction: column;
			justify-content: center;

			@media (max-width:767px){
				padding: 0;
				width: 100%;
			}

			.section-container-title {
				text-align: left;
				display: flex;
				flex-direction: column;
				gap: 16px;

				.regular {
					text-wrap: wrap;
				}

				h2, span {
					color: #fff;
					text-align: left;
					margin: 0;
				}
			}
		}
	  
		.marketing-right {
			width: 50%;
			display: flex;
			align-items: center;
			justify-content: center;

			video {
				width: 100%;
				height: 100%;
				border-radius: 32px;
			}

			@media (max-width:767px){
				width: 100%;
			}
		}
	  }

	  #live_viewing__floorPlans {
		.live_viewing__floorPlans {
			display: flex;
			justify-content: space-between;
			align-items: center;
			border-radius: 100px;
			background: #F2F2F2;

			@media (max-width:767px){
				height: auto;
				flex-direction: column;
				border-radius: 40px;
				display: inline-block;
			}	
		}
		.live_viewing__column.img-blur {
			position: relative;
		}
		.live_viewing__column.img-blur img {
			position: relative;
			z-index: 1;
			border-radius: 100px 0 0 100px;
			height: 341px;
			width: 100%;

			@media (max-width:767px){
				border-radius: 40px 40px 0 0;
			}
		}
		.live_viewing__column.img-blur::after {
			content: '';
			position: absolute;
			top: 0;
			right: 0; 
			bottom: 0; 
			left: 5%;
			background: linear-gradient(to  right, rgba(255,255,255,0) 0%, #F2F2F2 100%);
			z-index: 2;
			pointer-events: none;

			@media (max-width:767px){
				background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #F2F2F2 80%);
				left: 0%;
			}
		}
		.live_viewing__column.text {
			padding: 59px;
			text-align: end;
			text-wrap: nowrap;

			@media (max-width:767px){
				padding: 0;
				text-align: start;
				padding: 16px;
				box-sizing: border-box;
			}
		}
	}

	#live_viewing__pricing {
		.container {
			position: absolute;
			left: 50%;
			transform: translate(-50%, 0);

			@media (max-width:767px){
				position: relative;
			}
		}
		
		.live_viewing__pricing {
			.flex {
				display: flex;
				justify-content: space-between;
				align-items: center;
				position: relative;
			}
		}

		
		.live_viewing__column{
			display: flex;
			flex-direction: column;
			gap: 8px;
			justify-content: center;
			align-items: center;

			.live_viewing__features {
				display: flex;
				flex-direction: column;
				gap: 8px;

				img {
				  margin-right: 8px;
			    }

				.text {
					text-align: start;
					text-wrap: nowrap;
					position: absolute;
					padding-left: 107px;
					top: 4%;
				}
	    	}

			img {
				max-width: 280px;
			}
		}
		.bg-tour {
			padding-top: 250px;
		}	
	}

	@media (max-width: 768px) {
		.main-title {
			font-size: 4rem;
		}
		.main-title-bold {
			font-size: 4rem;
		}
	}
}




