/*reset*/
html, body {
	height: 100% !important;
}

.main-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	background-image: url('../img/spinner.svg');
	background-size: 100%;
	width: 80px;
	height: 80px;
	box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-ms-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-o-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	z-index: 999999;
}

.navbar-toggler {
	border-color: #fff;
	color: #fff;
}

.navbar-toggler i {
	font-size: 30px;
}

.row.col-spacing {
	margin-left: -25px;
	margin-right: -25px;
}

.row.col-spacing [class^="col-"] {
	padding-left: 25px;
	padding-right: 25px;
}

.overlay {
	background-color: #000;
	opacity: .50;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 192%;
}

/*article read*/
.article-read {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding: 20px;
	z-index: 99999;
	overflow: auto;
}

.article-read .article-read-inner {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	padding: 50px 0 100px 0;
	width: 70%;
}

.article-read .article-back {
	margin-bottom: 30px;
}

.article-read .article-back .btn {
	border-color: #999;
	color: #999;
	text-transform: uppercase;
	font-weight: 800;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	padding: 10px 25px;
	cursor: pointer;
	font-size: 14px;
}

.article-read .article-back .btn i {
	margin-right: 5px;
}

.article-read .article-back .btn:hover {
	background-color: #000;
	color: #fff;
}

.article-read .article-title {
	font-size: 30px;
	font-weight: 800;
}

.article-read .article-metas {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

.article-read .article-metas .meta {
	float: left;
	padding-right: 15px;
	font-size: 12px;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 1px;
}

.article-read .article-picture {
	width: 100%;
	margin-bottom: 20px;
}

.article-read .article-picture img {
	width: 100%;
}

.article-read .article-content {
	line-height: 28px;
}
/*navbar*/
.navbar.main-navbar {
	position: fixed;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 999;
    background: #312e33;
    top: 0;
}

.navbar.main-navbar.bg-dark {
	background-color: #000 !important;
}

.navbar.main-navbar .navbar-brand {
	width: 110px;
	padding: 0;
	line-height: 0;
}

.navbar.main-navbar .navbar-brand img {
	width: 100%;
}

.navbar.main-navbar .nav-link {
	color: #fff;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 1px;
	color: rgba(255,255,255,.75);
	position: relative;
	transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}

.navbar.main-navbar .nav-link:after {
	content: ' ';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	height: 2px;
	width: 0;
	background-color: #fff;
	transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}

.navbar.main-navbar .nav-link:hover {
	color: #fff;
}

.navbar.main-navbar .nav-link:hover:after {
	width: 20px;
}

.navbar.main-navbar .nav-item.active .nav-link {
	color: #fff;
}

.navbar.main-navbar .nav-item.active .nav-link:after {
	width: 20px;
}

.navbar.main-navbar .form-inline {
	margin-left: 15px;
}

.navbar.main-navbar .form-inline .btn {
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-width: 2px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
	letter-spacing: 1px;
	background-color: transparent;
	border-color: #fff;
}

.navbar.main-navbar .form-inline .btn:hover {
	background-color: #fff;
	color: #000;
	opacity: 1;
}

/*hero*/
.hero {
	height: 91vh;
    color: #000;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 85px;
}
.overlayss .overlay, 
.hero .overlay {
	opacity: .10;
}

.hero .text {
	position: absolute;
	/*top: 60%;
	left: 300px;
	right: 300px;
	transform: translateY(-60%);
	-webkit-transform: translateY(-60%);
	-moz-transform: translateY(-60%);
	-o-transform: translateY(-60%);
	-ms-transform: translateY(-60%);
	 z-index: 1; */
	text-align: center;
}

.hero .text h1 {
	margin: 0;
	font-size: 50px;
	font-weight: 300;
	letter-spacing: .5px;
	line-height: 1.3em;
	margin-bottom: 15px;
}

.hero .text h1 .bold {
	font-weight: 600;
}

.hero .text p.lead {
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	line-height: 0;
	font-size: 16px;
}

.hero .cta {
	margin-top: 0;
}

.hero .cta .btn {
	text-transform: uppercase;
	letter-spacing: 1.3px;
	font-weight: 600;
	color: #000;
    font-size: 12px;
    border: 1px solid #000;
    padding: 15px 8px;
    border-radius: 70px;
    box-shadow: none;
    outline: none;
}

.hero .cta .btn.btn-primary {
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	padding-left: 30px;
	padding-right: 30px;
}

.hero .cta .btn.btn-link {
	color: #fff;
}

.hero .cta .btn.btn-link i {
	margin-right: 5px;
}

.hero .cta .link {
	margin-top: 15px;
}

.hero .cta .link a {
	color: #fff;
	font-size: 12px;
	text-decoration: underline;
	text-transform: none;
	color: #999;
	font-weight: 600;
	letter-spacing: .3px;
}

/*section*/
section {
	position: relative;
}

section.bg-grey {
	background-color: #f9f9f9;
}

section.bg-reverse {
	background-color: #000;
}

section.bg-overlay {
	background-color: rgba(0,0,0,0.85);
}

section.padding {
	padding: 100px 0;
}

section#blog {
	padding-bottom: 70px;
}



section .section-lead {
	font-size: 18px;
	font-weight: 200;
	margin-top: 15px;
}

section .section-body {
	margin-top: 60px;
}

section.callout {
	padding: 50px 0;
}

section.callout .cta {
	text-align: right;
}

section.callout .cta .btn {
	padding: 15px 35px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 2px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	-ms-border-radius: 0;
	-moz-border-radius: 0;
	border-width: 2px;
	border-color: #000;
	color: #000;
}

section.callout .cta .btn:hover {
	background-color: #000;
	color: #fff;
}

section.callout h3 {
	margin: 0;
}

/*list*/
.list-item {
	display: flex;
	display: -webkit-flex;
	width: 100%;
}

.list-item.no-spacing {
	padding-bottom: 0;
}

.list-item .icon,
.list-item .desc {
	flex: 1;
	-webkit-flex: 1;
}

.list-item .icon {
	flex: 0 0 65px;
	-webkit-flex: 0 0 65px;
	font-size: 45px;
	line-height: 0;
	color: #ccc;
}

.list-item .desc h2 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: .5px;
	margin-bottom: 10px;
}

.list-item .desc p {
	line-height: 28px;
	font-size: 16px;
	margin-bottom: 0;
}

.list-item .desc .more {
	display: inline-block;
	margin-top: 10px;
}

/*article*/
article.card {
	border: none;
	box-shadow: 0 0 40px rgba(0,0,0,.05);
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,.05);
	-moz-box-shadow: 0 0 40px rgba(0,0,0,.05);
	-ms-box-shadow: 0 0 40px rgba(0,0,0,.05);
	-o-box-shadow: 0 0 40px rgba(0,0,0,.05);
	margin-bottom: 60px;
}

article.card .card-img-top {
	height: 100%;
}

article.card .card-title {
	font-size: 20px;
	line-height: 28px;
}

article.card .card-title a {
	color: #000;
	text-decoration: none;
}

article.card .card-title a:hover {
	opacity: .8;
}

article.card .card-text {
	color: #666;
	line-height: 26px;
}

article.card .card-subtitle {
	font-size: 14px;
	color: #666;
}

article.card .card-subtitle a {
	color: #666;
	border-bottom: 1px dotted #666;
	text-decoration: none;
}

article.card .card-more {
	text-transform: uppercase;
	font-weight: 800;
	text-transform: 2px;
	color: #000;
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
}

article.card .card-more i {
	margin-left: 5px;
}

/*subscribe*/
.subscribe {
	position: relative;
}

.subscribe .form-control,
.subscribe .btn {
	height: 45px;
}

.subscribe .form-control {
	border-width: 2px;
	margin-right: 1px;
	border-color: transparent;
	box-shadow: 0 0 40px rgba(0,0,0,.05);
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,.05);
	-moz-box-shadow: 0 0 40px rgba(0,0,0,.05);
	-o-box-shadow: 0 0 40px rgba(0,0,0,.05);
	padding: 30px 25px;
	padding-right: 130px;
	border-radius: 30px !important;
	-webkit-border-radius: 30px !important;
	-moz-border-radius: 30px !important;
	-o-border-radius: 30px !important;
	-ms-border-radius: 30px !important;
	display: inline-block;
	width: 100%;
}

.subscribe .form-control:hover {
	border: 2px solid #ddd;
}

.subscribe .form-control:focus {
	border-color: #0069d9;
}

.subscribe .btn {
	padding-left: 20px;
	padding-right: 20px;
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
}

/*projects*/
.projects-picture {
	width: 250px;
	margin: 0 auto;
}

.projects-picture img {
	width: 100%;
}

.projects-details {
	color: #fff;
}

.projects-details .projects-badge {
	padding: 6px 14px;
	border: 2px solid #fff;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 20px;
	display: inline-block;
}

.projects-details .projects-title {
	line-height: 45px;
}

.projects-details .projects-description {
	line-height: 28px;
	margin-top: 20px;
	color: #fff;
}
.projects-details .projects-description.color-yellow {
	    color: yellow;
}

.projects-details .projects-cta {
	margin-top: 40px;
}

.projects-details .projects-cta .btn-primary {
	background-color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	color: #000;
	border-color: #fff;
	padding: 13px 20px;
	text-transform: uppercase;
	font-weight: 800;
}

.projects-details .projects-cta .btn-primary:hover {
	background-color: transparent;
	color: #fff;
}

.projects-details .projects-cta .btn-link {
	color: #999;
}

/*contact*/
form.contact .form-control {
	margin-bottom: 5px;
	height: 50px;
	padding: 15px;
	border-color: transparent;
	box-shadow: 0 0 10px rgba(0,0,0,.01);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.01);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.01);
	-o-box-shadow: 0 0 10px rgba(0,0,0,.01);
	-ms-box-shadow: 0 0 10px rgba(0,0,0,.01);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	-ms-border-radius: 0;
	border-width: 2px;
}

form.contact .form-control:focus {
	border: 2px solid #000;
}

form.contact textarea.form-control {
	height: 220px;
}

form.contact .btn-primary {
	padding: 15px 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	font-size: 14px;
	cursor: pointer;
	border-color: #000;
	color: #fff;
	background-color: #000;
	border-width: 2px;
}

form.contact .btn-primary:hover {
	background-color: transparent;
	color: #000;
}

.contact-text {
	line-height: 28px;
}

.contact-icon {
	margin: 0;
	margin-bottom: 30px;
	padding: 0;
}

.contact-icon li {
	display: inline-block;
	width: 100%;
	margin-bottom: 7px;
}

.contact-icon i {
	font-size: 26px;
	width: 40px;
	float: left;
}

.contact-icon div {
	margin-left: 35px;
}

/*footer*/
footer {
	padding: 80px 0 60px 0;
	text-align: center;
	background-color: #000;
	color: #fff;
}

footer figure {
	width: 120px;
	margin: 0 auto;
	margin-bottom: 30px;
}

footer figure img {
	width: 100%;
}

footer p {
	font-weight: 600;
	letter-spacing: 1.5px;
	font-size: 12px;
	color: #777;
	margin-bottom: 10px;
	text-transform: uppercase;
}

footer i {
	color: #ff0000;
}




















/* ********************************************************************** */

.card-flex{padding:10px 0px 0;}

#founders .card-flex .row {
	justify-content: center;
}
#founders .card-flex .item {
	height: 100%;
}

/* blog post css */
.blog-post {
  position: relative;
  transition: .4s all ease-in;
  width: 60%;
margin: auto;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(40,42,54,.1);
}

.blog-post:hover{transform:translateY(-10px);}



.blog-post a.blog-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post a.blog-img img{
	width:100%;
	height:auto;
}
/* .blog-post a.blog-img span.blog-icon{
  color: #5567ee;
  font-size: 18px;
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  z-index: 1;
  opacity: 0;
  visibility: visible;
  transition: all 0.3s ease-in-out 0s;
} */
.blog-post a.blog-img:hover span.blog-icon{
  visibility: visible;
  opacity: 1;
}
/* .blog-post a.blog-img span.blog-icon:hover{
  color: #fff;
  background-color: #5567ee;
} */
.blog-post .blog-post-content {
    text-align: center;
    position: relative;
    z-index: 1;
    /* margin: 80px; */
    width: 88%;
    margin: auto;
    /*margin-top: -75px;*/
    margin-bottom: 5px;
    padding: 5px 13px;
}
/* .blog-post span.date-time{
  position: absolute;
  
  left: 15px;
  
  top: 15px;
  font-size: 14px;
  color: #fff;
  background-color: #5567ee;
  line-height: 1;
  padding: 8px 15px;
  display: block;
  font-weight: 400;
  
} */
.blog-post .blog-post-content a.blog-title {
    color: #323232;
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.blog-post .blog-post-content p{
  font-size: 14px;
  margin-top: 2px;
  color: #999;
  line-height: 18px;
  margin-bottom: 0;
}
/* .blog-post .blog-post-content a.btn{
  margin-top: 22px;
} */





#lade-Main-1 .Lade_Inner .drugg-section{
	padding: 20px 0;
}

#lade-Main-1 .Lade_Inner .ladr-heding-1,
#lade-Main-1 .Lade_Inner .drugg-section h5{
	font-weight: 400;

}
#lade-Main-1 .Lade_Inner .drugg-section h5{
	font-size: 19px;
}
#lade-Main-1 .Lade_Inner .ladr-heding-1{
	margin-top: 25px;
}



.card-title {
	color: #262626;
	font-size: 1.5em;
	line-height: normal;
	font-weight: 700;
	margin-bottom: 0.5em;
  }
  
  .small-desc {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5em;
	color: #452c2c;
  }
  
  .small-desc {
	font-size: 1em;
  }
  
  .go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ebfaff, #83bacbde);
    border-radius: 0 4px 0 32px;
}
  
  .go-arrow {
	margin-top: -4px;
	margin-right: -4px;
	color: white;
	font-family: courier, sans;
  }
  
  .card.card-last_1 {
    display: block;
    position: relative;
    max-width: 100%;
    max-height: 320px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec85, #f9f9f9);
    font-family: Arial, Helvetica, sans-serif;
}
  
.card.card-last_1:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(186deg, #88c5cb, #51595a75);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}
  
  .card.card-last_1:hover:before {
	transform: scale(28);
  }
  
  .card.card-last_1:hover .small-desc {
	transition: all 0.5s ease-out;
	color: rgba(255, 255, 255, 0.8);
  }
  
  .card.card-last_1:hover .card-title {
	transition: all 0.5s ease-out;
	color: #ffffff;
  }

#lade-Main-1 .ladr_wors_img h2 {
	margin-top: 60px;
	font-size: 22px;
}
#lade-Main-1 .ladr_wors_img img{
	width: 100%;
	margin-top: 20px;
}

.Connect566 .section-title {
	font-size: 26px;
    margin-bottom: 15px;
}
.Connect566 p {
	margin-bottom: 10px;
}
.Connect566 p b {
	font-weight: 500;
}
  
/* ********************************************************************************************************* */
@media(max-width: 991px){
  .blog-post .blog-post-content p{
    margin-top: 1px;
  }
  .blog-post .blog-post-content a.btn {
    margin-top: 12px;
  }
  .blog-post span.date-time{
    font-size: 12px;
  }
  .blog-post .blog-post-content a.blog-title{
    font-size: 16px;
  }
  #Approach.height-100 {
	      height: auto;
    display: block;
    padding-bottom: 110px;
  }
  .hero .text h1 .bold:last-child {
	  line-height: 1.3em;
  }
}
@media(max-width: 767px){
  .blog-post .blog-post-content{
    margin: 0;
    margin-top: 0;
    padding: 15px;
  }
  .blog-post .blog-post-content p{
    font-size: 14px;
    margin-top: 7px;
  }
  .blog-post .blog-post-content a.btn{
    margin-top: 15px;
  }
}

.btn-style2, .btn-style2-medium {
    background-color: #333;
    border: 2px solid #333;
}
.btn-style2 {
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    border-radius: 0;
    line-height: 1;
}
.btn-style2:hover{color:#000; background:transparent;}

section#project {
    background-position: center !important;
	    background-repeat: no-repeat;
    background-size: cover;
}
#features .section-body .card-body {
    min-height: 275px;
}
.card-body {
    min-height: 270px;
}
/* #features card:hover img.card-img-top {
    opacity: 0.7;
	transition: all .15s ease-in-out;
} */


#lade-Main-1{
	margin: 60px 0;

}

  /* ***************** */


@media screen and (max-width: 1024px) {
	.hero .text {
		left: 150px;
		right: 150px;
	}
}
@media screen and (max-width: 768px) {
	.hero .text {
		left: 0;
		right: 0;
		margin: auto;
		max-width: 540px;
		position: relative;
	}
	.hero .text h1 {
		font-size: 26px !important;
	}
	.hero .text h1 .bold:last-child {
		    font-size: 40px !important;
	}
	.same-title {
		font-size: 40px !important;
    margin-bottom: 25px !important;
	}
	.navbar.main-navbar .navbar-collapse {
		margin-top: 20px;
		margin-bottom: 20px;
		background: #242830;
		padding: 25px 12px;
	}
	.navbar.main-navbar .navbar-nav .nav-item a {
		display: inline-block;
		padding: 10px 0;
	}
	.navbar.main-navbar .navbar-nav .nav-item a:after {
		display: none;
	}
	.navbar.main-navbar .form-inline {
		margin-left: 0;
	}
	.blog-post-content {
		min-height: 210px;
	}
	#lade-Main-1 .Lade_Inner .card.card-last_1 {
		margin: 0 !important;
	}
	#lade-Main-1 .Lade_Inner .card-title {
		font-size: 1.2em !important;
	}
	#lade-Main-1 .Lade_Inner .small-desc {
		font-size: 15px !important;
	}
	.callout h3{
		font-size: 1.35rem;
	}
	#lade-Main-1 .Lade_Inner .drugg-section h5 {
		font-size: 17px;
	}
	#lade-Main-1 .Lade_Inner .ladr-heding-1 {
		font-size: 1.2rem;
	}
	footer {
		padding: 45px 0 40px 0;
		text-align: center;
		background-color: #000;
		color: #fff;
	}
	section.callout .cta .btn {
		padding: 15px 20px;
	}
	.hero, 
	.height-100 {
		height: auto !important;
		display: block !important;
		padding: 100px 0 !important;
		padding-top: 50px !important;
	}
	#founders.height-100 .card-flex {
		padding: 20px 0px;
	}
	.cta .btn, 
	.hero .cta .btn {
		    font-size: 14px !important;
	}

}

@media screen and (max-width: 576px) {
	
	.hero .text h1 .bold:last-child {
		font-size: 30px !important;
	}
	.hero .text p.lead {
		line-height: normal;
	}
	.projects-picture {
		margin-bottom: 40px;
	}
	.maps {
		margin-bottom: 40px;
		width: 100%;
		height: 250px;
	}
	section.callout .text {
		text-align: center;
		margin-bottom: 20px;
	}
	section.callout .cta {
		text-align: center;
	}
	.row.col-spacing {
		margin-left: -15px;
		margin-right: -15px;
	}
	.row.col-spacing [class^="col-"] {
		padding-left: 15px;
		padding-right: 15px;
	}
	.list-item {
		padding-bottom: 40px;
	}
	.same-title {
		font-size: 32px !important;
		margin-bottom: 25px !important;
	}
	.blog-post {
		width: 100%;
		display: flex;
		padding: 15px;
		margin-bottom: 15px;
	}
	.blog-post a.blog-img {
		    display: block;
	}
	.blog-post a.blog-img img {
		    width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.blog-post .blog-post-content {
		    width: 100%;
		text-align: left;
		box-shadow: none;
		padding-left: 20px;
	}
}
@media screen and (max-width: 483px) {
	.blog-post {
		width: 100%;
		display: block;
		padding: 15px;
		margin-bottom: 15px;
	}
	.blog-post a.blog-img {
		    display: block;
	}
	.blog-post a.blog-img img {
		    width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.blog-post .blog-post-content {
		    width: 100%;
		text-align: left;
		box-shadow: none;
		padding-left: 15px;
	}
}
@media screen and (max-width: 414px) {
	
	#features .item {
		margin-bottom: 40px;
	}
	section.padding {
		padding: 45px 0;
	}
	/* section .section-title,
	 .padding h2
	 #lade-Main-1 .Lade_Inner h2{
		text-align: center;
		font-size: 28px;
		margin-bottom: 15px;
	} */


	#features h2,
	.Structure-heading h2,
	#blog h2,
	.overlay .projects-details .projects-title,
	#lade-Main-1 .Lade_Inner h2,
	#contact .section-title.text-center{
	text-align: center;
		font-size: 28px;
		margin-bottom: 15px;
}
#contact .contact-text{
	font-size: 17px;
}
.projects-details .projects-title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 15px;
}
#lade-Main-1 .Lade_Inner .ladr-heding-1{
	text-align: center;
	font-size: 17px;
}
#lade-Main-1 .Lade_Inner .drugg-section h5 {
	font-size: 15px;
}

#lade-Main-1 .three-cards_3 {
	margin-top: 25px;
}
#lade-Main-1 .three-cards_3 .card.card-last_1 {
	margin: 10px 0 !important;
}
section .section-body {
	margin-top: 27px;
}
#contact .contact-icon {
	display: flex;
}
section.callout {
	padding: 25px 0;
}
.callout h3 {
	font-size: 20px;
}
section.callout .cta .btn {
	padding: 12px 12px;
	font-size: 12px;
}
}
@media screen and (max-width: 370px) {
	#hero {
		height: 75%;
	}
	.hero .text h1 {
		font-size: 29px;
	}
}

/* @media screen and (max-width: 320px) {
	.article-read .article-read-inner {
		width: 80%;
	}
	
} */

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-toggle::after {
	border-top: none;
	border-right: none;
	border-left: none;
}

#Approach ul li {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 15px;
}

.cta {
    text-align: center;
    position: absolute;
    bottom: 5%;
	    width: 100%;
}
.cta .btn {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 600;
    color: #000;
    font-size: 12px;
    border: 1px solid #000;
    padding: 15px 8px;
    border-radius: 70px;
    box-shadow: none;
    outline: none;
}
.value-creation-section .cta .btn {
	color: #fff;
    border: 1px solid #fff;
}

.height-100 {
	height: 91vh;
	    padding: 40px 0;
}
.section-text-center {
	display: flex;
	align-items: center;
}

.same-title {
	    font-size: 45px;
		margin-bottom: 25px;
}
#founders .same-title {
	    font-size: 45px;
		margin-bottom: 0px;
}
#founders.height-100 {
	
	    padding: 30px 0;
}
p {
	    line-height: 26px;
}

.overlayss {
	    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-height: 850px) {
	#Approach.height-100, 
	#founders.height-100 {
		height: auto;
		display: block;
		padding-bottom: 110px;
	}
}
@media (max-height: 700px) {
	.hero, .height-100 {
		height: auto !important;
		display: block !important;
		padding: 100px 0 !important;
		padding-top: 50px !important;
	}
	.hero .text {
		left: 0;
		right: 0;
		margin: auto;
		max-width: 540px;
		position: relative;
	}
	.hero .text h1 .bold:last-child {
		line-height: 1.3em;
	}
}

#Overview p {
    line-height: 36px;
    font-size: 24px;
}

#Approach .same-title {
	font-size: 26px;
}

.flip-box {
  background-color: transparent;
  height: 100%;
}
.flip-box-inner {
  position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.flip-box-front,
.flip-box-back {
      position: relative;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(40,42,54,.1);
}
.flip-box-back {
  transform: rotateY(180deg);
    text-align: center;
    top: 0;
    position: absolute;
    z-index: 1;
    margin: auto;
    padding: 20px 15px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.flip-box-back .blog-title {
	color: #323232;
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.flip-box-back .blog-desc {
	font-size: 14px;
    margin-top: 10px;
    color: #999;
    line-height: 24px;
}


@media screen and (max-width: 576px) {
	.flip-box {
		display: inline-block;
		    margin-bottom: 20px;
	}
	.flip-box-clun {
		text-align: center;
	}
}