::-webkit-scrollbar,
::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
	background: #ddd;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
	background: #000;
}

a,
button,
img,
input,
span,
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

*, ::after, ::before {
    box-sizing: border-box;
}
/* THEME COLOR =================================================================================================== */
:root {
	--themeColor: #444;
	--themeBodyColor: #444;
  	--themeBorderRadius:  30px;
}
/* GLOBAL =================================================================================================== */
body{
	color: #fff;
	background-color: #444;
    overflow-x: hidden;
	font-size: 18px;
	
}
@media screen and (min-width: 480px) {
	.container{
		max-width: 100%;
		padding-left: 50px;
		padding-right: 50px;
	}
  }
.super-heading{
	font-size: 35px;
	margin-bottom: 10px;
	font-weight: 600;
}
.super-sub-heading{
	font-size: 10px;
	font-weight: 500;
	opacity: .5;
}
.super-mini-heading{
	font-size: 10px;
	font-weight: 500;
	opacity: .5;
	margin: 0 0 20px 0;
}
.project-details .super-heading{
	font-size: 35px;
	margin-bottom: 10px;
	font-weight: 600;
}
.project-details .super-sub-heading{
	font-size: 16px;
	font-weight: 500;
	opacity: .5;
	margin: 0 0 20px 0;
}
.project-details
/* HEADER =================================================================================================== */
.navbar{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: transparent!important;
	border-bottom: 1px solid #555;
}
.nav-link{
	color: #fff!important;
}
.navbar-collapse{
	flex-grow: unset;
}
.nav-item{
	margin-left: 30px;
	font-weight: 500;
}
.nav-link.active{
	opacity: .5;
}
/* PROJECT =================================================================================================== */
.main-area{
	/* background: #626d6f; */
	min-height: calc(100vh - 83.8px - 71.3px);
}
.main-area .container-fluid{
	padding: 0;
}
.port-area .row{
	margin: 0;
	padding: 0;
}
.port-area .col-md-6{
	margin: 0;
	padding: 0;
}

.port-item{
	position: relative;
	border: 1px solid #000;
	overflow: hidden;
	padding: 0;
	margin: 0;
	display: flex;
	cursor: pointer;
	
}
.port-item:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	z-index: 1;
}
.port-item .port-img img{
	max-width: 100%;
	transition: transform ease-in-out 2s;
}
.port-item:hover img{
	transform: scale(1.1);
}
.port-caption{
	position: absolute;
    z-index: 2;
    padding: 0;
	margin: 0;
    left: 50px;
    bottom: 40px;
}
.port-caption .sub-heading{
	color: #fff;
	white-space: nowrap;
	opacity: .8;
    text-transform: uppercase;
    font-size: 13px;
}
.port-caption .heading{
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	text-transform: uppercase;
}
.port-caption .location-heading{
	color: #fff;
	white-space: nowrap;
	opacity: .8;
    text-transform: uppercase;
    font-size: 13px;
}
/* PROJECT DETAILS =================================================================================================== */
.all-area.project-details .main-area .info{
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 0;
	color: #fff;
}
.all-area.project-details .main-area .info p{
	font-size: 20px;
	margin-bottom: 30px;
}
.all-area.project-details .main-area .info p:last-child{
	margin-bottom: 0;
}
.project-details-banner{
	height: 70vh;
	position: relative;
}
.project-details-banner img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	opacity: .7;
}
.project-details-banner-caption{
	position: absolute;
    z-index: 2;
    padding: 0;
	margin: 0;
    left: 50px;
    bottom: 40px;
}
.project-details-banner-caption .sub-heading{
	color: #fff;
	font-weight: 400;
	white-space: nowrap;
	font-size: 16px;
}
.project-details-banner-caption .heading{
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}
.collage-area{
	margin-bottom: 20px;
}
.content-area{
	margin-bottom: 30px;
}
.fact-area{
	margin-bottom: 30px;
}
/* INDEX =================================================================================================== */
.all-area.home .header-area{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	transition: all 0.3s ease 0s;
}
/* .all-area.home .header-area:hover{
	background-color:rgba(0,0,0,0.3);
} */
.all-area.home .header-area .navbar{
background-color: transparent!important;
border-bottom: 0px solid #555;
}
.all-area.home .header-area .navbar .nav-link{
	color: #fff;
}
.all-area.home .main-area{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100vw;
	height: 100vh;
}
.all-area.home .main-area .carousel-item{
	height: 100vh;
}
.all-area.home .main-area .carousel-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
}
.all-area.home .carousel:hover .carousel-item.active img{
	height: 100vh;
	transform: scale(1.2);
	transition: transform ease-in-out 5s;
}
.all-area.home .carousel-caption{
	left: 50px;
	bottom: 50px;
	text-align: left;
	padding: 0;
	right: auto;
	z-index: 999;
	text-decoration: none;
}
.all-area.home .carousel-caption p{
	margin: 0 0 10px 0;
	font-size: 15px;
	font-weight: 600;
}
.all-area.home .carousel-caption h5{
	font-size: 25px;
	font-weight: 400;
	margin: 0;
}

/* ABOUT =================================================================================================== */
.all-area.about .main-area{
	padding: 50px 0;
	color: #fff;
}
.all-area.about .main-area .studio-story{
	margin-bottom: 50px;
}
.all-area.about .main-area .studio-story p{
	margin-bottom: 0px;
	line-height: 30px;
	text-align: justify;
}
.all-area.about .main-area .studio-photo{
	margin-bottom: 50px;
}
.all-area.about .main-area .studio-director{
	margin-bottom: 30px;
}
.all-area.about .main-area .studio-director p{
	line-height: 30px;
	text-align: justify;
}
.all-area.about .main-area .studio-team h6{
	font-size: 18px;
	margin: 10px 0 10px 0;
}
.all-area.about .main-area .studio-team p{
	font-size: 14px;
	opacity: .5;
	margin: 0;
}
/* CAREER =================================================================================================== */
.all-area.career .main-area{
	padding: 50px 0;
	color: #fff;
}
.all-area.career .main-area .container{
	max-width: 800px;
	margin: 0 auto;
}
.all-area.career .main-area .container p{
	font-size: 20px;
	margin-bottom: 30px;
	text-align: center;
}
.all-area.career .main-area .container p:last-child{
	margin-bottom: 0;
}
/* CONTACT =================================================================================================== */
.all-area.contact .main-area{
	padding: 50px 0;
	color: #fff;
}

/* FOOTER =================================================================================================== */
.footer-area{
	padding-top: 10px;
	padding-bottom: 10px;
}
.footer-area .col-md-12{
    display: flex;
    justify-content: space-between;
}
.footer-hygine-link{
    color: var(--themeBodyColor);
    text-decoration:none;
	margin-right: 20px;
}
.footer-copyright{
    margin-right: 50px;
	color: #fff;
	font-size: 14px;
}
.footer-social .footer-social-link{
    color: #fff;
    text-decoration:none;
	margin-left: 20px;
	cursor: pointer;
}
.footer-social .footer-social-link svg{
	width: 30px;
	height: 30px;
}
.footer-social .footer-social-link img{
	height: 30px;
	width: auto;
}
.footer-social.home{
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 99;
}
/* .carousel-control-prev{
	width: 50px;
	height: 50px;
}
.carousel-control-next{
	width: 50px;
	height: 50px;
} */

.carousel-indicators{
	display: none;
}

.project-heading-separter{
	padding: 50px 0 50px 40px;
	text-transform: uppercase;
}