:root {
  --yellow: #ffbd16;
  --yellow-light: #ffd051;
  --yellow-dark: #765600;

  --black: #0b0c0d;
  --black-two: #121416;

  --white: #f7f7f5;
  --muted: #c5c7ca;

  --line: rgba(255, 255, 255, 0.18);

  --display-font: "Bebas Neue", sans-serif;
  --body-font: "Inter", sans-serif;
}


/* ------------------------------
   RESET
------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  min-width: 320px;

  font-family: var(--body-font);
  color: #181818;
  background: var(--black);
  line-height: 1.55;

  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* ------------------------------
   ACCESSIBILITY
------------------------------ */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;

  padding: 12px 18px;

  color: #111;
  background: var(--yellow);

  border: 3px solid #111;

  font-weight: 700;

  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-primary:focus-visible,
.button-whatsapp:focus-visible,
.button-email:focus-visible,
.testimonial-dot:focus-visible,
.carousel-toggle:focus-visible {
  outline-color: #111;
}

section[id] {
  scroll-margin-top: 20px;
}


/* ------------------------------
   HEADER
------------------------------ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  z-index: 20;

  height: 92px;
  padding: 0 clamp(22px, 5vw, 70px);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  color: white;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 0.85;
}

.brand-logo {
  width: 60px;
  height: 70px;

  display: block;

  object-fit: contain;
}

.brand-copy strong {
  color: white;

  font-size: 30px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 8px;

  color: var(--yellow);

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav {
  align-self: stretch;

  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;

  color: #f4f4f4;

  font-family: var(--display-font);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;

  height: 2px;

  background: var(--yellow);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;

  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #101010;
  background: var(--yellow);

  border-radius: 4px;

  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-cta:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
}

.header-cta span {
  font-size: 22px;
}

.menu-button {
  display: none;

  padding: 8px;

  color: white;
  background: transparent;

  border: 0;

  cursor: pointer;
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
  position: relative;

  min-height: 690px;

  overflow: hidden;

  color: white;

  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.98) 0%,
      rgba(5, 6, 7, 0.94) 35%,
      rgba(5, 6, 7, 0.45) 63%,
      rgba(5, 6, 7, 0.72) 100%
    ),
    url("photos/lamp.png") center center / cover no-repeat;
}

.hero::after {
  content: "";

  position: absolute;
  top: 82px;
  right: 22%;

  width: 210px;
  height: 480px;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 181, 49, 0.35),
      transparent 28%
    );

  filter: blur(18px);
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1320px, 100%);
  margin: auto;

  padding:
    168px
    clamp(25px, 6.5vw, 95px)
    120px;
}

.hero h1 {
  max-width: 690px;

  font-family: var(--display-font);
  font-size: clamp(58px, 6vw, 92px);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-content > p {
  margin-top: 26px;

  color: #e2e2e2;

  font-size: 20px;
}

.hero-actions {
  margin: 34px 0 40px;

  display: flex;
  gap: 16px;
}


/* ------------------------------
   BUTTONS
------------------------------ */

.button {
  min-height: 52px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border: 2px solid var(--yellow);

  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  color: #151515;
  background: var(--yellow);
}

.button-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
}

.button-outline {
  color: white;
  background: transparent;
}

.button-outline:hover {
  color: #151515;
  background: var(--yellow);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;

  font-size: 16px;
}


/* ------------------------------
   HERO TRUST POINTS
------------------------------ */

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.trust-icon img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}

.trust-item p {
  font-family: var(--display-font);
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  right: 6%;
  bottom: 125px;

  z-index: 3;

  font-family: "Permanent Marker", cursive;
  font-size: 36px;
  line-height: 1.25;

  transform: rotate(-3deg);
}

.hero-note span {
  position: relative;

  color: var(--yellow);
}

.hero-note span::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;

  height: 3px;

  background: var(--yellow);

  transform: rotate(-3deg);
}


/* ------------------------------
   SERVICES
------------------------------ */

.section-cut {
  position: relative;
}

.section-cut::before {
  content: "";

  position: absolute;
  top: -36px;
  left: 0;

  width: 100%;
  height: 54px;

  background: var(--white);

  clip-path: polygon(
    0 65%,
    100% 0,
    100% 100%,
    0 100%
  );
}

.services {
  padding:
    56px
    clamp(20px, 5vw, 72px)
    58px;

  background: var(--white);
}

.section-heading {
  margin-bottom: 30px;

  text-align: center;
}

.section-heading p,
.eyebrow {
  color: var(--yellow-dark);

  font-family: var(--display-font);
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading p::after,
.eyebrow::after {
  content: "";

  width: 74px;
  height: 2px;
  margin: 3px auto 8px;

  display: block;

  background: var(--yellow);
}

.section-heading h2,
.about h2,
.contact h2 {
  font-family: var(--display-font);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.service-grid {
  width: 100%;
  max-width: 1350px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;

  padding: 8px 32px 6px;

  text-align: center;
}

.service-card:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 12px;
  right: 0;
  bottom: 5px;

  width: 1px;

  background: #d7d7d7;
}

.service-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
}

.service-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: #161616;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .accent-fill {
  fill: var(--yellow);
  stroke: var(--yellow);
}

.service-icon .accent-stroke {
  stroke: var(--yellow);
}

.service-card h3 {
  font-family: var(--display-font);
  font-size: 23px;
  letter-spacing: 0.03em;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-card p {
  max-width: 230px;
  margin: 10px auto 0;

  color: #3e3e3e;

  font-size: 15px;
}


/* ------------------------------
   ABOUT
------------------------------ */

.about {
  min-height: 470px;

  display: grid;
  grid-template-columns: 48% 52%;

  color: white;
  background: var(--black-two);
}

.about-copy {
  padding:
    50px
    clamp(28px, 6vw, 92px);
}

.about-copy .eyebrow {
  text-align: left;
}

.about-copy .eyebrow::after {
  margin-left: 0;
}

.about h2 {
  margin: 8px 0 18px;

  font-size: clamp(40px, 5vw, 58px);
  line-height: 0.97;
}

.about h2 span {
  color: var(--yellow);
}

.about-intro {
  max-width: 540px;
  margin-bottom: 22px;

  color: #e1e1e1;
}

.about-stats {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-stats > div {
  padding-right: 18px;

  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.about-stats > div:not(:last-child) {
  margin-right: 18px;

  border-right: 1px solid var(--line);
}

.stat-icon {
  color: var(--yellow);

  font-size: 36px;
  line-height: 1;
}

.about-stats p {
  font-family: var(--display-font);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-stats strong {
  font-size: 18px;
}

.about-image {
  min-height: 470px;

  background:
    linear-gradient(
      90deg,
      rgba(18, 20, 22, 0.23),
      transparent 30%
    ),
    url("photos/kitchen-lightening.png") center center / cover no-repeat;
}


/* ------------------------------
   TESTIMONIAL CAROUSEL
------------------------------ */

.testimonial-carousel {
  position: relative;

  width: 100%;

  overflow: hidden;

  color: #101010;
  background: var(--yellow);

  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  width: 100%;

  transition: transform 0.65s ease-in-out;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 210px;

  padding:
    38px
    clamp(30px, 7vw, 100px)
    64px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide[aria-hidden="true"] {
  visibility: hidden;
}

.testimonial-slide blockquote {
  width: 100%;
  max-width: 900px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;

  text-align: center;
}

.quote-mark {
  flex-shrink: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 0.75;
}

.testimonial-slide blockquote div {
  min-width: 0;
}

.testimonial-slide blockquote p {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
  text-align: center;
}

.testimonial-slide cite {
  margin-top: 10px;

  display: block;

  font-size: clamp(13px, 1.2vw, 17px);
  font-style: normal;
  text-align: center;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;

  z-index: 2;

  display: flex;
  align-items: center;
  gap: 9px;

  transform: translateX(-50%);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  padding: 0;

  border: 2px solid #111;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.testimonial-dot:hover {
  background: rgba(0, 0, 0, 0.35);
  transform: scale(1.1);
}

.testimonial-dot.active {
  width: 30px;

  border-radius: 20px;

  background: #111;
}

.carousel-toggle {
  position: absolute;
  right: 22px;
  bottom: 12px;

  z-index: 3;

  min-height: 40px;
  padding: 7px 12px;

  color: #111;
  background: transparent;

  border: 2px solid #111;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.carousel-toggle:hover {
  color: white;
  background: #111;
}


/* ------------------------------
   CONTACT
------------------------------ */

.contact {
  padding:
    26px
    clamp(28px, 6vw, 95px);

  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  align-items: center;
  gap: 35px;

  color: white;
  background: #0c0e0f;
}

.contact-intro {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-phone-icon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  color: var(--yellow);

  border: 2px solid var(--yellow);
  border-radius: 50%;

  font-size: 32px;
  line-height: 1;
}

.contact .eyebrow::after {
  margin-left: 0;
}

.contact h2 {
  font-size: 36px;
  line-height: 1;
}

.contact-intro > div:last-child > p:last-child {
  margin-top: 6px;

  color: #e1e1e1;

  font-size: 14px;
}

.contact-details {
  padding-left: 35px;

  display: flex;
  flex-direction: column;
  gap: 9px;

  color: #e1e1e1;

  border-left: 1px solid var(--line);

  font-size: 14px;
}

.contact-details a {
  width: fit-content;
}

.contact-details a:hover {
  color: var(--yellow);
}

.contact-details span {
  width: 25px;

  display: inline-block;

  color: var(--yellow);
}

.quote-card {
  padding: 16px;

  display: grid;
  gap: 12px;

  border: 1px solid #74787b;
}

.quote-card-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-card .bolt {
  color: var(--yellow);

  font-size: 54px;
  line-height: 0.8;
}

.quote-card h3 {
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.quote-card p {
  color: #d8d8d8;

  font-size: 12px;
}

.quote-card .button {
  min-height: 42px;

  font-size: 16px;
}

.quote-buttons {
  margin-top: 6px;

  display: flex;
  gap: 12px;
}

.quote-buttons .button {
  width: 100%;
  max-width: none;
  padding: 0 14px;

  flex: 1;
}

.button-whatsapp {
  color: #111;
  background: var(--yellow);

  border-color: var(--yellow);
}

.button-whatsapp:hover {
  color: #111;
  background: var(--yellow-light);

  border-color: var(--yellow-light);
}

.button-email {
  color: #111;
  background: var(--yellow);

  border-color: var(--yellow);
}

.button-email:hover {
  color: #111;
  background: var(--yellow-light);

  border-color: var(--yellow-light);
}


/* ------------------------------
   FOOTER
------------------------------ */

.footer {
  padding:
    13px
    clamp(28px, 6vw, 95px);

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;

  color: #b7b9ba;
  background: #0b0c0d;

  border-top: 1px solid #2b2d2f;

  font-size: 12px;
}

.footer-brand {
  color: var(--yellow);

  font-size: 15px;
}

.footer-brand span {
  color: var(--yellow);

  font-size: 31px;
}

.footer-brand strong {
  color: white;
}


/* ------------------------------
   TABLET
------------------------------ */

@media (max-width: 1050px) {

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 40;

    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu-button span {
    width: 28px;
    height: 2px;

    display: block;

    background: white;

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    max-height: 0;
    padding: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;

    background: #0b0c0d;

    visibility: hidden;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      visibility 0.35s ease;
  }

  .main-nav.open {
    max-height: 100vh;
    padding: 125px 20px 50px;

    visibility: visible;
  }

  .menu-button.open {
    position: fixed;
    top: 22px;
    right: 26px;
  }

  .menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .service-card:nth-child(2)::after {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .testimonial-slide {
    min-height: 190px;
  }

  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 430px;

    justify-self: center;
  }

}


/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 720px) {

  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 44px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    margin-top: 6px;

    font-size: 12px;
  }

  .hero {
    min-height: 730px;

    background-position: 60% center;
  }

  .hero::after {
    right: -20px;

    width: 160px;
  }

  .hero-content {
    padding: 138px 24px 85px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-content > p br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
    max-width: 270px;
  }

  .trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-item {
    align-items: center;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .trust-icon {
    width: 58px;
    height: 58px;
  }

  .hero-note {
    display: none;
  }

  .services {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 18px 20px;
  }

  .service-card::after {
    display: none !important;
  }

  .service-card:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
  }

  .about-copy {
    padding: 45px 24px;
  }

  .about h2 {
    font-size: 46px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-stats > div {
    margin-right: 0 !important;
    padding-bottom: 18px;

    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .about-image {
    min-height: 320px;

    background-position: center;
  }

  .testimonial-slide {
    min-height: 245px;
    padding: 36px 22px 76px;
  }

  .testimonial-slide blockquote {
    max-width: 520px;

    gap: 12px;
  }

  .quote-mark {
    font-size: 46px;
  }

  .testimonial-slide blockquote p {
    font-size: 18px;
    line-height: 1.4;
  }

  .testimonial-slide blockquote p br {
    display: none;
  }

  .testimonial-slide cite {
    margin-top: 10px;

    font-size: 13px;
  }

  .testimonial-dots {
    bottom: 24px;
  }

  .carousel-toggle {
    right: 12px;
    bottom: 10px;

    min-height: 36px;
    padding: 6px 9px;

    font-size: 11px;
  }

  .contact {
    padding: 34px 24px;

    grid-template-columns: 1fr;
  }

  .contact-intro {
    align-items: flex-start;
  }

  .contact-phone-icon {
    width: 62px;
    height: 62px;

    font-size: 26px;
  }

  .contact-details {
    padding: 24px 0 0;

    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quote-card {
    grid-column: auto;
  }

  .quote-buttons {
    flex-direction: column;
  }

  .quote-buttons .button {
    max-width: none;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 10px;

    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

}


/* ------------------------------
   SMALL MOBILE
------------------------------ */

@media (max-width: 420px) {

  .site-header {
    padding: 0 16px;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 39px;
    height: 47px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .about h2 {
    font-size: 39px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .trust-item:last-child {
    grid-column: auto;
  }

  .trust-icon {
    width: 54px;
    height: 54px;
  }

  .testimonial-slide {
    min-height: 265px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .testimonial-slide blockquote {
    gap: 10px;
  }

  .quote-mark {
    font-size: 46px;
  }

  .testimonial-slide blockquote p {
    font-size: 17px;
  }

  .testimonial-slide cite {
    font-size: 12px;
  }

  .testimonial-dots {
    left: 18px;

    transform: none;
  }

  .contact h2 {
    font-size: 31px;
  }

}


/* ------------------------------
   HIGH CONTRAST
------------------------------ */

@media (forced-colors: active) {

  .button,
  .header-cta,
  .carousel-toggle,
  .testimonial-dot,
  .contact-phone-icon,
  .quote-card {
    border: 2px solid currentColor;
  }

  .testimonial-dot.active {
    background: currentColor;
  }

}


/* ------------------------------
   REDUCED MOTION
------------------------------ */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .testimonial-track {
    transition: none;
  }

}