* {
	font-family: "Manrope", sans-serif;
}
body {
	background-color: black;
}
p, a, h1, h2, h3, h4, h5{
	color: white;
}
.custom-button-1{
	color: #000000;
	background-color: white;
	text-decoration: none;
}
.custom-button-1:hover{
	color: white;
	background-color: #7D7D7D;
}
#custom-navbar{
	position: sticky;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: black;
}
.custom-input{
	width: 100%;
	border: 1px solid white;
    background-color: transparent;
    color: white;
}
.custom-input::placeholder{
	color: white;
}
.navigation-link{
	text-decoration: none;
}
.navigation-link:hover{
	text-decoration: underline;
}
.animated-icon3 {
    width: 60px;
    height: 30px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.animated-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.animated-icon3 span {
    background: #FFFFFF;
}
.animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(2) {
    top: 12px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(3) {
    top: 24px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -16px;
    left: 9px;
}
.animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
    left: 8px;
}
#menu-wrapper{
	position: fixed;
	z-index: 98;
	top: 0;
	left: 300%;
	background-color: black;
	opacity: 0;
	transition: 0.5s;
	height: 100vh;
	width: 100%;
	overflow-y: scroll;
}
#menu-wrapper.open{
	left: 0;
	opacity: 1;
	transition: 0.5s;
}
#contact-form{
	position: relative;
}
#form-response{
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 21px;
	display: none;
	opacity: 0;
	transition: opacity ease-in 0.5s;
	background-color: #7D7D7D;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 100%;
}
.footer-border-section{
	border-left: 2px solid white;
}
#form-response.active{
	display: flex;
	opacity: 1;
	transition: opacity ease-in 0.5s;
}
.projects-card{
	position: relative;
	background-position: center;
	background-size: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
	filter: grayscale(1);
}
.projects-card .card-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	background: #000000A6 0% 0% no-repeat padding-box;
}
.projects-card .card-overlay:hover{
	opacity: 1;
	transition: 0.5s;
}
.archive-filter{
	border: 2px solid white;
	background-color: transparent;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
}
.archive-filter:hover{
	border: 2px solid white;
	background-color: white;
	color: black !important;
}
.archive-filter.active{
	border: 2px solid white;
	background-color: white;
	color: black !important;
}
.swiper-slide{
	width: fit-content;
}
.project-slide{
/* 	aspect-ratio: 16 / 10; */
	background-color: black;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.project-slide img{
/* 	height: 100%; */
	height: 450px;
	width: auto;
}
.floorplan-gallery{
	aspect-ratio: 16 / 10;
	background-position: center;
	background-color: white;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.floorplan-gallery img{
	width: 60%;
}
.cammarano-breadcrumbs{
	text-decoration: none;
	transition: 0.3s;
}
#zoomed-image-wrapper{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000059;
    overflow: hidden;
	z-index: 99;
}
#zoomed-image-wrapper img{
	height: 90%;
}
#zoomed-image-closer{
	position: fixed;
	top: 3%;
	right: 3%;
	cursor: pointer;
}
@media screen and (max-width: 992px){
	.footer-border-section{
		border-left: unset;
	}
	#zoomed-image-wrapper{
		overflow: scroll;
	}
	#zoomed-image-wrapper img{
		height: 90%;
	}
	#custom-navbar{
		background-size: 100% !important;
	}
}