/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
}

a {
	color: #c23178;
}

a:hover {
	color: #c23178;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
}
.diaplynone {
	display:none;
}
/*--------------------------------------------------------------
	# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: #ee3223;
	border-bottom-color: #ee3223;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 995;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	color: #c23178;
	transition: all 0.4s;
	border: 2px solid #c23178;
}

.back-to-top i:hover {
	background: #c23178;
	color: #fff;
}

/*--------------------------------------------------------------
	# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
	# Top Bar
--------------------------------------------------------------*/
#topbar {
	height: 40px;
	font-size: 14px;
	transition: all 0.5s;
	display:none!important;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar .contact-info {
	color: white;
}

#topbar .contact-info i {
	color: #d9ba85;
	padding-right: 4px;
}

#topbar .contact-info i + i {
	margin-left: 15px;
}

#topbar .languages ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #cda45e;
}

#topbar .languages ul a {
	color: white;
}

#topbar .languages ul li + li {
	padding-left: 10px;
}

#topbar .languages ul li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: rgba(255, 255, 255, 0.5);
	content: "/";
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
    background: rgb(12 11 9 / 0%);
    border-bottom: 1px solid rgb(12 11 9 / 0%);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 0px;
}

#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	border-bottom: 1px solid #37332a;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}
#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 80px;
}
#header.header-scrolled .logo img{
	max-height: 40px;
}
/*--------------------------------------------------------------
	# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > ul {
	display: flex;
	align-items: center;
}

.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	padding-left: 16px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #000;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #000;
}

.header-scrolled .nav-menu a {
    color: #fff;
}

.header-scrolled .nav-menu a:hover, .header-scrolled .nav-menu .active > a,.header-scrolled  .nav-menu li:hover > a {
	color: #fff;
}


.nav-menu .book-a-table a {
	border: 2px solid #cda45e;
	color: #000;
	border-radius: 50px;
	padding: 8px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.3s;
}

.nav-menu .book-a-table a:hover {
	background: #cda45e;
	color: #fff;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 15px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #1a1814;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
	color: #cda45e;
}

.nav-menu .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover > ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down > a:after {
		content: "\ea9d";
	}
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #fff;
}

.mobile-nav {
	position: fixed;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #1a1814;
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav .mobile-nav-close {
	margin: 0 15px 0 auto;
	display: block;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
}

.mobile-nav .mobile-nav-close:hover {
	color: #fff;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
	transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #cda45e;
	text-decoration: none;
}

.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}

.mobile-nav .book-a-table a {
	color: #fff;
	border: 2px solid #cda45e;
	border-radius: 50px;
	margin: 20px 0 0 0;
	padding: 10px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.3s;
	display: inline-block;
}

.mobile-nav .book-a-table a:hover {
	background: #cda45e;
	color: #fff;
}

.mobile-nav .drop-down > a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}

/*--------------------------------------------------------------
	# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("../img/banner.jpg") top center no-repeat;
	background-size: cover;
	position: relative;
	padding: 0;
}

#hero:before {
	content: "";
	background: rgba(0, 0, 0, 0.0);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .container {
	padding-top: 0px;
	z-index:99;
}

@media (max-width: 992px) {
	#hero .container {
		padding-top: 98px;
	}
}

#hero h1 {
	margin-bottom: 30px;
	font-size: 72px;
	font-weight: 700;
	line-height: 56px;
	color: #f05422;
	font-family: "Poppins", sans-serif;
	text-align: center;
	text-transform:uppercase;
}

#hero h1 span {
	color: #000;
}

#hero h2 {
	color: #000;
	margin: 10px 50px ;
	font-size: 32px;
	text-align: center;
	text-transform:uppercase;
}
#hero H2 span {
	color: #f05422;
}
#hero p {
	color: #000;
	margin: 10px 0 10px 0;
	font-size: 20px;
	line-height:1.4;
}


#hero .img-sec {
	position:absolute;
	right:0;
	top:0;
	z-index:1;
	width:53%;
}
#hero .btns {
	margin-top: 30px;
}

#hero .btn-menu, #hero .btn-book {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	color: white;
	border: 2px solid #cda45e;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
	background: #cda45e;
	color: #fff;
}

#hero .btn-book {
	margin-left: 15px;
}

#hero .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}

#hero .play-btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(205, 164, 94, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
	border-left: 15px solid #cda45e;
	transform: scale(20);
}

#hero .play-btn:hover::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: scroll;
	}
}

@media (max-width: 992px) {
	#hero .play-btn {
		margin-top: 30px;
	}
}

@media (max-height: 500px) {
	#hero {
		height: auto;
	}
	#hero .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
	# Sections General
--------------------------------------------------------------*/
section {
	padding: 0px 0;
	overflow: hidden;
}

.section-bg {
	/* background-color: #1a1814;*/
}

.section-title {
	padding-bottom: 10px;
}

.section-title h2 {
	font-size: 40px;
    font-weight: 800;
	padding: 0;
	line-height: 1.2;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: "Poppins", sans-serif;
}
.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	font-family: "Playfair Display", serif;
	color: #cda45e;
}

/*--------------------------------------------------------------
	# upcomingevents
--------------------------------------------------------------*/
.upcomingevents {
	padding:40px 0;
	position: relative;
    z-index: 1;
}
.upcomingevents .ueheader {
    padding: 0 0px 0px 15px;
}
.upcomingevents .upcomingevents-item {
	box-sizing: content-box;
	padding: 0 15px 0 0 ;
}
.upcomingevents .col-md-9
{
	padding:0;
	margin:0;
}
.upcomingevents .owl-nav, .upcomingevents .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.upcomingevents .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.upcomingevents .owl-dot.active {
	background-color: #f15c22 !important;
}

.upcomingevents .uebg-img {
	position:relative;
	}
.upcomingevents .uebg-img:before {
	content: "";
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
right: 0;
}
.upcomingevents .ue-content {
	position:absolute;
	top:0;
	left:0;
	right:0;
bottom:0;
}
.upcomingevents .ue-logo { 
	width: 40%!important;
margin:auto;
}
.upcomingevents .date {
	color:#000;
	font-size:20px;
text-align:center;
font-weight:800;
}

@media (max-width: 767px) {
	.upcomingevents {
		margin: 30px 10px;
	}
}
/*--------------------------------------------------------------
	# About Us
--------------------------------------------------------------*/
.about {
	text-align:center;
	background: url(../img/about_us.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	align-items:center;
	color:#fff;
	padding: 60px 0;
}
.about .section-title h2 {
    font-size: 40px;
    font-weight: 700;
    padding: 0;
    line-height: 1.2;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-align:left;
}
.about .text {
	text-align: left;
	font-size: 18px;
}
/*==================== # About Lists =======================================*/
.services {
	padding:30px 0;
	text-align:center;
	align-items:center;
}
.services .section-title h2 {
	color:#600d3b;
	text-align:center;
}
.services .content-item {
	padding: 40px;
}
.services .content-item img {
	display: block;
	font-size: 24px;
	font-weight: 400;
	width:34%;
	margin-left: 33%;
}
.services .content-item h4 {
	font-size: 28px;
	font-weight: 400;
	padding: 0;
	margin: 20px 0 10px;
}
.services .content-item p {
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.mkc {float: right;width: 65%;padding: 0px 40px;}
.vvaimg {float: right;width: 50%;padding: 0px 40px;}
.sia {float: left;width: 50%;padding: 0px 40px;}

@media (max-width: 768px) {
	.services .content-item {
		padding: 40px 0;
	}
	.mkc {float: right;width: 100%;padding: 0px 0px;}
	.vvaimg {float: left;width: 90%;padding: 0px 40px;}
	.sia {float: left;width: 100%;padding: 0px 40px;}
}

/*=================== # ddm ===========================*/
.ddm {
	text-align:center;
    background: url(../img/Data.png) center center no-repeat;
	background-size: cover;
	position: relative;
	align-items:center;
	color:#fff;
	padding:40px 0;
	
}
.ddm .section-title h2 {
	font-size: 55px;
    font-weight: 900;
    padding-top: 15px;
    line-height: 1.2;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-align:left;
}
.ddm .text {
	text-align: left;
	font-size:23px
}
/*--------------------------------------------------------------
    # About 2
--------------------------------------------------------------*/
.blazing {
	align-items:center;
	padding:40px 0;
}
.blazing .Heading
{
	padding-top: 30px;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    padding: 30px 3% 10px;
    color: #7c1c6f;
}
.blazing .Sub-Heading
{
	text-align:center;
	color:#777272;
	font-size:24px;
}
.blazing .section-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    text-transform: capitalize;
    line-height: 1.3;
    text-align: left;
	
}
.blazing .text
{
	line-height:1.4;
	padding: 0px 30px 0 0;
	text-align:left;
	font-size:20px
}
.blazing .Strategic {
	padding: 60px 0px 0 0;
}
.blazing .vva {
	padding: 60px 0px 0 0;
}
/*--------------------------------------------------------------
	# life
--------------------------------------------------------------*/
.life
{
	background: url(../img/life-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	align-items:center;
	padding:30px 0;
	color:#fff;
}
.life .Heading
{
	padding-top:30px;
	font-weight:600;
	text-align:center;
	font-size:40px;
}
.life .Sub-Heading
{
	text-align: center;
    padding: 2% 10% 0% 2%;
    font-size: 28px;
}
.life .uconboxes {  
	align-items:center;
	padding:40px 0;
	color:#fff;
}
.life .firstcharacter {
	color:#ff9000;
}
.life .nob {
	padding:40px 30px;
	background-color:#9c3b8f7d;
	height:90%;
}
.life .br {
	border-right:0px solid #ff9000;
}
.life .bb {
	border-bottom:0px solid #ff9000;
}
.life .bl {
	border-left:0px solid #ff9000;
}
.life .bt {
	border-top:0px solid #ff9000;
}
.life .text {
	font-size: 22px;
}

/* ================ clients ==========================*/
.clients {padding:60px 0 0 0;}
.clients .section-title h2{color:#000; padding:20px;text-align:center;}
.our_client_logo {padding:25px;}

/*================= upcomingevents ===================*/
.testimonials {
	padding:40px 0;
	position: relative;
    z-index: 1;
}
.testimonials .section-title h2 {
	color:#600d3b;
	text-align:center;
	font-weight:600;
	padding:20px 0;
}
.testimonials .ueheader {
    padding: 0 0px 0px 15px;
}
.testimonials .ueheader h2{
    font-weight: 700;
    text-align:center;
}
.testimonials .upcomingevents-item {
	box-sizing: content-box;
	padding: 0 15px 0 0 ;
}
.testimonials .owl-nav, .testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
}
.testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.testimonials .owl-dot.active {
	background-color: #f15c22 !important;
}
@media (max-width: 767px) {
	.our_client_logo {
		padding: 10px 0px;
	}
	.testimonials {
		margin: 30px 10px;
	}
}
/*---------------------- # contact  -----------------------------------------------*/
.contact {
	padding:50px;
}
.contact .section-title h2 {
	color:#600d3b;
	text-align:center;
	font-weight:600;
	padding:20px 0;
}
.contact .info-box {
	color: #444;
	text-align: center;
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 20px 0 30px 0;
	margin-bottom: 30px;
	width: 100%;
}

.contact .info-box i {
	font-size: 32px;
	color: #c23178;
	border-radius: 50%;
	padding: 8px;
	border: 2px dotted #c23178;
}

.contact .info-box h3 {
	font-size: 20px;
	color: #666;
	font-weight: 700;
	margin: 10px 0;
}

.contact .info-box h4 {
	font-size: 18px;
	color: #666;
	font-weight: 700;
	margin: 10px 0;
}
.contact .info-box p {
	padding: 0 20px;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.contact .php-email-form h4 {
	font-size: 20px;
	color: #666;
	font-weight: 700;
	margin: 10px 0;
}

.contact .php-email-form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 10px 30px 24px 30px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #ff1a00;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
	background-color: #ff1a00;
}

.contact .php-email-form input {
	padding: 20px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: #c23178;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #c23178;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
#footer {
	background: #181818;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	background: #4f4f4f;
	border-top: 1px solid #181818;
	border-bottom: 1px solid #181818;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Raleway", sans-serif;
	color: #fff;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #768fa6;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: #c23178;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #c23178;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #c23178;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 0px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #c23178;
	color: #fff;
	transition: 0.3s;
	border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #c23178;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

#footer .credits a {
	color: #c23178;
}


/* ==================  testi css =============== */
.heading {
    font-size: 40px;
    font-weight: 800;
    padding: 0;
    line-height: 1.2;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
    position: relative;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
/*.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}*/
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    background: url(../img/about_us.jpg) top center no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
	background-size: cover;
}
#testimonial4 .carousel-inner:hover{
	cursor: -moz-grab;
	cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
	overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
	left: 0;
	margin: 0;
	width: 100%;
	font-size: 0;
	height: 20px;
	bottom: 15px;
	padding: 0 5px;
	cursor: e-resize;
	overflow-x: auto;
	overflow-y: hidden;
	position: absolute;
	text-align: center;
	white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
	padding: 0;
	width: 14px;
	height: 14px;
	border: none;
	text-indent: 0;
	margin: 2px 3px;
	cursor: pointer;
	display: inline-block;
	background: #ffffff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
	padding: 0;
	width: 14px;
	height: 14px;
	border: none;
	margin: 2px 3px;
	background-color: #9dd3af;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
	height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
	background: #eeeeee;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.testimonial4_control_button .carousel-control{
	top: 175px;
	opacity: 1;
	width: 40px;
	bottom: auto;
	height: 40px;
	font-size: 10px;
	cursor: pointer;
	font-weight: 700;
	overflow: hidden;
	line-height: 38px;
	text-shadow: none;
	text-align: center;
	position: absolute;
	background: transparent;
	border: 2px solid #ffffff;
	text-transform: uppercase;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
	transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
	left: 7%;
	top: 50%;
	right: auto;
}
.testimonial4_control_button .carousel-control.right{
	right: 7%;
	top: 50%;
	left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
	color: #000;
	background: #fff;
	border: 2px solid #fff;
}

.testimonial4_header{
	top: 0;
	left: 0;
	bottom: 0;
	width: 550px;
	display: block;
	margin: 30px auto;
	text-align: center;
	position: relative;
}
.testimonial4_header h4{
	color: #ffffff;
	font-size: 30px;
	font-weight: 600;
	position: relative;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.testimonial4_slide{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 70%;
	margin: auto;
	padding: 20px 0;
	position: relative;
	text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
	color: #ffffff;
	font-size: 22px;
}

.testimonial .carousel {
	padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}
/* ------testimonial  close-------*/
