/* =================================
------------------------------------
  Cassi | Photo Studio HTML Template
  Version: 1.0
 ------------------------------------
 ====================================*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700&display=swap");
html, body {
	height: 100%;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #151515;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: #333333;
	font-weight: 600;
}
h1 {
	font-size: 70px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
	font-size: 15px;
	color: #bfbfbf;
	line-height: 1.8;
}
img {
	max-width: 100%;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
}
ul, ol {
	padding: 0;
	margin: 0;
}
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}
/*---------------------
   Helper CSS
 -----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 55px;
}
.section-title img {
	margin-bottom: 15px;
}
.section-title h2 {
	font-weight: 400;
	font-size: 38px;
	text-transform: uppercase;
}
.section-title p {
	padding-top: 15px;
	margin-bottom: 0;
}
.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.spad {
	padding-top: 110px;
	padding-bottom: 105px;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
	color: #fff;
}
/*---------------------
  Commom elements
-----------------------*/

.site-btn {
	display: inline-block;
	font-size: 16px;
	padding: 17px 25px;
	min-width: 170px;
	color: #fff;
	background: #2b2b2b;
	line-height: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 500;
	border: none;
	border-radius: 2px;
}
.site-btn i {
	font-size: 24px;
	position: relative;
	top: 5px;
	margin-left: 4px;
}
.site-btn:hover {
	color: #fff;
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}
.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
.offcanvas-menu-wrapper {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #151515;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
.offcanvas-menu-wrapper .menu-switch {
	position: relative;
	top: 50px;
	opacity: 0;
	filter: alpha(opacity=0);
}
.menu-header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding: 24px 35px 14px 40px;
}
.main-menu {
	list-style: none;
	display: inline-block;
	text-align: center;
}
.main-menu li {
	display: block;
	margin-bottom: 15px;
	position: relative;
	top: 50px;
	opacity: 0;
	filter: alpha(opacity=0);
}
.main-menu li:nth-child(5) {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.main-menu li:nth-child(4) {
	-webkit-transition: all 0.5s ease 0.2s;
	-moz-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}
.main-menu li:nth-child(3) {
	-webkit-transition: all 0.5s ease 0.4s;
	-moz-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.main-menu li:nth-child(2) {
	-webkit-transition: all 0.5s ease 0.6s;
	-moz-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
.main-menu li:nth-child(1) {
	-webkit-transition: all 0.5s ease 0.8s;
	-moz-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.main-menu li:last-child {
	margin-bottom: 0;
}
.main-menu li a {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	font-family: "Roboto", sans-serif;
	transition: all 0.3s;
}
@media (max-width: 576px) {
	.main-menu li a {
		font-size: 30px;
	}
}
.main-menu li a:hover, .main-menu li a.active {
	color: #ffffff;
}
.menu-footer {
	padding: 26px 40px 22px;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 576px) {
	.menu-footer {
		display: none;
	}
}
.active .menu-switch {
	top: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all 0.5s ease 0.2s;
	-moz-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}
.active .main-menu li {
	top: 0;
	opacity: 1;
	filter: alpha(opacity=100);
}
.active .main-menu li:nth-child(1) {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.active .main-menu li:nth-child(2) {
	-webkit-transition: all 0.5s ease 0.2s;
	-moz-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}
.active .main-menu li:nth-child(3) {
	-webkit-transition: all 0.5s ease 0.4s;
	-moz-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.active .main-menu li:nth-child(4) {
	-webkit-transition: all 0.5s ease 0.6s;
	-moz-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
.active .main-menu li:nth-child(5) {
	-webkit-transition: all 0.5s ease 0.8s;
	-moz-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
/*---------------------
   Header section
 -----------------------*/

.header-section {
	padding: 24px 35px 14px 40px;
	overflow: hidden;
}
.site-logo {
	display: inline-block;
	padding-top: 5px;
}
.menu-switch {
	float: right;
	cursor: pointer;
}
.menu-switch i {
	color: #fff;
	font-size: 37px;
	line-height: 37px;
}




/*---------------------
  Dotzero M.
 -----------------------*/


.pb-100 {
	padding-bottom: 100px;
}
.pt-100 {
	padding-top: 100px;
}
.mb-100 {
	margin-bottom: 100px;
}
a {
	
	color: #333;
	-webkit-transition: .4s;
	transition: .4s;
}
.section-title {

}
.section-title p {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 400;
}
.section-title h4 {
	font-size: 40px;
	font-weight: 600;
	
	position: relative;
	padding-bottom: 20px;

}
.section-title h4::before {
	position: absolute;
	content: "";
	width: 80px;
	height: 2px;
	background-color: #161616;
	bottom: 0;
	left: 50%;
	margin-left: -40px;
}
.section-title h4::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;

	left: 0;
	bottom: 0;
	left: 50%;
	margin-left: -25px;
}

.contact {
	background-image: url("img/banner.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 2;
	color: #50505086;
}
.contact-form input,

.contact:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #333;
	z-index: -1;
	opacity: .85;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
}
.single-contact {
	text-align: left;
	position: relative;
	padding-left: 70px;
	margin-bottom: 50px;
	margin-top: 10px;
}
.single-contact i.fa {
	position: absolute;
	left: 0;
	top: 50%;


	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 3px;
}
.single-contact h5 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}
.single-contact p {
	font-size: 15px;
	font-weight: 400;
}
.contact-form input[type="submit"] {
	background-color: rgb(65, 65, 65);
	border: 0px;
	cursor: pointer;
	font-size: 16px;
	-webkit-transition: .4s;
	transition: .4s
}
.contact-form input[type="submit"]:hover {
	background-color: rgb(65, 65, 65)
}
.contact-form input:focus, textarea:focus {
	border-color: rgb(65, 65, 65)
}
  
  
.form-control {
	height: 43px;
	border-radius: 0;
	border-color: #ffffff; 
	padding: 5px 10px;
	margin-top: 15px;
	background-color: transparent; }
	.form-control:active, .form-control:focus {
	  border-color: #ffffff; }
	.form-control:hover, .form-control:active, .form-control:focus {
	  -webkit-box-shadow: none !important;
	  box-shadow: none !important; }
  
  .site-section {
	padding: 2.5em 0; }
	@media (min-width: 768px) {
	  .site-section {
		padding: 5em 0; } }
	.site-section.site-section-sm {
	  padding: 4em 0; }
  
  .site-section-heading {
	color: #000;
	position: relative;
	font-size: 2.5rem; }
	@media (min-width: 768px) {
	  .site-section-heading {
		font-size: 4rem; } }
	.site-section-heading:after {
	  content: "";
	  left: 0%;
	  bottom: 0;
	  position: absolute;
	  width: 100px;
	  height: 1px;
	  background: #000; }
	.site-section-heading.text-center:after {
	  content: "";
	  -webkit-transform: translateX(-50%);
	  -ms-transform: translateX(-50%);
	  transform: translateX(-50%);
	  content: "";
	  left: 50%;
	  bottom: 0;
	  position: absolute;
	  width: 100px;
	  height: 1px;
	  background: #000; }
  
  .border-top {
	border-top: 1px solid #161616 !important; }
  
  .site-footer {
	padding: 4em 0;
	background: #333333; }
	@media (min-width: 768px) {
	  .site-footer {
		padding: 8em 0; } }
	.site-footer p {
	  color: #737373; }
	.site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
	  color: #2e2e2e; }
	.site-footer a {
	  color: #999999; }
	  .site-footer a:hover {
		color: #161616; }
	.site-footer ul li {
	  margin-bottom: 10px; }
	.site-footer .footer-heading {
	  font-size: 20px;
	  color: #161616; }
  
  .bg-text-line {
	display: inline;
	background: #000;
	-webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
	box-shadow: 20px 0 0 #000, -20px 0 0 #000; }
  
  .text-white-opacity-05 {
	color: rgba(255, 255, 255, 0.5); }
  
  .text-black-opacity-05 {
	color: rgba(0, 0, 0, 0.5); }


	
	.explore-btn {
		display: inline-block;
		padding: 0.8rem 2rem;
		border: 2px solid #ffffff;
		background: transparent;
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: bold;
		transition: all 0.3s;
		cursor: pointer;
	  }
	
	  .explore-btn:hover {
		color: #fff;
	  }
	  
	


	.map-container{
		overflow:hidden;
		padding-bottom:56.25%;
		position:relative;
		height:0;
		}
		.map-container iframe{
		left:0;
		top:0;
		height:100%;
		width:100%;
		position:absolute;
		}
/*---------------------
   Footer section
 -----------------------*/

.footer-section {
	padding: 26px 40px 22px;
	overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 576px) {
	.footer-section {
		text-align: center;
	}
}
.footer-social {
	display: inline-block;
}
.footer-social a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	margin-right: 24px;
	padding-bottom: 7px;
	position: relative;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-social a:last-child {
	margin-right: 0;
}
.footer-social a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	left: 0;
	bottom: -2px;
	background: #ffffff;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.footer-social a:hover:after {
	width: 100%;
}
.copyright {
	float: right;
	color: #969696;
	padding-top: 3px;
}
.copyright a {
	color: #969696;
}
.copyright a:hover {
	text-decoration: underline;
}
.copyright i {
	color: #c11;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 576px) {
	.copyright {
		float: none;
		padding-top: 15px;
	}
}
