@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700');
body {
	background: #ffffff;
	font-family: 'Source Sans Pro', sans-serif;
	overflow-x: hidden;
}
html, body {
	width: 100%;
	height: 100%;
}

#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 21px;
	border: none;
	outline: none;
	background-color: rgba(102, 49, 0, 0.678) ;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
	box-shadow: -2px 10px 18px -7px rgba(236, 236, 236, 0.75);
	-webkit-box-shadow: -2px 10px 18px -7px rgba(212, 212, 212, 0.75);
	-moz-box-shadow: -2px 10px 18px -7px rgba(219, 219, 219, 0.75);
}
/*---------------------------------------
  TYPOGRAPHY              
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
}
h1 {
	font-size: 40px;
	font-weight: 200;
	line-height: 50px;
}
h2 {
	font-size: 30px;
	line-height: 40px;
	margin-top: 0;
}
h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
}
h4 {
	color: #505050;
	font-size: 18px;
	line-height: 28px;
}
p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 29px;
	letter-spacing: 0.5px;
}
/*---------------------------------------
  BUTTONS               
-----------------------------------------*/

.section-btn {
	margin: 32px 0 0 0;
	padding: 0;
}
.section-btn a, .section-btn button {
	line-height: 45px;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	color: #ffffff;
	font-weight: normal;
}
.section-btn a span, .section-btn button span {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 0.5px;
	padding: 0 25px;
	background: #4dc47d;
	border-radius: 1px;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.csstransforms3d .section-btn a span::before, .csstransforms3d .section-btn button span::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	border-radius: 1px;
	color: #ffffff;
	padding: 0 25px;
	content: attr(data-hover);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.section-btn a:hover span, .section-btn a:focus span, .section-btn button:hover span, .section-btn button:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}
.csstransforms3d .section-btn a:hover span::before, .csstransforms3d .section-btn a:focus span::before, .csstransforms3d .section-btn button:hover span::before, .csstransforms3d .section-btn button:hover span::before {
	background: #000000;
}
/*---------------------------------------
  GENERAL               
-----------------------------------------*/

html {
	-webkit-font-smoothing: antialiased;
}
a {
	color: #4dc47d;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
a:hover, a:active, a:focus {
	color: #000000;
	outline: none;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
::-webkit-scrollbar {
	cursor: pointer;
	width: 10px;
	height: 100px;
	
}
::-webkit-scrollbar-thumb {
	cursor: pointer !important;
	background: rgb(185, 185, 185);
	border-radius: 6px;
	
}
.section-title {
	position: relative;
	padding-bottom: 22px;
}
.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
.parallax-section h1 {
	text-align: center;
	font-weight: 800;
	font-size: 15px !important;
}
#about, #project, #team, #contact, footer {
	background: #ffffff;
}
#about, #team, #contact {
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
}
/*---------------------------------------
  PRE LOADER              
-----------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #ffffff;
}
.spinner {
	border: 1px solid transparent;
	border-radius: 5px;
	position: relative;
}
.spinner:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45px;
	height: 45px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 1px solid #181717;
	border-top-color: #ffffff;
	animation: spinner .9s linear infinite;
}
@-webkit-@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
/*---------------------------------------
  MENU             
-----------------------------------------*/

.custom-navbar {
	margin-bottom: 20px;
	background-color: #f5bcb6;
	padding: 20px 0;
	text-align: center;
	box-shadow: -2px 10px 18px -7px rgba(102, 49, 0, 0.75);
	-webkit-box-shadow: -2px 10px 18px -7px rgba(102, 49, 0, 0.75);
	-moz-box-shadow: -2px 10px 18px -7px rgba(102, 49, 0, 0.75);
}
.custom-navbar .navbar-brand {
	margin-top: -16px;
	color: #f9f9f9;
	font-weight: normal;
	font-size: 31px;
	text-transform: uppercase;
	text-shadow: 3px 3px 0px rgba(184, 184, 184, 0.79), 7px 5px 25px rgba(255, 255, 255, 1);
}
.custom-navbar .nav li a {
	font-size: 15px;
	font-weight: 600;
	color: rgb(102, 49, 0);
	letter-spacing: 0.5px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
	padding: 0;
	margin: 15px 15px;
	text-transform: uppercase;
}
.custom-navbar .navbar-nav>li>a:hover, .custom-navbar .navbar-nav>li>a:focus {
	background-color: transparent;
	color: rgb(102, 49, 0);
	font-weight: 600;
}
.custom-navbar .navbar-nav li a:after {
	content: "";
	position: absolute;
	display: block;
	width: 0px;
	height: 2px;
	margin: auto;
	background: transparent;
	transition: width .3s ease, background-color .3s ease;
}
.custom-navbar .navbar-nav li a:hover:after, .custom-navbar .nav li.active>a:after {
	background: rgb(102, 49, 0);
	color: rgb(102, 49, 0);
	width: 100%;
}
.custom-navbar .nav li.active>a {
	background-color: transparent;
	color: #ffffff;
}
.custom-navbar .navbar-toggle {
	border: none;
	padding-top: 10px;
}
.custom-navbar .navbar-toggle {
	background-color: transparent;
}
.custom-navbar .navbar-toggle .icon-bar {
	background: rgb(102, 49, 0);
	border-color: transparent;
}
@media(min-width:768px) {
	.custom-navbar {
		background: 0 0;
	}
	.custom-navbar.top-nav-collapse {
		background: #fdc3c3;
		padding: 20px 0;
	}
}
/*---------------------------------------
  CAROUSEL SLIDER             
-----------------------------------------*/

.main-slider {
	height: 100%;
	width: 100%;
}
@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(1, 1);
	}
	to {
		-webkit-transform: scale(1.5, 1.5);
	}
}
@keyframes zoom {
	from {
		transform: scale(1, 1);
	}
	to {
		transform: scale(1.5, 1.5);
	}
}
.carousel-inner img {
	height: 100%;
	width: 100%;
}
.carousel-inner .item>img {
	-webkit-animation: zoom 80s;
	animation: zoom 20s;
}
.item.img-overlay {
	background: #000 !important;
}
.carousel {
	margin: 89px 0 0 0;
}
@media (max-width: 575px) {
	.carousel-inner {
		height: 100%;
	}
}
.carousel-content {
	font-weight: 900;
	font-size: 30px;
	color: #fff;
	background-color: #00000067;
}
/*---------------------------------------
  ABOUT              
-----------------------------------------*/

.gallery-text {
	text-align: center !important;
}
#about {

	padding-top: 120px;
	padding-bottom: 150px;
}
.about-info h3 {
	font-size: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;
}
.about-info h2 {
	font-size: 23px;
}
.about-img {
	height: 450px;
	width: 430px;
	border-radius: 50px;
}
/*---------------------------------------
  GALLERY            
-----------------------------------------*/

.parallax-section h1 {
	font-size: 30px !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;
}
#project h1 {
	color: #000;
	font-size: 30px;
	letter-spacing: 12px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;
}
.project-item {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	margin-bottom: 25px;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	margin: 10px 10px;
	box-shadow: 17px 15px 10px -7px rgba(251, 251, 251, 0.63);
-webkit-box-shadow: 17px 15px 10px -7px rgba(238, 236, 236, 0.623);
-moz-box-shadow: 17px 15px 10px -7px rgba(235, 232, 232, 0.568);
}
.project-overlay {
	background: rgba(0, 0, 0, 0.404);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.project-info {
	padding: 12em 0;
}
.project-info h3 {
	font-size: 18px !important;
}
.project-item img {

	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.7s;
}
.project-item:hover img {
	transform: scale(1.2);
	

}
.project-overlay h1 {
	color: #ffffff;
	margin: 0;
}
.project-overlay h3 {
	color: #d9d9d9;
	font-size: 14px;
	letter-spacing: 0.2px;
	margin-top: 0;
}
.project-item:hover .project-overlay {
	opacity: 1;
}
#img-gallery-1, #img-gallery-2, #img-gallery-3, #img-gallery-4, #img-gallery-5, #img-gallery-6, #img-gallery-7, #img-gallery-8, #img-gallery-9, #img-gallery-10, #img-gallery-11, #img-gallery-12, #img-gallery-13, #img-gallery-14 {
	width: 540px !important;
	height: 350px !important;
	
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
	padding-bottom: 20px !important;
}
/*---------------------------------------
   ACHIEVEMENT           
-----------------------------------------*/

#team .item {
	display: block;
	width: 100%;
	margin-bottom: 22px;
}
#team h3, #team p {
	margin: 0;
}

/* achievement new  */
.card-text {
font-size: 15px !important;
font-weight: 600;
}
.card img{
	width: 100%;
	height: 100%;
}

.achievement-bg{
	margin-top: 50px;
	margin-bottom: 90px !important;
}
.achievement-bg h1{
	margin-top: 50px;
	font-weight: 600;
	text-align: center;
	font-size: 30px !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;

}

.flip-box-front img {
	padding: 10px 10px;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(179, 176, 176, 0.521);
}
.flip-box {
	width: 300px;
	height: 200px;
	perspective: 1000px; 
  }
  
  .flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-back {
	  
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
  }
  
  .flip-box-front {
	background-color: #fff;
	color: black;
  }
  
  /* Style the back side */
  .flip-box-back {
	  border: 1px solid rgb(207, 207, 207);
	background-color: #f5bcb6;
	color: #000;
	transform: rotateY(180deg);
	width: 100%;
	height: 100%;
  }
  .flip-box-back h4{
	  color: #000;
	font-weight: 600;
  }
/*---------------------------------------
  CONTACT             
-----------------------------------------*/

#contact {
	background: url('../images/contact-image/contact-bg.jpg') 50% 0 repeat-y fixed;
	background-size: cover;
	background-position: center center;
}
#contact-form {
	padding-top: 22px;
}
#contact .text-success, #contact .text-danger {
	display: none;
	padding: 0 0 5px 20px;
}
#contact .form-control {
	border: none;
	box-shadow: none;
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 22px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
#contact .form-control:focus {
	border-color: #d9d9d9;
}
#contact input {
	height: 55px;
	line-height: 45px;
}
#contact .section-btn {
	margin: 5px 0 0 0;
}
#contact button#cf-submit {
	background: transparent;
	border: none;
	padding: 0;
	line-height: 50px;
}
/*---------------------------------------
  FOOTER              
-----------------------------------------*/

.lower-footer {
	background-color: #f5bcb6;
	margin-top: 90px;
	box-shadow: 1px -14px 21px -17px rgba(102, 49, 0, 0.59);
	-webkit-box-shadow: 1px -14px 21px -17px rgba(102, 49, 0, 0.59);
	-moz-box-shadow: 1px -14px 21px -17px rgba(102, 49, 0, 0.59);
}
footer {
	padding-top: 50px;
	padding-bottom: 20px;
}
footer h4 {
	padding-top: 12px;
}
footer a {
	color: #000;
}
footer .copyright-text {
	padding-top: 42px;
}
.footer-info h2 {
	font-weight: 500;
	font-size: 30px !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;
}

.about-text {
	font-weight: 500;
	font-size: 30px !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 2px 2px 5px rgb(145, 145, 145) !important;
}
.about-text p {
	color: #000 !important;
}
/*---------------------------------------
  SOCIAL ICON             
-----------------------------------------*/

.social-icon {
	position: relative;
	padding: 0;
	margin-left: -160px;
	text-align: center;
}
.social-icon li {
	display: inline-block;
	list-style: none;
}
.social-icon li i {
	border-radius: 100%;
	color: #292929;
	cursor: pointer;
	font-size: 20px;
	text-decoration: none;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	text-align: center;
	position: relative;
	padding-left: 10px;
}
.social-icon li i:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}


.footer-end{
	border-top: 1px solid rgb(139, 139, 139);
	text-align: center;
	padding: 20px 0 20px 0;
	font-weight: 600;
}


/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/




@media (max-width: 768px) { 
	.achievement-card {
		display:flex;
	  flex-wrap:wrap;
	  justify-content:space-around;
	}
	
	.flip-box{
		
		display:inline-flex;
		flex-direction:column;
	}

	
	}

@media (max-width: 576px) {
	.carousel {
		margin: 70px 0 0 0;
	}

	
}
@media (max-width: 992px) {
	#home h1 {
		font-size: 4em;
		line-height: normal;
	}
}
@media (max-width: 980px) {
	h1 {
		font-size: 30px;
		line-height: inherit;
	}
	#home {
		padding-top: 0em;
	}
	#about {
		padding-top: 120px;
		padding-bottom: 100px;
	}
	.project-info {
		padding: 4em 0;
	}
	footer {
		text-align: center;
	}
	footer .social-icon {
		margin-top: 32px;
		margin-left: 10px;
	}
}
@media (max-width: 770px) {
	#home h1 {
		font-size: 3.5em;
	}
}
@media (max-width: 767px) {
	.custom-navbar {
		padding: 10px 0;
	}
	.custom-navbar .nav li a {
		display: inline-block;
		line-height: 15px;
		margin-bottom: 0;
	}
	.custom-navbar .nav li:last-child a {
		margin-bottom: 5px;
	}
	.project-info {
		padding: 10em 0;
	}
	.footer-info {
		padding: 20px 0 22px 0;
	}
}
@media (max-width: 580px) {
	h1 {
		font-size: 26px;
	}
	#home {
		height: 100vh;
	}
	.about-info h3 {
		font-size: 19px;
		letter-spacing: 6px;
	}
	.project-info {
		padding: 5em 0;
	}
}






