/*
Copyright (c) 2018 Kamleshyadav
------------------------------------------------------------------
[Master Default Stylesheet]

Template Name: Cycling  - Multipurpose Responsive WordPress Theme
Version: 1.0.0
Author: Kamleshyadav

-------------------------------------------------------------------

[Table of contents]
1.body
2.banner section
-------------------------------------------------------------------*/

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
    color: #424e59;
    background-color: #fff;
	overflow-x:hidden; 
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{ 
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: #2f3942;
    margin: 0;
}
p{margin: 0;}
a{ color:#222222;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
a:hover,a:focus {
    text-decoration: none;
    outline: none; 
}
.cy_button{
    font-size: 15px;
    text-transform: capitalize;
    background: #ff5e4e;
    padding: 0px 45px;
    height: 48px;
    display: inline-block;
    color: #ffffff; 
    line-height: 48px;
    border-radius: 28px;
	border: none;
    box-shadow: 3px 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cy_button:focus,.cy_button:visited{
    color: #ffffff;
    outline: none;
}
.cy_button:before{
    width: 100%;
    height: 100%;
    z-index: 3;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0); 
    -o-transform: scale(0);
    -webkit-transition: 0.5s;
	border: 2px solid #ff5e4e;
    transition: 0.5s;
    border-radius: 28px;
}
.cy_button:hover{
	background:transparent;
    color: #ff5e4e;
    cursor:pointer;
}
.cy_button:hover:before{ 
    -webkit-transform: scale(1);
    -moz-transform: scale(1);   
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.cy_heading h1{
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.cy_heading{
	text-align:center;
	margin-bottom:50px;
}
.cy_heading img{
	 margin: 6px 0 10px;
}
.cy_heading p{
	font-size:18px;
}
/*------ banner section start ------*/
.cy_ld_banner_wrapper{
	background:url(../images/banner_left.jpg);
	background-size:cover;
}
.cy_ld_banner_left{
	padding:225px 0;
	text-align:center;
}
.cy_ld_banner_wrapper .col-lg-6{
	padding:0;
}
.cy_ld_banner_left h3{
	font-weight: 700;
    font-size: 65px;
    margin-top: 6px;
    color: #222222;
}
.cy_ld_banner_left p{
	font-weight: 600;
    font-size: 28px;
    margin: 17px 0 27px;
    color: #222222;
    text-transform: uppercase;
}
.cy_ld_banner_right{
	background: -webkit-linear-gradient(-9deg,#ff516b,#ff5d44);
	background: -moz-linear-gradient(-9deg,#ff516b,#ff5d44);
	background: -ms-linear-gradient(-9deg,#ff516b,#ff5d44);
	background: linear-gradient(-9deg,#ff516b,#ff5d44);
    padding: 160px 0 27px;
	position:relative;
	overflow:hidden;
}
.cy_ld_banner_right img{
	margin-left: 80px;
}
.play_btn_ring{
	position: absolute;
    width: 90px;
    height: 160px;
    left: -65px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
 .play_btn_ring > span {
    position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    border: 2px solid #ffffff;
    border-radius: 100%;
    -webkit-animation: pulse1 4.5s infinite linear;
    -moz-animation: pulse1 4.5s infinite linear;
    -ms-animation: pulse1 4.5s infinite linear;
    animation: pulse1 4.5s infinite linear;
	transition:all 0.3s;
	opacity:0;
}
@keyframes pulse1 {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  
  100%{
    transform: scale(0.2);
    opacity: 0;
  }
}
 .play_btn_ring > span.pulse2{
    -webkit-animation: pulse2 4.5s infinite linear;
    -moz-animation: pulse2 4.5s infinite linear;
    -ms-animation: pulse2 4.5s infinite linear;
    animation: pulse2 4.5s infinite linear;
 }
 @keyframes pulse2 {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  
  100%{
    transform: scale(0.8);
    opacity: 0;
  }
}
.cy_scroll_down{
	width: 80px;
    height: 80px;
    line-height: 70px;
    text-align: center;
    display: block;
    position: absolute;
    bottom: -40px;
    right: -40px;
    z-index: 10;
	font-size: 16px;
    font-weight: 600;
	cursor:pointer;
}  
.cy_scroll_down:after{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;    
	border-radius: 18px;
    box-shadow: 1px 1px 14px rgba(0,0,0,0.1);
}
.cy_scroll_down:hover,.cy_scroll_down:focus{
	color:#ff5e4e;
}
.cy_scroll_down i{
	display: block;
    margin-top: -29px;
    font-size: 27px;
    color: #ff5e4e;
    font-weight: 600;
	/*animation:down 1s infinite linear;*/
	opacity:1;
}
@keyframes down{
	0%{
		transform: translateY(0px);
		opacity:0.5;
	}
	100%{
		transform: translateY(15px);
		opacity:1;
	}
} 
/*------ demo section start ------*/
.cy_ld_demo_wrapper{
	padding:120px 0 80px;
}
.cy_demo_content{
	background: #ff516b;
    display: inline-block;
    padding: 30px;
	max-width: 530px;
	position: relative;
}
.cy_demo_box{
	float:left;
}
.cy_demo_box.even{
	text-align:right;
	margin-top: -680px;
	float: right;
}
.cy_demo_box.even .cy_demo_content{
	background:#ff5d44; 
}
.cy_demo_box .cy_demo_content img{
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.cy_demo_box .cy_demo_content .cy_demo_img{
	position:relative;
}
.cy_demo_box .cy_demo_content .cy_demo_btn{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:100;
	visibility:hidden;
	opacity:0;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.cy_demo_box .cy_demo_content .cy_demo_btn .cy_button{
	background:transparent;
	color:#ffffff;
	line-height: 44px;
	font-weight:600;
	border:2px solid #ffffff;
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	transform:scale(1.2);
}
.cy_demo_box .cy_demo_content .cy_demo_btn .cy_button:hover{
	background:#ff5e4e;
	color:#ffffff;
	border:2px solid #ff5e4e;
}
.cy_demo_box .cy_demo_content .cy_demo_btn .cy_button:before{
	display:none;
}
.cy_demo_box .cy_demo_content:hover .cy_demo_btn{
	visibility:visible;
	opacity:1;
}
.cy_demo_box .cy_demo_content:hover .cy_demo_btn .cy_button{
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	transform:scale(1);
}
.cy_demo_content .cy_demo_data{
	position: absolute;
    top: 50px;
    left: 100%;
    width: 370px;
}
.cy_demo_box.even .cy_demo_data{
	top:auto;
	bottom:50px;
	right:100%;
	left:auto;
}
.cy_demo_box .cy_demo_content .cy_demo_data{
	text-align:right;
}
.cy_demo_box.even .cy_demo_content .cy_demo_data{
	text-align:left;
}
.cy_demo_content .cy_demo_data .cy_demo_count{
	display:inline-block;
}
.cy_demo_content .cy_demo_data:before{
	content: "";
    width: 80%;
    height: 3px;
	background: -webkit-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: -moz-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: -ms-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: linear-gradient(-9deg,#ff516b,#ff5d44);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	z-index:-1;
}
.cy_demo_box.even .cy_demo_content .cy_demo_data:before{
	left:auto; 
	right:0;
}
.cy_demo_content .cy_demo_data .cy_demo_count p{
	width: 100px;
    height: 100px;
    text-align: center;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
	text-transform:uppercase;
}
.cy_demo_content .cy_demo_data .cy_demo_count p:before{
	content:"";
	position:absolute;
	top:0;
	right:0; 
	left:0;
	bottom:0;
	background: -webkit-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: -moz-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: -ms-linear-gradient(-9deg,#ff516b,#ff5d44);
    background: linear-gradient(-9deg,#ff516b,#ff5d44);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
	border-radius:18px;
	z-index:-1;
}
.cy_demo_content .cy_demo_data .cy_demo_count p span{
	margin-top: 13px;
    line-height: 4px;
}
/*------- feature css start -------*/
.cy_ld_feature_wrapper{
	padding:80px 0 30px;
	background:#f5f5f5;
}
.cy_feature_box{
	text-align:center;
	margin-bottom:50px;
}
.cy_feature_img{
	width:120px;
	height:120px;
	line-height:120px;
	text-align:center;
	position:relative;
    display: inline-block;	
	-webkit-perspective:100px;
	-moz-perspective:100px;
	-ms-perspective:100px;
	perspective:100px;
}
.cy_feature_img:after{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;    
	border-radius: 18px;   
	border: 2px solid transparent;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	transition:all 0.3s;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.05);
}
.cy_feature_box p{
	font-size: 20px;
    color: #222222;
    font-weight: 500;
    padding: 0 43px;
    margin-top: 25px;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	transition:all 0.3s;
}
.cy_feature_box:hover .cy_feature_img:after{
	border: 2px solid #ff5e4e;
}
.cy_feature_box:hover p{
	color:#ff5e4e;
}
.cy_ld_feature_wrapper .cy_heading{
	margin-bottom:60px;
}
/*----- theme title wrapper css start -----*/
.cy_ld_theme_title_wrapper{
	padding:80px 0;
	background:url(../images/title.jpg);
	background-size:cover;
}
.cy_theme_title_box h1{
	font-size:50px;
	color:#222222;
	font-weight:700;
	text-align:center;
}
.cy_theme_title_box h1 span{
	color:#ff5e4e; 
	display: block;
}
/*----- footer css start -----*/
.cy_lg_footer_wrapper{
	padding:20px 0;
	background:#222222;
	text-align:center;
}
.cy_footer_box p{
	color:#ffffff;
}
/*----- media ----*/
@media(max-width:1600px){
.cy_ld_banner_right img {
    margin-left: -30px;
}
}
@media(max-width:1199px){
.cy_demo_box.even {
    margin-top: 0;
}
.cy_demo_content .cy_demo_data,.cy_demo_box.even .cy_demo_content .cy_demo_data{
	width: auto;
    top: -50px;
    left: 50%;
	right:auto;
    z-index: 100;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.cy_demo_content .cy_demo_data:before{
	display:none;
}
.cy_demo_content {
    padding-top: 80px;
}
.cy_demo_content .cy_demo_data .cy_demo_count p{
	color:#ff5e4e;
}
.cy_demo_content .cy_demo_data .cy_demo_count p:before {
    background: #ffffff;
	box-shadow: -2px -2px 10px rgba(0,0,0,0.05);
} 
.cy_ld_demo_wrapper .cy_heading {
    margin-bottom: 110px;
}
}
@media(max-width:991px){
.cy_ld_banner_left{
    padding: 100px 0;
}
.cy_ld_banner_right {
    padding: 0px;
    overflow: visible;
}
.cy_ld_banner_right img {
    margin-left: 0px;
    margin-top:100px;
}
.cy_scroll_down {
    right: 50%;
	-webkit-transform:translateX(50%);
	-moz-transform:translateX(50%);
	-ms-transform:translateX(50%);
	transform:translateX(50%);
}
.cy_demo_box,.cy_demo_box.even{
    float: none;
    display: block;
    text-align: center;
}
.cy_demo_box.even{
	margin-top: 110px;
}
.cy_theme_title_box h1 {
    font-size: 38px;
}
}
@media (max-width: 767px){
.cy_ld_banner_right {
	display:none;
}
.cy_theme_title_box h1 {
    font-size: 27px;
}
}