/* virtual staging */

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

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

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

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

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

	#photography__aparts {
		.photography__aparts {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 48px;

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

			.items-services  {
				display: flex;
				gap: 16px;

				.item-service {
					border-radius: 45px;
					border: 2px solid #000;
					padding: 13px 24px;
					transition: all 0.3s ease; 
					cursor: pointer;
				}
				
				.item-service:hover, .active {
					background: linear-gradient(to right, #f44336, #ff6f61, #ff5252);
					color: #fff !important;
					border: 2px solid transparent;
					cursor: pointer;
					text-align: center;
					filter: drop-shadow(0px 4px 7.5px rgba(0, 0, 0, 0.25));
					transition: background 0.2s, color 0.2s, border 0.2s;
				}
			}

			.photography__column { 
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 16px;

				.photography__image {
					margin: 0 auto;
                    border-radius: 100px;
                    aspect-ratio: 458 / 249;
				}

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

					.li {
						padding-right: 16px;
					}
				}				
			}
			.photography__column:first-child { 

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

			.photography__column:nth-child(2) { 
				width: 100%;

				iframe, video {
					width: 100%;
					aspect-ratio: 16/9;
					border-radius: 32px;
				}
			}
		}

	}

	#photography__floorPlans {
		.photography__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;
			}	
		}
		.photography__column.img-blur {
			position: relative;
		}
		.photography__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;
			}
		}
		.photography__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%;
			}
		}
		.photography__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;
			}
		}
	}

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

			@media (max-width:767px){
				position: relative;
			}
		}
		
		.photography__pricing {
			.flex {
				display: flex;
				flex-direction: column;
				align-items: center;
				position: relative;
			}
		}

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

			.photography__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: 150px;
		}	
	}

	@media (max-width:767px){
		.main-title {
			font-size: 3.3125rem;
		}

		.main-title-bold {
			font-size: 3.3125rem;
		}
	}

	#photography__testimonials {
		background: linear-gradient(to right, #ff6e62, #ff3c1f, #ff1f00);
		color: #ffffff;

		.photography__testimonials {
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;

			@media (max-width:767px){
				flex-direction: column;
				padding-top: 48px;
				position: relative;
			}

			.photography__column--title {
				text-align: left;

				@media (max-width:767px){
					text-align: center;
				}
			}

			.photography__column:nth-child(1) {
				width: 40%;

				@media (max-width:767px){
					width: 100%;
					padding-top: 48px;
					position: relative;
				}
			}

			.photography__column:nth-child(1)::before {
				@media (max-width:767px){
					content: '';
                    border-top: 3px solid #ffffff;
                    position: absolute;
                    height: 50%;
                    left: 10%;
                    top: 0;
                    width: 80%;
				}
			}

			.photography__column:nth-child(2) {
				display: flex;
				flex-direction: column;
				text-align: left;
				gap: 16px;
				width: 60%;
				padding: 80px;
				position: relative;

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

			.photography__column:nth-child(2)::before {
				content: '';
				border-left: 3px solid #ffffff;
				position: absolute;
				height: 50%;
				left: 0;
				top: 25%;

				@media (max-width:767px){
					display: none;
				}
			}

			.photography__column--description {
				display: flex;
				flex-direction: column;
				gap: 8px;
			}
		}
	}
}




