@charset "UTF-8";
:root {
  --bs-primary: #D3A071;
  --bs-primary-rgb: 211, 160, 113;
  --bs-primary-dark: #D3A071;
  --bs-primary-light: #F6EEE6;
  --bs-primary-light-rgb: 246, 238, 230;
  --bs-body-color: #707070;
  --bs-gray: #ADADAD;
  --bs-gray-dark: #4A4A49;
  --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), 0.3);
  --bs-primary-border-subtle: rgba(var(--bs-primary-rgb), 0.6);
  --header-offset-height: 78px;
}
@media (min-width: 768px) {
  :root {
    --header-offset-height: 96px;
  }
}
@media (min-width: 992px) {
  :root {
    --header-offset-height: 0px;
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
body {
  /*font-family: "Inter", sans-serif;*/
  font-family: "Roboto", sans-serif;
}

textarea {
  resize: none;
}

iframe {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.nav-link {
  font-family: "Urbanist", sans-serif;
}

section {
  position: relative;
  overflow: hidden;
  font-weight: 300;
  line-height: 1.75;
  color: var(--bs-gray-dark);
  font-size: 15px;
}

.ff-urbanist {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-sen {
  font-family: "Sen", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.text-underline {
  text-decoration: underline;
}

.fw-thin {
  font-weight: 100 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.fs-italic {
  font-style: italic;
}

.anchor-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 3;
}

.z-index-1 {
  z-index: 1;
}

.bg-primary-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-light-rgb), var(--bs-bg-opacity)) !important;
}

.h-60 {
  height: 60% !important;
}

.fs-24px {
  font-size: 24px !important;
}

.fs-18px {
  font-size: 18px !important;
}

.lh-mlg {
  line-height: 1.85 !important;
}

.fs-14px {
  font-size: 14px;
}

.mx-w-536 {
  max-width: 536px;
}

@media (min-width: 768px) {
  .fs-md-24px {
    font-size: 24px !important;
  }
  .fs-md-18px {
    font-size: 18px !important;
  }
}
@media (min-width: 992px) {
  .order-lg-n1 {
    order: -1;
  }
  .position-lg-absolute {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .fs-lg-18px {
    font-size: 18px !important;
  }
}
.btn-primary,
.menu-drawer a.text-primary,
.social-media a {
  transform: scale(1);
  transition: transform 0.3s linear;
}
.btn-primary:hover,
.menu-drawer a.text-primary:hover,
.social-media a:hover {
  transform: scale(1.1);
}

.menu-drawer a.text-primary,
.social-media a {
  display: inline-block;
}

.project-img-content {
  position: relative;
}
.project-img-content .legend {
  padding: 2px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 9px;
  color: #333333;
}

.video-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ou 'cover' selon le rendu voulu */
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0;
  --bs-btn-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-bg: transparent;
  --bs-btn-hover-bg: transparent;
  --bs-btn-active-color: var(--bs-primary);
  --bs-btn-active-bg: transparent;
  border: 0;
  margin-top: 25px;
}
.btn span {
  color: var(--bs-gray-dark);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--bs-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.content-section-row {
  position: relative;
}

.bg-img-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-img-fill._object-top img {
  object-position: top;
}
.bg-img-fill._object-right img {
  object-position: right;
}
.bg-img-fill._object-bottom img {
  object-position: bottom;
}
.bg-img-fill._object-left img {
  object-position: left;
}
.bg-img-fill + div {
  position: relative;
  z-index: 2;
}
.bg-img-fill img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.container-limited {
  max-width: 1920px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.dash-lines-grid {
  position: relative;
  width: 100%;
  height: 69px;
}
.dash-lines-grid:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20.715" height="3.712" viewBox="0 0 20.715 3.712"><rect id="Rectangle_605" data-name="Rectangle 605" width="20.715" height="3.712" fill="%23f0f0f0"/></svg>');
  background-size: 21px 21px;
  background-position: 0px 0px;
}

.pattern-dash {
  padding: 7px 25px 0px 8px;
}
.pattern-dash img {
  width: 100%;
}

.subline-text {
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--bs-primary);
  text-transform: lowercase;
  opacity: 1;
}

.top-line-dash {
  text-align: center;
  margin-top: 3px;
  margin-bottom: 3px;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.project-label {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--bs-gray-dark);
}
.project-label span {
  color: var(--bs-gray);
}

@media (min-width: 992px) {
  .container-limited-2 {
    max-width: 1350px;
  }
}
@media (min-width: 992px) and (max-width: 1499px) {
  .container-limited-2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .container-limited-2 {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container-limited-2 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1500px) {
  .container-limited-2 {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  .container-limited-2 {
    max-width: 1600px;
  }
}
@media (min-width: 1700px) and (max-width: 1750px) {
  .container-limited-2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header-fixed-offset {
  height: var(--header-offset-height);
}

.navbar {
  --bs-navbar-padding-y: 12px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1030;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
.navbar .navbar-brand img {
  max-height: 44px;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .navbar .navbar-brand img {
    max-height: 54px;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-brand img {
    max-height: 62px;
  }
}
@media (min-width: 768px) {
  .navbar {
    --bs-navbar-padding-y: 16px;
  }
  .navbar .container {
    max-width: 1600px;
    align-items: start;
  }
}
@media (min-width: 768px) and (max-width: 1599px) {
  .navbar .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1399px) {
  .navbar .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .navbar .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .navbar {
    --bs-navbar-padding-y: 40px;
  }
  .navbar .navbar-nav {
    column-gap: 85px;
  }
  .navbar .navbar-nav .nav-link {
    --bs-nav-link-padding-y: 0;
    --bs-navbar-nav-link-padding-x: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-gray);
    position: relative;
  }
  .navbar .navbar-nav .nav-link:after {
    content: "";
    width: 12px;
    height: 1.6px;
    background-color: var(--bs-gray);
    position: absolute;
    bottom: -1px;
    left: -2px;
    opacity: 0;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-nav .nav-link:hover {
    color: var(--bs-primary);
  }
  .navbar .navbar-nav .nav-link:hover:after {
    opacity: 1;
    background-color: var(--bs-primary);
  }
}
@media (min-width: 1400px) {
  .navbar {
    --bs-navbar-padding-y: 70px;
  }
}
.navbar .navbar-toggler {
  margin-right: -5px;
  border: 0;
  color: var(--primary);
}
.navbar .navbar-toggler.collapsed {
  color: #585858;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  background-image: none;
  font-size: 26px;
}
@media (min-width: 768px) {
  .navbar .navbar-toggler .navbar-toggler-icon {
    font-size: 32px;
  }
}

.menu-drawer {
  position: fixed;
  top: 0;
  z-index: 1039;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #d2a071;
  border-left: 1px solid #eee;
  transform: translateX(100%);
  max-width: 100%;
  width: 425px;
  transition: all ease 0.35s;
  padding: 40px 30px 20px;
  font-family: "Urbanist", sans-serif;
  color: var(--bs-gray-dark);
  overflow: auto;
  height: 100%;
  font-size: 14px;
}
.menu-drawer.extended {
  background-color: #F6EEE6;
}
.menu-drawer.extended .mobile-nav {
  display: none;
}
.menu-drawer.extended .extended-content {
  display: block;
}
.menu-drawer .extended-content {
  display: none;
}
@media (min-width: 370px) {
  .menu-drawer {
    font-size: 16px;
  }
}
@media (min-width: 400px) {
  .menu-drawer {
    font-size: 18px;
  }
}
.menu-drawer .icon-close img {
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .menu-drawer .icon-close img {
    height: 23px;
    width: 23px;
  }
}
@media (min-width: 992px) {
  .menu-drawer .icon-close img {
    height: 31px;
    width: 31px;
  }
}
.menu-drawer:after {
  position: absolute;
  bottom: 54px;
  left: 18px;
  right: 18px;
  content: "";
  opacity: 0.2;
  background-image: url("../img/icons/ng-menu-watermark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  height: 212px;
  z-index: -1;
}
@media (min-width: 400px) {
  .menu-drawer:after {
    height: 245px;
  }
}
@media (min-width: 768px) {
  .menu-drawer:after {
    background-size: contain;
    height: 150px;
    background-position: center;
  }
}
.menu-drawer.active {
  transform: translateX(0);
}
.menu-drawer .social-media {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.menu-drawer .social-media li + li {
  margin-top: 5px;
}
.menu-drawer .menu-ng-logo {
  max-width: 150px;
}
@media only screen and (min-width: 370px) and (max-width: 399px) {
  .menu-drawer .menu-ng-logo {
    max-width: 162px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 767px) {
  .menu-drawer .menu-ng-logo {
    max-width: 182px;
  }
}
.menu-drawer .logo-top {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .menu-drawer .logo-top {
    margin-top: 40px;
  }
}
.menu-drawer .mobile-nav {
  color: #4a4a49;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 40px;
}
.menu-drawer .mobile-nav .nav-item:not(:first-child) {
  margin-top: 10px;
}
.menu-drawer .mobile-nav .nav-link {
  padding: 0;
  position: relative;
  margin-left: 4px;
}
.menu-drawer .mobile-nav .nav-link:hover, .menu-drawer .mobile-nav .nav-link.active {
  color: white;
}
.menu-drawer .mobile-nav .nav-link:hover:after, .menu-drawer .mobile-nav .nav-link.active:after {
  content: "_";
  position: absolute;
  color: white;
  top: 2px;
  left: -11px;
}
.menu-drawer p {
  margin-bottom: 10px;
}
.menu-drawer .text-address {
  max-width: 150px;
}
.menu-drawer .sidebar-quote {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}
@media (min-width: 576px) {
  .menu-drawer {
    background-color: #F6EEE6;
    padding: 40px 20px 20px;
  }
  .menu-drawer .extended-content {
    display: block;
  }
  .menu-drawer:after {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .menu-drawer {
    padding: 50px 30px;
    font-size: 16px;
  }
  .menu-drawer .social-media {
    margin-top: 32px;
  }
  .menu-drawer p {
    margin-bottom: 1rem;
  }
  .menu-drawer .sidebar-quote {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .menu-drawer {
    padding: 120px 40px;
  }
  .menu-drawer:after {
    height: 320px;
  }
  .menu-drawer .logo-top {
    margin-bottom: 50px;
  }
  .menu-drawer .menu-ng-logo {
    max-width: 212px;
  }
}

.sidebar-toggle-close {
  position: absolute;
  cursor: pointer;
  top: 27px;
  right: 20px;
}
@media (min-width: 768px) {
  .sidebar-toggle-close {
    top: 35px;
    right: 45px;
  }
}
@media (min-width: 992px) {
  .sidebar-toggle-close {
    top: 44px;
    right: 40px;
  }
}

@media (max-width: 575px) {
  .navbar-brand img {
    max-width: 200px;
  }
}
footer {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #4A4A49;
}
footer p:last-child {
  margin-bottom: 0;
}
footer a:hover {
  color: var(--bs-primary);
}
footer .footer-dash {
  overflow: hidden;
  background-image: url(/img/footer-grid.svg);
  background-repeat: repeat;
  background-position: center center;
}
footer .footer-dash img {
  height: 45px;
  object-fit: cover;
  object-position: center;
  visibility: hidden;
}
@media (min-width: 768px) {
  footer .footer-dash img {
    height: 69px;
    object-position: left;
    margin-left: 3px;
  }
}
footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 40px;
}
footer .container {
  max-width: 1600px;
}
@media (max-width: 1599px) {
  footer .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1399px) {
  footer .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
footer .social-links {
  gap: 8px;
}
footer .social-links .nav-link {
  padding: 5px 5px;
  line-height: 1;
  text-align: center;
  color: #4A4A49;
}
footer .social-links .nav-link:hover {
  color: var(--bs-primary);
}
@media (min-width: 992px) {
  footer .social-links {
    margin-right: -5px;
  }
  footer .footer-bottom {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 367px) {
  footer .copywrite {
    max-width: 240px;
    margin: 0 auto;
  }
}

.scroller-helper {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1030px) {
  .scroller-helper {
    left: 2%;
  }
}
@media only screen and (min-width: 1031px) and (max-width: 1140px) {
  .scroller-helper {
    left: 3%;
  }
}
@media only screen and (min-width: 1141px) and (max-width: 1199px) {
  .scroller-helper {
    left: 4%;
  }
}
@media only screen and (min-width: 1300px) {
  .scroller-helper {
    left: 3%;
  }
}
@media (min-width: 992px) {
  .scroller-helper {
    display: block;
  }
}
@media (min-width: 1600px) {
  .scroller-helper {
    left: 69px;
  }
}
.scroller-helper:after {
  content: "";
  width: 11px;
  height: 17px;
  display: inline-block;
  background-image: url(../img/icons/icon-mouse.svg);
  background-size: contain;
  position: relative;
  left: -5px;
  margin-top: 10px;
}
.scroller-helper .scroller-bar {
  position: relative;
  width: 0.5px;
  height: 127px;
  background-color: rgba(199, 199, 199, 0.5);
}
.scroller-helper .scroller-bar:before {
  content: "";
  width: 2px;
  height: 28px;
  background-color: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 0;
}
.scroller-helper .percentage-bar {
  width: 2px;
  background-color: var(--bs-primary);
}

.percentage-bar {
  width: 2px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bs-primary);
  animation: all 0.5s ease-in-out;
}

.nav-categories-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff); /* adapte la couleur */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Quand ça déborde */
.nav-categories-wrapper[data-overflow=true]::after {
  opacity: 1;
}

.nav-categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  column-gap: 40px;
  row-gap: 15px;
  justify-content: flex-start;
}
.nav-categories::-webkit-scrollbar {
  display: none;
}
.nav-categories .nav-item {
  flex: 0 0 auto;
  padding: 0;
}
.nav-categories .nav-item .nav-link {
  font-size: 15px;
  color: var(--bs-gray);
  transition: text-shadow 0.3s;
  letter-spacing: 0.0245em;
  padding: 0;
}
.nav-categories .nav-item:hover .nav-link, .nav-categories .nav-item.active .nav-link {
  text-shadow: 0.48px 0.48px 0 var(--bs-gray), 0.48px 0.48px 0 var(--bs-gray);
}
@media (min-width: 992px) {
  .nav-categories {
    justify-content: flex-start;
    column-gap: 60px;
    overflow-x: visible;
  }
}

/* Indicateur "swipe" */
.nav-categories-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, transparent, white);
  opacity: 0;
  transition: opacity 0.3s;
}

/* S’affiche seulement quand ça déborde */
.nav-categories[data-overflow=true] + .nav-categories-wrapper::after {
  opacity: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.projects-grid img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.projects-grid .gallery-item {
  overflow: hidden;
  transition: 0.25s ease-in-out;
  -webkit-animation: fadeLeft 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
  animation: fadeLeft 1s cubic-bezier(0.77, 0, 0.175, 1) 1;
}
.projects-grid .gallery-item:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.ng-img-wrap img {
  max-width: 195px;
}
@media (min-width: 360px) {
  .ng-img-wrap img {
    max-width: 215px;
  }
}
@media (min-width: 576px) {
  .ng-img-wrap img {
    max-width: 378px;
  }
}
@media (min-width: 992px) {
  .ng-img-wrap img {
    max-width: 100%;
  }
}

.text-atel {
  margin-top: -75px;
  margin-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .text-atel {
    position: absolute;
    top: 28px;
    margin: 0;
    left: 156px;
  }
}
@media (min-width: 992px) {
  .text-atel {
    margin-top: -75px;
    margin-left: -100px;
  }
}

.text-outline {
  font-family: "Urbanist", sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 1.2;
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--bs-primary);
}
@media (min-width: 360px) {
  .text-outline {
    font-size: 56px;
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .text-outline {
    position: relative;
    top: -92px;
    left: 185px;
    display: inline-block;
  }
}
@media (max-width: 359px) {
  .text-outline {
    position: relative;
    top: -72px;
    left: 170px;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .text-outline {
    font-size: 121px;
  }
}
@media (min-width: 992px) {
  .text-outline {
    font-size: 161px;
  }
}

.project-slider .project-name {
  margin-top: 30px;
}
.project-slider .swiper-button-prev:after {
  content: url("../img/icons/arrow-left_outline.svg");
  font-size: initial;
}
.project-slider .swiper-button-next:after {
  content: url("../img/icons/arrow-right_outline.svg");
  font-size: initial;
}
.project-slider .nav-pagination-container {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 2;
  width: 50%;
}
.project-slider .nav-pagination-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.project-slider .nav-pagination-wrap .swiper-pagination, .project-slider .nav-pagination-wrap .swiper-button-next, .project-slider .nav-pagination-wrap .swiper-button-prev {
  position: relative;
}
.project-slider .nav-pagination-wrap .swiper-button-next, .project-slider .nav-pagination-wrap .swiper-button-prev {
  opacity: 1;
  left: 0;
  right: 0;
  height: auto;
  margin: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-slider .nav-pagination-wrap .swiper-button-next.swiper-button-disabled, .project-slider .nav-pagination-wrap .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
.project-slider .nav-pagination-wrap .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.project-slider .nav-pagination-wrap .swiper-pagination-fraction {
  font-family: "Urbanist", sans-serif;
  width: auto;
  bottom: 0;
  top: 0;
  color: var(--bs-gray);
}
.project-slider .nav-pagination-wrap .swiper-pagination-fraction .swiper-pagination-current {
  color: var(--bs-gray-dark);
}

.project-box {
  position: relative;
  width: 100%;
  --bs-aspect-ratio: 71.5%;
}
.project-box:before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.project-box:after {
  position: absolute;
  bottom: 11px;
  left: 12px;
  content: "";
  width: 82.5%;
  height: 21px;
  background-image: url("../img/project-dashline.svg");
  background-size: contain;
  background-position: left;
}
.project-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-box .project-img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.project-box .product-info {
  padding: 73px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: rgba(29, 18, 18, 0.4);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-box .product-info:after {
  content: "";
  width: 13px;
  height: 205px;
  background-image: url("../img/vertical-plus.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: top center;
  display: inline-block;
  margin-top: 17px;
}
.project-box .product-info div:has(> .theme-label) {
  transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}
.project-box .product-info .theme-label {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}
.project-box .product-info:after {
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.5s;
}
.project-box:hover .product-info {
  opacity: 1;
}
.project-box:hover .product-info div:has(> .theme-label) {
  transform: translateY(0);
}
.project-box:hover .product-info .theme-label, .project-box:hover .product-info:after {
  opacity: 1;
  transform: translateY(0);
}

.theme-label {
  font-family: "Urbanist", sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--bs-primary);
  line-height: 1.2;
}
.theme-label span {
  color: #fff;
}

.achievement-item .achievement-content {
  padding: 20px 30px;
  background-color: rgba(49, 38, 38, 0.53);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.achievement-item .achievement-content .title {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
  color: #fff;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-10px);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.achievement-item .achievement-content:after {
  content: "";
  width: 19px;
  height: 14px;
  background-image: url("../img/icons/arrow-right_outline_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  display: inline-block;
  margin-top: 4px;
  opacity: 0;
  transform: translateX(-10px);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.achievement-item .achievement-content:hover {
  opacity: 1;
}
.achievement-item .achievement-content:hover .title, .achievement-item .achievement-content:hover:after {
  opacity: 1;
  transform: translateX(0);
}
.achievement-item.inprogress img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.achievement-item.inprogress .achievement-content:after {
  display: none;
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-row {
  margin-top: 50px;
}

@media (min-width: 320px) {
  .atelier-highlight {
    font-size: 16px;
    line-height: 28px;
    color: #D3A071;
    padding-bottom: 68px;
  }
  .atelier-paragraph {
    font-size: 16px;
    line-height: 24px;
  }
  .atelier-img {
    padding-bottom: 50px;
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  .atelier-highlight {
    font-size: 16px;
    line-height: 28px;
    color: #D3A071;
    padding-bottom: 68px;
  }
  .atelier-img {
    padding-bottom: 50px;
    max-width: 350px;
  }
}
@media (min-width: 1024px) {
  .atelier-img {
    padding-right: 50px;
  }
  .atelier-highlight {
    font-size: 18px;
    line-height: 28px;
    color: #D3A071;
    padding-bottom: 68px;
  }
  .atelier-paragraph {
    font-size: 16px;
    line-height: 24px;
  }
}
.inner-banner {
  position: relative;
  height: 400px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .inner-banner {
    height: 543px;
  }
}
.inner-banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.inner-banner:after {
  position: absolute;
  bottom: -9px;
  left: 40px;
  content: "";
  width: 50.5%;
  height: 21px;
  background-image: url("../img/project-dashline.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

@media (min-width: 1440px) {
  .atelier-img {
    padding-right: 109px;
  }
  .atelier-highlight {
    font-size: 18px;
    line-height: 34px;
    color: #D3A071;
    padding-bottom: 68px;
  }
  .atelier-paragraph {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1023px) {
  .atelier-adj {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.project-inner-slider-container {
  position: relative;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .project-inner-slider-container {
    padding-bottom: 0;
  }
}
.project-inner-slider-container .swiper-button-prev, .project-inner-slider-container .swiper-button-next {
  --swiper-navigation-sides-offset: 0px;
  top: auto;
  bottom: 0;
}
.project-inner-slider-container .swiper-button-prev.swiper-button-disabled, .project-inner-slider-container .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
@media (min-width: 992px) {
  .project-inner-slider-container .swiper-button-prev, .project-inner-slider-container .swiper-button-next {
    --swiper-navigation-sides-offset: -36px;
    transform: rotate(90deg);
  }
}
.project-inner-slider-container .swiper-button-prev:after {
  content: url("../img/icons/arrow-left_outline.svg");
  font-size: initial;
}
@media (min-width: 992px) {
  .project-inner-slider-container .swiper-button-prev {
    top: 10px;
    bottom: auto;
    left: auto;
    right: var(--swiper-navigation-sides-offset, 10px);
  }
}
.project-inner-slider-container .swiper-button-next:after {
  content: url("../img/icons/arrow-right_outline.svg");
  font-size: initial;
}
@media (min-width: 992px) and (max-width: 1999px) {
  .project-inner-slider-container .swiper-button-next {
    bottom: -10px;
  }
}
.project-inner-slider-container .project-inner-slider {
  gap: 17px;
}
.project-inner-slider-container .project-inner-slider .project-item {
  overflow: hidden;
}
.project-inner-slider-container .project-inner-slider .project-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 540px) {
  .project-inner-slider-container .project-inner-slider .project-item img {
    height: 202px;
  }
}
@media (min-width: 992px) {
  .project-inner-slider-container .project-inner-slider {
    height: 591px;
  }
  .project-inner-slider-container .project-inner-slider .project-item img {
    height: 135px;
  }
}
@media (min-width: 1200px) {
  .project-inner-slider-container .project-inner-slider {
    height: 861px;
  }
  .project-inner-slider-container .project-inner-slider .project-item img {
    height: 202px;
  }
}

.project-full-details {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .project-full-details {
    font-size: 18px;
  }
}
.project-full-details p {
  margin-bottom: 30px;
}

.product-top-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .product-top-text {
    font-size: 24px;
    /*max-width: 536px;*/
  }
}

@media (min-width: 992px) {
  .project-left-column {
    max-width: 260px;
  }
}
.project-entry-title, .project-subtitle {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 1.223;
}

.project-entry-title {
  font-weight: 500;
  color: #7E7D7D;
  margin-bottom: 12px;
}
.project-entry-title .span {
  color: var(--bs-gray);
}

.project-subtitle {
  color: var(--bs-primary);
  margin-bottom: 25px;
}

.project-content-details .content-wrapper {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--bs-gray-dark);
}
.project-content-details .content-wrapper span {
  color: var(--bs-body-color);
}
@media (min-width: 992px) {
  .project-content-details .content-wrapper p {
    margin-bottom: 25px;
  }
}

.project-main-slider {
  margin-bottom: 30px;
}
.project-main-slider .swiper-slide .image-wrapper {
  position: relative;
  width: 100%;
  --bs-aspect-ratio: 72%;
}
.project-main-slider .swiper-slide .image-wrapper:before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.project-main-slider .swiper-slide .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-main-slider .slide-info-wrapper {
  padding-top: 20px;
  padding-bottom: 0px;
}
.project-main-slider .slide-info {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
}
.project-main-slider .nav-pagination-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #fff;
  z-index: 2;
  width: 50%;
  height: 15px;
}
.project-main-slider .swiper-pagination-fraction {
  bottom: 0;
  top: 0;
  text-align: right;
  color: var(--bs-gray);
}
.project-main-slider .swiper-pagination-fraction .swiper-pagination-current {
  color: var(--bs-gray-dark);
}
.project-main-slider .swiper-pagination {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.project-thumb-slider-cotainer {
  position: relative;
  padding-left: 32px;
  padding-right: 32px;
  --swiper-navigation-sides-offset: -5px;
}
.project-thumb-slider-cotainer .swiper-button-prev:after {
  content: url("../img/icons/arrow-left_outline.svg");
  font-size: initial;
}
.project-thumb-slider-cotainer .swiper-button-next:after {
  content: url("../img/icons/arrow-right_outline.svg");
  font-size: initial;
}
.project-thumb-slider-cotainer .swiper-slide {
  padding: 2px;
}
.project-thumb-slider-cotainer .swiper-slide .thumb-wrapper {
  position: relative;
  width: 100%;
  --bs-aspect-ratio: 80%;
}
.project-thumb-slider-cotainer .swiper-slide .thumb-wrapper:before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.project-thumb-slider-cotainer .swiper-slide .thumb-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-thumb-slider-cotainer .swiper-slide.swiper-slide-thumb-active .thumb-wrapper {
  outline: 2px solid var(--bs-primary);
}

.project-quote {
  background-color: #F6EEE6;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
}
.project-quote .project-quote-wrap {
  padding: 57px 24px 42px;
  max-width: 498px;
}
@media (min-width: 576px) {
  .project-quote .project-quote-wrap {
    padding: 67px 52px 52px;
  }
}
.project-quote .quote-text {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.223;
  margin-bottom: 35px;
}
.project-quote .name {
  font-size: 12px;
  color: var(--bs-primary);
  text-align: right;
  padding-right: 26px;
}

/*# sourceMappingURL=app.css.map */
