/* =========================================================
   MASTER STARTER WEBSITE
   VERSION 0.1
   ========================================================= */


/* =========================================================
   CLIENT BRAND SETTINGS

   THIS SHOULD BE THE MAIN AREA CHANGED FOR EACH CUSTOMER
   ========================================================= */

:root {

  --primary: #183b35;
  --primary-dark: #102b27;
  --primary-soft: #e8f0ed;

  --accent: #c59658;
  --accent-dark: #a97c42;

  --text: #1e2725;
  --text-soft: #66706d;

  --background: #ffffff;
  --background-soft: #f4f6f5;
  --background-dark: #132b27;

  --border: #dde3e1;

  --white: #ffffff;

  --success: #32745e;

  --site-width: 1180px;

  --radius-small: 6px;
  --radius-medium: 12px;
  --radius-large: 20px;

  --shadow-soft:
    0 18px 50px rgba(24, 59, 53, 0.08);

  --shadow-card:
    0 8px 28px rgba(24, 59, 53, 0.07);

}


/* =========================================================
   RESET
   ========================================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--background);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  font-size: 16px;

  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}


body.menu-open {
  overflow: hidden;
}


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


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


button,
a {
  -webkit-tap-highlight-color: transparent;
}


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


p {
  margin-top: 0;
}


h1,
h2,
h3 {
  margin-top: 0;

  color: var(--text);

  line-height: 1.12;

  letter-spacing: -0.025em;
}


h1 {
  margin-bottom: 24px;

  font-size: clamp(2.6rem, 5vw, 4.8rem);

  font-weight: 700;
}


h2 {
  margin-bottom: 22px;

  font-size: clamp(2rem, 3.4vw, 3.1rem);

  font-weight: 680;
}


h3 {
  margin-bottom: 12px;

  font-size: 1.2rem;
}


::selection {
  background: var(--primary);
  color: var(--white);
}



/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;

  top: 12px;
  left: 12px;

  z-index: 9999;

  padding: 10px 16px;

  background: var(--primary);

  color: var(--white);

  border-radius: var(--radius-small);

  transform: translateY(-150%);

  transition: transform 0.2s ease;
}


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


:focus-visible {
  outline: 3px solid rgba(197, 150, 88, 0.5);
  outline-offset: 4px;
}



/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(calc(100% - 48px), var(--site-width));
  margin-inline: auto;
}


.section {
  padding: 92px 0;
}


.section-soft {
  background: var(--background-soft);
}


.eyebrow {
  margin-bottom: 16px;

  color: var(--primary);

  font-size: 0.78rem;

  font-weight: 750;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.eyebrow-light {
  color: #b8ccc7;
}


.lead {
  color: var(--text);

  font-size: 1.18rem;

  line-height: 1.6;
}


.text-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 10px;

  color: var(--primary);

  font-weight: 700;
}


.text-link span {
  transition: transform 0.2s ease;
}


.text-link:hover span {
  transform: translateX(4px);
}



/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;

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

  min-height: 50px;

  padding: 12px 22px;

  border: 1px solid transparent;

  border-radius: var(--radius-small);

  cursor: pointer;

  font-weight: 700;

  line-height: 1.2;

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


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


.button-primary {
  background: var(--primary);
  color: var(--white);
}


.button-primary:hover {
  background: var(--primary-dark);
}


.button-secondary {
  border-color: var(--border);

  background: var(--white);

  color: var(--text);
}


.button-secondary:hover {
  border-color: var(--primary);

  color: var(--primary);
}


.button-light {
  background: var(--white);

  color: var(--primary-dark);
}


.button-light:hover {
  background: #f1f5f4;
}



/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(12px);
}


.header-inner {
  display: flex;

  align-items: center;

  min-height: 76px;
}


.brand {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  margin-right: auto;
}


.brand-mark {
  display: grid;

  width: 39px;
  height: 39px;

  place-items: center;

  flex-shrink: 0;

  background: var(--primary);

  color: var(--white);

  border-radius: 50%;

  font-family: Georgia, serif;

  font-size: 1.1rem;
}


.brand-text {
  display: flex;

  flex-direction: column;

  line-height: 1.08;
}


.brand-text strong {
  color: var(--text);

  font-size: 1rem;

  font-weight: 750;
}


.brand-text span {
  margin-top: 3px;

  color: var(--text-soft);

  font-size: 0.72rem;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}


.main-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}


.main-nav a {
  color: #35413e;

  font-size: 0.91rem;

  font-weight: 620;

  transition: color 0.2s ease;
}


.main-nav a:hover {
  color: var(--primary);
}


.header-phone {
  margin-left: 30px;

  padding-left: 30px;

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

  color: var(--primary);

  font-size: 0.91rem;

  font-weight: 750;
}


.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  margin: 5px auto;

  background: var(--text);

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



/* =========================================================
   HERO
   ========================================================= */

.hero {
  overflow: hidden;

  padding: 72px 0 78px;

  background:
    linear-gradient(
      115deg,
      #f7f8f7 0%,
      #ffffff 65%
    );
}


.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.03fr)
    minmax(420px, 0.97fr);

  align-items: center;

  gap: 64px;
}


.hero-content {
  max-width: 660px;
}


.hero-copy {
  max-width: 620px;

  margin-bottom: 30px;

  color: var(--text-soft);

  font-size: 1.12rem;

  line-height: 1.7;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 34px;

  padding-top: 25px;

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


.hero-trust span {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--text-soft);

  font-size: 0.87rem;
}


.hero-trust svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: var(--primary);

  stroke-width: 2;
}



/* =========================================================
   IMAGE PLACEHOLDERS

   These disappear once real client images are added.
   ========================================================= */

.image-placeholder {
  position: relative;

  overflow: hidden;

  display: grid;

  place-items: center;

  min-height: 300px;

  background:
    linear-gradient(
      145deg,
      var(--primary-soft),
      #dce7e3
    );

  border: 1px solid #d5e0dc;

  border-radius: var(--radius-large);
}


.image-placeholder::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  top: -150px;
  right: -120px;

  background: rgba(255, 255, 255, 0.38);

  border-radius: 50%;
}


.image-placeholder::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  bottom: -90px;
  left: -50px;

  background: rgba(24, 59, 53, 0.08);

  border-radius: 50%;
}


.placeholder-inner {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 4px;

  color: var(--primary);

  text-align: center;
}


.placeholder-inner span {
  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.placeholder-inner small {
  color: var(--text-soft);

  font-size: 0.74rem;
}


.hero-image-placeholder {
  min-height: 520px;
}



/* =========================================================
   ABOUT
   ========================================================= */

.split-layout {
  display: grid;

  grid-template-columns: 0.92fr 1.08fr;

  align-items: center;

  gap: 72px;
}


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


.section-content {
  max-width: 600px;
}


.section-content p:not(.eyebrow) {
  color: var(--text-soft);
}



/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;

  margin-bottom: 40px;
}


.section-heading > div {
  max-width: 650px;
}


.section-heading h2 {
  margin-bottom: 0;
}


.section-heading > p {
  max-width: 400px;

  margin-bottom: 5px;

  color: var(--text-soft);
}


.compact-heading {
  align-items: end;
}



/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
  display: grid;

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

  gap: 18px;
}


.service-card {
  padding: 32px;

  background: var(--white);

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

  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-card);
}


.service-icon {
  display: grid;

  width: 45px;
  height: 45px;

  margin-bottom: 28px;

  place-items: center;

  background: var(--primary-soft);

  border-radius: var(--radius-small);
}


.service-icon svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: var(--primary);

  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-width: 1.8;
}


.service-card p {
  margin-bottom: 0;

  color: var(--text-soft);
}


.services-note {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 22px;

  padding: 20px 24px;

  background: #e8ecea;

  border-radius: var(--radius-small);
}


.services-note strong {
  flex-shrink: 0;
}


.services-note span {
  color: var(--text-soft);
}


.services-note a {
  margin-left: auto;

  color: var(--primary);

  font-weight: 700;
}



/* =========================================================
   WHY US
   ========================================================= */

.why-section {
  background: var(--background-dark);

  color: #dce6e3;
}


.why-heading {
  max-width: 800px;

  margin-bottom: 48px;
}


.why-heading h2 {
  margin-bottom: 0;

  color: var(--white);
}


.why-grid {
  display: grid;

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

  gap: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.why-item {
  min-height: 225px;

  padding: 28px 30px 5px 0;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
}


.why-item + .why-item {
  padding-left: 30px;
}


.why-item:last-child {
  border-right: 0;
}


.why-number {
  display: block;

  margin-bottom: 35px;

  color: var(--accent);

  font-size: 0.75rem;

  font-weight: 750;

  letter-spacing: 0.1em;
}


.why-item h3 {
  color: var(--white);
}


.why-item p {
  margin-bottom: 0;

  color: #aebeba;

  font-size: 0.92rem;
}



/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-grid {
  display: grid;

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

  gap: 18px;
}


.review-card {
  padding: 30px;

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

  border-radius: var(--radius-medium);
}


.stars {
  margin-bottom: 18px;

  color: var(--accent);

  font-size: 0.93rem;

  letter-spacing: 0.12em;
}


.review-card blockquote {
  margin: 0 0 26px;

  color: #35413e;

  font-size: 1rem;

  line-height: 1.7;
}


.review-author {
  display: flex;

  flex-direction: column;

  gap: 2px;

  margin: 0;
}


.review-author strong {
  font-size: 0.9rem;
}


.review-author span {
  color: var(--text-soft);

  font-size: 0.8rem;
}



/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
  display: grid;

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

  gap: 14px;
}


.gallery-placeholder {
  min-height: 300px;

  border-radius: var(--radius-medium);
}



/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 62px 0;

  background: var(--primary);

  color: #dce6e3;
}


.cta-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;
}


.cta-inner h2 {
  margin-bottom: 12px;

  color: var(--white);
}


.cta-inner p:last-child {
  max-width: 600px;

  margin-bottom: 0;

  color: #ccdad6;
}



/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}


.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 80px;
}


.contact-content {
  padding-top: 10px;
}


.contact-intro {
  max-width: 530px;

  margin-bottom: 35px;

  color: var(--text-soft);

  font-size: 1.05rem;
}


.contact-details {
  display: grid;

  gap: 14px;
}


.contact-details a {
  display: flex;

  align-items: center;

  gap: 14px;
}


.contact-icon {
  display: grid;

  width: 43px;
  height: 43px;

  place-items: center;

  flex-shrink: 0;

  background: var(--primary-soft);

  border-radius: 50%;
}


.contact-icon svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: var(--primary);

  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-width: 1.8;
}


.contact-details a > span:last-child {
  display: flex;

  flex-direction: column;
}


.contact-details small {
  color: var(--text-soft);

  font-size: 0.73rem;
}


.contact-details strong {
  color: var(--text);

  font-size: 0.94rem;
}


.service-area {
  display: flex;

  flex-direction: column;

  gap: 4px;

  margin-top: 34px;

  padding-top: 26px;

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


.service-area span {
  color: var(--text-soft);

  font-size: 0.76rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.service-area strong {
  max-width: 430px;

  font-size: 0.94rem;
}



/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
  padding: 38px;

  background: var(--background-soft);

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

  border-radius: var(--radius-large);
}


.form-heading {
  margin-bottom: 28px;
}


.form-heading h3 {
  margin-bottom: 7px;

  font-size: 1.55rem;
}


.form-heading p {
  margin-bottom: 0;

  color: var(--text-soft);
}


.form-row {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}


.form-field {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-bottom: 15px;
}


.form-field label {
  font-size: 0.82rem;

  font-weight: 680;
}


.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid #ccd5d2;

  border-radius: var(--radius-small);

  background: var(--white);

  color: var(--text);

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.form-field input,
.form-field select {
  min-height: 47px;
}


.form-field textarea {
  resize: vertical;

  min-height: 125px;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 3px rgba(24, 59, 53, 0.09);
}


.checkbox-field {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin: 5px 0 20px;

  color: var(--text-soft);

  font-size: 0.78rem;

  line-height: 1.5;
}


.checkbox-field input {
  width: 16px;
  height: 16px;

  margin-top: 2px;

  accent-color: var(--primary);
}


.form-button {
  width: 100%;
}


.form-message {
  display: none;

  margin: 16px 0 0;

  padding: 11px 13px;

  background: #e3efe9;

  color: var(--success);

  border-radius: var(--radius-small);

  font-size: 0.82rem;
}


.form-message.visible {
  display: block;
}



/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #0f211e;

  color: #aebeba;
}


.footer-main {
  display: grid;

  grid-template-columns: 1.8fr 0.7fr 1fr;

  gap: 60px;

  padding-top: 62px;
  padding-bottom: 48px;
}


.brand-footer {
  margin-bottom: 18px;
}


.brand-footer .brand-mark {
  background: var(--accent);

  color: #12201d;
}


.brand-footer .brand-text strong {
  color: var(--white);
}


.brand-footer .brand-text span {
  color: #8da39e;
}


.footer-brand p {
  max-width: 360px;

  color: #8da39e;

  font-size: 0.88rem;
}


.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 8px;
}


.footer-column strong {
  margin-bottom: 8px;

  color: var(--white);

  font-size: 0.82rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.footer-column a {
  color: #9dafaa;

  font-size: 0.86rem;

  transition: color 0.2s ease;
}


.footer-column a:hover {
  color: var(--white);
}


.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 20px;
  padding-bottom: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.75rem;
}


.footer-bottom p {
  margin: 0;
}


.footer-bottom a:hover {
  color: var(--white);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .section {
    padding: 76px 0;
  }


  .main-nav {
    gap: 20px;
  }


  .header-phone {
    display: none;
  }


  .hero-grid {
    grid-template-columns: 1fr 0.85fr;

    gap: 40px;
  }


  .hero-image-placeholder {
    min-height: 430px;
  }


  .split-layout {
    gap: 45px;
  }


  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .service-card:last-child {
    grid-column: span 2;
  }


  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .why-item:nth-child(2) {
    border-right: 0;
  }


  .why-item:nth-child(3),
  .why-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }


  .why-item:nth-child(3) {
    padding-left: 0;
  }


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


  .contact-grid {
    gap: 45px;
  }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .container {
    width: min(calc(100% - 34px), var(--site-width));
  }


  .section {
    padding: 62px 0;
  }


  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }


  h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }


  .header-inner {
    min-height: 67px;
  }


  .menu-toggle {
    display: block;
  }


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


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


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


  .main-nav {
    position: fixed;

    top: 67px;
    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 18px 17px 25px;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow-soft);

    opacity: 0;

    pointer-events: none;

    transform: translateY(-8px);

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


  .main-nav.open {
    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);
  }


  .main-nav a {
    width: 100%;

    padding: 14px 4px;

    border-bottom: 1px solid var(--border);

    font-size: 1rem;
  }


  .main-nav a:last-child {
    border-bottom: 0;
  }


  .hero {
    padding: 53px 0 58px;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 36px;
  }


  .hero-content {
    max-width: none;
  }


  .hero-copy {
    font-size: 1rem;
  }


  .hero-actions {
    align-items: stretch;
  }


  .hero-actions .button {
    flex: 1 1 100%;
  }


  .hero-trust {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 15px;

    margin-top: 27px;
    padding-top: 22px;
  }


  .hero-image-placeholder {
    min-height: 320px;
  }


  .split-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .about-image-placeholder {
    min-height: 330px;
  }


  .section-heading {
    display: block;

    margin-bottom: 30px;
  }


  .section-heading > p {
    margin-top: 16px;
  }


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


  .service-card {
    padding: 26px;
  }


  .service-card:last-child {
    grid-column: auto;
  }


  .services-note {
    display: block;
  }


  .services-note span {
    display: block;

    margin: 5px 0 13px;
  }


  .services-note a {
    display: inline-block;
  }


  .why-heading {
    margin-bottom: 33px;
  }


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


  .why-item,
  .why-item + .why-item,
  .why-item:nth-child(3) {
    min-height: auto;

    padding: 25px 0;

    border-right: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }


  .why-number {
    margin-bottom: 18px;
  }


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


  .gallery-placeholder {
    min-height: 250px;
  }


  .cta-section {
    padding: 50px 0;
  }


  .cta-inner {
    display: block;
  }


  .cta-inner .button {
    margin-top: 24px;
  }


  .contact-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }


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

    gap: 42px;
  }


  .contact-form {
    padding: 25px 20px;
  }


  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-top: 48px;
  }


  .footer-bottom {
    display: block;

    line-height: 1.7;
  }


  .footer-bottom > div {
    margin-top: 8px;
  }

}



/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .brand-mark {
    width: 36px;
    height: 36px;
  }


  .brand-text strong {
    font-size: 0.93rem;
  }


  .brand-text span {
    font-size: 0.67rem;
  }


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

}



/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  html {
    scroll-behavior: auto;
  }


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

}
