:root {
  --black: #050505;
  --dark: #101010;
  --green-dark: #001b0b;
  --green-main: #004d1d;
  --green-bright: #0ca83d;
  --gold: #e5bd61;
  --gold-dark: #b78325;
  --white: #ffffff;
  --light: #f7f7f4;
  --text: #101610;
  --muted: #5d665f;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

a { 
  text-decoration: none; 
}

.container {
  width: 100%;
  max-width: 1800px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

/* HEADER */

.header {
  background: var(--black);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo img { 
  width: 175px; 
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn i { 
  font-size: 18px; 
}

.btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn small {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.85;
}

.btn-outline {
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.btn:hover,
.hero-btn:hover,
.jewelry-btn:hover {
  transform: translateY(-3px);
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at 70% 30%, rgba(229, 189, 97, 0.18), transparent 30%),
    linear-gradient(120deg, #001b0b, #050505 58%);
  color: var(--white);
  padding: 60px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(52px, 6.8vw, 92px);
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 900;
}

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

.hero-content > p {
  font-size: 19px;
  line-height: 1.55;
  color: #e7eee9;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  transition: 0.25s ease;
  min-width: 185px;
}

.hero-btn i {
  font-size: 22px;
}

.hero-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-btn small {
  font-size: 11px;
  opacity: 0.85;
}

.hero-btn.call {
  background: var(--green-bright);
}

.hero-btn.whatsapp {
  background: #25d366;
}

.hero-btn.shop {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.hero-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero-video img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-main);
  font-size: 28px;
  cursor: pointer;
}

.hero-video > span {
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

/* REVIEWS ROW */

.reviews-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.google-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.stars small {
  color: var(--white);
  font-size: 12px;
  margin-left: 6px;
}

.review-score-text p {
  color: #dfe7e1;
  font-size: 14px;
  font-weight: 700;
}

.customer-avatars {
  display: flex;
  margin-left: 10px;
}

.customer-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -9px;
  background: linear-gradient(135deg, #d9a85d, #5e341b);
}

.customer-avatars span:nth-child(2) { background: linear-gradient(135deg, #9fd0ff, #154477); }
.customer-avatars span:nth-child(3) { background: linear-gradient(135deg, #ddd, #59675d); }
.customer-avatars span:nth-child(4) { background: linear-gradient(135deg, #ffc27a, #734020); }
.customer-avatars span:nth-child(5) { background: linear-gradient(135deg, #ead4b2, #222); }

.happy-text {
  color: #e5eee8;
  font-size: 13px;
  font-weight: 700;
}

/* WHY ICONS */

.why-icons {
  margin-top: 64px;
  background: var(--white);
  color: var(--text);
  border-radius: 26px 26px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.12);
}

.why-item {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid #e8e1d4;
}

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

.why-item i {
  font-size: 32px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.why-item p {
  line-height: 1.25;
  font-size: 14px;
  color: var(--muted);
}

.why-item strong {
  color: var(--green-main);
  text-transform: uppercase;
}

/* GENERAL TITLES */

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--green-main);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}

/* SERVICES */

.services {
  padding: 64px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(183, 131, 37, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: -35px auto 16px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--gold);
  border: 5px solid var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  color: var(--green-main);
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.45;
  padding: 0 22px 28px;
}

/* JEWELRY */

.jewelry {
  padding: 64px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 189, 97, 0.12), transparent 28%),
    linear-gradient(120deg, #050505, #1b160d);
  color: var(--white);
}

.jewelry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.jewelry-content span {
  display: inline-block;
  color: var(--gold);
  border: 1px solid rgba(229, 189, 97, 0.5);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.jewelry-content h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.jewelry-content p {
  color: #e7eee9;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.jewelry-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.jewelry-content li {
  margin-bottom: 12px;
  font-weight: 800;
}

.jewelry-content li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.jewelry-btn {
  display: inline-flex;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.jewelry-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.jewelry-gallery article {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.jewelry-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.jewelry-gallery h3 {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
}

/* HOW IT WORKS */

.how-it-works {
  padding: 64px 0;
  background: var(--light);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.how-main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}

.how-main h2 {
  color: var(--green-main);
  font-size: clamp(38px, 5vw, 58px);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.step {
  padding: 26px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid #e7dfcf;
}

.step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green-main);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.step-icon span {
  position: absolute;
  right: -8px;
  top: -8px;
  background: var(--gold);
  color: #111;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  color: var(--green-main);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.45;
}

.faq-row {
  margin-top: 24px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 50px 45px 1fr;
  align-items: center;
  gap: 74px;
}

.faq-row strong {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  font-size: 24px;
}

.faq-row span {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
}

.faq-row p {
  color: #e5eee8;
}

/* REQUIREMENTS */

.requirements {
  background:
    linear-gradient(rgba(0, 27, 11, 0.9), rgba(0, 27, 11, 0.9)),
    url("assets/service-pawn.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.requirements h3 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold);
}

.requirements ul {
  list-style: none;
  margin-bottom: 30px;
}

.requirements li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.requirements li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.requirements > i {
  font-size: 84px;
  color: var(--gold);
  margin: 20px 0;
}

.requirements a {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

/* VISIT */

.visit {
  padding: 64px 0;
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.visit-info {
  background: var(--green-main);
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}

.visit-info h2 {
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.visit-info > p {
  color: #e5eee8;
  margin-bottom: 24px;
}

.visit-info ul {
  list-style: none;
}

.visit-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.visit-info li i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  border-radius: 50%;
}

.map-box,
.storefront {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box img,
.storefront img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.storefront {
  grid-column: 2;
}

/* FOOTER */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.footer p {
  color: #d8e0db;
  font-weight: 700;
}

.footer i {
  color: var(--gold);
  margin-right: 6px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .jewelry-grid,
  .how-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .services,
  .jewelry,
  .how-it-works,
  .visit {
    padding: 56px 0;
  }

  .storefront {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header {
    position: relative;
  }

  .logo img {
    width: 145px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 10px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero {
    padding: 42px 0 0;
  }

  .hero h1 {
    font-size: 42px;
    line-height: .95;
    letter-spacing: -1.5px;
  }

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

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

  .hero-btn {
    min-width: 0;
    width: 100%;
  }

  .hero-video img {
    height: 240px;
  }

  .services,
  .jewelry,
  .how-it-works,
  .visit {
    padding: 44px 0;
  }

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

  .why-item {
    border-right: none;
    border-bottom: 1px solid #e8e1d4;
  }

  .services-grid,
  .jewelry-gallery,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .jewelry-gallery img,
  .map-box img,
  .storefront img {
    height: 230px;
  }

  .how-main,
  .requirements,
  .visit-info {
    padding: 28px;
  }

  .faq-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-row strong {
    margin: auto;
  }
}

.customer-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -15px;
}

.visit {

    background:#01260f;
    color:white;
    padding:0;
}

.visit-wrapper {

    display:grid;
    grid-template-columns: 350px 1fr 450px;
    min-height:320px;
}

.visit-info {

    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.visit-info h2 {

    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.visit-info p {

    margin-bottom:25px;
    color:#d6e0d8;
}

.visit-info ul {

    list-style:none;
}

.visit-info li {

    display:flex;
    gap:14px;
    margin-bottom:18px;
    align-items:flex-start;
}

.visit-info li i {

    color:#e5bd61;
    font-size:20px;
    margin-top:4px;
}

.social-icons {

    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a {

    width:44px;
    height:44px;

    border:2px solid #c89b42;

    border-radius:50%;

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

    color:#c89b42;
}

.visit-map img,
.visit-store img {

    width:100%;
    height:100%;
    object-fit:cover;
}

.visit-bottom {

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

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

    background:#011d0b;
}

.visit-bottom div {

    padding:18px 15px;

    text-align:center;

    font-size:14px;

    font-weight:600;
}

.visit-bottom i {

    color:#e5bd61;
    margin-right:8px;
}

@media(max-width:1100px){

.visit-wrapper{

grid-template-columns:1fr;
}

.visit-map{

height:350px;
}

.visit-store{

height:350px;
}

.visit-bottom{

grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.visit-bottom{

grid-template-columns:1fr;
}

.visit-info h2{

font-size:36px;
}

}

/* **************************************************** */
/* **************** LANGUAGE SWITCHER ***************** */
/* **************************************************** */

.language-switcher {

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

    padding:4px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(229,189,97,.4);

    border-radius:999px;
}

.flag {

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

    padding:8px 12px;

    border-radius:999px;

    cursor:pointer;

    transition:.25s;

    font-size:14px;
    font-weight:800;

    color:white;
}

.flag:hover {

    background:rgba(255,255,255,.12);
}

.flag.active {

    background:var(--gold);

    color:#111;
}

.flag span {

    font-size:12px;
}

.hero-video{

    position:relative;

    overflow:hidden;

    border-radius:20px;
}

.hero-video img{

    width:100%;
    display:block;
}

.hero-video video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.video-label{

    position:absolute;

    bottom:20px;
    left:50%;

    transform:translateX(-50%);

    color:white;

    font-weight:700;

    letter-spacing:1px;
}

/* **************************************************** */
/* ******************* FAQ SECTION ******************** */
/* **************************************************** */

.faq-section {
  padding: 64px 0;
  background: var(--light);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.faq-tab {
  border: 1px solid rgba(183, 131, 37, 0.45);
  background: var(--white);
  color: var(--green-main);
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.faq-tab.active,
.faq-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.faq-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-panel.active {
  display: grid;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(183, 131, 37, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  color: var(--green-main);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}

.faq-question i {
  color: var(--gold-dark);
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

@media (max-width: 680px) {
  .faq-panel {
    grid-template-columns: 1fr;
  }

  .faq-tab {
    font-size: 12px;
    padding: 12px 14px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px;
  }
}

.service-card {
  cursor: pointer;
}

.service-card.active {
  border-color: var(--gold-dark);
  box-shadow: 0 24px 60px rgba(183, 131, 37, 0.22);
  transform: translateY(-6px);
}

.service-details {
  margin-top: 34px;
  background:
    linear-gradient(135deg, rgba(0, 77, 29, 0.96), rgba(0, 27, 11, 0.96));
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.service-detail {
  display: none;
}

.service-detail.active {
  display: block;
  animation: fadeService 0.25s ease;
}

.service-detail h3 {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-detail p {
  color: #e7eee9;
  font-size: 18px;
  line-height: 1.65;
  max-width: 1150px;
}

@keyframes fadeService {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

