/*-------------------------------------------------
Template Name: Insee - Minimal portfolio template 
Template URI: https://lovlytheme.com/tf/html/insee/
Description: This is html5 template
Author: Lovelytheme
Author URI: https://lovlytheme.com/
Version: 1.0
Note: Do not edit this file - Place your styles in custom.css

[== CSS INDEX ==]
1. Fonts Import
2. General Styles
3. Form styles 
4. Button styles  
5. Tabs and Accordions 
6. Progress bars
7. Examples icons
8. Overlays
9. Typography
10. Navbar
11. Home Section 
12. Content boxes 
13. Google map 
14. Footer
15. Portfolio
16. Team
17. Blog
18. Comments and comment form
19. Responsive Media Querries

---------------------------------------------------- */


/*--- [ 1. Fonts Import ] ---*/
@import url("slider.css");
@import url("vertical.css");
@import url("//fonts.googleapis.com/css?family=Montserrat:400");
@import url("//fonts.googleapis.com/css?family=Inconsolata:400,700");
@import url("//fonts.googleapis.com/css?family=Open+Sans:400italic,400,700");

/*--- [ 2. General Styles ] ---*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: scrollbar;
}

body {
	background: #f8f8f8;
	font: 400 12px/1.8 "Open Sans", Verdana, sans-serif;
	color: #666;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
}

#cssSlider {
	width: 800px;
	  height: 300px;
	  overflow: hidden;
	  border: 10px solid #666;
  }
  
  #sliderImages {
	  width : 4000px;
	  height: 300px;
	  overflow: hidden;
	  
	  /* animation duration: 16s : 5x ~3s display image + 5x ~0.2s slide */
	  animation: slide 16s infinite;
	  -moz-animation: slide 16s infinite;
	  -webkit-animation: slide 16s infinite;
	  -o-animation: slide 16s infinite;
  }
  
  #sliderImages img {
	  float: left;
  }
  
  @keyframes slide{
	  0%{margin-left: 0px;}
	  17%{margin-left: 0px;}
	  20%{margin-left: -800px;}
	  37%{margin-left: -800px;}
	  40%{margin-left: -1600px;}
	  57%{margin-left: -1600px;}
	  60%{margin-left: -2400px;}
	  77%{margin-left: -2400px;}
	  80%{margin-left: -3200px;}
	  97%{margin-left: -3200px;}
	  100%{margin-left: 0px;}
  }
  
  @-moz-keyframes slide{
	  0%{margin-left: 0px;}
	  17%{margin-left: 0px;}
	  20%{margin-left: -800px;}
	  37%{margin-left: -800px;}
	  40%{margin-left: -1600px;}
	  57%{margin-left: -1600px;}
	  60%{margin-left: -2400px;}
	  77%{margin-left: -2400px;}
	  80%{margin-left: -3200px;}
	  100%{margin-left: -3200px;}
  }
  
  @-webkit-keyframes slide{
	  0%{margin-left: 0px;}
	  17%{margin-left: 0px;}
	  20%{margin-left: -800px;}
	  37%{margin-left: -800px;}
	  40%{margin-left: -1600px;}
	  57%{margin-left: -1600px;}
	  60%{margin-left: -2400px;}
	  77%{margin-left: -2400px;}
	  80%{margin-left: -3200px;}
	  100%{margin-left: -3200px;}
  }
  
  @-o-keyframes slide{
	  0%{margin-left: 0px;}
	  17%{margin-left: 0px;}
	  20%{margin-left: -800px;}
	  37%{margin-left: -800px;}
	  40%{margin-left: -1600px;}
	  57%{margin-left: -1600px;}
	  60%{margin-left: -2400px;}
	  77%{margin-left: -2400px;}
	  80%{margin-left: -3200px;}
	  100%{margin-left: -3200px;}
  }

img {
	max-width: 100%;
	height: auto;
}

iframe {
	border: 0;
}

.leftauto {
	right: 0 !important;
	left: auto !important;
}

/* Selection */

::-moz-selection {
	background: #000;
	color: #fff;
}

::-webkit-selection{
	background: #000;
	color: #fff;
}

::selection{
	background: #000;
	color: #fff;
}

/* Transition elsements */

.form-control,
.navbar-custom,
.navbar-custom .navbar-brand {
	-webkit-transition: all 0.4s ease-in-out 0s;
	   -moz-transition: all 0.4s ease-in-out 0s;
		-ms-transition: all 0.4s ease-in-out 0s;
		 -o-transition: all 0.4s ease-in-out 0s;
			transition: all 0.4s ease-in-out 0s;
}

a,
.btn,
.navbar a {
	-webkit-transition: all 0.125s ease-in-out 0s;
	   -moz-transition: all 0.125s ease-in-out 0s;
		-ms-transition: all 0.125s ease-in-out 0s;
		 -o-transition: all 0.125s ease-in-out 0s;
			transition: all 0.125s ease-in-out 0s;
}

.team-detail,
.team-image:after,
.work-caption,
.work-image > img,
.work-image:after {
	-webkit-transition: all 0.3s ease-in-out 0s;
	   -moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		 -o-transition: all 0.3s ease-in-out 0s;
			transition: all 0.3s ease-in-out 0s;
}

/* Reset border-radius */

.well,
.label,
.alert,
.progress,
.form-control,
.modal-content,
.panel-heading,
.panel-group .panel,
.nav-tabs > li > a,
.nav-pills > li > a {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

/* Reset box-shadow */

.btn,
.well,
.panel,
.progress,
.progress-bar,
.form-control,
.form-control:hover,
.form-control:focus,
.navbar-custom .dropdown-menu {
	-webkit-box-shadow: none;
			box-shadow: none;
}

/*--- [ 3. Form styles ] ---*/
.form-control {
	font-family: "Inconsolata", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 11px;
	height: 33px;
	border: 1px solid #b2b2b2;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
}

.form-control:focus {
	border-color: #CACACA;
}

/* Form sizes */

.input-lg,
.form-horizontal .form-group-lg .form-control {
	height: 43px;
	font-size: 13px;
}

.input-sm, .form-horizontal .form-group-sm .form-control {
	height: 29px;
	font-size: 10px;
}

/*--- [ 4. Button styles ] ---*/
.btn {
	padding: 8px 37px;
	font-family: "Inconsolata", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 11px;
}

.btn.focus,
.btn.active.focus,
.btn.active:focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline: 0;
}

.btn.btn-round {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
}

.btn.btn-circle {
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
}

/* Button colors */

.btn.btn-g {
	background: transparent;
	border: 1px solid #b2b2b2;
	color: #666;
}

.btn.btn-g:hover, .btn.btn-g:focus {
  background: #222 none repeat scroll 0 0;
  border-color: #222;
  color: #fff;
}
.post-meta.font-inc > a:hover {
  color: #ccc;
}

.btn.btn-border-d {
	background: transparent;
	border: 1px solid #000;
	color: #000;
}

.btn.btn-border-d:hover,
.btn.btn-border-d:focus {
	background: #000;
	color: #fff;
}

.btn.btn-d {
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
}

.btn.btn-d:hover,
.btn.btn-d:focus {
	background: #000;
	color: #fff;
}

/* Button sizes */

.btn.btn-lg {
	padding: 12px 45px;
	font-size: 13px;
}

.btn.btn-sm {
	padding: 6px 25px;
	font-size: 10px;
	letter-spacing: 1px;
}

.btn.btn-xs {
	padding: 4px 19px;
	font-size: 10px;
	letter-spacing: 0;
}

.btn-list .btn {
	margin: 5px 0;
}

/* home page new section */

.section-gap {
    position: relative;
}
#collapsable-pricing.shadow-pricing .row, .difuse-shadow {
    -webkit-box-shadow: 0 42px 64px 0 #e7e7ec;
    box-shadow: 0 42px 64px 0 #e7e7ec;
    border: transparent!important;
}
.news-wrapper, .p-4, .quote-container {
    padding: 1.5rem!important;
}
.card-img-bottom {
    border-bottom-left-radius: 6px!important;
    border-bottom-right-radius: 6px!important;
}
.text-smart {
    color: #21212b;
}
.font-weight-600 {
    font-weight: 600;
}
.text-muted {
    color: #8c8c8c!important;
}
 .btn-shape--rect.btn-sm {
    padding-left: 16.5px;
    padding-right: 16.5px;
    font-size: 11px;
    height: 33px;
    border-width: 2px;
    border: 2px solid #21212b;
    color: #21212b;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    text-transform: initial;
    border-radius: 2px;
    white-space: nowrap;
}
.margin-b{
	margin-bottom: 10px;
}
.bg_img_style{
	background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-clip: border-box !important;
    height: 280px !important;
}
.heading_top_last{
	font-size: 45px;
    margin-bottom: 4rem!important;
    line-height: 1.2;
}
.sub-heading-video{
	font-size: 11px;
    margin-bottom: 0.5rem;
}
.position-relative {
    position: relative!important;
}
.card-img-top {
    border-top-left-radius: 6px!important;
    border-top-right-radius: 6px!important;
}
.video-play-btn-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.video-btn {
    background: rgba(0,68,255,0);
    border-radius: 4px;
    -webkit-transition: all .18s ease-in-out;
    transition: all .18s ease-in-out;
}
.video-btn .video-play-icon {
    width: 46px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #21212b;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,.05);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.05);
    -webkit-transition: all .18s ease-in-out;
    transition: all .18s ease-in-out;
}
.video-play-btn-cover a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video-btn .video-play-icon i {
    margin-left: 2px;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.video-play-btn-cover a i {
    -webkit-transition: all .18s ease-in-out;
    transition: all .18s ease-in-out;
}
.video-btn:hover {
    background: rgba(0,68,255,.2);
}
.video-btn .video-play-icon:hover {
    width: 54px;
    height: 54px;
}
.custom-list {
    list-style: none;
    padding: 0;
}
.font-size-12 {
    font-size: 12px;
}
.pr-3 {
    padding-right: 1rem!important;
}
.custom-list.short-line li {
    padding: .2rem 0;
}
.form-input-2 {
    background-color: rgba(136, 211, 149, 0.05) !important;
    border: 2px solid rgba(136, 211, 149, 0.05) !important;
}
.form-input-2 {
    background-color: #fff;
    border-radius: 4.5px;
    border: 1px solid #d4d4d4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #4f555a;
    cursor: text;
    display: inline-block;
    padding: 18px;
    width: 100%;
    letter-spacing: normal;
    font-size: 14px;
    line-height: 20.7px;
}
.form-input-2:focus{
	outline:  #53b64b auto 1px !important;
}
.mb-3 {
    margin-bottom: 1rem!important;
}
.select-wrap {
    position: relative;
    cursor: pointer;
}
input.form-input-2, select.form-input-2 {
    height: 60px;
}
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1400;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80);
}
.mfp-wrap {
    -webkit-animation: popFadeIn .25s ease-in-out;
    animation: popFadeIn .25s ease-in-out;
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1443;
    position: fixed;
    outline: none!important;
    -webkit-backface-visibility: hidden;
}
.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
}
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}
.mfp-close-btn-in .mfp-close {
    color: #333;
}
button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
}
.lh-45 {
    line-height: 31px;
}
.align-items-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}
.align-items-start {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important;
}
.icon-lg {
    font-size: 56px;
}
.text-smart {
    color: #21212b;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0,0,0,.6);
    background: #000;
}

/* our company section */
.home__our-company--title{
    font-size: 3rem;
    line-height: 2.625rem;
    font-weight: 600;
	margin-bottom: 3rem;
	margin-top: 0 !important;
}
.full-width-card__container {
	flex-direction: row !important;
	border-radius: 0.25rem;
    box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.full-width-card__image {
	display: flex;
	width: 45%;
}
.full-width-card__image img {
    max-height: 60vw;
	width: 100%;
	object-fit: cover;
}
.full-width-card__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 42px 0;
	margin: 2.625rem 0;
	margin-top: 4.375rem;
	padding-bottom: 4.375rem;
	width: 55%;
}
.full-width-card__content__container {
	padding-right: 3rem;
	padding-left: 3rem;
}
.full-width-card__content--title {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 42px;
}
.full-width-card__content__container * + * {
    margin-top: 28px;
    margin-top: 1.75rem;
}
.full-width-card__content--cta {
	display: flex;
	align-items: center;
}
.full-width-card__content--cta:hover, .full-width-card__content--cta:focus{
	color: #000 !important;
}
.image-container2{
	margin-top: 0 !important;
	margin-left: 0.625rem;
	transition: transform 0.5s ease-in-out;
	width: 20px;
}
.full-width-card__content--cta:hover .image-container2 {
    transform: translate(20px);
}
 /* paterner section new */

 .certifications__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	align-items: baseline;
	margin-top: 2rem;

}
.certification__container {
    margin-top: 18px;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items: center;
	flex: 0 1 20%;
}
.certification__container--text a{
	color: #1c77c3 !important;
    font-weight: 600 !important;
}
.certification__container .image-certification-size {
    max-width: 136px;
    max-width: 8.5rem;
	width: 65%;
	position: relative;
}
.image-certification-size::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}
.image-certification-size > .image, .image-certification-size > noscript > .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.certification__text {
    padding-left: 1.75rem;
	padding-right: 1.75rem;
	display: block;
	margin-top: 0.875rem;
	margin-bottom: 0 !important;
	line-height: 1.5;
}
/* end home page new section */

/* new service section css */


.heading1 {
	color: #000;
    position: relative;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}
.heading5 {
	font-size: 18px;
    margin: 20px 0 15px;
    color: #000;
    position: relative;
}

.appi-cta {
    display: table;
	position: relative;
	margin: 20px 0 30px;
}
.animated_image_wrap {
    position: relative;
    padding: 0;
    margin: -60px auto 0;
    z-index: -1;
}
.animated_image_wrap img {
    width: 600px;
    margin: 0 auto;
    display: block;
}
.flex_wrapper {
	padding-bottom: 45px;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
	margin: -10px;
	display: flex;
}
.left_para {
    width: 60%;
}
.state-grid-wrapper {
    display: grid;
    display: -ms-grid;
    display: -webkit-grid;
    display: -moz-grid;
    grid-gap: 30px;
    grid-template-columns: auto auto;
}
.state {
	padding: 30px 0 0;
	display: grid;
}
.state-head {
    font: 50px/1.2 proxima_nova_altbold;
    color: #0092ff;
}
.state .heading5 {
	margin: 0;
	line-height: 1.3;
}
.right_video {
	margin-right: -40px;
	width: 40%;
    position: absolute;
    right: 0;
    top: 42px;
}
.wistia_click_to_play a img {
    max-width: 330px;
}



.lyfecycle_wrapper {
    width: calc(100% + 150px);
    padding-right: 30px;
}
.heading2 {
	margin: 0 0 35px 0;
	font-size: 45px;
	line-height: 1.2;
	color: #333;
    font: 60px/1.1 proxima_nova_altbold;
    position: relative;
    z-index: 1;
}
.lyfecycle_wrapper img {
    width: 60%;
    float: left;
    margin: 70px 0 0;
}

.startup_minset_wrapper {
	padding: 25px 40px;
	background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
}
.infographic_wrapper {
    flex-wrap: nowrap;
	margin: 0;
	display: flex;
}
.startup_minset_wrapper .infographic_wrapper{
	align-items: flex-start;
	padding-bottom: 0 !important;
}
.startup_minset {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}

.left_icon_wrapper {
    padding-right: 35px;
	padding-top: 5px;
	text-align: center;
}
.left_icon_wrapper figure {
    width: 50px;
    height: 50px;
}
.left_icon_wrapper figure svg {
	fill: #0092ff;
	width: 100%;
    height: 100%;
}
/* end new service section css */
/*--- [ 5. Tabs and Accordions ] ---*/
.tab-content {
	padding: 20px 0;
}

.panel-title {
	font-size: 14px;
}

.panel-heading a {
	position: relative;
	display: block;
}

.panel-heading a:after {
	position: absolute;
	content: "\f106";
	top: 50%;
	right: 0px;
	font-family: "FontAwesome";
	line-height: 1;
	font-size: 14px;
	margin-top: -7px;
}

.panel-heading a.collapsed:after {
	content: "\f107";
}

/*--- [ 6. Progress bars ] ---*/
.progress {
	overflow: visible;
	height: 4px;
}

.progress-bar {
	position: relative;
}

.progress-bar.pb-dark {
	background: #000;
}

.progress-bar span {
	position: absolute;
	display: block;
	right: -0px;
	top: 6px;
	opacity: 0;
	line-height: 12px;
	font-size: 12px;
	color: #666;
	padding: 4px 0px;
}

.progress-bar span:after {
	display: inline-block;
	content: "%";
}

.progress-title {
	margin: 0 0 5px;
	text-transform: uppercase;
	font-size: 14px;
}

/*--- [ 7. Examples icons ] ---*/
.et-icons .box1 {
	border: 1px solid #e5e5e5;
	display: block;
	width: 25%;
	float: left;
	padding: 0;
	font-size: 13px;
	margin: -1px 0 0 -1px;
}

.et-icons .box1 > span {
	display: inline-block;
	border-right: 1px solid #e5e5e5;
	min-width: 60px;
	min-height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 28px;
	margin-right: 5px;
}

.fa-icons > div {
	padding: 0;
	border: 1px solid #e5e5e5;
	margin: -1px 0 0 -1px;
	font-size: 13px;
}

.fa-icons > div > i {
	display: inline-block;
	margin-right: 5px;
	min-width: 40px;
	min-height: 40px;
	border-right: 1px solid #f1f1f1;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
}

.help-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*--- [ 8. Overlays ] ---*/

/* Dark background */
.bg-dark,
.bg-dark-30,
.bg-dark-50,
.bg-dark-90,
.bg-dark .module-title,
.bg-dark-30 .module-title,
.bg-dark-50 .module-title,
.bg-dark-90 .module-title {
	color: #fff;
}

.bg-dark {
	background: #111;
}

.bg-dark-30::before {
  background: rgba(0, 0, 0, 0.46) none repeat scroll 0 0;
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.bg-dark-50:before {
	position: absolute;
	background: rgba(0, 0, 0, .5);
	content: " ";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.bg-dark-90:before {
	position: absolute;
	background: rgba(0, 0, 0, .9);
	content: " ";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

/* Light background */

.bg-light,
.bg-light-30,
.bg-light-50,
.bg-light-90 {
	color: #000;
}

.bg-light {
	background: rgba(234, 234, 234, 0.7);
}

.bg-light-30:before {
	position: absolute;
	background: rgba(255, 255, 255, .3);
	content: " ";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.bg-light-50:before {
	position: absolute;
	background: rgba(255, 255, 255, .5);
	content: " ";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.bg-light-90:before {
	position: absolute;
	background: rgba(255, 255, 255, .9);
	content: " ";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.read-prompt-arrow {
    margin-left: 0.625rem;
    transition: all 0.5s ease;
    vertical-align: middle;
}
.first_section_banner{
	height: 70vh;
    background: #fff;
    display: inline-block;
    width: 100%;
    padding-top: 3rem;
    position: relative;
}
.image-is-loaded {
    object-fit: cover;
    object-position: center;
	font-family: "object-fit: cover; object-position: center";
	width: 100%;
}
.banner_text {
    z-index: 2;
    position: absolute;
    /* width: 100%; */
	transform: translateY(75%);
	left: 13%;
}
.service-card__divider {
    height: 5px;
    height: .3125rem;
    margin: 14px 0 21px 0;
    margin: .875rem 0 1.3125rem 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80px;
    width: 5rem;
    background-color: #1c77c3;
    transition: width 0.5s ease-out;
    margin-bottom: unitds(3);
    transition: width 1s;
}
.service-card__cta {
    position: relative;
    top: 0;
    color: #1c77c3;
	font-size: 15px !important;
	font-weight: 600;
    display: block;
    opacity: 1;
}


.tech_lang{
		color: #1c77c3;
		font-weight: 600;	
		font-size:16px;
		margin-bottom: 2rem;
	}
.card_div:hover {
    transform: translateY(-.625rem);
}
.service-card__headline{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
}
.card_div{
	border: 1px solid #d2d2d7;
    text-decoration: none;
    transition: all 0.3s ease;
	border-radius:.3125rem;
	backface-visibility: hidden;
    position: relative;
	z-index: 1;
	text-align: center;
    padding: 20px;
    margin: 2rem 0;
}
.services__title{
	font-size: 2.5rem;
	font-weight: 600;
}
.header__small-caps{
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.16428rem;
    font-weight: 600;
	color: #707070;
	padding-left: 16px;
}
.img_banner{
	position: relative;
}
.columned-list {
    list-style: none;
    list-style-position: outside;
	padding-left: 0;
	margin-top: .875rem;
}
.columned-list li:nth-of-type(odd) {
    padding-right: 5%;
}
.columned-list li:nth-of-type(2n+1){
	clear: left;
}
.columned-list li {
	padding-left: 0;
	float: left;
	width: 50%;
	padding: 16px;
	font-size: 15px;
}
.img_banner:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
	left: 0;
    display: block;
    background: linear-gradient(to right, rgba(89,245,227,0.5) 0%, rgba(27,217,196,0) 80%);
}
.link_dev{
	color: #1c77c3;
	font-weight: 600;
	font-size: 16px;
}
.heading_see{
	display: flex;
	align-items: center;
}
.card__content {
    display: block;
    background: #fff;
    margin: 0;
    padding: 9.17574% 3.58787%;
}
.card__content p{
	font-size: 16px;
    font-weight: 500;
}
.service__lvl1-details__heading {
    font-size: 3.375rem;
    line-height: 4.625rem;
	margin-bottom: 1.75rem;
	text-transform: none;
    letter-spacing: normal;
	word-break: normal;
	font-weight: 600;
}
.page-section__theme--grey {
    background: #f8f8f8;
	color: #333;
	position: relative;
}
.hero__headline:before {
    content: "";
    background: #1bd9c4;
    display: block;
    height: 5px !important;
    margin-bottom: 10px;
    width: 80px !important;
    position: absolute;
    top: -1rem;
    left: 0;
}
.hero__media--media-bleed-right {
	position: absolute !important;
    height: 60vh !important;
    right: 0;
    align-items: center;
    bottom: 0;
    display: flex;
    height: 224px;
    height: 14rem;
    justify-content: flex-end;
    left: 45%;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    transform: translateX(-50%);
    width: 100% !important;
    top: 0;
    bottom: 0;
    z-index: 0;
}
.hero__headline{
	font-size: 5.1875rem;
    font-weight: 600;
    line-height: 6.375rem;
    position: relative;
    margin-bottom: 0;
}
.learn-more-cta:hover {
  color: #5cb85c !important;
}
.learn-more-cta{
	font-size: 16px !important;
}


.go-back-button a{
    color: #8a959e !important;
    font-size: 14px;
    font-weight: 600;
}
 .group label {
    margin-bottom: 5px;
    display: block;
    font-size: 13px;
    color: #252b33;
    font-weight: 500;
}
.contact-form-sec select {
    border: 1px solid #d9dee2;
    font-family: Poppins,sans-serif;
    border-radius: 0;
    height: 40px;
    display: block;
    width: 100%;
    padding: 0 0 0 15px;
    color: #252b33;
    background: url(./../../assets/images/drop-down-arrow.png) right 15px center no-repeat #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    box-sizing: border-box;
}
.projectfileupload {
    position: relative;
    width: 100%;
    height: 40px;
    border: 1px solid #d9dee2;
    background: #fff;
}
.projectfileupload p {
    width: 100%;
    height: 100%;
    text-align: center;
    color: #252b33;
    font-size: 14px;
    line-height: 37px;
    font-weight: 400;
	margin-bottom: 0;
	margin-top: 0px;
}
.projectfileupload input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    opacity: 0;
    cursor: pointer;
}
.contact-form-sec textarea {
    border-radius: 0;
    font-family: Poppins,sans-serif;
    border: 1px solid #d9dee2;
    display: block;
    width: 100%;
    padding: 10px 0 25px 15px;
    font-size: 14px;
    color: #252b33;
    background: #fff;
    resize: none;
    box-sizing: border-box;
	-webkit-appearance: none;
	overflow: auto;
}

.has_danger{
    border: 1px solid red!important;
}

.group {
    padding-bottom: 15px;
    position: relative;
}
 .contact-form-sec input {
    background-color: #fff;
    font-family: Poppins,sans-serif;
    border: 1px solid #d9dee2;
    -webkit-appearance: none;
    height: 40px;
    display: block;
    width: 100%;
    padding: 0 0 0 15px;
    font-size: 14px;
    color: #252b33;
    box-sizing: border-box;
    border-radius: 0;
}
.client-image {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}
.form_brand {
    background-color: #f1f4f5;
    padding: 30px;
    box-sizing: border-box;
}
.client-logo h4 {
    font-size: 16px;
    color: #252b33;
	letter-spacing: -.33px;
	text-align: center;
	font-weight: 400;
}
.client-logo{
	margin-top: 40px;
}
.contact-form-sec{
	margin-top: 40px;
	margin-bottom: 40px;
}

/*--- [ 9. Typography ] ---*/
a {
	color: #000;
}

a:hover, a:focus {
	text-decoration: none;
	color: #999;
	outline: 0;
}

.bg-dark a {
	color: #fff;
}

.bg-dark a:hover, .bg-dark a:focus {
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
	font-weight: 400;
}

p, ol, ul, blockquote {
	margin: 0 0 20px;
}

blockquote {
	border: 0;
	font-style: italic;
	font-size: 14px;
	padding: 0;
}

.font-alt {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.font-inc {
	font-family: "Inconsolata", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.font-serif {
	font-family: Georgia, sans-serif;
}

.font-uppercase {
	text-transform: uppercase;
	font-style: normal;
}

.align-center {
	text-align: center;
}

.rotate {
	text-shadow: none !important;
}

/*--- [ 10. Navbar ] ---*/
/* mobile menu */
a.meanmenu-reveal{display:none}
.mean-container .mean-bar {
  background: transparent none repeat scroll 0 0;
  float: left;
  min-height: 42px;
  padding: 0 0 8px;
  position: relative;
  width: 100%;
  z-index: 999999;
}
.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:13px 13px 11px;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:16px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family:Arial,Helvetica,sans-serif;font-weight:700;float: right;}
.mean-container a.meanmenu-reveal span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-nav{float:left;width:100%;background:#0c1923}
.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}
.mean-container .mean-nav ul li {
  background: #f8f8f8 none repeat scroll 0 0;
  float: left;
  position: relative;
  width: 100%;
}
.mean-container .mean-nav ul li a {
  background: #f1f1f1 none repeat scroll 0 0;
  color: #000;
  display: block;
  float: left;
  font-size: 13px;
  font-weight: inherit;
  margin: 0;
  padding: 1em 5%;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  width: 90%;
}

/* home page chngae css */
.item {
	position: relative;
    margin: 0 35px 68px 0;
}
.related-posts-slider .item {
    position: relative;
	z-index: 1;
	border: solid rgba(12,12,12,.1);
	border-width: 0 1px;
	margin-bottom: 30px !important;
	padding: 66px 54px;
	margin-right: 0 !important;
}
.related-posts-slider .item:hover .h3 a, .related-posts-slider .item:hover h3 a {
    color: #fff;
}
.wht_we_do:hover .text {
    opacity: 1;
	pointer-events: auto;
	color: #fff !important;
}
.main {
    /* padding-top: 20px; */
}
.our-process {
    padding-bottom: 30px;
}
.our-process .heading {
	margin-bottom: 100px;
	display: flex;
}
.our-process .h1, .our-process h1 {
    max-width: 30%;
    margin-right: 10%;
}
.our-process .h1, .our-process h1 {
	margin-bottom: 20px;
	font-size: 60px;
    line-height: 64px;
}
.our-process .wrap {
	max-width: 500px;
	margin-left: auto;
}
.our-process .h3, .our-process h3 {
    margin-bottom: 20px;
	padding-top: 10px;
	font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
}
.our-process .link-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
	column-gap: 50px;
	margin-bottom: 20px;
	padding: 0;
}
.our-process .link-list li {
    margin-bottom: 4px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
    overflow: hidden;
    padding-bottom: 6px;
}
.our-process .link-list li {
    margin-bottom: 9px;
}
.our-process .link-list a {
	border-bottom: 2px solid currentColor;
	transition: color .3s;
}
.link {
    font-size: 24px;
    line-height: 32px;
}
.link {
    position: relative;
    text-decoration: none!important;
	font-size: 24px;
    line-height: 32px;
}
.hero {
    padding-bottom: 0;
    font-size: 24px;
	line-height: 32px;
	position: relative;
}
.process-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin: 0 -17px;
	flex-wrap: wrap;
}
.process-list li {
	width: calc(25% - 34px);
	max-width: none;
	margin: 0 17px 30px;
}
.works-section {
    padding: 45px 0 75px;
    text-align: right;
}
.latest_work .item {
    width: calc(33.33% - 70px);
	margin: 0 35px 68px;
	max-width: none;
	position: relative;
}
.latest_work .image {
    margin-bottom: 20px;
}
.latest_work .image {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin-bottom: 7px;
    overflow: hidden;
}
.latest_work .image::before {
    content: "";
    width: 100%;
    display: block;
    height: 0;
    pointer-events: none;
    padding-top: 110.34%;
}
.latest-work-listing .image a, .latest-work-listing .image img, .latest-work-listing .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
}
.latest-work-listing .h4, .latest-work-listing h4 {
    font-size: 24px;
    line-height: 32px;
}
.latest-work-listing .text {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: #fc0;
    padding: 20px;
    pointer-events: none;
}
.header.opened-menu .main-nav, .latest-work-listing .image:hover .text {
    opacity: 1;
    pointer-events: auto;
}
.latest-work-listing .text {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.works-section .h1, .works-section h1 {
    max-width: 580px;
	margin-bottom: 81px;
	text-align: left;
	font-size: 60px;
    line-height: 64px;
}
.latest-work-listing {
	margin: 0 -35px;
	text-align: left;
	display: flex;
}

ol li:before {
    font-weight: 500;
    font-style: normal;
    padding-right: 5px;
    display: table-cell;
    white-space: nowrap;
    vertical-align: top;
    counter-increment: counterName;
    content: counters(counterName,"-",decimal-leading-zero) ". ";
}
ol li {
	display: table;
	list-style: none;
}
.process-list li:before {
    content: counters(counterName,"-",decimal-leading-zero);
    color: #fc0;
    font-weight: 900;
    font-size: 100px;
    line-height: 100px;
    display: block;
    margin-bottom: 10px;
}
.our-process .h3, .our-process h3 {
    margin-bottom: 20px;
	padding-top: 10px;
	font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
}
ol li:before {
    padding-right: 10px;
}
.hero .table-wrapper {
	height: calc(100vh - 125px);
	display: table;
}
.hero .h1, .hero h1 {
    max-width: 630px;
	margin-bottom: 30px;
	font-size: 60px;
	line-height: 64px;
	font-weight: 600;
}
.hero p {
    margin-bottom: 20px;
}
.hero .table-cell {
    padding: 20px 0;
    display: table-cell;
	vertical-align: middle;
	padding-bottom: 150px;
}
.wht_we_do .text {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* padding: 10px; */
    background-color: #3db54a;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.latest-work-listing .image {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
	margin-bottom: 20px;
    overflow: hidden;
}
.related-posts-slider .item:hover .category, .related-posts-slider .item:hover time {
    color: rgba(255,255,255,.6);
}
.related-posts-slider .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #161616;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.related-posts-slider .h3, .related-posts-slider h3 {
    -webkit-transition: color .3s;
    transition: color .3s;
}
.related-posts-slider .h3, .related-posts-slider h3 {
    color: #0c0c0c;
	margin-bottom: 12px;
	font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
}
.related-posts-slider {
    width: 100%;
    max-width: 1470px;
	margin: 0 auto -30px;
	position: relative;
	padding: 0 15px;
	z-index: 1;
}
.related-posts-slider .category {
    -webkit-transition: color .3s;
    transition: color .3s;
}
.address-details address span, .related-posts-slider .category {
    display: block;
}
.capabilities-listing .item:hover::before, .main-nav>ul>li>a:hover::after, .related-posts-slider .item:hover::before {
    opacity: 1;
}
.latest-work-listing .image::before {
    content: "";
    width: 100%;
    display: block;
    height: 0;
    pointer-events: none;
    padding-top: 110.34%;
}
.latest-work-listing .image a, .latest-work-listing .image img, .latest-work-listing .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
}
.latest-work-listing .text {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: #3db54a;
    padding: 20px;
    pointer-events: none;
}
.header.opened-menu .main-nav, .latest-work-listing .image:hover .text {
    opacity: 1;
    pointer-events: auto;
}
.latest-work-listing .text {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.latest-work-listing .h4, .latest-work-listing h4 {
    font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}

/* home page chngae css */
/* about-us page */
.img_about_team{
	margin: 2rem 0;
}
.get-in-touch {
	padding: 80px 0;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 50px 0;
	margin: 0 -10px;
	border-top: 1px solid rgba(9,9,9,.1);
	display: flex;

}
.get-in-touch .block {
    font-size: 24px;
	line-height: 32px;
	width: 50%;
    padding: 0 10px;
}
.request-link:before {
    content: "";
    position: absolute;
	right: -3px;
    left: -3px;
    height: 4px;
    bottom: -5px;
    /* z-index: -1; */
    background: #fc0;
    -webkit-transition: height 1.1s;
    transition: height 1.1s;
}
.get-in-touch .block:last-child {
	width: 470px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 300;
	padding: 0 10px;
}
.get-in-touch p {
    margin-bottom: 30px;
}
.request-link {
    font-size: 60px;
	line-height: 64px;
	display: inline-block;
    cursor: pointer;
    vertical-align: top;
    position: relative;
    font-family: inherit;
    color: #000;
    font-weight: 900;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.get-in-touch h4 {
	margin-bottom: 9px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}
.logo-table .text {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #fc0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.clients.about-page .h1, .vacations .h2, .vacations h2 {
	margin-bottom: 50px;
	font-size: 60px;
	line-height: 64px;
	font-weight: 900;
}
.clients {
    padding: 33px 0 78px;
}
.agency-life {
	padding-top: 50px;
    padding-bottom: 50px;

}
.holder {
    max-width: none;
    margin: 0;
}
.agency-life .h1 {
	margin-bottom: 95px;
	font-size: 60px;
	line-height: 64px;
	font-weight: 900;
}
.asided .h6 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: rgba(9,9,9,.6);
}
.asided .h2 {
	margin-bottom: 35px;
	font-size: 48px;
    line-height: 54px;
}
.yellow, [type=submit].yellow {
    background: #fc0 !important;
	color: #000;
	transition: background-color .3s,color .3s;
}
.button{
	display: inline-block;
    min-width: 184px;
    padding: 15px 35px 11px;
    font-family: inherit;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    background-color: #0c0c0c;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    border: 0;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
@media (min-width: 1200px){
.our-leadership, .our-truth {
    padding-top: 60px;
	padding-bottom: 60px;
	border-top: 1px solid #ebebeb;
}
.our-leadership .h1 {
    margin-bottom: 90px;
}
}

.holder {
    max-width: none;
    margin: 0;
}
 .triple-column-list {
    display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
    margin: 0 -70px;
}
.our-truth .h1 {
	margin-bottom: 30px;
	font-size: 60px;
	line-height: 64px;
	font-weight: 900;
}
.description {
	margin-bottom: 55px;
	max-width: 846px;
}
.logo-table {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
}
.awards, .collaborations {
	padding-top: 60px;
    padding-bottom: 60px;
}
.awards .h2, .awards h2, .collaborations .h2 {
	margin-bottom: 50px;
	font-size: 48px;
	line-height: 54px;
	font-weight: 600;
}
.wide-block {
	margin-top: 90px;
	position: relative;
    padding: 50px 0;
	text-align: center;
	background-color: #161616;
}
.wide-block .h2, .wide-block h2 {
	color: #fff;
	font-size: 48px;
	line-height: 54px;
	font-weight: 600;
}
.wide-block a {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 500;
    font-size: 15px;
    line-height: 22px;
    color: #fc0;
}
/* .wide-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #161616;
} */
.logo-table img+strong {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: -6px 0 0;
    color: #fc0;
    font-weight: 700;
    font-size: 140px;
    line-height: 144px;
    z-index: 1;
}
.collaborations {
	padding-top: 50px;
	padding-bottom: 60px;
}
.logo-table img {
	max-height: none;
	z-index: 2;
}
.logo-table strong {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 5px;
	color: #fc0;
	display: block;
    font-weight: 400;
    font-size: 84px;
    line-height: 88px;
	letter-spacing: -1px;
	max-width: 100%;
}
.logo-table small {
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 24px;
	font-weight: 600;
	max-width: 100%;
}
.logo-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
	flex-direction: column;
	width: calc(33.33% + 1px);
    height: 142px;
    border: 1px solid #ebebeb;
    padding: 27px 50px;
	margin: -1px 0 0 -1px;
	display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
}
.our-truth {
    padding: 50px 0;
    border-top: 1px solid #ebebeb;
}
@media (min-width: 1024px){
	.triple-column-list li {
		width: calc(33.33% - 60px);
	
	}
}

@media (min-width: 768px){
	.triple-column-list li {
	    max-width: none;
    /* width: calc(50% - 60px); */
	margin: 0 30px 40px;
	list-style: none;
	
	}
}

/* .triple-column-list li {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 40px;
} */

.agency-life img, .fullwidth-image img, .our-leadership img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.agency-life .img-item::before, .agency-life figure::before, .our-leadership .img-item::before, .our-leadership figure::before {
    content: "";
    width: 100%;
    display: block;
    height: 0;
    pointer-events: none;
    padding-top: 133.14%;
}
.img-item, .our-leadership figure {
    position: relative;
    width: 100%;
    background-color: #d8d8d8;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.our-leadership .h3, .our-leadership h3 {
	margin-bottom: 5px;
	font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
}
.our-leadership small {
    font-size: 12px;
    color: rgba(9,9,9,.6);
}
@media (min-width: 768px){
.our-leadership .img-item, .our-leadership figure {
    margin-bottom: 25px;
}
}
.our-leadership .h1 {
    margin-bottom: 40px;
}
.our-leadership {
    padding: 30px 0;
}
.link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    color: inherit;
    background-color: currentColor;
}
.link {
    display: inline-block;
    font-size: 24px;
    line-height: 26px;
	text-decoration: underline;
	transition: color .3s;
	position: relative;
	text-decoration: none!important;
	color: #0c0c0c;
    font-weight: 600;
}
.link:hover {
    color: #fc0;
}
.asided p {
    margin-bottom: 30px;
}
.sidebar .text-content p {
    margin-bottom: 12px;
}
.text-content {
    margin-bottom: 50px;
}
.sidebar .h6 {
    margin-bottom: 25px;
}
.sidebar .text-content {
    width: 100%;
    margin: 0 0 60px;
}
.hero-section-content h1 {
	margin-bottom: 40px;
	font-size: 60px;
	line-height: 64px;
	font-weight: 600;
}
.hero-section-content h3 {
	margin-bottom: 20px;
	font-size: 30px;
    line-height: 42px;
	letter-spacing: -1px;
	font-weight: 600;
}
/* about-us page */

.mobile-menu-area {
  background: transparent none repeat scroll 0 0;
}
.mean-container .mean-nav ul li li a {
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.75;
  padding: 1em 10%;
  text-shadow: none;
  text-transform: capitalize;
  visibility: visible;
  width: 80%;
}
.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}
.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}
.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}
.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}
.mean-container .mean-nav ul li a:hover {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #889888;
}
.mean-container .mean-nav ul li a.mean-expand {
  background: #f8f8f8 none repeat scroll 0 0;
  border: 0 none;
  font-weight: 700;
  height: 25px;
  line-height: 27px;
  margin-top: 1px;
  padding: 12px;
  position: absolute;
  right: 0px;
  text-align: center;
  top: -1px;
  width: 26px;
  z-index: 2;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #f8f8f8;
}
.mean-container .mean-push{float:left;width:100%;padding:0;margin:0;clear:both}
.mean-nav .wrapper{width:100%;padding:0;margin:0}
.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.mean-remove{display:none!important}
.mean-container a.meanmenu-reveal {
  border: 1px solid #000;
  color: #444;
  cursor: pointer;
  display: block;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1px;
  font-weight: 700;
  height: 21px;
  line-height: 22px;
  margin-top: -52px;
  padding: 5px 8px;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 11px;
  transition: none 0s ease 0s ;
  width: 22px;
}
.mean-container .mean-bar {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  float: left;
  min-height: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 999999;
}
.mobile-menu-area {
  display: none;
}

.navbar-custom .dropdown-menu .dropdown-menu {
  border-top: 2px solid #000000;
}
.navbar-custom {
	background: #fff;
	border: 0;
	border-color: #f5f5f5 !important;
	border-bottom: 1px solid #f5f5f5 !important;
	border-radius: 0;
	font-family: "Inconsolata", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 13px;
	z-index: 1000;
}

.navbar-custom .dropdown-menu {
	background: #fff;
	border: 1px solid #f5f5f5;
	border-radius: 0;
	padding: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.navbar-custom .dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
	right: auto;
	margin-top: -1px;
}

.navbar-custom .navbar-brand {
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.1em;
	font-weight: 400;
	font-size: 20px;
	color: #000;
}

.navbar-custom .nav li > a {
	position: relative;
	color: #000;
}

.navbar-custom .nav > li > a:focus, .navbar-custom .nav > li > a:hover, .navbar-custom .nav .open > a, .navbar-custom .nav .open > a:focus, .navbar-custom .nav .open > a:hover, .navbar-custom .dropdown-menu > li > a:focus, .navbar-custom .dropdown-menu > li > a:hover {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  /* color: #889888; */
  color: #00BF4D;
}

.navbar-custom .dropdown-menu > li > a:hover {
	background: #f5f5f5 !important;
}

.navbar-custom .dropdown-menu > li > a {
  border-bottom: 1px solid #f5f5f5 !important;
  color: #666;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 15px 35px;
}

.navbar-custom .dropdown-menu > li:last-child > a {
	border: 0 !important;
}

.navbar-custom .dropdown-toggle:after {
	position: absolute;
	display: block;
	right: 0;
	top: 50%;
	margin-top: -5px;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 9px;
	content: "\f107";
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle {
	padding-right: 28px;
}

.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle:after {
	position: absolute;
	display: block;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 9px;
	content: "\f107";
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.navbar-custom .navbar-toggle .icon-bar {
	background: #000;
}


/*--- [ 11. Home Section ] ---*/
.module-hero {
	position: relative;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 600px !important;
	z-index: 0;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}
.carousel li {
    margin-right: 5px !important;
}
.carousel-indicators li{
	background-color: #ccc !important;
}
.carousel-indicators .active{
	background-color: gray !important;
}
.test_carousel{
	background: #ddd;
	padding: 20px;
}
.test_indicators{
	bottom: -50px;
}
.img_test{
text-align: center;
}
.img_test h4 {
    font-size: 16px;
    color: #252b33;
    font-weight: 400;
    width: 90%;
    margin: 20px auto;
    line-height: 23px;
}
.img_test img {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}
.img_test h6 {
    font-size: 12px;
    color: rgba(37,43,51,.5);
    font-weight: 400;
}
.img_test p {
    font-size: 14px;
    color: #252b33;
    font-weight: 600;
    margin-bottom: 0;
}

.hs-title-size-1 {
	letter-spacing: 0.1em;
	font-size: 14px;
}

.hs-title-size-2 {
	letter-spacing: 0.2em;
	font-size: 18px;
}

.hs-title-size-3 {
	letter-spacing: 0.1em;
	font-size: 28px;
}

.hs-title-size-4 {
	letter-spacing: 0.2em;
	font-size: 36px;
}

/* Video */

.video-controls-box {
	position: absolute !important;
	bottom: 40px;
	left: 0;
	width: 100%;
	z-index: 1;
}

.video-controls-box a {
	visibility: hidden;
	display: inline-block;
	color: #fff;
	margin: 0 5px 0 0;
}

/* -- Sections */

.wrapper {
	position: relative;
	background: #fff;
	z-index: 1;
}

.module,
.module-small,
.module-header {
	position: relative;
	padding: 140px 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.module-small {
	padding: 70px 0;
}

.module-header {
	padding: 190px 0 140px;
}

.col-bg {
	background: rgba(255, 255, 255, .9);
	padding: 140px 60px;
}

/* Module title */

.module-title {
	position: relative;
	margin: 0 0 70px;
	letter-spacing: 0.15em;
	font-size: 30px;
	color: #000;
}

.module-subtitle {
	margin-bottom: 70px;
	font-size: 12px;
}

.module-title + .module-subtitle {
	margin-top: -35px;
}

/* solution redesign css */
.wpb_wrapper{
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 8px 29px 0px rgba(25, 31, 40, 0.07);
    box-shadow: 0px 8px 29px 0px rgba(25, 31, 40, 0.07);
}
#s_shadow {
    min-height: 480px;
}
.g-cols.type_default {
    margin: 0 -1.5rem;
}
.vc_custom_1523451420082 {
    padding-bottom: 40px !important;
}
.solutions_enterprise{
 list-style: none;
}
.solutions_enterprise li::before {
	content: "\2022";
	color: #5cb85c;
	font-weight: bold;
	display: inline-block; 
	width: 1em;
	margin-left: -1em;
  }
.vc_custom_1559555549323 {
    padding-top: 15px !important;
    padding-right: 15px !important;
}
.upb_video_class, .vc_row, .wpb_column, .wpb_row {
    position: relative;
}
.g-cols.type_default>div {
    float: left;
}
.s_img {
    width: 45%;
}
.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}
.g-cols.valign_top>div>.vc_column-inner {
    justify-content: flex-start;
}
.g-cols.type_default>div>.vc_column-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.w-image:last-child, .l-section.width_full .vc_col-sm-12 .w-image {
    margin-bottom: 0;
}
.w-image.align_right {
    float: right;
    margin-left: 1.5rem;
}
.w-image-h, .w-image a, .w-image img {
    border-radius: inherit;
    border-color: inherit !important;
    color: inherit !important;
}
#s_shadow img {
    margin-top: 30px;
}
.g-cols.type_default>div {
    float: left;
}
.s_text {
    width: 53%;
}
.vc_custom_1559555474936 {
    padding-top: 15px !important;
    padding-right: 15px !important;
}
.w-btn-wrapper.align_left {
    display: inline-block;
    vertical-align: top;
    margin-right: 1rem;
}
.w-btn-wrapper {
    margin: 0.3rem 0;
}
.align_left {
    text-align: left;
}
@media (min-width: 768px){
.vc_col-sm-6 {
    width: 50%;
}
}

/* solution redesign css */
/* Sections dividers */

.divider-w {
	border-top: 1px solid #f5f5f5;
	margin: 0;
}

/* --Social list */

.social-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-list > li {
	display: inline-block;
	font-size: 24px;
	margin: 5px 5px 5px 0;
}

/*--- [ 12. Content boxes ] ---*/
.content-box {
	text-align: center;
	margin: 25px 0;
}

.content-box-icon {
	font-size: 36px;
}

.content-box-title {
	margin: 5px 0 0;
	font-size: 14px;
}

.content-box-text {
	margin: 15px 0 0;
}

/* --Counters */

.counter-item {
	text-align: center;
}

.counter-number {
	font-size: 36px;
}

.counter-title {
	text-transform: uppercase;
	font-size: 14px;
}

/*--- [ 13. Google map ] ---*/
#map-section {
	position: relative;
	height: 450px;
	width: 100%;
}

#map {
	height: 100%;
	width: 100%;
}

#map img {
	max-width: none;
}
.form-control {
  height: 49px;
}
#contact-form .btn {
  font-size: 13px;
  padding: 14px 52px;
}
.ajax-response {
	text-align: center;
}

/*--- [ 14. Footer ] ---*/
.footer {
	background: #f5f5f5;
	padding: 20px 0;
}

.copyright {
	font-size: 14px;
}

/*--- [ 15. Portfolio ] ---*/

/* Portfolio filter */

.filter {
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.filter > li {
	display: inline-block;
	padding: 5px 0;
	margin: 0 25px;
}

.filter > li a {
  color: rgba(102, 102, 102, 0.5);
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.2s ease 0s;
}
.filter > li a::after {
  background: #999 none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 50%;
  margin-left: -18px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(43deg);
  width: 33px;
}
.filter > li a:hover::after ,
.filter > li a.current::after {
  background: #000 none repeat scroll 0 0;
  opacity: 1;
}
.filter > li a:hover,
.filter > li a.current {
	color: #000;
}

/* Portfolio grid */

.works-grid {
	list-style: none;
	padding: 0;
	margin: 0;
}

.works-grid.works-grid-gut {
	margin: 0 0 0 -10px;
}

.works-grid.works-grid-gut .work-item {
	padding: 0 0 10px 10px;
}

.work-item {
	width: 50%;
	float: left;
	margin: 0;
}

.works-grid-3 .work-item {
	width: 33.333%;
}

.container > .works-grid-3 .work-item {
	width: 33.2%;
}

.works-grid-4 .work-item {
	width: 25%;
}

/* Portfolio item */

.work-item > a {
	position: relative;
	display: block;
	overflow: hidden;
}

.work-image {
	position: relative;
	overflow: hidden;
}

.work-image img {
	display: block;
	overflow: hidden;
	width: 100%;
}

.work-image:after {
	position: absolute;
	display: block;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.work-caption {
	width: 100%;
	padding: 0 20px;
	opacity: 0;
	position: absolute;
	bottom: 100%;
	left: 0;
	text-align: center;
	overflow: hidden;
}

.work-title {
	font-size: 18px;
	color: #fff;
	margin: 0 0 6px;
}

.work-descr {
	text-transform: uppercase;
	font-size: 14px;
	color: #999;
}

/* */
.works-grid-4 .work-title {
	font-size: 14px;
}

.works-grid-4 .work-descr {
	font-size: 12px;
}

/* Portfolio item hover */

.work-item:hover .work-image:after {
	background: rgba(0, 0, 0, .7);
}

.work-item:hover .work-image > img {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	     -o-transform: scale(1.1);
	        transform: scale(1.1);
}

.work-item:hover .work-caption {
	bottom: 50%;
	opacity: 1;
	z-index: 3;
	-webkit-transform: translateY(50%);
	   -moz-transform: translateY(50%);
	        transform: translateY(50%);
}

/* Work item white background */

.works-grid.works-hover-w .work-title {
	color: #000;
}

.works-grid.works-hover-w .work-descr {
	color: #666;
}

.works-grid.works-hover-w .work-item:hover .work-image:after {
	background: rgba(255, 255, 255, .8);
}

.works-grid.works-hover-g .work-image:after {
	opacity: 0;
}
.works-grid.works-hover-g .work-title,
.works-grid.works-hover-g .work-descr {
	color: #000;
}

.works-grid.works-hover-g .work-item:hover .work-image:after {
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmRmIiBzdG9wLW9wYWNpdHk9IjAuOSIvPgogICAgPHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmZGYiIHN0b3Atb3BhY2l0eT0iMC45Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmY2YwYjMiIHN0b3Atb3BhY2l0eT0iMC45Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
background: -moz-linear-gradient(-45deg,  rgba(255,255,223,0.8) 0%, rgba(255,255,223,0.8) 25%, rgba(252,240,179,0.8) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,223,0.8)), color-stop(25%,rgba(255,255,223,0.8)), color-stop(100%,rgba(252,240,179,0.8))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(255,255,223,0.8) 0%,rgba(255,255,223,0.8) 25%,rgba(252,240,179,0.8) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(255,255,223,0.8) 0%,rgba(255,255,223,0.8) 25%,rgba(252,240,179,0.8) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(255,255,223,0.8) 0%,rgba(255,255,223,0.8) 25%,rgba(252,240,179,0.8) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(255,255,223,0.8) 0%,rgba(255,255,223,0.8) 25%,rgba(252,240,179,0.8) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffdf', endColorstr='#e6fcf0b3',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
opacity: 1;
}

/* Portfolio single */

.work-details {
	margin: 0 0 20px;
}

.work-details-title {
	color: #000;
	margin: 0 0 20px;
}

.work-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.work-details ul > li {
	margin: 0 0 10px;
}

.work-title > i,
.work-title > span {
	font-size: 30px;
}

/*--- [ 16. Team ] ---*/
.team-item {
	position: relative;
	text-align: center;
}

.team-image {
	position: relative;
	overflow: hidden;
}

.team-image img {
	width: 100%;
}

.team-image:after {
	position: absolute;
	background: transparent;
	content: " ";
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.team-detail {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 50%;
	opacity: 0;
	z-index: 2;
	padding: 20px;
	-webkit-transform: translateY(50%);
	   -moz-transform: translateY(50%);
	        transform: translateY(50%);
}

.team-detail h5 {
	text-transform: uppercase;
	font-size: 14px;
}

.team-descr {
	margin: 20px 0 0;
}

.team-name {
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
}

.team-role {
	text-transform: uppercase;
	font-size: 12px;
}

/* Team member hover */

.team-item:hover .team-image:after {
	background: rgba(255, 255, 255, .9);
}

.team-item:hover .team-detail {
	opacity: 1;
}

/*--- [ 17. Blog ] ---*/
.post-columns .post {
	margin: 0 0 60px;
}

.post {
	margin: 0 0 80px;
}

.post-video,
.post-thumbnail,
.post-images-slider {
	margin: 0 0 20px;
}

.post-images-slider {
	position: relative;
}

.post-quote {
	background: #f5f5f5;
	text-align: center;
	padding: 20px;
}

.post-quote blockquote {
	margin: 0;
}

.post-header {
	margin: 0 0 20px;
}

.post-title {
	font-size: 18px;
	color: #000;
	margin: 0;
}

.post-columns .post-title {
	font-size: 14px;
}

.post-meta {
	font-size: 13px;
}

.post-more {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 13px;
}

/* Blog standart */

.post-header-small {
	position: relative;
	padding: 0 0 0 60px;
}

.post-icon {
	position: absolute;
	left: 0;
	top: 0;
	height: 48px;
	width: 48px;
	line-height: 48px;
	font-size: 36px;
}

.post-icon > i,
.post-icon > span {
	line-height: 48px;
}
.home_blog_area {
  background: #f8f8f8 none repeat scroll 0 0;
  padding-bottom: 21px !important;
  padding-top: 89px;
}
.pagination {
	display: block;
	text-align: center;
	font-size: 14px;
}

.pagination a + a {
	padding-left: 20px;
}

/*--- [ 18. Comments and comment form ] ---*/
.comments,
.comment-form {
	margin: 80px 0 0;
}

.comments .comment-title,
.comment-form .comment-form-title {
	font-size: 18px;
	color: #000;
	margin: 0 0 40px;
}

.comment-author {
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 10px;
}

.comment-avatar {
	width: 55px;
	float: left;
	margin-top: 10px;
}

.comment-avatar img {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.comment-content {
	padding-top: 5px;
	margin-left: 75px;
	margin-bottom: 30px;
}

.comment-meta {
	text-transform: uppercase;
	font-size: 12px;
}

/* --Scroll to top */

.scroll-up {
	position: fixed;
	display: none;
	bottom: 7px;
	right: 7px;
	z-index: 999;
}

.scroll-up a {
	background: #fff;
	display: block;
	height: 28px;
	width: 28px;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #000;
	opacity: 0.6;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.scroll-up a:hover,
.scroll-up a:active {
	opacity: 1;
	color: #000;
}

/* --Preloader */

.page-loader {
	position: fixed;
	background: #fff;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: 9998;
}

.loader {
	position: absolute;
	border-left: 2px solid #b2b2b2;
	border-top: 2px solid rgba(245, 245, 245, 0.8);
	border-right: 2px solid rgba(245, 245, 245, 0.8);
	border-bottom: 2px solid rgba(245, 245, 245, 0.8);
	height: 46px;
	width: 46px;
	left: 50%;
	top: 50%;
	margin: -23px 0 0 -23px;
	text-indent: -9999em;
	font-size: 10px;
	z-index: 9999;
	-webkit-animation: load 0.8s infinite linear;
	   -moz-animation: load 0.8s infinite linear;
		 ms-animation: load 0.8s infinite linear;
		  o-animation: load 0.8s infinite linear;
			animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 46px;
	height: 46px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* New Custom style  */
body {
  color: #222;
  font: 400 13px/1.8 "Open Sans",Verdana,sans-serif;
}
.navbar {
  min-height: 70px;
  padding-top: 4px;
}
.navbar-custom {
  font-family: open sans;
}
.navbar-custom .navbar-brand {
  font-size: 24px;
  font-weight: 500;
}
.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle::after {
  display: none;
}
.navbar-custom .navbar-nav > *::before {
  background: #000 none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -1px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: all 0.4s ease 0s;
  width: 4px;
}
.home_blog_areas {
  padding-bottom: 25px !important;
  padding-top: 81px;
}
.navbar-custom .navbar-nav > li:hover::before {
  left: 6px;
  opacity: 1;
}
.navbar-nav > li > .dropdown-menu {
  border-left: 0 none;
  border-right: 0 none;
  border-top: 2px solid #000000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
  top: 66px;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all 0.3s ease 0s;
}
.navbar-custom .open > .dropdown-menu {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}
nav.navbar ul li:hover > ul {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}
nav.navbar.stick {
  background: #fff none repeat scroll 0 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.04) !important;
  border-left-color: #f5f55f;
  border-right-color: #f5f55f;
  border-top-color: #f5f55f;
}
.navbar-transparent.stick .nav li > a, .navbar-transparent.stick .navbar-brand {
  color: #000;
}




.navbar-nav > li > a {
  padding-bottom: 20px;
  padding-top: 20px;
}
.font-inc {
  font-family: open sans;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.white-bg-30::before {
  background: rgba(0, 0, 0, 0.34) none repeat scroll 0 0;
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.sld-btn > a {
  background: #fff none repeat scroll 0 0;
  display: block;
  padding: 12px 43px;
  border: 1px solid #f8f8f8;
  transition: all 0.3s ease 0s;
}
.sld-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 51px;
  text-transform: uppercase;
}
.sld-btn:hover a {
  background: #222 none repeat scroll 0 0;
  border-color: #222;
  color: #fff;
}
.hs-title-size-4 {
  font-size: 44px;
  letter-spacing: 0.2em;
}
.filter > li a::after {
  background: #999 none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-left: -18px;
  margin-top: -2px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: inherit;
  transition: all 0.4s ease 0s;
  width: 4px;
}
.filter > li a:hover::after, .filter > li a.current::after {
  background: #000 none repeat scroll 0 0;
  left: 6px;
  opacity: 1;
}
.hm-drk .hs-title-size-4 ,.hm-drk .hs-title-size-1  {
  color: #fff;
}
.sld-btn-more {
  text-align: center;
}
.sld-btn-more .sld-btn {
  margin-top: 20px;
}
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
  height: 102%;
}
.section-title {
  clear: both;
  margin-bottom: 25px;
  overflow: hidden;
  text-align: center;
}
.section-title > h2 {
  font-family: montserrat;
  margin: 0 0 38px;
  position: relative;
  text-transform: uppercase;
}
.section-title > h2::after {
  background: #ddd none repeat scroll 0 0;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -50px;
  position: absolute;
  width: 100px;
}
.section-title > h2::before {
  background: #222 none repeat scroll 0 0;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  width: 30px;
  z-index: 9;
}
.post-entry > p {
  font-size: 13px;
}

.copy-right a {
  color: #000;
}
.footer-area {
  border-top: 1px solid #f2f2f2f2;
  padding: 25px 0;
}
.copy-right {
    padding: 4px 0 2px;
}
.social-bookmark-wrapper {
  float: right;
  margin-bottom: 0;
  margin-top: 4px;
}
.social-bookmark-wrapper > li {
  float: left;
  list-style: outside none none;
  margin-left: 10px;
}
.social-bookmark-wrapper a {
  border: 1px solid #e3e3e3;
  border-radius: 100%;
  color: #555;
  display: inline-block;
  font-size: 17px;
  height: 40px;
  line-height: 36px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 40px;
}
.social-bookmark-wrapper a:hover {
  border: 1px solid #f8f8f8;
  color: #fff;
}

.social-bookmark-wrapper  li a::before {
  background: #222 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleY(0);
  transform-origin: 50% 100% 0;
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: ease-out;
  z-index: -1;
}
.social-bookmark-wrapper  li a:active::before, .social-bookmark-wrapper  li a:focus::before, .social-bookmark-wrapper  li a:hover::before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.copy-right > p {
  color: #000;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 12px 0 0;
  text-transform: uppercase;
}
/* Home 2 update style */
.navbar-transparent.navbar-custom .navbar-nav > *::before {
  background: #fff none repeat scroll 0 0;
}
.gray-bg {
  background: #f8f8f8 none repeat scroll 0 0;
}
.counter-home {
  padding-bottom: 82px;
}
.p-b-93 {
  padding-bottom: 83px;
}
.navbar-custom .navbar-brand {
  margin-top: 5px;
}
.service-area  .content-box {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  padding: 31px;
}
.service-area .content-box .content-box-text {
  font-size: 13px;
}
.service-area .content-box-icon span {
  transform: scale(0.9);
  transition: all 0.3s ease 0s;
}
.service-area .content-box:hover .content-box-icon span {
  transform: scale(1.2);
}
.service-area {
  padding: 80px 0 67px;
}

.social-list > li {
  font-size: 30px;
}
.module, .module-small, .module-header {
  padding: 80px 0 70px;
}
.module.module-header {
  padding: 190px 0 140px;
}
.breadcrumb {
  background: transparent none repeat scroll 0 0;
  border-radius: 0;
}
.breadcrum-area {
  background: #f8f8f8 none repeat scroll 0 0;
  padding: 99px 0 29px;
}
.breadcrum-title > h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.abt-pg .module-subtitle {
  margin-bottom: 50px;
}
.prot-ptb {
  padding: 83px 0 72px;
}
.works-grid.works-hover-g .work-item:hover .work-image::after {
  background: rgba(0, 0, 0, 0) linear-gradient(135deg, rgba(67, 212, 175, 0.8) 0%, rgba(44, 211, 208, 0.8) 25%, rgba(78, 255, 206, 0.8) 100%) repeat scroll 0 0;
  opacity: 1;
}








/*--- [ 19. Responsive Media Querries ] ---*/
@media (min-width: 768px) {

	.align-right {
		text-align: right;
	}
	/* .triple-column-list{
		margin: 0;
		padding: 0;
	}
	.triple-column-list li{
		list-style-type: none;
		width: 100%;
		margin-bottom: 40px;
	} */

	.media_w{
		padding-left: 30px;
		padding-right: 30px;
	}

	.navbar-transparent {
		background: transparent;
		border: 0 !important;
		border-color: #f5f5f5 !important;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.navbar-transparent .nav li > a,
	.navbar-transparent .navbar-brand {
		color: #fff;
	}

	.navbar-transparent .dropdown-menu > li > a {
		color: #666;
	}

	.nabar-dark .nav > li > a,
	.nabar-dark .navbar-brand {
		color: #000;
	}

	.navbar-custom .dropdown-menu .dropdown-toggle:after {
		position: absolute;
		display: block;
		right: 9px;
		top: 50%;
		margin-top: -6px;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 9px;
		content: "\f105";
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.navbar-custom .dropdown-menu {
		position: absolute;
		display: block;
		visibility: hidden;
		opacity: 0;
	}

	.navbar-custom .open > .dropdown-menu {
		visibility: visible;
		opacity: 1;
	}

	.navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}

	/* Comments */

	.comment .comment {
		margin-left: 75px;
	}

}

@media (max-width: 991px) {

	/* Headers */
	.lyfecycle_wrapper{
		width: 100%;
	}

	.full-width-card__content--cta{
		align-items: inherit !important;
	}
	.image-container2{
		width: 40px !important;
	}
	.full-width-card__container{
		flex-direction: inherit !important;
		display: block  !important;
	}
	.full-width-card__image {
		width: 100% !important;
	}
	.full-width-card__content{
		width: 100% !important;
	}
	.small-inner-wrapper .infographic_wrapper{
		display: inline-block;
	}
	.lyfecycle_wrapper img{
		width: 50%;
		float: none;
		display: flex;
		margin: 0 auto;
		padding-bottom: 40px;
	}
	.left_para {
		width: 100%;
		padding-left: 40px;
	}
	.right_video{
		width:50%;
		position: relative;
		margin-right: 0;
		display: flex;
		justify-content: center;
		height: 305px;
	}
	.hs-title-size-3 {
		font-size: 24px;
	}

	.hs-title-size-4 {
		font-size: 32px;
	}

	.work-item,
	.works-grid-3 .work-item,
	.works-grid-4 .work-item,
	.works-grid-5 .work-item {
		width: 50%;
	}

}

@media (max-width: 767px) {
	.triple-column-list{
		margin: 0;
		padding: 0;
	}
	.logo-item{
		width: 100%;
	}
	.triple-column-list li{
		list-style-type: none;
		width: 100%;
		margin-bottom: 40px;
	}
	.logo-table img+strong{
		font-size: 100px;
	}

	.home__our-company--title{
		line-height: 4.625rem !important;
	}
	.certification__container{
		flex: 0 1 50% !important;
	}
	.left_para{
		width: 100%;
	}
	.right_video{
		width: 100%;
		position: relative;
	}
	.wistia_click_to_play a img{
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
		display: flex;
	}
	.state-grid-wrapper{
		padding-left: 20px;
		padding-right: 20px;
	}
	.small-inner-wrapper .infographic_wrapper{
		display: inline-block !important;
	}
	.lyfecycle_wrapper{
		width: 100%;
	}
	.lyfecycle_wrapper img{
		width: 100%;
		margin: 70px 0 20px 22px;
		float: none;
	}
	/* Navbar */
	.media_w{
		padding-left: 30px;
		padding-right: 30px;
	}
	.navbar-custom .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar-custom li a:hover {
		background: #f5f5f5 !important;
	}

	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-header,
	.navbar-custom .navbar-nav .open .dropdown-menu > li > a {
		padding: 10px 25px;
	}

	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-header,
	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
		padding: 10px 35px;
	}

	.navbar-custom li a,
.navbar-custom li a, .navbar-custom .dropdown-menu > li:last-child > a {
  border-bottom: 1px solid #f5f5f5;
}

	.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle:after,
	.navbar-custom .dropdown-toggle:after,
	.navbar-custom .dropdown-menu .dropdown-toggle:after {
		right: 7px;
		content: "\f107";
	}

	.navbar-custom .navbar-nav > .open > .dropdown-toggle:after,
	.navbar-custom .nav > .open >.dropdown-toggle:after,
	.navbar-custom .dropdown-menu .dropdown.open .dropdown-toggle:after {
		content: "\f106";
	}

	.navbar-custom .navbar-collapse {
		border-top: 1px solid #f5f5f5;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}

	/* Headers */

	.hs-title-size-1 {
		font-size: 12px;
	}

	.hs-title-size-2 {
		font-size: 16px;
	}

	.hs-title-size-3 {
		font-size: 20px;
	}

	.hs-title-size-4 {
		font-size: 24px;
	}
.copy-right {
  padding: 4px 0 8px;
  text-align: center;
}
.social-bookmark-wrapper {
  float: none;
}	
div.social-bookmark-wrapper {
  float: inherit;
  margin-bottom: 0;
  margin-top: 4px;
  text-align: center;
}	
ul.social-bookmark-wrapper {
  display: inline-block;
  float: inherit;
  overflow: hidden;
  padding: 0;
}
.navbar-custom .navbar-nav > *::before,.navbar-toggle  {
  display: none;
}
.navbar {
  border: 0 none;
  margin-bottom: 0;
  min-height: auto;
  padding-bottom: 6px;
  padding-top: 6px;
}
.navbar-custom .navbar-brand {
  margin-top: 0;
}
.mobile-menu-area {
  display: block;
}
.portfolio_area {
  padding-top: 80px!important;
}


}

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

	.work-item,
	.works-grid-3 .work-item,
	.works-grid-4 .work-item,
	.works-grid-5 .work-item {
		width: 100%;
	}

}


/* -------------------------------------------------------------------
Multi-columns-row
------------------------------------------------------------------- */

.multi-columns-row .first-in-row {
	clear: left;
}

.multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: left; }
.multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: left; }
.multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: left; }
.multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: left; }
.multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: left; }

@media (min-width: 768px) {

	.multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: left; }
}

@media (min-width: 992px) {

	.multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-md-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-md-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-md-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-md-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-md-1:nth-child(12n + 13) { clear: left; }
}

@media (min-width: 1200px) {

	.multi-columns-row .col-md-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-md-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-md-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-md-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-md-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-lg-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-lg-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-lg-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-lg-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-lg-1:nth-child(12n + 13) { clear: left; }

}















