/** @format */

@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

/* header {
  position: relative;
} */

/* body.scrolled header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #151515;
}

body.scrolled main {
  padding-top: 74px;
} */

/* @media (max-width: 768px) { */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: linear-gradient(#151515 60%, #00000000 100%);
}
/* } */
.header__inner {
  padding: 28.5px 30px;
  margin-top: 32px;
  height: 90px;

  background: #151515;
  border: 1px solid #b4b4b4;
  border-radius: 30px;
}

@media (max-width: 768px) {
	.header__inner {
		margin-top: 16px;
	}
}

.logo {
  line-height: 0;
}

.nav {
  position: relative;
}

.nav ul {
  gap: 14px;
  display: flex;
  align-items: center;
}

.nav ul li a {
  text-transform: uppercase;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0.045rem;
  position: relative;
}

.nav ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}



.nav ul li a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  header .nav {
    position: absolute;
    display: block;
    overflow: hidden;
    height: 0;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #151515;
    transition: height 0.3s ease;
  }

  header .nav.active {
    height: calc(100vh);
  }

  header .nav ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 20px;
  }

  header .nav ul li {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
  }

  header .nav ul li a {
    font-size: 16px;
  }
}

main {
  margin-top: 132px;
}

.banner {
    margin: 43px 0;
}

@media (max-width: 768px) {
  .banner {
    margin-top: 90px;
  }
}
.banner__inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 33px 30px 0;
  position: relative;
  display: flex;
  min-height: 730.22px;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.banner__slider-bg {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  /*   aspect-ratio: 1320 / 703; */
  width: 100%;
}
.banner__slider-bg .slick-list {
  width: 100%;
  height: 100%;
}

.banner__slider-bg .slick-track {
  height: 100%;
}

.banner__slider-bg-item {
  aspect-ratio: 1320 / 703;
  max-width: 1320px;
  width: 100%;
  height: 100%;
}

.banner__slider-bg-item.slick-slide {
  -webkit-transition: opacity 500ms !important;
}

.banner__slider-bg-item img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  display: block;
  aspect-ratio: 1320 / 703;
}

.banner__content-wrap {
  position: relative;
  max-width: fit-content;
  max-width: 660px;
  width: 100%;
}

.banner__content {
  background-image: url(../images/banner-content-bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  padding: 19px 24px;
  position: relative;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
}

.expand-btn {
  position: absolute;
  top: -6px;
  right: 7px;
}

.banner__content .btn {
  margin-top: 25px;
  margin-left: -5px;
}

.banner__slider-wrapper {
  max-width: calc(528.54px + 28px);
  margin-right: 0;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  gap: 7px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .banner__slider-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .banner__slider-wrapper {
    max-width: 100%;
    padding: 0;
  }
}
.banner__slider {
  max-width: 528.54px;
  width: 100%;
  height: 148px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .banner__slider {
    max-width: 100%;
  }
}

.banner__slider .slick-list {
  overflow: visible;
}

.slick-vertical .slick-slide.banner-slider__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12.2348px;
  gap: 12px;
  background: rgba(21, 22, 22, 0.98);
  border-radius: 18.3521px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .slick-vertical .slick-slide.banner-slider__item {
    margin: 6px 0;
  }
}

.banner-slider__image {
  aspect-ratio: 1 / 1;
  max-width: 65.78px;
  width: 100%;
  border-radius: 8.12135px;
}

.banner-slider__content p {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 9.75px;
  line-height: 11.37px;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateY(-3px);
}

.banner-slider__content p:first-child::before {
  content: "・";
  margin-right: 5px;
}

.banner-slider__content h4 {
  font-weight: 600;
  font-size: 29.36px;
  margin: 10px 0;
}
@media (max-width: 1023px) {
  .banner-slider__content h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .banner-slider__content h4 {
    font-size: 20px;
  }
}

.banner__slider .slick-slide > * {
  -webkit-filter: blur(3.4000000954px);
  filter: blur(3.4000000954px);
  -webkit-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
}

.banner__slider .slick-slide.slick-current * {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.banner__slider-arrow {
  width: 8px;
  height: 12px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__slider-arrow svg {
  position: absolute;
}

.banner__slider-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
}

.banner__slider-arrow--prev {
  order: 1;
}

.banner__slider-dots {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banner__slider-arrow--next {
  order: 3;
}

.banner__slider-dots li {
  display: block;
  width: 3.67px;
  height: 3.67px;
  margin: 0;
}

.banner__slider-dots li button {
  display: block;
  width: 3.67px;
  height: 3.67px;
  background: #809199;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 0;
  line-height: 0;
  border: none;
  outline: none;
}

.banner__slider-dots li.slick-active button {
  background: #fff;
}

/* OUR PORTFOLIO */
.our-portfolio {
  margin-top: 116px;
}

.our-portfolio h2 {
  text-align: center;
	padding: 100px 0;
}


@media (max-width: 768px) {
	.our-portfolio h2 {
    text-align: center;
    padding: 60px 0;
}
}

.our-portfolio h3 {
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #202020;
}
@media (max-width: 1023px) {
  .our-portfolio h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .our-portfolio h3 {
    font-size: 24px;
  }
}

.our-portfolio__list {
  max-width: 1311px;
  width: 100%;
  margin: 0 auto;
  margin-top: 106px;
}

.our-portfolio__item {
  border-radius: 10px 10px 20px 20px;
  -webkit-border-radius: 10px 10px 20px 20px;
  overflow: hidden;
  background: #fff;
  position: sticky;
  top: 130px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .our-portfolio__item {
    position: unset;
  }
}

.our-portfolio__banner {
  padding: 40px 32px 30px 35px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .our-portfolio__banner {
    padding: 20px 10px 30px;
  }
}

@media (max-width: 1023px) {
  .our-portfolio__heading {
    max-width: calc(100% - 178.44px - 20px);
  }
}

.our-portfolio__banner p {
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 12px;
  margin-left: 3px;
  color: #202020;
}

.our-portfolio__logo-list {
  display: flex;
  gap: 29px;
}
@media (max-width: 1439px) {
  .our-portfolio__logo-list {
    order: 3;
    width: 100%;
    /* justify-content: center; */
    flex-wrap: wrap;
  }
}

.our-portfolio__logo-img.keyfood {
  aspect-ratio: 80.6 / 33.52;
  max-width: 80.6px;
}

.our-portfolio__logo-img.symphony-vet {
  aspect-ratio: 86.19 / 35.91;
  max-width: 86.19px;
}

.our-portfolio__logo-img.citizens-bank {
  aspect-ratio: 138.26 / 21.55;
  max-width: 138.26px;
}

.our-portfolio__logo-img.plantshed {
  aspect-ratio: 111.19 / 35.11;
  max-width: 111.19px;
}

.our-portfolio__action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.our-portfolio__action-btn .action-btn {
  color: #202020;
}

.our-portfolio__action-btn .action-btn img {
  filter: invert(1);
  -webkit-filter: invert(1);
}

.our-portfolio__slider {
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 425px) {
  .our-portfolio__slider {
    aspect-ratio: unset;
  }
}

.our-portfolio__slider-img {
  aspect-ratio: 1311 / 528;
  max-width: 1311px;
  width: 100%;
}
@media (max-width: 425px) {
  .our-portfolio__slider-img {
    aspect-ratio: 1 / 1;
  }
}

.our-portfolio__slider-img img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  display: block;
}

.our-portfolio__slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}

.our-portfolio__slider-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid transparent;
}

.our-portfolio__slider-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.our-portfolio__slider-dots li.slick-active {
  border: 1px solid #ffffff;
}

.sec-text-only {
  margin: 160px 0 188px;
}

.sec-text-only p {
  max-width: 860px;
  width: 100%;
  margin: auto;
  font-weight: 400;
  font-size: 30.02px;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-5px);
}
@media (max-width: 1023px) {
  .sec-text-only p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .sec-text-only p {
    font-size: 20px;
  }
}

.sec-vision-grid {
  overflow: hidden;
}

.sec-vision-grid img,
.sec-vision-grid video {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  display: block;
}

.sec-vision-grid h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  text-wrap-style: pretty;
  position: relative;
  z-index: 1;
  max-width: 268px;
  margin: 0 auto;
  padding: 0 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .sec-vision-grid h3 {
    font-size: 24px;
  }
}

.sec-vision-grid h2 {
  font-weight: 400;
  font-size: 59.61px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  display: block;
  max-width: 522px;
  margin: auto;
  padding: 30px 10px;
}

@media (max-width: 1023px) {
  .sec-vision-grid h2 {
    font-size: 36px;
  }
}

.dgrid-column-1-2-1 {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
@media (max-width: 1023px) {
  .dgrid-column-1-2-1 {
    grid-template-columns: unset;
    grid-template-rows: auto;
  }
}
@media (max-width: 425px) {
  .dgrid-column-1-2-1 {
    grid-template-columns: unset;
    grid-template-rows: auto;
  }
}

.dgrid-column-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 425px) {
  .dgrid-column-1-1 {
    grid-template-columns: unset;
    grid-template-rows: 1fr 1fr;
  }
}

.dgrid-row-1-1 {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
@media (max-width: 425px) {
  .dgrid-row-1-1 {
    grid-template-rows: auto;
  }
}

.dgrid-row-618-598 {
  display: grid;
  grid-template-rows: 618fr 598fr;
}
@media (max-width: 1023px) and (min-width: 426px) {
  .dgrid-row-618-598 {
    height: 624px;
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 425px) {
  .dgrid-row-618-598 {
    height: unset;
    grid-template-rows: auto;
    grid-template-columns: unset;
  }
}

.dgrid-row-624-592 {
  display: grid;
  grid-template-rows: 624px 592px;
}
@media (max-width: 1023px) and (min-width: 426px) {
  .dgrid-row-624-592 {
    height: 624px;
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 425px) {
  .dgrid-row-624-592 {
    height: unset;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: unset;
  }
}

.dgrid-row-483-auto-449 {
  display: grid;
  grid-template-rows: 483px auto 449px;
}
@media (max-width: 425px) {
  .dgrid-row-483-auto-449 {
    height: unset;
    grid-template-rows: auto;
    grid-template-columns: unset;
  }
}

.dgrid-row-235-214 {
  display: grid;
  grid-template-rows: 235px 214px;
}
@media (max-width: 425px) {
  .dgrid-row-235-214 {
    height: unset;
    grid-template-rows: auto;
    grid-template-columns: unset;
  }
}

.bg-vision {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bg-vision .caption {
  z-index: -1;
  max-width: 311px;
  margin: auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .bg-vision .caption {
    font-size: 14px !important;
  }
}

.bg-vision::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 425px) {
  .bg-vision {
    min-height: 624px;
  }
}
.bg-vision.soft-yellow {
  background-color: #3a2b06;
  color: #3a2b06;
}
.bg-vision.soft-yellow .caption {
  color: #fffa8e;
  margin-bottom: 29px;
}
.bg-vision.soft-yellow::before {
  background-color: #fffa8e;
}
.bg-vision.soft-yellow:hover::before {
  top: -13%;
}
@media (max-width: 1023px) {
  .bg-vision.soft-yellow:hover::before {
    top: -3%;
  }
}
.bg-vision.soft-yellow:hover h3 {
  transform: translateY(-95px);
}

.bg-vision.light-purple .caption {
  margin-bottom: 34px;
}
.bg-vision.light-purple:hover::before {
  top: -13%;
}
@media (max-width: 1023px) and (min-width: 426px) {
  .bg-vision.light-purple:hover::before {
    top: -23%;
  }
}
.bg-vision.light-purple:hover h3 {
  transform: translateY(-77px);
}

.bg-vision.deep-olive {
  background-color: #6e327b;
  color: #9aeca2;
}
.bg-vision.deep-olive .caption {
  color: #ffffff;
  margin-bottom: 58px;
}
.bg-vision.deep-olive::before {
  background-color: #253a0b;
}
.bg-vision.deep-olive:hover::before {
  top: 9%;
}
@media (max-width: 1023px) and (min-width: 426px) {
  .bg-vision.deep-olive:hover::before {
    top: -1%;
  }
}
.bg-vision.deep-olive:hover h3 {
  transform: translateY(-96px);
}

.sec-card-list {
  margin-top: 85px;
  margin-bottom: 84px;
}

.sec-card-list .container {
  overflow: hidden;
}

.sec-card-list h2 {
  text-align: center;
}

.sec-card-list__cards {
  /* max-width: calc(632px * 2 + 20px); */
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.sec-card-list__cards .swiper-wrapper {
  align-items: stretch;
}

.sec-card-list__cards .swiper-slide {
  height: auto;
}

@media (max-width: 1023px) {
  .sec-card-list__cards {
    max-width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
}

.sec-card-list__cards .slick-list {
  margin: 0 -10px;
  overflow: visible;
}

.sec-card-list__card {
  display: flex;
  justify-content: space-between;
  max-width: 632px;
  width: calc((100% - 20px) / 2);
  background: #232323;
  padding: 20px;
  gap: 10px;
}
@media (max-width: 1023px) {
  .sec-card-list__card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sec-card-list__card {
    flex-direction: column;
  }
}

@media (max-width: 425px) {
  .sec-card-list__card {
    flex-direction: column;
    align-items: center;
  }
}

.swiper-slide .sec-card-list__card {
  margin-right: 0;
}

.sec-card-list__card-content {
  max-width: 327px;
  width: 100%;
}
@media (max-width: 1023px) {
  .sec-card-list__card-content {
    max-width: 100%;
  }
}

.sec-card-list__card-heading {
  margin-top: 10px;
}

.sec-card-list__card-heading h3 {
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}

.sec-card-list__card-heading p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 13px;
}

.sec-card-list__card-description {
  margin-bottom: 8px;
  margin-top: auto;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0;
}

.sec-card-list__card-description p {
  margin-bottom: 20px;
  text-align: justify;
}

.sec-card-list__card-image {
  aspect-ratio: 245 / 365;
  max-width: 245px;
  width: 100%;
}

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

button.sec-card-list__arrow {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #232323;
  opacity: 0.17;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sec-card-list__cards-wrapper {
  position: relative;
  overflow: visible;
  margin-top: 44px;
}

.sec-card-list__arrows {
  position: absolute;
  right: 6.3%;
  top: -25.2%;
  display: flex;
  gap: 5px;
}

.sec-card-list__arrow:hover {
  opacity: 1;
}

.sec-card-list__arrow--prev {
  transform: rotate(180deg);
}

.sec-meets {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .sec-meets {
    padding: 0px 0px 60px;
  }
}

.sec-meets h2 {
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  max-width: 854px;
  width: 100%;
  margin: auto;
}

.sec-meets__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 105px 0;
}
@media (max-width: 768px) {
  .sec-meets__inner {
    flex-direction: column;
    gap: 120px;
    padding: 0;
  }
}

.sec-meets__imgs {
  position: absolute;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 20.7%;
  transform: translateY(-48px);
  width: max-content;
  height: max-content;
}

@media (max-width: 768px) {
  .sec-meets__imgs {
    position: relative;
    left: unset;
    transform: translate(0);
  }
}

.sec-meets__img {
  aspect-ratio: 227 / 297;
  width: 227px;
  height: 297px;
  position: relative;
}

.sec-meets__img img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  display: block;
}

.sec-meets__img + .sec-meets__img {
  margin-left: -250px;
}

@keyframes pointer {
  0% {
    box-shadow: 0 0 0 5px #ffffff14;
  }
  100% {
    box-shadow: 0 0 0 12px #ffffff14;
  }
}
.sec-meets__img:first-child::after {
  position: absolute;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0 0 0 12px #ffffff14;
  box-shadow: 0 0 0 12px #ffffff14;
  content: "";
  top: -9px;
  right: -9px;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  animation: pointer 1s infinite alternate;
}

.sec-meets__img:first-child:hover::after {
  scale: 1.2;
}

.sec-meets__img:first-child:hover {
  cursor: pointer;
}

.footer {
  margin-top: 161px;
  margin-bottom: 71px;
}

.footer__inner {
  max-width: 1313px;
  width: 100%;
  margin: auto;
}

.footer-intro {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-main {
  margin-top: 55px;
  transform: translateX(-7px);
}
@media (max-width: 1023px) {
  .footer-main {
    flex-direction: column;
    gap: 50px;
    transform: unset;
  }
}

.footer .nav {
  transform: translateX(28px);
}
@media (max-width: 1023px) {
  .footer .nav {
    transform: unset;
  }
}
.footer .nav ul {
  gap: 77px;
}
@media (max-width: 768px) {
  .footer .nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.footer .nav ul li a {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
}

.footer .email {
  font-size: 12px;
}

.footer-link {
  margin-top: 55px;
  gap: 26px;
}
.footer-link a,
.footer-link span {
  font-size: 10px;
  line-height: 14px;
  color: #585858;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 60px;
  }
}
.error404 main {
  text-align: center;
}

.error404 main h1 {
  font-size: 100px;
  font-weight: 700;
  padding: 50px 0 20px;
}

.error404 main p {
  font-size: 18px;
  padding-bottom: 50px;
}

.block-two-media {
  display: grid;
  grid-template-rows: 235fr 214fr;
}

.block-two-media .row {
  position: relative;
  width: 100%;
}

.block-two-media .row video,
.block-two-media .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
}

.dflex-column.align-center.justify-center .row {
  height: 100%;
}

@media (max-width: 440px) {
  .our-portfolio__action-btn {
    flex-wrap: wrap;
    max-width: 87.44px;
    justify-content: center;
  }

  .our-portfolio__heading {
    max-width: calc(100% - 87.44px - 20px);
  }

  .our-portfolio__status {
    order: 1;
  }

  .our-portfolio__action-btn .action-btn {
    order: 3;
  }
}
/** @format */
.project-page .banner__inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 1320 / 703;
  max-width: 1320px;
  width: 100%;
  padding: 30px 30px;
}

.project-page .banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
}

.project-page .banner__background img,
.project-page .banner__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-page .back-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.project-page .banner__content-wrap {
  max-width: unset;
}

.project-page .banner__content {
  background-image: url(../images/project/Rectangle\ 30.png);
  background-position: left top;
  padding: 22px 24px 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  min-width: 730px;
  display: block;
  width: max-content;
}

.banner__catalogue {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-left: 69px;
  position: relative;
}

.banner__catalogue::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -20px;
  width: 11px;
  height: 11px;
  background: url(../images/project/Star\ 1.svg) no-repeat center center;
  transform: translateY(-50%);
}

.project-page .banner__title {
  margin-top: 43px;
  margin-left: 5px;
  max-width: 613px;
}

.project-main {
  margin-top: 15px;
  margin-bottom: 98px;
}

.project-main__inner {
  background-color: #fff;
  padding: 38px 61px 27px;
  border-radius: 30px;
}

.project-main__inner * {
  color: #000;
}

.project-main__banner {
  align-items: flex-start;
}

.project-main__title {
  font-weight: 600;
  font-size: 45px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-main__action-btn {
  gap: 24px;
}

.project-main .pdf-download-btn {
  background-color: #e0e0e0;
  border: 1px solid #dbdbdb;
  width: max-content;
}
.project-main .pdf-download-btn img {
  filter: invert(0.9);
}

.project-main__city-and-state {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 6px;
}

.project-main__info {
  margin-top: 41px;
  gap: 33px;
  flex-wrap: wrap;
}

.project-main__left {
  max-width: 487px;
  width: 100%;
}

.project-main__right {
  max-width: 548px;
  width: 100%;
}

.project-main__col {
  padding-left: 29px;
}

.project-main__row {
  width: 100%;
}

.line-center {
  position: relative;
  gap: 78px;
}

.line-center::after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #dadada;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.project-main__info-title {
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #737373 !important;
  position: relative;
  display: inline-flex;
  margin-top: 39px;
}

.project-main__row:first-child .project-main__info-title {
  margin-top: 0;
}

.project-main__info-title:before {
  content: "";
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.project-main__info-title.population:before {
  width: 17.29px;
  height: 11px;
  background-image: url(../images/population-icon.svg);
  top: 6px;
  left: -29px;
}

.project-main__info-title.income:before {
  width: 10px;
  height: 16.67px;
  background-image: url(../images/income-icon.svg);
  top: 4px;
  left: -26px;
}

.project-main__info-title.size:before {
  width: 11.87px;
  height: 11.87px;
  background-image: url(../images/size-icon.svg);
  top: 6px;
  left: -25px;
}

.project-main__info-text {
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
  margin-top: 17px;
}

.project-main__col.land-size {
  margin-right: 39px;
  max-width: 180px;
}

.project-main__radius {
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0;
  color: #737373 !important;
  margin-left: 31px;
}

.project-main__partner {
  margin-top: 21px;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}

.project-page + .footer {
  margin-top: 208px;
}

@media (max-width: 1220px) {
  .project-main__col.sqf {
    margin-right: 0;
  }

  .project-main__left {
    max-width: 46%;
  }

  .project-main__right {
    max-width: 50%;
  }
}
@media (max-width: 1023px) {
  .project-page .banner__content {
    min-width: unset;
    width: 100%;
    padding: 22px 20px 30px;
    border-radius: 20px;
  }

  .project-main {
    margin-bottom: 0;
  }

  .project-main__inner {
    padding: 20px 20px 30px;
  }

  .project-main__left,
  .project-main__right {
    max-width: 100%;
    width: 100%;
  }

  .project-main__col.land-size {
    margin-right: 16.4%;
  }
}
@media (max-width: 767px) {
  .project-main__banner {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .project-main__left {
    flex-direction: column;
    gap: 39px;
  }

  .line-center::after {
    content: none;
  }

  .project-main__row {
    flex-direction: column;
    gap: 39px;
  }
}
@media (max-width: 767px) {
  .project-main__title {
    font-size: 24px;
  }

  .project-main__city-and-state {
    font-size: 14px;
  }

  .project-main__info-title {
    font-size: 16px;
  }

  .project-main__info-text {
    font-size: 20px;
  }

  .project-main__radius {
    font-size: 14px;
  }

  .project-main__col.land-size {
    margin-right: 0;
  }
}
.our-portfolio__status,
.project-status {
  padding: 8px 17px;
  border-radius: 8px;
  color: #ffffff;
  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

@media (max-width: 440px) {
  .our-portfolio__status,
  .project-status {
    font-size: 16px;
    padding: 6px 12px;
  }
}

.our-portfolio__status.stt-active,
.project-status.stt-active {
  background: #14471e;
}

.our-portfolio__status.stt-exited,
.project-status.stt-exited {
  background: #760f00;
}

.cta-gallery-slider-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -99999;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.cta-gallery-slider-popup.active {
  z-index: 9999;
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.cta-gallery-slider__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-gallery-slider__item img {
  -webkit-object-fit: cover;
  object-fit: cover;
}

#team,
#about-us,
#get-in-touch,
#portfolio {
  scroll-margin-top: 150px;
}

/* *********************************** */
.our-portfolio__filters {
  margin-top: 40px;
}

.our-portfolio__filter-list {
  display: flex;
  gap: 10px;
  max-width: fit-content;
  margin: 0 auto;
  padding: 10px 16px;
  border: 1px solid #46464699;
  border-radius: 30px;
  background-color: #2f2f2f99;
}
@media (max-width: 767px) {
  .our-portfolio__filter-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.our-portfolio__filter-item {
  padding: 10px 15px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  transition: all 0.3s ease;
}

.our-portfolio__filter-item:hover {
  background-color: #fff;
  color: #000;
}

.our-portfolio__filter-item.active {
  background-color: #fff;
  color: #000;
}

.our-portfolio__bubble-wrap {
  max-width: 1311px;
  max-height: 210px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease;
}

.our-portfolio__bubble-wrap::after {
  /* bottom inner box shadow */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 7.45%, rgba(21, 21, 21, 0.9) 100%);
  pointer-events: none;
  transition: height 0.3s ease;
}

.our-portfolio__bubble-wrap.active {
  max-height: 100%;
}

.our-portfolio__bubble-wrap.active::after {
  height: 0%;
}

.our-portfolio__bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.our-portfolio__bubble {
  padding: 12.5px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #2f2f2f;
  border: 1px solid #464646;
  border-radius: 20px;
  -webkit-border-radius: 20px;

  font-family: "ClashGrotesk-Variable", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
	text-transform: uppercase;
  letter-spacing: 0;
}

/* add arrow right */
.our-portfolio__bubble::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../images/our-portfolio-filter-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.our-portfolio__show-more-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 45px;
  margin: 20px auto 0;

  background: #ffffff;
  border: 1px solid #464646;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  font-family: "Saans TRIAL", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.our-portfolio__show-more-btn:hover {
  opacity: 0.7;
}

.our-portfolio__show-more-btn.clicked {
  display: none;
}

.header__select-region {
  position: relative;
}

.header__select-region-selected {
  font-family: "Lexend", sans-serif;
  border-radius: 20px;
  padding-top: 10px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
  background-color: #ffffff;
  color: #151515;
  position: relative;
  min-width: 205.11px;
  cursor: pointer;
}

.header__select-region-selected::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  width: 10px;
  height: 10px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__select-region-selected.toggle::after {
  transform: translateY(-50%) rotate(270deg);
}

.header__select-region-selected.toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.header__select-region-list {
  position: absolute;
  top: 100%;
  display: none;
}

.header__select-region-selected.toggle + .header__select-region-list {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #151515;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;

  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0;
}

.header__select-region-item {
  margin-bottom: 8px;
  cursor: pointer;
}

.header__select-region-item:last-child {
  margin-bottom: 0;
}

.header__select-region.pc {
  display: block;
}

.header__select-region.mobile {
  display: none;
}

@media (max-width: 768px) {
  .header__select-region.pc {
    display: none;
  }

  .header__select-region.mobile {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
  }

  header nav .header__select-region.mobile .header__select-region-list {
    display: none;
  }

  header
    nav
    .header__select-region.mobile
    .header__select-region-selected.toggle
    + .header__select-region-list {
    display: block;
    width: 100%;
    background-color: #ffffff;
    color: #151515;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;

    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0;
  }
	
	.home .banner .banner__inner {
		  height: calc(100dvh - 132px);
    min-height: unset;
}
}
