@import url(https://fonts.googleapis.com/css?family=Lato);
@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

*,*::after,*::before {
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

.light {
	color: #000;
	background-color: #FFF; 
}

.dark {
	color: #FFF; 
	background-color: #202026; 
}

:root {
	--bar-width: 50px;
	--bar-height: 5px; 
	--hamburger-gap: 10px;
	--foreground: #202020;
	--background: #FFF;
	--hamburger-margin: 27px;
	--animation-timing: 200ms ease-in-out;
	--hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2)
}

.hamburgerMenu {
	--x-width: calc(var(--hamburger-height) * 1.41421356237);
	display: none;
	flex-direction: column;
	gap: var(--hamburger-gap);
	width: max-content;
	position: fixed; 
	top: var(--hamburger-margin);
	right: var(--hamburger-margin); 
	z-index: 900;
	cursor: pointer;
}

.hamburgerMenu:has(input:checked) {
	--foreground: #FFF;
	--background: #202020;
}

.hamburgerMenu:has(input:focus-visible)::before, .hamburgerMenu:has(input:focus-visible)::after, .hamburgerMenu input:focus-visible {
	border: 1px solid var(--background);
	box-shadow: 0 0 0 1px var(--foreground)
}

.hamburgerMenu::before, .hamburgerMenu::after, .hamburgerMenu input {
	content: "";
	width: var(--bar-width);
	height: var(--bar-height);
	background-color: var(--foreground);
	transform-origin: left center;
	transition: opacity var(--animation-timing), width var(--animation-timing),
	rotate var(--animation-timing), translate var(--animation-timing),
	background-color var(--animation-timing);
}

.hamburgerMenu input {
	appearance: none;
	padding: 0;
	margin: 0;
	outline: none;
	pointer-events: none;
}

.hamburgerMenu:has(input:checked)::before {
	rotate: 45deg;
	width: var(--x-width);
	translate: 0 calc(var(--bar-height) / -2);
}

.hamburgerMenu:has(input:checked)::after {
	rotate: -45deg;
	width: var(--x-width);
	translate: 0 calc(var(--bar-height) / 2);
}

.hamburgerMenu input:checked {
	opacity: 0;
	width: 0;
}

.sidebar {
	top: 0;
	right: 0;
	z-index: 800;
	transition: translate var(--animation-timing);
	translate: 100% 0;
	padding: 0.5rem 1rem;
	padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
	background-color: var(--foreground);
	color: var(--background); 
	position: fixed;
	width: 100%;
	height: 100vh;
}

.hamburgerMenu:has(input:checked) + .sidebar {
	translate: 0; 
}

#menu {
	text-align: center;
	font-size: 50px;
	list-style: none;
}

#menu li{
	padding: 20px;
}

#menu li a {
	color: #FFF;
	text-transform: uppercase;
	text-decoration: none;
}

#menu li label {
	text-transform: uppercase;
}
	
nav, h1, h2, h3, p, li {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

nav { 
	position: fixed;
	transition: all .5s ease;
	z-index: 400;
	width: 100%;
	height: 90px;
}

#nav2 {
	background-color: rgba(255, 255, 255, 0.75);
}

#nav {
	float: right;
	list-style: none;
	margin-top: 26.5px;
	margin-right: 50px;
}

nav.scroll {
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 700;
}


nav li {
	z-index: 400;
	display: inline;
	margin-left: 15px;
	list-style: none;
	font-style: normal;
	font-weight: 500;
	font-size: 30px;
}

nav li label {
	color: #000;
}

nav a {
	color: #000;
	text-decoration: none;
}

#logoAlt {
	font-family: Helvetica, sans-serif;
	font-stretch: ultra-expanded;
	cursor: context-menu;
	margin-top: 25px;
	opacity: 0;
	color: #000;
	font-style: normal;
	font-size: 33px;
	font-weight: 550;
	z-index: 200;
	transition: opacity .25s ease-in-out;
	position: fixed;
}

#logoAlt2 {
	font-family: "Raleway", sans-serif;
	margin-top: 25px;
	color: #000;
	font-style: normal;
	font-weight: 550;
	font-size: 33px;
	z-index: 200;
	transition: opacity .25s ease-in-out;
	position: fixed;
}


#logoAlt.scroll {
	opacity: 1;
	transition: opacity .25s ease-in-out;
}

#logoTop {
	margin-top: 25px;
	left: 30px;
	opacity: 1;
	font-style: normal;
	font-weight: 500;
	font-size: 33px;
	z-index: 200;
	transition: opacity .25s ease-in-out;
	position: fixed;
}

.fullSize {
	display: block;
	width: 100%; 
	object-fit: cover;
}

#indexvideo {
	display: block;
	z-index: 600;
	pointer-events: none;
	width: 100%;
	height: 705px;
	object-fit: cover;
}

#indexBackground {
	display: block;
	z-index: 600;
	pointer-events: none;
	width: 100%;
	height: 705px;
	object-fit: cover;
	user-select: none;
}

.main {
	font-family: Arial, sans-serif;
	font-stretch: ultra-expanded;
	padding-top: 30px;
	text-align: center;
}

.main2 {
	font-family: Arial, sans-serif;
	font-stretch: ultra-expanded;
	padding-top: 600px;
	text-align: center;
}

.mainContent {
	top: 200px;
	left: 0; 
	right: 0;	
	margin-inline: auto; 
	width: 600px;
	width: fit-content;
	position: absolute;
	user-select: none;
}

#logo {
	margin: 0 auto;
	display: block;
	position: absolute;
	z-index: 600;
	top: -95px;
	left: -227px;
	width: 600px;
	transition: all .5s linear;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

.mainHeading {
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000;
}

h1.mainHeading{
	font-size: 17px;
}


.typewrite {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	letter-spacing: 0.1em;
	margin-top: -12px; 
	font-size: 26.5px;
	text-transform: uppercase;
	font-weight: normal;
	color: #000;
}

.mainTextSent h1{
	font-size: 20px;
}

.mainTextSent p {
	margin-top: -15px; 
}

#workType {
	margin: 0;
	position: fixed;
	float: right;
	top: 90px;
	right: 50px;
	z-index: 400;
	text-align: center;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.75);
	text-transform: uppercase; 
	text-decoration: none;
}

#workType li {
	font-size: 36px;
	margin-right: 20px;
	display: inline; 
}

#workType li a {
	color: #FFF;
	text-decoration: none;
}

#workType a:hover {
	text-decoration: underline;
}

.current {
	text-decoration: underline;
	color: #FFF;
}

.cls-1 {
	stroke: #000;
	stroke-miterlimit: 10;
}

.cls-1, .cls-2 {
	fill: #fff;
}

.cls-2, .cls-3 {
	stroke-width: 0px;
}

.cls-3 {
	fill: #000;
}

.containerContact {
	color: #000;
}

#contact {
	z-index: 1100;
	background: none;
	border: none;
	cursor: pointer;
	position: fixed;
	bottom: 10px;
	right: 30px;
	width: 60px;
	transition: all 0.5s linear;
}

#contactForm {
	top: 0;
	right: 0;
	padding-top: 15px;
	padding-left: 30px;
	padding-right: 30px;
	height: 100%;
	z-index: 1000;
	position: fixed;
	background: #F9F9F9;
	transition: translate 0.8s;
	translate: 100% 0;
}

#contact-toggle:checked~#contactForm, #contact-nav:checked~#contactForm {
	translate: 0% 0;
}

#contact-toggle:checked~#contact {
	filter: invert(1);
}

form {
	font-family: arial, sans-serif;
}

form p {
	margin: 10px 0 10px 0;
}

form label {
	font-size: 13px;
	font-family: helvetica, sans-serif;
}

form input {
	background: transparent;
	padding: 5px;
	width: 100%;
	height: 20px;
	border: 1px solid #A0A0A0;
}

form input:focus {
	outline: 1px solid #000;
}

form input::placeholder {
	color: #A0A0A0;
}

form textarea {
	background: transparent;
	font-family: arial, sans-serif;
	width: 100%;
	padding: 5px;
	padding-top: 5px;
	border: 1px solid #A0A0A0;
	resize: none;
}

form textarea:focus {
	outline: 1px solid #000;
}


.inlineForm {
	width: 100%;
}

.inlineSection {
	margin: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	display: inline-block;
	width: 49.3%;
}

select {
	margin: 0 auto;
	display: block;
	padding-left: 3.5px;
	width: 100%;
	height: 30px;
	background: transparent;
	border: 1px solid #A0A0A0;;
	font-size: 13px;
}

select:focus {
	outline: 1px solid #000;
}

select option {
	font-size: 14px;
}

select:required:invalid {
	color: gray;
}

option[value=""][disabled] {
	display: none;
}

option {
	color: black;
}
#submitBtn {
	cursor: pointer;
	margin-top: 15px;
	width: 100%;
	height: 40px;
	color: #FFF;
	background: #212529;
	border: 1px;
	border-style: solid; 
	transition: all 0.5s ease-out 0s
}

#submitBtn:hover {
	background-color: #000;
}

.imgFloat {
	margin: 0 auto;
	display: block;
	width: 100%;
	height: auto;
}

.row {
	padding-top: 90px;
	clear: both;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

.column {
	float: left;
	width: 50%;
	height: auto;
}

.columnContent {
	width: 100%;
	padding: 30px;
}

.itemBox {
	margin: 0 auto;
	display: block;
	background-color: #FFF;
	font-size: 20px;
	width: 500px;
	height: auto;
}

.snip1574 {
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 10px;
  min-width: 250px;
  max-width: 400px;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.snip1574 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.snip1574 img {
  max-width: 100%;
  vertical-align: top;
  opacity: 0.7;
}

.snip1574 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 10% 15%;
}

.snip1574 figcaption:before {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 170px;
  opacity: 0.35;
  font-style: normal;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0px;
  left: 50%;
}

.snip1574 blockquote {
  padding: 0;
  margin: 0;
  font-style: italic;
  font-size: 1.2em;
}

.snip1574 h3 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 3px 0;
}

.snip1574 h5 {
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #bbb;
  letter-spacing: 1px;
}


.projectSection {
	clear: both;
}

.projectTitle { 
    width: 33%;
	height: auto;
	font-size: 30px;
    padding: 50px;
	float: left;
}

.projectInfo {
    width: 66%;
	height: auto; 
    padding: 50px;
	float: right;
}

.aboutp {
	font-size: 33px;
	font-kerning: none;
}

.gallerySection {
	width: 100%;
	padding: 90px 50px 0 50px;
	margin: 0 auto;
	display: block; 
	clear: both;
}

.gallerySection2 {
	width: 100%;
	padding: 90px 50px 0 50px;
	margin: 0 auto;
	display: block; 
	clear: both;
}

.galleryGroup {
	padding-bottom: 40px;
}

.gallery {
	height: auto;
	display: flex;
	flex-flow: nowrap;
	padding-bottom: 20px;
}

.item {
	flex-grow: 1;
	min-width: 150px;
	position: relative; 
}

.item:before {
	content: "";
	padding-top: 56%;
	display: block;
}

.galleryimg {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.logoGallery {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F5F5F5;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
}

.gallery-item {
	width: 200px;
	height: 200px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s ease;
	user-select: none;
}

.gallery-item:hover {
	transform: scale(1.05);
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1500;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255,255,255,0.9);
  opacity: 0;
  user-select: none;
  transition: opacity 0.5s ease-in-out;  /* Fading animation */
}

/* Modal content (image) */
.modal-content {
	max-width: 80%;
	max-height: 80%;
	margin: auto;
	display: block;
	animation: fadeIn 0.5s ease-in-out;
	pointer-events: none;
}

/* Fading in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cardContent {
	width: 100%;
	height: 550px;
	position: absolute;
	background-color: #F5F5F5;
}

/* Carousel container */
.carousel-container {
	margin: 0 auto; 
	margin-top: 400px;
    max-width: 600px; /* Max width for large screens */
    max-height: 600px; /* Max height for large screens */
    perspective: 1000px; /* 3D effect */
    display: flex;
}

/* Carousel itself */
.carousel {
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    width: 100%;
    height: 100%;
}

/* Image styles */
.carousel img {
    width: 20vw;  /* Image width as a percentage of the viewport width */
    height: 12vw; /* Image height as a percentage of the viewport width */
    max-width: 250px;  /* Max width for large screens */
    max-height: 150px; /* Max height for large screens */
    position: absolute;
    object-fit: cover;
    backface-visibility: hidden; /* Prevent back face showing */
    transform-origin: center center; /* Ensure the images rotate around their center */
    opacity: 1;  /* Ensure images are visible */
	pointer-events: none;
}

/* Adjusted position for each image with spacing and circular layout */
.carousel img:nth-child(1) { transform: rotateY(0deg) translateZ(500px); }
.carousel img:nth-child(2) { transform: rotateY(calc(360deg / var(--total-images) * 1)) translateZ(500px); }
.carousel img:nth-child(3) { transform: rotateY(calc(360deg / var(--total-images) * 2)) translateZ(500px); }
.carousel img:nth-child(4) { transform: rotateY(calc(360deg / var(--total-images) * 3)) translateZ(500px); }
.carousel img:nth-child(5) { transform: rotateY(calc(360deg / var(--total-images) * 4)) translateZ(500px); }
.carousel img:nth-child(6) { transform: rotateY(calc(360deg / var(--total-images) * 5)) translateZ(500px); }
.carousel img:nth-child(7) { transform: rotateY(calc(360deg / var(--total-images) * 6)) translateZ(500px); }
.carousel img:nth-child(8) { transform: rotateY(calc(360deg / var(--total-images) * 7)) translateZ(500px); }
.carousel img:nth-child(9) { transform: rotateY(calc(360deg / var(--total-images) * 8)) translateZ(500px); }
.carousel img:nth-child(10) { transform: rotateY(calc(360deg / var(--total-images) * 9)) translateZ(500px); }
.carousel img:nth-child(11) { transform: rotateY(calc(360deg / var(--total-images) * 10)) translateZ(500px); }
.carousel img:nth-child(12) { transform: rotateY(calc(360deg / var(--total-images) * 11)) translateZ(500px); }

/* Navigation buttons */
button {
    position: absolute;
    top: 0;
    transform: translateY(-325%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.5rem; /* Slightly smaller button size */
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

button.prev {
    left: 20px;
}

button.next {
    right: 20px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.cardSection {
	margin-top: 550px;
	display: none;
}

.bCard {
	margin: 0 auto; 
	display: block; 
	width: 550px;
	height: auto;
	padding-bottom: 30px;
}

/* Basic page styling */
.printSection {
	font-family: Arial, sans-serif;
	background-color: #F7F7F7;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

/* Gallery container styling */
.printGallery {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px; /* Increased gap between columns */
	max-width: 1200px;
	justify-content: center;
	z-index: 500; 
}

/* Individual column styling */
.gallery-column {
	flex: 1 1 calc(25% - 24px); /* Adjusted the width calculation to account for increased gap */
	display: flex;
	flex-direction: column;
	gap: 24px; /* Increased gap between images within a column */
}

/* Image styling */
.gallery-column img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
	margin-bottom: 16px; /* Adds space below each image */
}

/* Hover effect for images */
.gallery-column img:hover {
	transform: scale(1.05); /* Zoom effect */
}

/* Responsiveness for smaller screens */
@media (max-width: 900px) {
  .gallery-column {
    flex: 1 1 calc(50% - 24px); /* Two columns on medium screens */
  }
}

@media (max-width: 600px) {
  .gallery-column {
    flex: 1 1 100%; /* One column on small screens */
  }
}

.center {
	text-align: center;
}

.footerContainer { 
	width: 100%;
	color: #FFF;
	background-color: #202026;
	text-align: center;
	padding: 20px;
	z-index: 99999;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {


.hamburgerMenu {
	display: flex;	
}

#nav {
	display: none;
}

#logo {
	width: 100%;
}

.mainContent {
	transform: scale(0.9,0.9);
}

h1.mainHeading {
	font-size: 13px;
}

.mainHeading {
	margin-top: -100px;
}

.typewrite {
	margin-top: -5px;
	position: absolute;
	font-size: 18px;
}

.main { 
	padding-top: 15px;
	text-align: center;
}

.main2 {
	padding: 0;
}

#logoAlt {
	left: 25px;
}

#logoAlt2 {
	left: 25px;
}

#contactForm {
	width: 100%;
}

#contactForm label {
	font-size: 15px;
}

form input {
	height: 40px;
}

select {
	height: 40px;
}

.fullSize {
	padding-top: 90px;
}

.gallerySection {
	margin: 0;
	padding: 0;
}

.gallerySection2 {
	margin: 0;
	padding: 0;
	padding-top: 90px;
}

.gallery {
	margin: 0;
	padding: 0;
}

.cardContent {
	display: none;
}

.cardSection {
	margin: 0;
	padding-top: 90px;
	padding-bottom: 45px;
	margin-bottom: 0;
	background-color: #F7F7F7;
	display: block;
}

.bCard {
	max-width: 300px;
}

.carousel-container {
	width: 100%;
	display: none;
	max-width: 300px;
}

.galleryGroup {
	margin: 0;
	padding: 0;
}

.galleryGroup h1 {
	margin-left: 25px;
	font-size: 22px;
}

.galleryimg {
	margin: 0;
	padding: 0;
}

.projectTitle {
	width: 100%;
	padding: 25px;
	font-size: 15px;
}

.projectInfo {
	width: 100%;
	padding: 0 25px 0 25px;
}

.projectInfo p {
	font-size: 25px; 
}

#workType {
	right: 0;
}

#workType li {
	font-size: 20px;
}

.column {
	width: 100%;
}

.carousel-container {
	width: 90vw;  /* 90% of the viewport width */
	height: 90vw; /* 90% of the viewport width to keep it square */
}

.carousel img {
	width: 30vw;  /* Image width relative to the viewport width */
	height: 20vw; /* Image height relative to the viewport width */
}

.modal-content {
    width: 100%;
}

.gallery-column img:hover {
	transform: none;
}

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

.hamburgerMenu {
	display: flex;	
}

#nav {
	display: none;
}

.fullSize {
	padding-top: 90px;
}

#logoAlt {
	left: 25px;
}

#logoAlt2 {
	left: 25px;
}

#contactForm label {
	font-size: 15px;
}

form input {
	height: 40px;
}

select {
	height: 40px;
}

.gallerySection {
	margin: 0;
	padding: 0;
}

.gallerySection2 {
	margin: 0;
	padding: 0;
	padding-top: 90px;
}

.gallery {
	margin: 0;
	padding: 0;
}

.galleryGroup {
	margin: 0;
	padding: 0;
}

.galleryGroup h1 {
	margin-left: 25px;
}

.galleryimg {
	margin: 0;
	padding: 0;
}

.projectTitle {
	font-size: 15px;
}

.projectInfo p {
	font-size: 25px; 
}

#workType {
	right: 0;
}

#workType li {
	font-size: 20px;
}

.carousel-container {
     width: 80vw;  /* 80% of the viewport width */
     height: 80vw; /* 80% of the viewport width to keep it square */
}

.carousel img {
	width: 25vw;  /* Image width relative to the viewport width */
	height: 15vw; /* Image height relative to the viewport width */
}


.column {
	width: 100%;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

.hamburgerMenu {
	display: flex;	
}

#nav {
	display: none;
}

#logoAlt {
	left: 50px;
}

#logoAlt2 {
	left: 50px;
}

#contactForm {
	width: 400px;
}

#contactForm label {
	font-size: 13px;
}

form input {
	height: 30px;
}

select {
	height: 30px;
}

.gallerySection {
	padding: 90px 50px 0 50px;
	margin: 0 auto;
}

.gallerySection2 {
	padding: 90px 50px 0 50px;
	margin: 0 auto;
}

.gallery {
	padding-bottom: 20px;
}

.galleryGroup {
	padding-bottom: 40px;
}

.galleryGroup h1 {
	margin-left: 0;
}

.projectTitle {
	font-size: 20px;
}

.projectInfo p {
	font-size: 30px; 
}

#workType {
	right: 50px;
}

#workType li {
	font-size: 36px;
}

.column {
	width: 50%;
}

} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
#nav {
	padding-top: 5px;
	display: block;
}

.fullSize {
	padding-top: 0;
}

#nav li{
	font-size: 20px;
}

.hamburgerMenu {
	display: none;	
}
} 

@media only screen and (max-width: 992px) {
.mainText {
	margin-top: 175px;
}
#logo {
	left: 0;
}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
#nav {
	padding-top: 0;
}

#nav li{
	font-size: 30px;
}

}