
	/**------------------**/
	/**------CLIENT------**/
	/**------------------**/
	.client-layout{
		display: flex; 
		width: 100%; 
		min-height: 100vh;
	}
	.gray-client{
		width: 37%; 
		background-color: #424242; 
		display: flex; 
		flex-direction: column; 
		justify-content: center;
		color: white; 
		text-align: right;
		gap: 50px;
	}
	.black-client{
		width: 41%; 
		background-color: #212121; 
		display: flex; 
		justify-content: center; 
		align-items: center;
	}
	.white-client{
		width: 22%; 
		background-color: #DEDEDE; 
		display: flex; 
		justify-content: center; 
		align-items: center;
	}
	.circle-img{
		max-width:100%; 
		max-height: 410px;
	}
	.client-story-link{
		display: flex; 
		gap: 21px; 
		justify-content: flex-end; 
		align-items: flex-end; 
		text-decoration: none; 
		color: white;
	}
	.quote{
		font-weight: 400; 
		font-size: 1.25vw;
		color:white;
	}
	.project{
		font-weight: 700; 
		font-size: 1.25vw;
		color:white;
	}
	.img-container{
		width:26%;
	}





	.ql-editor, .dx_page_text{
		white-space: normal!important;
	}
	.client-square{
		width: 50%;
		height: min-calc(100% / 3);
	}
	.client-square-text{
		width: 50%;
		height: calc(100% / 3);
		padding:15px 15px 50px 15px;
		background-color: #CDCDCD;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.client-category{
		font-weight: 700;
		font-size: 15px;
		letter-spacing: 7%;
		color: #474747;
		line-height: 130%;
	}
	.client-quote{
		font-weight: 500;
		font-size: 15px;
		color: #626262;
		letter-spacing: 7%;
		margin-top: 8px;
		line-height: 150%;
	}
	.client-name{
		font-weight: 500;
		font-size: 20px;
		letter-spacing: 7%;
		color: #474747;
		margin-top: 8px;
		line-height: 130%;
	}
	.client-right{
		text-align: right;
		align-self: end;
	}
	.client-reverse-column{
		height: 100%; 
		width: 50%; 
		flex-wrap: wrap;
		display: none;
	}
	.client-container{
		height: calc(100vh - 8vw);
		max-height: calc(100vh - 80px);
		display: flex;
	}
	.client-columns{
		height: 100%; 
		width: 50%; 
		display: flex; 
		flex-wrap: wrap;
	}
	.client-banner{
		height: 8vw; 
		min-height: 80px; 
		width: 100%; 
		background-color: #DEDEDE;
		display:flex;
		align-items: center;
		overflow: hidden; /* Hides logos as they slide out of view */
		position: relative; /* Essential to anchor the absolute gradient */
	}
	.client-banner::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		
		/* Logic: Offset (64px) + Logo (variable) + Gradient (161px) */
		/* Total fixed parts = 225px. Logo = max(15vw, 150px) */
		width: calc(225px + max(15vw, 150px)); 
		height: 100%;
		
		/* The gradient still occupies the leftmost 161px of this element */
		background: linear-gradient(to right, 
			rgba(222, 222, 222, 0) 0%, 
			rgba(222, 222, 222, 1) 161px, 
			rgba(222, 222, 222, 1) 100%
		);
		
		z-index: 10;
		pointer-events: none;
	}

	.client-link{
		text-decoration: none;
		color: #474747;
	}
	p .client-link{
		color: #626262;
	}
	.client-img{
		height: 50px; /* Keeps all logos uniform */
		width: auto; /* Let the width calculate automatically */
		object-fit: contain; /* Ensures the image fits without cropping or stretching */
		flex-shrink: 0; /* Prevents the browser from squishing images */
		/*filter: grayscale(100%); /* Optional: makes them look more premium/cohesive *-/
		opacity: 0.8;*/
		transition: opacity 0.3s;
	}
	.logo-banner{
		padding: 15px;
		height: 100%;
		box-sizing: border-box;
		display: flex;
		gap: 80px;
		max-height: 95px;
		width: max-content; /* Container expands to fit all 56 logos in a line */
		/* Duration: 40s is smooth for 28 logos. Decrease to 30s to go faster. */
		animation: scroll-logos 40s linear infinite;
		z-index: 1;
		align-items: center; /* Vertically centers logos of different heights */
		will-change: transform;
	}

	/* Target ALL images in the scroller specifically */
	.logo-banner img, 
	.logo-banner .client-img {
		height: 50px !important;    /* Force uniform height */
		width: auto !important;      /* Force aspect ratio */
		max-width: none !important;  /* Override platform 'fluid' image rules */
		max-height: 50px !important; /* Double-down on height constraint */
		flex-shrink: 0 !important;   /* Do not let flexbox squeeze them */
		object-fit: contain !important;
		display: inline-block !important; /* Ensure they don't behave like blocks */
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden; /* For iOS Safari */
		transform: translate3d(0, 0, 0);      /* Forces GPU rendering mode */
		content-visibility: auto;
	}
	.logo-banner img:nth-child(54) {
		padding-right: 100px !important;
	}

	.logo-banner img:nth-child(50) {
		margin-right: -50px !important;
	}
	@keyframes scroll-logos {
		0% {
			transform: translateX(0);
		}
		100% {
			/* Move left by exactly half the container's width */
			transform: translateX(-50.3%);
		}
	}


	/**-----------------**/
	/**----GALLERIES----**/
	/**-----------------**/

	.client-gallery-section{
		width: calc(100% - 310px); 
		display:flex; 
		padding: 0px 18px; 
		align-items:flex-start; 
		gap:8px; 
	}
	.client-gallery-title{
		font-size:18px; 
		font-weight:700; 
		color:#797476;
	}
	.client-gallery-name{
		font-size:18px; 
		font-weight:700; 
		color:#443E41; 
		padding-right:2vw!important;
	}
	.client-gallery-description-title{
		font-size:18px; 
		font-weight:700; 
		color:#797476;

	}
	.client-gallery-description{
		font-size:15px; 
		font-weight:600; 
		color:#5E5A5C;
		flex:1;
		padding-top: 3px !important;
	}
		
	/**-----------------**/
	/**------ABOUT------**/
	/**-----------------**/
	.about-layout{
		display: flex; 
		width: 100%; 
		height: 100vh;
	}

	.gray-about{
		width: 25%; 
		background-color: #424242; 
		display: flex; 
		flex-direction: column; 
		justify-content: center; 
		padding-left: 2vw;
	}
	.black-about{
		width: 47%; 
		background-color: #212121; 
		display: flex; 
		flex-direction: column;
		justify-content: center; 
		align-items: center; 
		text-align: right; 
		color: white; 
		padding-right: 2vw;
		padding-top:9vw;
	}
	.white-about{
		width: 22%; 
		background-color: #DEDEDE; 
		display: flex; 
		flex-direction: column;
		justify-content: center;
		padding-left: 2vw; 
		padding-top:calc(1vw + 12px);
	}
	.capabilities{
		font-size: 0.9vw;
		line-height: 1.7vw;
		margin-top: 2vw!important;
		color: #DEDEDE;
		width: 100%;

	}
	.capabilities strong{
		font-size: 1.1vw;
		letter-spacing: 0.15vw;
	}
	.white-text{
		font-weight: 400; 
		font-size: 1.3vw; 
		line-height: 3.1vw; 
		letter-spacing: 0.15vw;
		width: 100%;
	}
	.black-text{
		font-weight: 400; 
		font-size: 1.25vw; 
		line-height: 3.1vw; 
		letter-spacing: 0.15vw;
		margin: 0px;
	}
	.portrait{
		width:15vw;
		margin-left: 20vw; 
		z-index: 9; 
		margin-bottom: 19.5vw;
	}
	/**-----------------**/
	/**-----CONTACT-----**/
	/**-----------------**/
	.contact-layout{
		box-sizing: border-box;
		display: flex; 
		width: 100%; 
		min-height: 100vh;
	}
	.dub-form{
		width:auto; 
		min-width:100%; 
		height: 710px;
	}

	.gray-contact{
		box-sizing: border-box;
		width: 29%; 
		background-image: url('https://www.kelseyfloyd.com/pf-media/contact-img-2.jpg'); 
		background-size: cover; 
		background-position: center; 
		background-repeat: no-repeat;	
	}
	.black-contact{
		box-sizing: border-box;
		width: 42%; 
		background-color: #212121; 
		display: flex; 
		justify-content: flex-start; 
		text-align: right; 
		color: white; 
		padding-right: 2vw;
		padding-top:27vh; 
		flex-direction: column; 
		gap:20px;
		
	}
	.white-contact{
		box-sizing: border-box;
		width: 29%; 
		background-color:#DEDEDE; 
		min-width: 420px; 
		display: flex; 
		justify-content: flex-start; 
		align-items: flex-start; 
		padding-top:27vh;
	}
	.contact-title{
		font-weight: 400; 
		font-size: 32px; 
		line-height: 37px; 
		letter-spacing: 2px; 
		color: #fff; 
	}
	.contact-text{
		text-align: right; 
		font-weight: 400; 
		font-size: 20px; 
		line-height: 32px; 
		letter-spacing: 2px;	
	}
	#contact-info{
		margin-top:23px;
	}
	/**-----------------**/
	/**-----GENERAL-----**/
	/**-----------------**/
	html, body{
		min-height: 100%;
	}
	.menu-logo{
		position:fixed; 
		width:20vw; 
		height: auto; 
		top:45vh; 
		right:4.5vw; 
		z-index:10;
	}
	.html-logo{
		width: 15vw;
		min-width: 150px;
		height: auto;
		z-index: 5;
		background-repeat: no-repeat;
	}
	.top-banner{
		height: 8vw;
		min-height: 80px;
		display:flex;    
		align-items: flex-end;
	}

	.cat-title{
		font-size:clamp(18px, 1.75vw, 42px);
		letter-spacing:  clamp(4px, 0.2vw, 11px)
	}

	#category-title{
		padding-left:24px;
		font-weight: 600;

	}

	::-webkit-scrollbar { display: none;}
	
	/**------------------**/
	/**--MEDIA QUIERIES--**/
	/**------------------**/

	@media only screen and (max-width: 1200px) {
		
		/**-----CONTACT-----**/

		.contact-text{
			font-size: 15px;
		}
		.contact-title{
			font-size: 28px;
		}
		.client-gallery-section{
			width: calc(100% - 265px);
		}
		.client-gallery-title{
			font-size:16px;
		}
		.client-gallery-name{
			font-size:16px; 
		}
		.client-gallery-description-title{
			font-size:16px;
		}
		.client-gallery-description{
			font-size:14px;
		}
	}

	@media only screen and (max-width: 1024px) {

		/**-----CONTACT-----**/
		
		.contact-layout{
			flex-direction: column;
		}

		.gray-contact{
			width: 100%;
			min-height:275px;
			background-image: url('https://www.kelseyfloyd.com/pf-media/contact-img-kelsey-floyd.png');
		}
		.black-contact{
			width: 100%;
			padding: 71px 15px 50px;
		}
		.white-contact{
			width: 100%;
			min-width: 0px;
			padding:10px 0px 50px;
		}

		.dub-form{
			height: 850px;
		}

		#contact-info{
			margin-top:0px;
		}

		/**--CLIENT GALLERIES--**/

		.client-gallery-section{
			width: 100%; 
			display:flex; 
			padding: 0px 15px; 
			align-items:end; 
			gap:5px; 
		}
		.client-gallery-title{
			font-size:14px; 
		}
		.client-gallery-name{
			font-size:14px; 
		}
		.client-gallery-description-title{
			display: none;
		}
		.client-gallery-description{
			display: none;
		}
		
	}

	@media only screen and (max-width: 800px){
		/**---LANDING PAGE---**/
		.img-1{
    		content: url(/pf-media/landing-img_charlotte-north-carolina-portrait-photographer.png);
    	}
		
		/**------CLIENT------**/

		.client-layout{
			flex-direction: column-reverse;
			min-height: 100%;
		}
		.gray-client{
			box-sizing: border-box;
			width: 100%;
			background-color: #DEDEDE;
			padding-top: 20%;
			padding-bottom: 20%;
			min-height: 100%;
		}
		.black-client{
			box-sizing: border-box;
			width: 100%;
			height: auto;
			padding: 34% 4% 11%;
			background-color: #424242;
		}
		.white-client{
			display: none;
		}
		.circle-img{
			width:100%; 
			height: auto;
			max-height: 100vh;
			max-width: 450px;
		}
		.client-story-link{
			flex-direction: column-reverse; 
			gap: 18px; 
			justify-content: center; 
			align-items: center;
		}
		.img-container{
			width:73%;
		}
		.text-container{
			width: 73%;
		}
		.quote{
			font-weight: 400; 
			font-size: 4.25vw;
			color: #212121;
		}
		.project{
			font-weight: 700; 
			font-size: 4.25vw;
			color: #212121;
		}
		.client-reverse-column{
			width: 100%;
			display: flex;
			width: 100%;
		}
		.client-container{
			height: calc(100vh - 134px);
			flex-direction: column;
		}
		.client-columns{
			width: 100%;
		}
		.client-square{
			min-height: 30vw !important;
		}
		.hidden-mobile{
			display: none;
		}
		.client-square-text{
			padding: 15px;
			justify-content: center;
			height: 32vw;
		}
		.client-container{
			min-height: calc(100vh - 95px);
		}
		.client-banner{
			min-height: 95px;
			align-items: end;
		}
		.client-banner::after {
				/* Added 15px to the fixed portion (225 + 15 = 240) */
				width: calc(240px + max(15vw, 150px)); 
			}
		.logo-banner{
			width: max-content !important; 
			display: flex !important;
			flex-wrap: nowrap !important; /* Prevents logos from stacking vertically */
			gap: 40px;
			animation: scroll-logos 35s linear infinite; /* Faster for smaller screens */
		}
		.logo-banner img:nth-child(54) {
			padding-right: 20px !important;
		}

		.logo-banner img:nth-child(50) {
			margin-right: -10px !important;
		}
		.client-gallery-title{
			display: none;
		}
		.client-gallery-name{
			font-size:clamp(18px, 1.75vw, 42px);
		}

		/**------ABOUT------**/

		.about-layout{
			flex-direction: column;
			min-height: 100%;
		}
		.gray-about{
			box-sizing: border-box;
			min-width: 100%;
			height: 23%;
		}
		.black-about{
			box-sizing: border-box;
			width: 100%;
			height: 46%;
			padding: 15px;
		}
		.white-about{
			box-sizing: border-box;
			width: 100%;
			height: 31%;
			padding:15px;
			align-items: flex-start;
			flex-direction: row-reverse;
			justify-content: flex-start;
		}
		.capabilities{
			font-size: 1.9vw;
			width: 100%;
			line-height: 3.7vw;
		}
		.capabilities strong{
			font-size: 2.1vw;
		}
		.white-text{
			font-size: clamp(1px, 3vw, 18px);
			line-height: 6.1vw; 
		    width: 100%;	
		}
		.black-text{
			font-size: clamp(1px, 3.5vw, 18px);
			line-height: 6.1vw; 
			padding: 0px 0px 0px 5vw!important;
			color: black;
			font-weight: 600;
		}
		.portrait{
			width: 26vw;
			margin-bottom: -23vh;
			margin-left: 14vw;
		}

		/**-----GENERAL-----**/

		.ql-editor{
			min-height: 100%;
		}
		.top-banner{
			min-height: 95px;
		}
		.top-banner .gallery-top-banner{
			height:115px;
		}
		.menuLabel{
			    font-size: 35px!important;
		}
		/*.mask{
			top: 250px!important;
		}*/
		#submenu{
			font-size: 20px!important;
		}
		#category-title{
		padding-left:15px;
		}

		.html-logo{
			width: 168px!important;
			height: 80.3852px!important;
			margin-left: -10px!important;
			visibility: visible!important;
			display: flex!important;
		}
		.menu-logo{
			width: 168px!important;
			height: 80.3852px!important;
			margin-left: -10px!important;
			visibility: visible!important;
			display: flex!important;
			top:10px; 
			right:56px; 
		}
		.hide-mobile{
			display: none;
		}

		/** This code is for increasing the size of the logo at this screen width, but is unnecessary for now*/
		.logoImage{
			    width: 168px!important;
				height: 80.3852px!important;
				margin-left: -10px!important;
		}
	}


	@media only screen and (max-width: 680px){
		.client-category{
			font-weight: 700;
			font-size: 13px;
			letter-spacing: 7%;
			color: #474747;
			line-height: 130%;
		}
		.client-quote{
			font-weight: 500;
			font-size: 13px;
			color: #626262;
			letter-spacing: 7%;
			margin-top: 8px;
			line-height: 130%;
		}
		.client-name{
			font-weight: 500;
			font-size: 18px;
			letter-spacing: 7%;
			color: #474747;
			margin-top: 8px;
			line-height: 130%;
		}
		.client-square-text{
			min-height: fit-content;
		}
		.client-banner{
			min-height: 170px;
			align-items: end;
		}
		/* Kill the curtain and fade entirely */
		.client-banner::after {
			content: none !important;
		}
		
		.logo-banner {
			/* Speed up the mobile scroll slightly since the distance is shorter */
			animation: scroll-logos 30s linear infinite; 
		}
		.client-quote{
			display: none;
		}
	}
