html,
body {
	height: 100%;
	font-family: "Flamenco";
}

h3 {
	color: #41464b;
	text-transform: uppercase;
}

p {
	color: #64707b;
	font-size: 16px;
	font-weight: 300;


}

/*=========== home section =========*/

#home {
	height: 100%;
}

#home-cover {
	height: 100%;
	background-image: url("../img/bg-home.jpg");


}

#home-content-box {
	width: 100%;
	height: 100%;
	display: table;
}

.bg-parallax {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

#home-content-box-inner {
	display: table-cell;
	vertical-align: middle;
	/*text-align:center;*/
}



#home-heading h3 {
	color: #fff;
	font-size: 55px;
	text-transform: uppercase;


}

.btn-general {
	border: 2px solid #fff;
	padding: 12px 26px 12px 26px;
	font-size: 16px;
	font-weight: 400;
	text-transform: Uppercase;
	text-decoration: none;
	border-radius: 0px;

}

.btn-white {
	border-color: #fff;
	color: #fff;
}

.btn-white:hover,
btn-white:focus {
	background-color: #fff;
	color: #41464b;
}

.btn-blue {
	border-color: #34c6d3;
	color: #34c6d3;
}

.btn-blue:hover,
btn-blue:focus {
	background-color: #34c6d3;
	color: #fff;
}

.btn-back-to-top {
	position: fixed;
	bottom: 15px;
	right: 20px;
	font-size: 18px;
	padding: 2px 12px;
	border-radius: 0px;
	display: none;

}

#home-heading,
#home-cover,
#home-btn-general {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;

}

#home-content-box {
	background-color: rgba(0, 0, 0, 0.5);
}

#home-cover {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
}

#home-heading {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;

}

#home-btn-general {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

/*content */
.content-box {
	padding: 60px 0px 0px 0px;
}

.content-title h3 {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 30px 0;
}

.content-title-underline {

	width: 50px;
	height: 3px;
	background-color: #34c6d3;
	margin: 0 auto 30px auto;
}

/*==============services section===============*/
.service-item {
	padding: 20px;
	margin-bottom: 20px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	min-height: 150px;
}

.service-item::before,
.service-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	transition: none;
}

.service-item:hover::before,
.service-item:hover::after {
	opacity: 1;
}

.service-item:hover::before {
	width: 70%;
	height: 70%;
	border-top: 3px solid #34c6d3;
	border-right: 3px solid #34c6d3;
	top: 0;
	right: 0;
	animation: borderSnakeTopRight 1.5s linear forwards;
}

.service-item:hover::after {
	width: 70%;
	height: 70%;
	border-bottom: 3px solid #34c6d3;
	border-left: 3px solid #34c6d3;
	bottom: 0;
	left: 0;
	animation: borderSnakeBottomLeft 1.5s linear forwards;
}

@keyframes borderSnakeTopRight {
	0% {
		width: 0;
		height: 0;
		border-right-color: transparent;
		border-top-color: transparent;
	}
	25% {
		width: 70%;
		height: 0;
		border-right-color: transparent;
		border-top-color: #34c6d3;
	}
	50% {
		width: 70%;
		height: 70%;
		border-right-color: #34c6d3;
		border-top-color: #34c6d3;
	}
	100% {
		width: 70%;
		height: 70%;
		border-right-color: #34c6d3;
		border-top-color: #34c6d3;
	}
}

@keyframes borderSnakeBottomLeft {
	0% {
		width: 0;
		height: 0;
		border-left-color: transparent;
		border-bottom-color: transparent;
	}
	25% {
		width: 70%;
		height: 0;
		border-left-color: transparent;
		border-bottom-color: #34c6d3;
	}
	50% {
		width: 70%;
		height: 70%;
		border-left-color: #34c6d3;
		border-bottom-color: #34c6d3;
	}
	100% {
		width: 70%;
		height: 70%;
		border-left-color: #34c6d3;
		border-bottom-color: #34c6d3;
	}
}

.service-item-icon {
	float: left;
	margin-right: 25px;
}

.service-item-icon i {
	color: #34c6d3;
	padding: 15px;
	width: 75px;
	height: 75px;
	text-align: center;
	display: block;
}

.service-item:hover .service-item-icon i {
	color: #fff;
	background-color: #34c6d3;
}

.service-item-title {
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 10px 0;
	overflow: hidden;
}

.service-item-desc {
	clear: both;
	padding-top: 10px;
}

.container {
	margin-bottom: 60px;
}

/*========================about======================*/
#about-bg-diagonal {
	width: 60%;
	height: 700px;
	float: right;
	background-image: url("../img/bg-about.jpg");
	border-left: 200px solid #fff;
	border-top: 700px solid transparent;

}

#about-content-box {
	float: left;
	height: 700px;
	padding-left: 100px;
}

#about-content-box-outer {
	width: 100%;
	height: 100%;
	display: table;
}

#about-content-box-inner {

	display: table-cell;
	vertical-align: middle;

}

#about .content-title h3 {
	text-align: left;
}

#about .content-title-underline {
	margin: 0px 0px 30px 0px;

}

#about-desc p {
	margin-bottom: 30px;
}

/*============================work====================*/
.row.no-gutters [class*=col-] {
	padding-left: 0px;
	padding-right: 0px;
}

.img-wrapper {
	overflow: hidden;
}

.img-wrapper img {
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, webkit-transform .5s ease;
}

.img-wrapper img:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	cursor: zoom-in;
}

/* Project Items */
#work .row {
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 2px solid #e0e0e0;
}

#work .row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#work .row::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #e0e0e0;
	transform: translateX(-50%);
}

#work .row:last-child::before {
	bottom: 0;
}

.project-item {
	display: flex;
	align-items: center;
	gap: 30px;
}

.project-item .project-image {
	order: 1;
}

.project-item .project-desc {
	order: 2;
}

.project-item.project-reverse .project-image {
	order: 2;
}

.project-item.project-reverse .project-desc {
	order: 1;
}

.project-image {
	flex: 0 0 45%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-image img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.project-image:hover img {
	transform: scale(1.05);
}

.project-desc {
	flex: 1;
	padding: 20px;
}

.project-desc h4 {
	color: #41464b;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.project-desc p {
	color: #64707b;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.project-tech {
	display: inline-block;
	background-color: #34c6d3;
	color: #fff;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
}

.project-link {
	display: inline-block;
	color: #34c6d3;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 10px;
	transition: all 0.3s ease;
}

.project-link:hover {
	color: #41464b;
	text-decoration: none;
	transform: translateX(5px);
}

@media (max-width: 768px) {
	#work .row::before {
		display: none;
	}
	
	.project-item .project-image,
	.project-item.project-reverse .project-image {
		order: 1;
		flex: 0 0 100%;
	}
	
	.project-item .project-desc,
	.project-item.project-reverse .project-desc {
		order: 2;
	}
	
	.project-item,
	.project-item.project-reverse {
		flex-direction: column;
	}
}

/*===========================team=====================*/
.team-member {
	margin: 0 15px;
}

.team-member-info {
	padding: 10px 0 30px 0;
}

h4.team-member-name {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-top: 20px;
}

h4.team-member-designation {
	color: #34c6d3;
	font-size: 15px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 1px;
	padding-top: 5px;
}

/*=========================social==================*/
.social-list {
	padding-left: 0px;
}

.social-list li {
	list-style: none;
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-right: 6px;
	margin-top: 10px;
}

.social-icon i {
	font-size: 17px;

}

.icon-gray i {
	color: #64707b;
}

.icon-white i {
	color: #fff
}

.social-icon i:hover {
	color: #34c6d3;
}

/*========================= testimonials ==================*/
#testimonial-cover {
	background-image: url("../img/bg-testimonials.jpg");
}

#testimonials .content-box {
	background-color: rgba(0, 0, 0, 0.1);
}

.content-title-white h3 {
	color: white;
}

#customers-testimonials {
	padding: 50px 0;
}

.testimonials img {
	max-width: 120px;
	margin: 0 auto 0 auto;
}

.testimonials blockquote {
	border: 0;
}

.testimonials blockquote p {
	color: #fff;
}


.testimonials blockquote {
	font-family: Georgia, sans-serif;
	font-style: italic;

	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 150px;
	padding-right: 150px;
	position: relative;
}

.testimonials blockquote::before,
.testimonials blockquote::after {
	font-size: 80px;
	font-style: normal;
	line-height: 1;
	width: 30px;
	height: 30px;
	color: #fff;
	position: absolute;
}

.testimonials blockquote::before {
	content: "\201C";
	top: 0;
	left: 100px;
}

.testimonials blockquote::after {
	content: "\201D";
	bottom: 0;
	right: 100px;
}

.testimonial-author p {
	color: #fff;
	font-size: 17px;

}

.testimonial-author p strong {
	display: block;
}

/*========================= Pricing section ==================*/
.pricing-box {
	border: 3px solid #34c6d3;
	padding: 50px 0;
	margin: 40px 0;

}

h4.pricing-title {
	background-color: #34c6d3;
	color: #fff;
	display: inline-block;
	padding: 7px 15px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}

h3.pricing-value {
	font-size: 45px;
	font-weight: 700;
}

h3.pricing-value sup {
	font-size: 22px;
	font-weight: normal;
	vertical-align: super;
}

ul.pricing-spec {
	list-style: none;
	padding-left: 0;
	margin: 20px 0 60px 0;
}

ul.pricing-spec li p {
	font-weight: 400;
	text-transform: uppercase;
}

.pricing-box-lg {
	padding: 90px;
	margin: 0;
	background-color: #34c6d3;

}

.pricing-box-lg h4.pricing-title {
	color: #34c6d3;
	background-color: #fff;
}

.pricing-box-lg ul.pricing-spec li p {
	color: #fff;

}

/*========================= Stats section ==================*/
#stats-cover {
	background-image: url("../img/bg-stats.jpg");
}

#stats-cover {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

#stats .content-box {

	background-color: rgba(0, 0, 0, .7);
}


.stats-item {
	padding: 100px 0;
}

.stats-item i {
	color: #34c6d3;
}

.stats-item h2 {
	color: #fff;
	font-size: 35px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 1px;
}

.stats-item p {
	color: #fff;
	text-transform: uppercase;
	margin-top: 5px;
}

/*========================= Client section ==================*/
.client {
	padding: 40px 0;
}

/*=============================contact========================*/
footer {
	background-color: #42464b;
	padding-top: 18px;
	padding-bottom: 0px;

}

#contact-left h3,
#contact-right h3 {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
}

#contact-left p {
	color: #fff;
	margin-bottom: 30px;
}

#contact-info {
	background-image: url("../img/world-map.png");
	background-repeat: no-repeat;
	background-size: contain;
}

address strong {
	font-size: 16px;
}

address {
	color: #fff;
}

address strong,
#phone-fax-email strong {
	letter-spacing: 1px;
}

form .form-control {
	background: transparent;
	border-radius: 0;
	border-color: #fff;
	font-size: 17px;
	font-weight: 300;
	padding: 8px 16px;
	margin-bottom: 20px;
	color: #fff;
}


#send-btn{
    border: 2px solid #fff;
	padding: 12px 26px 12px 26px;
	font-size: 16px;
	font-weight: 400;
	text-transform: Uppercase;
	text-decoration: none;
	border-radius: 0px;
        background-color: #41464b;
        color: white;
        text-decoration: none;
        cursor: pointer; 	
}
#send-btn:hover{
	background-color:white;
	color:#41464b;	
}

/*===================footer =========*/
#footer-bottom {
	background-color: rgba(0, 0, 0, 0.5);

	margin-top: 50px;
	margin-bottom: 0px;
	padding-top: 20px;
	padding-bottom: 1px;

}

#footer-copyright p {
	margin: 0;
	color: #fff;
}

#footer-menu {
	float: left;
	color: #fff;
	font-size: 16px;
	font-weight: 300;

}

#footer-menu ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

#footer-menu ul li {
	display: inline-block;

}

#footer-menu a {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	margin: 0 10px;
	text-decoration: none;

}

#footer-menu a:hover {
	color: #34c6d3;
}

/*===================navigation =============*/
.navbar {
	padding: 5px 0;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.dotclass-top-nav {
	background: rgba(0, 0, 0, 0.7);
	padding: 7px 0;
}

.dotclass-nav-wrapper {
	padding: 0px 85px;
}

.navbar-nav {
	float: right;
}

.navbar-nav > li > a {

	font-size: 15px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0px;

}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
	background: none;
	color: #34c6d3;

}

.navbar-toggle {
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid #fff;
	border-radius: 0;
}

.navbar-toggle .icon-bar {
	background-color: #fff;
}

.navbar-collapse {
	max-height: none ! important;
}

.dotclass-top-nav ul.navbar-nav > li.active > a {
	color: #34c6d3 ! important;

}

.navbar-brand > h3 {
	margin: 0px;
	color: #fff;
	font-weight: 900 !important;

}

#dothead {
	color: #34c6d3;
}
