@import url("./menu.css"); /* Using a url */
@import url("./modal.css"); /* Using a url */
:root{
    --maxWidth: 1382px;
}
body, html {
    height: 100%;
    /*font-family: 'maison_neuemedium';*/
    font-family: 'maison_neuebook';
    background: #141414;
    color: #fff;
}

h1,h2,h3,h4{

}

/*
========================================
    General Classes
========================================    
*/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.clear-both{
    clear:both;
}
.uppercase{
    text-transform: uppercase;
}
.title-one{
    font-size: 48px;
    line-height: 1;
    font-weight: 100;
    
}

.title-second{
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.title-3{
    text-transform: uppercase;
}

.title-4{
    font-size: 64px;
    font-weight: 100;
}

.no-scrollbar{
    overflow:hidden
}



img.center{
    margin: 0 auto;
    display: inherit;
}

.container{
    max-width: var(--maxWidth);
    padding: 0px 15px;
    margin: 0 auto;
    display: block;
    /*overflow: hidden;*/
}

.container.overflow-hidden{
    overflow: hidden;
}
.general_page{
    /*padding-top: 10.9375rem;*/
}
.logoTop{
    max-width: 278px;
    height: auto;
}
@media(max-width: 768px){
    .logoTop{
        max-width: 140px;
        height: auto;
    }
}
#holder_hero{
    width: 100%;
    height: 100%;
}
.hero-image {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/hero.jpg");*/
    /* Set a specific height */
    height: 100%;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
}

.hero-image .element-info{
    display: block;
}

.hero-image.x-hidden{
    overflow-x: hidden;
}

/* Place text in the middle of the image */

.hero-text{
    padding-top: 10.9375rem;
    color: #fff;
    text-align: left;
}
/*
.hero-text{
    position: absolute;
    top: 50%;
    margin-top: -8.75rem;
    color: #fff;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;   
}
*/

.hero-text h1{
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    /*font-family: 'libre_baskervilleregular';*/
}  

.hero-text p{
    font-size: 20px;
}

.single-item-rtl {
    max-width: var(--maxWidth);
    margin: 0 auto;
    text-align: left;
    position: relative;

}

.single-item-rtl.pl{
    max-width: 564px;
    margin-left: 7.25rem
}

.hero-text h1 br,
.hero-text p br{
    display: none;
}

.logo-bottom-hero{
    position: absolute; bottom: 4rem; width:100%
}

.logo-bottom-hero .container img{
    display: inline-block;
}

.show_mobile{
    display: none;
}

.flex-layout{
    display: flex;
    gap: 30px;
}

.flex-layout .haft{
    flex: 50%;
}

.flex-layout.end{
    align-items: end;
}
.flex-layout.middle{
    align-items: center;
}

.flex-layout.between{
    justify-content: space-between;
    align-items: center;
}

.flex-layout.flex-end{
    align-items: flex-end;
    flex-direction: column;
}

.btn-link{
    padding: 9px 35px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-link.dark{
    border: solid 1px #C22990;
    color: #fff;
    background: #C22990;
}

.btn-link.dark:hover{
    border: solid 1px #fff;
}

.btn-link.dark.dark_border{
    border: solid 1px #000;
}

.btn-link.white{
    border: solid 1px #fff;
    color: #fff;
}


 /* 
@keyframes wipe-out-bottom-left {
    from {
      clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
    }
    to {
      clip-path: polygon(-50% 50%, 50% 150%, 50% 150%, -50% 50%);
    }
  }
  
  [transition-style="out:wipe:bottom-left"] {
    animation: 2.5s cubic-bezier(.25, 1, .30, 1) wipe-out-bottom-left both;
  }
*/

/* Sweep To Bottom */

.hvr-sweep-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    
  }

.hvr-sweep-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #263942;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-sweep-to-bottom:hover, 
  .hvr-sweep-to-bottom:focus, 
  .hvr-sweep-to-bottom:active {
    color: white;
  }
  .hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, 
  .hvr-sweep-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  .bg_dark .hvr-sweep-to-bottom:before {
    background: #fff;
  }

  .bg_dark .hvr-sweep-to-bottom:hover, 
  .bg_dark .hvr-sweep-to-bottom:focus, 
  .bg_dark .hvr-sweep-to-bottom:active {
    color: #263942;
  }
  #holder_hero .logo-bottom-hero img{
    max-width: 256px;
  }
@media only screen and (max-width: 1024px) {
    /*
    .hero-text h1{
        font-size: 80px;
        line-height: 1;
        padding-bottom: 15px;
    }
    */
    .single-item-rtl.pl {
        max-width: 564px;
        margin-left: 0rem;
    }

    .hero-text {
        padding-top: 9rem;
        color: #fff;
        text-align: left;
    }

    .hero-text .element-info{
        /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        padding: 1rem;
        */
    }

    #holder_hero .logo-bottom-hero img{
        max-width: 150px;
    }
}
@media only screen and (max-width: 768px) {
    
    
    .hero-text h1{
        /*font-size: 40px;
        line-height: 1;
        padding-bottom: 15px;
        */
        font-size: 25px;
    }

    .hero-text p {
         font-size: 16px;
    }

    .hero-text {
        padding-top: 11rem;
    }


    .flex-layout{
        flex-direction: column;
        
    }

    
    .flex-layout.between{
        align-items: unset;
    }
    

    .h_history .flex-layout .holder_content_flex{
        margin-top: -50px;
    }

    .hero-text{
        top: 50%;
        margin-top: -75px;
    }

    

}

@media only screen and (max-width: 480px){
    .hero-text h1{
        font-size: 25px;
    }
}

/*
========================================
   Home Page
========================================    
*/

video {
    width: 100%;
    height: auto;
}

/*section - score*/
.h_score{
    height: 100vh;
    /*background: url("../images/home/centriverse.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 4.9375rem;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .h_score{
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),  
                url('../images/home/centriverse.jpg')
    }
}




.h_score .count{
    display: flex;
    gap: 4.75rem;
}

.h_score .count h3{
    font-size: 81px;
    border-bottom:  solid 1px #fff;
    line-height: 1;
}

.h_score .count span{
    font-size: 20px;
    background-color: #000;
}

@media only screen and (max-width: 1024px) {
    .h_score .count h3{
        font-size: 50px;
        border-bottom:  solid 1px #fff;
        line-height: 1;
    }
}

/*Section Your base*/
.h_base{
    background: #141414;
    color: #fff;
}

.h_base p{
    font-size: 20px;
}

.h_base .icons-top,
.h_base .icons-bottom{
    position: relative;
    overflow: hidden;
    height: 134px;
}
.h_base .icons-bottom{
    height: 106px;
}

.h_base .icons-top .img-left{
    position: absolute;
    left: 0px;
    top: -6.25rem;
    z-index: 3;
}
.h_base .icons-top .img-right{
    position: absolute;
    right: 19.25rem;
    top: -9rem;
    z-index: 3;
}
.h_base .icons-bottom .img-left{
    position: absolute;
    left: 0px;
    bottom: -1.5rem;
    z-index: 3;
}

.h_base .icons-bottom .img-right{
    position: absolute;
    right: 5.125rem;
    bottom: -2rem;
    z-index: 3;
}

.h_base .info{
    max-width: 645px;
    margin: 0 auto;
}
.h_base .info .holder-link{
    text-align: center;
    padding-top: 1.3125rem;
}
.h_base .info p{
    padding-left: 7.125rem;

}
/* Caroucel section */
.h_base .h_holder_caroucel{
    position: relative;
}

.h_base .wrap_caroucel{
    max-width: var(--maxWidth);
    margin: 0 auto;
}
.h_base .h_holder_caroucel{
    background-image: url("../images/icons/bg_caroucel_left.png"), url("../images/icons/bg_caroucel_right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0px, right 0px;
    padding-top: 35px;
    padding-bottom: 70px;
}

.h_base .h_holder_caroucel .slick-slider {
    margin-bottom: 15px;
}

.h_base .h_holder_caroucel .slick-next {
    right: 20px;
    z-index: 1;
}

.h_base .h_holder_caroucel .slick-prev {
    left: 20px;
    z-index: 1;
}

.h_base .h_holder_caroucel .combo {
    position: relative;
    overflow: hidden;
}

.h_base .h_holder_caroucel .slider-for .item {
    height: 82vh;
}

.h_base .h_holder_caroucel .slider-nav {
    /*position: absolute;*/
    position: relative;
    top: .625rem;
    width: 100%;
}
.h_base .h_holder_caroucel .slider-nav .item {
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    line-height: 1em;
}
.h_base .h_holder_caroucel .slider-nav .item:hover {
    cursor: pointer;
}
.h_base .h_holder_caroucel .slider-nav .item:hover, .slider-nav .item:focus {
    outline: none;
}
.h_base .h_holder_caroucel .slider-nav .item.slick-current {
    font-size: 20px;
    font-weight: bold;
    color: #C22990;
}
.h_base .h_holder_caroucel .slick-arrow{
    display: none;
    visibility: hidden;
}

.h_base .h_holder_caroucel .slider-nav .slick-track {
    /*min-width: 100%;*/
    width: 100%;
    transform:  translate3d(0, 0, 0) !important;
}


@media only screen and (max-width: 1024px) {
    .h_base .icons-top .img-left{
        left: 0px;
        top: -6.25rem;
    }
    .h_base .icons-top .img-right{
        right: 0rem;
        top: -9rem;
    }
    .h_base .icons-bottom .img-left{
        left: 0px;
        bottom: -1.5rem;
    }
    
    .h_base .icons-bottom .img-right{
        right: 0rem;
        bottom: -2rem;
    }

    .h_base .info p {
        padding-left: 7.125rem;
    }

    .h_base .info p {
        padding-left: 0rem;
    }

    .h_base .info{
        padding-top: 1rem;
    }
}

/*comfort zone*/
.hero-v2{
    height: 100vh;
    /*background: url("../images/home/NORM-LI_220823_INT_Suite_VF_SC-A_01.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 4.9375rem;
    color: #fff;
}

.hero-v2 .description{
    font-size: 20px;
    max-width: 529px;
    padding-top: 1.25rem;
    padding-bottom: 2.3125rem;
}
.graywood{
    padding-top: 4.5rem;
    padding-bottom: 8.125rem;
}
.graywood .haft.left{
    padding-right: 4rem;
    
}
.graywood .haft.left p{
    font-size: 38px;
    line-height: 1;
}
.graywood .haft.left  .holder-link{
    padding-top: 3.75rem;
}
.graywood .haft.left .data{
    max-width: 632px;
}

.graywood .haft.right{
    padding-left:4.5rem;
    font-size: 16px;
}

.graywood .haft.right .company-logo{
    max-width: 256px;
}
.graywood .haft.right p{
    padding-bottom: 28px;
}

.graywood .haft.right p:last-of-type{

    padding-bottom: 0rem;;
}

@media(max-width: 1024px){
    .graywood .haft.left{
        padding-right: 0rem;        
    }
    .graywood .haft.left p {
        font-size: 29px;
        line-height: 1;
    }

    .graywood .haft.right{
        padding-left: 0rem;
        font-size: 16px;
    }

    .graywood {
        padding-bottom: 5rem;
    }
}
    

@media (max-width: 768px) {
    .graywood {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
}


/*
========================================
   Page About
========================================    
*/
#page_about .hero-text h1{
    max-width: 550px;
}
/*Section - Brochure */
#page_about .brochure{
    padding-top: 6.75rem;
    padding-bottom: 1.4375rem;
}
#page_about .brochure .info{
    max-width: 564px;
    margin: 0 auto;
}
#page_about .brochure .holder-link{
    text-align: center;
    padding-top: 3.875rem;
}
#page_about .brochure .holder-link a{
    display: inline-block;
}

/*Section - Building */
#page_about .building{
    margin-top: 1rem;
    padding-bottom: 8rem;
}
#page_about .building{
    background: url("../images/about/bg-left-about-building.png") left 80px no-repeat, url("../images/about/bg-right-about-building.png") right top no-repeat;
} 

#page_about  .building .flex-layout{
    align-items: center;
}

#page_about .building .flex-layout .right{
    max-width: 384px;
}

#page_about .building .flex-layout .right h1{
     padding-left: 3.75rem;
     line-height: 1.2;
     padding-bottom: 1.25rem;
}

#page_about .building .flex-layout .right .description{
    padding-top: 1.25rem;
}

@media(max-width: 1200px){
    #page_about .building{
        /*background: url("../images/about/bg-left-about-building.png") left 80px no-repeat 50px, url("../images/about/bg-right-about-building.png") right top no-repeat 50px;*/
        background-image: url("../images/about/bg-left-about-building.png"), url("../images/about/bg-right-about-building.png");
        background-position: left 80px, right top;
        background-repeat: no-repeat, no-repeat;
        background-size: 150px 150px;
        padding: 15px;
    } 
}
@media (max-width: 1024px) {
    #page_about .building .flex-layout .right h1{
        padding-left: 0rem;
   }
}
@media (max-width: 800px) {
   #page_about .building .flex-layout .right {
        max-width: 100%;
    }
}



/*
========================================
   Page Amenities
========================================    
*/
#page_amenities #holder_hero .full-flex{
    height: 80%;
}
#page_amenities #holder_hero .full-flex{
    align-items: end;
}
#page_amenities #holder_hero .full-flex .col-left{
    width: 55%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#page_amenities #holder_hero .full-flex .col-right{
    padding-right: .9375rem;
}
#page_amenities #holder_hero .full-flex .holder-link{
    padding-left: 3.5rem;
    padding-top: 1.875rem;
}
#page_amenities .block-flex{
    position: relative;
    overflow: hidden;
}

#page_amenities .block-flex.block-01 .holder-img-01{
    position: absolute;
    text-align: right;
    /*
    top: -102px;
    right: 0px;
    */
    top: 0;
    right: 0%;
}

#page_amenities .block-flex.block-01 .holder-img-02{
    position: absolute;
    /*
    bottom: -3rem;
    left: -5rem;
    */
    bottom: -7%;
    left: -10%;
}

#page_amenities .block-flex.block-02 .holder-img-01{
    position: absolute;
    /*
    bottom: -7rem;
    right: -4rem;
    */
    bottom: -16%;
    right: -8%;
    text-align: right;
}
#page_amenities .block-flex.block-03{
    padding-top: 7.5rem;
}
#page_amenities .block-flex.block-03 .holder-img-01{
    position: absolute;
    /*
    top: -5rem;
    left: -5rem;
    */
    top: -12%;
    left: -10%;
}
#page_amenities .block-flex.block-04{
    
}
#page_amenities .block-flex.block-04 .holder-img-01{
    position: absolute;
    text-align: right;
    /*
    top: -4rem;
    right: 0rem;
    */
    top: -6%;
    right: 0%;
    z-index: 1;
}

#page_amenities .block-flex.block-04 .holder-img-02{
    position: absolute;
    /*
    bottom: -4rem;
    left: 50%;
    margin-left: -12.8125rem;
    */
    bottom: -8%;
    left: 50%;
    margin-left: -21%;
}


#page_amenities .block-flex .flex-layout.between.end{
    align-items: end;
}

#page_amenities #holder_hero .flex-info{
    max-width: 32rem;
}

#page_amenities .flex-info h1{
    padding-left: 3.5rem;
    line-height: 1;
    font-family: 'maison_neuemedium';
    padding-bottom: 3rem;
}

#page_amenities .block-flex{
    padding-bottom: 3.25rem;
    padding-top: 3.25rem;
}

#page_amenities .block-flex .flex-layout .layout-img{
    position: relative;
}


#page_amenities .block-flex .flex-layout .layout-content{
    max-width: 384px;
}


#page_amenities .block-flex.flex-left-content  .flex-layout{ /* div content backgrand image*/
    padding-bottom: 6.875rem;
}


#page_amenities .block-flex .flex-layout .layout-content h1{
     padding-left: 3.75rem;
     line-height: 1.2;
     padding-bottom: 1.25rem;
}

#page_amenities .block-flex.flex-left-content .flex-layout .layout-content h1{
    padding-left: 0rem;
    max-width: 20.75rem;
}
#page_amenities .block-flex.flex-left-content .holder-link,
#page_amenities .block-flex.flex-left-content p{
    padding-left: 3.75rem;
}

#page_amenities .block-flex.flex-left-content .holder-link{
    margin-top: 3.75rem;
}

#page_amenities  .block-flex.block-03{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1400px) {
    #page_amenities .block-flex .container{
        padding-left: 86px;
        padding-right: 86px;
    }

    /*
    #page_amenities .block-flex .resize-img img{
        max-width: 85%;
    }
    */
}    
@media (max-width: 1200px) {
    #page_amenities .block-flex .container{
        padding-left: 86px;
        padding-right: 86px;
    }

    /*
    #page_amenities .block-flex .resize-img img{
        max-width: 75%;
    }
    */

}
@media (max-width: 768px) {
    #page_amenities #holder_hero .full-flex{
        height: auto;
        margin-top: 100px;
    }
    #page_amenities #holder_hero .flex-layout{

    }
    #page_amenities #holder_hero .full-flex .col-left{
        display: none;
    }
    #page_amenities #holder_hero .full-flex .col-right{
        width: 100%;
        padding: .9375rem;
    }
    #page_amenities #holder_hero .flex-info{
        max-width: 100%;
    }

    #page_amenities .flex-info h1 {
        padding-left: 0rem;
        padding-bottom: 2rem;
    }

    #page_amenities #holder_hero .full-flex .holder-link {
        padding-left: 0rem;
    }

    #page_amenities .block-flex .flex-layout.between.end {
       align-items: baseline;
    }

    #page_amenities .block-flex.flex-left-content .holder-link, 
    #page_amenities .block-flex.flex-left-content p,
    #page_amenities .block-flex .flex-layout .layout-content h1 {
        padding-left: 0rem;
    }

    #page_amenities .block-01 .layout-content{
        padding-top: 1.875rem;
    }

    #page_amenities .block-flex .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #page_amenities .block-flex.block-01 .holder-img-02 {
        left: 0%;
    }

    #page_amenities .block-flex.block-02 .holder-img-01 {
        bottom: -16%;
        right: 0%;
    }

    #page_amenities .block-flex.block-03 .holder-img-01 {
        left: 0%;
    }

    #page_amenities .block-flex .flex-layout .layout-content {
        max-width: 100%;
    }

    #page_amenities .block-flex .flex-layout .layout-img {
        order: -1;
    }

    #page_amenities .block-flex.flex-left-content .flex-layout .layout-content h1{
        max-width: 100%;
    }

    #page_amenities .block-flex.block-01 {
        padding-bottom: 0rem;
        padding-top: 3.25rem;
    }

    #page_amenities .block-flex.block-02 .layout-content {
        padding-top: 3rem;
    }

    #page_amenities .block-flex.block-02.flex-left-content .flex-layout,
    #page_amenities .block-flex.block-04.flex-left-content .flex-layout{
        padding-bottom: 0rem;
    }   
}

/*
========================================
   Page Interiors
========================================    
*/
#page_interiors .block-flex .flex-layout.between.end{
    align-items: end;
}
#page_interiors .description_studio .info{
    padding-left: 11.125rem;
}

/*section description studio*/
#page_interiors .description_studio .info .description{
    max-width: 34.625rem;
    margin-top: 5rem;
}
#page_interiors .description_studio .holder-link{
    padding-left: 7.5rem;
    padding-top: 1.875rem;
}

/* Section - Flex content*/
#page_interiors .block-flex{
    position: relative;
    overflow: hidden;
    padding-bottom: 3.25rem;
    padding-top: 5.9375rem;
}

#page_interiors .block-flex.block-01 .holder-img-01{
    position: absolute;
    text-align: right;
    top: 0%;
    right: 0%;
}

#page_interiors .block-flex.block-01 .holder-img-02{
    position: absolute;
    text-align: left;
    top: -4%;
    left: -9%;
}

#page_interiors .block-flex .flex-layout .layout-content{
    max-width: 384px;
}
#page_interiors .block-flex .flex-layout .layout-content h1{
    padding-left: 3.75rem;
    line-height: 1.2;
    padding-bottom: 1.25rem;
}

#page_interiors .block-flex .flex-layout .layout-content .holder-link{
    padding-top: 3.25rem;
}

/* Section - graywood_dev */
#page_interiors .graywood_dev .info .description{
    max-width: 43.125rem;
    font-size: .75rem;
}
#page_interiors .graywood_dev .info .holder-link{
    padding-top: 2.75rem;
}

#page_interiors .block-flex.block-02 p{
   font-size: 30px;
   margin-bottom: 2.875rem;
   line-height: 1;
}

#page_interiors .block-flex.block-02 p:last-of-type{
    margin-bottom: 0rem;
}

#page_interiors .block-flex.block-02 p:nth-child(even){
    color: #C22990;
}


@media (max-width: 1024px) {
    #page_interiors .block-flex.block-02 p{
        font-size: 20px;
        margin-bottom: 1.4375rem;
        line-height: 1;
    }
}
@media (max-width: 768px) {
    #page_interiors .block-flex .flex-layout .layout-content {
        max-width: 100%;
    }

    #page_interiors .description_studio .holder-link,
    #page_interiors .description_studio .info {
        padding-left: 0rem;
    }


    #page_interiors .block-flex.flex-left-content .holder-link, 
    #page_interiors .block-flex.flex-left-content p,
    #page_interiors .block-flex .flex-layout .layout-content h1 {
        padding-left: 0rem;
    }

    #page_interiors .block-flex .flex-layout .layout-img {
        order: -1;
    }

    #page_interiors .block-flex .flex-layout.between.end {
        /* align-items: end; */
        align-items: baseline;
    }

    #page_interiors .block-flex {
        padding-top: 3.9375rem;
    }
    
}

/*
========================================
   Page Team
========================================   
*/

/* Section - Top*/
#holder_hero_autoheight{
    background-image: url("../images/team/bg_icon_hero_01.png"), url("../images/team/bar-corner.png"), url("../images/team/bg_icon_hero_02.png"),  url("../images/team/bg_icon_hero_03.png");
    background-position: top center, top right, left center, right bottom;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    /*background-size: 150px 150px;*/
}
#holder_hero_autoheight .sec-info{
    padding-top: 4.875rem;
    padding-bottom: 10.0625rem;
}
#page_team  .col-left,
#page_team  .col-right {
    flex: 1;
}
#page_team  .flex-layout{
    display: flex;
    align-items: center;
    justify-content: center;
}

#page_team  .flex-layout .center{
    display: flex;
    align-items: center;
    justify-content: center;
}
#page_team  .flex-layout .flex-info{
    max-width: 35.25rem;
}
#page_team .flex-layout .flex-info h1{
    padding-left: 3.75rem;
    line-height: 1.2;
    padding-bottom: 1.25rem;
}

#page_team  .flex-layout  .holder-link{
    margin-top: 1.9375rem;
}

#page_team  .flex-layout.baseline{
    align-items: unset;
}

#page_team  .flex-layout{
    margin-bottom: 10.8125rem;
}

#page_team  .flex-layout:last-of-type{
    margin-bottom: 0rem;
}

#page_team  .flex-layout.baseline .center {
    justify-content: unset;
    /* justify-content: center; */
}

#page_team  .flex-layout.baseline .col-right img{
    padding-left: 3.4375rem;
}


@media (max-width: 768px) {
    #holder_hero_autoheight{
        background-position: center 75px, top right, left center, right bottom;
        background-size: 50px, 0px, 0px, 0px;
    }

    #page_team #holder_hero_autoheight .flex-layout {
        margin-bottom: 5rem;
    }

    #holder_hero_autoheight .sec-info {
        padding-bottom: 5rem;
    }

    #page_team #holder_hero_autoheight .flex-layout .flex-info h1 {
        padding-left: 0rem;
        font-size: 25px;
    }
    #page_team #holder_hero_autoheight .flex-layout .flex-info h1 br{
        display: none;
    }

    #page_team #holder_hero_autoheight .flex-layout .flex-info {
        max-width: 100%;
    }

    #page_team #holder_hero_autoheight .flex-layout.baseline .col-right img {
        padding-left: 0rem;
        margin: 0 auto;
    }

    #page_team #holder_hero_autoheight .flex-layout .content-image {
        order: -1;
    }
}

/*Senction - Agency */
#page_team .agencies{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    color: #141414;
    overflow: hidden;
}

#page_team .agencies .figure-02{
    padding-bottom: 5.375rem;
}
#page_team .agencies .figure-03{
    text-align: right;
}

#page_team .agencies .sec_01 .flex-layout .flex-info h1{
    padding-left: 0rem;
}
#page_team .agencies .sec_01 .flex-layout .flex-info p{
    padding-left: 3.75rem;
}
/*padding-left: 3.75rem;*/
@media (max-width: 1200px) {
    
    .agencies .figure-01 img,
    .agencies .figure-02 img,
    .agencies .figure-03 img{
        max-width: 120px;
    }
}
@media (max-width: 768px) {
    #page_team .agencies .flex-layout .content-image {
        order: -1;
    }

    #page_team .flex-layout .flex-info {
       max-width: 100%;
    }

    #page_team .agencies .sec_01 .flex-layout .flex-info p {
        padding-left: 0rem;
    }

    #page_team .agencies .sec_01 .flex-layout .flex-info h1 br{
        display: none;
    }

    #page_team .flex-layout .flex-info h1 {
        padding-left: 0rem;
        font-size: 25px;
    }
}

/*
========================================
   Page Contact
========================================   
*/
#page_content{
    padding-top: 10.9375rem;
}
@media (max-width: 768px) {
    #page_content{
        padding-top: 6rem;
    }
}
#page_content .container.extra-width{
    max-width: 1600px;
}
#page_contact .location .flex-layout{
    gap: 100px;
}
#page_contact .location .flex-layout .content-image{
    /*padding-right: 6.25rem;*/
}
#page_contact .location .flex-layout .content-info{
    max-width: 332px;
}
#page_contact .location .flex-layout .content-info p{

    padding-top: 1.625rem;
}



#page_contact .form{
    padding-bottom: 5rem;
}

#page_contact .form .flex-layout{
    align-items: center;
}

#page_contact .form .layout-img{
    text-align: right;
    position: relative;
    max-width: 836px;
}

#page_contact .form .layout-img .holder-img-01{
    position: absolute;
    left: 50%;
    margin-left: -25%;
    /*
    inset: 0;
    margin: auto;
    */
    /*transform: translate(0%, -50%);*/
    top: 0%;
    z-index: -1;
}

#page_contact .form .layout-img .holder-img-02{
    position: absolute;
    right: 0rem;
    top: 0rem;
    z-index: 1;
}

#page_contact .form .layout-content{
    max-width: 692px;
    margin-right: .9375rem;
}

/* Section Location */



@media only screen and (max-width: 1024px){
    #page_contact .form .flex-layout{
       flex-direction: column;
    } 
    
    #page_contact .form .layout-content{
        max-width: 100%;
        margin-right: .9375rem;
        margin-left: .9375rem;
    }

    #page_contact .location .flex-layout{
        gap: 20px;
    }
}

@media only screen and (max-width: 768px){
    #page_contact .location .flex-layout .content-info{
        max-width: 100%;
    }
    #page_contact .location .content-info{
        order: -1;
    }
    /*
    #page_contact .form .layout-content{
        order: -1;
    }
    */

}

/*
========================================
   Page Centriverse
========================================   
*/
/*
Section Hero
*/
#page_centriverse  .hero-image-centriverse{
    /*height: 1145px;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#page_centriverse .block-flex.block-01{
    padding-top: 3rem;
    padding-bottom: 7.8125rem
}

#page_centriverse .block-flex.block-01 .holder-img-01{
    position: absolute;
    bottom: -14%;
    left: 17%;
}

#page_centriverse .block-flex.block-01 .description .holder-link{
    margin-top: 2.3125rem;
}

#page_centriverse .block-flex.block-02{
    padding-top: 2.5625rem;
    padding-bottom: 5.25rem;
}

#page_centriverse .block-flex.block-02 .holder-img-01{
    position: absolute;
    bottom: -6%;
    left: -5%;
}

#page_centriverse .block-flex.block-03{
    padding-top: 3.625rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 5.3125rem;
}

#page_centriverse .block-flex.block-03 .holder-img-01{
    position: absolute;
    bottom: -11%;
    right: -10%;
    text-align: right;
}

#page_centriverse .block-flex.block-03 .flex-layout.text-info{
    margin-top: 150px;
    justify-content: flex-end;
}

#page_centriverse .block-flex.block-03 .flex-layout.text-info .data{
    max-width: 782px;
    color: #141414;
}

#page_centriverse .block-flex.block-03 .flex-layout.text-info .data .description{
    padding-left: 7rem;
    padding-top: 3rem;
}


#page_centriverse .block-flex .flex-layout .layout-content {
    max-width: 384px;
    margin-bottom: 5.25rem;
}

#page_centriverse .block-flex .flex-layout .layout-img{
    position: relative;
}

#page_centriverse .block-flex .flex-layout .layout-content.left .description{
    padding-left: 2.1875rem;
    padding-top: 2.5rem;
}


#page_centriverse .block-flex .flex-layout .layout-content.right .holder_number{
    padding-left: 2.1875rem;
   
}

#page_centriverse .block-flex .flex-layout .layout-content.right .description{
    padding-top: 2.5rem;
}


#page_centriverse .block-flex .flex-layout .layout-content .counter{
    font-size: 81px;
    color: #C22990;
}

#page_centriverse .block-flex.block-03 .layout-content {
    color: #141414 ;
}
@media(max-width: 1500px){
    #page_centriverse .block-flex.block-03 .holder-img-01 {
        bottom: -11%;
        right: 0%;
    }
}
@media(max-width: 1024px){
    #page_centriverse .block-flex .flex-layout .layout-content {
        margin-bottom: 0rem;
    }
}

@media(max-width: 768px){
    #page_centriverse .block-flex .flex-layout .layout-content {
        max-width: 100%;
        margin-bottom: 0rem;
    }

    #page_centriverse .block-flex .flex-layout .layout-content.left .description {
        padding-left: 0rem;
        padding-top: 2.5rem;
    }

    #page_centriverse .block-flex.block-03 .flex-layout.text-info{
        margin-top: 80px;
        justify-content: flex-end;
    }
    
    #page_centriverse .block-flex.block-03 .flex-layout.text-info .data{
        max-width: 100%;
    }
    
    #page_centriverse .block-flex.block-03 .flex-layout.text-info .data .description{
        padding-left: 0rem;
        padding-top: 3rem;
    }
}


/* Section Gallery*/

#page_centriverse .gallery{
    /*background: url("../images/about/bg-left-about-building.png") left 80px no-repeat 50px, url("../images/about/bg-right-about-building.png") right top no-repeat 50px;*/
    background-image: url("../images/centriverse/bg-left.png"), url("../images/centriverse/bg-right.png");
    background-position: left top, right top;
    background-repeat:repeat-y, repeat-y;
    /*background-size: 150px 150px;*/
    padding: 15px;
    overflow: hidden;
}


#page_centriverse .gallery .row_g{
    position: relative;
    display: flex;
    gap: 4.75rem;
    margin-top: 3.6875rem;
}

#page_centriverse .gallery .column_g{
    width: 50%;
}
#page_centriverse .gallery .column_g.left .holder_item{
    margin-bottom: 5.625rem;
}
#page_centriverse .gallery .column_g .holder_item.hasExtraPaddingButtom{
    margin-bottom: 16.25rem;
}
#page_centriverse .gallery .column_g .holder_item:last-of-type{
    margin-bottom: 0rem;
}

#page_centriverse .gallery .column_g .holder_item .wrap p{
    padding-top: 2rem;
}

#page_centriverse .gallery .column_g .holder_item{
    display: flex;
}

#page_centriverse .gallery .column_g.left{
    padding-top: 6.25rem;
    text-align: right;
}
#page_centriverse .gallery .column_g.left .holder_item{
    display: flex;
    justify-content: end;
}

#page_centriverse .gallery .column_g.left .holder_item{
    text-align: left;
}

#page_centriverse .gallery .column_g.right .holder_item{
    margin-bottom: 8.75rem;
}
#page_centriverse .gallery .column_g.right .holder_item.hasExtraPaddingLeft{
    padding-left: 5.25rem;
}

  /* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {

    #page_centriverse .gallery .column_g.left .holder_item,
    #page_centriverse .gallery .column_g.right .holder_item,
    #page_centriverse .gallery .column_g .holder_item,
    #page_centriverse .gallery .column_g .holder_item.hasExtraPaddingButtom{
        margin-bottom: 3.125rem;
    }

    #page_centriverse .gallery .column_g.right .holder_item.hasExtraPaddingLeft{
        padding-left: 0rem;
    }

    
}

@media screen and (max-width: 768px) {
    #page_centriverse .gallery .row_g{
        flex-direction: column;
    }

    #page_centriverse .gallery .row_g{
        position: relative;
        display: flex;
        gap: 0rem;
        margin-top: 3.6875rem;
    }

    #page_centriverse .gallery .column_g,
    #page_centriverse .gallery .column_g.left,
    #page_centriverse .gallery .column_g.right{
        width: 100%;
    }

    #page_centriverse .gallery .column_g .holder_item .wrap{
        width: 100%;
        display: block;
        text-align: center;
    }

    #page_centriverse .gallery .column_g .holder_item .wrap p {
        padding-top: 1rem;
    }
}

/*
========================================
   Page Brochure
========================================    
*/

#page_brochure #holder_brochure{
    min-height: 700px;

    background-image: url("../images/brochure/left-brochure.png"), url("../images/brochure/right-brochure.png");
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;

}

#page_brochure .flip{
    background-image: url("../images/brochure/TTC-new_bw.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: block;
    min-height: 700px;
    position: relative;
    text-align: center;
}

#page_brochure .flip img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#page_brochure .container-iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
  
  /* Then style the iframe to fit in the container div with full height and width */
  #page_brochure  iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
  }


#page_brochure .body .flex-layout div{
    width: 50%;
}

#page_brochure .flex-layout{margin-bottom: 3.375rem;}
@media  (max-width: 1024px) {
    #page_brochure .body .flex-layout div{
        width: 100%;
    }

    #page_brochure .body .flex-layout{
        flex-direction: column;
    }
}

/*
========================================
    General Page
========================================    
*/
.general_page {
    text-align: center;
}

.general_page .features{
    display: flex;
    gap: 0.9375rem;
    justify-content: space-between;
    margin-right: 1.875rem;
    margin-bottom: 0.75rem;
    max-width: 17.6875rem;
    margin: 0 auto;
}



/*
========================================
    General Footer
========================================    
*/
.footer {
    
    padding-bottom: 3.125rem;
    margin-top: 3.43rem;
}
.footer .main-logo{
    max-width: 332px;
}
.footer .second-logo{
    max-width: 257px;
}
.footer .info{
    max-width: 580px;
    margin: 0 auto;
    font-family: 'maison_neuebook';
    font-size: 16px;
}

/*
.footer .flex-layout .col-2 p{
    padding-bottom: 1.6875rem;
}

.footer .flex-layout .col-2 p:last-of-type{
    padding-bottom: 0rem;
}
*/
.footer .info p{
    margin-bottom: 1.5625rem;
}
.footer .info p:last-of-type{
    margin-bottom: 0rem;
}
.footer .flex-layout.between{
    
}

.footer .show_mobile{
    display: none;
}

/*
@media (max-width:1024px) {
    .footer .holder_content_flex{
        max-width: 100%;
        padding-top: 1.25rem;
    }

    .footer .flex-layout.between{
        align-items: unset;
    }

    .footer .termConditions{
        text-align: center;
    }    
}
*/
@media (max-width:1024px) {
    .footer .show_mobile{
        display: block;
    }
    .footer .show_desktop{
        display: none;
    }
}
@media (max-width:768px) {
    .footer {
        margin-top: 0.5rem;
    }
    .footer .flex-layout{
       display: flex;
       flex-direction: row;
       align-items: center;
    }

    .footer .flex-layout .col-1,
    .footer .flex-layout .col-3{
        text-align: center;
        padding-bottom: 15px;
    }

    .footer .flex-layout .col-3{
        padding-top: 15px;
    }

    .footer .main-logo,
    .footer .second-logo{
        max-width: 100%;
    }
}






