@import url("https://use.typekit.net/rwv8nzf.css");
@import url("https://use.typekit.net/rwv8nzf.css");
.main-header {
  background-color: #f9f9f9;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 89px;
}
.main-header .navbar {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.main-header .navbar .logo {
  width: 177px;
  height: 59px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.main-header .navbar .logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.main-header .navbar .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  flex: 1;
  justify-content: flex-end;
}
.nav-menu li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu li a {
  color: #010b54;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu li a:hover, .nav-menu li a.active {
  color: #ff7d00;
}
.nav-menu li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #ff7d00;
  transition: width 0.3s ease;
}
.nav-menu li a:hover::before, .nav-menu li a.active::before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 40px;
  height: 40px;
}
.mobile-menu-toggle i {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
  position: absolute;
}
.mobile-menu-toggle .menu-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.mobile-menu-toggle .close-icon {
  opacity: 0;
  transform: rotate(90deg);
}
.mobile-menu-toggle.active .menu-icon {
  opacity: 0;
  transform: rotate(-90deg);
}
.mobile-menu-toggle.active .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-width: 1000px) {
  .main-header .navbar {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  .logo {
    gap: 0.5rem;
  }
  .nav-menu {
    display: none !important;
    position: absolute;
    top: 89px;
    left: 0;
    right: 0;
    background-color: #0a1f2e;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 1001;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .nav-menu li {
    width: 100%;
    padding: 0;
  }
  .nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cta-button, .cta-button-white {
    display: none;
  }
  .cta-button.mobile-visible, .mobile-visible.cta-button-white {
    display: block;
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem;
    text-align: center;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 89px);
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-banner .video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 0rem 4rem;
  display: flex;
  gap: 2rem;
  align-items: flex-end;
}
.hero-content .hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-content .hero-left .google-review {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
}
.hero-content .hero-left .google-review .google-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content .hero-left .google-review .google-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-content .hero-left .google-review .stars {
  width: 15px;
  height: 15px;
}
.hero-content .hero-left .google-review .stars img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-content .hero-left .google-review .rating {
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "elza-text", sans-serif;
}
.hero-content .hero-left .hero-title {
  font-size: 4.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-family: "vinila";
}
.hero-content .hero-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.hero-content .hero-right .hero-description {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 500px;
}

.about-us {
  background-color: #0d2639;
}
.about-us .content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  padding: 6rem 0rem 4rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: flex-start;
}
.about-us .content .col-1 {
  width: 80%;
  display: flex;
  flex-direction: row;
}
.about-us .content .col-1 .about-us-title {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "vinila";
  color: #ffffff;
  line-height: 1.2em;
}
.about-us .content .col-2 {
  width: 80%;
}
.about-us .content .col-2 .about-us-description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.2em;
  margin-bottom: 2rem;
}

.mission-values {
  background-color: #010b54;
  padding: 6rem 4rem;
}
@media screen and (max-width: 1600px) {
  .mission-values {
    padding: 6rem 0rem;
  }
}
.mission-values .mission-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.mission-values .mission-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  width: 33.33%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.mission-values .mission-card .mission-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.mission-values .mission-card .mission-content .mission-icon {
  margin-bottom: 2rem;
  width: 62px;
  height: 62px;
}
.mission-values .mission-card .mission-content .mission-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.mission-values .mission-card .mission-content .mission-title {
  font-family: "vinila", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.mission-values .mission-card .mission-content .mission-description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.mission-values .mission-card .mission-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  display: block;
  margin-top: auto;
}
.mission-values .mission-card .mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-section {
  background-color: #010b54;
  padding: 0;
}
.stats-section .stats-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.stats-section .stats-container .stats-question {
  flex: 0 0 auto;
}
.stats-section .stats-container .stats-question h2 {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
}
.stats-section .stats-container .stats-metrics {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}
.stats-section .stats-container .stats-metrics .stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stats-section .stats-container .stats-metrics .stat-item .stat-number {
  font-family: "vinila", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -3px;
}
.stats-section .stats-container .stats-metrics .stat-item .stat-label {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
.stats-section .stats-container .stats-metrics .stat-divider {
  width: 1px;
  height: 80px;
  background-color: #ffffff;
  flex: 0 0 auto;
}

.products-section {
  background-color: #0a1f2e;
  padding: 6rem 4rem;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .products-section {
    padding: 6rem 0rem;
  }
}
.products-section .products-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}
.products-section .products-container .products-header {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
.products-section .products-container .products-header .products-title-col {
  flex: 0 0 auto;
  width: 50%;
}
.products-section .products-container .products-header .products-title-col .products-title {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
}
.products-section .products-container .products-header .products-description-col {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}
.products-section .products-container .products-header .products-description-col .products-description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a0a0a0;
  line-height: 1.6;
  width: 180px;
}
.products-section .products-container .products-carousel-wrapper {
  position: relative;
}
.products-section .products-container .products-carousel-wrapper .products-carousel {
  overflow: visible;
}
.products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide {
  height: auto;
  width: 316px !important;
  margin-right: 1.5rem;
}
.products-section .products-container .products-carousel-wrapper .product-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 38, 57, 0.3) 50%, rgba(13, 38, 57, 0.95) 100%);
  z-index: 1;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background-color: #ff7d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-icon span {
  color: #ffffff;
  font-family: "vinila", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2rem;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-title {
  font-family: "vinila", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: none;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button a {
  max-width: 130px;
  display: flex;
  background-color: #ffffff;
  width: auto;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 150px;
  justify-content: center;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button a span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: #010b54 !important;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  font-family: "Roboto", sans-serif;
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button a::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ff7d00;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button a:hover::after {
  width: 100%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.products-section .products-container .products-carousel-wrapper .product-card .product-content .product-button a:hover span {
  color: #ffffff !important;
}
.products-section .products-container .products-carousel-wrapper .product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}
.products-section .products-container .products-carousel-wrapper .product-card:hover .product-icon {
  opacity: 1;
  transform: scale(1);
}
.products-section .products-container .products-carousel-wrapper .product-card:hover .product-content {
  transform: translateY(-20px);
}
.products-section .products-container .products-carousel-wrapper .product-card:hover .product-content .product-title {
  transform: translateY(-20px);
}
.products-section .products-container .products-carousel-wrapper .product-card:hover .product-content .product-button {
  opacity: 1;
  transform: translateY(-10px);
  pointer-events: all;
}
.products-section .products-container .products-carousel-wrapper .carousel-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn {
  width: 56px;
  height: 36px;
  border: 1px solid #010b54;
  background-color: #ffffff;
  color: #010b54;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-size: 1.25rem;
}
.products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn:hover:not(:disabled):not(.disabled) {
  background-color: #010b54;
  color: #ffffff;
}
.products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn:disabled, .products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn:disabled:hover, .products-section .products-container .products-carousel-wrapper .carousel-controls .carousel-btn.disabled:hover {
  background-color: #ffffff;
  color: #010b54;
}

.quote-section {
  background-color: #0a1f2e;
  padding: 4rem 4rem 6rem;
}
.quote-section .quote-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.quote-section .quote-container .quote-form-wrapper {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 3px 10px 40px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  height: auto;
}
.quote-section .quote-container .quote-form-wrapper .quote-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}
.quote-section .quote-container .quote-form-wrapper .quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quote-section .quote-container .quote-form-wrapper .quote-form {
  height: auto;
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-title {
  font-family: "vinila", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper {
  position: relative;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input,
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input::placeholder,
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input:focus,
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea:focus {
  border: 1px solid #010b54;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea {
  resize: vertical;
  min-height: 180px;
  padding-top: 0.75rem;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input:focus,
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea:focus {
  opacity: 1;
  transform: scale(1);
  border: 1px solid #010b54;
}
.quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .cta-button, .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .cta-button-white {
  margin-top: 1rem;
  align-self: flex-start;
}

.instagram-section {
  background-color: #010b54;
  padding: 6rem 4rem;
  overflow: hidden;
}
.instagram-section .instagram-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.instagram-section .instagram-container .instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.instagram-section .instagram-container .instagram-header .instagram-title {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
}
.instagram-section .instagram-container .instagram-header .instagram-button {
  display: flex;
  background-color: #ffffff;
  width: auto;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 200px;
  justify-content: center;
}
.instagram-section .instagram-container .instagram-header .instagram-button span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: #010b54 !important;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  font-family: "Roboto", sans-serif;
}
.instagram-section .instagram-container .instagram-header .instagram-button::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ff7d00;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instagram-section .instagram-container .instagram-header .instagram-button:hover::after {
  width: 100%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instagram-section .instagram-container .instagram-header .instagram-button:hover span {
  color: #ffffff !important;
}
.instagram-section .instagram-container .instagram-carousel-wrapper {
  position: relative;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-carousel {
  overflow: visible;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-carousel .swiper-slide {
  height: auto;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-post {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-post .instagram-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-post .instagram-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-post:hover .instagram-image-wrapper img {
  transform: scale(1.1);
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls .instagram-btn {
  width: 56px;
  height: 36px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-size: 1.25rem;
  border-radius: 4px;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls .instagram-btn:hover:not(:disabled):not(.disabled) {
  background-color: #ffffff;
  color: #010b54;
}
.instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls .instagram-btn:disabled, .instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls .instagram-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 1.5rem 2rem !important;
  }
  .hero-left {
    gap: 1.5rem;
    width: 100% !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-right {
    align-items: flex-start;
    width: 100% !important;
  }
  .hero-description {
    font-size: 1rem;
  }
  .about-us .content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .about-us .content .col-50 {
    width: 100%;
  }
  .mission-values {
    padding: 4rem 2rem;
  }
  .mission-values .mission-content {
    flex-direction: column;
    gap: 3rem;
  }
  .mission-values .mission-card {
    width: 100%;
  }
  .mission-values .mission-card .mission-content .mission-icon img {
    width: 100%;
    height: 100%;
  }
  .mission-values .mission-card .mission-title {
    font-size: 1.25rem;
  }
  .stats-section .stats-container {
    padding: 3rem 2rem;
    gap: 3rem;
  }
  .stats-section .stats-container .stats-question h2 {
    font-size: 2rem;
  }
  .stats-section .stats-container .stats-metrics {
    gap: 1.5rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-number {
    font-size: 3rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-label {
    font-size: 0.9rem;
  }
  .stats-section .stats-container .stats-metrics .stat-divider {
    height: 60px;
  }
  .products-section {
    padding: 4rem 2rem;
  }
  .products-section .products-container .products-header {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .products-section .products-container .products-header .products-title-col {
    width: 100%;
  }
  .products-section .products-container .products-header .products-title-col .products-title {
    font-size: 2.5rem;
  }
  .products-section .products-container .products-header .products-description-col .products-description {
    max-width: 100%;
    width: 100%;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-image-wrapper {
    height: 350px;
  }
  .quote-section {
    padding: 4rem 2rem 0;
  }
  .quote-section .quote-container .quote-form-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-image {
    flex: 0 0 auto;
    height: 300px;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form {
    padding: 3rem 2rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .instagram-section {
    padding: 4rem 2rem;
  }
  .instagram-section .instagram-container .instagram-header .instagram-title {
    font-size: 2.5rem;
  }
  .instagram-section .instagram-container .instagram-header .instagram-button {
    min-width: 180px;
  }
  .instagram-section .instagram-container .instagram-header .instagram-button span {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    min-height: 400px;
  }
  .hero-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  .hero-left {
    gap: 1rem;
  }
  .google-review {
    font-size: 0.8rem;
  }
  .google-review .google-icon {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
  .google-review .stars {
    font-size: 0.9rem;
  }
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .hero-cta-button {
    width: 100%;
    max-width: 300px;
  }
  .hero-cta-button span {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  .mission-values {
    padding: 3rem 1.5rem;
  }
  .mission-values .mission-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .mission-values .mission-card {
    width: 100%;
  }
  .mission-values .mission-card .mission-content .mission-icon {
    margin-bottom: 1.5rem;
  }
  .mission-values .mission-card .mission-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .mission-values .mission-card .mission-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .mission-values .mission-card .mission-image {
    height: 100px;
  }
  .stats-section .stats-container {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  .stats-section .stats-container .stats-question {
    width: 100%;
    text-align: center;
  }
  .stats-section .stats-container .stats-question h2 {
    font-size: 1.75rem;
  }
  .stats-section .stats-container .stats-metrics {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item {
    flex: 0 0 calc(33.33% - 1rem);
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-number {
    font-size: 2.5rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-label {
    font-size: 0.85rem;
  }
  .stats-section .stats-container .stats-metrics .stat-divider {
    display: none;
  }
  .products-section {
    padding: 3rem 1.5rem;
  }
  .products-section .products-container .products-header .products-title-col .products-title {
    font-size: 2rem;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-image-wrapper {
    height: 300px;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-content {
    padding: 1.5rem;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-content .product-title {
    font-size: 1.25rem;
  }
  .quote-section {
    padding: 3rem 1.5rem 0;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-image {
    height: 250px;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form {
    padding: 2.5rem 1.5rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content {
    gap: 1.5rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input,
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea {
    font-size: 0.95rem;
  }
  .instagram-section {
    padding: 3rem 1.5rem;
  }
  .instagram-section .instagram-container .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  .instagram-section .instagram-container .instagram-header .instagram-title {
    font-size: 2rem;
  }
  .instagram-section .instagram-container .instagram-header .instagram-button {
    width: 100%;
    max-width: 100%;
  }
  .instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls {
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    height: 60vh;
    min-height: 350px;
  }
  .hero-content {
    gap: 1.5rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-cta-button {
    width: 100%;
  }
  .hero-cta-button span {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }
  .mission-values {
    padding: 2.5rem 1rem;
  }
  .mission-values .mission-content {
    flex-direction: column;
    gap: 2rem;
  }
  .mission-values .mission-card {
    width: 100%;
  }
  .mission-values .mission-card .mission-content .mission-icon {
    margin-bottom: 1.25rem;
  }
  .mission-values .mission-card .mission-title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }
  .mission-values .mission-card .mission-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .mission-values .mission-card .mission-image {
    height: 80px;
  }
  .stats-section .stats-container {
    padding: 2.5rem 1.5rem;
  }
  .stats-section .stats-container .stats-question h2 {
    font-size: 1.5rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item {
    flex: 0 0 100%;
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-number {
    font-size: 2rem;
  }
  .stats-section .stats-container .stats-metrics .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .products-section {
    padding: 2.5rem 1rem;
  }
  .products-section .products-container .products-header .products-title-col .products-title {
    font-size: 1.75rem;
  }
  .products-section .products-container .products-header .products-description-col .products-description {
    font-size: 0.9rem;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-image-wrapper {
    height: 250px;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-content {
    padding: 1.25rem;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-content .product-title {
    font-size: 1.1rem;
  }
  .products-section .products-container .products-carousel-wrapper .products-carousel .swiper-slide .product-card .product-content .product-button a {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
  .quote-section {
    padding: 2.5rem 1rem 0;
  }
  .quote-section .quote-container .quote-form-wrapper {
    border-radius: 4px;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-image {
    height: 200px;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form {
    padding: 2rem 1rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content {
    gap: 1.25rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group label {
    font-size: 0.9rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper input,
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper textarea {
    font-size: 0.9rem;
    padding: 0.625rem 0;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper .input-icon {
    width: 28px;
    height: 28px;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .form-group .input-wrapper .input-icon span {
    font-size: 0.875rem;
  }
  .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .cta-button, .quote-section .quote-container .quote-form-wrapper .quote-form .quote-form-content .cta-button-white {
    width: 100%;
    max-width: 100%;
  }
  .instagram-section {
    padding: 2.5rem 1rem;
  }
  .instagram-section .instagram-container .instagram-header .instagram-title {
    font-size: 1.75rem;
  }
  .instagram-section .instagram-container .instagram-carousel-wrapper .instagram-controls .instagram-btn {
    width: 48px;
    height: 32px;
    font-size: 1rem;
  }
}
.sobre-meson-section {
  background-color: #0a1f2e;
  padding: 6rem 4rem;
}
.sobre-meson-section .sobre-meson-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-left {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 4rem;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-title {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-right {
  flex: 0 0 30%;
  position: relative;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper {
  position: relative;
  width: 443.38px;
  height: 400px;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper .sobre-meson-image {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper .sobre-meson-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper .sobre-meson-overlay {
  position: absolute;
  bottom: -46px;
  left: -98px;
  width: 196.34px;
  height: 269px;
  background-color: #010b54;
  z-index: 1;
}

@media (max-width: 1000px) {
  .sobre-meson-section {
    padding: 4rem 2rem;
  }
  .sobre-meson-section .sobre-meson-container {
    flex-direction: column;
    gap: 3rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left {
    flex: 0 0 100%;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-title {
    font-size: 2.5rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-right {
    flex: 0 0 100%;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .sobre-meson-section {
    padding: 3rem 1.5rem;
  }
  .sobre-meson-section .sobre-meson-container {
    gap: 2.5rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-title {
    font-size: 2rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-description {
    font-size: 0.95rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .sobre-meson-section {
    padding: 2.5rem 1rem;
  }
  .sobre-meson-section .sobre-meson-container {
    gap: 2rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-title {
    font-size: 1.75rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-left .sobre-meson-description {
    font-size: 0.9rem;
  }
  .sobre-meson-section .sobre-meson-container .sobre-meson-right .sobre-meson-image-wrapper {
    height: 300px;
  }
}
.products-page {
  background-color: #0a1f2e;
  position: relative;
}
.products-page .products-categories-nav {
  transform: translateY(-50%);
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}
.products-page .products-categories-nav.sticky-active {
  position: fixed;
  top: 89px;
  transform: none;
  background-color: #0d2639;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 99;
  padding: 0.5rem 0;
}
.products-page .products-categories-nav.sticky-active .categories-container {
  background-color: #0d2639;
}
.products-page .products-categories-nav .categories-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-page .products-categories-nav .categories-container .categories-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.products-page .products-categories-nav .categories-container .categories-list::-webkit-scrollbar {
  height: 4px;
}
.products-page .products-categories-nav .categories-container .categories-list::-webkit-scrollbar-track {
  background: transparent;
}
.products-page .products-categories-nav .categories-container .categories-list::-webkit-scrollbar-thumb {
  background: #010b54;
  border-radius: 2px;
}
.products-page .products-categories-nav .categories-container .categories-list .category-btn {
  background-color: #7e7e7e;
  border: none;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}
.products-page .products-categories-nav .categories-container .categories-list .category-btn:hover {
  color: #ffffff;
  background-color: #ff7d00;
}
.products-page .products-categories-nav .categories-container .categories-list .category-btn.active, .products-page .products-categories-nav .categories-container .categories-list .category-btn[data-active=true] {
  color: #ffffff;
  background-color: #ff7d00;
}
.products-page .products-content {
  padding: 4rem 4rem 6rem;
}
.products-page .products-content .products-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.products-page .products-content .products-container .category-header {
  display: flex;
  margin-bottom: 4rem;
  align-items: flex-start;
}
.products-page .products-content .products-container .category-header .category-title-section {
  flex: 0 0 auto;
  width: 33.33%;
}
.products-page .products-content .products-container .category-header .category-title-section .category-title {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
.products-page .products-content .products-container .category-header .category-description-section {
  flex: 1;
}
.products-page .products-content .products-container .category-header .category-description-section .category-description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
}
.products-page .products-content .products-container .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.products-page .products-content .products-container .products-grid .no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
}
.products-page .products-content .products-container .products-grid .no-products p {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  color: #ffffff;
}
.products-page .products-content .products-container .products-grid .product-card {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.products-page .products-content .products-container .products-grid .product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.products-page .products-content .products-container .products-grid .product-card .product-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f9f9f9;
}
.products-page .products-content .products-container .products-grid .product-card .product-image-wrapper .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.products-page .products-content .products-container .products-grid .product-card:hover .product-image {
  transform: scale(1.05);
}
.products-page .products-content .products-container .products-grid .product-card .product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.products-page .products-content .products-container .products-grid .product-card .product-info .product-name {
  font-family: "vinila", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.products-page .products-content .products-container .products-grid .product-card .product-info .product-description {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) {
  .products-page .products-categories-nav .categories-container {
    padding: 0 2rem;
  }
  .products-page .products-content {
    padding: 3rem 2rem 4rem;
  }
  .products-page .products-content .products-container .category-header {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .products-page .products-content .products-container .category-header .category-title-section {
    width: 100%;
  }
  .products-page .products-content .products-container .category-header .category-title-section .category-title {
    font-size: 2.5rem;
  }
  .products-page .products-content .products-container .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-image-wrapper {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .products-page .products-categories-nav .categories-container {
    padding: 0 1.5rem;
  }
  .products-page .products-categories-nav .categories-container .categories-list .category-btn {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }
  .products-page .products-content {
    padding: 2.5rem 1.5rem 3rem;
  }
  .products-page .products-content .products-container .category-header {
    margin-bottom: 2.5rem;
  }
  .products-page .products-content .products-container .category-header .category-title-section .category-title {
    font-size: 2rem;
  }
  .products-page .products-content .products-container .category-header .category-description-section .category-description {
    font-size: 0.95rem;
  }
  .products-page .products-content .products-container .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-image-wrapper {
    height: 200px;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-info {
    padding: 1.25rem;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-info .product-name {
    font-size: 1.1rem;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-info .product-description {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .products-page .products-categories-nav .categories-container {
    padding: 0 1rem;
  }
  .products-page .products-categories-nav .categories-container .categories-list .category-btn {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }
  .products-page .products-content {
    padding: 2rem 1rem 2.5rem;
  }
  .products-page .products-content .products-container .category-header {
    margin-bottom: 2rem;
  }
  .products-page .products-content .products-container .category-header .category-title-section .category-title {
    font-size: 1.75rem;
  }
  .products-page .products-content .products-container .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .products-page .products-content .products-container .products-grid .product-card .product-image-wrapper {
    height: 250px;
  }
}
.contact-page {
  background-color: #0a1f2e;
  padding: 6rem 4rem;
}
.contact-page .contact-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.contact-page .contact-container .contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.contact-page .contact-container .contact-content .contact-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}
.contact-page .contact-container .contact-content .contact-left .contact-title {
  font-family: "vinila", sans-serif;
  font-size: 3.375rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}
@media screen and (max-width: 1600px) {
  .contact-page .contact-container .contact-content .contact-left .contact-title {
    font-size: 2.5rem;
  }
}
.contact-page .contact-container .contact-content .contact-left .contact-intro {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}
.contact-page .contact-container .contact-content .contact-left .contact-info {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}
.contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  padding-bottom: 1rem;
}
.contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item a:hover {
  color: #ff7d00;
}
.contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item i {
  font-size: 1.5rem;
  color: #ff7d00;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item span {
  color: #ffffff;
}
.contact-page .contact-container .contact-content .contact-left .contact-map {
  width: 100%;
  height: 366px;
  overflow: hidden;
}
.contact-page .contact-container .contact-content .contact-left .contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-page .contact-container .contact-content .contact-right {
  flex: 0 0 50%;
  background-color: #0d2639;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem;
}
.contact-page .contact-container .contact-content .contact-right .contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper {
  position: relative;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper input,
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper textarea {
  border-color: transparent;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper input::placeholder,
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper input:focus,
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper textarea:focus {
  border-color: #ff7d00;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 0.75rem;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .cta-button, .contact-page .contact-container .contact-content .contact-right .contact-form .cta-button-white {
  margin-top: 1rem;
  align-self: flex-start;
  background-color: #ffffff;
  width: auto;
  min-width: 212px;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .cta-button span, .contact-page .contact-container .contact-content .contact-right .contact-form .cta-button-white span {
  color: #010b54 !important;
}
.contact-page .contact-container .contact-content .contact-right .contact-form .cta-button::after, .contact-page .contact-container .contact-content .contact-right .contact-form .cta-button-white::after {
  background-color: #ff7d00;
}

@media (max-width: 1000px) {
  .contact-page {
    padding: 4rem 2rem;
  }
  .contact-page .contact-container .contact-content {
    flex-direction: column;
    gap: 3rem;
  }
  .contact-page .contact-container .contact-content .contact-left {
    flex: 0 0 100%;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-title {
    font-size: 2.5rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-map {
    height: 350px;
  }
  .contact-page .contact-container .contact-content .contact-right {
    width: 100%;
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .contact-page {
    padding: 3rem 1.5rem;
  }
  .contact-page .contact-container .contact-content {
    gap: 2.5rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-title {
    font-size: 2rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-intro {
    font-size: 0.95rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item {
    font-size: 0.95rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-info .contact-info-item i {
    font-size: 1.25rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-map {
    height: 300px;
  }
  .contact-page .contact-container .contact-content .contact-right {
    padding: 2.5rem 1.5rem;
  }
  .contact-page .contact-container .contact-content .contact-right .contact-form {
    gap: 1.5rem;
  }
  .contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper input,
  .contact-page .contact-container .contact-content .contact-right .contact-form .form-group .input-wrapper textarea {
    font-size: 0.95rem;
    padding: 0.625rem 0.875rem;
  }
}
@media (max-width: 480px) {
  .contact-page {
    padding: 2.5rem 1rem;
  }
  .contact-page .contact-container .contact-content {
    gap: 2rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-title {
    font-size: 1.75rem;
  }
  .contact-page .contact-container .contact-content .contact-left .contact-map {
    height: 250px;
  }
  .contact-page .contact-container .contact-content .contact-right {
    padding: 2rem 1rem;
  }
  .contact-page .contact-container .contact-content .contact-right .contact-form {
    gap: 1.25rem;
  }
}
.main-footer {
  background-color: #f9f9f9;
  color: #010b54;
  width: 100%;
  position: relative;
}
.main-footer .footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 0rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.main-footer .footer-container .footer-content {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.main-footer .footer-container .footer-content .footer-column {
  width: 33.33%;
  border-left: 1px solid rgba(38, 32, 112, 0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  align-items: center;
}
.main-footer .footer-container .footer-content .footer-column:first-child {
  border-left: none;
  align-items: flex-start;
  padding-left: 0;
}
.main-footer .footer-container .footer-content .footer-column:last-child {
  align-items: flex-end;
  padding-right: 0;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 177px;
  height: 59px;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-social .social-icon {
  width: 32px;
  height: 32px;
  background-color: #010b54;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-size: 1.25rem;
}
.main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-social .social-icon:hover {
  background-color: #ff7d00;
  color: #ffffff;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 177.9px;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #010b54;
  margin-bottom: 1.5rem;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #010b54;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  width: fit-content;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a:hover, .main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a.active {
  color: #ff7d00;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff7d00;
  transition: width 0.3s ease;
}
.main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a:hover::before, .main-footer .footer-container .footer-content .footer-column.footer-pages .container-flex-col02 .footer-nav a.active::before {
  width: 100%;
}
.main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 260.6px;
}
.main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 .contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 .contact-item .contact-label {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #010b54;
}
.main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 .contact-item .contact-value {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #010b54;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 .contact-item .contact-value:hover, .main-footer .footer-container .footer-content .footer-column.footer-contact .container-flex-col03 .contact-item .contact-value[href]:hover {
  color: #ff7d00;
}
.main-footer .footer-bottom {
  border-top: 1px solid rgba(38, 32, 112, 0.15);
  padding: 2rem;
}
.main-footer .footer-bottom .footer-copyright {
  text-align: center;
}
.main-footer .footer-bottom .footer-copyright p {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #010b54;
  margin: 0;
}

@media (max-width: 1000px) {
  .main-footer .footer-container {
    padding: 3rem 2rem 1.5rem;
  }
  .main-footer .footer-container .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  .main-footer .footer-container .footer-content.footer-logo {
    padding: 0;
  }
  .main-footer .footer-container .footer-content::before, .main-footer .footer-container .footer-content::after {
    display: none;
  }
  .main-footer .footer-container .footer-content .footer-column {
    width: 100%;
    padding: 0;
    gap: 0;
  }
  .main-footer .footer-container .footer-content .footer-column .container-flex-col01,
  .main-footer .footer-container .footer-content .footer-column .container-flex-col02,
  .main-footer .footer-container .footer-content .footer-column .container-flex-col03 {
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
    max-width: 100%;
  }
  .main-footer .footer-container .footer-content .footer-column .container-flex-col01 .footer-title,
  .main-footer .footer-container .footer-content .footer-column .container-flex-col02 .footer-title,
  .main-footer .footer-container .footer-content .footer-column .container-flex-col03 .footer-title {
    text-align: center;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper {
    justify-content: flex-start;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-pages {
    align-items: center;
    border-left: none;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-pages .footer-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-contact {
    align-items: center;
    border-left: none;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-contact .contact-item {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-contact .contact-item span {
    text-align: center;
  }
  .main-footer .footer-bottom {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-container {
    padding: 2.5rem 1.5rem 1rem;
  }
  .main-footer .footer-container .footer-content {
    gap: 2.5rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper .footer-logo-icon {
    width: 50px;
    height: 50px;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper .footer-logo-icon span {
    font-size: 1.75rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper .footer-logo-text .logo-name {
    font-size: 1.25rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper .footer-logo-text .logo-subtitle {
    font-size: 0.75rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-social .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-pages .footer-title {
    font-size: 1.1rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-pages .footer-nav a {
    font-size: 0.95rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-contact .contact-item .contact-label {
    font-size: 0.95rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-contact .contact-item .contact-value {
    font-size: 0.95rem;
  }
  .main-footer .footer-bottom {
    padding: 1.25rem 1.5rem;
  }
  .main-footer .footer-bottom .footer-copyright p {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .main-footer .footer-container {
    padding: 2rem 1rem 1rem;
  }
  .main-footer .footer-container .footer-content {
    gap: 2rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-logo .footer-logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .main-footer .footer-container .footer-content .footer-column.footer-pages .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
  .main-footer .footer-bottom {
    padding: 1rem;
  }
  .main-footer .footer-bottom .footer-copyright p {
    font-size: 0.75rem;
  }
}
body {
  background-color: #0d2639;
  color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.cta-button, .cta-button-white {
  display: flex;
  background-color: #010b54;
  width: 212px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cta-button span, .cta-button-white span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: #ffffff !important;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}
.cta-button::after, .cta-button-white::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ff7d00;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
.cta-button:hover::after, .cta-button-white:hover::after {
  width: 100%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

.cta-button2 {
  display: flex;
  background-color: #ffffff;
  width: 212px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cta-button2 span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: #010b54 !important;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}
.cta-button2::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ff7d00;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
.cta-button2:hover::after {
  width: 100%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
.cta-button2:hover span {
  color: #ffffff !important;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

.cta-button-white {
  background-color: #ffffff;
  color: #010b54;
  border: 1px solid #010b54;
}
.cta-button-white::after {
  background-color: #010b54;
}
.cta-button-white:hover::after {
  width: 0;
}

.hero-banner-page {
  position: relative;
  width: 100%;
  height: 495px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-page .hero-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner-page .hero-banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-banner-page .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  height: 495px;
  margin: 0 auto;
  padding: 0 4rem 4rem;
}
@media (min-width: 1441px) {
  .hero-banner-page .hero-content {
    padding: 0 0 4rem;
  }
}
.hero-banner-page .hero-content {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-banner-page .hero-content .hero-left {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-banner-page .hero-content .hero-left .google-review {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
}
.hero-banner-page .hero-content .hero-left .google-review .google-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-page .hero-content .hero-left .google-review .google-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-banner-page .hero-content .hero-left .google-review .stars {
  width: 15px;
  height: 15px;
}
.hero-banner-page .hero-content .hero-left .google-review .stars img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-banner-page .hero-content .hero-left .google-review .rating {
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "elza-text", sans-serif;
}
.hero-banner-page .hero-content .hero-left .hero-title {
  font-size: 4.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-family: "vinila";
}
.hero-banner-page .hero-content .hero-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.hero-banner-page .hero-content .hero-right .hero-description {
  font-size: 1.375rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

@media (max-width: 1000px) {
  .hero-banner-page {
    height: auto;
    min-height: 400px;
  }
  .hero-banner-page .hero-content {
    padding: 0 2rem 3rem;
    gap: 0.5;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: auto;
  }
  .hero-banner-page .hero-content .hero-left {
    width: 100%;
  }
  .hero-banner-page .hero-content .hero-left .hero-title {
    font-size: 2.5rem;
  }
  .hero-banner-page .hero-content .hero-right {
    width: 100%;
  }
  .hero-banner-page .hero-content .hero-right .hero-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .hero-banner-page {
    min-height: 350px;
  }
  .hero-banner-page .hero-content {
    padding: 0 1.5rem 2rem;
    gap: 2rem;
  }
  .hero-banner-page .hero-content .hero-left {
    gap: 1rem;
  }
  .hero-banner-page .hero-content .hero-left .google-review {
    font-size: 0.8rem;
  }
  .hero-banner-page .hero-content .hero-left .google-review .google-icon {
    width: 14px;
    height: 14px;
  }
  .hero-banner-page .hero-content .hero-left .google-review .stars {
    width: 12px;
    height: 12px;
  }
  .hero-banner-page .hero-content .hero-left .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero-banner-page .hero-content .hero-right .hero-description {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .hero-banner-page {
    min-height: 300px;
  }
  .hero-banner-page .hero-content {
    padding: 0 1rem 1.5rem;
    gap: 1.5rem;
  }
  .hero-banner-page .hero-content .hero-left .hero-title {
    font-size: 1.5rem;
  }
  .hero-banner-page .hero-content .hero-right .hero-description {
    font-size: 0.9rem;
  }
}
@media (max-width: 1600px) {
  .main-header .navbar {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hero-banner-page .hero-content .hero-left .hero-title {
    font-size: 3rem;
  }
  .hero-content,
  .about-us .content,
  .mission-values .mission-content,
  .products-section .products-container,
  .quote-section .quote-container,
  .instagram-section .instagram-container,
  .sobre-meson-section .sobre-meson-container,
  .products-page .products-content .products-container,
  .contact-page .contact-container,
  .main-footer .footer-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.floating-banner-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #ff7d00;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.floating-banner-btn:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #cc6400;
}
.floating-banner-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.floating-banner-btn .tooltip {
  position: absolute;
  right: 80px;
  background-color: #010b54;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.floating-banner-btn .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #010b54;
}

.banner-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}
.banner-modal.active {
  opacity: 1;
  visibility: visible;
}
.banner-modal.active .banner-modal-content {
  transform: scale(1);
  opacity: 1;
}
.banner-modal .banner-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.banner-modal .banner-modal-content img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.banner-modal .banner-modal-content .close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.banner-modal .banner-modal-content .close-modal-btn:hover {
  background-color: #ff7d00;
  transform: rotate(90deg);
  border-color: #ff7d00;
}

/*# sourceMappingURL=style.css.map */
