/* @import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;

  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --primary-color: #ff7800;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 75%;
  z-index: 9;
}

h1 {
  font-weight: 400;
  font-size: 60px;
  line-height: 65px;
}

.primary-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3.04px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(9.25px);
  color: #fff;
  padding: 20px 25px;
  display: inline-block;
}

.hero-section {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100dvh;
  display: flex;
  padding: 200px 0;
  align-items: flex-end;
  position: relative;
	background-attachment: fixed;
    will-change: background-position;
}
.shadow-left {
  /* content: ""; */
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 50%;
  height: 330px;
  background-color: rgba(0, 0, 0, 0.5);
  clip-path: polygon(
    65px 0,
    65px 255px,
    100% 255px,
    100% 100%,
    0 100%,
    0% 60%,
    0 0
  );
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(9.25px);
  z-index: 10;
}
.hero-section h1 {
  color: #fff;
  margin-bottom: 15px;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  /* background: rgba(32, 32, 32, 0.3); */
  /* backdrop-filter: blur(2px); */
  z-index: 99;
  padding: 20px 0;
  transition: all 0.4s;
}
@media (min-width: 1024px) {
  .header-active {
    background: rgba(32, 32, 32, 0.3);
    backdrop-filter: blur(2px);
    transition: all 0.4s;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 70px;
}
.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-left,
.nav-right a {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5.51px;
  color: #fff;
  text-transform: uppercase;
}

.nav-logo img {
  max-height: 70px;
  transition: all 0.4s;
}

@media (min-width: 1024px) {
  .header-active .nav-logo img {
    max-height: 55px;
    transition: all 0.4s;
  }
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-right: 3px solid var(--primary-color);
  padding-bottom: 80px;
  margin-top: 80px;
  overflow: hidden;
}
.journey-image {
  position: relative;
  display: flex;
}
.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-image h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 101%;
  letter-spacing: 0.8px;
  color: #fff;
  position: absolute;
  left: 40px;
  bottom: 70px;
  padding-right: 130px;
}
.journey-details {
  background-color: rgba(29, 29, 29, 1);
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journey-path {
  position: absolute;
  right: 0;
  top: 0;
  right: -2px;
  top: -2px;
}
.journey-details h4 {
  font-weight: 300;
  font-size: 40px;
  line-height: 101%;
  color: #fff;
  padding: 50px 50px 50px 0;
}
.journey-details h4 span {
  font-weight: 400;
}
.journey-details .primary-btn {
  width: fit-content;
}

footer {
  background: #151515;
  padding: 120px 0 100px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.footer-social-media a {
  font-weight: 400;
  font-size: 16px;
  line-height: 101%;
  color: #fff;
  display: block;
  border-top: 1px solid rgba(92, 92, 92, 1);
  max-width: 370px;
  padding: 17px 0;
}
.footer-social-media li:last-child a {
  border-bottom: 1px solid rgba(92, 92, 92, 1);
}
.footer-social-media-right a {
  max-width: 100%;
}
.footer-grid-2 {
  margin-top: 120px;
}
.newsletter {
  position: relative;
}
.newsletter input {
  font-weight: 400;
  font-size: 16px;
  line-height: 101%;
  color: #fff;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #5c5c5c;
  width: 100%;
  padding: 13px 0;
}
input:focus {
  outline: none;
}
.newsletter input::placeholder {
  color: #fff;
}
.newsletter a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-weight: 400;
  font-size: 12px;
  line-height: 101%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.footer-details-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}
.footer-details-grid p {
  font-weight: 400;
  font-size: 16px;
  line-height: 109.00000000000001%;
  color: #fff;
}
.brands-home {
  position: relative;
}
.brands-home-div {
  position: relative;
  padding: 150px 0 240px 0;
  padding-left: 70px;
}
.brands-home-div::before {
  position: absolute;
  left: 1px;
  top: -53px;
  height: calc(100% + 53px);
  width: 3px;
  background-color: var(--primary-color);
  content: "";
  z-index: 99;
}
.brands-home-div h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #a1a1a1;
  margin-bottom: 5px;
}
.brands-home-div h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
}
.brands-home-box {
  position: relative;
}
.brands-home-details {
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: 100%;
}
.brands-home-img {
  display: flex;
  height: 450px;
  overflow: hidden;
}
.brands-home-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.brands-home-details a {
  padding: 16px 25px;
}
.brands-home-details h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 15px;
}
.brands-home {
  overflow: hidden;
  margin-top: -53px;
}

.brands-home .swiper {
  overflow: visible;
}
.brands-home-wrapper {
  margin-top: 60px;
}
.brands-home .shadow-left {
  top: 100px;
  height: calc(100% - 100px);
  clip-path: none;
  left: -1px;
}
.our-story-home {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-story-home-div {
  padding: 220px 0 220px 70px;
}

.our-story-home-div::before {
  position: absolute;
  left: 16px;
  top: -53px;
  height: calc(100% + 53px);
  width: 3px;
  background-color: var(--primary-color);
  content: "";
  z-index: 99;
}
.our-story-home h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  margin-bottom: 20px;
}
.projects-home {
  background-color: #1d1d1d;
}
.projects-home-div {
  padding: 120px 0 90px 1px;
  position: relative;
}
.projects-home-div::before {
  position: absolute;
  left: 1px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
  content: "";
  z-index: 99;
}
.projects-home-inner-img {
  display: flex;
  height: 500px;
  overflow: hidden;
}
.projects-home-inner-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projects-home-div h6 {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3.2px;
  color: #a1a1a1;
  margin-bottom: 5px;
}
.projects-home-div h2 {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 70px;
  text-align: center;
}
.projects-home-inner {
  position: relative;
  margin-bottom: 85px;
}
.projects-home-inner-details .primary-btn {
  font-size: 12px;
  padding: 20px 10px;
}
.projects-home-inner-details {
  position: absolute;
  left: -160px;
  width: 145px;
  top: 0;
}
.projects-home-inner-details h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  color: #fff;
}
.contact {
  padding: 240px 0 170px 0;
  background-color: #1d1d1d;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 170px;
}
.contact-details h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.45px;
  color: #fff;
  margin-bottom: 35px;
}
.contact-details p {
  font-weight: 265;
  font-size: 28px;
  line-height: 38px;
  color: #fff;
}
.contact-details p span {
  font-weight: 400;
}
.contact-form input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 13px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 101%;
  color: rgba(255, 255, 255, 0.3);
}
.contact-form input:not(:first-child) {
  margin-top: 35px;
}
.contact-form textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 13px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 101%;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 35px;
  resize: none;
  height: 110px;
}
textarea:focus {
  outline: none;
}
.contact-form .primary-btn {
  margin-top: 40px;
  padding: 22px 60px;
}
::selection {
  background: var(--primary-color);
  color: #fff;
}
.showroom-grid {
  background-color: rgba(217, 217, 217, 0.3);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-top: 170px;
}
.showroom-grid-img {
  display: flex;
  position: relative;
}
.showroom-grid-img img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom-grid-img::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 68%;
  height: 20px;
  bottom: -10px;
  left: 0;
  max-width: 285px;
}
.showroom-grid-img::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 68%;
  width: 20px;
  bottom: -10px;
  left: -10px;
  max-height: 285px;
}
.showroom-grid-details h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 9.12px;
  color: rgba(161, 161, 161, 1);
  margin-top: 30px;
  margin-bottom: 5px;
}
.showroom-grid-details h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 60px;
}
.showroom-grid-details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-top: 10px;
}
.showroom-grid-details a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  text-decoration: underline;
}

.projects {
  padding: 240px 0 170px 0;
  background-color: #1d1d1d;
}
.projects h2 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 15px;
}

.dropbtn {
  color: rgba(161, 161, 161, 1);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.6px;
  background-color: transparent;
}

.dropdown {
  position: relative;
  width: fit-content;
  margin: auto;
}

.dropdown-content {
  position: absolute;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s;
  background-color: #1d1d1d;
}

.dropdown-content a {
  color: rgba(161, 161, 161, 1);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.6px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.4s;
  background: #1d1d1d;
  z-index: 9;
  padding: 10px 0 15px 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 85px;
}
.projects-img {
  height: 400px;
  display: flex;
}
.projects-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-box {
  position: relative;
}
.projects-details {
  position: absolute;
  bottom: 20px;
  left: 40px;
  backdrop-filter: blur(52.400001525878906px);
  padding: 20px 25px;
  width: 100%;
  max-width: 360px;
  background: #0000004d;
}
.projects-details h5 {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 6.12px;
  color: rgba(161, 161, 161, 1);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.projects-details h3 {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
}
.projects-grid .projects-box:nth-child(2)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 140px;
  background-color: var(--primary-color);
}
.projects-grid .projects-box:nth-child(2)::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 20px;
  background-color: var(--primary-color);
}

.projects-grid .projects-box:nth-child(5)::before {
  position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 20px;
  height: 140px;
  background-color: var(--primary-color);
}
.projects-grid .projects-box:nth-child(5)::after {
  position: absolute;
  content: "";
  top: -20px;
  right: -20px;
  width: 140px;
  height: 20px;
  background-color: var(--primary-color);
}
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100dvh;
  padding: 200px 0;
}
.about-hero::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 7.8%,
    rgba(0, 0, 0, 0.51) 82.63%
  );
}
.about-hero h2 {
  font-weight: 265;
  font-size: 80px;
  line-height: 86px;
  text-align: center;
  color: #fff;
}
.about-hero h2 span {
  font-weight: 400;
}
.big-description {
  background: rgba(29, 29, 29, 1);
  padding: 200px 0 180px 0;
}
.big-description p {
  font-weight: 400;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #fff;
}
.description-two-images {
  padding: 10px 0 450px 0;
  background-color: #1d1d1d;
}
.description-two-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  padding-bottom: 200px;
}
.description-two-images-left {
  display: flex;
  max-height: 850px;
  overflow: hidden;
}
.description-two-images-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description-two-images-right {
  display: flex;
  position: absolute;
  top: 450px;
  right: 0;
  max-height: 800px;
  overflow: hidden;
  width: 50%;
}
.description-two-images-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description-two-images-box {
  backdrop-filter: blur(52.400001525878906px);
  max-width: 880px;
  width: 100%;
  padding: 100px;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.49);
}
.description-two-images-box p {
  font-weight: 400;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: 0.4px;
  color: #fff;
}
.description-two-images-box p span {
  font-weight: 700;
}
.description-two-images-box::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 68%;
  height: 20px;
  bottom: -10px;
  left: 0;
  max-width: 285px;
}

.description-two-images-box::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 20px;
  height: 68%;
  bottom: -10px;
  left: 0;
  max-height: 285px;
}
.description-with-big-img {
  display: flex;
  max-height: 820px;
  overflow: hidden;
}

.description-with-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description-with-big-image {
  margin-top: -65px;
  margin-bottom: 150px;
}

.description-with-big-image-inner {
  backdrop-filter: blur(52.400001525878906px);
  max-width: 90%;
  width: 100%;
  padding: 170px 100px;
  margin: auto;
  background: rgba(0, 0, 0, 0.72);
  margin-top: -300px;
}
.description-with-big-image-inner p {
  font-weight: 400;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0.4px;
  color: var(--primary-color);
  text-align: center;
}
.description-with-big-image-inner p span {
  font-weight: 700;
}
.description-with-big-image-inner::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 68%;
  height: 20px;
  top: -10px;
  right: -10px;
  max-width: 285px;
}

.description-with-big-image-inner::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 20px;
  height: 68%;
  top: 0;
  right: -10px;
  max-height: 285px;
}
.single-hero {
  min-height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.single-hero::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}
.single-hero-content {
  padding: 272px 0 100px 50px;
}
.single-hero-content h3 {
  color: #fff;
  font-weight: 265;
  font-size: 45px;
  line-height: 100%;
  max-width: 700px;
}
.single-hero-content h2 {
  color: #fff;
  font-weight: 400;
  font-size: 45px;
  line-height: 100%;
  padding-bottom: 100px;
  position: relative;
}
.single-hero-content h2::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 270px;
  height: 6px;
  bottom: 30px;
  left: -50px;
}
.single-hero-content h2::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 6px;
  height: 270px;
  bottom: 30px;
  left: -50px;
}
.projects-description {
  padding: 85px 0 550px 0;
  background-color: #1d1d1d;
}
.project-details {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #a1a1a1;
  margin-bottom: 20px;
}
.project-details h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 9.12px;
  color: #a1a1a1;
  text-transform: uppercase;
}
.projects-description-div p {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
}

.projects-description-div p span {
  font-weight: 700;
}
.projects-description-div {
  padding: 0 50px;
}

.three-images {
  margin-top: -375px;
}

.three-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.three-images-item-1 {
  grid-column: span 4 / span 4;
}

.three-images-item-2 {
  grid-column: span 2 / span 2;
}

.three-images-item-3 {
  grid-column: span 2 / span 2;
}

.three-images-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.second-description-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.second-description-grid p {
  font-weight: 400;
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 35px;
}
.second-description-grid p span {
  font-weight: 700;
}
.second-description {
  padding: 100px 0;
}
.big-image {
  display: flex;
}
.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.next-project-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 130px;
  padding-right: 20px;
  position: relative;
}
.next-project-box::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 3px;
  height: calc(100% + 80px);
  top: 0;
  right: 0;
}
.next-project-box a {
  text-decoration: underline;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.next-project-box h5 {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 9.12px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.next-project-box h4 {
  font-weight: 400;
  font-size: 45px;
  line-height: 100%;
}

.page-template-brands header {
  background: #20202096;
}
.brands-hero {
  padding-top: 260px;
}
.brands-hero-content h3 {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 9.12px;
  color: #a1a1a1;
  margin-bottom: 4px;
}
.brands-hero-content h2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 100%;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.brands-gallery {
  grid-column: span 1;
  min-width: 0;
}

.brands-section .swiper {
  width: 100%;
  min-width: 0;
}

.brands-section .swiper-wrapper {
  min-width: 0;
}

.brands-section .swiper-slide {
  padding-bottom: 50px;
}
.brands-section .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #5c5c5c;
  opacity: 0.45;
}
.brands-section .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}
.brands-title {
  position: relative;
  width: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-title h2 {
  font-weight: 265;
  font-size: 100px;
  line-height: 100%;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  left: 28px;
  bottom: -155px;
  translate: 0 -67%;
  white-space: nowrap;
}

.brands-wrapper {
  border-left: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
  padding: 100px 0 120px 0;
}
.brands-img {
  height: 600px;
  display: flex;
}
.brands-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brands-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.brands-details p span {
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
}
.brands-details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.page-template-brands .container {
  width: 100%;
}
.brands-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
}
.brands-tab {
  padding-left: 160px;
}
.brands-tab ul {
  list-style: none;
  display: flex;
  gap: 43px;
  margin-bottom: 90px;
}
.brands-tab ul li {
  font-weight: 300;
  font-size: 30px;
  line-height: 100%;
  opacity: 0.35;
  cursor: pointer;
}
.brands-tab ul li.active-tab {
  opacity: 1;
  text-decoration: underline;
  font-weight: 700;
}
.brands-grid {
  display: none;
  transition: all 0.4s;
}

.brands-grid.active {
  display: grid;
  transition: all 0.4s;
}
.brands-section-black {
  background-color: #1d1d1d;
  color: #fff;
  margin-top: -2px;
}
.brands-section-black .brands-wrapper {
  border-left: 0;
  border-right: 5px solid var(--primary-color);
}
.brands-section-black .brands-inner {
  grid-template-columns: 1fr 150px;
}
.brands-section-black .brands-grid {
  grid-template-columns: repeat(2, 1fr);
}
.brands-section-black .brands-tab {
  padding-left: 0;
}
.second-title-h3 {
  font-weight: 265;
  font-size: 30px;
  line-height: 100%;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  right: -75px;
  bottom: -31px;
  translate: 0 -67%;
  white-space: nowrap;
}
.brands-section-black .brands-title h2 {
  left: -10px;
}

.brands-section-white .brands-inner {
  grid-template-columns: 150px 1fr;
}
.brands-section-white .brands-title {
  width: 155px;
}
.brands-section-white .second-title-h3 {
  right: -107px;
}
.brands-section-black-commercial .brands-inner {
  grid-template-columns: 1fr 120px;
}

.brands-section-black-others .brands-inner {
  grid-template-columns: 1fr 120px;
}
.brands-section-black-others .brands-wrapper {
  border-bottom: 0;
}

.brands-section-white-table .second-title-h3 {
  right: -195px;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1250px) {
  .projects-home-inner-details {
    bottom: 20px;
    left: 40px;
    backdrop-filter: blur(52.400001525878906px);
    padding: 20px 25px;
    width: fit-content;
    max-width: 360px;
    top: auto;
  }
  .journey-details h4 {
    font-size: 30px;
  }
  .description-two-images-box {
    max-width: 730px;
  }
  .description-two-images-box p {
    font-size: 30px;
    line-height: 37px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 767px;
    width: 100%;
  }
  .shadow-left {
    display: none;
  }
  .brands-home-div {
    padding: 70px 0 100px 0;
  }
  .brands-home {
    margin-top: 0;
  }
  .brands-home-div::before {
    left: -15px;
  }
  .brands-home-div h6 {
    font-size: 14px;
  }
  .brands-home-div h2 {
    font-size: 35px;
  }
  .brands-home-wrapper {
    margin-top: 40px;
  }
  .hero-section h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .primary-btn {
    padding: 18px 25px;
  }
  .hero-section {
    padding: 200px 0 100px 0;
    background-attachment: unset;
  }
  .brands-home-details {
    left: 20px;
    bottom: 20px;
  }
  .brands-home-details h3 {
    font-size: 35px;
  }
  .our-story-home-div::before {
    left: 0px;
    top: 0;
    height: 100%;
  }
  .our-story-home-div {
    padding: 110px 10px;
  }
  .our-story-home h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .projects-home-div::before {
    left: -15px;
  }
  .projects-home-div {
    padding: 90px 0;
  }
  .projects-home-inner-details .primary-btn {
    font-size: 12px;
    padding: 18px 25px;
  }
  .projects-home-inner-details {
    left: 20px;
    backdrop-filter: blur(52.400001525878906px);
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .projects-home-inner {
    margin-bottom: 15px;
  }
  .projects-home-div h6 {
    font-size: 14px;
  }
  .projects-home-div h2 {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .journey-image {
    min-height: 350px;
  }
  .journey-image h3 {
    font-size: 30px;
    left: 20px;
    bottom: 45px;
  }
  .journey-path {
    max-width: 50px;
  }
  .journey-details {
    padding: 20px 0 50px 20px;
  }
  .footer-social-media a {
    font-size: 14px;
  }
  footer {
    padding: 80px 0 30px 0;
  }
  .footer-grid-2 {
    margin-top: 70px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-details-grid {
    display: grid;
  }
  .footer-details-grid p {
    font-size: 14px;
  }
  .newsletter input {
    font-size: 14px;
  }
  .newsletter a {
    font-size: 10px;
  }
  .projects-home-inner-img {
    height: 400px;
  }
  .projects h2 {
    font-size: 35px;
  }
  .dropbtn {
    font-size: 16px;
  }
  .dropdown-content a {
    font-size: 16px;
  }
  .projects-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .projects {
    padding: 180px 0 100px 0;
    overflow: hidden;
  }
  .projects-grid .projects-box:nth-child(2)::after {
    height: 15px;
    bottom: -15px;
  }
  .projects-grid .projects-box:nth-child(5)::after {
    top: -15px;
    height: 15px;
  }
  .projects-details {
    left: 20px;
    padding: 20px;
    width: calc(100% - 40px);
  }
  .about-hero h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .about-hero {
    background-position: 70%;
  }
  .big-description p {
    font-size: 25px;
    line-height: 32px;
  }
  .big-description {
    padding: 100px 0;
  }
  .description-two-images-grid {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
  .description-two-images {
    padding-bottom: 100px;
  }
  .description-two-images-right {
    position: relative;
    width: 100%;
    top: 15px;
  }
  .description-two-images-box {
    padding: 30px;
    left: 30px;
    top: 50%;
    transform: translate(0, -65%);
    width: calc(100% - 60px);
  }
  .description-two-images-box p {
    font-size: 22px;
    line-height: 29px;
  }
  .description-two-images-box::after {
    width: 15px;
    left: -7px;
    max-height: 200px;
  }
  .description-two-images-box::before {
    height: 15px;
    bottom: -10px;
    max-width: 200px;
  }
  .description-with-big-image-inner::before {
    height: 15px;
    top: -7px;
    max-width: 200px;
  }
  .description-with-big-image-inner::after {
    width: 15px;
    max-height: 200px;
  }
  .description-with-big-image-inner p {
    font-size: 22px;
    line-height: 30px;
  }
  .description-with-big-image-inner {
    padding: 100px 25px;
    margin-top: -50px;
    max-width: 95%;
  }
  .single-hero-content h2 {
    font-size: 35px;
  }
  .single-hero-content h3 {
    font-size: 35px;
  }
  .project-details h4 {
    font-size: 14px;
  }
  .projects-description-div {
    padding: 0;
  }
  .projects-description-div p {
    font-size: 25px;
    line-height: 33px;
  }
  .projects-description {
    padding: 80px 0 460px 0;
  }
  .three-images-grid {
    gap: 15px;
  }
  .second-description-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .second-description-grid p {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 30px;
  }
  .second-description {
    padding: 90px 0 60px 0;
  }
  .next-project-box {
    padding-top: 90px;
  }
  .next-project-box h5 {
    font-size: 14px;
  }
  .next-project-box h4 {
    font-size: 35px;
  }
  .next-project-box a {
    font-size: 16px;
  }
  .nav-logo img {
    max-height: 50px;
  }
  header {
    padding: 15px 0;
    background: rgba(32, 32, 32, 0.3);
    backdrop-filter: blur(2px);
  }
  .hamburger {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 9;
  }

  .hamburger span {
    height: 2px;
    background: #fff;
    width: 100%;
    border-radius: 2px;
    transition: 0.3s;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1d1d1d;
    padding: 20px 30px;
    flex-direction: column;
    gap: 20px;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
  }
  .nav-logo {
    position: relative;
    z-index: 9;
  }
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .navbar {
    justify-content: space-between;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hamburger span {
    transition: 0.3s ease;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-details p {
    font-size: 23px;
    line-height: 33px;
  }
  .contact-details h3 {
    margin-bottom: 20px;
  }
  .contact {
    padding: 180px 0 100px 0;
    background-color: #1d1d1d;
  }
  .showroom-grid {
    margin-top: 100px;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .contact-form .primary-btn {
    margin-top: 30px;
    padding: 18px 60px;
  }
  .showroom-grid-details h3 {
    font-size: 14px;
    margin-top: 15px;
  }
  .showroom-grid-details h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .showroom-grid-details a {
    display: inline-block;
    /* margin-bottom: 25px; */
  }
  .showroom-grid-details h3:last-of-type {
    margin-top: 30px;
  }
  .brands-hero {
    padding-top: 180px;
  }
  .brands-hero-content h3 {
    font-size: 14px;
  }
  .brands-hero-content h2 {
    font-size: 35px;
  }
  .brands-section .container {
    padding: 0;
  }
  .brands-inner {
    grid-template-columns: 1fr;
  }
  .brands-title h2 {
    font-size: 35px;
    position: relative;
    transform: unset;
    transform-origin: unset;
    left: auto !important;
    bottom: auto;
    translate: unset;
  }
  .brands-title {
    width: 100%;
    display: block;
  }
  .brands-wrapper {
    padding: 50px 15px 120px 15px;
  }
  .brands-tab {
    padding-left: 0;
  }
  .brands-tab ul {
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .brands-tab ul li {
    font-size: 22px;
  }
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brands-img {
    height: 450px;
  }
  .brands-section-black .brands-grid {
    grid-template-columns: 1fr;
  }
  .brands-section-black .brands-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .brands-section-black .brands-details {
    order: 2;
  }
  .brands-details p span {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
  }
  .second-title-h3 {
    font-size: 20px;
    position: relative;
    transform: unset;
    transform-origin: unset;
    right: auto !important;
    bottom: auto;
    translate: initial;
  }
  .brands-section-white .brands-inner {
    grid-template-columns: 1fr;
  }
  .brands-section-white .brands-title {
    width: 100%;
  }
  .mobile-menu ul {
    list-style: none;
    text-align: center;
  }
  .mobile-menu ul li {
    margin-bottom: 15px;
  }
}
.footer-social-media ul {
  list-style: none;
}
.fade-in-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s;
}

.fade-in-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}