/* -----------------|
|       Fonts       |
|------------------*/
@font-face {
  src: url(../Fonts/inter.woff2);
  font-family: "Inter";
  font-display: swap;
}
@font-face {
  src: url(../Fonts/playfair.woff2);
  font-family: "Playfair";
  font-display: swap;
}
/* -----------------|
|       Root        |
|------------------*/
:root {
  --sections-padding-x: 100px;
  --header-height: 90px;
  --marquee-size: 120px;
}

@media (max-width: 1023px) {
  :root {
    --sections-padding-x: 5%;
    --header-height: 90px;
    --marquee-size: 80px;
  }
}
/* -----------------|
|       Global      |
|------------------*/
.articles-page .categories-filter {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.articles-page .categories-filter .category-link {
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.articles-page .categories-filter .category-link:hover {
  background-color: #e0e0e0;
}
.articles-page .categories-filter .category-link.active {
  background-color: #077a7d;
  color: white;
}
.articles-page .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.articles-page .articles-grid .article-card {
  background: white;
  border: 1px solid #ddd;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.articles-page .articles-grid .article-card h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
.articles-page .articles-grid .article-card h2 a {
  color: #333;
  text-decoration: none !important;
}
.articles-page .articles-grid .article-card h2 a:hover {
  color: #077a7d;
}
.articles-page .articles-grid .article-card .article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}
.articles-page .articles-grid .article-card .article-meta .category {
  color: #077a7d;
  font-weight: 500;
}
.articles-page .articles-grid .article-card .article-excerpt {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.article-page .breadcrumb {
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}
.article-page .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  max-width: 800px;
}
.article-page .breadcrumb ol .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #6c757d;
}
.article-page .breadcrumb ol .breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #6c757d;
}
.article-page .breadcrumb ol .breadcrumb-item a {
  color: #077a7d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-page .breadcrumb ol .breadcrumb-item a:hover {
  color: #044b4d;
  text-decoration: none;
}
.article-page .breadcrumb ol .breadcrumb-item.active {
  color: #495057;
}
.article-page .article-content {
  max-width: 800px;
  margin: 0 auto;
}
.article-page .article-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.article-page .article-content .article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #666;
}
.article-page .article-content .article-meta .category {
  color: #077a7d;
  font-weight: 500;
}
.article-page .article-content .article-body {
  line-height: 1.8;
  color: #333;
}
.article-page .article-content .article-body p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    padding: 1rem;
  }
  .article-page .breadcrumb {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
* a {
  text-decoration: none !important;
}
* a:hover {
  text-decoration: underline !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair";
}

.offcanvas_trigger img {
  width: 24px;
  height: 24px;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

section,
header,
footer {
  padding-left: var(--sections-padding-x);
  padding-right: var(--sections-padding-x);
}

.button_primary {
  background-color: #077a7d;
  color: #fff;
  border: none;
  padding: 0.3rem 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button_primary:hover {
  background-color: #044b4d;
}

.button_secondary {
  background-color: #fff;
  color: #000;
  border: 1px solid #e2e8f0;
  padding: 0.3rem 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.small-devider {
  width: 100px;
  max-width: 10%;
  height: 1px;
  background-color: #e0e0e0;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  .button_primary {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
  }
  .button_secondary {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
  }
}
.btn-secondary {
  background-color: #077a7d !important;
  border-color: #077a7d !important;
  height: 46px;
}
.btn-secondary:hover {
  opacity: 0.9;
}

.bg-secondary {
  background: #e7e7e7 !important;
}

hr {
  opacity: 0.78 !important;
}

.offcanvas {
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  visibility: visible;
  transform: translateX(100%);
}

.offcanvas.show + .offcanvas_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}

.offcanvas.show {
  transition: 0.6s;
  transform: translateX(0);
}

/* -----------------|
|       Custom      |
|------------------*/
header {
  position: relative;
  background: white;
  height: var(--header-height);
}
header i {
  font-size: 24px;
  cursor: pointer;
}
header .logo_link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-height: 50%;
}
header .logo_link img {
  width: 100% !important;
}
header .right_side a:hover {
  text-decoration: underline !important;
}

@media (min-width: 768px) {
  header .logo_link {
    width: 30%;
  }
  header .right_side a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  header .logo_link {
    position: unset;
    width: 40vw;
    transform: unset;
    margin-right: auto;
    margin-left: 10px;
  }
  header .right_side a {
    font-size: 9px;
  }
}
.hero {
  background: #ececec;
  height: calc(100dvh - var(--header-height) - var(--marquee-size));
  margin: 0;
  min-height: 200px;
}
.hero h1 {
  color: #1a1a1a;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.085px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: left;
  width: 100%;
}
.hero hr {
  width: 100%;
  margin: 1rem 0;
  border-color: #e0e0e0;
}
.hero .social_media > p {
  font-size: 1rem;
  opacity: 0.75;
}
.hero .social_media a {
  margin-left: 0.5rem;
}
.hero .social_media a img {
  width: 1rem;
  height: 1rem;
}
.hero .jewellery_case_img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  max-height: calc(100dvh - var(--header-height));
}

@media (min-width: 768px) {
  .hero.row {
    flex-direction: unset;
    flex-wrap: nowrap;
  }
  .hero.row .col-md-5 {
    margin-bottom: auto;
  }
}
@media (max-width: 1023px) {
  .hero {
    height: auto;
    justify-content: center;
    overflow: hidden;
    flex-direction: column !important;
    padding-right: 0;
    padding-top: 20px;
    gap: 40px;
  }
  .hero .col-md-5,
  .hero .col-md-7 {
    margin-top: auto;
    width: 100%;
  }
  .hero h1 {
    font-size: 20px;
    max-height: 130px;
    line-height: 1.5em;
    white-space: unset;
    max-width: 80%;
  }
  .hero p {
    max-width: 80%;
  }
  .hero .jewellery_case_img {
    max-height: calc(100% - 230px);
  }
}
.model_section {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.model_section + .model_section {
  background-color: #fafafa;
}
.model_section h2 {
  font-size: 2rem;
}
.model_section .showcase {
  aspect-ratio: 20/9;
  max-height: 70dvh;
  margin-bottom: 2rem;
}
.model_section .showcase > div {
  height: 100% !important;
}
.model_section .showcase .single_showcase {
  overflow: hidden;
  max-height: 100dvh;
}
.model_section .showcase .single_showcase img {
  background: #ececec;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.model_section .button_primary,
.model_section .button_secondary {
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .model_section .showcase {
    aspect-ratio: unset;
    margin-bottom: 20px;
    display: grid;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .model_section .showcase > div {
    width: 100% !important;
    margin-top: 0 !important;
    height: 100% !important;
    background: #ececec;
    padding: 0;
    padding-top: 20px;
  }
  .model_section .showcase > div:nth-child(2n) {
    padding-right: 0;
  }
  .model_section .showcase > div img {
    height: -moz-fit-content !important;
    height: fit-content !important;
    width: 100% !important;
    background: transparent;
  }
}
@media (max-width: 768px) {
  .model_section .showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .model_section .showcase > div:last-child {
    grid-column: 1/3;
  }
  .model_section .showcase > div:last-child .single_showcase {
    height: -moz-fit-content;
    height: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .model_section .showcase > div:last-child .single_showcase img {
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.features_section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.features_section h2 {
  font-size: 3rem;
}
.features_section .features {
  width: 75%;
}
.features_section .features .single_feature {
  width: 100%;
}
.features_section .features .single_feature .img-thumbnail {
  aspect-ratio: 1/1;
  min-width: 50% !important;
  max-width: 50% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.features_section .features .single_feature .caption {
  margin-top: 10px;
  color: #1a1a1a;
  font-size: 16px;
  font-style: normal;
  white-space: nowrap;
  font-weight: 400;
  line-height: 20.924px; /* 100% */
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .features_section {
    padding-left: 2%;
    padding-right: 2%;
  }
  .features_section .features {
    width: 60% !important;
  }
  .features_section .features .col-md-6 {
    margin-bottom: 40px !important;
  }
  .features_section .features .single_feature .img-thumbnail {
    width: 40%;
  }
  .features_section .features .single_feature .caption {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2em;
    white-space: pre-wrap;
  }
}
@media (max-width: 768px) {
  .features_section .features {
    width: 100% !important;
  }
}
/* Services */
.services {
  min-height: 50dvh;
  background-color: #fafafa;
  gap: 0.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.services .small-devider {
  margin-top: 0;
  margin-bottom: 0;
}
.services h2 {
  font-size: 2rem;
  margin: 0 !important;
}
.services .services_grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 1rem;
}
.services .services_grid .single_service_col {
  margin-top: 0;
}
.services .services_grid .single_service_col .single_service {
  background: white;
  border: 1px solid #e5e5e5;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.services .services_grid .single_service_col .single_service .img-icon {
  background: rgba(7, 122, 125, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 1rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.services .services_grid .single_service_col .single_service .img-icon img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.services .services_grid .single_service_col .single_service h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0 !important;
}
.services .services_grid .single_service_col .single_service p {
  font-size: 0.9rem;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.services .services_grid .single_service_col .single_service:hover {
  border-color: #077a7d;
}

@media (max-width: 1023px) {
  .services {
    height: auto;
  }
  .services .services_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }
  .services .services_grid .single_service_col {
    padding: 0.3rem;
  }
  .services .services_grid .single_service_col .single_service {
    padding: 0.75rem;
  }
  .services .services_grid .single_service_col .single_service .img-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0 !important;
  }
  .services .services_grid .single_service_col .single_service h3 {
    font-size: 1.3rem !important;
  }
  .services .services_grid .single_service_col .single_service p {
    width: 100% !important;
    font-size: 0.8rem !important;
  }
}
.display_showcases {
  min-height: 50dvh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.display_showcases .small-devider {
  margin-top: 0;
  margin-bottom: 0;
}
.display_showcases h2 {
  font-size: 3rem;
  margin: 0 !important;
}
.display_showcases .small-devider {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.display_showcases ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 !important;
  gap: 0.5rem;
  margin-top: 1rem;
  list-style-image: url(/assets/images/list-item.png);
}
.display_showcases ul li {
  color: #4f4f4f;
  text-align: left;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  padding-left: 0.3rem;
}

@media (max-width: 1023px) {
  .display_showcases {
    height: auto;
  }
  .display_showcases h2 {
    font-size: 20px !important;
  }
  .display_showcases ul {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 1rem;
  }
  .display_showcases ul::marker {
    margin-right: 0.5rem;
  }
  .display_showcases ul li {
    font-size: 0.65rem;
    line-height: 1.7em;
    padding-right: 0.5rem;
  }
}
.contact_us {
  position: relative;
  background: #171717;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact_us > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  pointer-events: none;
  opacity: 0.2;
  transition: 0.3s all;
}
.contact_us .contact-form-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background-color: #2e2e2e;
  padding: 2rem;
  border: 1px solid rgba(229, 229, 229, 0.1254901961);
}
.contact_us .contact-form-container h2 {
  font-size: 1.5rem;
  color: #fff;
}
.contact_us .contact-form-container .contact_field {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
}
.contact_us .contact-form-container .contact_field label {
  font-size: 0.8rem;
  padding: 0 !important;
}
.contact_us .contact-form-container .contact_field input {
  background-color: transparent !important;
  outline: none !important;
  font-size: 0.8rem;
  height: 40px;
  width: 100% !important;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
}
.contact_us .contact-form-container .contact_field textarea {
  background-color: transparent !important;
  outline: none !important;
  font-size: 0.8rem;
  height: 73px;
  width: 100% !important;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
}
.contact_us .contact-form-container button {
  width: 100%;
  height: 50px;
  display: block;
}
.contact_us .contact-form-container button:hover {
  background-color: #077a7d;
}
.contact_us .business_details {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.contact_us .business_details .business_info {
  font-size: 0.5rem !important;
  line-height: 1.5em;
}
.contact_us .business_details .business_info h2 {
  font-size: 1.25rem !important;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.contact_us .business_details .business_info p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5em;
  opacity: 0.7;
}
.contact_us .business_details .business_info ul {
  padding-left: 0 !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact_us .business_details .business_info ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact_us .business_details .business_info ul li img {
  width: 20px;
  height: 20px;
}
.contact_us .business_details .business_info ul li a {
  color: #fff;
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.5em;
}

@media (max-width: 1023px) {
  .contact_us {
    flex-direction: column;
    padding: 1rem;
  }
  .contact_us form.contact-form-container {
    margin-top: 0 !important;
    width: 100% !important;
    padding: 1rem;
  }
  .contact_us form.contact-form-container .contact_field {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
  }
  .contact_us form.contact-form-container .contact_field label {
    font-size: 17px;
    white-space: nowrap;
    padding: 0 !important;
    margin-bottom: 6px;
  }
  .contact_us form.contact-form-container .contact_field input {
    width: 100%;
  }
  .contact_us form.contact-form-container .contact_field textarea {
    width: 100%;
  }
  .contact_us form.contact-form-container button {
    border-radius: 5px !important;
    text-align: center !important;
  }
}
footer h4 {
  white-space: nowrap;
}
footer .social_media {
  transform: translateY(-50%);
}
footer .social_media a:hover i {
  color: #077a7d;
}
footer .footer-links a {
  margin-bottom: 0.75rem;
}
footer .footer-links a:hover {
  color: #077a7d;
}

@media (max-width: 1023px) {
  footer .col-md-3:nth-child(1) {
    order: 1;
  }
  footer .col-md-3:nth-child(3) {
    order: 2;
  }
  footer .col-md-3:nth-child(2) {
    order: 3;
  }
  footer h4,
  footer .col-md-3 > a {
    text-align: left !important;
    font-size: 12px !important;
  }
  footer h4.fs-5 {
    font-size: 12px !important;
  }
  footer hr {
    margin: 6px 0;
  }
}
.testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.single_testimonial {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-left: 3px solid transparent;
  transition: 0.3s ease;
}
.single_testimonial:hover {
  border-left: 3px solid #077a7d;
}
.single_testimonial .testimonial_content {
  text-align: left;
}
.single_testimonial .testimonial_content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.single_testimonial .testimonial_author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}
.single_testimonial .testimonial_author h4 {
  font-size: 1.1rem;
  color: #077a7d;
  margin-bottom: 0.25rem;
}
.single_testimonial .testimonial_author p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials_grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .single_testimonial {
    padding: 1.5rem;
  }
}
.gallery {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
}
.gallery h2 {
  font-size: 3rem;
  margin: 0 !important;
}
.gallery_grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  width: 100%;
}
.gallery_item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery_item:hover img {
  transform: scale(1.1);
}
.gallery_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.gallery .load_more {
  margin: 0 auto;
  min-width: 150px;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.gallery .load_more:hover {
  opacity: 0.9;
}

@media (max-width: 1023px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 20px !important;
  }
  .gallery_grid {
    gap: 1rem;
  }
  .gallery_item {
    aspect-ratio: 2/3;
  }
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
  padding: 0;
  position: relative;
}
.marquee-container .marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.marquee-container .marquee-track .marquee-item {
  width: 120px;
  height: 120px;
  border: 1px solid white;
}
.marquee-container .marquee-track .marquee-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.marquee-container .marquee-track .marquee-item img:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .marquee-container .marquee-track .marquee-item {
    width: 80px;
    height: 80px;
  }
}
/* Stats Section Styling */
.stats-section {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Media Queries */
}
.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-section .stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
.stats-section .stats-container .stat-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin: 10px 0;
}
.stats-section .stats-container .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  margin-right: 15px;
}
.stats-section .stats-container .stat-item .stat-icon img {
  width: 30px;
  height: 30px;
}
.stats-section .stats-container .stat-item .stat-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #333;
}
.stats-section .stats-container .stat-item .stat-content p {
  font-size: 16px;
  color: #666;
  margin: 5px 0 0;
}
@media (max-width: 1023px) {
  .stats-section {
    padding: 0;
  }
  .stats-section .stats-container .stat-item {
    padding: 8px 15px;
  }
  .stats-section .stats-container .stat-item .stat-icon {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
  .stats-section .stats-container .stat-item .stat-icon img {
    width: 25px;
    height: 25px;
  }
  .stats-section .stats-container .stat-item .stat-content h3 {
    font-size: 24px;
  }
  .stats-section .stats-container .stat-item .stat-content p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 20px 0;
  }
  .stats-section .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stats-section .stats-container .stat-item {
    padding: 5px 10px;
    margin: 5px 0;
    justify-content: flex-start;
  }
  .stats-section .stats-container .stat-item .stat-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .stats-section .stats-container .stat-item .stat-icon img {
    width: 20px;
    height: 20px;
  }
  .stats-section .stats-container .stat-item .stat-content h3 {
    font-size: 20px;
  }
  .stats-section .stats-container .stat-item .stat-content p {
    font-size: 12px;
    margin: 2px 0 0;
  }
}/*# sourceMappingURL=compiling.css.map */