/*-------------------------------------
    
	Author: Webstrot 
	Copyright © 2022
	
---------------------------------------
    
    CSS INDEX
    ===================
	
    1. BODY
	2. CUSTOM CSS / A
	3. PRELOADER
	4. NAVIGATION
	5. SLIDER

---------------------------------------*/
/*--------------
1.Theme default CSS
--------------------------*/
body, html {
		font-family: 'Lato';
	font-size: 16px;
	line-height: 24px;
	color: #797979;
	overflow-x:hidden;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a {
	color: #797979;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover, a:focus {
	color: #707070;
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Poppins';
	line-height: 1.1;
	font-weight:400;
	color: #2d3a4b;
	margin:0;
	padding:0;
}
p{
	margin:0;
}
input, select, button, textarea {
	outline: none;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
	box-shadow:none;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
/*-- Preloader css start --*/
#preloader {
	background-color: #fbfbfb;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
	width: 100%;
	height: 100%;
}
#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
#status img {
}
#return-to-top {
    position: fixed;
    bottom: 43px;
    right: 30px;
    display: block;
    display: none;
	width: 45px;
    height: 80px;
    text-align: center;
    border-radius: 45px;
    line-height: 80px;
    background: #fff;
	box-shadow:0 0 20px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:1000;
	-webkit-animation: jump 1s ease-in alternate infinite;
    animation: jump 1s ease-in alternate infinite;
}
#return-to-top img {
	width:40px;
    position: relative;
	background:transparent;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}
.cursor {
  background-color: #30a3f0;
  	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%; 
  display: block;
  position: fixed;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: scale(1);
  transition: transform .35s ease-out;
  z-index: 1011;
}
@supports not (mix-blend-mode: multiply) {
  .cursor {
    opacity: .7;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cursor {
    visibility: hidden;
  }
}
.cursor-close {
  background-color: #110f10;
  transform: matrix(3, 0, 0, 3, 0, 0) !important;
  mix-blend-mode: difference;
}
.cursor-close::before, .cursor-close::after {
  content: '';
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: cursorClose .6s .1s ease-in-out both;
}
.cursor-close::before {
  height: 100%;
  width: 1px;
}
.cursor-close::after {
  height: 1px;
  width: 100%;
}
.open .cursor {
  mix-blend-mode: lighten;
}
.touch .cursor {
  display: none;
}
.cursor--active {
  animation: cursor-active 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}
.cursor--active.cursor--zoom {
  animation: cursor-active2 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}

@keyframes cursor-active {
  0% {
    box-shadow: 0 0 0 0 #f7541b;
  }
  100% {
    box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursor-active2 {
  0% {
    box-shadow: 0 0 0 0 #f7541b;
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursorClose {
  0% {
    transform: scale(0) rotate(90deg);
  }
  100% {
    transform: scale(0.45) rotate(45deg);
  }
}
/*-- try top banner main wrapper Start --*/

.banner_content_inner_wrapper{
	text-align:left;
	padding:250px 300px;
	float:left;
	width:100%;
	position:relative;
	z-index:1;
}
.banner_content_inner_wrapper img{
	padding-bottom:20px;
}
.slider_right_wrapper{
	 float: left;
    width: 25%;
    position: relative;
    height: 869px;
    background: #30a3f0;
}
.wave-holder {
    position: absolute;
    width: 1003px;
    height: 1000px;
    left: -520px !important;
    overflow: hidden;
    -webkit-pointer-events: auto;
    -moz-pointer-events: auto;
    pointer-events: auto;
    top: 0;
    left: 24%;
    -webkit-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -moz-transition: 8.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -ms-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -o-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.wave-holder {
    opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#wave {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-pointer-events: auto;
   -moz-pointer-events: auto;
     pointer-events: auto;
	-webkit-transform: rotate(-90deg);
   -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
     -o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	-webkit-transform-origin: center;
   -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}
.cp_shape_top {
    position: absolute;
    right: 50px;
    top: 15%;
	transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}
.main_slider_wrapper{
	float:left;
	width:75%;
	background:url('../images/banner.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-size:cover;
	height:100%;
	position:relative;
}
.top_logo_wrapper{
	float:left;
	width:40%;
}
.top_button_wrapper{
	float:left;
	width:60%;
}
.banner_section{
	float:left;
	width:100%;
	position:relative;
	z-index:999;
	padding:50px 30px;
}
.main_slider_overly{
	 position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:rgba(12, 16, 22, 0.86);
}
.banner_top_wrapper{
	position:relative;
	overflow:hidden;
	float:left;
	width:100%;
	margin-top:-160px;
}
.header_btn {
	float:right;
}
.banner_content_inner_wrapper p{
	font-size:16px;
	text-transform:capitalize;
	color:#fff;
	opacity:0.9;
	line-height:26px;
	padding-top:30px;
}
.cp_heading_wraper h3 {
    font-size: 36px;
    color: #3a424a;
    line-height: 40px;
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 50px;
}
.cp_heading_wraper h3:before {
    content: '';
    border: 1px solid #c8c8c8;
    width: 80px;
    position: absolute;
    left: 0px;
    top: 60px;
    right: 0;
    margin: 0px auto;
}
.cp_heading_wraper h3:after {
    content: '';
    border: 2px solid #29abff;
    width: 35px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    top: 59px;
}
.cp_heading_wraper {
    text-align: center;
    padding-bottom: 60px;
}
.padd_50{
	padding-top:50px;
}
.try_center_section{
	padding:100px 0;
	float:left;
	width:100%;
}
.footer_btn{
	float:left;
	width:100%;
}
.header_btn a {
  width:160px;
  height:50px;
  background:#fff;
  float:left;
  text-align:center;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  font-size:16px;
  color:#3a424a;
  border:2px solid transparent;
  line-height:46px;
  	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px; 
	border-radius: 5px; 
  font-weight:400;
  text-transform:uppercase;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color 0.6s, color 0.6s;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.header_btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	z-index: -1;
	border-radius: inherit;
	opacity: 0;
	-webkit-transform: scale3d(0.6, 0.6, 1);
	transform: scale3d(0.6, 0.6, 1);
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	transition: transform 0.6s, opacity 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.header_btn a:hover{
	background-color:transparent;
	color: #fff;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.header_btn a:hover::before {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.buy_now_btn a{
	background: #30a3f0;
    color: #fff;
	float:none;
	display:inline-block;
}
.buy_now_btn a::before{
	border: 2px solid #30a3f0;
}
/*-- try top Slider main wrapper Start --*/
/*-- SliderNTimer css Start --*/
.banner_content_inner_wrapper h3{
	font-size: 42px;
    color: #fff;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 500;
}
.lr_banner_content_inner_wrapper h3{
	font-size:36px;
	color:#ffffff;
	font-weight:500;
	margin-top:20px;
	position:relative;
	animation-delay: 1.5s;
}
.buy_now_btn li{
	float:left;
	margin-right:15px;
}
.buy_now_btn{
	margin-top:40px;
	float:none;
}
.buy_now_btn ul{
	display:inline-block;
}
/* newsletter wraper css */
.news_letter_wrapper{
	padding-top:80px;
	padding-bottom: 80px;
	background:#30a3f0;
	float:left;
	width:100%;
}
.lr_nl_heading_wrapper{
	float:left;
	width:50%;
}
.lr_nl_heading_wrapper h2{
	font-size:44px;
	color:#fff;
	font-weight:600;
	text-transform:uppercase;
}
.lr_nl_heading_wrapper p{
	color:#fff;
	padding-top:5px;
}
.lr_nl_form_wrapper{
	float:left;
	width:50%;
	margin-top:8px;
}
.about_wrappper {
	background:#fff;
}
.lr_nl_form_wrapper input{
	float:left;
	width:calc(100% - 150px);
	height:50px;
	border:0;
	background:rgba(255, 255, 255, 0.19);
	color:#fff;
	padding-left:20px;
	border-right:0;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	position: relative;
}
.lr_nl_form_wrapper button{
	width:150px;
	height:50px;
	float:left;
	background:#fff;
	border:1px solid #fff;
	color:#2d3a4b;
	cursor:pointer;
	text-transform:uppercase;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	font-weight:700;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.lr_nl_form_wrapper button:hover{
	color:#379ff0;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.lr_nl_form_wrapper input::-webkit-input-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input::-moz-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input:-ms-input-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input:-moz-placeholder {
	color: #fff;
}
/****-----------footer wrapper css------------********/
.footer_wrapper {
   background:#1e2733;
   padding:100px 0;
   float:left;
	width:100%;
}
.foter_top_wrapper{
	padding:50px 0;
	padding-bottom:45px;
	text-align:center;
	float:left;
	width:100%;
	 background:#1e2733;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.section2_footer_wrapper {
    float: left;
    width: 100%;
}
.tb_foter_left {
    float: left;
    width: 100%;
    text-align:center;
}
.foter_top_wrapper li{
	display:inline-block;
	width:9%;
	text-align:center;
}
.foter_top_wrapper li a{
	float:left;
	width:100%;
	text-align:center;
	color:rgba(255, 255, 255, 0.7);
	font-size:24px;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.foter_top_wrapper li a:hover{
	color:#30a3f0;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_about_wrapper,
.wrapper_second_useful,
.wrapper_second_blog {
    float: left;
    width: 100%;
}
.section2_footer_wrapper h4 {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 32px;
	font-weight:500;
    text-transform: uppercase;
    color: #fff;
}
.wrapper_first_image{
	padding-bottom:30px;
}
.footer_widget h4:before {
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    position: absolute;
    left: 0px;
    bottom:34px;
}
.footer_widget h4:after {
    content: '';
    border: 2px solid #29abff;
    width: 30px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    left: 0;
    bottom:33px;
}
.abotus_content {
    float: left;
    width: 100%;
}
.abotus_content {
    padding-bottom: 25px;
}
.abotus_content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.footer_about_wrapper .blog_read{
	text-transform:capitalize;
	color:#30a3f0;
}
.aboutus_social_icons {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer_useful_wrapper ul li {
    margin-bottom: 13px;
}
.footer_useful_wrapper ul li i {
    color: #ececec;
    margin-right: 20px;
    font-size: 16px;
}
.footer_useful_wrapper ul li a {
    color: #ececec;
    font-size: 16px;
    text-transform: capitalize;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_useful_wrapper ul li a:hover {
    color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_about_wrapper {
	padding-bottom:15px;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.btm_foter_box {
    float: left;
    width: 100%;
    padding-top: 40px;
	text-align:center;
    padding-bottom: 30px;
}
.ft_blog_wrapper1,
.ft_blog_wrapper2 {
    float: left;
    width: 100%;
}
.ft_blog_wrapper1 {
    padding-bottom: 25px;
	position:relative;
}
.ft_blog_wrapper1:after{
	content:'';
	position:absolute;
	bottom:15px;
	left:0;
	right:0;
	height:1px;
	width:100%;
	background:rgba(255, 255, 255, 0.2);
}
.ft_blog_date {
	font-size: 14px;
    color: #30a3f0;
	margin-top:5px;
	text-transform:uppercase;
}
.ft_blog_image {
    float: left;
    width: 80px;
}
.ft_blog_text {
    font-size: 14px;
    font-weight: 500;
    float: left;
    width: calc(100% - 80px);
    padding-left: 10px;
}
.ft_blog_text p a {
    font-size: 16px;
    color:rgba(255, 255, 255, 0.7);
	line-height:20px;
	text-transform:capitalize;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ft_blog_text p a:hover {
    color: #30a3f0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section2_bottom_wrapper {
	background:#1e2733;
	float:left;
	width:100%;
	border-top:1px solid rgba(255, 255, 255, 0.2);
}
.footer_btn_wrapper {
    float: right;
}
.foter_contact_nav ul li a p {
    color: #fff;
    text-transform: lowercase !important;
}
.contect_form_footer input::-webkit-input-placeholder, .contect_form_footer textarea::-webkit-input-placeholder  {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input::-moz-placeholder, .contect_form_footer textarea::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input:-ms-input-placeholder, .contect_form_footer textarea:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input:-moz-placeholder, .contect_form_footer textarea:-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.foter_contact_nav ul li a p:hover {
    color: #f6ce33;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_widget h4{
	font-size:22px;
	color:#fff;
	position:relative;
	text-transform:capitalize;
	padding-bottom:55px;
}
.ft_blog_image img{
	border-radius:5px;
}
.footer_about_wrapper .blog_read i{
	position:relative;
	top:2px;
	left:4px;
}
.contect_form_footer {
    position: relative;
}
.contect_form_footer input {
    width: 100%;
    height: 40px;
    color: #c8c8c8;
    background: #353d48;
    font-size: 14px;
	font-style:italic;
    padding-left: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 40px;
    border-radius: 2px;
    border:0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contact_wrapper ul li {
    margin-bottom: 12px;
	float:left;
	width:100%;
	padding-bottom:10px;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_contact_wrapper ul li:last-child{
	border:0;
}
.footer_btn{
	padding-top:5px;
}
.footer_btn a{
	width:100%;
	height:40px;
	line-height:38px;
}
.contect_form_footer textarea {
    height: 120px;
	padding-left:10px;
	width:100%;
    font-size: 14px;
	color:#c8c8c8;
	font-style:italic;
    line-height: 24px;
    text-transform: capitalize;
    border-radius: 2px;
    border: 0;
	resize:none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #353d48;
}
.contect_form_footer i{
	margin-right: -30px;
    position: relative;
    left: -26px;
    font-size: 14px;
}
.footer_contact_wrapper li span {
    float: left;
    width: 80px;
    color: #67737f;
	text-transform:capitalize;
}
.footer_contact_wrapper li p {
    float: left;
    width: calc(100% - 80px);
    color: #79848f;
	padding-left:15px;
    margin-bottom: 0px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contact_wrapper li p a{
	color:#79848f;
}
.footer_contact_wrapper li p a:hover, .btm_foter_box p a:hover{
	color:#30a3f0;
}
.btm_foter_box p{
	float:left;
	color:#67737f;
	font-size:16px;
	text-transform:capitalize;
}
.btm_foter_box p a{
	color: #67737f;
	margin-left:2px;
}
.aboutus_social_icons{
	float:right;
	margin:0;
	padding:0;
	list-style:none;
}
.aboutus_social_icons li{
	float:left;
	margin-left:20px;
}
.aboutus_social_icons li:first-child{
	margin-left:0px;
}
.aboutus_social_icons li a{
	float:left;
	text-align:center;
	color:#67737f;
	text-transform:uppercase;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.aboutus_social_icons li a:hover{
	color:#30a3f0;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}