
 
 /*===============================================
-------------------------------------------------
	lists
-------------------------------------------------
================================================*/

/* icon list style 1
 ------------------------------ */
.icons-list-1 {
	width: 100%;
	padding: 0px;
	margin: 0px 0px 10px 0px;
	float:left;
}
.icons-list-1 .icon {
	padding: 0px;
	float: left;
	text-align: center;
}
.icons-list-1 .icon.icon-circle {
	border-radius: 100%;
}
.icons-list-1 .text {
	padding: 5px 0 0 42px;
	margin: 0px;
	display: block;
}


/* icon sizes
 ------------------------------ */
 .icons-list-1.icon-tiny .icon {
	width: 24px;
	height: 24px;
	font-size:12px;
	margin: 0px 10px 0px 0px;
	line-height: 24px;
	color: #fff;
	background-color: #f7c221;
}
.icons-list-1.icon-tiny .text {
	padding: 0 0 0 36px;
}
.icons-list-1.icon-small .icon {
	width: 32px;
	height: 32px;
	margin: 0px 10px 0px 0px;
	line-height: 32px;
	color: #fff;
	background-color: #fc4242;
}

.icons-list-1.icon-medium .icon {
	width: 48px;
	height: 48px;
	font-size:20px;
	margin: 0px 10px 0px 0px;
	line-height: 43px;
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1.icon-medium .text {
	padding: 0 0 0 62px;
}

.icons-list-1.icon-xmedium .icon {
	width: 64px;
	height: 64px;
	font-size:28px;
	margin: 0px 10px 0px 0px;
	line-height: 62px;
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1.icon-xmedium .text {
	padding: 9px 0 0 62px;
}
.icons-list-1.icon-large .icon {
	width: 96px;
	height: 96px;
	font-size:36px;
	margin: 0px 10px 0px 0px;
	line-height: 93px;
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1.icon-large .text {
	padding: 17px 0 0 117px;
}
.icons-list-1.icon-xlarge .icon {
	width: 106px;
	height: 106px;
	font-size:36px;
	margin: 0px 10px 0px 0px;
	line-height: 93px;
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1.icon-xlarge .text {
	padding: 17px 0 0 117px;
}
.icons-list-1.icon-dlarge .icon {
	width: 116px;
	height: 116px;
	font-size:36px;
	margin: 0px 10px 0px 0px;
	line-height: 93px;
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1.icon-dlarge .text {
	padding: 17px 0 0 117px;
}



/* icon colors
 ------------------------------ */
 
.icons-list-1 .icon.icon-red {
	color: #fff;
	background-color: #fc4242;
}
.icons-list-1 .icon.icon-orange {
	color: #fff;
	background-color: #ff881e;
}
.icons-list-1 .icon.icon-blue {
	color: #fff;
	background-color: #2f92ee;
}
.icons-list-1 .icon.icon-violet {
	color: #fff;
	background-color: #b659fe;
}
.icons-list-1 .icon.icon-green {
	color: #fff;
	background-color: #3fc35f;
}
.icons-list-1 .icon.icon-dark {
	color: #fff;
	background-color: #101010;
}
.icons-list-1 .icon.icon-grey {
	color: #101010;
	background-color: #f5f5f5;
}


/* icon border colors
 ------------------------------ */
 
.icons-list-1 .icon.icon-border-red {
	color: #fc4242;
	border:1px solid #fc4242;
	background-color:transparent;
}
.icons-list-1 .icon.icon-border-orange {
	color: #ff881e;
	border:1px solid #ff881e;
	background-color:transparent;
}
.icons-list-1 .icon.icon-border-blue {
	color: #2f92ee;
	border:1px solid #2f92ee;
	background-color:transparent;
}
.icons-list-1 .icon.icon-border-violet {
	color: #b659fe;
	border:1px solid #b659fe;
	background-color:transparent;
}
.icons-list-1 .icon.icon-border-green {
	color: #3fc35f;
	border:1px solid #3fc35f;
	background-color:transparent;
}

.icons-list-1 .icon.icon-border-dark {
	color: #101010;
	border:1px solid #101010;
	background-color:transparent;
}
.icons-list-1 .icon.icon-border-grey {
	color: #101010;
	border:1px solid #e4e4e4;
	background-color:transparent;
}

/* icon list border
 ------------------------------ */
 .icons-list-1.border-bottom {
	 padding:0 0 10px 0;
	 border-bottom:1px solid #e4e4e4;
}

/* =========== list styles ============= */
/* order list
 ------------------------------ */
 
ol.list-1 {
	list-style-type: none;
 list-style-type: decimal !ie; /*IE 7- hack*/
	margin: 0;
	margin-left: 18px;
	padding: 0;
	counter-reset: li-counter;
}
ol.list-1 li {
	position: relative;
	margin: 0px;
	padding: 3px 0 0 30px;
	min-height: 3em;
	list-style-type: none;
}
ol.list-1 li:before {
	position: absolute;
	top: 0;
	left: -15px;
	width: 28px;
	height: 28px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	background-color: #101010;
	content: counter(li-counter);
	counter-increment: li-counter;
}
ol.list-1.border-dark li:before {
	color: #101010;
	background-color: #fff;
	border:1px solid #101010;
}
ol.list-1.border-light li:before {
	color: #101010;
	background-color: #fff;
	border:1px solid #e4e4e4;
}
ol.list-1.border-green li:before {
	color: #1fcf6d;
	background-color: transparent;
	border:1px solid #1fcf6d;
}
ol.list-1.border-orange li:before {
	color: #ff881e;
	background-color: #fff;
	border:1px solid #ff881e;
}
ol.list-1.border-red li:before {
	color: #fc4242;
	background-color: transparent;
	border:1px solid #fc4242;
}
ol.list-1.border-blue li:before {
	color: #2f92ee;
	background-color: transparent;
	border:1px solid #2f92ee;
}
ol.list-1.border-violet li:before {
	color: #b659fe;
	background-color: transparent;
	border:1px solid #b659fe;
}

/* list 2
 ------------------------------ */
 
ul.list-2 {
	width:100%;
	padding-left:0px;
}
ul.list-2 li {
	display:inline-block;
	padding:15px;
	margin-bottom:10px;
}
ul.list-2.bg-white li {
	background-color:#fff;
}
ul.list-2.bg-light li {
	background-color:#f5f5f5;
}
ul.list-2.bg-dark li {
	background-color:#101010;
}
ul.list-2.bg-dark li .title {
	color:#fff;
}
ul.list-2.bg-green li {
	background-color:#1fcf6d;
}
ul.list-2.bg-orange li {
	background-color:#ff881e;
}

ul.list-2.bg-green li p, .list-2.bg-orange li p,
.list-2.bg-green li .title, .list-2.bg-orange li .title{
	color:#fff;
}

/* list 3
 ------------------------------ */
 
ul.list-3 {
    width:100%;
	padding-left:0px;
}
.list-3 li {
	display:inline-block;
	margin-bottom:3px;
}
.list-3 .icon {
    border: 1px solid #06d0d8;
    color: #06d0d8;
    float: left;
    font-size: 12px;
    height: 18px;
    line-height: 15px;
    margin: 3px 0 0;
    padding: 0;
    text-align: center;
    width: 18px;
}
.list-3.icon-circle .icon {
    border-radius: 100%;
}
.list-3 .text {
    display: block;
    margin: 0;
    padding: 0 0 0 28px;
}

.list-3.icon-green .icon {
    border: 1px solid #1fcf6d;
	background-color:#1fcf6d;
    color: #fff;
}
.list-3.icon-red .icon {
    border: 1px solid #fc4242;
	background-color:#fc4242;
    color: #fff;
}


/* =========== post styles ============= */
.font-size-16 {
	font-size: 16px;
}
.font-size-18 {
	font-size: 18px;
	line-height: 26px;
}
.post-style-1 {
    background-color: #ffffff;
    float: left;
    padding: 0;
    width: 100%;
}
.post-style-1 .text-box {
    float: left;
    padding: 40px;
    position: relative;
    width: 50%;
}
.post-style-1 .text-box .arrow-right {
    border-bottom: 30px solid transparent;
    border-left: 30px solid #fff;
    border-top: 30px solid transparent;
    height: 0;
    position: absolute;
    right: -27px;
    top: 129px;
    width: 0;
}
.post-style-1 .img-box {
    float: right;
    width: 50%;
}


/* post style 3
 ------------------------------ */

.post-style-3 {
    float: left;
    padding: 0;
    width: 100%;
}
.post-style-3 .ce4-post-img {
    float: left;
    padding: 0;
    position: relative;
    width: 100%;
}
.post-style-3 .text-box {
    height: 275px;
    padding: 60px 50px 50px;
}
.post-style-3 .text-box.one {
    height: 275px;
}
.post-style-3 .text-box .blog-post-info span {
    color: #ecae3d;
}
.post-style-3 .ce4-post-img .arrow-up {
    border-bottom: 20px solid #fff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    bottom: 0;
    height: 0;
    left: 175px;
    position: absolute;
    width: 0;
    z-index: 2;
}
.post-style-3 .ce4-post-img .arrow-down {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    height: 0;
    left: 175px;
    position: absolute;
    top: 0;
    width: 0;
}


/*============ Feature boxes ============ */
.cn-feature-box-1{
	width:100%;
	float:left;
}
.cn-feature-box-1 .iconbox-small{
	border:3px solid #f5f5f5;
}
.cn-feature-box-1.mar-bottom{
	margin-bottom:50px;
}
.cn-feature-box-1:hover .iconbox-small, .cn-feature-box-1.active .iconbox-small{
	color:#ecae3d;
}
.cn-feature-box-1:hover h5, .cn-feature-box-1.active h5{
	color:#ecae3d;
}

/* featurebox 2
 ------------------------------ */
.cn-feature-box-2{
	width:100%;
	float:left;
	padding:25px;
}

/* ---------- feature box 3 ---------- */

.cn-feature-box-3{
	width:100%;
	float:left;
	background-color:#fff;
	transition: all 0.3s ease-out 0s;
}
.cn-feature-box-3 .text-box{
	position: relative;
	width:100%;
	float:left;
	z-index:2;
	background-color:#fff;
	transition: all 0.3s ease-out 0s;
}
.cn-feature-box-3 .text-box .iconbox-small{
	position: absolute;
	float:left;
	z-index:2;
	right: 31px;
	top: -42px;
	color:#101010;
	border:3px solid #fff;
	background-color:#f5f5f5;
}

/* ---------- feature box 4 ---------- */

.cn-feature-box-4{
	width:100%;
	float:left;
	margin-bottom:30px;
}

/* feature box 29
 ------------------------------ */
.ce4-feature-box-29{
	width:100%;
	float:left;
}
.ce4-feature-box-29 .icon{
	color:#fff;
	background-color:#101010;
}
.ce4-feature-box-29 .title{
	font-size:20px;
}
.ce4-feature-box-29.light .icon{
	color:#f1b500;
	border:1px solid #e4e4e4;
	background-color:#fff;
}
/*============ client logo list ============ */

ul.cn-client-logo-list{
	width:100%;
	padding:0px;
}
ul.cn-client-logo-list li{
	width: 19.7%;
	padding:0px;
	margin:0px;
	text-align:center;
	display:inline-block;
	border-right:1px solid #f1f1f1;
	border-bottom:1px solid #f1f1f1;
}
ul.cn-client-logo-list li:last-child{
	border-right:none;
}
ul.cn-client-logo-list.two li{
	width: 19.7%;
	padding:0px;
	margin:0px;
	text-align:center;
	display:inline-block;
	border-right:1px solid #f1f1f1;
	border-bottom:none;
}
ul.cn-client-logo-list.two li:last-child{
	border-right:none;
}
ul.cn-client-logo-list li a{
	padding:0px;
	margin:0px;
	text-align:center;
	display:inline-block;
}
ul.cn-client-logo-list li a img{
	text-align:center;
}

/*============ team ============ */

.cn-team-holder{
	position: relative;
	width:100%;
	min-height:500px;
	float:left;
	padding:0px;
}
.cn-team-holder .img-box{
	position: absolute;
	width:100%;
	float:left;
	padding:0px;
}
.cn-team-holder .img-box .overlay{
	position: absolute;
	width:100%;
	height:100%;
	float:left;
	opacity:0;
	padding:0px;
	z-index:1;
	background-color:rgba(0, 0, 0, 0.7);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.cn-team-holder .img-box .overlay .sc-icons{
	width:100%;
	margin-top:110px;
	display:inline-block;
}
.cn-team-holder .img-box .overlay .sc-icons li{
	padding:0px;
	display:inline-block;
}
.cn-team-holder .img-box .overlay .sc-icons li a{
	width:40px;
	height:40px;
	padding:0px;
	color:#fff;
	line-height:37px;
	text-align:center;
	border-radius:100%;
	border:1px solid rgba(255, 255, 255, 0.4);
	display:inline-block;
}
.cn-team-holder .img-box .overlay .sc-icons li a:hover{
	color:#ecae3d;
	border:1px solid #fff;
	display:inline-block;
	background-color:#fff;
}
.cn-team-holder .text-box{
	position: absolute;
	width:90%;
	float:left;
	left: 12px;
	top: 245px;
	padding:40px;
	z-index:2;
	background-color:#fff;
}
.cn-team-holder .text-box .shape{
	position: absolute;
	float:left;
	left: -13px;
	top: 0px;
	padding:0px;
	z-index:2;
}
.cn-team-holder .text-box .shape.right{
	left: 236px;
	top: 0px;
}
.cn-team-holder:hover .img-box .overlay{
	opacity:1;
}


/*============ Section Titles ============ */

/* title line
 ------------------------------ */
.cn-title-line-1 {
	width: 70px;
	height:2px;
	margin:15px auto 30px auto;
	background-color:#ecae3d;
}
.cn-title-line-1.align-left {
	width: 70px;
	margin:8px auto 20px 0;
}
.cn-title-line-1.dark, .cn-title-line-1.dark {
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

/*============ Parallax Sections ============ */
.cn-parallax-sec-1 {
	position:relative;
	width: 100%;
	float: left;
	min-height:560px;
	text-align: center;
	background: url("../images/bg-art.jpg");
	background-attachment: fixed;
	background-origin: initial;
	background-clip: initial;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-position: center;
	z-index: 1;
}
.cn-parallax-sec-1 .feature-box-1 {
	width: 100%;
	float: left;
	padding: 0;
	margin-top:-150px;
	background-color:#fff;
}
.parallax-15 {
    background: rgba(0, 0, 0, 0) url("../images/home-visit.jpg") no-repeat fixed 50% 0;
}
.parallax-16 {
    background: rgba(0, 0, 0, 0) url("../images/footer-image.jpg") no-repeat fixed 50% 0;
}

/* =========== Parallax ============= */

.parallax-1 {
	width: 100%;
	float: left;
	text-align: center;
	background: url(../images/shortcodes/47.jpg);
	background-attachment: fixed;
	background-origin: initial;
	background-clip: initial;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-position: center;
	z-index: 1;
}
.parallax-overlay {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.parallax-1 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}
.parallax-2 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}
.parallax-3 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}
.parallax-4 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}
.parallax-5 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}
.parallax-6 {
	background:url('../images/parallax-6.jpg') 50% 0 no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.parallax-7 {
	background:url('../images/parallax-6.jpg') 50% 0 no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.parallax-8 {
	background:url('http://placehold.it/2000x1300') 50% 0 no-repeat fixed;
}




/*----------------------------RESPONSIVE STYLES------------------------------- */
/* ---------- MAX 1024PX ---------- */
@media screen and (max-width: 1024px) {
	
.cn-team-holder .text-box .shape {
	display:none;
}
.cn-team-holder .text-box {
    top: 190px;
}




}
	
@media only screen and (max-width: 1000px) {
	


}	

	
	
/* ---------- MAX 991PX ---------- */
@media only screen and (max-width: 991px) {

.cn-parallax-sec-1 .feature-box-1 {
    margin-top: 0;
}
.cn-team-holder .text-box {
    top: 265px;
}









}



/* ---------- MAX 800PX ---------- */
@media only screen and (max-width: 800px) {





}



/* ---------- MAX 768PX ---------- */
@media only screen and (max-width: 768px) {

ul.cn-client-logo-list li {
    width: 48.7%;
}
ul.cn-client-logo-list.two li {
    width: 48.7%;
}
.fo-sec-2 .social-iconbox {
    left: 36%;
}










}


/* ---------- MAX 767PX ---------- */
@media only screen and (max-width: 767px) {

}


@media screen and (max-width: 640px) {
.fo-sec-2 .social-iconbox {
    left: 32%;
    top: -67px;
}





}


@media screen and (max-width: 480px) {
.fo-sec-2 .social-iconbox {
    left: 24%;
    top: -67px;
}




}

/* ---------- MAX 360PX ---------- */
@media screen and (max-width: 360px) {
.fo-sec-2 .social-iconbox {
    left: 12%;
    top: -67px;
}
ul.cn-client-logo-list li {
    width: 100%;
}
ul.cn-client-logo-list.two li {
    width: 100%;
}

}


/* ---------- MAX 320PX ---------- */
@media only screen and (max-width: 320px) {

.fo-sec-2 .social-iconbox {
    left: 7%;
}
ul.cn-client-logo-list li {
    width: 100%;
}
ul.cn-client-logo-list.two li {
    width: 100%;
}

}