
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
  font-family: "helvetica";
  src: url(/client/assets/fonts/Helvetica.ttc);
}

@font-face {
  font-family: "helvetica_lt_geo_roman";
  src: url(/client/assets/fonts/Linotype-HelveticaNeueLTGEO55Roman.otf);
}

@font-face {
  font-family: "helvetica_lt_geo_bold";
  src: url(/client/assets/fonts/Linotype-HelveticaNeueLTGEO75Bold.otf);
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

}

html, body{
    font-family: "helvetica_lt_geo_roman";
  height: 100%;
    -webkit-tap-highlight-color: transparent;

}
body{

}




*::after,
*::before {
    position: absolute;
    content: "";
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

ol, ul {
	list-style: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}


a{
  text-decoration: none;

}

::-webkit-scrollbar {
  width: 8px;
  background-color: #707070;
}

::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: #181818;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #181818;
}


button{
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
}

.container{
    margin: auto;
    max-width: calc(1160px + 2rem);
    position: relative;
    height: 100%;
    padding-left: 1rem;
    padding-right: 1rem;

  }


  .mt-1{
    margin-top: 1rem;
  }
  .mt-2{
    margin-top: 2rem;
  }
.mb-1{
    margin-bottom: 1rem;
}
.mb-2{
    margin-bottom: 2rem;
}

.text-center{
    text-align: center;
}


  .header{
    background: white;

  }

  .header a{
    color: #181818;

  }

  .header-content{
    display: flex;
    justify-content: space-between;
    height: 147px;
    align-items: center;
  }

  .nav{
    display: flex;
    gap: 2rem;
  }

  .nav a.active{
    color: #F05223;
  }

  .lang{
    display: flex;
    gap: 2rem;
  }
  .lang a{
    opacity: 0.3;
  }
  .lang a.active{
    opacity: 1;
  }

  .section{
    position: relative;
  }


  .btn-main{
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #181818;
    display: inline-block;
    border: 1px solid;
    border-color: #181818;
    display: inline-block;
    border-radius: 0.3rem;
    font-family: "helvetica_lt_geo_bold";
    text-align: center;
    transition: border 0.25s;
  }

  .btn-main:hover{

    color: white;
   background-color: #F05223;
   border-color: #F05223;

  }


  .main-section{
    /*padding-top: 43%;*/
      height: calc(100vh - 147px);
      overflow: hidden;
  }

  .main-section .overlay{
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
  }

  .main-section .btn-main{
    position: absolute;
    bottom: calc(18% );
    left: 50%;
    transform: translateX(-50%);
    border-color: white;
    color: white;

  }

  .main-section .btn-main:hover{
    border-color: #F05223;
  }

  .main-slider{

    height: 100%;
    margin-left: 50px;
    margin-right: 50px;
      opacity: 0;
      transition: opacity 0.3s;

  }

  .main-slider .slick-track{
    height: 100%;
  }
  .main-slider .slick-list{
    height: 100%;
  }

  .main-slider .slick-dots{
    bottom: 1rem;
  }

  .main-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 7px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .3;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: rgb(255, 255, 255);
}

.main-slider .slick-dots li{
  margin: 0 0;
}

.main-slider .slick-prev {

}
.main-slider .slick-next {

}

.slider-next-btn, .slider-prev-btn{
  position: absolute;
  z-index: 10;
  top: calc(50% - 24px);
  cursor: pointer;

}
.slider-prev-btn{
  left: 0;
}


.slider-next-btn{
  right: 0;
}


.slider-next-btn #Path_2, .slider-prev-btn #Path_2{
  stroke: white;

}
.slider-next-btn:hover #Path_2, .slider-prev-btn:hover #Path_2{
  stroke: #F05223;

}

  .main-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    height: 100%;
    text-align: center;
  }

  .main-slide .content{
    max-width: 400px;
  }

  .main-slide .text-1{
    font-weight: bold;
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .main-slide .text-2{
    font-size: 0.85rem;
    margin-top: 2rem;
    line-height: 1.5;
  }


.slider-container{
    display: flex;
    height: 100%;
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .slider-container > div{
    flex: 0 0 25%;
    width: 25%;
  }


.slider-container.single > div{
    flex: 0 0 100%;
    width: 100%;
}

.slider-container.single .main-slider-images .image-item {
    background-size: cover;

}


  .main-slider-images{

    height: 100%;


  }

  .main-slider-images .slick-track{
    height: 100%;
  }
  .main-slider-images .slick-list{
    height: 100%;
  }

  .main-slider-images .image-item{

    background-size: 400% auto;

    background-color: white;
    background-repeat: no-repeat;

    background-position-y: bottom;
    transition: all 0.7s;
  }

  .main-slider-images.background-luminosity .image-item{
    background-blend-mode: luminosity;
  }


  .main-slider-images .image-item > div{
    height: 100%;


  }

  .main-slider-images:nth-child(1) .image-item{
    background-position-x: 0% ;
  }

  .main-slider-images:nth-child(2) .image-item{
    background-position-x: 33.3%;
  }

  .main-slider-images:nth-child(3) .image-item{
    background-position-x: 66.6%;
  }

  .main-slider-images:nth-child(4) .image-item{
    background-position-x: 100%;
  }




  .footer{
    background-color: #181818;
    position: relative;
    padding-top: 4rem;

  }
  .footer-bg{
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
  }
  .footer-bg svg{
    height: 100%;
    opacity: 0.03;
      width: 100%;

  }

  .footer .title{
    color: white;
    margin-bottom: 2rem;
    font-weight: bold;

  }


  .text{
    line-height: 1.5;
  }

  .title{
      line-height: 1.5;
  }

  .footer .text{
    color: white;
    opacity: 0.5;
    font-size: 0.85rem;
    line-height: 1.5;
      max-width: 25rem;
  }

  .footer .content{
    display: flex;
    padding-top: 2rem;
  }

  .footer .content > div{
    flex: 0 0 33.3%;
    display: flex;
  }

  .footer .content > div:nth-child(1){
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .footer .content > div:nth-child(3){
    display: flex;
    justify-content: flex-end;
  }

  .copyright{
    color: white;
    text-align: right;
    font-family: "Instrument Sans", serif;
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-weight: bold;
  }


  .contact-form{
    max-width: 300px;
  }


  .contact-form .wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.contact-form .form-group {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.contact-form .form-group > div {
  width: 100%;
}

input, textarea {
  padding: 1rem;
  border: 1px solid;
  outline: none;
  background-color: transparent;
}

.contact-form input {
  width: 100%;
  display: block;
  border-color: white;
  color: white;
  border-radius: 0.3rem;
}
.contact-form textarea {
  width: 100%;
  display: block;
  border-color: white;
  height: 180px;
  color: white;
  border-radius: 0.3rem;
}

.footer .btn-main{
  border-color: white;
  color: white;
}
.footer .btn-main:hover{
  border-color: #F05223;
  color: white;
}

.contact-form .btn-main{
  display: block;
  width: 100%;
}


.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.social {
  display: flex;

  gap: 2rem;

}

.footer .contact-info a{
  color: white;
  opacity: 0.5;
}

.footer .contact-info svg{
    fill: white;
}

.footer .social svg{
    fill: white;
}


.show-rooms li > div{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.show-rooms li{
  margin-bottom: 2rem;
}
.show-rooms li:last-child{
  margin-bottom: 0;
}

.footer .show-rooms a{
  color: white;
  opacity: 0.5;
}

.footer .show-rooms svg{
   fill: white;
}

.show-rooms .last svg{
    stroke: white;
}
.show-rooms .last a{
  font-weight: bold;
  opacity: 1;
}

.view-all-drop{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-about-section{

  padding-top: 4rem;
  padding-bottom: 4rem;
}

.play-btn{

}

.play-btn #Ellipse_7{
  fill: #181818;
  transition: all 0.3s;
}
.play-btn #Ellipse_1{
  stroke: #181818;
}
.play-btn #Polygon_1{
  fill: #181818;
}

.play-btn:hover #Ellipse_7{
  fill: transparent;
}
.play-btn:hover #Ellipse_1{
  stroke: none;
  fill: #F05223;
}
.play-btn:hover #Polygon_1{
  fill: white;
}

.image{
  position: relative;
  overflow: hidden;
}

.image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.home-about-section .image{
  position: relative;
 padding-top: 60%;
 width: 60%;
 border-radius: 1rem;
 overflow: hidden;
 background-color: white;


}

.home-about-section .image img{
  position: absolute;
 width: 100%;
 height: 100%;
 object-fit: cover;
 top: 0;
 left: 0;
 mix-blend-mode: luminosity;
}

.home-about-section .container{

}

.home-about-section .card-container{
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
  width: 100%;
}


.home-about-section .card{
  background-color: white;
  padding-top: 5rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 1rem;
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.3);
  width: calc(50% - 2rem);
  position: relative;
  overflow: hidden;
}

.home-about-section .card .sub-title{
  color: #F05223;
}

.home-about-section .card .title{
  color:#212529;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

.home-about-section .card .text{
  color:#181818;
  opacity: 0.5;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.home-about-section .card .btn-container{
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.home-about-section .card .bg{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  pointer-events: none;


}
.home-about-section .card .content{

  position: relative;

}
.home-about-section .card .bg svg{

  width: 100%;
  height: 100%;
  opacity: 0.03;
}


.home-brands-section{
  background-color: #F5F5F5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.brand-list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.brand-list > div{
  flex: 0 0 33.3%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.brand-item{
  color: #181818;
}

.brand-item .image{
  position: relative;


}
.brand-item .cover .image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}
.brand-item .cover{
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}
.brand-item .cover .image{

 padding-top: 90%;
 background-color: white;
}

.brand-item .brand{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;

}
.brand-item .brand .image{
 padding-top: 12%;
 width: 100%;
}
.brand-item .brand .image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
 }
.brand-item .info{
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
    width: 100%;
  justify-content: flex-start;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s;

}

.brand-item:hover .info{
  opacity: 1;
  visibility: visible;
}

.brand-item .info > div{
  flex: 0 0 100%;

}

.btn-learn-more{
  display: flex;
  gap: 1rem;
  color: #F05223;
  font-weight: bold;
  align-items: end;
}

.btn-learn-more svg{

  stroke: #F05223;

}

.brand-item .btn-learn-more{
  align-self: flex-end;
}

.brand-item .info .title{
 font-weight: bold;

}
.brand-item .info .text{
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left !important;
 }

.view-all-item{
  display: flex;
  flex-direction: column;
  gap: 2rem;

  height: 100%;

 }
 .view-all-item .title{
  font-weight: bold;
  font-size: 2rem;
 }
 .view-all-item .text{

  opacity: 0.5;
  font-size: 0.85rem;
  line-height: 1.5;
 }
 .brand-list .view-all-item{
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
 }

 .home-projects-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .home-projects-section .title{
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
 }
 .home-projects-section .text{
  text-align: center;
  opacity: 0.5;
  margin-top: 2rem;
  font-size: 0.85rem;
 }

 .home-projects-section .project-list{
  margin-top: 2rem;
 }

 .home-projects-section .btn-container{
  text-align: center;
  margin-top: 2rem;
 }

 .project-list{
  display: flex;
  flex-wrap: wrap;
 }
 .project-list > div{
  flex: 0 0 33.3%;
 }
 .project-item{
  display: block;
 }
 .project-item .image{
  padding-top: 70%;
  background-color: white;
  transition: all 0.7s;
 }
 .project-item .image img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  transition: all 0.7s;
 }
 .project-item:hover .image{
  background-color: transparent;

 }
 .project-item:hover .image img{
  transform: scale(1.1);

 }


 .home-news-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .news-list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
 }
 .news-list > div{
  flex: 0 0 33.3%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
 }

 .news-item{
    padding: 0.85rem;
    border: 1px solid;
    border-color: transparent;
    transition: all 0.7s;
    display: block;
    border-radius: 1.4rem;
 }
 .news-item .image{
  padding-top: 105%;
  border-radius: 1rem;
  background-color: white;
  transition: all 0.7s;
 }
 .news-item .image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
 }

 .news-item .title{
  font-weight: bold;
  color: #131313;
  margin-top: 1.5rem;
 }
 .news-item .text{
  font-size: 0.85rem;
  color: #181818;
  margin-top: 1rem;

     max-width: 18rem;
 }

 .news-item:hover{
  border-color: #F05223;
 }

 .news-item:hover .image{
  background-color: transparent;
 }

 .news-item .btn-learn-more{
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #131313;
  transition: all 0.7s;
 }
 .news-item .btn-learn-more svg{
  transition: all 0.7s;
  stroke: #131313;
 }

 .news-item:hover .btn-learn-more{
  color: #F05223;
 }
 .news-item:hover .btn-learn-more svg{

  stroke: #F05223;
 }

 .stats{
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
 }

 .stats .item > div:first-child{
  font-size: 1.8rem;
  font-weight: bold;
 }
 .stats .item > div:last-child{
  opacity: 0.3;
  margin-top: 1rem;
 }

 .about-main-section{
    padding-top: 37%;
 }
 .about-main-section .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 0%;
  z-index: -1;
 }
 .about-main-section .overlay{
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
     position: absolute;
     top: 0;
     left: 0;
 }

 .about-main-section .content{
  color: white;
 }

 .about-main-section .content .sub-title{
  color: #F05223;
 }

 .about-main-section .content .title{
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 2rem;
 }

 .flex-center-all{
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .about-video-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .about-video-section .title{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
 }

 .about-video-section .video-container{
     margin-top: 2rem;
 }

 .popup-overlay{
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
     overflow: auto;

 }

 .video-popup{
  position: relative;
  padding-top: 30% !important;

    height: initial !important;
  width: 60% !important;


 }

 .video-popup video{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

 }
.video-popup iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

 .close-btn{
  color: white;
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 1.5rem;
 }

 .news-video-section{
    margin-top: 2rem;
 }

 .video-container{
  position: relative;
  border-radius: 1rem;
  padding-top: 50%;
  overflow: hidden;

 }

 .video-image{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
     background-color: white;
 }

.video-image .play-btn{
    position: relative;
    z-index: 1;
}

 .video-image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

     mix-blend-mode: luminosity;
 }

 .small-text{
  font-size: 0.75rem;
 }


 .about-info-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #F5F5F5;
 }



.col-2-content{
  display: flex;
    flex-wrap: wrap;
 }

 .col-2-content > div{
  flex: 0 0 50%;

 }

 .col-2-content .left{
  padding-right: 2rem;
 }

 .col-2-content .right{
  padding-left: 2rem;
 }

 .col-2-content .left .image{
  padding-top: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;

 }

 .col-2-content .left .image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
 }

 .about-info-section .col-2-content .right .title{
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
 }

 .about-info-section .col-2-content .right .text{
  margin-top: 2rem;
 }

 .about-process-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .about-process-section .content{
    display: flex;
     flex-wrap: wrap;
 }

 .about-process-section .content > div{
  flex: 0 0 50%;
}

.about-process-section .content .right .image{
  padding-top: 50%;
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;

 }

 .about-process-section .content .right img{

  mix-blend-mode: luminosity;
 }

 .about-process-section .left{
  padding-right: 2rem;
 }

 .about-process-section .content .right{
  padding-left: 2rem;
 }

 .about-process-section .content .about-slider-text{
  margin-top: 2rem;
 }
 .about-slider-text{
  overflow: hidden;
 }

 .about-slider-text .slick-list{
  transition: all 0.7s;
 }

 .about-process-section .content .right .text{
  /* font-size: 0.85rem; */
 }

 .about-process-section .content .title{
  font-size: 2rem;
  font-weight: bold;
 }

.about-process-section .content .left > .text{
    margin-top: 2rem;
}

 .scroll-list{
  margin-top: 5rem;
    position: relative;
    border-right: 3px solid rgba(0, 0, 0, 0.3);
    width: fit-content;
    padding-right: 4rem;
 }

 .scroll-list .bar{
  position: absolute;
  width: 3px;
  height: 36px;
  right: -3px;
  background-color: #131313;
  top: 0px;
  transition: all 0.7s;
 }

 .scroll-list li{
  margin-bottom: 3rem;
  display: block;


 }
 .scroll-list li a {
  font-weight: bold;
  opacity: 0.5;
  cursor: pointer;
  color: #181818;
  display: block;
  transition: all 0.7s;
}
 .scroll-list li a:hover{

  opacity: 1;
 }

 .scroll-list li a.active{
  opacity: 1;
 }

 .scroll-list li:last-child{
  margin-bottom: 0;
 }

 .ss-scroll{
  background-color: #131313;
  width: 2px;
  opacity: 1;
 }

 .ss-wrapper {

  border-right: 2px solid rgba(0, 0, 0, 0.3);
}

.about-last-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}
.about-last-section .title{
  font-size: 2rem;
  font-weight: bold;
}
.about-last-section .btn-container{
  margin-top: 2rem;
}

.brands-section{
  padding-bottom: 4rem;
    padding-top: 2rem;
}

.brands-section .container > .title{
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.brands-section .text{
  margin-top: 2rem;
  text-align: center;

}

.brands-section .brand-list{
  margin-top: 2rem;
}


.breadcrumb{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumb a {
  color: #181818;
}

.breadcrumb a:first-child{
  color: #F05223;
}

.news-section{
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.news-section .container > .title{
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.news-section .container > .text{
  margin-top: 2rem;
  text-align: center;

}

.news-section .news-list{
  margin-top: 2rem;
}

.contact-section{
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.contact-section .sub-title{
  color: #F05223;
}

.contact-section .container > .title{
  font-weight: bold;
  font-size: 1.5rem;
    margin-top: 2rem;
}

.contact-section .container > .text{
    max-width: 30rem;
}

.contact-section .content{
  display: flex;
  margin-top: 2rem;
    flex-wrap: wrap;
}


.contact-section .content > div{
  flex: 0 0 33.3%;
  display: flex;
}

.contact-section .content > div:nth-child(1){
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-section .content > div:nth-child(3){
  display: flex;
  justify-content: flex-end;
}

.contact-section .title{
  margin-bottom: 2rem;
}

.contact-section .content .title{
  font-weight: bold;
}

.contact-section .contact-info a {
  color: #181818;
  opacity: 0.5;
}

.contact-section .show-rooms a {
  color: #181818;
  opacity: 0.5;
}

.contact-section .last a {
  font-weight: bold;
  opacity: 1;
}

.contact-section .last svg {
  stroke: #181818;
}

.contact-section .contact-form input {
  width: 100%;
  display: block;
  border-color: #131313;
  color: #131313;
  border-radius: 0.3rem;
}

.contact-section .contact-form textarea {
  width: 100%;
  display: block;
  border-color: #131313;
  height: 180px;
  color: #131313;
  border-radius: 0.3rem;
}

.contact-section .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  pointer-events: none;
}
.contact-section .bg svg{
  height: 100%;
  opacity: 0.02;
}

.categories{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}



.projects-section{
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.projects-section .container > .title{
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
}

.projects-section .container > .text{
  text-align: center;
  margin-top: 2rem;

}


.categories li{
  border-right: 1px solid #707070;
  padding-right: 1rem;
}
.categories li:last-child{
  border-right: 0;
  padding-right: 0;
}
.categories li a{
  color: #212529;
  opacity: 0.5;
  font-weight: bold;
  font-size: 1.2rem;
}
.categories li a.active{

  opacity: 1;


}

.project-list-grid{
  margin-top: 2rem;
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;

}

.project-list-grid > div{
  height: 100%;
}

.project-list-grid > div:nth-child(3n){
}

.project-list-grid > div:nth-child(even){
  grid-row: span 2;

}

.project-list-grid .project-item{
  height: 100%;
}

.project-list-grid .project-item .image{
  padding-top: 70%;
  height: 100%;
  width: 100%;


}
.project-list-grid > div:nth-child(even) .project-item .image{
    padding-top: 140%;


}
.project-list-grid .project-item .image img{

}

.gallery-popup{
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slider{

  height: 100%;
}

.gallery-slider .slick-list{
  height: 100%;

}
.gallery-slider .slick-track{
  height: 100%;

}

.gallery-slide{
height: 100%;

display: flex !important;
align-items: center;
justify-content: center;
width: 100%;

}
.gallery-slide > div{
  position: relative;
height: 100%;
  padding-top: 2rem;
  padding-bottom: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100%;

}
.gallery-slide > div > div{
    position: relative;
    height: 100%;
    width: 100%;

}
.gallery-slide > div .close-btn{
  top: 0;
    right: 0;
}

.gallery-slide .video-popup{
    width: 100% !important;
    height: 100% !important;
}
.gallery-slide img{
    position: absolute;
    width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-slider .slick-dots {
  bottom: 0;
}

.gallery-slider .slick-dots li button:before {
  font-family: 'slick';
  font-size: 7px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .3;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gallery-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: rgb(255, 255, 255);
}

.gallery-slider .slick-dots li {
  margin: 0 0;
}

.brand-section{
  padding-top: 37%;
}

.brand-section .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 0%;
  z-index: -1;
}

.brand-section .overlay {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-section{
  color: white;
  text-align: center;
}

.brand-section .title{
  font-size: 3rem;
  font-weight: bold;

}
.brand-section .text{

    margin-top: 2rem;
    max-width: 30rem;
}
.brand-section .btn-container {
  margin-top: 2rem;
}
.brand-section .btn-main{
  color: white;
  border-color: white;
}
.brand-section .btn-main:hover{
  border-color: #F05223;
}

.brand-section .brand{
  display: inline-block;
}

.gallery-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.gallery-section > .title{
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.gallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-section .gallery{
  margin-top: 2rem;
}
.gallery-item{
  display: block;
  position: relative;

}

.gallery-item .image{
  padding-top: 70%;
  background-color: white;
  transition: all 0.7s;

 }
 .gallery-item .btn-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 .gallery-item .image img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  transition: all 0.7s;
 }
 .gallery-item:hover .image{
  background-color: transparent;

 }
 .gallery-item:hover .image img{
  transform: scale(1.1);

 }

 .brand-info-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .news-info-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .news-info-section .col-2-content .left{
    flex: 0 0 40%;
 }
 .news-info-section .col-2-content .right{
  flex: 0 0 60%;
}

.news-info-section .col-2-content .left img{
  mix-blend-mode: normal;
}

.news-info-section .title{
  font-weight: bold;
  margin-top: 2rem;
}

.news-info-section .text{

  margin-top: 2rem;
}


.other-news-section{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.other-news-section .container > .title{
  font-size: 2rem;
  font-weight: bold;

}

.other-news-section .news-list{
  margin-top: 2rem;
}


.mobile-menu-btn{
  display: none;
  position: relative;
  z-index: 12;
  pointer-events: auto;
}

.menu-btn div {
  width: 72px;
  height: 4px;
  margin: 9px 0;
  transition: all 0.3s;
  background-color: #181818;
}
.menu-btn.clicked div{
    background-color: white;
}


.menu-btn.clicked div:first-child {
  rotate: -135deg;
  translate: 0 5px;
}

.menu-btn.clicked div:last-child {
  rotate: -45deg;
  translate: 0 -7px;
}


.logo-container{
    position: relative;
    z-index: 12;

    transition: all 0.3s;
}

.logo-container a{
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-container a img{
    transition: all 0.3s;
}
.logo-container a img:nth-child(2){
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}


.logo-container.mobile-img a{
    color: white;
}

.logo-container.mobile-img  a img:nth-child(1){
    opacity: 0;
}
.logo-container.mobile-img  a img:nth-child(2){
    opacity: 1;
}

.mobile-menu{
    position: fixed;
    background-color: rgba(0,0,0,0.92);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    display: none;
    align-items: center;
    justify-content: center;
}
.my-body-noscroll-class {
    overflow: hidden;
}


.mobile-menu .nav-wrapper{

}

.mobile-menu .nav-wrapper nav li{
    display: block;
    text-align: center;
    margin-top: 2rem;
}
.mobile-menu .nav-wrapper nav li a{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
.mobile-menu .nav-wrapper nav li a.active{
    color: #F05223;

}

.mobile-lang-list{
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
}

.mobile-lang-list ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.mobile-lang-list ul li a{
    color: white;
    opacity: 0.3;
    font-size: 1.2rem;
    font-weight: bold;
}
.mobile-lang-list ul li a.active{

    opacity:1;
}

*.mobile{
    display: none;
}
.footer-logo a{

    color: white;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo-mobile{
    margin-top: 4rem;
    display: none;
    justify-content: center;
}
.footer-logo-mobile img{
    display: inline-block;
    margin-bottom: 0.5rem;
}
.footer-logo-mobile a{
    text-align: center;
    color: white;
    font-weight: bold;
}


.work-process-container{
    margin-top: 2rem;
}
.work-process-content .image{
    padding-top: 53%;
    border-radius: 0.8rem;
    background-color: white;;
}
.work-process-content .image img{
    mix-blend-mode: luminosity;
}

.work-process-title{
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.work-process-content{
    padding-top: 1rem;
    display: none;

}
.work-process-content .text{
    margin-top: 1rem;

}
.work-process-list .work-process-item:first-child .work-process-content{
    /*display: block;*/

}
.work-process-item{
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(19,19,19,0.3);
    padding-bottom: 1rem;
}
.work-process-item:last-child{
    margin-bottom: 0;
    border-bottom: 0;
}

.plus-btn{
    width: 20px;
    height: 20px;
    position: relative;
}
.plus-btn > div{
    height: 1px;
    background-color: #212529;
    position: absolute;
    width: 100%;
    transition: all 0.3s;
    top: 10px;
}
.plus-btn > div:last-child{
    transform: rotate(270deg);
}
.plus-btn.active > div:last-child{
    transform: rotate(0deg);
}








@media (max-width: 1000px) {

  .nav-bar{
    display: none;
  }
  .lang-container{
    display: none;
  }

  .mobile-menu-btn{
    display: block;
  }
    .home-about-section .card{
        width: initial;
    }

    .header-content {

        height: 92px;

    }

    .close-btn{
        color: white;
        position: absolute;
        top: -2rem;
        right: 0;
        font-size: 1.5rem;
    }



    .main-section {
        padding-top: 0;
        height: calc(100vh - 92px);

    }

    .popup-overlay {

        padding: 1.5rem;

    }
}


@media (max-width: 800px) {
    .about-main-section {
        padding-top:0;
        height: calc(100vh - 92px);
    }
    .about-process-section .content > div {
        flex: 0 0 100%;
        width: 100%;
    }

    .news-list > div {
        flex: 0 0 50%;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .project-list-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .news-info-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .news-info-section .col-2-content .left {
        flex: 0 0 100%;
        margin-top: 2rem;
    }

    .news-info-section .col-2-content .right {
        flex: 0 0 100%;
    }

    *.desktop{
        display: none;
    }

    .mobile{
        display: block;
    }

    .col-2-content > div{
        flex: 0 0 100%;
    }
    .brand-info-section .col-2-content .right {
        margin-top: 1rem;
    }


    .col-2-content .right {
        padding-left: 0;
    }

    .col-2-content .left {
        padding-right: 0;
    }

    .contact-section .content > div {
        flex: 0 0 100%;

    }

    .contact-section .content > div:nth-child(3) {
        display: block;

    }


    .video-popup {

        padding-top: 44% !important;

        width: 100% !important;
    }


    .gallery {

        grid-template-columns: 1fr 1fr;
    }

    .footer-logo-mobile{

        display: flex;

    }

}


@media (max-width: 700px) {

    .brand-section {
        padding-top: 0;
        height: calc(100vh - 92px);
    }

  .brand-list > div {
    flex: 0 0 50%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }


  .project-list > div {
    flex: 0 50%;
  }

    .footer .content {
       flex-direction: column;
    }

    .footer .content > div {
        flex: 0 0 100%;
        display: flex;
    }

    .footer .content > div:nth-child(3) {

        justify-content: center;
    }

    .footer .content > div:nth-child(1){
        gap: 2rem;
    }

    .footer .content > div:nth-child(1) > div:nth-child(1){
        order: 2;
    }

    .footer .content > div:nth-child(1) > div:nth-child(1){
        order: 1;
    }

    .contact-section .content > div:nth-child(1) {

        gap: 2rem;
    }

    .contact-section .content > div:nth-child(1) > div:nth-child(1) {

        order: 2;
    }

    .contact-section .content > div:nth-child(1) > div:nth-child(2) {

        order: 1;
    }

    .contact-form {
        width: 100%;
        max-width: initial;
        margin-top: 2rem;
    }

    .show-rooms-container{
        margin-top: 2rem;
    }

    .copyright {

        text-align: center;

        padding-top: 2rem;
        padding-bottom: 4rem;

    }


    .home-about-section .card-container {
         position: relative;

        display: block;

        height: 100%;
        width: 100%;
    }

    .home-about-section .image{
        width: initial;
    }

    .col-2-content > div {
        flex: 0 0 100%;
    }



    .brands-section .container > .title {
        text-align: left;
        font-size: 2rem;

    }

    .text {
        font-size: 0.8rem;

    }

    .brands-section .text {

        text-align: left;
    }


    .projects-section .container > .title {
        text-align: left;

        font-size: 2rem;
    }

    .projects-section .container > .text {
        text-align: left;

    }

    .categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: left;
    }

    .categories li {

        padding-right: 0.5rem;
    }

    .categories li a {

        font-size: 0.85rem;
    }

    .news-section .container > .title {
        text-align: left;
        font-size: 2rem;

    }

    .news-section .container > .text {
        text-align: left;
    }

    .about-info-section .col-2-content .right .title {
        margin-top: 1rem;
    }

    .home-projects-section .title {
        text-align: left;

        font-size: 1.3rem;
        padding: 0 1rem;
    }
    .home-projects-section .text {
        text-align: left;

        font-size: 0.8rem;
        padding: 0 1rem;
    }
    .view-all-item .title {

        font-size: 1.3rem;
    }


    .slider-next-btn, .slider-prev-btn {

        top: initial;
       bottom: 1rem;
    }

    .main-slider {

        margin-left: 1rem;
        margin-right: 1rem;
    }


    .main-slide .text-1 {

        font-size: 1.3rem;

    }

    .main-slide .text-2 {
        font-size: 0.8rem;
        margin-top: 1rem;

    }

    .gallery-slide > div {

        padding-top: 2rem;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }
}

@media (max-width: 900px) and ( orientation: landscape) {
    .main-slide {
        padding-top: 1rem;
        align-items: initial;

    }
    .main-slide .text-2 {
        font-size: 0.8rem;
        margin-top: 1rem;

    }
    .main-slide .text-1 {

        font-size: 1.3rem;

    }
}


@media (max-width: 500px) {

    .brand-list {

         margin-left: 0;
         margin-right: 0;
    }

  .brand-list > div {
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
  }

    .news-list > div {
        flex: 0 0 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .project-list > div {
        flex: 0 100%;
    }
    .project-list-grid {

        grid-template-columns: repeat(1, 1fr);
    }

    .about-video-section .title {
        font-size: 1.3rem;

    }

    .other-news-section .container > .title {
        font-size: 1.5rem;

    }

    .gallery {

        grid-template-columns: 1fr ;
    }

    .btn-learn-more {
       font-size: 0.8rem;
    }
    .about-last-section {
        padding-top: 2rem;
        padding-bottom: 2rem;

    }

    .about-last-section .title {
        font-size: 1.3rem;

    }

    .breadcrumb a{
        font-size: 0.8rem;
    }

}

@media (max-width: 400px) {

    .stats {
        flex-direction: column;
    }


}
