/* @import url('https://fonts.googleapis.com/css2?family=Prompt: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');
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Prompt", Arial, sans-serif;
  color: #1c1c1c;
  background: #faf8f5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
} */

.unity-home {
  overflow: hidden;
}

.unity-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.unity-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  color: #fff;
  background: #111;
}

.unity-hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.unity-hero-slider .swiper-wrapper {
  height: 100%;
}

.unity-hero-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-position: center;
  background-size: cover;
}

.unity-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.76));
}

.unity-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 650ms ease;
}

.unity-hero-content-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  transform: translateY(28px);
  transition: transform 650ms ease;
}

.unity-hero-slide.swiper-slide-active .unity-hero-content {
  opacity: 1;
}

.unity-hero-slide.swiper-slide-active .unity-hero-content-inner {
  transform: translateY(0);
}

.unity-hero-logo-content {
  width: 100%;
}

.unity-hero-logo {
  width: min(520px, 76vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 0 0 14px;
  color: #d98245;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.unity-hero h1,
.unity-hero h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 82px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.unity-hero p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.6;
}

.unity-hero-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.unity-hero-btn svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.unity-hero-btn:hover {
  background: #d98245;
  border-color: #d98245;
}

.unity-hero-btn-prev {
  left: 28px;
}

.unity-hero-btn-next {
  right: 28px;
}

.unity-hero-dots.swiper-pagination {
  display: none;
}

.unity-section {
  padding: 76px 0;
  background: #fff;
}

.unity-section-title {
  margin: 0 0 42px;
  text-align: center;
  color: #1c1c1c;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.unity-style-tabs {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  gap: 34px;
}

.unity-style-tabs-nav {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  position: sticky;
  top: 24px;
  z-index: 2;
}

.unity-style-tab {
  width: 100%;
  border: 1px solid #e7ded6;
  border-radius: 8px;
  background: #faf8f5;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.unity-style-tab span {
  color: #d26e36;
  font-size: 13px;
}

.unity-style-tab:hover,
.unity-style-tab.unity-is-active {
  background: #1c1c1c;
  color: #fff;
}

.unity-style-tabs-content {
  position: relative;
  min-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.unity-style-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.unity-style-panel.unity-is-active {
  opacity: 1;
  pointer-events: auto;
}

.unity-style-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unity-style-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.unity-style-panel-body {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 44px;
  color: #fff;
}

.unity-style-panel-body span {
  display: inline-block;
  margin-bottom: 14px;
  color: #d98245;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.unity-style-panel-body h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.18;
}

.unity-style-panel-body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.unity-style-panel-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.unity-style-panel-body a:hover {
  color: #d26e36;
}

.unity-style-panel-body a svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.unity-projects {
  background: #faf8f5;
}

.unity-project-slider-wrap {
  position: relative;
  padding: 0 54px;
}

.unity-project-swiper {
  overflow: hidden;
  padding: 4px 2px 18px;
}

.unity-project-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid #e4dbd2;
  border-radius: 50%;
  background: #fff;
  color: #1c1c1c;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, opacity 200ms ease;
}

.unity-project-nav:hover {
  border-color: #d98245;
  background: #d98245;
  color: #fff;
}

.unity-project-nav svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.unity-project-nav-prev {
  left: 0;
}

.unity-project-nav-next {
  right: 0;
}

.unity-project-dots.swiper-pagination {
  display: none;
}

.unity-project-card {
  height: auto;
}

.unity-project-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.unity-project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #111;
}

.unity-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}


.unity-project-body {
  padding: 15px;
}

.unity-project-category {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #d26e36;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.unity-project-body h3 {
  display: -webkit-box;
  min-height: 2.5em;
  margin: 0;
  overflow: hidden;
  color: #030303;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.unity-why {
  padding: 72px 0 88px;
  background: #fff;
  color: #1c1c1c;
}

.unity-why h2 {
  margin: 0 0 52px;
  color: #1c1c1c;
  text-align: center;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.unity-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.unity-why article {
  position: relative;
  padding: 40px 18px 26px;
  border: 1px solid #2f2f2f;
  border-radius: 8px;
  background: #1c1c1c;
  text-align: center;
}

.unity-why b {
  position: absolute;
  top: -20px;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #d98245;
  transform: translateX(-50%);
}

.unity-why h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.unity-why p {
  margin: 0;
  color: #bdb7b1;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .unity-hero {
    min-height: 100vh;
  }

  .unity-hero-btn {
    display: none;
  }

  .unity-hero-dots.swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 3;
    display: flex;
    justify-content: center;
  }

  .unity-hero-dots .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    opacity: 1;
    transition: width 200ms ease, background 200ms ease;
  }

  .unity-hero-dots .swiper-pagination-bullet-active {
    width: 26px;
    background: #d98245;
  }

  .unity-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .unity-project-nav {
    width: 34px;
    height: 34px;
  }

  .unity-project-nav svg {
    width: 18px;
    height: 18px;
  }

  .unity-project-nav-prev {
    left: 0;
  }

  .unity-project-nav-next {
    right: 0;
  }

  .unity-project-dots.swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
  }

  .unity-project-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d8cec5;
    opacity: 1;
    transition: width 200ms ease, background 200ms ease;
  }

  .unity-project-dots .swiper-pagination-bullet-active {
    width: 24px;
    background: #d98245;
  }

  .unity-style-tabs {
    grid-template-columns: 1fr;
  }

  .unity-style-tabs-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    position: static;
    scroll-snap-type: x mandatory;
    scrollbar-color: #d98245 #eee5dc;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .unity-style-tabs-nav::-webkit-scrollbar {
    height: 6px;
  }

  .unity-style-tabs-nav::-webkit-scrollbar-track {
    background: #eee5dc;
    border-radius: 999px;
  }

  .unity-style-tabs-nav::-webkit-scrollbar-thumb {
    background: #d98245;
    border-radius: 999px;
  }

  .unity-style-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: #c86f37;
  }

  .unity-style-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 180px;
    scroll-snap-align: start;
    padding: 10px 15px;
    font-size: 16px;
  }

  .unity-style-tab:hover,
  .unity-style-tab.unity-is-active {
    transform: none;
  }

  .unity-style-tabs-content {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .unity-container {
    width: min(100% - 28px, 1120px);
  }

  .unity-hero {
    min-height: 100vh;
    height: 100vh;
  }

  .unity-section {
    padding: 56px 0;
  }

  .unity-project-slider-wrap {
    padding: 0 35px;
  }
  .unity-project-body h3{
    font-size: 16px;
  }

  .unity-why-grid {
    grid-template-columns: 1fr;
  }

  .unity-style-tabs-content {
    min-height: 250px;
  }

  .unity-style-panel-body {
    padding: 28px;
  }
}
  .unity-style-panel-body p{
    display: -webkit-box;

-webkit-line-clamp: 3;

-webkit-box-orient: vertical;

overflow: hidden;

text-overflow: ellipsis;
  }
