/* Helper Classes & Shorcodes */
.padding {
    padding: 20px 0;
}
.padding_top {
    padding-top:5rem;
}
.padding_bottom {
    padding-bottom: 7.5rem;
}
.margin_bottom {
    margin-bottom: 7.5rem;
}
.margin_top {
    margin-top: 7.5rem;
}
.padding_half {
    padding: 4.375rem 0;
}
.margin_half {
    margin: 4.375rem 0;
}
.padding_bottom_half {
    padding-bottom: 4.375rem;
}
.margin_bottom_half{
    margin-bottom: 4.375rem;
}
.padding_top_half {
    padding-top: 4.375rem;
}
.heading_space {
    margin-bottom: 4.125rem;
}
.bottom5 {
    margin-bottom: 5px;
}
.bottom10 {
    margin-bottom: 10px;
}
.top10 {
    margin-top: 10px;
}
.bottom15 {
    margin-bottom: 15px;
}
.top15 {
    margin-top: 15px;
}
.top20 {
    margin-top: 20px;
}
.bottom20 {
    margin-bottom: 20px;
}
.bottom25 {
    margin-bottom: 25px;
}
.top25 {
    margin-top: 25px;
}
.bottom30 {
    margin-bottom: 30px;
}
.top30 {
    margin-top: 30px;
}
.bottom35 {
    margin-bottom: 35px;
}
.top40 {
    margin-top: 40px;
}
.bottom40 {
    margin-bottom: 40px;
}
.bottom45 {
    margin-bottom: 45px;
}
.top50 {
    margin-top: 50px;
}
.top60{
    margin-top: 60px;
}
.bottom60{
    margin-bottom: 60px;
}
.bottom0 {
    margin-bottom: 0;
}
.nomargin {
    margin: 0;
}
.nopadding{
    padding: 0;
}
.fontbold{
   font-weight: bold;
}
.fontmedium {
   font-weight: 500;
}
.font-light{
   font-weight: 300;
}
.font-xlight {
   font-weight: 200;
}
.bglight {
    background: #f6f6f6;
}
.bgdefault {
    background: #00bcd4;
}
.whitecolor {
    color: #ffffff;
}
.darkcolor {
    color: #212331;
}
.extradark-color {
    color: #212331;
}
.defaultcolor {
    color: #00bcd4;
}
section{
    position: relative;
}
.container-padding {
	padding-left: 2.25rem;
	padding-right: 2.25rem;
}
.gradient_bg{
    background: -webkit-linear-gradient(90deg, #423f9c 31%, #862359 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #423f9c), color-stop(69%, #862359));
    background: -webkit-linear-gradient(left, #423f9c 31%, #862359 69%);
    background: -o-linear-gradient(left, #423f9c 31%, #862359 69%);
    background: linear-gradient(90deg, #423f9c 31%, #862359 69%);
}
.gradient_bg_default{  
    background: -webkit-linear-gradient(135deg, #606c88 0%,#3f4c6b 100%);
    background: -o-linear-gradient(135deg, #606c88 0%,#3f4c6b 100%);
    background: linear-gradient(135deg, #606c88 0%,#3f4c6b 100%);
}
.gradient_bg_alt{
    background: -webkit-linear-gradient(90deg, #90A4AE 31%, #607D8B 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #90A4AE), color-stop(69%, #607D8B));
    background: -webkit-linear-gradient(left, #90A4AE 31%, #607D8B 69%);
    background: -o-linear-gradient(left, #90A4AE 31%, #607D8B 69%);
    background: linear-gradient(90deg, #90A4AE 31%, #607D8B 69%);
}

/*-------------------------------*/
    /* Work Process */
/*-------------------------------*/
.process-wrapp {
   overflow: hidden;
   display: table;
   table-layout:fixed;
   margin: 0 15px;
   width: 100%;
}
.process-wrapp, .process-wrapp li,
.process-wrapp li > .pro-step {
   position: relative;
   z-index: 1;
}
.process-wrapp li {
   text-align: center;
   padding: 45px  15px 0 15px;
   display: table-cell;
   width: 20%;
}
.process-wrapp li:hover {
   cursor: pointer;
}
.process-wrapp li > .pro-step {
   display: inline-block;
   height: 90px;
   width: 90px;
   line-height: 90px;
   border: 1px solid #fff;
   font-size: 28px;
   font-weight: 600;
   color: #fff;
   text-align: center;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
.process-wrapp li p:first-child {
   font-size: 15px;
}
.process-wrapp li p:last-child {
   font-size: 13px;
}
.process-wrapp li:hover > .pro-step {
   -webkit-box-shadow: 0 0 25px 50px #fff inset;
   box-shadow: 0 0 25px 50px #fff inset;
   color: #00bcd4;
}
.process-wrapp li::before, .process-wrapp li::after {
    content: "";
    height: 1px;
    top: 95px;
    background: rgba(255,255,255, .5);
    position: absolute;
    width: 50%;
    z-index: -1;
    margin: 0 -45px;
}
.process-wrapp li:first-child::before,
.process-wrapp li:last-child::after {
   opacity: 0;
   visibility: hidden;
}
.process-wrapp li::before {
   left: 0;
}
.process-wrapp li::after {
   right: 0;
}

/*process with box */
.process-number {
   background: #fff;
   padding: 0 1rem 2.5rem 1rem;
   position: relative;
   text-align: center;
   -webkit-border-radius: 5px;
   border-radius: 5px;
}
.process-number,
.process-number .pro-step {
   -webkit-transition: all .5s linear;
   -o-transition: all .5s linear;
   transition: all .5s linear;
}
.process-number:hover {
   -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
   box-shadow: 0 0 20px rgba(0, 0, 0, .15);
   cursor: pointer;
}
.process-number .pro-step {
	font-weight: bold;
	font-size: 1.75rem;
	font-family: 'Open Sans', sans-serif;
	margin-right: 5px;
	color: #fff;
	line-height: 1;
	background: #00bcd4;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 50px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
	margin-top: -50px;
}
.process-number .pro-step::after {
	content: "";
	height: 5px;
	width: 5px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
	background: #fff;
	margin-left: 3px;
}
.process-number.even .pro-step{
   background: #643094;
}

/*Process icoin inside*/
.process-number.iconic {
   padding: 2.5rem 1rem;
}
.process-number.iconic > span {
	height: 90px;
	width: 90px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	line-height: 90px;
	display: inline-block;
	text-align: center;
	font-size: 48px;
	background: #00bcd4;
	color: #fff;
}
.process-number.iconic:hover > span {
   -webkit-box-shadow: 0 0 20px 45px #643094 inset;
   box-shadow: 0 0 20px 45px #643094 inset;
}


@media screen and (max-width: 992px) {
   .process-wrapp {
      text-align: center;
   }
   .process-wrapp li {
      display: inline-block;
      max-width: 300px;
   }
   .process-wrapp li:first-child::before,
   .process-wrapp li:last-child::after {
      opacity: 1;
      visibility: visible;
   }
}


/*-------------------------------*/
    /*Work Process ends */
/*-------------------------------*/

/*-------------------------------*/
    /* Horizontal Half Blocks*/
/*-------------------------------*/
.half-section{
    width: 100%;
}
.half-section,
.half-section .img-container{
    position: relative;
    overflow: hidden;
}
.half-section .img-container{}
.half-section .imgone{
    background: url("../images/split-img1.jpg") no-repeat;
}
.half-section .imgtwo{
    background: url("../images/split-img2.jpg") no-repeat;   
}
@media (max-width: 768px){
   .split-box{
      padding-left: 15px;
      padding-right: 15px;
   }
   .half-section .img-container {
      margin-bottom: 25px;
   }
}
@media screen and (max-width: 767px) {
  #twocopies .half-section:first-of-type .container-fluid {
      border-bottom: 1px solid #ececec;
   }
}


/*-------------------------------*/
    /*Horizontal Half Blocks ends*/
/*-------------------------------*/

/*heading Titles */
.heading-title > span{
    font-size: 1.25rem;
    display: block;
    text-transform: capitalize;
    color: #f9a531;
}
.whitecolor.heading-title > span{
    color: #fff;
}
.heading-title h2{
   font-weight: 300;
}


/*img wrap*/
.image {
    overflow: hidden;
}
a.image{
    display: block;
}
.image img {
    width: 100%;
    display: block;
}
.image, .image img {
    position: relative;
}

 /*hover on images*/
.hover-effect::before,
.hover-effect::after {
   content: "";
   background: #fff;
   height: 0;
   width: 0;
   z-index: 1;
   position: absolute;
   -webkit-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}
.hover-effect::before {
	right: 0;
	opacity: 1;
	top: 0;
}
.hover-effect::after {
	bottom: 0;
	opacity: .7;
	left: 0;
}
.hover-effect:hover::after, .hover-effect:hover::before {
	height: 100%;
	opacity: 0;
	width: 100%;
}

/*-----Buttons-----*/
.button {
   position: relative;
   display: inline-block;
   font-size: 13px;
   padding: 1rem 2.5rem;
   line-height: 1;
   text-transform: uppercase;
   text-align: center;
   font-weight: bold;
   z-index: 1;
   border: 1px solid transparent;
   -webkit-border-radius: 30px;
   border-radius: 30px;
   overflow: hidden;
}
.square-layout .button {
   -webkit-border-radius: 0;
   border-radius: 0;
}
.btnprimary, .btnprimary-alt{
    background: #00bcd4;
}
.btnsecondary{
   background: #643094;
}
.btnwhite{
    background: #fff;
    color: #212331;
}
.btnwhite-hole {
   background: transparent;
   border: 1px solid #fff;  
}
.btnwhite:hover, .btnwhite:focus{
    background: #00bcd4;
}

.btnwhite-hole:hover, .btnwhite-hole:focus {
   color: #212331;
   background: #fff;
}
.button > i {
	vertical-align: middle;
    margin-top: -3px;
}
.btnprimary:hover, .btnprimary:focus{
   background: #643094;
   border: 1px solid #643094;
}
.btnprimary-alt:hover, .btnprimary-alt:focus {
   background: transparent;
   border: 1px solid #00bcd4;
   color: #00bcd4;
}
.rev_slider .btnprimary-alt:hover, .rev_slider .btnprimary-alt:focus {
   background: transparent;
   border: 1px solid #fff;
}

.btnsecondary:hover, .btnsecondary:focus {
   background: #00bcd4;
   border: 1px solid #00bcd4;
}
.btnsecondary.hvrwhite:hover, .btnsecondary.hvrwhite:focus,
.btnprimary.hvrwhite:hover, .btnprimary.hvrwhite:focus {
   background: #fff;
   border: 1px solid #fff;
   color: #212331;
}

.btn-gradient-hvr::before {
    background: -webkit-linear-gradient(90deg, #423f9c, #862359);
    background: -webkit-gradient(linear, left top, right top, color-stop(#423f9c), color-stop(#862359));
    background: -webkit-linear-gradient(left, #423f9c, #862359);
    background: -o-linear-gradient(left, #423f9c, #862359);
    background: -webkit-gradient(linear, left top, right top, from(#423f9c), to(#862359));
    background: linear-gradient(90deg, #423f9c, #862359);
}
.btn-gradient-hvr::before,
.scndry-gradient-hvr::before {
   content: "";
   left: 0; right: 0;
   top: 0; bottom: 0;
   position: absolute;
   z-index: -1;
   opacity: 0; visibility: hidden;
}
.scndry-gradient-hvr::before {
    background: -webkit-linear-gradient(90deg, #00e4ce 31%, #00abc9 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #00e4ce), color-stop(69%, #00abc9));
    background: -webkit-linear-gradient(left, #00e4ce 31%, #00abc9 69%);
    background: -o-linear-gradient(left, #00e4ce 31%, #00abc9 69%);
    background: linear-gradient(90deg, #00e4ce 31%, #00abc9 69%);
}
.btn-gradient-hvr:hover::before,
.btn-gradient-hvr:focus::before,
.scndry-gradient-hvr:hover::before,
.scndry-gradient-hvr:focus::before{
   opacity: 1;
   visibility: visible;
}
.btn-gradient-hvr:hover, .btn-gradient-hvr:focus {
   border-color: #643094;
}
.scndry-gradient-hvr:hover, .scndry-gradient-hvr:focus {
   border-color: #00bcd4;
}

.btnwhite-hole, .btnwhite:hover, .btnwhite:focus,
.btnprimary, .btnsecondary, .btnprimary-alt,
.btnprimary:hover, .btnprimary:focus,
.btnsecondary:hover, .btnsecondary:focus,
.rev_slider .btnprimary-alt:hover, .rev_slider .btnprimary-alt:focus{
   color: #fff;
}

/*-------------------------------*/
    /* Gallery Portfolio */
/*-------------------------------*/
/*filters*/
.cbp-l-filters .cbp-filter-item {
   cursor: pointer;
   margin: 0 .2rem;
   display: inline-block;
}
.cbp-l-filters .cbp-filter-item span {
   color: #b7b7b7;
   display: inline-block;
   font-size: 14px;
   font-weight: bold;
   text-transform: capitalize;
   position: relative;
   padding: 5px 1.125rem;
   -webkit-border-radius: 20px;
   border-radius: 20px;
   border: 1px solid #b7b7b7;
}
.cbp-l-filters .cbp-filter-item-active {
   cursor: default;
}
.cbp-l-filters .cbp-filter-item:hover span {
    border: 1px solid #643094;
   color: #fff;
   background: #643094;
}
.cbp-l-filters .cbp-filter-item-active span,
.cbp-l-filters .cbp-filter-item:focus span {
   border: 1px solid #00bcd4;
   color: #fff;
   background: #00bcd4;
}
#portfolio_top {
   position: relative;
   overflow: hidden;
}
#portfolio_top::before,
#portfolio_top::after {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   background: #fff;
   height: 90px;
   width: 100%;
}
#portfolio_top::before {
   top: 0;
}
#portfolio_top::after {
   bottom: 0;
}
.text_wrap {
   padding: 50px 2rem 0.5rem 2rem;
}
.itemshadow .cbp-item-wrapper {
   -webkit-box-shadow: 0 0 4px 1px rgba(101, 101, 101, 0.2);
   box-shadow: 0 0 4px 1px rgba(101, 101, 101, 0.2);
   padding-bottom: 2px;
   padding-top: 5px;
}
.border-portfolio .cbp-item img {
   border: 20px solid #fff;
}
.bottom-text {
   display: table;
}
.bottom-text > .cells {
   display: table-cell;
   vertical-align: middle;
   padding: 15px;
}
.bottom-text p {
   font-size: 15px;
   margin-bottom: 0;
}
.bottom-text .port_head {
   font-weight: bold;
   font-size: 5.625rem;
   line-height: 1;
   font-family: 'Open Sans', sans-serif;
}

/*Overlays*/
.overlay {
   position: absolute;
   left: 20px; top: 20px;
   right: 20px; bottom: 20px;
   opacity: 0;
   visibility: hidden;
   z-index: 1;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   background: rgba(0, 207, 204, .9);
   -webkit-transition: all .5s ease-in .1s;
   -o-transition: all .5s ease-in .1s;
   transition: all .5s ease-in .1s;
}
.simple_overlay .overlay{
   -webkit-border-radius: 0;
   border-radius: 0;
}
.dark_overlay .overlay {
   background: rgba(33,35,49, .9);
}
.cbp-item:hover .overlay,
.cbp-item:focus .overlay {
	opacity: 1; visibility: visible;
   -webkit-border-radius: 0;
   border-radius: 0;
}
.cbp-item:hover .overlay{
   opacity: 1; visibility: visible;
}
.overlay > .plus{
   display: inline-block;
   height: 70px;
   width: 70px;
   position: relative;
   overflow: hidden;
}
.overlay > .plus::before,
.overlay > .plus::after {
   content: " ";
   position: absolute;
   background: #fff;
}
.overlay > .plus::after {
  height: 2px;
  margin-top: -1px;
  top: 50%;
  left: 5px;
  right: 5px;
}
.overlay > .plus::before {
  width: 2px;
  margin-left: -1px;
  left: 50%;
  top: 5px;
  bottom: 5px;
}
.overlay p {
   font-size: 13px;
}
.gradient_text {
	background: -webkit-gradient(linear,left top, right top,from(#00e3ce) , to(#00abc9));
	background: -webkit-linear-gradient(left,#00e3ce , #00abc9);
	background: -o-linear-gradient(left,#00e3ce , #00abc9);
	background: linear-gradient(90deg,#00e3ce , #00abc9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*Single Porfolio*/
.item-one {
   background: url(../images/bg-single-1.jpg) no-repeat;
}
.item-two {
   background: url(../images/bg-single-2.jpg) no-repeat;
}
.item-three {
   background: url(../images/bg-single-3.jpg) no-repeat;
}
.item-four {
   background: url(../images/bg-single-4.jpg) no-repeat;
}
.item-five {
   background: url(../images/bg-single-5.jpg) no-repeat;
}
.item-six {
   background: url(../images/bg-single-6.jpg) no-repeat;
}
.item-seven {
   background: url(../images/bg-single-7.jpg) no-repeat;
}
.item-eight {
   background: url(../images/bg-single-8.jpg) no-repeat;
}
.item-nine {
   background: url(../images/bg-single-9.jpg) no-repeat;
}

.single-items {
   background-attachment: fixed;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
   position: relative;
   width: 100%;
}

@media (max-width: 768px) {
   #portfolio_top::after {
      background: inherit;
   }
   .bottom-text > .cells {
      display: table;
   }
}

@media (max-width: 767px) {
   #portfolio_top::before {
      display: none;
   }
   #portfolio_top .text_wrap {
      padding-top: 0;
   }
   #portfolio_top .bottom-text {
      text-align: center;
      display: block;
   }
   .bottom-text > .cells {
      display: inline-block;
      width: 100%;
      padding: 30px 15px;
   }

}


/*-------------------------------*/
    /*Gallery ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Pricings */
/*-------------------------------*/
.price-table, .price-table *{
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.pricing-bg {
   background: url(../images/page-header-2.jpg)no-repeat;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
   background-attachment: fixed;
   position: relative;
   width: 100%;
}
.pricing-bg::before {
   content: "";
   height: 50%;
   width: 100%;
   bottom: 0;
   position: absolute;
   background: #f6f6f6;
}
.price-table {
	padding: 35px 45px;
	border: 1px solid #f6f3f3;
    background: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.square-layout .price-table{
   -webkit-border-radius: 0;
   border-radius: 0;
}
.three-col-pricing .price-table,
.centered-table .price-table {
	padding: 3rem 1.5rem;
}
.three-col-pricing .price-table,
.centered-table .price-table,
.three-col-pricing .price-table ul,
.centered-table .price-table ul{
   text-align: center;
}
.price-table h3 {
   font-size: 1.875rem;
}
.price-table h3, .price-table .ammount h2 {
   font-weight: normal;
}
.centered-table .price-table h3,
.centered-table .price-table .ammount h2 {
   font-weight: bold;
}
.price-table .ammount *,
.price-table ul, .price-table ul li > span{
  display: inline-block;
}
.price-table .ammount *{
   vertical-align: middle;
}
.price-table .ammount .dur {
	font-size: 1rem;
	color: #545661;
	margin-top: 10px;
}
.price-table .ammount i {
	margin-top: -5px;
	font-size: 80%;
	margin-right: -5px;
}
.price-table .ammount h2 {
   line-height: 1;
   font-size: 3.125rem;
}
.price-table.active .ammount h2 {
   color: #643094;
}
.price-table ul {
  text-align: left;
}

.price-table ul li {
    margin-top: 1.25rem;
}
.price-table ul li{
    color: #6e6e6e;
   font-size: 14px;
}
.price-table ul li.not-support{
   color: #9b9b9b;
}
.price-table ul li.not-support > span {
   text-decoration: line-through;
}
.price-table ul li > span {
	padding-left: 20px;
}
.price-table ul li > span::before {
	content: "\f00c";
	color: #30e512;
	margin-right: 8px;
	width: 20px;
	margin-left: -20px;
}
.price-table ul li.not-support > span::before{
   content: "\f00d";
   color: #ff434b;
}
.centered-table .price-table ul li > span::before {
   display: none;
}
.centered-table .price-table ul li > span::after {
   content: "";
   width: 100%;
   height: 1px;
   background: #f6f6f6;
   margin: 0 auto;
   display: inline-block;
}
.centered-table .price-table ul li:last-child > span::after {
   width: 0;
}

.price-table:hover {
   background: #00bcd4;
   border-color: #00bcd4;
}
.price-table.active:hover {
   background: #643094;
   border-color: #643094;
}
.price-table:hover *,
.price-table:hover .ammount *,
.price-table:hover .ammount h2,
.price-table:hover .ammount .dur,
.price-table:hover ul li > span::before,
.price-table:hover .btnsecondary,
.price-table:focus .btnsecondary,
.price-table:hover .btnprimary,
.price-table:focus .btnprimary{
   color: #fff;
}
.price-table:hover .btnsecondary,
.price-table:focus .btnsecondary,
.price-table:hover .btnprimary,
.price-table:focus .btnprimary {
   border-color: #fff;
   background: transparent;
}
.price-table .btnsecondary:hover,
.price-table .btnsecondary:focus,
.price-table .btnprimary:hover,
.price-table .btnprimary:focus {
   border-color: #fff;
   background: #fff;
   color: #212331;
}
.price-table:hover {
	-webkit-box-shadow: 0 0 5px rgba(101, 101, 101, 0.2);
	box-shadow: 0 0 5px rgba(101, 101, 101, 0.2);
}

@media (max-width: 992px) { 
   .price-table{
      padding: 3.375rem 4rem;
   }
}
@media (max-width: 768px) {
   .price-table{
      padding: 2.375rem 2rem;
   }
}
@media (max-width: 768px) {
   .price-table{
      padding: 2.375rem 2rem;
   }
}

/*-------------------------------*/
    /* Pricings ends */
/*-------------------------------*/


/*-------------------------------*/
    /* Our Team */
/*-------------------------------*/
.team-box,
.team-box .team-content {
   -webkit-transition: all .5s ease-in .1s;
   -o-transition: all .5s ease-in .1s;
   transition: all .5s ease-in .1s;
}
.team-box {
   position: relative;
   padding: 20px 20px 100px 20px;
   overflow: hidden;
}
.team-box.grey-shade {
	padding: 0;
   background: #f6f6f6;
}
.team-box.no-hover {
   padding: 0;
   overflow: inherit;
}
.team-box::before {
   content: "";
   border: 20px solid #fff;
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 50px;
}
.team-box.grey-shade::before,
.team-box.no-hover::before {
   display: none;
}
.team-box.grey-shade img{
   -webkit-filter: grayscale(100%);
   filter: grayscale(100%);
}
.team-box.grey-shade:hover img {
   -webkit-filter: grayscale(0);
   filter: grayscale(0);
}
.team-box .team-content {
   padding: 30px 1.25rem;
   position: absolute;
   overflow: hidden;
   bottom: 0;
   left: 20px;
   right: 20px;
   -webkit-transform: translateY(53%);
   -ms-transform: translateY(53%);
   -o-transform: translateY(53%);
   transform: translateY(53%);
   text-align: center;
}
.team-box.single .team-content {
   -webkit-transform: translateY(38%);
   -ms-transform: translateY(38%);
   -o-transform: translateY(38%);
   transform: translateY(38%);
}
.team-box.no-hover .team-content { 
   -webkit-box-shadow: 0px 10px 5px -10px #b7b7b7;
   box-shadow: 0px 10px 5px -10px #b7b7b7;
   background: #fff;
}
.team-box.no-hover .team-content,
.team-box.grey-shade .team-content {
   -webkit-transform: none;
   -ms-transform: none;
   -o-transform: none;
   transform: none;
   position: relative;
   left: 0; right: 0;
}

.team-box .team-content h3 {
   font-weight: normal;
   font-size: 1.5rem;
}
.team-box.no-hover .team-content h3 {
   color: #212331;
}
.team-box .team-content p {
   font-size: 12px;
}
.team-box.no-hover .team-content p {
   font-size: 12px;
   margin-bottom: 10px;
}
.team-box:hover .team-content,
.team-box.single:hover .team-content {
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
}
.team-box.no-hover .team-content::before {
   content: "";
   height: 100%;
   width: 100%;
   background: -webkit-linear-gradient(90deg, #423f9c, #862359);
   background: -webkit-gradient(linear, left top, right top, color-stop(#423f9c), color-stop(#862359));
   background: -webkit-linear-gradient(left, #423f9c, #862359);
   background: -o-linear-gradient(left, #423f9c, #862359);
   background: -webkit-gradient(linear, left top, right top, from(#423f9c), to(#862359));
   background: linear-gradient(90deg, #423f9c, #862359);
   position: absolute;
   left: 0;
   top: 0;
   opacity: 0;
   visibility: hidden;
   z-index: -1;
}
.team-box.no-hover:hover .team-content::before {
   opacity: 1;
   visibility: visible;
}
.team-box.no-hover:hover .team-content::before,
.team-box.no-hover:hover .team-content,
.team-box.no-hover:hover .team-content h3 ,
.team-box.no-hover:hover .team-content ul.social-icons li a {
   color: #fff;
}

.team-box .overlay {
   top: 0; left: 0;
   right: 0; bottom: 0;
}
.team-box:hover .overlay {
	opacity: 1;
	visibility: visible;
	-webkit-border-radius: 0;
	border-radius: 0;
}
 
.team-box ul.social-icons li a {
   height: 30px;
   width: 30px;
   line-height: 30px;
   font-size: 14px;
}
.team-box ul.social-icons.white{}

/*Progress Bars*/
.progress-bars .progress {
	position: relative;
	overflow: visible;
	height: 12px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
   opacity: 0;
}
.progress-bars .progress + .progress {
	margin-top: 40px;
}
.progress-bars .progress p {
	margin-bottom: 10px;
	position: relative;
	left: 0;
	display: inline-block;
}
.progress-bars .progress p,
.progress-bars .progress .progress-bar span {
   top: -24px;
}
.progress-bars .progress .progress-bar {
	float: none;
	position: absolute;
	height: 100%;
    -webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: width 1s ease-in-out .3s;
	-o-transition: width 1s ease-in-out .3s;
	transition: width 1s ease-in-out .3s;
    background: -webkit-linear-gradient(90deg, #f6663f 31%, #ed145b 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #f6663f), color-stop(69%, #ed145b));
    background: -webkit-linear-gradient(left, #f6663f 31%, #ed145b 69%);
    background: -o-linear-gradient(left, #f6663f 31%, #ed145b 69%);
    background: linear-gradient(90deg, #f6663f 31%, #ed145b 69%);
}
.progress-bars .progress .progress-bar span {
	display: block;
	position: absolute;
	right: 0;
	width: 40px;
	padding: 0;
}

@media (max-width: 992px) {
   .team-box {
      padding: 20px 20px 89px 20px;
   }
   .team-box .team-content {
      -webkit-transform: translateY(56%);
      -ms-transform: translateY(56%);
      -o-transform: translateY(56%);
      transform: translateY(56%);
   }
   .team-box.single .team-content {
      -webkit-transform: translateY(40%);
      -ms-transform: translateY(40%);
      -o-transform: translateY(40%);
      transform: translateY(40%);
   }
}

@media (max-width: 768px) {
   .team-box {
      padding: 20px 20px 85px 20px;
   }
   .team-box .team-content {
      -webkit-transform: translateY(57%);
      -ms-transform: translateY(57%);
      -o-transform: translateY(57%);
      transform: translateY(57%);
   }
 
}

/*-------------------------------*/
    /*Our Team ends */
/*-------------------------------*/

/*Default Sections*/
section {
   position: relative;
}
.section-overlay::before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background: rgba(0, 0, 0, .70);
   background: -webkit-linear-gradient(320deg, rgba(0, 188, 212, .70), #4766c8, rgba(100, 48, 148, .70));
   background: -o-linear-gradient(320deg, rgba(0, 188, 212, .70), #4766c8, rgba(100, 48, 148, .70));
   background: linear-gradient(130deg, rgba(0, 188, 212, .70), #4766c8, rgba(100, 48, 148, .70));
}

.some_features {
   background: url(../images/parallax-feature.jpg) no-repeat;
}
.parallax_set {
   background: url(../images/parallax-set.jpg) no-repeat;
}
.support_demo {
   background: url(../images/parallax-support.jpg) no-repeat;
}
.some_features, .parallax_set, .support_demo {
   background-attachment: fixed;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
}

.default_section_heading {
   font-size: 45px;
   font-family: 'Raleway', sans-serif;
   font-weight: 100;
   margin: 0;
   padding: 0;
   color: #303840;
   text-transform: capitalize;
}

.colorwhite {
    color: #fff;
}

/* Skills Section */

.skill_section_personal .expertise_block{
    margin-top: 65px;
}

/* Expertise Block */

.skill_section_personal .expertise_block{
    cursor: pointer;
    padding:0 15px;
}
 

.expertise_block h3{
    transition: 300ms;
}

.expertise_block:hover h3{
    transform: translateY(-5px);
}
 
.small_heading_navy{
    color: #232323;
    font-weight: 600;
    font-size: 22px;
    margin: 0;
    margin-bottom: 15px;
}

.font_600{
    font-weight: 600 !important;
}

.pink_color{
	color: #82B440 !important;
}

.expertise_block {
    padding: 30px 0;
}

.bg-light-gray {
    background-color: #f9f9f9;
}
 

/*Service Slider*/
#services-slider {
    margin: -140px 0 -50px;
    min-height: 350px;
    position: relative;
    z-index: 21;
}
#services-slider.owl-carousel .owl-stage-outer{
    padding-top: 25px;
    padding-bottom: 25px;
}
#services-slider .service-box{
    position: relative;
    padding: 4rem 1rem;
    background: #17acc6;
    color: #fff;
    text-align: center;
    -webkit-transition: all .5s ease .1s;
    -o-transition: all .5s ease .1s;
    transition: all .5s ease .1s;
    z-index: 2;
    overflow: hidden;
}
#services-slider .service-box::before {
    content: "";
    top: -100px;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

#services-slider .service-box > span {
    display: inline-block;
    font-size: 32px;
    height: 50px;
    width: 50px;
    overflow: hidden;
}
#services-slider .service-box > span {
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
#services-slider .service-box h4{
    font-weight: bold;
}
#services-slider .service-box:hover span {
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    transform: translateY(-10px);
}
#services-slider .owl-item.center .service-box {
    background: #1b1b1b;
    padding: 6.5rem 2rem;
    margin-top: -30px;
}
#services-slider .service-box:hover::before {
    opacity: 1;
    visibility: visible;
    top: 0;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

/*fontAwesome*/
.zeus.tparrows.tp-rightarrow::before,
.zeus.tparrows.tp-leftarrow::before,
.price-table ul li > span::before,
.testimonial-quote h3::before, 
.testimonial-quote h3::after,
blockquote.blockquote::before{
	font-family:'FontAwesome';
}

.bg-grey{
	background:#373435;
}

.bg-org{
	background:#f9a531;
}

.bg-grey:hover{
	background:#f9a531;
}
 
.background:hover{
	background:#373435 !important;
} 



.poly-top {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 100;
}

.left-poly-side {
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
}
 
.right-poly-side {
    position: absolute;
    width: 0px;
    height: 0px;
    right: 0px;
    border-style: solid;
} 
 
.main-slider-section img, .rev-slidebg{
	max-width:100%;
}

.md-logo{
	display:block;
}

.sm-logo{
	display:none;
}

.itemshadow .cbp-item-wrapper{
	padding-top:30px;
}

.circle_pie_section{
	 padding: 54px 0 20px;
}

.point_text{
    color: #82B440 !important;
    display: inline-block;
    float: left;
    padding: 0 0 20px 0;
}

.point_sec{
	padding: 45px 0 50px;
}

.padd_tb45 {
    padding: 45px 0;
}

.border-img img {
    border: 20px solid #fff;
	margin: 30px 0 0;
}

/* media query */
 
 @media (max-width: 767px) {
.process-wrapp li > .pro-step { 
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 18px; 
}

.process-wrapp li {
    padding: 40px  0px 0 0px;
}

.process-wrapp li p:last-child {
    font-size: 10px;
}

.bottom20 {
    margin-bottom: 10px;
}

.process-wrapp li::before, .process-wrapp li::after {
    top: 67px;
    margin: 0 -25px;
}

.process-wrapp { 
    margin: 0 0px; 
}

.process-wrapp li {
    width: 18%;
}

.cbp-item-wrapper img{
	width: calc(100% - 122px);
}

}  
 
 
 
 
 
 
 
 
 
 
 
 
 










