/* Figma # Home — Grouped page (8553 × 1024) — ref: NonHosting Assets/Home.png @2x */
:root {
  --canvas-w: 8553;
  --canvas-h: 1024;
  --canvas-w-px: 8553px;
  --canvas-h-px: 1024px;
  /* Must be unitless for transform: scale() — length/length, not length/number */
  --scale: calc(100dvh / var(--canvas-h-px));
  --bg-landing: url("../assets/hero-bg.jpg");
  --bg-contacts-hero: url("../assets/contacts-hero.jpg");
  --bg-services: url("../assets/pm-bg.jpg");

  --color-tile-1: #211f1f;
  --color-tile-2: #b4e3ff;
  --color-tile-3: #032146;
  --color-tile-4: #3c6970;

  --color-dark: var(--color-tile-1);
  --color-blue-light: var(--color-tile-2);
  --color-blue: var(--color-tile-3);
  --color-accent: var(--color-tile-4);
  --color-beige: var(--color-tile-2);
  --color-card: #f5f4f3;
  --color-text: #211f1f;
  --color-white: #fff;
  --radius: 9px;
  --radius-pill: 56px;
  --radius-btn: 48px;

  --landing-w: 3051;
  --services-w: 1968;
  --pm-w: 1707;
  --contacts-w: 1827;

  --x-services: 3051;
  --x-pm: 5019;
  --x-contacts: 6726;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "PT Sans Narrow", system-ui, sans-serif;
  font-weight: 400;
  background: var(--color-dark);
  color: var(--color-white);
}

strong,
b,
h1,
h2,
h3,
h4,
button,
input,
textarea {
  font-family: inherit;
}

@supports not (height: 100dvh) {
  :root {
    --scale: calc(100vh / var(--canvas-h-px));
  }
}

.scroll-root {
  height: 100dvh;
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  overscroll-behavior: none;
}

@supports not (height: 100dvh) {
  .scroll-root {
    height: 100vh;
  }
}

.page-viewport {
  position: relative;
  width: calc(var(--canvas-w-px) * var(--scale));
  height: calc(var(--canvas-h-px) * var(--scale));
  flex-shrink: 0;
}

.page {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  width: var(--canvas-w-px);
  height: var(--canvas-h-px);
  transform-origin: 0 0;
  transform: scale(var(--scale));
  line-height: normal;
  font-synthesis: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: geometricPrecision;
}

.section {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}

.section--landing {
  width: calc(var(--landing-w) * 1px);
  overflow: visible;
  z-index: 2;
}

.section--services {
  width: calc(var(--services-w) * 1px);
  overflow: hidden;
  z-index: 1;
}

.section--pm {
  width: calc(var(--pm-w) * 1px);
  overflow: hidden;
}

.section--contacts {
  width: calc(var(--contacts-w) * 1px);
  overflow: hidden;
  background: var(--color-dark);
}

/* Photo backgrounds only (no baked-in text from full-frame export) */
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section__bg--landing {
  background-image: var(--bg-landing);
}

.section__bg--contacts {
  background-color: var(--color-dark);
}

.landing__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0) 55%,
    rgba(0, 0, 0, 0.25) 72%
  );
}

/* ─── Landing / SectionOne ─── */
.site-header {
  display: flex;
  align-items: center;
  gap: 188px;
}

.site-header--fixed {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  transform: scale(var(--scale));
  transform-origin: 0 0;
  padding: 28px 0 0 39px;
  pointer-events: none;
}

.site-header--fixed .site-header__logo,
.site-header--fixed .site-nav {
  pointer-events: auto;
}

.site-header__logo {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.site-nav {
  display: flex;
  gap: 46px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--color-white);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.site-nav a:hover {
  opacity: 0.85;
}

.landing__hero-copy {
  position: absolute;
  z-index: 5;
  left: 86px;
  top: 310px;
  width: 809px;
  max-width: 809px;
}

.landing__studio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}

.landing__copyright {
  width: 12px;
  height: 12px;
}

.landing__headline {
  margin: 0 0 46px;
  max-width: 809px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
}

.landing__lead {
  margin: 0;
  max-width: 715px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
}

.landing__services-label {
  position: absolute;
  z-index: 5;
  left: 86px;
  top: 725px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.landing__focus-label {
  position: absolute;
  z-index: 5;
  left: 86px;
  top: 750px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}

.landing__service-grid {
  position: absolute;
  z-index: 6;
  left: 66px;
  top: 788px;
  display: grid;
  grid-template-columns: 332px 388px;
  grid-template-rows: 68px 68px;
  gap: 19px 27px;
}

.landing__service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: 0;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

.landing__service-btn:hover {
  transform: translateY(-2px);
}

.landing__service-btn--active,
.landing__service-btn.is-active {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  border-width: 2px;
  opacity: 1;
}

.landing__service-btn:not(.landing__service-btn--active):not(.is-active) {
  opacity: 0.92;
}

.landing__door-handle {
  position: absolute;
  z-index: 12;
  left: 900px;
  top: 360px;
  display: block;
  width: 500px;
  text-decoration: none;
  transition: transform 0.35s ease;
  pointer-events: auto;
}

.landing__door-handle:hover {
  transform: translateY(-3px);
}

.landing__door-handle-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* About card — overlaps end of landing / start of services */
.about-card {
  position: absolute;
  z-index: 8;
  left: 1477px;
  top: 222px;
  width: 1273px;
  height: 592px;
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-card__photo {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 409px;
  height: 535px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 12%;
}

.about-card__panel {
  position: absolute;
  left: 450px;
  top: 22px;
  width: 799px;
  height: 312px;
  padding: 26px 40px 22px;
  border-radius: var(--radius);
  color: var(--color-white);
  overflow: hidden;
}

.about-card__panel--dark {
  background: var(--color-tile-1);
}

.about-card__tag {
  margin: 0 0 6px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}

.about-card__brand {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.about-card__text {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.about-card__list {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.about-card__tiles {
  position: absolute;
  left: 449px;
  top: 338px;
  display: flex;
  gap: 4px;
}

.about-card__tile {
  display: flex;
  flex-direction: column;
  width: 264px;
  height: 232px;
  padding: 18px 20px 20px;
  border-radius: var(--radius);
  font-size: 15px;
}

.about-card__tile h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.about-card__tile--blue {
  background: var(--color-tile-2);
  color: var(--color-tile-1);
}

.about-card__tile--blue h3 {
  color: var(--color-tile-3);
}

.about-card__tile--blue.about-card__tile--link {
  color: var(--color-tile-1);
}

.about-card__tile--blue.about-card__tile--link h3 {
  color: var(--color-tile-3);
}

.about-card__tile--blue .about-card__link {
  color: var(--color-tile-1);
}

.about-card__tile--navy {
  background: var(--color-tile-3);
  color: var(--color-white);
}

.about-card__tile--orange {
  background: var(--color-tile-4);
  color: var(--color-white);
}

.about-card__tile--orange h3 {
  color: var(--color-tile-2);
}

.about-card__tile--orange ul a {
  color: var(--color-white);
  text-decoration: none;
}

.about-card__tile--orange ul a:hover {
  text-decoration: underline;
  opacity: 0.92;
}

.about-card__tile--link {
  text-decoration: none;
  color: inherit;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.about-card__tile--link:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.about-card__tile ul {
  margin: 0;
  padding-left: 18px;
}

.about-card__tile p {
  margin: 0 0 8px;
  line-height: normal;
}

.about-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  letter-spacing: -0.6px;
}

/* ─── Services / Service 1 ─── */
.services__backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.services__bg-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.services__bg-layer--active {
  opacity: 1;
}

.services__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 75%);
}

.services__eyebrow {
  position: relative;
  z-index: 3;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  flex-shrink: 0;
}

.services__carousel {
  position: absolute;
  z-index: 3;
  left: 120px;
  top: 268px;
  width: 960px;
  height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services__slides {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.services__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  transition:
    opacity 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.48s;
  pointer-events: none;
  z-index: 0;
}

.services__slide--active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
  transition:
    opacity 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

/* Next: content exits left, new enters from right */
.services__slide--from-next {
  transform: translateX(48px);
}

.services__slide--to-prev {
  opacity: 0;
  transform: translateX(-48px);
}

/* Prev: content exits right, new enters from left */
.services__slide--from-prev {
  transform: translateX(-48px);
}

.services__slide--to-next {
  opacity: 0;
  transform: translateX(48px);
}

.services__title {
  margin: 0;
  max-width: 1112px;
  font-size: 110px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.services__subtitle {
  position: static;
  margin: 24px 0 0;
  font-size: 30px;
  font-weight: 400;
  max-width: 900px;
  line-height: normal;
  flex-shrink: 0;
}

.services__body {
  position: static;
  margin: auto 0 0;
  padding-top: 20px;
  max-width: 624px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.services__footer {
  position: static;
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  flex-shrink: 0;
}

.services__sidebar {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  width: 472px;
  height: 100%;
  background: var(--color-dark);
  padding: 100px 51px 56px;
  display: flex;
  flex-direction: column;
}

.services__sidebar-label {
  margin: 0 0 52px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  max-width: 256px;
  flex-shrink: 0;
}

.services__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-shrink: 0;
}

.services__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.services__arrow:hover:not(.is-disabled) {
  transform: scale(1.04);
}

.services__arrow.is-disabled {
  cursor: default;
  pointer-events: none;
}

.services__arrow-img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.services__arrow-img--disabled {
  display: none;
}

.services__arrow.is-disabled .services__arrow-img--default {
  display: none;
}

.services__arrow.is-disabled .services__arrow-img--disabled {
  display: block;
}

.services__counter {
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  min-width: 88px;
  text-align: center;
  line-height: normal;
}

.services__counter-total {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.services__sidebar-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  flex-shrink: 0;
}

.services__sidebar-content {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  transition: opacity 0.45s ease;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.services__sidebar-content.is-transitioning {
  opacity: 0.35;
}

.services__sidebar-content ul {
  margin: 8px 0;
  padding-left: 22px;
}

.services__sidebar-content .svc-text-lg {
  font-size: 20px;
  font-weight: 700;
}

.services__sidebar-content .svc-text-md {
  font-size: 15px;
  font-weight: 400;
}

.services__sidebar-content .svc-text-sm {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.92;
}

.services__sidebar-content p {
  margin: 0 0 8px;
}

.services__sidebar-lorem {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.92;
}

.services__sidebar-foot {
  position: static;
  margin-top: auto;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  flex-shrink: 0;
}

/* ─── Project management ─── */
.pm__photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pm__photo {
  position: absolute;
  inset: 0;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.pm__photo-layer {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.pm__photo-layer--active {
  opacity: 1;
}

.pm__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.pm__content {
  position: absolute;
  z-index: 2;
  left: 229px;
  top: 228px;
  width: 1206px;
  transition: opacity 0.5s ease;
}

.pm__content.is-transitioning {
  opacity: 0.45;
}

.pm__eyebrow {
  margin: 0 0 48px;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.pm__headline {
  margin: 0 0 14px;
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
}

.pm__note {
  margin: 0 0 32px;
  font-size: 25px;
  font-weight: 700;
  max-width: 1206px;
  line-height: normal;
}

.pm__body {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  max-width: 1206px;
}

.pm__body p {
  margin: 0 0 8px;
}

.pm__body .svc-text-lg {
  font-size: 25px;
  font-weight: 700;
}

.pm__body .svc-text-md {
  font-size: 20px;
  font-weight: 400;
}

.pm__body .svc-text-sm {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.92;
}

.pm__body ul,
.pm__body ol {
  margin: 8px 0;
  padding-left: 22px;
}

.pm__toggle-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.pm__toggle-overlay.is-visible {
  opacity: 1;
}

.pm__buttons {
  position: absolute;
  z-index: 4;
  left: 229px;
  bottom: 148px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 1248px;
}

.pm__buttons-row {
  display: flex;
  gap: 32px;
  width: 100%;
}

.pm__buttons-row:first-child .pm__btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: normal;
  height: auto;
  min-height: 68px;
  padding: 10px 16px;
  line-height: 1.12;
  overflow: hidden;
}

.pm__buttons-row--pair .pm__btn:first-child {
  flex: 773 1 0;
  min-width: 0;
  white-space: normal;
  height: auto;
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pm__buttons-row--pair .pm__btn:last-child {
  flex: 443 1 0;
  min-width: 0;
}

.pm__btn {
  height: 68px;
  padding: 0 26px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-white);
  font-family: inherit;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    transform 0.35s ease;
}

.pm__btn:hover {
  transform: translateY(-2px);
}

.pm__btn--active {
  background: var(--color-white);
  color: var(--color-text);
}

/* ─── Contacts ─── */
.contacts__hero {
  position: absolute;
  z-index: 2;
  left: 215px;
  top: 57px;
  width: 1425px;
  height: 475px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contacts__hero-img {
  width: 100%;
  height: 100%;
  background-image: var(--bg-contacts-hero);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 28%;
}

.contacts__card {
  position: absolute;
  z-index: 3;
  left: 222px;
  bottom: 68px;
  display: flex;
  width: 1418px;
  height: 406px;
  background: var(--color-white);
  border-radius: var(--radius);
  color: var(--color-text);
  overflow: hidden;
}

.contacts__info {
  flex: 0 0 402px;
  padding: 35px 51px 28px;
}

.contacts__info h2 {
  margin: 0 0 36px;
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
}

.contacts__info dl {
  margin: 0;
}

.contacts__info dl > div {
  margin-bottom: 24px;
}

.contacts__info dt {
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
}

.contacts__info dd {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.contacts__info a {
  color: inherit;
  text-decoration: none;
}

.contacts__info a:hover {
  text-decoration: underline;
}

.contacts__form {
  position: relative;
  flex: 0 0 991px;
  height: 364px;
  margin: 22px 22px 20px 0;
  background: var(--color-blue-light);
  border-radius: var(--radius);
  box-sizing: border-box;
}

.contacts__form-title {
  position: absolute;
  top: 27px;
  left: 48px;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
}

.contacts__input,
.contacts__textarea {
  position: absolute;
  margin: 0;
  font-family: inherit;
  color: var(--color-text);
  box-sizing: border-box;
  outline: none;
}

.contacts__input {
  border: none;
  border-bottom: 1px solid var(--color-text);
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  padding: 0 0 10px;
}

.contacts__input::placeholder {
  color: var(--color-text);
  opacity: 1;
  font-size: 25px;
  font-weight: 400;
}

.contacts__input--name {
  top: 94px;
  left: 48px;
  width: 705px;
}

.contacts__input--email {
  top: 158px;
  left: 48px;
  width: 217px;
}

.contacts__input--subject {
  top: 158px;
  left: 388px;
  width: 160px;
}

.contacts__textarea {
  top: 221px;
  left: 48px;
  width: 709px;
  height: 123px;
  border: 1px solid #1d1d1d;
  border-radius: 16px;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  padding: 16px 20px;
  resize: none;
}

.contacts__textarea::placeholder {
  color: var(--color-text);
  opacity: 1;
  font-size: 25px;
  font-weight: 400;
}

.contacts__submit {
  position: absolute;
  right: 48px;
  bottom: 20px;
  width: 162px;
  height: 58px;
  padding: 0;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--color-tile-4);
  color: var(--color-tile-2);
  font-family: inherit;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.contacts__submit:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.scroll-root {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
