



/* Apply border-box to all elements */
*, *::before, *::after {
	box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Account for fixed/sticky headers */
}

body
{
	background: #032B35;
background: -webkit-linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
background: -moz-linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
background: linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#032B35", endColorstr="#032B35", GradientType=1);

	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	font-family:'Futura LT Book';}

.centric4{width:800px;margin:0 auto}
.centric5{width:95%;margin:0 auto}

#elem2{font-size: 40px;letter-spacing:2px;color:white;text-align:center;padding:20px;}
.white_v6{background:white;padding:50px;border-radius:50px;margin:0 auto;}

#cv_profile_actions li{display:inline-block;margin-right:20px}
#cv_profile_actions li a{font-size:18px;text-decoration:none;padding:10px 20px;color:white;}


.anchor{height:48px;}

.heading6{font-size:50px;text-align:center;color:white;margin-bottom:40px;}
.heading6 a{color:white}

/* Wrapper for snap scrolling */
.scroll-container {
	scroll-snap-type: y proximity;
	overflow-y: scroll;
	height: 100vh;
	scroll-behavior: smooth;
}

/* Fullscreen container class */
.fullscreen-container {
	width: 100%;
	min-height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	position: relative;
	box-sizing: border-box;
}
#website_menu{}
#website_menu ul{
	list-style:none;
	margin:0;
	padding:0;
	text-align:right;
}
#website_menu ul li{
	display:inline-block;
	margin-left:10px;
	background:#A6A6A6;
	padding:10px 20px;
	border-radius:0 0 10px 10px;
}
#website_menu ul li a{
	color:#fff;
	font-size:14px;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:2px;
	padding:10px 0;
	transition:color 0.3s;
	font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}
#website_menu ul li:hover{
	background: #e91c35;;
}


	#website_logo{text-align:left;margin-top:60px;}
	#website_logo img{margin-left:5px;margin-bottom:0px;width:30px;}


	body#inner #website_logo img{width:20px;}
	body#inner #website_logo.sticky img{width:10px;}
	#website_logo h1{
		font-family: 'League Spartan', sans-serif;
		font-size: 140px;
		color: #fff;
	
		margin: 0;
		padding: 0;
		letter-spacing: 0;
		transition: all 0.3s ease;
	}
	
	#main_logo.scrolled {
		    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 40px !important;
    z-index: 1000;
    background: rgb(4 48 60);
    padding: 10px 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);*/
	}
	
	#main_logo.scrolled img {
		width: 10px;
		height: auto;
	}
	#website_logo h2{
		font-size: 30px;
		color: #fff;
	
		margin: 0;

		letter-spacing: 2px;
		text-transform:uppercase
	}
	
	.search-container {
		position: relative;
		display: inline-block;
		font-size:18px;
	}
	.search-container.attr2{vertical-align:top;margin-top:10px;}

	
	.search-input {
		width: 300px;
		padding: 12px 20px 12px 45px;
		border-radius: 50px;
		border: none;
		font-size: 16px;
		outline: none;
		background: #fff;
		color: #333;
		transition: all 0.3s ease;
		box-shadow: 5px -5px 3px 1px rgb(49 45 45 / 42%);
		letter-spacing:0;

	font-family: 'Cooper Hewitt';
		text-transform:uppercase;	
	}
	
	.search-input:focus {
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
		width: 350px;
	}
	
	.search-icon {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		color: #999;
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.search-input:focus + .search-icon {
		color: #e91c35;
	}
	
	/* Prominent Email Button */
	.button3 {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 15px 30px;
		background: linear-gradient(135deg, #e91c35 0%, #c71828 100%);
		color: #fff;
		font-size: 18px;
		
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 1px;
		border-radius: 50px;
		
		transition: all 0.3s ease;
		font-family: 'Anton', sans-serif;
		position: relative;
		overflow: hidden;
	}
	
	.button3::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		transform: translate(-50%, -50%);
		transition: width 0.6s, height 0.6s;
	}
	
	.button3:hover::before {
		width: 300px;
		height: 300px;
	}
	
	.button3:hover {
		box-shadow: 0 6px 25px rgba(233, 28, 53, 0.6);
		transform: translateY(-2px);
	}
	
	.button3 svg {
		z-index: 1;
		position: relative;
	}
	
	.button3:active {
		transform: translateY(0);
		box-shadow: 0 2px 10px rgba(233, 28, 53, 0.4);
	}

	#fp_slide_2 {
    font-family: 'Futura LT Heavy';
    font-size: 80px;
    color: #fff;
    padding: 90px 0px 60px;
  
    /* background: url(/media/v6/bg1.jpg) center bottom repeat-x; */
    background-size: cover;
    min-height: 658px;
    text-shadow: 2px 2px 8px rgb(57 54 54 / 80%);
}
	#fp_slide_2 i{color:#e91c35;font-family: 'Futura LT BoldOblique';}
	#fp_row_v6_wrapper{
	/* height:100vh; */
	position: relative;
	}

	#fp_slide_2 .red{font-size:90px}
	
	/* Scroll Indicator */
	.scroll-indicator {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		z-index: 100;
		opacity: 1;
		transition: opacity 0.3s ease;
		margin: 0 auto;
		text-align: center;
	}
	
	.scroll-indicator.hidden {
		opacity: 0;
		pointer-events: none;
	}
	
	.scroll-arrow {
		animation: bounce 2s infinite;
		color: #fff;
	}
	
	.scroll-indicator span {
		color: #fff;
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-family: 'Anton', sans-serif;
	}
	
	@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {
			transform: translateY(0);
		}
		40% {
			transform: translateY(-10px);
		}
		60% {
			transform: translateY(-5px);
		}
	}

#footer_2 a{
	color:#fff;
	font-size:20px;
	text-decoration:none;
	letter-spacing:2px;
	padding:10px 0;
	text-transform:uppercase;
	font-family:'Cooper Hewitt Book';

}

#fp_slide_footer {
    font-family: 'Anton', sans-serif;
    font-size: 84px;
    color: #fff;
    padding: 100px 20px;
    letter-spacing: 3px;
    /* background: url(/media/v6/bg1.jpg) center top repeat-x; */

	line-height:1.2
   
}

#fp_slide_footer h2{font-size:150px}
#fp_slide_footer h3{font-size:70px;font-family:'League Spartan';width:70%}
#fp_slide_footer h4{font-size:64px;font-family:'Cinematografica';width:70%}

	#fp_slide_footer i{font-family:Times New Roman, serif; font-style:normal; font-weight:bold; color:#e91c35;}
	#fp_slide_footer{
/* background: url(/media/v6/bg0.jpg) center top repeat-x;
	background-size: cover; */
	}












#fp_row_v6 {
	overflow: hidden;
	padding: 40px 0;
	
	margin: 0 auto 0;
	
}
#fp_row_v6 h2{font-family: 'Futura LT Book';}

.js_caroucel {
	/* Styles will be dynamically added by JavaScript */
	list-style: none;
	padding: 0;
	margin: 0;
}

.js_caroucel li {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	
	border-radius: 35px;
	position: relative;
	flex-shrink: 0;
}

.js_caroucel li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel li.loaded::before {
	display: none;
}

@keyframes skeleton-loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.js_caroucel li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	position: relative;
	z-index: 2;
}

.js_caroucel li.loaded img {
	opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
	.js_caroucel li,
	.carousel-row li {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.js_caroucel li,
	.carousel-row li {
		width: 150px;
		height: 150px;
	}
}

/* Third carousel styles - single row */
#logo_scroller {
	overflow: hidden;
	background:white;
	margin: 100px 0;
	width: 100%;
	padding:30px 0;
	position: relative;
	   
}



#logo_scroller_footer {
	background: url(/media/v6/rip2c.png) top center;
	background-size:cover;
	height:150px;
}


.rip_bar{overflow: hidden;
	padding: 70px 0 0;
	margin: 0 auto;
	width: 100%;
		background: url(/media/v6/rip1c.png) top center;
	background-size:cover;}
.rip_bar_footer{background: url(/media/v6/rip2c.png) top center;
	background-size:cover;
	height:150px;
margin-top: -75px;}


.js_caroucel_3 {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: nowrap;
	width: max-content;
	
}

.js_caroucel_3 li {
	
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	/*
    background: #fff;
    border-radius: 20px;
	padding: 15px;*/
    position: relative;
	 
    margin-right: 20px;
    
}

.js_caroucel_3 li::before {
	display: none;
}

.js_caroucel_3 li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	opacity: 1;
	position: relative;
	z-index: 2;
}

/* Responsive for third carousel */
@media (max-width: 1200px) {
	.js_caroucel_3 li {
		width: 180px;
		height: 90px;
	}
}

@media (max-width: 768px) {
	.js_caroucel_3 {
		gap: 15px;
	}
	
	.js_caroucel_3 li {
		width: 120px;
		height: 60px;
		margin-right: 15px;
	}
}

@media (max-width: 480px) {
	.js_caroucel_3 {
		gap: 10px;
	}
	
	.js_caroucel_3 li {
		width: 100px;
		height: 50px;
		margin-right: 10px;
	}
}

/* Second carousel styles */
#fp_slide_3_wrapper
{
/* background: url(/media/v6/bg2.jpg) top center repeat-x; */
    background-size: cover;
	padding:0 0;
}


#fp_slide_3 {
	overflow: hidden;
	padding: 40px 0 100px;
	max-width: 1400px;
	margin: 0 auto;

	

}


#fp_slide_3 h1{
	color:#fff;
	text-align:center;
	font-family: 'League Spartan', sans-serif;
	font-size:178px;
	margin-bottom:20px;
}

#fp_slide_3 h2{
	color:#fff;
	text-align:center;
	
	font-size:32px;
	margin-top:0;
	margin-bottom:60px;
	
}

#fp_slide_4
{
	/* background: url(/media/v6/bg1.jpg) top center repeat-x; */
    background-size: cover;
	padding:100px 0 0;
}

#fp_slide_4 h1{
	color:#fff;
	text-align:center;
	font-family: 'League Spartan', sans-serif;
	font-size:178px;
	margin-bottom:20px;
}

#bertie_bg{text-align:center;margin:50px auto}
#bertie_bg img{margin:0 30px;}
#cv_profile_actions li .fa{background:white;color:#043a4a;width:40px;height:40px;border-radius:100%;text-align:center;line-height:40px;font-size:18px;display:inline-block;transition:all 0.3s ease;margin-right:10px;}

#cv_profile_actions li .fa.red{background:#e91c35;color:white !important;}

#page_cv_profile #title {
    color: #000;
    font-size: 140px;
    display: block;
    margin-right: 0;
    font-family: 'Cinematografica';
    line-height: 1;
    letter-spacing: 0; 
}



#fp_slide_4 h2{
	color:#fff;
	line-height:1;
	display:block;
	margin-bottom:30px;
	font-size:75px;
	margin-top:0;

	font-family: 'League Spartan', sans-serif;
}
#fp_slide_4 h2 i{    font-size: 24px;
    margin-right: 10px;
    display: inline-block;
}
#fp_slide_5
{
	/* background: url(/media/v6/bg3.png) top center repeat-x; */
    background-size: cover;
	padding:100px 0;
	position:relative;
}

#fp_slide_5 h1{
	color:#fff;
	text-align:center;
	font-family: 'League Spartan';
	font-size:178px;
	margin-bottom:20px;
}

#fp_slide_5 h2{
	color:#fff;
	text-align:center;
	font-family:'Cinematografica';
	font-size:60px;
	margin-top:0;
	margin-bottom:60px;
	letter-spacing:4px;
	
}

#image1{
	position:absolute;
	bottom:100;
	left:0;
	width:350px;
}
#image2{
	position:absolute;
	bottom:0;
	right:0;
	width:350px;
}


#image1{
	position:absolute;
	bottom:100px;
	left:0;
	width:350px;
}
#image3{
	position:absolute;
	top:0;
	right:0;
	width:350px;
}
#image4{
	position:absolute;
	bottom:100px;
	left:0;
	width:350px;
}
#image5{
	position:absolute;
	bottom:-100px;
	right:0;
	width:450px;
}



#fp_slide_6{display:none;}

#fp_slide_7{position:relative;
/* background: url(/media/v6/bg2.jpg) top center repeat-x; */
    background-size: cover;
	padding:0 0;
	position:relative;}
.js_caroucel_2 {
	display: grid;
	grid-template-columns: repeat(4, 200px);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.js_caroucel_2 li {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
}
.js_caroucel_5 li img{ filter:grayscale(100%)}

.js_caroucel_2 li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel_2 li.loaded::before {
	display: none;
}

.js_caroucel_2 li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.js_caroucel_2 li.loaded img {
	opacity: 1;
}

.js_caroucel_2 li a {
	padding-top: 90px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	letter-spacing:1px;
	text-transform:uppercase;
	font-family: 'Cooper Hewitt';
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
	pointer-events: auto;
	cursor: pointer;
	text-align: center;
	background: transparent;
	transition: background 0.3s;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.js_caroucel_2 li a:hover {
	background: transparent;
}

/* Red overlay when dropdown is active */
.js_caroucel_2 li.dropdown-active::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(233, 28, 53, 0.5);
	z-index: 4;
	pointer-events: none;
	border-radius: 20px;
	transition: opacity 0.3s ease;
}



.js_caroucel_2 {
	display: grid;
	grid-template-columns: repeat(4, 200px);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.js_caroucel_2 li {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
}

.js_caroucel_2 li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel_2 li.loaded::before {
	display: none;
}

.js_caroucel_2 li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.js_caroucel_2 li.loaded img {
	opacity: 1;
}
















/* .js_caroucel_5 grid layout - disabled for carousel mode */
/*
.js_caroucel_5 {
	display: grid;
	grid-template-columns: repeat(auto-fit, 200px);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}
*/

/* Carousel container controls layout */
.carousel-container .js_caroucel_5 {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;

}

.carousel-container .js_caroucel_5 li {
	width: 150px;
	height: auto;
	display: block;
	flex-shrink: 0;
	margin-right: 20px;
	text-align: center;
}

.carousel-container .js_caroucel_5 li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s ease;
}

.carousel-container .js_caroucel_5 li a:hover {
	transform: scale(1.05);
}

.carousel-container .js_caroucel_5 li img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	margin-bottom: 10px;
}

.carousel-container .js_caroucel_5 li span {
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
	font-family: 'Cooper Hewitt';
}

header {
    color: white;
    position: relative;
    z-index: 99;
    height: auto; 
}

#page_cv_profile {
    margin-top: 0;
}

#cv_profile_actions{margin:20px auto}
/* Keep original styles for non-carousel usage - commented out to prevent conflicts */
/*
.js_caroucel_5 li {
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
}

.js_caroucel_5 li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel_5 li.loaded::before {
	display: none;
}

.js_caroucel_5 li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	
	transition: opacity 0.3s ease-in-out;
}

.js_caroucel_5 li.loaded img {
	opacity: 1;
}

.js_caroucel_5 li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	letter-spacing:1px;

	font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;


	text-align: center;
	background: rgba(0,0,0,0.3);
	transition: background 0.3s;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.js_caroucel_5 li a:hover {
	background: rgba(233, 28, 53, 0.8);
}
*/


@media (max-width: 1200px) {
	.js_caroucel_2 {
		grid-template-columns: repeat(auto-fill, 180px);
		grid-template-rows: repeat(2, 180px);
	}
	.js_caroucel_2 li {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.js_caroucel_2 {
		grid-template-columns: repeat(auto-fill, 150px);
		grid-template-rows: repeat(2, 150px);
	}
	.js_caroucel_2 li {
		width: 120px;
		height: 120px;
	}

	#page_cv_profile .one_cv_row.latest_credits a {
   
    margin: 10px 10px;
   
	}

}

/* Staff Members Styles - Clean Grid Design */
.staff-members-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 60px auto;
	max-width: 1400px;
	padding: 0 20px;
}

.staff-members-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	justify-items: center;
}

.staff-member {
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.staff-member:hover {
	transform: scale(1.05);
}

.staff-member.active .staff-thumbnail img {
	border: 3px solid #e91c35;
}

.staff-name {
	font-size: 50px;
	color: #fff;
	
	letter-spacing:4px;
	margin-bottom: 1px;

	font-family: 'Cinematografica';

	
}

.staff-thumbnail {
	width: 150px;
	height: 150px;
	border-radius: 35px;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

.staff-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 35px;
	transition: all 0.3s ease;
	aspect-ratio: 1 / 1;
}

.staff-description-container {
	min-height: 0;
	max-height: 0;
	padding: 0 40px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
	grid-column: 1 / -1;
	width: 100%;
}

.staff-description-container.visible {
	min-height: 50px;
	max-height: 1000px;
	padding: 40px;
	opacity: 1;
}

.staff-description {
	display: none;
	animation: fadeIn 0.5s ease;
}


.staff-description>span {
	display: block;
	padding: 20px;
	
}

.staff-description>span img{
	float:right;
	margin:0 0px 20px 50px;
	height:300px;
	width:auto;

	border-radius:20px;
	
	transition: all 0.4s ease;
}
.staff-description>span img:hover{
	transform: scale(1.05) rotate(-2deg);

}

.staff-description.active {
	display: block;
	line-height:1.5
}

.staff-description h3 {
	color: #fff;
	
	margin-bottom:30px;display:block;
	font-family:'Cinematografica';
	font-size:110px;
	letter-spacing:4px;
	font-weight:normal;
	text-transform:uppercase;
	line-height:1;
}

.staff-description h4{font-family:'Cooper Hewitt';font-size:40px;line-height:1;margin-bottom:30px;display:block}

.staff-description p {
	color: #fff;
	font-size: 6\26px;
	line-height: 1.6;
	margin: 0;
	font-family: 'Futura LT Book';
}

#bar3{background: #cc9623;
background: linear-gradient(90deg, rgba(204, 150, 35, 1) 0%, rgba(209, 209, 201, 1) 48%, rgba(204, 150, 35, 1) 99%);;
font-size:40px;color:#000;text-align:center;padding:50px;margin-top:100px;font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1400px) {
	.staff-members-container {
		max-width: 1200px;
	}
}

@media (max-width: 850px) {
	.staff-members-grid {
		gap: 20px;
		overflow-x: auto;
		justify-content: flex-start;
	}
	
	.staff-thumbnail {
		width: 120px;
		height: 120px;
		flex-shrink: 0;
	}
	
	.staff-name {
		font-size: 16px;
	}
	
	.staff-member {
		flex-shrink: 0;
	}
}

@media (max-width: 520px) {

	#website_logo {
    
   margin-top: 15px
}


	.staff-members-grid {
		gap: 15px;
	}
	
	.staff-thumbnail {
		width: 100px;
		height: 100px;
	}
	
	.staff-name {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.staff-description-container {
		padding: 25px;
	}
	
	.staff-description h3 {
		font-size: 40px;
	}

	.staff-description>span img {
    float: none;
    margin: 0 auto 20px;
   
}

#page_cv_profile #title {
    font-size: 70px;
	margin-bottom:10px;
}

#page_cv_profile #jobTitle {
    font-size: 28px;
}
	
	.staff-description p {
		font-size: 14px;
	}
}

/* Testimonials Styles - Twisted Paper Effect */
.testimonial-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.testimonial {
	color:white;
	padding: 30px;
	border-radius: 20px;
	
	width: 100%;

	
	position: relative;
}

.testimonial .fa-star {
	color: #fff;
	font-size: 30px;
	margin: 0 5px;
}



.testimonial p {
	font-size: 20px;
	line-height: 1.6;
	color: #fff;
	
	margin: 0 0 20px 0;
	  font-family: 'League Spartan';

}

.testimonial h3 {
	font-size: 20px;
	color: #e91c35;
	font-weight: bold;
font-family:"Open Sans", sans-serif;
	margin: 0 0 20px 0;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
	.search-container{display:none}

	#fp_slide_2 {
     font-size: 40px;
}
#fp_slide_2 .red{
     font-size: 40px;
}


	
	/* Smooth scroll padding for smaller headers */
	html {
		scroll-padding-top: 60px;
	}
	
	/* Containers */
	.centric, .centric2, .centric3, .centric4 {
		width: 95% !important;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.white_v6 {
		padding: 30px 20px;
		border-radius: 25px;
	}
	
	/* Typography */
	#elem2 {
		font-size: 24px;
		padding: 15px;
		line-height: 1.4;
	}
	
	.heading6 {
		font-size: 32px;
		margin-bottom: 25px;
		line-height: 1.2;
	}
	
	#website_logo h1 {
		font-size: 50px !important;
	}
	
	#website_logo h2 {
		font-size: 12px !important;
	}
	
	/* CV Profile Actions */
	#cv_profile_actions {
		text-align: center;
	}
	
	#cv_profile_actions li {
		display: block;
		margin-right: 0;
		margin-bottom: 0px;
		text-align: left;
	}
	
	#cv_profile_actions li a {
		display: block;
		font-size: 16px;
		padding: 12px 15px;
	}
	
	/* Grid Layouts */
	.container_v6 {
		grid-template-columns: 1fr !important;
		padding: 30px 20px;
		gap: 15px;
	}
	
	.container_v6 a {
		font-size: 22px;
	}
	
	/* Staff Members */
	.staff-description h4 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	/* Footer */
	#footer_header_v6 {
		padding: 40px 0;
	}
	
	#footer_header_v6 .centric2 {
		flex-direction: column;
		gap: 30px;
	}
	
	#footer_header_v6 > div > div {
		font-size: 16px;
		text-align: center;
	}
	
	#footer_header_v6 h4 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	#footer_header_v6 .c a {
		margin: 0 20px 0 0;
	}
	
	#leaf1, #leaf2 {
		height: 50px;
		margin: 0 5px;
	}
	
	img#footer_logo {
		width: 100px;
	}
	
	/* Slides */
	#fp_slide_footer h3 {
		font-size: 40px;
		width: 90%;
	}
	
	#fp_slide_footer h4 {
		font-size: 36px;
		width: 90%;
	}
	
	#fp_slide_3 h1, #fp_slide_4 h1, #fp_slide_5 h1 {
		font-size: 50px;
	}
	
	#fp_slide_3 h2, #fp_slide_4 h2, #fp_slide_5 h2 {
		font-size: 28px;
		width: 90%;
	}
	
	/* Bar */
	#bar3 {
		font-size: 28px;
		padding: 30px 20px;
		line-height: 1.4;
	}
	
	/* Testimonial Images */
	.testimonial_images img {
		margin: 0 15px;
		max-width: 80%;
	}
	
	#t1 {
		width: 200px;
	}
	
	#t2 {
		width: 220px;
		margin: 0 40px;
	}
	
	#t3 {
		width: 200px;
	}
	
	#t4 {
		width: 180px;
		top: 10px;
		right: 20px;
	}
	.staff-members-grid {
   
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

}

.staff-description-container.visible {
 
    padding: 0;
   
}

	/* Carousel Items */
	.js_caroucel_2 li a{font-size:14px;padding-top: 70px;}
	.js_caroucel_5 li img {
		width: 120px;
		height: 120px;
	}
	
	.js_caroucel_5 li span {
		font-size: 14px;
	}
	
	/* Carousel Wrapper */
	.carousel-wrapper {
		padding: 0 40px;
		padding-bottom: 60px;
	}
	
	.carousel-arrow {
		width: 35px;
		height: 35px;
	}
	
	/* Bertie Background */
	#bertie_bg img {
		margin: 0 15px;
		max-width: 80%;
		height: auto;
	}
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
	/* Smooth scroll padding for mobile headers */
	html {
		scroll-padding-top: 50px;
	}
	
	/* Typography */
	#elem2 {
		font-size: 20px;
		padding: 10px;
	}
	
	.heading6 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	#website_logo h1 {
		font-size: 40px !important;
	}
	
	#website_logo img {
		width: 20px !important;
	}
	
	body#inner #website_logo img {
		width: 15px !important;
	}
	
	/* White Container */
	.white_v6 {
		padding: 20px 15px;
		border-radius: 20px;
	}
	
	/* CV Profile */
	#cv_profile_actions li a {
		font-size: 14px;
		padding: 5px 0;
	}
	
	#cv_profile_actions li .fa {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 16px;
		margin-right: 8px;
	}
	
	/* Grid */
	.container_v6 {
		padding: 20px 15px;
	}
	
	.container_v6 a {
		font-size: 18px;
	}
	
	/* Footer */
	#footer_header_v6 {
		padding: 30px 0;
	}
	
	#footer_header_v6 > div > div {
		font-size: 14px;
	}
	
	#footer_header_v6 h4 {
		font-size: 18px;
	}
	
	#footer_header_v6 .b a {
		font-size: 28px;
	}
	
	#footer_header_v6 .c a {
		margin: 0 10px 15px 0;
		display: inline-block;
	}
	
	#footer_header_v6 .fa-envelope,
	#footer_header_v6 .fa-phone {
		width: 40px;
		height: 40px;
	}
	
	#leaf1, #leaf2 {
		height: 40px;
		margin: 0 3px;
	}
	
	/* Slides */
	#fp_slide_footer h3 {
		font-size: 28px;
		width: 95%;
		display:block;
		margin:0 auto;
		text-align:center;
	}
	
	#fp_slide_footer h4 {
		font-size: 24px;
		width: 95%;
		display:block;
		margin:0 auto;
		text-align:center;
	
	}
	
	#fp_slide_footer h2 {
		font-size: 80px;
	}
	
	#fp_slide_3 h1, #fp_slide_4 h1, #fp_slide_5 h1 {
		font-size: 36px;
	}
	
	#fp_slide_3 h2, #fp_slide_4 h2, #fp_slide_5 h2 {
		font-size: 20px;
		width: 95%;
	}
	
	#fp_slide_4 h2 i {
		font-size: 18px;
	}
	
	/* Bar */
	#bar3 {
		font-size: 20px;
		padding: 20px 15px;
		margin-top: 50px;
	}
	
	/* Staff Description */
	.staff-description h4 {
		font-size: 24px;
	}
	
	/* Testimonial Images - Stack Vertically */
	.testimonial_images {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.testimonial_images img {
		margin: 0 !important;
		transform: rotate(0deg) !important;
	}
	
	#t1,
	#t2,
	#t3 {
		width: 90%;
		max-width: 280px;
		margin: 0 !important;
	}
	
	#t4 {
		position: static;
		width: 90%;
		max-width: 240px;
		margin: 20px auto 0;
		transform: rotate(0deg) !important;
	}
	
	#img3 {
		width: 200px;
		right: 10px;
	}
	
	/* Carousel Items */
	.js_caroucel li,
	.js_caroucel_2 li,
	.js_caroucel_3 li {
		width: 150px ;
		height: 150px ;
	}

	.js_caroucel_3 li {
		width: 100px ;
		height: 70px ;
	}
	
	.js_caroucel_5 li img {
		width: 100px;
		height: 100px;
	}
	
	.js_caroucel_5 li span {
		font-size: 12px;
	}
	
	/* Carousel Wrapper */
	.carousel-wrapper {
		padding: 0 30px;
		padding-bottom: 50px;
	}
	
	.carousel-arrow {
		width: 30px;
		height: 30px;
	}
	
	.carousel-arrow i {
		font-size: 14px;
	}
	
	/* Bertie Images */
	#bertie_bg {
		margin: 30px auto;
	}
	
	#bertie_bg img {
		margin: 0 10px;
		max-width: 90%;
	}
	
	/* Menu */
	#website_menu ul li {
		margin-left: 5px;
		padding: 8px 12px;
	}
	
	#website_menu ul li a {
		font-size: 12px;
		letter-spacing: 1px;
	}
	
	/* Scroll Indicator */
	.scroll-indicator {
		font-size: 14px;
	}
	
	/* Latest Credits */
	.latest_credits a {
		width: 100px !important;
	}
	
	.latest_credits a img {
		width: 100px !important;
		height: 133px !important;
	}
	
	/* Category Dropdown */
	.category-dropdown {
		min-width: 180px;
		font-size: 14px;
	}
	
	.category-dropdown a {
		padding: 12px 20px;
		font-size: 14px;
	}
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
	#website_logo h1 {
		font-size: 32px !important;
	}
	
	.heading6 {
		font-size: 24px;
	}
	
	#elem2 {
		font-size: 18px;
	}
	
	#fp_slide_3 h1, #fp_slide_4 h1, #fp_slide_5 h1 {
		font-size: 28px;
	}
	
	#fp_slide_3 h2, #fp_slide_4 h2, #fp_slide_5 h2 {
		font-size: 18px;
	}
	
	.container_v6 a {
		font-size: 16px;
	}
	
	#bar3 {
		font-size: 18px;
		padding: 15px 10px;
	}
	
	.carousel-wrapper {
		padding: 0 20px;
		padding-bottom: 40px;
	}
	
	.js_caroucel li,
	.js_caroucel_2 li {
		width: 120px ;
		height: 120px ;
	}

	.js_caroucel_3 li {
		width: 100px ;
		height: 100px ;
	}

}

@media (max-width: 768px) {
	.testimonial-container {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px 15px;
	}
	
	.testimonial {
		max-width: 100%;
		padding: 25px;
	}
	
	.testimonial p {
		font-size: 14px;
	}
	
	.testimonial h3 {
		font-size: 13px;
	}
}

/* Photo Gallery - Angled Photos Styles */
.photo-gallery-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.photo-item {
	width: 280px;
	height: 350px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.photo-item:nth-child(1) {
	transform: rotate(-4deg);
}

.photo-item:nth-child(2) {
	transform: rotate(3deg);
}

.photo-item:nth-child(3) {
	transform: rotate(-2deg);
}

.photo-item:nth-child(4) {
	transform: rotate(5deg);
}

.photo-item:nth-child(5) {
	transform: rotate(-3deg);
}

.photo-item:hover {
	transform: rotate(0deg) scale(1.1);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 8px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#t4{width: 278px;
    transform: rotate(15deg);
    margin-top: -50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    position: absolute;
    animation: 0;
    top: 18px;
    right: 56px;
    border-radius: 20px;}
#t4:hover{filter: grayscale(0%);}

@media (max-width: 768px) {
	.photo-gallery-container {
		gap: 30px;
		padding: 30px 15px;
	}
	
	.photo-item {
		width: 220px;
		height: 280px;
	}


	#t4 {
    width: 90%;
    transform: rotate(0);
    margin-top: 0;
    filter: grayscale(100%);

    position: relative;
    top: 0;
    top: 0;
    right: 0;
    border-radius: 20px;
	margin:0 auto 20px;
	display:block;
}

}

@media (max-width: 480px) {
	.photo-item {
		width: 100%;
		max-width: 280px;
		height: 350px;
	}
}


footer {
    background: none;
    margin-top: 0;
}

.testimonial_images{text-align:center;vertical-align:middle}
.testimonial_images img{height:auto;margin:0 30px;display:inline-block;vertical-align:middle}

#t1{width: 300px;transform:rotate(-15deg);filter: grayscale(100%);transition: filter 0.3s ease;}
#t1:hover{filter: grayscale(0%);}
#t2{width: 330px;transform:rotate(0deg);margin:0 70px;filter: grayscale(100%);transition: filter 0.3s ease;}
#t2:hover{filter: grayscale(0%);}
#t3{width: 300px;transform:rotate(15deg);margin-top:-50px;filter: grayscale(100%);transition: filter 0.3s ease;}
#t3:hover{filter: grayscale(0%);}

#t1_mobile, #t2_mobile, #t3_mobile {
	display:none
}

@media (max-width: 480px) {
	#t1_mobile, #t2_mobile, #t3_mobile {
		display: inline-block;
	width: 90%;margin:10px auto;transform:rotate(0);filter: grayscale(100%);transition: filter 0.3s ease;
	}
	#t1,
	#t2,
	#t3{display:none}
}



#img3{
	position:absolute;
	bottom:0;
	right:20px;
	width:300px;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.8s ease-out;
}
#img3.slide-in {
	opacity: 1;
	transform: translateX(0);
}

#fp_row_1 h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

#fp_row_1 span#blurb {
    display: none;
    color: #ffffff;
    font-size: 20px;
    margin: 20px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#fp_row_1 span#blurb input {
    background: #fff;
    border: 2px solid #e91c35;
    border-radius: 5px;
    color: #032B35;
    font-family: 'Courier Prime', monospace;
    text-align: center;
}

