/* CSS File 
	===================
	Template Name: Startup - Coming soon templete
	Author: ashishmaraviya
	Author URI: https://www.codester.com/ashishmaraviya/
	Version: 1.0
	Copyright 2020
===================*/
/*------------------------------------------------------------------
	[ Master css file, Table of contents ]
	
	00. General css
		- Body, a, button, img, li, p, h1 to h6
		- loader
		- .global_title
	01. Hero section css / .hero-section
		- Inner hero section / .inn_hero
	02. About us section css / .about_sec
	03. Portfolio section css / .portfolio_sec
	04. Contact section css / .contact_sec
		- Footer / footer
	05. Modal css / .info-modal
	06. Newsletter section css / #newsletter_modal, .subscribe_now
	07. Whatsapp chat css / .wc-style, .contact
------------------------------------------------------------*/

/*------------------------------------------------------------------
	# [Color codes]
	Primary color : #ffeb3b
# */

/*------------------------------------------------------------------
	[Typography]
	
	Title copy:      font-family: 'Poppins', sans-serif;
	Body copy:      font-family: 'Open Sans', sans-serif;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

html
{
	 overflow-x:hidden; 
}
body
{
	overflow-x:hidden;
	font-family: 'Open Sans', sans-serif;
	background-color:#fff;
	position:relative;
	margin:0;
}
h1{
	font-size: 50px; 
}

h2{
	font-size: 42px;
}

h3{
	font-size: 24px; 
}

h4{
	font-size: 18px;
}

h5{
	font-size: 17px;
}

h6{
	font-size: 15px;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Poppins', sans-serif;
	color: #222;
	margin: 15px 0;
	letter-spacing: 0.05rem;
}
p{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    letter-spacing: 0.01rem;
    line-height: 28px;
	color: #555;
}
/* 00 General css start*/
.btn-black{
	margin: 0 11px 0 0;
    padding: 10px 20px;
    color: #fff !important;
	font-size: 15px;
	background-color: rgba(11, 13, 19, 0.8);
    border-radius: 0;
    border: 1px solid #222;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.btn-black:hover{
	cursor: pointer;
	color: #111 !important;
    background-color: #fff;
    outline: none;
    text-decoration: none;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
::-moz-selection { 
	color: #fff;
	background: #ffeb3b;
}
::selection {
	color: #fff;
	background: #ffeb3b;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #555;
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.auto-height{
	margin: 0;
	min-height: 100vh;
}
.main-container{
	padding: 0;
}
.main-block{
	min-height: 100vh;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	z-index: 2;
	text-align: center;
	background: url(../img/background.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(11, 13, 19, 0.8);
}
#canvas{
	width: 100%;
	height: 100vh;
	margin: auto;
	position: fixed;
	left: 0;
	display: flex;
	display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-pack: center;
    align-items: center;
    justify-content: center;
	z-index: 2;
	text-align: center;
	background: url(../img/background.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(11, 13, 19, 0.8);
}
.main-info{
	width: 600PX;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	text-align: center;
	z-index: 3;
}
.loader-wrapper {
	height: 100vh;
	width: 100vw;
	display: flex;
	background-color: #ffffff;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	z-index: 3;
	top: 0; 
}
.loader {
	border: 16px solid #111;
	border-radius: 50%;
	border-top: 16px double #ffeb3b;
	border-bottom: 16px double #ffeb3b;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.validation{
	display: none;
	position: absolute;
    top: 50px;
}
.about_sec, .portfolio_sec, .contact_sec {
	padding: 100px 0;
}
.global_title { 
	margin: -7px 0 20px 0;
	font-size: 42px;
	text-align: center;
	font-weight: 300;
}
.global_title span { 
	font-weight: 600;
} 
/* General css end*/

/* 01 hero section start */
.hero-section{
	position: relative;
	z-index:1;
}
.hero-section-position {
	position: absolute;
}
.logo{
	margin: 0 auto 30px auto;
	text-align: center;
}
.logo img{
	width: 200px;
}
.hero-detail {
	margin: 0;
	padding: 30px;
	background-color: rgba(11, 13, 19, 0.8);
	border: 1px solid #222;
}
.title{
	margin-bottom: 15px;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
	line-height: 40px;
	text-align: center;
}
.title span{
	color: #ffeb3b;
	font-weight: 800;
}
.sub-title{
	text-transform: uppercase;
	color: #555;
	font-weight: 600;
}
.description{
    margin: auto auto 5px auto;
	color: #777;
}
.description, .sub-title{
	margin-bottom: 5px;
}
.hero-container{
    position: relative;	 
	z-index: 1;
}
.hero-counter, .hero-container{
	max-width: 600px;
}
.counter {
	margin: 10px -8px -10px -8px;
	display: block;
}
#timer{
    color: #111;
    text-align: center;
    text-transform: uppercase;
}
#timer .date-box{
	margin: 10px 8px;
	padding: 10px;
	width: 96px;
    height: 96px;
	display: inline-block;
	background-color: transparent;
	border: 1px solid #222;
	font-size: 32px;
	font-weight: 600;
	z-index: 2;
	color: #fff;
}
#timer .text{
	font-size: 12px; 
	font-weight: 300;
	color: #fff;
}
.hero-counter-desc{
	color: #f1f1f1;
	font-size: 14px;
	font-weight: 300;
}
.nav-buttons button{
	margin: 5px;
	padding: 0 20px;
	border: none;
	height: 44px;
	color: #fff;
	font-size: 15px;
    background-color: rgba(11, 13, 19, 0.8);
	border-radius: 0;
	border: 1px solid #222;
	text-transform: uppercase;
	position: relative;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
.nav-buttons .button:hover{
	color: #111;
	background-color: #fff;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition:	all ease 0.3s;
	-o-transition: all ease 0.3s;
}
/* Inner hero section */
.inn-logo {
	position: absolute;
	top: 20px;
}
.inn-logo img {
	width: 150px;
}
.inn_hero {
	height: 50vh;
	align-items: center;
	background-color: #333;
	position: relative;
	background: url(../img/inner-bg.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(11, 13, 19, 0.6);
}
.inn_hero:after {
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 0;
	background: url(../img/inn-hero-after.png);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.inn_hero .inn-title{
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inn_hero .inn-title h1{
	color: #fff;
}
ul.breadcrum {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
ul.breadcrum li:before {
    content: "/";
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 0;
    right: -12px;
}
ul.breadcrum li:last-child:before{
	display: none;
}
ul.breadcrum li {
    color: #ffeb3b;
}
ul.breadcrum li {
    margin: 0 8px;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}
ul.breadcrum li a {
    color: #fff;
    text-decoration: none;
}
/* hero section end*/

/* 02 About us start */
.about_sec {
	width: 100%;
	margin: 0;
}
.about_sec .global_title{
	text-align: left;
}
.about_sec .about-img
{
	margin: 0 auto;
	max-width: 600px;
	max-height: 600px;
	position: relative;
}
.about_sec .about-img img {
	width: 100%;
	background-size: 100%;
	position: relative;
	z-index: 2;
}
.about_sec .about-img .back-img{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../img/doter-bg-2.png);
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: 1;
}
.about_sec .detail {
	width: 100%;
	margin: 0 0 -15px 0;
	padding: 0;
}
.about_sec .detail h3 {
	margin: 0 0 14px 0;
	padding: 0;
	font-size: 17px;
	color: #555;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
}
.about_sec .detail p {
	margin-bottom: 15px;
	padding: 0;
	font-size: 15px;
	color: #777;
	line-height: 24px;
	font-weight: 300;
}
.about_sec .detail .join_btn {
	margin: 10px 0 15px 0;
	display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #222;
    line-height: 23px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.about_sec .detail .join_btn:hover {
	color: #fff;
	background-color: #222;
}
/* About us end */

/* 03 portfolio start */
.portfolio_sec {
	padding: 100px 0 85px 0;
	background: #f8f8f8;
}
.portfolio_sec .card {
	margin: 15px 0;
	border: none;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .1);
}
.portfolio_sec .card img{
	width: 100%;
}
.portfolio_sec .card figure {
	margin-bottom: 0;
}
.portfolio_sec .caption_global {
    height: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 13, 19, 0.5);
    border: 5px solid transparent;
    text-align: center;
    z-index: 999;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.portfolio_sec figure:hover .caption_global {
    opacity: 1;
    border: 5px solid #ffeb3b;
    border-top: 5px solid #ffeb3b;
    border-bottom: 5px solid #222222;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.portfolio_sec .caption_global .cap_info h4 {
	color: #ffeb3b;
}
.portfolio-tabs {
    margin-bottom: 15px;
    text-align: center;
}
.portfolio-tabs ul {
    padding-left: 0;
}
.portfolio-tabs ul li {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    margin: 5px;
    transition: all 0.2s;
    border: 1px solid #222;
    line-height: 23px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.portfolio-tabs ul li:hover {
	background-color: #333;
	color: #fff;	
}
.mixitup-control-active {
    background-color: #222;
	color: #fff;
}
/* portfolio end */

/* 04 Contact us start */
.contact_sec {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 100px 0 94px 0;
}
.contact_sec .contact_form_detail {
	margin: 0 0 35px 0;
}
.contact_sec .form-control {
	height: 50px;
	margin: 0 0 30px 0;
	padding: 0 24px;
	font-size: 15px;
	color: #777;
	border: 1px solid #222;
	border-radius: 0;
	box-shadow: none;
}
.contact_sec .form-control::-webkit-input-placeholder { /* Edge */
  color: #a0a0a0;
}

.contact_sec .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a0a0a0;
}

.contact_sec .form-control::placeholder {
  color: #a0a0a0;
}
.contact_sec .form-control.field {
    height: 130px;
    padding-top: 15px;
}
.contact_sec .contact_form_btn {
    padding: 0 20px;
    border: 1px solid #222;
    height: 44px;
    color: #333;
    font-size: 15px;
    background-color: rgba(255, 255, 255,0.5);
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.contact_sec .contact_form_btn:hover {
	color: #fff;
    background-color: #222;
}
.contact_sec .form_info .map_info {
    width: 100%;
    margin: 0 0 -5px 0;
    padding: 0;
    position: relative;
}
.contact_sec .cap_info {
	margin: 15px 0;
	border-top: 5px solid #ffeb3b;
    border-bottom: 5px solid #222222;
    border-left: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .09);
	transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.contact_sec .cap_info:hover {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}
.contact_sec .cap_info .cap_info_detail {
	padding: 30px;
	background-color: #fff;
}
.contact_sec .cap_info .cap_info_icon{
	width: 70px;
	height: 70px;
	margin: 0 auto 15px auto;
	background-color: #222222;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.contact_sec .cap_info .cap_info_icon i{
	font-size: 30px;
	color: #ffeb3b;
}
.contact_sec .cap_info .cap_info_text {
    margin: 0;
    color: #909092;
    text-align: center;
    padding: 0;
    line-height: 28px;
}
.contact_sec .map_info {
	margin: 35px 0 0 0;
}
.contact_sec .cap-space-2 {
	width: 100%;
	margin: auto;
	display: flex;
}
.contact_sec .contact-validation{
	display: none;
	position: absolute;
    top: 50px;
    font-size: 14px;
    color: red;
}
.contact_sec #c_form_valid {
    margin: auto;
	color: green;
    top: 50px;
    left: 0;
    right: 0;
}
.contact_sec .contact-validation-msg{
    top: 130px;
}
.contact_sec .btn-block {
	position: relative;
}
/* Contact us end */

/* 05 Footer start */
footer {
	width: 100%;
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: 1;
}
footer:after {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    background: url(../img/inn-hero-after.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.footer_detail {
	width: 100%;
	margin: 0;
	padding: 60px 0 0 0;
	background: #111;
	position: relative;
	overflow: hidden;
}
.footer_detail .inner {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 99;
}
.footer_detail .footer-info .logo{
	width: 170px;
}
.footer_detail .footer-info p {
	color: #bebebe;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01rem;
    line-height: 28px;
}
.footer_detail h3 {
	margin: -4px 0 25px 0;
	padding: 0;
	font-size: 22px;
	color: #fff;
	font-weight: 500;
}
ul.footer_link {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.footer_link li {
	margin: 0 0 7px 0;
	padding: 0;
	display: block;
	font-size: 15px;
	font-weight: 300;
    letter-spacing: .01rem;
	color: #bebebe;
}
ul.footer_link li:last-child{
	margin-bottom: 0;
}
ul.footer_link li a {
	color: #bebebe;
	line-height: 28px;
	text-decoration: none;
}
ul.footer_link li a:hover {
	color: #ffeb3b;
}
ul.add_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.add_info li {
	margin: 0 0 15px 0;
	padding: 0;
	display: block;
	font-size: 15px;
	color: #bebebe;
	line-height: 28px;
	position: relative;
}
ul.add_info li .detail {
	display: flex;
    align-items: center;
}
ul.add_info li .detail .text {
    margin-left: 15px;
    color: #bebebe;
    font-weight: 300;
    letter-spacing: .01rem;
}
ul.add_info li:last-child {
	margin-bottom: 0;
}
ul.add_info li i {
	width: 38px;
    height: 38px;
    /* border: 2px solid rgba(255, 255, 255, 0.20); */
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 38px;
    background-color: #1d1d1d;
    border-radius: 50%;
}
ul.add_info li a {
	color: #bebebe;
	text-decoration: none;
}
.footer_detail .form-control {
	height: 50px;
	margin: 20px 0 15px 0;
	padding: 0 24px;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.20);
	box-shadow: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #bebebe;
	border-radius: 0;
}
.footer_detail .subscribe_btn {
	height: 48px;
	margin: 0; 
    padding: 10px 20px;
    display: inline-block;
    background-color: transparent;
    border-radius: 0;
    font-size: 15px;
    color: #bebebe;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.20);
    cursor: pointer;
    letter-spacing: .01rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.footer_detail .subscribe_btn:hover {
    background-color: #fff;
    color: #222;
}
.footer_social {
	width: 100%;
	margin: 0;
	padding: 0;
}
.footer_social ul {
	margin-bottom: 0;
	padding: 0;
}
.footer_social li {
	width: 34px;
    margin: 0 10px 0 0;
	padding: 0;
	display: inline-block;
	position: relative;
	line-height: 36px;
}
.footer_social li i:hover {
	background-color: #fff;
	color: #222;
}
.footer_social li a {
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 15px;
	font-weight: 300;
    letter-spacing: .01rem;
	color: #bebebe;
}
.footer_social li i {
	width: 38px;
	height: 38px;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.20);
	text-align: center;
	font-size: 18px;
	color: #bebebe;
	line-height: 34px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.footer_subscribe_form .input-group input {
	width: 100%;
	margin-top: 0;
}
.footer_subscribe_form .validation {
	top: 120px;
}
/********  Copyright  ********/
.copyright {
	width: 100%;
	margin: 50px 0 0 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	text-align: center;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: .01rem;
	color: #bebebe;
	line-height: 20px;
}
.copyright span {
    font-weight: 600;
    color: #ffeb3b;
}
/* Footer end */

/* 06 Modal css start */
.info-modal {
	overflow-x: hidden;
}
.modal-close-btn{
	background-color: white;
	position: absolute;
	top: 15px;
	right: 20px;
	opacity: 0.4;
	z-index: 2;
}
.modal-close-btn:hover{
	opacity: 1;
}
.modal-close-btn a img{
	width: 25px;
	height: 25px;
}
.modal-content{
	/*min-width: 100%;*/
	border: none;
	border-radius: 0;
}
.modal-center{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-btn{
	position: relative;
	top: 15px;
	right: 15px;
}
/* Modal css end */

/* 06 newsletter modal start */
#newsletter_modal .modal-body{
	padding: 50px;
	background-image: url('../img/modal-bg.png');
	background-position: center;
    background-size: cover;
}
#newsletter_modal .modal-close-btn{
	right: 15px;
}
#newsletter_modal .modal-logo {
	/*width: 150px;*/
	margin-bottom: 30px;
}
.subscribe_now{
	margin: auto;
	width: 600px;
	text-align: center;
}
.subscribe_now p{
	margin-bottom: 30px;
	color: #333;
	font-size: 14px;
}
#success{
	color: green;
}
#warning, #faild{
	color: red;
}
.subscribe_form{
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.subscribe_form:focus{
	outline: none;
}
.subscribe_form .form-control:focus {
	box-shadow: none;
}
.subscribe_form input{
	height: 44px;
	background-color: #fff;
	border: 1px solid #333;
    border-radius: 0;
    /*color: #fff;*/
}
.subscribe_form button{
	margin-left: 10px;
	padding: 0 20px;
	border: 1px solid #333;
	height: 44px;
	color: #333;
	font-size: 15px;
    background-color: rgba(255, 255, 255,0.5);
	border-radius: 0;
	text-transform: uppercase;
	position: relative;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
.subscribe_form .button:hover{
	color: #fff;
	background-color: #333;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition:	all ease 0.3s;
	-o-transition: all ease 0.3s;
}
.subscribe_form .button:focus{
	box-shadow: none;
}
input[type="email"]::placeholder {
    color: #777; 
}
input[type="email"]::-ms-input-placeholder {
    color: #ddd;
}
input[type="email"]:focus:-ms-input-placeholder {
    color: #888;
}
input[type="email"]:focus::-moz-placeholder {
    color: #888;
}
input[type="email"]:focus:-moz-placeholder {
    color: #888;
}
input[type="email"]:focus::-webkit-input-placeholder {
    color: #888;
}
.subscribe_form button{
	margin-left: 10px;
	padding: 0 20px;
	border: none;
	height: 44px;
	color: #111;
	font-size: 15px;
    background-color: #fff;
	border: 1px solid #111;
	border-radius: 0;
	text-transform: uppercase;
	position: relative;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
.subscribe_form .button:hover{
	color: #fff;
	background-color: #111;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition:	all ease 0.3s;
	-o-transition: all ease 0.3s;
}
.subscribe_form .button:focus{
	box-shadow: none;
}
/* newsletter modal end */

/* 07 Whatsapp chat start */
.contact {
	float: right;
}
.contact ul li{
	margin-left: 4px;
	width: 35px;
    height: 35px;
	background-color: rgba(11, 13, 19, 0.8);
	border: 1px solid #222;
	display: inline-flex;
    justify-content: center;
    align-items: center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.contact ul li:hover{
	cursor: pointer;
	background-color: #fff;
}
.contact ul li a{
	width: 35px;
    height: 35px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact ul li:hover i{	
	color: #222;
}
.contact ul li i{
	color: #fff;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.wc-style .wc-button{
	background-color: rgba(11, 13, 19, 0.8);
	border: 1px solid #222;
}
.wc-style .abt-button:hover{
	box-shadow: 0px 0px 2px #a5a3a3;
	background-color: #111;
    border: 1px solid #fff;
}
.wc-style .wc-button:hover{
	box-shadow: 0px 0px 2px #a5a3a3;
	background-color: #26C281;
    border: none;
}
.wc-style .wc-button:hover i {
	color: #fff;
}
.wc-style .wc-button i{
	font-size: 19px;
}
.wc-style{
	display: inline-block;
	position: fixed;
	letter-spacing: 0.1px;
	z-index: 2;
}
.wc-right-bottom{
	bottom: 0;
	right: 1em;
	float: right;
}
.wc-style .wc-panel{
	display: none;
	margin-bottom: 5%;
	width: 275px;
	box-shadow: 0px 3px 7px rgba(12, 12, 12, 0.18);
	background-color: #fff;
}
.wc-style .wc-panel .wc-header{
	padding: 12px 15px 15px;
	text-align: center;
	color: #fff;
	background: -webkit-linear-gradient(to right, #26C281, #09e072);
    background: -moz-linear-gradient(to right, #26C281, #09e072);
    background: -ms-linear-gradient(to right, #26C281, #09e072);
    background: -o-linear-gradient(to right, #26C281, #09e072);
    background: linear-gradient(to right, #26C281, #09e072);
}
.wc-style .wc-header strong{
	font-size: 15px;
	line-height: 20px;
}
.wc-style .wc-header p{
	margin-bottom: 0;
	color: #fff;
	font-size: 12px;
	line-height: 20px;
}
.wc-style .wc-panel .wc-body{
	min-width: 250px;
	white-space: nowrap;
	list-style: none;
	overflow-y: auto;
}
.wc-panel .wc-body ul{
	margin: 0;
	padding: 0;
}
.wc-panel .wc-body ul li{
	display: block;
    padding: 10px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    border-bottom: 1px solid #f5f5f5;
    list-style-type: none;
    transition: all .3s ease-in-out;
}
.wc-style .wc-body .wc-list:hover{
    text-decoration: none;
    cursor: pointer;
}
.wc-style .wc-list .d-flex{
    display: flex;
}
.wc-style .wc-list .wc-img-cont{
	position: relative;
}
.wc-style .wc-list .wc-user-img{
	height: 40px;
	width: 40px;
	vertical-align: middle;
	border-radius: 50%;
}
.wc-style .wc-list .wc-status-icon{
	position: absolute;
	bottom: 5px;
    right: 1px;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	border: 1px solid #fff;
}
.wc-style .wc-list .wc-online{
	background-color: #18d17a;
}
.wc-style .wc-list .wc-offline{
	background-color: #d6d5d5;
}
.wc-style .wc-list .wc-user-info{
	margin-top: 0;
	margin-bottom: auto;
	margin-left: 15px;
}
.wc-style .wc-list .wc-user-info span{
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
}
.wc-style .wc-list .wc-user-info p{
    margin-bottom: 0;
    color: #999;
    font-size: 12px;
    line-height: 15px;
    font-weight: 300;
}
.wc-style .wc-list .wc-chat-icon{
    margin-top: -37px;
    right: -10px;
    position: absolute;
    color: #d4d4d4;
    font-size: 55px;
    opacity: 0.5;
    transition: all .05s ease-in-out;
    overflow: hidden;
}
.wc-style .wc-body .wc-list:hover .wc-chat-icon{
	color: #26c281;
	-webkit-transition: all .05s ease-in-out;
	-moz-transition: all .05s ease-in-out;
	-o-transition: all .05s ease-in-out;
	transition: all .05s ease-in-out;
}
@keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-moz-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-ms-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-o-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
.wc-style .wc-body .wc-list li:hover,
.wc-style .wc-body .wc-list:hover .wc-user-img,
.wc-style .wc-body .wc-list .wc-chat-icon i,
.wc-style .wc-body .wc-list li:hover .wc-chat-icon i,
.wc-style .wc-button:hover{
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.active-btn{
    box-shadow: 0px 0px 2px #a5a3a3;
	border: 1px solid #26C281 !important;
	background-color: #26C281 !important;
}
.deactive-btn{
	border: 1px solid transparent;
}
/* Whatsapp chat end */


