/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');

/* Basic */

.spinner-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #F0EAD6;
	z-index: 999999;
}	

.spinner {
	width: 40px;
	height: 40px;
	background-color: #333;
	position: absolute;
    top: 48%;
    left: 48%;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}
  
@-webkit-keyframes sk-rotateplane {
	0% { -webkit-transform: perspective(120px) }
	50% { -webkit-transform: perspective(120px) rotateY(180deg) }
	100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}
  
@keyframes sk-rotateplane {
	0% { 
	  transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	  -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
	} 50% { 
	  transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	  -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
	} 100% { 
	  transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	  -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

* {
	margin: 0;
	padding: 0;
}

html,
body,
.Container {
	height: 100%;
	font-family: 'Source Sans Pro', sans-serif;
}

body {
    background-color: #F0EAD6;
}

.btn {
	border-radius: 0;
}

a:link,
a:hover,
a:visited {
	text-decoration: none;
	color: #000;
}

a:link.white,
a:hover.white,
a:visited.white {
	text-decoration: none;
	color: #fff;
}

.bold {
	font-weight: bold;
}

h1 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 2.4rem;
}

h2 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
}

h3 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
}

h4 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
}

p {
	color: #000;
	font-family: 'Source Sans Pro', sans-serif;

	font-size: 1rem;
}

.min-100 {
	min-height: 100%;
}


/* Spacing */

.no-gutter {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}


/* Navbar */

.navbar {
	position: absolute;
	z-index: 99999;
	top: 0;
	width: 100%;
	padding: 1.8rem 1rem;
	font-family: 'Playfair Display', serif;
}

.navbar-dark .navbar-nav .nav-link {
	color: #000;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: #555;
}

.navbar a:link,
.navbar a:hover,
.navbar a:visited {
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
}

.navbar-dark .navbar-toggler {
	border: none;
}

.navbar .navbar-collapse {
	text-align: center;
}

.navbar-brand {
	padding-top: 0;
}

.wrapper {
	margin: 0;
	width: 200px;
	height: 40px;
}

.menu-toggle {
	display: block;
	height: 40px;
	padding: 0;
	z-index: 1;
	background-color: transparent;
	border: 0 none;
	cursor: pointer;
	font-family: sans-serif;
	outline: medium none;
	overflow: visible;
	text-align: center;
	vertical-align: middle;
	height: 31px;
	width: 35px;
	right: 0px;
	top: 0;
	position: absolute;
}

.menu-toggle:before {
	content: attr(data-label);
	display: block;
	padding: 12px 0;
	position: absolute;
	right: 100%;
	top: 0;
	transition: color 0.2s ease 0s, opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.menu--is-revealed .menu-toggle:before {
	opacity: 0;
	visibility: hidden;
}

.menu-toggle .icon-bars,
.menu-toggle .icon-bars:before,
.menu-toggle .icon-bars:after {
	transition: background-color 0.2s ease;
}

.menu-toggle:focus .icon-bars,
.menu-toggle:focus .icon-bars:before,
.menu-toggle:focus .icon-bars:after,
.menu-toggle:hover .icon-bars,
.menu-toggle:hover .icon-bars:before,
.menu-toggle:hover .icon-bars:after {
	background-color: #000;
}

.menu-toggle .icon-bars {
	transition: transform 0.3s ease-in, background-color 0.2s ease;
	background-color: #000;
}

.menu-toggle .icon-bars:before,
.menu-toggle .icon-bars:after {
	transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
	background-color: #000;
}

.menu-toggle:active .icon-bars,
.menu--is-revealed .menu-toggle .icon-bars {
	transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
	transform: rotate3d(0, 0, 1, 135deg);
}

.menu-toggle:active .icon-bars:before,
.menu-toggle:active .icon-bars:after,
.menu--is-revealed .menu-toggle .icon-bars:before,
.menu--is-revealed .menu-toggle .icon-bars:after {
	transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
	transform: rotate3d(0, 0, 1, 90deg);
	top: 0;
}

.menu--is-revealed .menu-toggle {
	position: fixed;
	top: 31px;
	right: 22px;
}

.nav-item {
	font-size: 1.2rem;
}

.icon-bars {
	position: relative;
}

.icon-bars,
.icon-bars:before,
.icon-bars:after {
	display: block;
	width: 32px;
	height: 2px;
	background-color: currentColor;
}

.icon-bars,
.icon-bars:before,
.icon-bars:after {
	background-color: #273138;
}

.icon-bars:before,
.icon-bars:after {
	content: "";
	position: absolute;
	left: 0;
}

.icon-bars:before {
	top: 0.5em;
}

.icon-bars:after {
	top: -0.5em;
}

@media (min-width: 990px) {
	.navbar-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		/**optional offset from top**/
		max-height: 40px;
	}
}

@media screen and (min-width:768px) {
	.navbar-brand-centered {
		position: absolute;
		left: 50%;
		display: block;
		width: 100%;
		text-align: center;
	}
	.navbar>.container .navbar-brand-centered,
	.navbar>.container-fluid .navbar-brand-centered {
		margin-left: -50%;
	}
}

.navbar-toggler-icon {
	top: 15px;
	right: 0px;
	position: absolute;
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
	border-color: rgb(0, 0, 0);
	z-index: 9999;
}

@media screen and (max-width:991px) {
	.navbar-collapse {
		height: 100vh;
		background-color: #F0EAD6;
		top: 0;
		left: 0;
		width: 100%;
		position: fixed;
	}
	.navbar-nav {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 30%;
		width: 50%;
		margin: -15% 0 0 -25%;
	}
}

.navbar-toggler {
	height: 30px;
	width: 21px;
	position: absolute;
	right: 22px;
}

@media (min-width: 992px) {
	#social {
		display: none;
	}
}

@media (max-width: 991px) {
	#social {
		border-top: 1px solid #000;
		position: absolute;
		bottom: 0;
		width: 90%;
		margin: 5%;
		margin-bottom: 23%;
	}

	#social p {
		font-size: 1rem;
		padding-top: 1rem;
	}
}


/* Half Page */

.Container:before {
	content: '';
	height: 100%;
	float: left;
}

.Content {
	position: relative;
	z-index: 1;
}

.Content:after {
	content: '';
	clear: both;
	display: block;
}

.Wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	color: #000;
	background-color: #F0EAD6;
}

.LeftContent {
	float: left;
	margin: 0;
	padding: 0;
}

.RightContent {
	overflow: auto;
}

@media (min-width: 1200px) {
	.Wrapper>div {
		height: 100%;
	}
}

.split-image-left {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
}

.background-1 {
	background-image: url("../img/home.jpg");
}

.background-2 {
	background-image: url("../img/about.jpg");
}

.split-image-right {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.signature {
	padding-top: 2rem;
	height: 6rem;
}


/* Works - Horizontal Gallery */

.swiper-container {
	width: 100%;
	height: 100%;
	margin-bottom: 5rem;
}

@media (max-width: 1200px) {
	.swiper-container {
		padding: 0 20px 0;
	}
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

 :root {
	--swiper-theme-color: #000;
}

.swiper-pagination {
	display: none;
}


/* Works */

.works {
	font-size: 1.2em;
	padding-top: 14rem;
	padding-bottom: 3rem;
}


/* Studio */

.studio {
	font-size: 1.2em;
	padding-top: 10rem;
	padding-bottom: 10rem;
}


/* Contact */

.contact {
	font-size: 1.8em;
	padding-top: 15rem;
	padding-bottom: 10rem;
}


/* Contact Form */

.contact-form {
	font-size: 1.2em;
	padding-bottom: 11rem;
}

.contact-form .btn-primary {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.contact-form .form-control {
	color: #000;
	background-color: transparent;
	border-color: #000;
	border-width: 0 0 2px 0;
	border-radius: 0;
	border-style: solid;
	font-size: 1.5rem;
}

.form-control::-webkit-input-placeholder {
	color: #000;
	opacity: 0.6;
}

.form-control {
	padding: 1.5rem 16rem 1.5rem 0.75rem
}

.contact-form .btn {
	padding: 0.8rem 4rem;
	border-radius: 5px;
}

.blogs-container {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.blogs-container * {
	-webkit-font-smoothing: subpixel-antialiased;
}
  
.blogs-container a {
	text-decoration: none;
	color: #000000;
}
  
.blogs-container .blog-card {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	max-width: 30%;
	min-height: 100px;
	background-color: #ffffff;
	position: relative;
	backface-visibility: hidden;
	padding-bottom: 25px;
	margin: 15px;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease 0s;
}

.blogs-container .blog-card figure {
	height: 0px;
	position: relative;
	width: 100%;
	flex-grow: 2;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin: 0px;
	padding: 0px 0px 56.25%;
	overflow: hidden;
}
  
.blogs-container .blog-card figure img {
	display: block;
	position: absolute;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	padding: 0;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
	max-height: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
  
.blogs-container .blog-card .blog-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blogs-container .blog-card .blog-content .blog-title {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.3;
	margin: 0px;
}

.blogs-container .blog-card .blog-content .blog-title a {
	display: block;
	width: 100%;
	padding: 10px 20px 30px 20px;
}
  
.blogs-container .blog-card .blog-content .blog-footer {
	display: flex;
	justify-content: flex-start;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.blogs-container .blog-card .blog-content .blog-footer a {
	font-weight: 600;
}

.blogs-container .blog-card .blog-content .blog-footer .blog-category {
	padding: 0 0 20px 20px;
}

.blogs-container .blog-card .blog-content .blog-footer .blog-date {
	padding: 0 0 20px 5px;
}

.blogs-container .blog-card:hover {
	-webkit-transform: scale(1.015) translateZ(0) perspective(1px);
	transform: scale(1.015) translateZ(0) perspective(1px);
	box-shadow: 0 10px 50px -5px #ccc;
	transition: 0.3s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
	.blogs-container .blog-card {
		-ms-flex: 0 0 93%;
		flex: 0 0 93%;
		max-width: 93%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1126px) {
	.blogs-container .blog-card {
		-ms-flex: 0 0 45%;
		flex: 0 0 45%;
		max-width: 45%;
	}
}

.social-icon {
	position: relative;
	padding: 0;
	margin: 0;
	text-align: center;
}

.social-icon li {
	display: inline-block;
	list-style: none;
}

.social-icon li a {
	border-radius: 100%;
	color: #000000;
	cursor: pointer;
	font-size: 18px;
	text-decoration: none;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	text-align: center;
	position: relative;
	margin: 4px 8px 0 8px;
}

.social-icon li a:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}