:root {
    --vh: 1vh;
    --nav-height: 92px;
    --max-width: 1800px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Jost", sans-serif;
    color: #111;
    background: #fff
}

/* HERO full screen */
.hero {
    position: relative;
    width: 100%;
    height: calc(var(--vh, 1vh)*100);
    overflow: hidden
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero__overlay {
    position: absolute;
    /* inset: 0; */
    z-index: 2;
    display: grid;
    place-items: center;
    pointer-events: none;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Dotviz is a studio specializing in high-end architectural visualization. */



.hero__title {
    color: #fff;
    font-weight: 500;
    font-size: clamp(22px, 3.2vw, 40px);
    letter-spacing: 6px;
    text-transform: none;
    margin: 0;
    opacity: 0.98
}

.hero__chev {
    margin-top: 12px;
    opacity: 0.9
}

/* NAV - sits below hero and becomes sticky when it reaches top */
.site-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: transparent;
    padding: 28px 6vmin;
    transition: background .22s ease, box-shadow .22s ease
}

.site-nav.stuck {
    background: #fff;
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.06);
    position: fixed;
}

.site-nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo svg {
    height: 28px;
    width: auto
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 12px;
    letter-spacing: .06em
}

.nav-links a {
    color: #111;
    text-decoration: none;
    padding: 6px 0
}

.nav-links a.active {
    font-weight: 700
}

/* INTRO block */
.intro-wrap {
    max-width: var(--max-width);
    margin: 64px auto 0;
    /* padding: 0 6vmin; */
    padding: 0 2vmin;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: end
}

.intro-head {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 120%;
    margin: 0;
    color: #000
}

.intro-side {
    color: #222;
    font-size: 15px;
    padding-right: 150px;

}

/* big gallery-like image under the intro */
.hero-image-wrap {
    max-width: calc(var(--max-width) + 160px);
    margin: 28px auto 0;
    padding: 0 6vmin
}

.hero-image {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover
}

/* content */
.welcome {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 6vmin
}

/************************************
            08-09-2025 SB
*************************************/
.architecture_sec {
    max-width: var(--max-width);
    margin: 0 auto 0;
    padding: 0 0;
    display: flex;
    gap: 15px;
    align-items: end;
}
.mt-15{
    margin-top: 15px !important;
}

.architecture_sec.architecture_2 {
    margin: 15px auto 0;
}
.architecture_sec p {
    margin: 10px 0 10px;
    line-height: 1.12;
	font-size:20px;
}
.architecture_area-L {
    width: 30%;
    height: auto;
    display: inline-block;
    position: relative;
}
.architecture_area-R {
    width: 70%;
    height: auto;
    display: inline-block;
}
.architecture_area-L .architecture_txt{
   padding-right: 20px;
   position: absolute;
   z-index: 99;
}
.architecture_area-R .architecture_txt{
    width: 50%;
    height: auto;
    float: right;
    margin-bottom: 17px;

}
.float-none{
    float: none !important;
}
.mt-10{margin-top: 10px !important;}
.mt-20{margin-top: 20px !important;}
.mb-25{margin-top: 25px !important;}
.mb-30{margin-top: 30px !important;}
.mb-20{margin-bottom: 20px !important;}
.mb-25{margin-bottom: 25px !important;}
.mb-30{margin-bottom: 30px !important;}
.me-0{margin-right: 0!important}
.architecture_area-R .architecture_txt p{
    margin-bottom: 0;
}
.architecture_area-R .architecture_txt h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
}
.architecture_img{
    width: 100%;
    height: auto;
}
.architecture_area-L .architecture_img{
   width: 100%;
   height: auto;
   max-height: 500px;
   overflow: hidden;
}
.architecture_area-R .architecture_img{
   width: 100%;
   height: auto;
   max-height: 370px;
   overflow: hidden;
}

.architecture_area-L .architecture_img img, .architecture_area-R .architecture_img img{
   width: 100%;
   height: auto;
}
.btn-txt {
    font-size: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition-duration: .5s;
    -o-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    margin-top: 10px;
}
.btn-txt img {
    width: auto;
    margin-left: 5px;
    height: 13px;
    transition-duration: .5s;
    -o-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
}
.btn-txt:hover img {
    margin-left: 10px;
    transition-duration: .5s;
    -o-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
}
.fullwidth_sec{
    width: 100%;
    height: auto;
    max-height: 630px;
    overflow: hidden;
    margin: 0 0;
}
.fullwidth_sec img{
    width: 100%;
    height: auto;

}
.architectural_sec .headline{
    width: 47%;
    height: auto;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 17px;
    vertical-align: bottom;
}
.architectural_sec h2{
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}
.architectural_sec .architecture_area-R .architecture_txt {
    width: 47%;
}
.architectural_sec .architecture_area-R .architecture_txt p{
    margin-top: 0;
}
.architecture_sec.architecture_2.architectural_sec .architecture_txt{
        margin-right: 0px;
}

.counter_sec{
     max-width: var(--max-width);
    margin: 0 auto 0;
    padding: 0 2vmin;
}

.counter_list{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}
.counter_list li{
    width: 33%;
    height: auto;
    padding: 0;
    margin: 0;
   display: inline-block;
   vertical-align: top;
}
.counter_sec .counter{
    padding-top: 20px;
}
.counter_sec .counter p{
    margin: 0;
}
.counter_sec .counter h2{
    margin: 0;
    font-size: 30px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
	padding-top:0px;
}
.counter_sec .counter h2 b{
    font-weight: 600;
}
img.arrow-img {
    width: 11px;
}
img.logo-image {
    height: 30px;
}
a.btn.btn-txt img {
    width: 11px;
}


.align-item-start{align-items: start!important;}
.relax_panel .architecture_txt p{margin-bottom: 20px}
.relax_panel .architecture_area-L .architecture_img {min-height: 500px}
.relax_panel .architecture_area-L .architecture_img img{min-height: 500px}
.clients{display: table;width: 100%;}
/*.clients ul{-webkit-column-gap: 15px;-moz-column-gap: 15px;column-gap: 15px;display: -ms-grid;display: grid;-ms-grid-columns: 1fr normal 1fr normal 1fr normal 1fr normal 1fr;grid-template-columns: repeat(5, 1fr);-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-column-gap: normal;-moz-column-gap: normal;column-gap: normal;}*/
.clients ul{padding: 0;margin: 0;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.clients ul li{list-style: none;width:12%;float: left;}
.clients ul li img{width: 100%;}
.testimonials .item p{margin-bottom: 20px}
.testimonials .owl-prev, .testimonials .owl-next{background: transparent!important;}
.testimonials .owl-prev svg path, .testimonials .owl-next svg path{fill:#111}
.testimonials .owl-nav{position: absolute;top: 50%;-webkit-transform: translateY(-90%);-ms-transform: translateY(-90%);transform: translateY(-90%);margin: 0 !important;width: 100%;}
.testimonials .owl-theme .owl-nav .owl-prev{float: left;margin-left: -35px;}
.testimonials .owl-theme .owl-nav .owl-next{float: right;margin-right: -35px;}
.testimonials .owl-theme .owl-dots .owl-dot.active span, .testimonials .owl-theme .owl-dots .owl-dot:hover span{background: #111;}
.testimonials .owl-theme .owl-dots .owl-dot span{background: transparent;border: 1px solid #111}
.book-constlation{width: 65%;bottom: 80px;}
.book-constlation .architecture_area-R{display: -webkit-box;display: -ms-flexbox;display: flex;width: 100%;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
.book-constlation .architecture_area-R .headline h2{font-size: 40px;font-weight: 400;margin: 0;line-height: 1;color: #FFF}
.book-constlation .architecture_area-R{color: #FFF}
.book-constlation .architecture_area-R .btn-txt{color: #FFF}
.book-constlation .architecture_area-R .btn-txt img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
.book-constlation .architecture_area-R .architecture_txt{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;
-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: end;-ms-flex-align: end;align-items: end;}
.book-constlation-video{position: relative;}
.book-constlation-video video:before{content: "";position: absolute;top: 0;left: 0;background-color: rgba(0,0,0,0.3);}
.news_panel_main{margin-top: 40px}
.news_panel_main .architecture_area-R{width: 100%;}
.news_panel_main .card .card-img{margin-bottom: 15px;}
.news_panel_main .card h2{font-size: 24px;font-weight: 400;margin: 0;line-height: 1;margin-bottom: 15px; padding-top:0px;}
.news_panel_main .card p{font-size: 18px;line-height: 28px}
.news_panel_main .card .btn {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: left;justify-content: left;width: auto;}
.news_panel_main .card .btn img{width:11px;}
footer{background-color: #000000;margin-top: 55px;}
footer .footer_main{padding: 75px 0 35px}
footer .container{max-width: var(--max-width);margin: 0 auto 0;padding: 0 2vmin;display: flex;gap: 15px;align-items: normal; justify-content: space-between}
footer address{font-style: normal;padding: 25px 0px;}
footer p{color: #FFF}
.footer_l{float: left;}
.footer_r{float: right}
.footer_card .footer_top{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center; padding-bottom: 20px;}
.footer_card .footer_top img{width: 150px;border: 3px solid #FFF}
.footer_card .footer_top h5{color: #FFF;font-size: 25px;margin: 0;line-height: 29px;margin-left: 25px; text-transform: none; padding-top: 0px;}
.footer_card p{float: left; margin: 0px;}
.footer_card a.btn {color: #FFF;margin-left: 25px;margin-top: 0;line-height: 25px;}
.footer_card a.btn img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
.footer_social{color: #FFF;text-align: right;display: table;width: 100%;margin-bottom: 200px;}
.footer_social h5 {
    font-size: 18px;
    font-weight: 300;
    text-transform: none;
    color: #fff;
    letter-spacing: 0;
}
.footer_social ul{padding: 0;margin: 0;display: table;float: right;}
.footer_social ul li{list-style: none;float: left;padding: 5px}
.footer_social ul li a{color: #FFF}
.footer_social ul li i {
    color: #FFF;
    font-size: 28px;
    margin-left: 10px;
}
.footer_social ul li svg{width: 30px!important;height: 30px!important;}
.footer_logo {margin-bottom: 20px;}

.footer_social ul li svg path{fill:#FFF}

.fa-chevron-left:before, .fa-chevron-right:before{color: #333;}
.footer_card .footer_top h5 img {
    border: none;
    width: 10px;
}

.news-detail .news-container {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0px;
}

.news-detail .news-image {
  flex: 1 1 45%;
  margin-right: 40px;
}

.news-detail .news-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.news-detail .news-content {
  flex: 1 1 55%;
}

.news-detail .news-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.news-detail .news-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #303030; /* adjust to your site palette */
}

/* Responsive */

.architecture_txt a.btn.btn-txt {
    float: right;
}
.real-estate-marketing .architectural_sec .headline{float:right; text-align:right;}
.real-estate-marketing .architecture_sec.architecture_2.architectural_sec .architecture_txt{float:left; text-align:left;}
.high-performance-workflows a.btn.btn-txt img{display:none;}
.relationship .architectural_sec .architecture_area-R .architecture_txt {
    width: 100%;
}