@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}

body {
font-family: "Futura Std";
}

.navigation_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.logo img {
  width: 100px;
  height: auto;
}


.navigation_text {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.navigation_text a {
  text-decoration: none;
  color: white;
}

.navigation_text a:hover{
	color:#D80F12;
	text-decoration: underline;
}

.navigation_text span {
  color: #D80F12;
}

.hero {
  margin-top: 49px; 
  position: static;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero img{
	position: absolute;
	width:100%;
	height:100%;
	object-fit:cover;
}

.hero video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero_text{
	position:sticky;
	z-index: 2;
	color: white;
	padding: 20px 5%;
	margin-top: -150px;
}

.hero_text h1{
	font-size: 70px;
}

.hero_text p{
	font-size: 20px;
	max-width: 1200px;
}

.aboutus {
	margin-top: 70px;
	padding: 50px 10%;
	background: #fff;
	display:flex;
	flex-direction: row;
	gap:80px;
}


.about_text{
	margin-top: 30px;
	flex:300%;
}

.about_text h2 {
	font-size: 36px;
	margin-bottom: 20px;
	text-align: center;
}

.about_text p {
	font-size: 25px;
	max-width: 900px;
	line-height: 1.8;
	text-align: center
}

.about_image img{
	width:100%;
	height: auto;
	border-radius: 10%;
}

.button{
	font-size: 25px;
	text-align: center;
	margin-top: 30px;
}

.button a {
	background-color: #322B2C;
	display: inline-block;
	padding: 12px 24px;
	color: white;
	text-decoration: none;
	border-radius: 20px;
}

.button a:hover{
	background-color: #D80F12;
}

.button a:visited{
	color: white;
}

.services{
	padding: 20px 10%;
	padding-bottom: 40px;
	background:#D9D9D9;
	display: flex;
	flex-direction: column;
	gap:10px;
	align-content: center;
}

.services_text{
	margin-top: 10px;
	font-size: 25px;
	text-align: center;
}

.services_card{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 30px;
}

.services_image {
	cursor: pointer;
	position: relative;
	width: 300px;
	height: 600px;
	border-radius: 30px;
	overflow: hidden;
}

.services_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services_image h2{
	font-size:36px;
	text-align: center;
	bottom:100px;
	position:relative;
	z-index: 2;
	color: white;
}

.content {
	position: absolute;
	inset: 0;
	background: rgba(155, 76, 76, 0.7);
	color: white;
	display: flex;
	align-items: center;
	padding-left: 30px;
	opacity: 0;
}

.content:hover{
	opacity: 1;
	transition: 0.6s;
}

.awards{
	text-decoration: none;
	padding: 20px 10%;
	padding-bottom: 40px;
	justify-content: center;
}

.awards_text{
	text-align:center;
	font-size: 25px;
	margin-top: 10px;
	
}

.awards_card{
  display: flex;
  justify-content: center;
  gap: 80px;
}

.awards_images{
	cursor: pointer;
	position: relative;
	width: 400px;
	height: 400px;
	border-radius: 200px;
	overflow: hidden;
}

.awards_images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.awards_content{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-size: 15px;
  padding: 20px;

  opacity: 0;
}

.awards_content:hover{
	opacity: 1;
	
}

.awards_content ul{
	list-style: none;
	padding: 0;
	transition: 0.6s;
}

span.silver{
	color: #8A8080;
}

span.gold{
	color: #AB9C35;
}

span.bronze{
	color:#D68550;
}

.promaxdba{
	margin-top: 200px;
	display:flex;
	flex-direction: column;
	gap:20px;
}

.promax{
	display:flex;
	flex-direction: column;
	gap:20px;
}

.nyf{
	display:flex;
	flex-direction: column;
	gap:20px;
}
.awards_name{
	text-align: center;
	font-size: 20px;
}

.latest-work {
	display: flex;
	flex-direction: column;
	background: #ddd;
	padding-top: 40px;
	padding-bottom: 40px;
	gap:10px;
	text-align: center;
	font-size: 25px;
}

.gallery {
	padding-top: 20px;
	position: relative;
	width: 620px;
	height: 400px;
	margin: 0 auto;
}

/* hide radios */
.gallery input {
  display: none;
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* base card */
.card {
  position: absolute;
  width: 400px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.85);
  transition: 0.6s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDE 1 */
#slide1:checked ~ .gallery-track .card:nth-child(1) {
  left: 110px;
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}
#slide1:checked ~ .gallery-track .card:nth-child(2) {
  left: 220px;
  opacity: 0.6;
  z-index: 2;
}
#slide1:checked ~ .gallery-track .card:nth-child(3) {
  left: 0;
  opacity: 0.6;
  z-index: 1;
}

/* SLIDE 2 */
#slide2:checked ~ .gallery-track .card:nth-child(2) {
  left: 110px;
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}
#slide2:checked ~ .gallery-track .card:nth-child(3) {
  left: 220px;
  opacity: 0.6;
}
#slide2:checked ~ .gallery-track .card:nth-child(1) {
  left: 0;
  opacity: 0.6;
}

/* SLIDE 3 */
#slide3:checked ~ .gallery-track .card:nth-child(3) {
  left: 110px;
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}
#slide3:checked ~ .gallery-track .card:nth-child(1) {
  left: 220px;
  opacity: 0.6;
}
#slide3:checked ~ .gallery-track .card:nth-child(2) {
  left: 0;
  opacity: 0.6;
}

/* NAV ARROWS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  cursor: pointer;
  display: none;
  z-index: 9;
}

.left { left: -60px; }
.right { right: -60px; }

/* show correct arrows */
#slide1:checked ~ .left:not(.s2):not(.s3),
#slide1:checked ~ .right:not(.s2):not(.s3) {
  display: block;
}

#slide2:checked ~ .s2 {
  display: block;
}

#slide3:checked ~ .s3 {
  display: block;
}

.caption{
	padding:40px 9%;
	text-align: center;
	align-content: center;
}

.caption p{
	padding-top: 10px;
	font-style: italic;
	font-size: 23px;
	line-height: 1.8;
}

.caption h1{
	font-size:40px;
}
.footer {
  background: #000;
  color: #fff;
  padding: 50px 8%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.button_contact{
	font-size: 25px;
	text-align: center;
	margin-top: 30px;
}

.button_contact a {
	background-color: #D80F12;
	display: inline-block;
	padding: 12px 24px;
	color: white;
	text-decoration: none;
	border-radius: 20px;
}

.button_contact a:hover{
	background-color: #322B2C;
}

.button_contact a:visited{
	color: white;
}


/* LEFT */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #D80F12;
}

.footer-contact h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-item a{
	color: white;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }
}

.our_mission{
	margin-top: 70px;
	margin-bottom: 70px;
}

.our_mission h1{
	text-align: center;
	font-size: 36px;
	padding: 20px 10%;
}

.mission_block{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap:0px;
}

.mission_image{
	width:300px;
	height:350px; 
}

.mission_image img{
	width: 100%;
	height: 140%;
	object-fit: cover;
	border-radius: 40px;

}

.mission_content{
	position: relative;
	font-size: 19px;
	color:white;
	z-index: 3;
	bottom:210px;
	padding:10%;
}
.team{
	margin-top:200px;
	padding: 30px 10%;
	background:#D9D9D9;
	display: flex;
	flex-direction: column;
	gap:10px;
	align-content: center;
}

.team h1{
	font-size: 36px;
	text-align: center;
}

.team_block{
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	margin-top: 30px;
}

.team_image {
	cursor: pointer;
	position: relative;
	width: 300px;
	height: 400px;
	border-top-left-radius: 300px;
	border-top-right-radius: 300px;
	overflow: hidden;
}

.team_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team_content {
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.7);
	color: black;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	overflow:hidden;
	padding:40px;
	line-height: 1.5;
}
.team_content h3{
	padding-bottom: 10px;
}
.team_content:hover{
	opacity: 1;
	transition: 0.6s;
}

.role h2{
	font-size: 30px;
	padding: 10px;
	text-align: center;
	
}

.studio{
	padding: 30px 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:30px;
	padding-bottom: 60px;
}

.studio h1{
	font-size: 36px;
	text-align: center;
}

.studio_image{
	width: auto;
	height: 500px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-areas: 
		"a a b b c c c"
		"d d e f f f f";
	grid-auto-rows: 250px;
	overflow:hidden;
}
.studio_image img{
	width:100%;
	height:100%;
	object-fit: cover;
	display: block;
}
.studio_image img:nth-child(1)
{
	grid-area:a;
}

.studio_image img:nth-child(2)
{
	grid-area:b;
}

.studio_image img:nth-child(3){
	grid-area:c;
}

.studio_image img:nth-child(4){
	grid-area: d;
}

.studio_image img:nth-child(5){
	grid-area: e;
}

.studio_image img:nth-child(6){
	grid-area:f;
}

.work{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:30px;
	padding: 30px 10%;
	padding-top:70px;
}

.work h1{
	font-size: 40px;
	text-align: center;
	padding-bottom: 10px;
}

.work_block{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 80px;
	grid-row-gap: 40px;
}

.work_video{
	width: 500px;
	height: auto;
	overflow: hidden;
}

.work_video p{
	font-size: 30px;
	text-align: center;
	padding: 10px;
}

.contactus {
	margin-top: 100px;
	padding: 20px 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap:100px;
	padding-bottom: 50px;
}

.contactus h1{
	text-align: center;
	font-size: 36px;
}

.section_1{
	margin: -50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 230px;
}
.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}

.info-item {
	display: flex;
	align-items: center; 
	gap: 20px;
}

.info-item p{
	font-size: 24px;
}

.info-item img {
  width: 60px;
  height: 30px;
  object-fit: contain;
}

.info-item img:nth-child(2){
	width: 100px;
}

.info-item p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-form {
	width:300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 25px;
  border: none;
  outline: none;
  background: #e0e0e0;
  font-family: inherit;
}

.form{
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	background: #000000;
	width:400px;
	height: 420px;
	border-radius: 30px;

}

.form label {
  color: white;
  margin-bottom: 6px;
  font-size: 16px;
}


.fill{
	display: flex;
	flex-direction: column;
	
}

.address {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.address img {
  width: 60px;
  height: auto;
}

.address p {
  font-size: 23px;
  line-height: 1.6;
}

.section_2{
	display:flex;
	flex-direction: row;
	column-gap: 50px;
}
.map {
  background: #000000;
  width: 500px;
  height: 500px;
  border-radius: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* keeps rounded corners clean */
}

.map iframe {
  width: 90%;
  height: 90%;
  border-radius: 20px;
  border: 0;
}


.button_contact button{
	font-family: futura std, san-serif;
	background: #D80F12;
	font-size: 20px;
	text-align: center;
	display: inline-block;
	padding: 12px 24px;
	color: white;
	text-decoration: none;
	border-radius: 20px;
}

.button_contact button:hover{
	background-color: white;
	border-color: #D80F12;
	color:#D80F12;
}

.our_services{
	margin-top:100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap:50px;
}

.our_services h1{
	font-size: 36px;
	text-align: center;
}

.audio{
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 30px;
}

.audio_black{
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #000000;
	color: white;
	line-height: 1.6;
	border-radius: 30px;
}

.audio_black h3{
	text-align: center;
	font-size: 30px;
	padding-bottom: 20px;
}

.audio_black ul{
	padding-left: 35px;
}

.audio_grey{
	margin-top: 130px;
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #D9D9D9;
	color: black;
	line-height: 1.6;
	border-radius: 30px;
}

.audio_grey p{
	font-size: 16px;
	padding-left: 20px;
	padding-right: 40px;
}

.audio img{
	position: relative;
	margin-top:5px;
	margin-left: -110px;
	z-index: 1;
	width: 230px;
	height:500px;
}

.music{
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 30px;
}

.music_black{
	margin-top:130px;
	margin-left:-100px;
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #000000;
	color: white;
	line-height: 1.6;
	border-radius: 30px;
	z-index: 1;
}

.music_black h3{
	text-align: center;
	font-size: 30px;
	padding-bottom: 20px;
}

.music_black ul{
	padding-left: 35px;
}

.music_grey{
	margin-top: 0px;
	margin-left: -190px;
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #D9D9D9;
	color: black;
	line-height: 1.6;
	border-radius: 30px;
}

.music_grey p{
	font-size: 16px;
	padding-left: 20px;
	padding-right: 50px;
	padding-bottom: 40px;
}

.music img{
	position: relative;
	margin-top:200px;
	z-index: 2;
	width: 400px;
	height:300px;
}

.video{
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 40px;
}

.video_black{
	margin-top:130px;
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #000000;
	color: white;
	line-height: 1.6;
	border-radius: 30px;
	z-index: 1;
}

.video_black h3{
	text-align: center;
	font-size: 30px;
	padding-bottom: 20px;
}

.video_black ul{
	padding-left: 35px;
}

.video_grey{
	margin-left: -800px;
	padding:20px 2%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 300px;
	height: 300px;
	overflow: hidden;
	background: #D9D9D9;
	color: black;
	line-height: 1.6;
	border-radius: 30px;
}

.video_grey p{
	font-size: 16px;
	padding-left: 20px;
	padding-right: 50px;
	padding-bottom: 40px;
}

.video img{
	position: relative;
	z-index: 2;
	width: 600px;
	height:550px;
	margin-top: 100px;
	margin-right: 350px;
}