:root {
  --primary-color: #dc3545;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --light-yellow-color: #f9f4ef;
  --primary-red: #e68699;
  --dark-font: #101820;
  --blue-back: #007cba;
  --yellow-color: #e0c6ad;
  --light-line-color: #b4b4b4;
  --red-color: #d6001c;
  --white-back: #fbfbfb;
  --green-color: #00b388;
  --green-back: #bcddd5;
  --blue-background: #c8c5ed;
  --blue-color:#485cc7;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik-Light";
  src: url("../fonts/Rubik-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik-SemiBold";
  src: url("../fonts/Rubik-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mulish-Light";
  src: url("../fonts/Mulish-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mulish-Bold";
  src: url("../fonts/Mulish-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}



body {
  font-family: "Mulish", "Rubik", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0 auto;
  max-width: 1920px;
  min-width: 576px;
  overflow-x: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", "Mulish", "Arial", sans-serif;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 遮罩层样式 */
.overlay-mask {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1920px;
  min-width: 576px;
  width: 100%;
  height: calc(0.5 * 100vw * 0.33);
  /* 覆盖页面1/3 */
  /* background-color: rgba(0, 0, 0, 0.5); 半透明黑色 */
  background: linear-gradient(to bottom, #050505 0%, rgba(5, 5, 5, 0) 100%);
  z-index: 3;
  transform: translateY(-100%);
  /* 初始状态在屏幕上方 */
  transition: transform 0.5s ease;
}

.overlay-mask.show {
  transform: translateY(0);
  /* 显示状态 */
}

.section-space {
  margin-top: clamp(2.5rem, 3.25vw, 3rem);
  margin-bottom: clamp(2.5rem, 3.25vw, 3rem);
}

.space-container {
  background-color: #fff;
}

.hero-fallback-bg {
  background-image: url("../images/clientBK_T.png");
}

.btn-arrow {
  color: var(--primary-color);
  font-size: calc(100vw * 0.0075);
  transition: transform 0.3s ease;
}

.section-title-L {
  font-size: clamp(1.5rem, calc(100vw * 0.02575), 3.25rem);
  font-family: "Rubik", "Mulish", "Arial", sans-serif;
  color: #212529;
  margin: calc(100vw * 0.015) 0;
  line-height: 1.2;
}

.testimonials {
  background-color: #fff;
  height: auto;
  width: 100%;
  padding-left: 0.375rem;
  margin-bottom: calc(100vw * 0.057 + 8px);
}

/* Custom Button */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow-color);
  color: #212529;
  padding: calc(100vw * 0.00375) calc(100vw * 0.00875);
  font-size: clamp(0.75rem, 1.75vw, 1rem);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link {
  font-family: 'Rubik', 'Rubik-Light', 'Arial', sans-serif;
  margin: 0 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1.125rem) !important;

}

.nav-link:hover {
  transition: color 0.3s ease;
  font-weight: 700 !important;
}

.nav-link-arrow {
  font-size: clamp(0.875rem, 1vw, 1.125rem) !important;
  font-weight: 300;
}

.btn-custom:hover {
  background: #e9ecef;
  color: #dc3545;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
  color: #dc3545;
  font-size: clamp(0.75rem, 1.75vw, 1rem);
  transition: transform 0.3s ease;
}

.btn-custom:hover .btn-arrow {
  transform: translateX(3px);
}

.testimonial-section {
  /* background-color: #f8f9fa; */
  padding: 6px 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.testimonial-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
  padding: 0 20px;
  background-color: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  padding: 10px 30px 10px 10px;
}


.testimonial-content {
  padding-left: 5px;
}

.testimonial-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Mulish", "Arial", sans-serif;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.testimonial-author {
  font-size: 1rem;
  color: #212529;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Rubik", "Arial", sans-serif;
}

.testimonial-title {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 400;
  font-family: "Mulish", "Arial", sans-serif;
}

.section-title {
  /* font-size: 3.75rem; */
  font-size: clamp(1.25rem, calc(100vw * 0.0375), 3.25rem);
  font-family: "Rubik-Light", "Mulish-Light", "Arial", sans-serif;
}

.section-title-50 {
  font-size: calc(100vw * 0.03);
  font-family: "Rubik-Light", "Mulish-Light", "Arial", sans-serif;
  font-weight: bold;
}

.section-title .section-title-M {
  font-size: clamp(1.25rem, 2.5vw, 3.25rem);
  font-family: "Rubik", "Mulish", "Arial", sans-serif !important;
}

.section-description {
  /* font-size: 1rem; */
  font-size: clamp(0.675 rem, calc(100vw * 0.01), 1rem);
}

.section-description-big {
  /* font-size: 1.875rem; */
  padding-top: 0.75rem;
  font-size: calc(100vw * 0.0175);
  font-family: "Rubik-Light", "Mulish-Light", "Arial", sans-serif;
  line-height: 1.2;
}

.article-card {
  background: #fff;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 30px;
  height: 100%;
  cursor: pointer;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: lowercase;
  color: var(--dark-color);
}

.category-retail,
.category-news,
.category-sustainability {
  color: var(--dark-color);
}

.btn-shopfit {
  color: #00b5e2;
}

.category-retail span,
.btn-retail,
.article-card:hover .category-retail {
  color: #e68699;
}

.category-news span,
.btn-news,
.article-card:hover .category-news {
  color: #485cc7;
}

.category-sustainability span,
.btn-sustainability,
.article-card:hover .category-sustainability {
  color: #00b388;
}

.article-image-container {
  position: relative;
  width: 100%;
  min-height: 250px;
  margin-bottom: 25px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
  position: absolute;
  mix-blend-mode: revert;
  top: 0;
  left: 0;
}

.article-image:hover{
  width: 105%;
  filter:none;
}

/* .article-image-back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: revert;
  /* mix-blend-mode: revert-layer; */
} */

.article-card:hover .article-image-back {
  opacity: 1;
}

/* 悬停时文字颜色变化 */
.article-card:hover .article-title_red {
  color: #e91e63;
  /* 默认红色 */
}

.article-card:hover .article-title_blue {
  color: #2196f3;
  /* 默认蓝色 */
}

.article-card:hover .article-title_green {
  color: #4caf50;
  /* 默认绿色 */
}

.article-title {
  font-size: 1.35rem;

  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-description {
  border-top: 1px solid #d9d9d9;
  padding-top: 10px;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.content-m .image-caption .container
{
  padding:0;
  margin: 0;
}
.padding_left {
  padding-left: clamp(1.6rem, 2vw, 3rem);
}

.padding_center {
  padding: 0 clamp(0.8rem, 1vw, 1.5rem);
}

.padding_right {
  padding-right: clamp(1.6rem, 2vw, 3rem);
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.read-more-btn:hover {
  opacity: 0.8;
}

.divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 20px 0 30px 0;
}
 .ratio
 {
  margin:2rem 0;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero-video,
.hero-video-clients {
    width: 100%;
    height: 99.95%;
    object-fit: cover;
    object-position: top;
}
.contact-section {
  max-height: 100vh;
  background-image: url("../images/contact.png ");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.contact-label {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5rem;
}

.hero-content {
  padding: 60px 0;
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 300;
  font-family: "Rubik-Light", "Rubik", "Mulish", "Arial", sans-serif;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 600px;
}

.contact-cards {
  margin-top: 4rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 3rem 2rem;
  text-align: center;
  /* height: 100%; */
  transition: all 0.3s ease;
  margin: 0 0rem 1.75rem 0rem;
}

.contact-card-left {
  float: left;
  width: 40%;
  margin-right: 10%;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-right {
  float: right;
  width: 40%;
  margin-left: 10%;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cards .row {
  overflow: hidden;
}

.contact-card:hover {
  background: rgba(214, 0, 28, 0.85);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-btn {
  background: transparent;
  /* border: 2px solid white; */
  color: white;
  padding: 1rem 2rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-btn:hover {
  /* background: white; */
  color: white;
  transform: translateY(-2px);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

.contact-card-left:hover .card-title-left::before {
  content: "\A Based in Ireland \A   or Europe?";
  display: block;
  white-space: pre-line;
}

.contact-card-left:hover .card-title-left {
  font-size: 0;
}

.contact-card-left:hover .card-title-left::before {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  /* line-height: 1.3; */
}

/* Animation for cards */
.contact-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.contact-card:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-section {
  /* position: relative; */
  overflow: hidden;
  padding: 0;

  background-color: #fff;
}

.footer-section .container-fluid {
  padding: 0 !important;
  margin: 0 !important;
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.footer-logo-container {
  background-image: url("../images/footBk.png");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  /* height: 100%; */
}

/* .footer-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 150px;

    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
} */

.footer-content {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
}

.logo-section {
  margin-bottom: 1rem;
  height: clamp(150px, 12.5vw, 300px);
}

.logo {
  display: flex;
  align-items: center;
  /* margin: calc(1rem + 100vh * 0.025); */
  margin-left: 0;
}

.logo-icon {
  max-width: 235px;
  max-height: 96px;
  height: clamp(50px, 5vw, 96px);
  width: clamp(140px, 12.2vw, 236px);
  background-image: url("../images/footlog.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  position: relative;
}

.tagline {
  color: #6c757d;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin-left: 65px;
}

.tagline::before {
  content: "▶";
  color: #dc3545;
  margin-right: 8px;
  font-size: 0.7em;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 6px;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
}

.nav-menu a {
  color: #6c757d;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #dc3545;
}

.office-section {
  padding-right: 1.25rem;
  padding-top: 2.75rem;
}

.office-section h5 {
  font-family: "Mulish", "Rubik", "Arial", sans-serif;
  color: #101820;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.office-info {
  color: #6c757d;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  line-height: 1.6;
  margin-bottom: 15px;
}

.office-info a {
  color: #6c757d;
  text-decoration: none;
}

.office-info a:hover {
  color: #dc3545;
}

.newsletter-section {
  background: white;
  padding: 0.25rem;
  margin-bottom: 30px;
}

.newsletter-title {
  color: #101820;
  font-family: "Mulish", "Rubik", "Arial", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  /* font-weight: bold; */
  margin-bottom: 20px;
  line-height: 1.3;
}

.newsletter-form {
  display: flex;
  width: 100%;
}

.newsletter-input {
  /* flex: 1; */
  border: 0;
  padding: 4px 9px;
  background-color: #f2f2f2;
  font-size: clamp(0.9rem, 1vw, 1rem);
  /* max-width: 10.75rem; */
}

.newsletter-input:focus {
  outline: none;
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.subscribe-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 6px 9px;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background-color: #c82333;
}

.social-icon {
  text-align: right;
  z-index: 3;
  padding-left: 0.25rem;
  margin-bottom: 2.5rem;
}

.social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #2c3e50;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.social-icon a:hover {
  background-color: #0077b5;
}

.social-icon a .fab {
  font-size: x-large;
  line-height: 40px;
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  float: inline-end;
  width: 60%;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  transition: color 0.3s ease;
  float: inline-end;
}

.footer-links a:hover {
  color: #dc3545;
}

.image-blend-container {
  min-height: 13.6vw;
  height: auto;
  cursor: pointer;
  position: relative;
}

.image-blend-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: all 1.5s ease;
}

/* 下层图片 - 默认隐藏 */
.image-blend-container .image-back {
  opacity: 0;
  mix-blend-mode: revert-layer;
  /* 叠加混合模式 */
  z-index: 1;
}

.image-blend-container .image-front {
  z-index: 2;
}

/* 悬停时上层图片变透明，下层图片显示 */
.image-blend-container:hover .image-back {
  opacity: 1;
  z-index: 2;
}

.image-blend-container:hover .image-front {
  opacity: 0.2;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero title animation */
.hero-title {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .nav-link {
    margin: 0 0.25rem !important;
  }

  .navbar.navbar-expand-md.pe-5 {
    padding-right: 1.25rem !important;
  }

  .article-image{
    filter: none;
  }

  .padding_center,
  .padding_left,
  .padding_right {
    padding: 0.25rem !important;
  }

  .section-space {
    margin-top: clamp(1.875rem, 2vw, 2.5rem);
    margin-bottom: clamp(1.875rem, 2vw, 2.5rem);
  }

  .logo-section {
    margin-bottom: 1rem;
    height: clamp(100px, 11.5vw, 180px);
  }
}

@media (max-width: 768px) {

  .padding_center,
  .padding_left,
  .padding_right {
    padding: 0 !important;
  }

  .section-space {
    margin-top: clamp(1.375rem, 1.78vw, 1.875rem);
    margin-bottom: clamp(1.375rem, 1.75vw, 1.875rem);
  }

  .logo-section {
    margin-bottom: 1rem;
    height: clamp(80px, 10.5vw, 150px);
  }
}

@media (max-width: 576px) {
  .header-m .homelogo {
    .section-space {
      margin-top: clamp(1.375rem, 1.78vw, 1.875rem);
      margin-bottom: clamp(1.375rem, 1.75vw, 1.875rem);
    }

    .logo-section {

      margin-bottom: 1rem;
      height: clamp(80px, 10.5vw, 150px);
    }

  }

  @media (max-width:576px) {
    .header-m .homelogo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 6;
      background: rgba(255, 255, 255, 1);
    }

    .section-space {
      margin-top: clamp(1rem, 1.5vw, 1.375rem);
      margin-bottom: clamp(1rem, 1.5vw, 1.375rem);
    }

    .logo-section {

      margin-bottom: 1rem;
      height: clamp(80px, 10.5vw, 150px);
    }



    body {
      min-width: 320px;
      max-width: 576px;
      overflow-x: auto;
    }



    .navbar-toggler {
      display: block !important;
      border: 0 !important;
      padding: 0.25rem 0.5rem;
      background-color: transparent !important;
      margin-left: calc(100vw * 0.85) !important;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url(../images/nabbar-toggeler-bk.svg) !important;
      background-position: center center;
      background-repeat: no-repeat;
      background-color: transparent !important;

    }

    .navbar-collapse {
      background-color: rgba(15, 15, 15, 0.825);
      margin: 2rem auto;
      width: 90%;
      border-radius: 8px;
      padding: 2rem;
      z-index: 201 !important;
      margin: 1rem;
    }

    .testimonials-section-m {
      background-color: #fbfbfb;
      background-image: url("../images/out-clients-m-BK.png");
      background-position: center bottom;
      background-repeat: no-repeat;
      background-size: contain;

    }

    .testimonials-section-m .testimonial-container {
      background-color: #fbfbfb;
      padding: 1rem 0 !important;
    }

    .testimonials-section-m .carousel-control-prev,
    .testimonials-section-m .carousel-control-next {
      width: 5%;
      top: -10rem;
    }

    .testimonials-section-m .col-12 .text-center {
      padding-bottom: 1rem;
    }

    .testimonials-section-m .carousel-indicators {
      bottom: -2rem;
    }

    .testimonials-section-m .profile-image {
      max-width: 180px !important;
      max-height: 180px !important;
    }

    .news-section-m .section-title {
      font-size: 2rem;
      font-family: 'Rubik-SemiBold', 'Rubik', 'Arial', sans-serif;

    }

    .news-section-m .article-image-back {
      opacity: 1 !important;
    }

    .contact-section-m {
      /* min-height: 100vh; */
      background-image: url('../images/contact.png ');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
      color: white;
    }

    .contact-section-m .hero-content,
    .contact-section-m .hero-title {
      padding: 2rem 0;
      margin: 0;
    }

    .contact-section-m .hero-title {
      font-size: 2rem;
    }

    .contact-section-m .contact-cards {
      margin-top: 2rem;
    }

    .contact-section-m .contact-card {
      padding: 1rem;
    }

    section {
      /* background-color: white !important; */
      z-index: 200;
      position: sticky;
    }

    footer .footer-section-m {
      position: sticky;
      z-index: 200;
      background-color: #fbfbfb;
    }

    .nav-m .navbar {
      padding: 2.25rem 0;
      transition: all 0.3s ease;
      background: transparent;
      max-width: 576px;
      width: 100vw;
      min-height: 4rem;
      margin: 0;
      position: inherit;
      z-index: 201;
    }

    .footer-section-m {
      background-color: #fbfbfb;
      background-image: url("../images/foot-m-head-bk.png");
      background-position: top right;
      background-repeat: no-repeat;
      background-size: contain;

    }

    .footer-section-m .newsletter-section {
      background-color: #fbfbfb;
      margin-bottom: 1.5rem;
    }

    .footer-section-m .footer-logo-container {
      height: 200px;
      background-image: none;
      background-color: transparent;

    }

    .footer-section-m .social-icon {
      margin-top: 1.5rem;
      text-align: left;
      margin-bottom: 1.5rem;
    }

    .footer-section-m .office-section {
      padding-top: 1.25rem;
    }

    .footer-section-m .office-section h5 {
      font-family: "Mulish-Bold", "Mulish", "Arial", sans-serif;
    }

    .footer-section-m .footer-links {
      width: 100%;
      justify-items: center;
      float: none;
      gap: 0;
      justify-content: space-between;
      justify-self: center;
      text-align: center;
    }

    .contact-section-m,
    .footer-section-m {
      padding: 1rem 2rem;
    }

    .footer-section-m .row {
      --bs-gutter-x: 0 !important;
      margin: 0;
      padding: 0;
    }

    .footer-links a {
      float: none;
    }


  }

  @media (min-width: 576px) {
    body {
      max-width: 1920px;
      min-width: 576px;
      overflow-x: hidden;
    }

    .content-m {
      display: none;
    }
  }



  @media (max-width: 576px) {

    .content-m,
    .nav-m,
    .header-m {
      display: block;
    }

    .nav-m,
    .header-m {
      position: fixed !important;
    }

    .content-m {
      position: sticky;
    }

    .container-fluid {
      padding: 0;
      margin: 0;
      --bs-gutter-x: 0;
      --bs-gutter-y: 0;
    }

    .nav-m .navbar {

      background: transparent;
      max-width: 576px;
      width: 100vw;
      z-index: 201;
    }

    .header-m .services-overlay {
      padding: 1rem 2rem;

    }

    .header-m .services-overlay .fitout-W,
    .header-m .services-overlay .fitout-L {
      font-size: 2rem;
    }

  }

  @media(max-width:768px) {

    section,
    .content-m {
      display: none;
    }

    .content-m,
    .header-m,
    .nav-m {
      display: block;
      width: 100vw;
      left: 0;
      right: 0;
    }
  }


  .homelogo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    background: rgba(255, 255, 255, 1);
  }

  .section-space {
    margin-top: clamp(1rem, 1.5vw, 1.375rem);
    margin-bottom: clamp(1rem, 1.5vw, 1.375rem);
  }

  body {
    min-width: 320px;
    max-width: 576px;
    overflow-x: auto;
  }

  .navbar-toggler {
    display: block !important;
    border: 0 !important;
    padding: 0.25rem 0.5rem;
    background-color: transparent !important;
    margin-left: calc(100vw * 0.85) !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url(../images/nabbar-toggeler-bk.svg) !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent !important;
  }

  .navbar-collapse {
    background-color: rgba(15, 15, 15, 0.825);
    margin: 2rem auto;
    width: 90%;
    border-radius: 8px;
    padding: 2rem;
    z-index: 1050 !important;
    margin: 1rem;
  }

  .testimonials-section-m {
    background-color: #fbfbfb;
    background-image: url("../images/out-clients-m-BK.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .testimonials-section-m .testimonial-container {
    background-color: #fbfbfb;
    padding: 1rem 0 !important;
  }

  .testimonials-section-m .carousel-control-prev,
  .testimonials-section-m .carousel-control-next {
    width: 5%;
    top: -10rem;
  }

  .testimonials-section-m .col-12 .text-center {
    padding-bottom: 1rem;
  }

  .testimonials-section-m .carousel-indicators {
    bottom: -2rem;
  }

  .testimonials-section-m .profile-image {
    max-width: 180px !important;
    max-height: 180px !important;
  }

  .news-section-m .section-title {
    font-size: 2rem;
    font-family: "Rubik-SemiBold", "Rubik", "Arial", sans-serif;
  }

  .news-section-m .article-image-back {
    opacity: 1 !important;
  }

  .contact-section-m {
    /* min-height: 100vh; */
    background-image: url("../images/contact.png ");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* position: relative; */
    color: white;
  }

  .contact-section-m .hero-content,
  .contact-section-m .hero-title {
    padding: 2rem 0;
    margin: 0;
  }

  .contact-section-m .hero-title {
    font-size: 2rem;
  }

  .contact-section-m .contact-cards {
    margin-top: 2rem;
  }

  .contact-section-m .contact-card {
    padding: 1rem;
  }

  .footer-section-m {
    background-color: #fbfbfb;
    background-image: url("../images/foot-m-head-bk.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .footer-section-m .newsletter-section {
    background-color: #fbfbfb;
    margin-bottom: 1.5rem;
  }

  .footer-section-m .footer-logo-container {
    height: 200px;
    background-image: none;
    background-color: transparent;
  }

  .footer-section-m .social-icon {
    margin-top: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .footer-section-m .office-section {
    padding-top: 1.25rem;
  }

  .footer-section-m .office-section h5 {
    font-family: "Mulish-Bold", "Mulish", "Arial", sans-serif;
  }

  .footer-section-m .footer-links {
    width: 100%;
    justify-items: center;
    float: none;
    gap: 0;
    justify-content: space-between;
    justify-self: center;
    text-align: center;
  }

  .contact-section-m,
  .footer-section-m {
    padding: 1rem 2rem;
  }

  .footer-section-m .row {
    --bs-gutter-x: 0 !important;
    margin: 0;
    padding: 0;
  }

  .footer-links a {
    float: none;
  }

}

@media (min-width: 576px) {
  /* body {
    max-width: 1920px;
    min-width: 576px;
    overflow-x: hidden;
  } */

  .content-m,
  .header-m,
  .nav-m {
    display: none;
  }
}

@media (max-width: 576px) {

  .content-m,
  .nav-m,
  .header-m {
    display: block !important;
  }

  .nav-m,
  .header-m {
    position: fixed !important;
  }

  .content-m {
    z-index: 200;
    position: sticky;
    /* background-color: white; */
  }

  .container-fluid {
    padding: 0;
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .header-m .services-overlay {
    padding: 0.375rem 2rem;
  }

  .header-m .services-overlay .fitout-W,
  .header-m .services-overlay .fitout-L {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    display: none;
  }

  .content-m,
  .header-m,
  .nav-m {
    display: block;
    width: 100vw;
    left: 0;
    right: 0;
  }
}

.homelogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: white;
}

.text-content {
  padding-left: 2rem;
  padding-right: 2rem;
}

.default-indicators button {
  width: 5px !important;
  height: 5px !important;
  border-radius: 100% !important;
  border: #212529 1px solid !important;
}

.default-indicators .active {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #212529;
}

.carousel-content h3 {
  text-align: center;
  margin-top: 2rem;
}

.carousel-content p {
  padding: 1rem 2rem 0 2rem;
}

.carousel-content h4 {
  text-align: center;
  padding: 1rem 2rem 0 2rem;
}

.carousel-content .carousel-title {
  padding: 0 2rem;
  margin: 0;
}

.fitout_case_img .fitout_img {
  height: 100px;
  vertical-align: middle;
}

.fitout_case_img img {
  display: inline;
  width: 100%;
  height: 70px;
  margin-top: 15px;
  padding: 10px;
  object-fit: scale-down;
  box-shadow: 1px 1px 3px 1px #eee;
}

/* .nav-m {
    z-index: 201;
    width: 100%;
    position: fixed;
} */

.nav-m .navbar {
  background: none;
}

footer {
  /* background-color: white !important; */
  z-index: 200;
  position: sticky;
}

/* .header-m {
    z-index: 200;
    position: fixed;
} */
@media (max-width: 576px) {
  .header-m .services-overlay {
    z-index: 7;
    padding-left: 2rem;
  }
}

.m-nav-header-extend .text-content {
  display: block;
}

.m-nav-header-extend .down_arrow {
  display: block;
  float: right;
  margin-right: 1rem !important;
}

.m-nav-header-extend .left-nav-arrow {
  display: none;
}

.m-nav-header .text-content {
  display: none;
}

.m-nav-header .down_arrow {
  display: none;
}

.m-nav-header .left-nav-arrow {
  display: block;
  margin-right: 1rem !important;
}

.m-nav-header .left-nav-item {
  border-bottom: 1px solid #e9ecef !important;
  border-top: 1px solid #e9ecef !important;

}


.nav-m {
  z-index: 201;
}

.divider-m {
  height: 1px;
  background-color: #e9ecef;
}

.navbar {
  padding-right: 2rem !important;
}

.nav-link {
  padding-right: clamp(0.1rem, 0.4rem, 0.7rem) !important;
  padding-left: clamp(0.1rem, 0.4rem, 0.7rem) !important;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (max-width:992px) {
  .profile-image {
    width: 120px;
    height: 120px;
  }
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  height: 200px;
}

.article-btn{
  text-decoration: none !important;
}