
/* ========================================
   Owl Carousel CSS File
   ========================================*/
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: inline-flex;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  padding: 0 15px;
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: inline-block;
  /*width: 100%;*/
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}


/* owl dot */
.owl-theme .owl-dots {
  display: none;
  text-align: left;
  padding-left: 4px;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    margin: 4px 1px 10px 6px;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
}


/* owl Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div {
    background: #ff5e14;
    text-align: center;
    display: block;
    outline: 0;
    width: 34px;
    text-align: center;
    line-height: 34px;
    height: 34px;    
    color: #fff;
    top: 50%;
    font-size: 0;
    margin-top: -20px; 
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;     
}
.owl-theme .owl-controls .owl-nav div:hover {
  background: #333;
}
.owl-theme .owl-controls .owl-nav div.owl-prev {
    position: absolute;
    top: 165px;
    right: 59px;
    display: block;  
}
.owl-theme .owl-controls .owl-nav div.owl-prev:before,
.owl-theme .owl-controls .owl-nav div.owl-next:before {
    font-family: FontAwesome;    
    font-size: 20px;
    font-weight: 600;
    color: #fff; 
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}  

.owl-theme .owl-controls .owl-nav div.owl-prev:before {
   content: "\f104"; 
}
.owl-theme .owl-controls .owl-nav div.owl-prev:hover:before,
.owl-theme .owl-controls .owl-nav div.owl-next:hover:before {    
    color: #fff;
}
.owl-theme .owl-controls .owl-nav div.owl-next {
  position: absolute;
  top: 165px;
  right: 20px;
  display: block;
}
.owl-theme .owl-controls .owl-nav div.owl-next:before {    
    content: "\f105";    
}  

.ttm-boxes-spacing-5px.owl-carousel .owl-item {
    padding-right: 2.5px;
    padding-left: 2.5px;
    margin-bottom: 5px;
}




@media (max-width: 1299px){
  
}
@media (max-width: 1199px){

}
@media (max-width: 991px){
  
}
@media (max-width: 768px){
  .owl-theme .owl-controls .owl-nav div.owl-prev {
      /* display: none !important; */
  }
  .owl-theme .owl-controls .owl-nav div.owl-next {
      /* display: none !important; */
  }
}
.ttm-boxes-spacing-10px.owl-carousel .owl-item {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 10px;
}

/* testimonial-slide */
.testimonial-slide.owl-theme .owl-controls .owl-dots {
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    line-height: 1;
}
.testimonial-slide.owl-theme .owl-dots .owl-dot span {
        width: 12px;
    height: 10px;
    background-color: rgba(255, 255, 255,.1);
    transition: all 0.5s ease 0s;
    border: none;
}
.testimonial-slide.owl-theme .owl-dots .owl-dot.active span{
    width: 27px;
    border-radius: 5px;
    background-color: #09162a;
}
.ttm-bgcolor-skincolor .testimonial-slide.owl-theme .owl-dots .owl-dot.active span,
.ttm-bgcolor-darkgrey .testimonial-slide.owl-theme .owl-dots .owl-dot.active span{
    background-color: #fff;
}
.testimonial-slide.owl-theme.ttm-bgcolor-white .owl-dots .owl-dot.active span{background-color: #e9e9e9!important;}
/* project-slide */
.project-slide.owl-carousel .owl-item{padding: 0;}
.project-slide.owl-theme .owl-dots .owl-dot span{
    border: 2px solid #fff;
    width: 11px;
    height: 11px;
    margin: 0 5px;
}
.project-slide.owl-theme .owl-dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.project-slide.owl-theme .owl-dots .owl-dot.active span,
.project-slide.owl-theme .owl-dots .owl-dot:hover span{background-color: #fff!important;}

/************/
.ttm-row {
  padding: 70px 0 60px;
}
.ttm-row.bottomzero-padding-section.ttm-bgcolor-skincolor.ttm-bg.ttm-bgimage-yes.bg-img5.clearfix {
  margin-top: -61px;
}
.section-title.style2 {
  margin-bottom: 40px;
}
.section-title {
  position: relative;
  margin-bottom: 50px;
}
.section-title.style2 .title-header, .section-title.style2 .title-desc, .section-title.style2 .title-desc2 {
  display: table-cell;
  vertical-align: middle;
}
.section-title.style2 .title-header {
  width: 40%;
  padding-right: 50px;
  margin-bottom: 0;
}
.section-title.style2 .title-desc, .section-title.style2 .title-desc2 {
  display: table-cell;
  vertical-align: middle;

}

.section-title .title-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 15px;
  color: #8a8a8a;
	padding-left: 1em;
}
.section-title .title-desc2 {
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
  color:#b8b8b8;
	padding-left: 3em;
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey {
  color: #1e2637 !important;
  border-color: #1e2637;
}
.section-title.style2 .title-header::after {
  content: "";
  left: 13em;
  height: 90%;
  position: absolute;
  top: 10%;
  width: 1px;
  border-right-width: 1px;
  background-color: #cacfd7;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
/* ===============================================
    13.featured-imagebox ( contents with image)
------------------------*/
.featured-imagebox .featured-thumbnail{position: relative;overflow: hidden;}


/*  Team  */
.featured-imagebox-team{position: relative;overflow: hidden; margin: 0.5em;}
.featured-imagebox-team:hover .featured-thumbnail img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}
.featured-imagebox-team.style1 .featured-content{
    text-align: center;
    position: relative;
    z-index: 2;
   margin: -25px 30px 5px;
   padding: 18px 3px 22px;
    background-color: #fff;
    border-bottom: 5px solid transparent;
    -webkit-transition: .5s cubic-bezier(.3,.57,.55,1);
    transition: .5s cubic-bezier(.3,.57,.55,1);
}
.featured-imagebox-team .social-icons{
    position: absolute;
    top: 0;
    left: -40px;
    right: auto;
    padding: 10px;
    margin-top: 0;
    opacity: 0;
    z-index: 9;
    background-color: #000;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}
.featured-imagebox-team ul.social-icons li{
	display: block;line-height: 1.2em;
font-size: 1em;
font-weight: 500;
	margin-top: 0.5em;
text-align: center;}
.featured-imagebox-team ul.social-icons a {
    font-size: 14px;
    color: #fff;
    position: relative;
}
.featured-imagebox-team:hover .social-icons{opacity: 0.7;left: 0;width: 100%;color: #fff;
font-weight: 700;
font-size: 1.1em;
 height: 40%;
top: 64%;
z-index: 1;}
.featured-imagebox-team .featured-content p.category{ margin-bottom: 0; color: inherit;letter-spacing: -0.03em;line-height: 1.4em; }
/*  style2  */
.featured-imagebox-team.style2 .ttm-box-view-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    text-align: center;
    opacity: 0;
    transition: opacity .5s;
    background: linear-gradient(to bottom,rgba(4,62,76,0) 0%,rgba(38,48,69,.9) 100%);
    transition-property: top,opacity;
}
.featured-imagebox-team.style2:hover .ttm-box-view-overlay{opacity: 1;}
.featured-imagebox-team.style2 .featured-content{
    position: absolute;
    transition-duration: 0.5s;
    transform: translateY(130px);
    color: #fff;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
}
.featured-imagebox-team.style2:hover .featured-content{
    top: 50px;
}
.featured-imagebox-team.style2 .featured-title h5 a{color: #fff;}
.ttm-bgcolor-darkgrey .ttm-btn:hover.btn-inline.ttm-btn-color-skincolor{
    background-color: transparent;
    color: #fff;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #c62a73 /*iman*/ !important;
padding: 12px 20px;
border: 1px solid #c62a73 /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-darkgrey:hover{
    background-color: #c62a73 /*iman*/;
    color: #fff !important;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-white{
    color: #fff!important;
    border-color: #fff;
    padding: 12px 20px;/*iman*/
border: 1px solid #eee /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-white:hover{
    background-color: #c62a73; /*iman*/
    color: #fff !important;/*iman*/
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-green{
    color: #fff!important;
    border-color: #fff;
    padding: 12px 20px;
border: 1px solid #8f9390;
	background-color: #ff5a3c;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-green:hover{
    background-color: #fcc30b; /*iman*/
    color: #fff !important;/*iman*/
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-green i{color: #fff!important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-fuccia{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #fff !important;
padding: 12px 20px;
	 background-color: #c62a73 /*iman*/;
border: 1px solid #fff;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-fuccia:hover{
    background-color: #f6ba42;color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-orange{
	color: #fff !important;padding: 12px 20px; background-color:#2553a8;border: 1px solid #fff;}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-orange:hover{
    background-color: #ff5a3c;  color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow{
	color: #fff !important;padding: 12px 20px;	 background-color:#f6ba42;border: 1px solid #fff;color: #333 !important;}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow:hover{
    background-color: #ff5a3c;  color: #fff !important;}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow2{
    /*color: #1e2637!important;
    border-color: #1e2637;*/
	color: #ff5a3c /*iman*/ !important;
padding: 12px 20px;
border: 1px solid #ff5a3c /*iman*/;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-yellow2:hover{
    background-color: #ff5a3c /*iman*/;
    color: #ff5a3c !important;
}

.ttm-btn.ttm-btn-style-border.ttm-btn-color-default {
  color: #da488d !important;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #fff;
}
.ttm-btn.ttm-btn-style-border.ttm-btn-color-default:hover{
    background-color: #d5d4d4 !important;
color: #fff !important;
}


/**************************/
.ttm-row section {
  display: block;
}
 .featured-imagebox-team .social-icons {
  background-color: #2d4a8a;
}

.featured-imagebox-team .social-icons {
  position: absolute;
  top: 0;
  left: -40px;
  right: auto;
  padding: 10px;
  margin-top: 0;
  opacity: 0;
  z-index: 9;
  background-color: #043d72;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}
.social-icons {
  list-style: none;
  margin: 0;
    margin-top: 0px;
  padding: 0;
  font-size: 15px;
}

.featured-imagebox-team.style1:hover .featured-content {
  border-color:#f6ba42 !important;
	/*border-color: #ff5a3c !important;*/
}
.featured-title h5 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0px;

}

.featured-title h5:hover {color:#2d4a8a;}
@media (min-width: 768px){
.text-md-right {
  text-align: right !important;
}
}

/********
.neighbour-apartments-img img {
  height: 470px;
}*/
/********* Discover ************/

.portfolio-area {
  position: relative;
	padding: 4em;
  z-index: 2;
}
.portfolio-area::before {
  min-height: 600px;
	height:100% !important;
  content: "";
  height: 40%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background-color: #132e6b;
  position: absolute;
 /* background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 20%, transparent 10%), radial-gradient(circle, rgba(255, 255, 255, 0.05) 20%, transparent 10%);*/
  background-size: 10px 10px;
  background-position: 0 0, 0 0;
}
.grey-color { color: #bfb9b9 !important;}
.yellow {  color: #f6ba42 !important;}

.portfolio-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.portfolio-wrapper .portfolio-content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, black 100%);
  padding: 54px 40px;
  opacity: 0;
  transition: all ease-out 0.25s;
}
.portfolio-wrapper .portfolio-content h4, .portfolio-wrapper .portfolio-content .custom-badge {
  transform: translateY(20px);
  opacity: 0;
  transition: all ease-out 0.25s;
}
.portfolio-wrapper .portfolio-content h4 {
  font-size: 25px;
line-height: 30px;
  font-weight: bold;
  margin-top: 18px;
}
.portfolio-wrapper .portfolio-content h4 a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 991.98px) {
  .portfolio-wrapper .portfolio-content h4 {
    font-size: 27px;
    line-height: 36px;
  }
}
.portfolio-wrapper .portfolio-img img {
  width: 100%;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
}
.portfolio-wrapper:hover .portfolio-content {
  opacity: 1;
}
.portfolio-wrapper:hover .portfolio-content h4, .portfolio-wrapper:hover .portfolio-content .custom-badge {
  transform: translateY(0);
  opacity: 1;
  transition: all ease-out 0.35s;
color:	#f6ba42;
}
.portfolio-wrapper:hover .portfolio-content h4 {
  transition-delay: 0.1s;
}
.portfolio-wrapper:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-wrapper.active-text .portfolio-content {
  opacity: 1;
}
.portfolio-wrapper.active-text .portfolio-content h4, .portfolio-wrapper.active-text .portfolio-content .custom-badge {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-menu button, .portfolio-menu a {
  background-color: transparent;
  border-color: transparent;
  color: #fff;
  padding: 4px 15px;
  display: block;
  margin: 5px;
}
.portfolio-menu button:hover, .portfolio-menu a:hover {
  text-decoration: none;
}
.portfolio-menu button.active, .portfolio-menu a.active {
  background-color: rgba(255, 255, 255, 0.12);
}

.menu-dark.portfolio-menu button, .menu-dark.portfolio-menu a {
  color: #798191;
  font-weight: 600;
}
.menu-dark.portfolio-menu button.active, .menu-dark.portfolio-menu a.active {
  background-color: #3d72fc;
  color: #fff;
}

.justify-content-lg-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 0 10px;
}

.text-white {
  color: #fff !important;
}

div.discover {  
  display: none;
  position: relative;
  top: 3em;
  left: 0;
	padding: 0;
}
div.discover {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
}
.discover ul { padding-left: 0;}
.discover figure, .discover ul li {  margin: 0;}

.col-lg-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
/* Activities  */

.pb-90 { padding-bottom: 5.625rem;}
.w-100 { width: 100% !important;}
.col-md-4 { flex: 0 0 auto;  width: 33%;}

/*===== Sec Title Style 1 =====*/

.sec-title-inner {  position: relative; z-index: 1;}
.sec-title-inner > h2 {
  font-size: 4.375rem;
 /* font-weight: 800;
  letter-spacing: -3.5px;*/
  position: relative;
}
.sec-title-inner > h2 + span {margin-top: -5px;}
.sec-title-inner > span { color: #8b8b8b;  font-size: 1.0625rem;}
.sec-title-inner > h2 i {
  font-style: normal;
  color: #ecebeb;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  font-size: 9.5625rem;
  font-weight: 700;
  opacity: .65;
}
.fixed-bg + div .sec-title-inner > h2 i {color: #fff;}
.bg-color34 .sec-title-inner > h2 i {color: #273054;}
.sec-title.style2 .sec-title-inner > h2 {font-size: 3.75rem;}

.position-relative {  position: relative !important;}
.overflow-hidden { overflow: hidden !important;}

.post-style3 > i {
  left: 0;
  bottom: 0;
  opacity: 0;
  top: 80%;
}
.bg-color27 { background-color: #16bcbf;}
.bg-color8 { background-color: #442a72;}
.bg-color28 { background-color: #026fa0;}
.bg-color29 { background-color: #80d77a;}

.bg-color1 { background-color: #eaae37f2;}
.bg-color2 { background-color: #f6ba42;}/*#2197bb*/
.bg-color3 { background-color: #c62a73 ;}
.bg-color4 { background-color: #e8563b;}
.bg-color5 { background-color: #164ca2;}
.bg-color6 { background-color: #ff5a3c;}



.w-100 { width: 100% !important;}
.position-absolute { position: absolute !important;}
.mrg > div { padding: 0;}

/*===== Blog Style 3 =====*/

.post-style3 > i {
  left: 0;
  bottom: 0;
  opacity: 0;
  top: 80%;
}
.post-style3:hover > i { opacity: .7; top: 0;}
.post-info3 {
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5em 1.5em 0 2em;
  -webkit-transform: translateY(36.5%);
  -ms-transform: translateY(36.5%);
  -o-transform: translateY(36.5%);
  transform: translateY(36.5%);
}
.post-info3 > h3 {
  color: #fff;
  font-size: 1.5em;
  line-height: 3.125rem;
  max-width: 80%;
}
.post-info3 > i {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .95;
}
.post-info3 > p {
  color: #fff;
  font-size: 1em;
  line-height: 1.75rem;
  max-width: 90%;
  opacity: 0;
}
.post-info3 .post-meta {
  padding: 0;
  -webkit-border-radius:  0;
  border-radius: 0;
}
.post-info3 > h3 + .post-meta {margin-top: 0.625rem;}
.post-info3 > h3 a:hover, 
.post-info3 > h3 a:focus {
  color: #fff;
  opacity: .8;
}
.post-info3 .post-meta + p {margin-top: 0.875rem;}
.post-info3 > p + a {margin-top: 1.25rem;}
.post-info3 > a {
  display: inline-block;
  font-size: 1.75rem;
  color: #fff;
  opacity: 0;
}
.post-info3 > a:hover, 
.post-info3 > a:focus {opacity: .8;}
.post-style3:hover .post-info3 > p, 
.post-style3:hover .post-info3 > a {opacity: 1;}
.post-style3:hover .post-info3 > i {
  opacity: 0;
  bottom: -100%;
}
.post-style3:hover .post-info3 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.post-meta {
  display: inline-block;
  color: #fff;
  padding: 0.84375rem 0.9375rem;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Montserrat;
}

.post-style3.position-relative.overflow-hidden.w-100 {
  max-height: 400px;
}

/********* About Tabs ****************/

 .ttm-bgcolor-skincolor > .ttm-bg-layer{background-color: #2d4a8a;}
/*iman */ h4.text-theme-colored {
  color: var(--ltn__secondary-color);
  font-size: 1.45em;
}

/*** iman from here to the end **/

.bg-color31 {
  background-color: #1aac53;
}
.bg-color32 {
  background-color: #0089bc;
}
.w-100 {
  width: 100% !important;
}
.mid-container {
  max-width: 85.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.fixed-bg {
  background-attachment: scroll;
  background-size: cover;

  background-position: center;
  height: 100%;
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
/*===== Services Style 4 =====*/
.srv-info4 {padding: 2.125rem 3rem;} /*iman*/
.srv-info4 > h3 {
  font-size: 1.5em;
  color: #fff;
margin-bottom: 0.3em !important;
}
.srv-info4 > h3 + p {margin-top: 1.25rem;}
.srv-info4 > h3 a:hover { color:#060f1c;}
.srv-info4 > p {
  font-size: 1rem;
  color: #fff;
}
.srv-info4 > p + a {margin-top: 1.875rem;}
.srv-info4 > a {
  height: 3rem;
line-height: 3rem;
text-align: center;
width: 3rem;
color: #fff;
background-color: rgba(0,0,0,.2);
font-size: 1.5rem;
position: relative;
left: 91%;
top: -45%;
}
.d-inline-block:hover {background-color:#ee3364;}
.srv-info4.w-100.top {  padding-top: 1.8em;}
.srv-info4.w-100.bottom {padding-bottom: 1.65em; padding-top: 1.8em;}
.srv-info4 {text-align: center;}
/***** popup video******/



/**********/
@media (max-width: 991px){

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-right: 0;	padding-left: 0;}
	
.col-lg-4 {  -ms-flex: 0 0 100%;  flex: 0 0 100%;  max-width: 100%;}	
.pb-100 { padding-bottom: 10px;}
.pb-50 { padding-bottom: 30px;}
.pt-80 { padding-top: 40px;}
p { color: var(--ltn__paragraph-color); margin-bottom: 1em;}

.spacing-5 { padding: 30px 0px 30px 0;   padding-left: 0px;}
.p-l-3 {  padding-left: 2em !important;}	
#scrollUp i { line-height: 40px;}
#scrollUp { height: 40px; width: 40px;}	
.apply { text-transform: uppercase;	font-size: 1em !important;}
	
	
/*program*/	
	
.twoBLockSection .sectionRed, .twoBLockSection .sectionBlack, .twoBLockSection .blockSection, .twoBLockSection .sectionLightRed {
  width: 100%;}	
.flexRow {display: block;}	
.twoBLockSection .innerWrap { padding: 40px 30px;}
.aboutSection .programFinder .programFinderLeft, .aboutSection .programFinder .programFinderRight {width: 100%;}	
.aboutSection h4 { text-align: center;font-size: 1.8em;}
.detailWrap p { font-size: 1em;	margin-top: 0;}	
.apply { margin-top: 0.5em;}	

/*latest */	
.tab-content .text-md-center {  margin: 10px 2em;}	
.col-xs-12 { width: 100%;}	
.themetechmount-box-blog.themetechmount-blog-box-view-left-image .post-item {display: block;}	
 .post-item .col-md-4 { width: 100%;}	
.themetechmount-box-blog .themetechmount-box-content h4 {font-size: 16px;}	
.themetechmount-box-blog .entry-header { margin-left: 55px;}	
.tm-post-left .themetechmount-post-date-wrapper {font-size: 25px;}	
.themetechmount-box-blog .tm-post-left, article.themetechmount-box-blog-classic .tm-post-left { width: 65px; left: 18px;}	
.themetechmount-box-blog.themetechmount-blog-box-view-right-image .themetechmount-box-content, .themetechmount-box-blog.themetechmount-blog-box-view-left-image .themetechmount-box-content { width: 100%;}	
.tm-featured-wrapper.tm-post-featured-wrapper, .themetechmount-box-topimage .tm-featured-wrapper.tm-post-featured-wrapper {height: 200px;}	

.gt-columns.gt-column-3 > .gt-col { width: 100%; }
.gt-event-style-3 .gt-title { font-size: 1.05em;  line-height: 1.2;}
.gt-columns > .gt-col > .gt-inner { padding: 0 5px 0px;}
.tab-content .btn {font-size: 14px;}	
.gt-event-style-3 .gt-text {font-size: 0.97em;}	
.nav .ltn__tab-menu a {  padding: 15px 25px;  font-size: 16px;}	
	
/* our people*/	
.section-title.style2 .title-header { width: 100%; display: block;  margin-bottom: 10px;  padding-right: 0;}
.section-title h2.title { font-size: 29px !important; line-height: 36px;}
.section-title.style2 .title-header:after {  position: unset;}
h5.yellow {font-size: 1.1em;}	
.featured-imagebox-team ul.social-icons li {font-size: 0.9em; letter-spacing: -0.03em;}
	
	
	.ttm-row { padding: 30px 10px !important; }
	.ttm-row.zero-padding-section,
	.ttm-row.map-section,
	.ttm-row.our-client-section,
	.ttm-row.our-partner-section{padding: 0 0 !important;}
	.ttm-row.bottomzero-padding-section,
	.ttm-row.aboutus-section-style2{padding-bottom: 0 !important;}
	.ttm-row.first-row-title-section,
	.ttm-row.second-row-title-section{padding-top: 80px !important;padding-bottom: 80px !important;}
	.ttm-row.services-section,
	.ttm-row.only-testimonial-section,
	.ttm-row.grid-section{padding-bottom: 20px !important;}
	.ttm-row.price-text-section { padding-bottom: 110px !important;}
	.ttm-row.services-slide-section { padding-bottom: 270px !important;}
	.ttm-row.contact-box-section{padding-top: 75px !important; padding-bottom: 0px !important;}
	.ttm-row.project-single-section{padding-bottom: 30px !important;}
	.ttm-row.fid_2-section { padding: 35px 0 !important; }
	.ttm-row.client-section { padding: 0 0 !important; }	
	.section-title .title-desc, .section-title .title-desc2 { padding-left: 0;}
	.owl-carousel {	display: block; padding: 0.5em;}
	
.featured-imagebox-team .featured-content p.category { font-size: 1em;padding: 0.3em;text-align: center;line-height: 1.3em;}
.featured-imagebox-team.style1 .featured-content {	padding: 18px 3px 10px;}	
.text-md-center {  margin: 10px 4em;}	
.ttm-row.bottomzero-padding-section.ttm-bgcolor-skincolor.ttm-bg.ttm-bgimage-yes.bg-img5.clearfix { margin-top: 0;}
.ttm-row .container > .row, .ttm-page-title-row .container > .row, footer .container .row, .element-row .container > .row, .sidebar .container > .row {
  margin: 0;}
.ttm-box-col-wrapper.col-lg-4.col-md-6.col-sm-6 { max-width: 100%;  display: block;  flex: 0 0 100%;}
	
/* about*/	
.quote-paragraph { padding: 0;	}
.service-box li:first-child { padding-right: 10px; margin-right: 10px;}
.about-info > i {line-height: 2.5em;}
.btn { padding: 10px 20px;}
	.text-md-right.mt-30 { margin-bottom: 0.7em;}	
.pb-140 { padding-bottom: 20px;}
.mt-30 { margin-top: 10px;}	
	
	
/*research*/	
.sec-title4 { padding: 0 10px;}	
.faq-wrapper { position: relative; margin-top: -3em;}	
.acc-kontainer label {	padding-left: 2.5em  !important;}	
.acc-kontainer .accordion-item:before {left: 3em;}	
.acc-kontainer input:checked ~ .acc-body {padding: 5px 35px;}	
.acc-kontainer label:before {left: 1em;}
.acc-kontainer label {font-size: 18px;padding: 12px;}
.box-cta-call {	padding: 30px;}	
.section-padding {  padding: 80px 0px 20px;}	
	
	
/*centers*/	
	
.ttm-row.bottomzero-padding-section { padding: 50px 0px !important;}	
.row.ttm-boxes-spacing-10px { padding: 0;}	
	
/*discover*/	
.portfolio-area {padding: 3em;}	
.post-info3 {padding: 1.5em 1.5em 0 1em;bottom: -35px;}
.post-info3 > h3 {line-height: 2rem;max-width: 100%;text-align: center;}
.post-info3 > p { font-size: 1em;  line-height: 1.4em;	max-width: 100%;}	
.post-info3 > p {padding-top: 1em; text-align: center;}
.post-style3.position-relative.overflow-hidden.w-100 { max-height: 300px;}	
.row.mrg {  padding-bottom: 2em;}	
.row.portfolio-list { margin-left: -30px;  margin-right: -30px;}
.section-title .title-desc { font-size: 16px;line-height: 22px;}	
.works ul li {width: 100%;}	
.works ul li figure figcaption small {font-size: 15px;}	
.works ul li figure figcaption {padding: 3em 0.5em;}	
.mt-30 { margin-top: 10px;}
.discover .text-md-center { margin: 10px 1em;}	
.portfolio-wrapper .portfolio-content {	padding: 30px 20px;}
.discover .portfolio-wrapper .portfolio-content h4 { font-size: 22px; line-height: 28px;}	
.kf_cur_catg_capstion { padding-left: 0;padding-right: 0;}	
.kf_cur_catg_capstion h5 {text-transform: capitalize;}	
	
	
	
/* partners*/	
.box-paginacao .vitrine1, .box-paginacao .vitrine2, .box-paginacao .vitrine3, .box-paginacao .vitrine4 { height: 350px; margin-bottom: 60px;}
.box-paginacao .box-vitrines { height: 380px;}	
.box-paginacao ul li { height: auto;line-height: 45px;}	
.box-paginacao ul{margin: 5px 10px;}
.btn-paginacao {left: 80%;}
.btn-paginacao ul li { margin-bottom: 10px;}	
.box-vitrines img { width: 80%;}	

/******* Sustainable **********/
	
.ltn__neighbour-tab-wrap .ltn__tab-menu-4 {  position: inherit; margin-bottom: 30px; left: inherit; bottom: inherit;}
.ltn__gallery-filter-menu button, .ltn__tab-menu a { padding: 15px 25px;  font-size: 14px; }
.ltn__tab-menu-top-right { position: initial; }
.ltn__tab-menu-3 {  margin-top: 0; }
.ltn__tab-menu-3 a { padding: 1px; margin-right: 20px; }
.ltn__tab-menu-4 a {padding: 0; }
.ltn__tab-menu-4 a.active {  padding: 0; }
.ltn__tab-menu-4 a { border: 4px solid #fff;}

/* ranking */	
.srv-info4 { padding: 2rem;}
	
/* facts */	
.inside h4 { margin-bottom: 0;  padding-bottom: 0; font-size: 25px; line-height: 35px; color: #fff;}
	
	
	
	
}
/**************/

@media (max-width:576px) {
#menuToggle { width: 60px;}
.col-sm-8 {  width: 70%;}
.col-sm-6 {  width: 50%;}
.col-sm-12 {  width: 100%;}
.top-bar-right {  width: fit-content;}	
/*.burg-nav { left: 40%;}*/

.section-title.style2 .title-header {  width: 100%;}
.section-title.style2 .title-header, .section-title.style2 .title-desc, .section-title.style2 .title-desc2 {
  display: block;
	}
.owl-carousel {	display: block; padding: 0.5em;}	
.section-title .title-desc { padding-left: 0;}

	/* header*/
.ltn__top-bar-menu > ul > li {margin: 0 ;}	
.burg-nav { width: 6%; left: 10%;top: 2em;}
#menuToggle { padding: 0.6em 0.2em 0.4em; border-radius: 5px;}
.aast-logo { width: 77%;left: 0%; top: 2em;}
.ltn__header-top-area { 
  background-color: #132b61;
  padding: 15px 0;
}
.top-bar-right {  margin-top: 1em !important; width: 100%;}	
	
}
