/* Video Modal */
.banner-video{
  margin: 80px 0;
}
.banner-video__player{
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.banner-video__btn{
  position: absolute;
  display: inline-block;
  top:50%;
  left: 50%;
  transform:translate(-50%, -50%);
  background-color:#fff;
  color:#000;
  z-index: 2;
}
.video-modal {
  align-items: center;
  background-color: #000;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translateY(100%);
  transition: all .42s cubic-bezier(.165,.84,.44,1);
  width: 100%;
  z-index: 99;
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.video-modal__close{
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  background-color:#fff;
}
@media(max-width:850px){
  .banner-video__player{
    min-height: 500px;
    aspect-ratio: unset;
  }
}
@media(max-width:767px){
  .banner-video{
    margin: 60px 0;
  }
}
/* Cards */
.cards-screen .info-container{
  margin-left:-30px;
  margin-right:-30px;
}
.cards-screen .info-container .description{
  margin-top:45px;
  margin-bottom:20px;
}
.cards-screen .info-container .flex-item{
  padding:0 30px;
}
.cards{
  display: flex;
  margin-top:10px;
  overflow:hidden;
}
.cards .cards-inner{
	flex:1 1 25%;
  padding:0 8px;
  height:500px;
  display:inline-flex;
  position: relative;
  overflow: hidden;
	transition: .4s;
  text-decoration:none;
}
.cards:hover .cards-inner:not(:hover){
	flex: 1 1 20%;
}
.cards .cards-inner:hover{
	flex: 1 1 40%;
}
.cards .cards-inner .inner{
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  flex-direction: column;
  justify-content: end;
  color:#fff;
  overflow:hidden;
  border-radius:4px;
}
.cards .cards-inner .inner:after{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6));
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  display:block;
  content:'';
}
.cards .cards-inner .inner > div{
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom:0;
  position:relative;
  z-index: 3;
}
.cards .cards-inner .inner h3{
  flex:1;
  max-width:220px;
  margin-bottom:0;
  font-size:30px;
  transition:.4s;
}
.cards:hover .cards-inner:not(:hover) .inner h3{
	flex: 1 1 20%;
  font-size:24px;
}
@media(max-width:1025px){
  .cards .cards-inner .inner h3{
    font-size:23px;
    transition:.4s;
  }
  .cards:hover .cards-inner:not(:hover) .inner h3{
    font-size:18px;
  }
}
@media(max-width:850px){
  .cards-screen .info-container{
    flex-direction: column;
    margin:0;
    text-align: center;
  }
  .cards-screen .info-container .flex-item{
    padding: 0;
  }
  .cards-screen .info-container .description{
    margin-top: 0;
  }
  .cards{
    display:block;
    margin-top:0;
  }
  .cards:hover .cards-inner:not(:hover),
  .cards .cards-inner:hover, .cards .cards-inner{
  	margin-bottom:15px;
    display: block;
    width:100%;
    height: 460px;
    padding:0;
  }
  .cards:hover .cards-inner:not(:hover) .inner h3,
  .cards .cards-inner .inner h3{
    font-size: 24px;
  }
}
/* Small Cards */
.small-cards-screen .buttons{
  margin-top:30px;
}
.small-cards-screen .small-cards{
  display: flex;
  flex-wrap: wrap;
  margin-left:-5px;
  margin-right:-5px;
  margin-bottom:50px;
  margin-top:-20px;
}
.small-cards-screen .small-cards-inner{
	flex:1 1 20%;
  padding: 5px;
}
.small-cards-screen .small-cards-inner .inner{
  width:100%;
  position: relative;
  aspect-ratio:1.3/1;
  display:inline-flex;
  overflow: hidden;
  height: 100%;
}
.small-cards-screen .small-cards-inner .inner .text{
  display:flex;
  padding: 20px;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6));
  z-index: 1;
  width:100%;
  height: 100%;
}
.small-cards-screen .small-cards h3{
  margin-bottom:0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color:#fff;
}
@media(max-width:1100px){
  .small-cards-screen .small-cards-inner{
    flex:1 1 15%;
    width:15%;
  }
  .small-cards-screen .small-cards-inner .inner{
    aspect-ratio: 1/1;

  }
}
@media(max-width:850px){
  .small-cards-screen .info-container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .small-cards-screen .small-cards h3{
    font-size: 18px;
  }
}
@media(max-width:767px){
  .small-cards-screen .small-cards{
    display: block;
    transform: translateX(-5%);
  }
  .small-cards-screen .small-cards .slick-list{
    overflow: visible !important;
  }
}
/* Grid Logo Info Images */
.grid-logo-info .flex-row{
  align-items: stretch;
}
.grid-logo-info .logo-row{
  margin-bottom:-50px;
}
.grid-logo-info .inner-image{
  min-height: 480px;
  height:100%;
  position: relative;
}
.grid-logo-info .inner-image img{
  border-radius:4px;
}
.grid-logo-info .inner-logo img{
  height:370px;
  width: auto;
  object-fit:contain;
}
.grid-logo-info .flex-item.inner-info{
  padding-left:40px;
  padding-top:70px;
}
.grid-logo-info .buttons{
  margin-top:30px;
}
.grid-logo-info .buttons.h-align{
  margin-top:100px;
}
@media(max-width:850px){
  .grid-logo-info .buttons.h-align{
    margin-top:20px;
  }
}
/* reverse */
.grid-logo-info.reverse-screen{
  padding-top:200px;
}
.grid-logo-info .reverse .flex-item.inner-info{
  padding-left:10px;
  padding-right:40px;
}
.grid-logo-info .reverse .inner-logo img{
  margin-top:-129px;
}
.grid-logo-info .logo-row.reverse{
  margin-bottom:-179px;
}
.grid-logo-info .reverse .flex-item.inner-info{
  padding-top:200px;
}
/* mobile*/
.grid-logo-info .flex-row.mobile-row{
  display:none;
}
@media(max-width:850px){
  .grid-logo-info.reverse-screen{
    padding-top:80px;
  }
  .grid-logo-info .flex-row.mobile-row{
    display: flex;
  }
  .grid-logo-info .flex-row.mobile-row .flex-item{
    padding:0 3px;
  }
  .grid-logo-info .flex-row .image-cont{
    display: none;
  }
  .grid-logo-info .logo-row.reverse,
  .grid-logo-info .logo-row{
    margin-bottom:40px;
  }
  .grid-logo-info .reverse .flex-item.inner-info,
  .grid-logo-info .flex-item.inner-info{
    padding:0;
    padding-top:40px;
    text-align: center;
  }
  .grid-logo-info .inner-image{
    min-height: 300px;
  }
  .grid-logo-info .reverse .inner-logo img{
    margin-top:0;
  }
  .grid-logo-info .inner-logo img{
    height: auto;
  }
}
@media(max-width:767px){
  .grid-logo-info .inner-image{
    min-height: 190px;
  }
}
/* Location */
.location-screen .location{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin:0 auto;
  aspect-ratio: 16/9;
}
/* White Boxes */
.white-boxes-grid{
  flex-wrap:wrap;
  align-items: stretch;
  justify-content:center;
  position:relative;
}
.white-boxes-grid:before{
  display:block;
  content:'';
  width: 90%;
  left:50%;
  height: 90%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index: -1;
  border-radius:50%;
  position:absolute;
  background-color:#e9e9ec;
  box-shadow: -10px -8px 127.6px 28px rgba(19, 19, 53, 0.20);
  filter: blur(22px);
}
.white-boxes-grid .white-box-inner{
  flex: 1 1 20%;
  padding:8px;
  max-width: 260px;
}
.white-boxes-grid .white-box-inner .inner{
  position: relative;
  height: 100%;
  display:block;
  border:1px solid rgba(19, 19, 53, 0.2);
  border-radius: 4px;
  padding: 28px 10px;
  background:#fff;
}
@media(max-width:850px){
  .white-boxes-grid .white-box-inner{
    flex:1 1 50%;
  }
}
@media(max-width:767px){
  .white-boxes-grid .white-box-inner{
    max-width: 50%;
  }
  .partners-grid .partners-inner .inner img{
    max-width: 90%;
  }
}
/* Benefits box */
.benefits{
  margin-top:50px;
}
.benefits-grid .benefits-inner .title{
  text-transform: uppercase;
}
/* Contact People */
.contact-people-screen .main-row{
  margin-left:-30px;
  margin-right:-30px;
}
.contact-people-screen .main-row > .flex-item{
  padding: 0 30px;
}
.cp-grid{
  flex-wrap:wrap;
  align-items: stretch;
  justify-content:center;
}
.cp-grid .cp-inner{
  flex: 1 1 33%;
  padding:5px;
  max-width: 210px;
  text-align:left;
}
.cp-grid .cp-inner figure{
  width: 100%;
  height: 250px;
  position: relative;
  margin-bottom: 10px;
}
.cp-grid .cp-inner a{
  display: block;
  float: left;
  margin-bottom: 5px;
}
@media(max-width:1100px){
  .contact-people-screen .main-row{
    flex-direction: column;
    margin:0;
    text-align: center;
  }
  .contact-people-screen .main-row > .flex-item{
    padding: 0;
  }
  .cp-grid .cp-inner{
    text-align: center;
  }
  .cp-grid .cp-inner a{
    float: unset;
  }
}
@media(max-width:767px){
  .cp-grid .cp-inner{
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Partners */
.partners-grid .partners-inner .inner{
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  height:auto;
}
.partners-grid .partners-inner .inner img{
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
/* Awards grid */
.awards-grid{
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.awards-grid .awards-inner{
  flex: 1 1 33%;
  max-width: 400px;
  padding: 20px;
}
.awards-grid .awards-inner .inner{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.awards-grid .awards-inner .inner figure{
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.awards-grid .awards-inner .inner figure img{
  object-fit: contain;
}
@media(max-width:850px){
  .awards-grid .awards-inner{
    flex:1 1 50%;
  }
}
@media(max-width:767px){
  .awards-grid .inner p{
    font-size: 14px;
  }
}
/* images and info */
.images-and-info .flex-row{
  align-items: stretch;
}
.images-and-info .flex-row .inner-info .inner-image{
  width: 100%;
  position: relative;
  aspect-ratio: 1.5/1;
  margin-bottom:40px;
}
.images-and-info .flex-row .big-image .inner-image{
  position: relative;
  width: 100%;
  min-height: 870px;
  height: auto;
}
@media(max-width:850px){
  .images-and-info .flex-row,
  .images-and-info .flex-item.item50.inner-info{
    display:flex;
    flex-direction: column;
    text-align:center;
  }
  .images-and-info .flex-item.item50.inner-info .section-headline{
    order:1;
  }
  .images-and-info .flex-item.item50.inner-info .section-title{
    order:2;
    margin-bottom:40px;
  }
  .images-and-info .flex-item.item50.inner-info .description{
    order:3;
    margin-bottom:40px;
  }
  .images-and-info .flex-row .inner-info .inner-image{
    order:4;
  }
  .images-and-info .flex-row .big-image .inner-image{
    min-height: auto;
    aspect-ratio: 1.5 / 1;
  }
}
@media(max-width:767px){
  .images-and-info .flex-item.item50.inner-info .description,
  .images-and-info .flex-row .inner-info .inner-image{
    margin-bottom:15px;
  }
}
/* Testimonials */
.testimonials{
  display:flex;
  flex-direction:column;
  min-height:130vh;
  justify-content:center;
  padding:120px 0 80px;
}
.testimonials-wrapper{
  margin-top:50px;
  position:relative;
}
.testimonials-wrapper .drag-vector{
  width: 120px;
  height: 120px;
  transition:.4s;
  position:absolute;
  bottom:60px;
  opacity:1;
  color:#000;
  right:25%;
  border: 1px solid rgba(19, 19, 53, 0.20);
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  backdrop-filter: blur(8px);
}
.testimonials-wrapper .drag-vector .rotate{
  transform:rotate(-180deg) translateY(-2px);
}
.testimonials-wrapper .drag-vector svg{
  --svg-arrow:#000;
  margin:0 5px;
}
.change-bg-color .testimonials-wrapper .drag-vector{
  background-color:rgba(19, 19, 53, .5);
  color:#fff;
}
.change-bg-color .testimonials-wrapper .drag-vector svg{
  --svg-arrow:#fff;
}
.testimonials-wrapper:hover .drag-vector{
  opacity:0;
  pointer-events:none;
}
.testimonials-container .testimonial_item{
  padding: 10px;
}
.testimonials-container .testimonial_item .inner{
  border-radius: 4px;
  background: var(--section-mode-bg-1, #FFF);
  padding: 40px;
  border:1px solid rgba(19, 19, 53, 0.20);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials-container .testimonial_item .inner .quote,
.testimonials-container .testimonial_item .inner .name,
.testimonials-container .testimonial_item .inner .position{
  color:#131335;
}
.testimonials-container .testimonial_item .inner .flex-row{
  align-items: center;
  margin-top:20px;
}
.testimonials-container .testimonial_item .inner .inner-image{
  width:70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border:1px solid rgba(19, 19, 53, 0.20);
  margin-right:10px;
}
.testimonials-container .testimonial_item .inner .name{
  text-transform: uppercase;
  font-weight: 700;
}
.testimonials-container.grid{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.testimonials-container.grid .testimonial_item{
  flex: 1 1 50%;
  width:50%;
}
.testimonials-container.slider-container .slick-slide:hover{
  cursor: grab;
}
.testimonials-container.slider-container .slick-track{
  display: flex!important;
  padding-top:60px;
  align-items: stretch;
}
.testimonials-container.slider-container .slick-slide{
  height: inherit !important;
}
.testimonials-container.slider-container .slick-slide:nth-child(odd){
  transform:translateY(-60px);
}
@media(max-width:1100px){
  .testimonials{
    min-height: 100vh;
  }
}
@media(max-width:767px){
  .testimonials-container .testimonial_item .inner{
    padding: 20px;
  }
  .testimonials-container .testimonial_item .inner .quote{
    font-size: 14px;
  }
  .testimonials-wrapper:hover .drag-vector,
  .testimonials-wrapper .drag-vector{
    display: none;
  }
}
/* Side Image Side Info */
.side-image-side-info .flex-row{
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
}
.side-image-side-info .flex-item{
  padding: 0 20px;
}
.side-image-side-info .inner-image{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
@media(max-width:850px){
  .side-image-side-info .flex-row{
    flex-direction: column-reverse;
    margin:0;
    text-align:center;
  }
  .side-image-side-info .flex-item{
    padding: 10px 0;
    width: 100%;
    flex:1 1 100%;
  }
  .side-image-side-info .section-title{
    margin-bottom:40px;
  }
}
/* Info Slider */
.info-slider-image-wrapper{
  position: relative;
  height: auto;
  min-height: 100vh;
}
.info-slider-image-wrapper .image-slider-item,
.info-slider-image-wrapper .image-slider{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 0;
  min-height:100vh;
}
.info-slider-image-wrapper .side-part{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width:890px;
  float: right;
}
.info-slider-image-wrapper .section-title-container,
.info-slider-image-wrapper .info-container,
.info-slider-image-wrapper .slider-arrows{
  background-color:#fff;
  margin-bottom: 0;
  padding: 40px;
  padding-top:10px;
}
.info-slider-image-wrapper .section-title-container .section-title{
  display: flex;
  margin-top:10px;
}
.info-slider-image-wrapper .section-title-container .section-title sup{
  top: unset;
  margin-top: 20px;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 24px;
  margin-right: 10px;
}
.info-slider-image-wrapper .info-container,
.info-slider-image-wrapper .slider-arrows{
  width:100%;
  max-width: 700px;
  float: right;
}
.info-slider-image-wrapper .slider-arrows{
  padding: 0px 40px 20px;
}
.info-slider-image-wrapper .image-slider .slick-track,
.info-slider-image-wrapper .image-slider .slick-list{
  height: 100%;
}
@media(max-width:1100px){
  .info-slider-image-wrapper{
    display:flex;
    flex-direction:column-reverse;
    min-height: auto;
  }
  .info-slider-image-wrapper .image-slider-item,
  .info-slider-image-wrapper .image-slider{
    position: static;
    min-height: auto;
  }
  .info-slider-image-wrapper .info-container,
  .info-slider-image-wrapper .slider-arrows,
  .info-slider-image-wrapper .side-part{
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .info-slider-image-wrapper .section-title-container, .info-slider-image-wrapper .info-container, .info-slider-image-wrapper .slider-arrows{
    padding: 10px 0;
  }
  .info-slider-image-wrapper .section-title-container .section-title sup{
    margin-right:5px;
  }
  .info-slider-image-wrapper .image-slider .slick-track, .info-slider-image-wrapper .image-slider .slick-list{
    height: auto;
  }
  .info-slider-image-wrapper .image-slider-item{
    height: 450px;
  }
}
@media(max-width:767px){
  .info-slider-image-wrapper .image-slider-item{
    height: 360px;
  }
}
/* Hero Screen Slider Screen */
.hero-screen{
  margin-bottom:80px;
}
.hero-screen-slider .hs-item{
  min-height: 100vh;
  height: auto;
  position: relative;
  padding: 240px 0 70px;
}
.hero-screen-slider .hs-item:after{
  display: block;
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  background-color:rgba(0,0,0,0.3);
}
.hero-screen-slider .hs-item .section-title-container{
  position: relative;
  z-index: 2;
  color:#fff;
  opacity:0;
  max-width: 870px;
}
.hero-screen-slider .hs-item .buttons{
  margin-top:20px;
}
.hero-screen-slider .slick-dots{
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  right:20px;
}
.hero-screen-slider .slick-dots .dot{
  color:#fff;
}
.page-loader-done .hero-screen-slider .slick-slider .hs-item.slick-active .section-title-container,
.page-loader-done .hero-screen-slider .no-slider .section-title-container{
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
   -webkit-animation-name: fadeInLeft;
   animation-name: fadeInLeft;
}
@media(max-width:1281px){
  .hero-screen-slider .hs-item{
    padding: 180px 0 70px;
  }
}
@media(max-width:1000px){
  .hero-screen-slider .hs-item{
    padding: 140px 0 70px;
  }
}
@media(max-width:850px){
  .hero-screen-slider .slick-dots{
    top:unset;
    bottom:15px;
    width:100%;
    transform:unset;
  }
}
@media(max-width:767px){
  .hero-screen{
    margin-bottom:60px;
  }
}
/* Two columns */
.two-columns-screen .vector{
  margin-bottom: -30px;
  position: relative;
  z-index: 3;
  width: 100%;
}
.two-columns{
  margin-bottom:50px;
}
.two-columns .inner-image{
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom:30px;
  max-width: 560px;
}
@media(max-width:767px){
  .two-columns-screen .vector{
    margin-bottom:-13px;
  }
  .two-columns{
    flex-direction: column;
    margin-bottom:0;
  }
  .two-columns .flex-item{
    padding: 0;
    margin-bottom:40px;
  }
}
/* Benefits Cards */
.benefits-cards{
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:center;
}
.benefits-cards-inner{
  display: inline-block;
  flex:1 1 24%;
  padding: 8px;
  vertical-align: top;
}
.benefits-cards-inner .inner-container{
  width:100%;
  position: relative;
  overflow: hidden;
  height: 400px;
  display:flex;
  flex-direction:column;
  justify-content:end;
  padding: 20px;
  color:#fff;
  text-align: left;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6));
}
.benefits-cards-inner .inner-container .inner{
  position: relative;
  z-index: 2;
  transition: all 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}
.benefits-cards-inner .inner-container:hover .inner{
  opacity: 0;
}
.benefits-cards-inner .inner-container .inner h3{
  margin-bottom: 0;
}
.benefits-cards-inner .inner-container .description{
  bottom: 0;
  left: 0;
  padding: 20px;
  position: absolute;
  opacity:0;
  transition: all 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction:column;
  justify-content:end;
}
.benefits-cards-inner .inner-container:hover .description{
  opacity: 1;
  z-index: 2;
}
.benefits-cards-inner .inner-container .description p{
  font-size: 14px;
  line-height: 20px;
}
@media(max-width:1100px){
  .benefits-cards-inner{
    flex:1 1 40%;
  }
}
@media(max-width:850px){
  .benefits-cards.flex-row{
    flex-direction:row;
  }
  .benefits-cards-inner{
    flex: 1 1 50%;
  }
}
@media(max-width:767px){
  .benefits-cards-inner{
    flex: 1 1 100%;
  }
}
/* ISHO Card Screen */
.isho-card-screen .isho-card-image{
  padding-left:40px;
}
.isho-card-screen .flex-row figure{
  margin-top: 60px;
}
.isho-card-screen .buttons{
  margin-top:30px;
}
@media(max-width:850px){
  .isho-card-screen .flex-row{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .isho-card-screen .isho-card-image{
    padding-left:0;
  }
  .isho-card-screen .flex-row figure{
    margin-top: 0;
    margin-bottom: 30px;
  }
  .isho-card-screen .flex-row .display-heading{
    font-size: 50px;
  }
}
@media(max-width:767px){
  .isho-card-screen .flex-row .display-heading{
    font-size: 40px;
  }
}
/* Single Testimonial */
.single-testimonial .testimonial-wrapper{
  padding: 50px 10%;
  min-height: 100vh;
  border-radius: 8px;
  background: rgba(195, 153, 104, 0.20);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-testimonial .h2,
.single-testimonial .name{
  font-family: 'Canela Text LC Web';
  margin-bottom: 30px;
}
.single-testimonial .name{
  margin-bottom: 10px;
}
/* Partners and benefits */
.partners-benefits-grid:before{
  display: none;
}
.partners-benefits-grid{
  justify-content: flex-start;
}
.partners-benefits-grid .white-box-inner{
  flex:1 1 33%;
  max-width: 447px;
  margin-bottom:20px;
}
.partners-benefits-grid .partners-inner .inner{
  min-height: 275px;
}
.partners-benefits-grid .partners-inner .inner img{
  max-height: 170px;
  max-width: 245px;
}
/* Apartment Hero Screen */
.appartments_hero_screen.screen{
  padding:40px 0;
}
.appartments_hero_screen .h2{
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 0px;
}
@media(max-width:1100px){
  .appartments_hero_screen.screen{
    padding-top:0;
  }
}
/* Apartments gallery */
.apartments-gallery.screen {
  padding-top:0;
}
.apartments-gallery .big-slider-container{
  position: relative;
}
.apartments-gallery .small-slider{
  margin-left:-8px;
  margin-right: -8px;
}
.apartments-gallery .figure{
  position: relative;
  width: 100%;
  aspect-ratio: 1.8/1;
}
.apartments-gallery .small-figure{
  position: relative;
  width: 100%;
  height:130px;
  padding: 8px;
  cursor: pointer;
}
.apartments-gallery .small-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(max-width:767px){
  .apartments-gallery .figure{
    aspect-ratio: 1.4/1;
  }
  .apartments-gallery .small-figure{
    height: 60px;
  }
}
/* Form screen - apartments */
.form-screen .container > .flex-row{
  flex-wrap: wrap;
  justify-content: center;
}
.form-screen .ap-building-and-number{
  border:0;
}
@media(max-width:850px){
  .form-screen .container > .flex-row{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .form-screen .container > .flex-row .flex-item{
    flex: 1 1 100%;
    width:100%;
    text-align: center;
  }
  .form-screen .container > .flex-row .flex-item .form{
    margin-bottom:40px;
  }
}
/* Ap Benefits & Plan */
.apartment-benefits-plan .flex-row{
  align-items: center;
}
.apartment-benefits-plan .text-small{
  margin-bottom: 20px;
}
@media(max-width:850px){
  .apartment-benefits-plan .container > .flex-row{
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* Ap Characteristics */
.apartment-characteristics .flex-row{
  align-items: center;
}
.apartment-characteristics .characteristics-container .flex-row{
  padding:10px;
  border-bottom: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
}
.apartment-characteristics .characteristics-container .flex-row img{
  height: 60px;
  width: auto;
}
.apartment-characteristics .plan-container img{
  width: 100%;
  height: auto;
}
@media(max-width:850px){
  .apartment-characteristics .container > .flex-row{
    flex-direction: column;
    text-align: center;
  }
}
/* Ap Info Box */
.apartment-info-box .box{
  padding:30px 32px;
  border-radius: 10px;
  align-items:center;
  border: 1px solid #131335;
  background: rgba(19, 19, 53, 0.10);
}
.apartment-info-box .box svg{
  width: 21px;
  height:21px;
}
.apartment-info-box .box p{
  margin-bottom: 0;
  margin-left: 21px;
  flex: 1;
}
@media(max-width:767px){
  .apartment-info-box .box{
    padding: 15px;
  }
}
/* Ap Table */
.apartment_table .flex-row{
	padding: 8px 0;
	border-bottom: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
}
.apartment_table .flex-row strong{
	font-weight: 600;
}
.apartment_table .flex-row .flex-item{
	padding-left: 0;
}
/* Ap Benefits List*/
.apartment-benefits-list{
	margin-bottom: 30px;
}
.apartment-benefits-list .flex-row{
	padding: 16px 0;
	border-bottom: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
	align-items: center;
}
.apartment-benefits-list .flex-row span{
	margin-left: 16px;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 600;
}
/* Ap Grid Settings */
.you-may-like .buttons, .apartments-grid .buttons{
  margin-top:40px;
}
@media(max-width:767px){
  .apartments-grid.screen{
    padding-top:40px;
  }
}
/* Ap Listing Hero Screen */
.apartments_listing_hero{
  height: auto;
  min-height: 600px;
  color:#fff;
  margin-bottom: 0;
}
.apartments_listing_hero .container{
  padding: 230px 0 70px;
}
.apartments_listing_hero.ap-camel{
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 1.97%, rgba(0, 0, 0, 0.30) 98.68%), #C3996B;
}
.apartments_listing_hero.ap-dark-blue{
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 1.97%, rgba(0, 0, 0, 0.30) 98.68%), #131335;
}
.apartments_listing_hero.ap-dark-blue .breadcrumb a:hover{
  color:var(--camel);
}
.apartments_listing_hero.ap-dark-blue .breadcrumb svg{
  --stroke:var(--camel);
}
.apartments_listing_hero .row .inner-item{
  display: inline-block;
  width: 50%;
  float:left;
  padding: 6px;
}
.apartments_listing_hero .row .inner{
  position: relative;
  width: 100%;
  height: 208px;
  border: 2px solid #C3996B;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 10px 20px;
}
.apartments_listing_hero .row .inner h2{
  position: relative;
  margin-bottom: 0;
  z-index: 2;
  transition: .4s;
}
.apartments_listing_hero .row .inner:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  z-index: 1;
}
.apartments_listing_hero.ap-camel .for-sale, .apartments_listing_hero.ap-dark-blue .for-rent{
  opacity: .5;
  transition: .4s;
}
.apartments_listing_hero.ap-camel .for-sale .inner,
.apartments_listing_hero.ap-dark-blue .for-rent .inner{
  border: 0;
}
.apartments_listing_hero.ap-camel .for-sale:hover,
.apartments_listing_hero.ap-dark-blue .for-rent:hover{
  opacity: 1;
}
@media(max-width:1100px){
  .apartments_listing_hero{
    min-height: auto;
  }
  .apartments_listing_hero .container {
    padding: 160px 0 70px;
  }
}
@media(max-width:850px){
  .apartments_listing_hero .container {
      padding: 110px 0 70px;
      flex-direction: column;
      text-align: center;
  }
}
@media(max-width:767px){
  .apartments_listing_hero .row .inner{
    height: 130px;
  }
}
/* Apartments Info Container */
@media(max-width:767px){
  .apartment-info-container .container > .flex-row{
    flex-direction: column-reverse;
  }
  .apartment-info-container .apartment_table{
    margin-bottom: 40px;
  }
}
