@charset "UTF-8";
@font-face {
  font-family: "MontserratRegular";
  src: url("../../fonts/Montserrat-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MontserratMedium";
  src: url("../../fonts/Montserrat-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MontserratBold";
  src: url("../../fonts/Montserrat-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MontserratExtraBold";
  src: url("../../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-display: swap;
}
.font-regular {
  font-family: "MontserratRegular", sans-serif;
}

.font-medium {
  font-family: "MontserratMedium", sans-serif;
}

.font-bold {
  font-family: "MontserratBold", sans-serif;
}

.font-extra-bold {
  font-family: "MontserratExtraBold", sans-serif;
}

strong,
b {
  font-family: "MontserratBold", sans-serif;
}

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

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background: linear-gradient(45deg, #000000 15%, #212121 45%, #212121 55%, #000000 85%);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: black;
}
body::-webkit-scrollbar-thumb {
  background-color: #e43820;
}

.main-container {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1440px;
}

.last-child-without-margin > *:last-child {
  margin-bottom: 0 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeSlideDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeSlideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes arrowHoverMotion {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  40% {
    transform: translateX(4px) rotate(-12deg);
  }
  70% {
    transform: translateX(3px) rotate(-6deg);
  }
  100% {
    transform: translateX(4px) rotate(-8deg);
  }
}
.fade-in,
.slide-in-up,
.slide-in-left,
.slide-in-right,
.scale-up,
.bounce,
.rotate {
  opacity: 0;
}

.fade-in.show {
  animation: fadeIn 1s ease-in-out forwards;
}

.slide-in-up.show {
  animation: slideInUp 0.5s ease-in-out forwards;
  will-change: transform, opacity;
}

.slide-in-left.show {
  animation: slideInLeft 0.5s ease-out forwards;
}

.slide-in-right.show {
  animation: slideInRight 0.5s ease-out forwards;
}

.scale-up.show {
  animation: scaleUp 1s ease-in-out forwards;
}

.fade-slide-down {
  animation: fadeSlideDown 0.3s ease-out forwards;
}

.fade-slide-up {
  animation: fadeSlideUp 0.3s ease-out forwards;
}

.bounce.show {
  animation: bounce 1s ease-in-out forwards;
}

.rotate.show {
  animation: rotate 1s linear infinite;
}

.transparent-navbar {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8.6px);
  -webkit-backdrop-filter: blur(8.6px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.2s linear;
}
.transparent-navbar:hover {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-collapse {
  transition: all 0.2s linear;
}

.nav-link {
  font-family: MontserratRegular;
  text-transform: uppercase;
  font-size: 20px;
  color: #ddd;
  position: relative;
  display: inline-block;
  transition: all 0.2s linear;
}
.nav-link:hover {
  color: #e43820;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e43820;
  transition: all 0.2s linear;
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
}
.nav-link.active {
  color: #e43820;
  letter-spacing: 0.5px;
}
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.navbar-brand {
  text-transform: uppercase;
  font-family: MontserratBold;
  font-size: 28px;
  transform: skewX(-10deg);
  transition: all 0.2s linear;
  display: inline-block;
  letter-spacing: 2px;
}
.navbar-brand .navbar-logo {
  display: block;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  border: none;
  border-radius: 10px;
  padding: 10px 0;
}

.navbar .dropdown-menu {
  text-align: center;
}
.navbar .dropdown-menu .dropdown-item {
  font-family: MontserratRegular;
  font-size: 18px;
  color: #fff;
  padding: 12px 20px;
  transition: all 0.2s linear;
  text-transform: uppercase;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #e43820;
}
.navbar .dropdown-menu .dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #e43820 !important;
}
.navbar .dropdown-toggle::after {
  display: none;
}

/* DESKTOP: OPEN */
@media (min-width: 1025px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: 2px solid white;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

body.scroll-locked {
  overflow: hidden;
}

/* MOBILE (≤1024px) */
@media (max-width: 990px) {
  .navbar .container .navbar-collapse > .navbar-nav > .nav-item {
    margin: 0 auto !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .nav-item .nav-link {
    padding: 0 !important;
    margin-bottom: 16px !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .nav-item:first-child .nav-link {
    margin-top: 32px !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .nav-item:last-child .nav-link {
    margin-bottom: 48px !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown {
    text-align: center !important;
    background: transparent !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle {
    padding-left: 22px !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle::after {
    display: inline-block !important;
    content: "" !important;
    position: static !important;
    border: 0 !important;
    width: 14px !important;
    height: 14px !important;
    margin-left: 8px !important;
    vertical-align: middle;
    background-color: transparent !important;
    background: transparent !important;
    background-image: url("../../images/icons/arrow-down.png") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    transition: all 0.2s linear;
    transform: translateY(-2px);
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle.show {
    color: #e43820 !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg) !important;
    background-image: url("../../images/icons/arrow-down-red.png") !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle:hover {
    color: #e43820 !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown > .nav-link.dropdown-toggle:hover::after {
    background-image: url("../../images/icons/arrow-down-red.png") !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown .dropdown-menu {
    padding: 0 !important;
    margin-bottom: 16px !important;
    margin-left: 12px !important;
    background-color: transparent !important;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown .dropdown-menu > li > .dropdown-item {
    color: #c0c0c0;
  }
  .navbar .container .navbar-collapse > .navbar-nav > .dropdown:hover .dropdown-menu {
    background: transparent !important;
  }
}
/* Slider Button */
.slider-button-container {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.slider-button, .hero-button-second, .hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: MontserratMedium;
  padding: 12px 32px;
  font-size: 18px;
  background: #e12a23;
  color: white;
  width: fit-content;
  border-radius: 12px;
  text-decoration: none;
  pointer-events: auto;
  border: 2px solid #e12a23;
  box-shadow: 0 4px 15px rgba(225, 42, 35, 0.35);
  transition: all 0.2s linear;
  flex-shrink: 0;
}
.slider-button:hover, .hero-button-second:hover, .hero-button:hover {
  background: white;
  color: #e12a23;
  border-color: #e12a23;
  box-shadow: 0 6px 20px rgba(225, 42, 35, 0.5);
}

/* Hero Button */
.hero-button.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-button:hover {
  background: white;
  color: #e12a23;
  border-color: #e12a23;
  box-shadow: 0 6px 20px rgba(225, 42, 35, 0.5);
}

.hero-button-second {
  background: transparent;
  color: white;
  border: 2px solid #e12a23;
  box-shadow: none;
}
.hero-button-second:hover {
  background: #e12a23;
  color: white;
  box-shadow: 0 6px 20px rgba(225, 42, 35, 0.4);
}

/* About Button */
.about-button {
  display: inline-block;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 12px;
  font-family: MontserratMedium;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s linear;
  border: 2px solid #e12a23;
  background: #e12a23;
  color: white;
  box-shadow: 0 4px 10px rgba(225, 42, 35, 0.3);
}
.about-button:hover {
  background: white;
  color: #e12a23;
  box-shadow: 0 8px 15px rgba(225, 42, 35, 0.4);
}
.about-button:active {
  transform: scale(1) translateY(0);
  box-shadow: 0 4px 10px rgba(225, 42, 35, 0.3);
}

@media (max-width: 1024px) {
  .slider-button, .hero-button, .hero-button-second {
    font-size: 16px;
  }
  .hero-button {
    font-size: 16px;
  }
  .about-button {
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .slider-button, .hero-button, .hero-button-second {
    font-size: 16px;
    border-radius: 10px;
  }
  .hero-button {
    font-size: 16px;
  }
  .about-button {
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 10px;
  }
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../../images/hero-bg2.webp") no-repeat center center/cover;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 80px;
}
.hero-section .hero-title {
  font-family: MontserratBold;
  font-size: 3rem;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-section .hero-subtitle {
  font-family: MontserratRegular;
  font-size: 1.5rem;
  line-height: 1.6;
}
.hero-section .hero-logo {
  max-width: 535px;
  margin-bottom: 55px;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.5));
}
.hero-section .hero-button {
  margin: auto;
  margin-top: 46px;
}

@media (max-width: 1366px) {
  .hero-section .hero-title {
    font-size: 2.75rem;
    line-height: 1.35;
  }
  .hero-section .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .hero-section .hero-logo {
    max-width: 500px;
    margin-bottom: 45px;
  }
  .hero-section .hero-button {
    margin-top: 36px;
  }
}
@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
    line-height: 1.35;
  }
  .hero-section .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .hero-section .hero-logo {
    max-width: 400px;
    margin-bottom: 35px;
  }
  .hero-section .hero-button {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-title {
    font-size: 2rem;
    line-height: 1.45;
  }
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .hero-section .hero-logo {
    max-width: 350px;
    margin-bottom: 20px;
  }
  .hero-section .hero-button {
    margin-top: 30px;
  }
}
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 15%, rgb(60, 52, 52) 50%, rgb(0, 0, 0) 85%);
  text-align: center;
}
.about-section .about-header {
  margin-bottom: 48px;
}
.about-section .about-title {
  font-family: MontserratBold;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2.7rem;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.2);
}
.about-section .about-description {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: MontserratRegular;
  color: #ffffff;
}
.about-section .about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 32px;
  margin-bottom: 48px;
}
.about-section .about-features .about-item {
  width: calc((100% - 48px) / 3.001);
}
.about-section .about-box {
  background: #1a1a1a;
  padding: 32px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.about-section .about-box .about-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}
.about-section .about-box .about-box-title {
  font-size: 1.25rem;
  transform: skewX(-10deg);
  font-family: MontserratBold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}
.about-section .about-box .about-box-description {
  font-family: MontserratRegular;
  font-size: 1rem;
  color: #c0c0c0;
}

@media (max-width: 1366px) {
  .about-section .about-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .about-section .about-description {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .about-box-title {
    font-size: 1.2rem;
  }
  .about-box-description {
    font-size: 0.95rem;
  }
}
@media (max-width: 1024px) {
  .about-section .about-title {
    font-size: 2.25rem;
    line-height: 1.3;
  }
  .about-section .about-description {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .about-box-title {
    font-size: 1.2rem;
  }
  .about-box-description {
    font-size: 0.95rem;
  }
  .about-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .about-section .about-header {
    margin-bottom: 32px;
  }
  .about-section .about-features {
    margin-bottom: 32px;
  }
  .about-section .about-features .about-item {
    width: calc((100% - 48px) / 2);
  }
  .about-section .about-features .about-item:nth-last-child(1):nth-child(odd) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
  .about-section .about-features .about-item {
    width: 100%;
  }
  .about-section .about-title {
    font-size: 1.875rem;
    line-height: 1.35;
  }
  .about-section .about-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .about-box-title {
    font-size: 1.1rem;
  }
  .about-box-description {
    font-size: 0.9rem;
  }
}
.tinting-preview {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #000000 15%, #3c3434 35%, #3c3434 35%, #000000 55%);
}
.tinting-preview::before, .tinting-preview::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}
.tinting-preview::before {
  top: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
}
.tinting-preview::after {
  bottom: 0;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}
.tinting-preview .tinting-text-content {
  margin-left: calc((100vw - 1440px) / 2);
  margin-right: 32px;
}
.tinting-preview .tinting-text-content .tinting-header {
  margin-bottom: 32px;
}
.tinting-preview .tinting-title {
  font-family: MontserratBold;
  font-size: 2.7rem;
  line-height: 1.1;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.tinting-preview .tinting-description {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
  margin-bottom: 32px;
  text-align: left;
}
.tinting-preview .tinting-description::after {
  content: "";
  display: block;
  width: 17%;
  height: 4px;
  background: linear-gradient(90deg, #e12a23, #ff2c1f);
  margin: 20px 0 0 0;
  border-radius: 2px;
}
.tinting-preview .hero-features {
  list-style: none;
  font-family: MontserratRegular;
  padding: 0;
}
.tinting-preview .hero-features li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 12px;
  gap: 10px;
}
.tinting-preview .hero-features .feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  align-self: flex-start;
}
.tinting-preview .hero-features .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tinting-preview .hero-features .feature-text {
  line-height: 1.4;
}
.tinting-preview .tinting-slider-column {
  position: relative;
}
.tinting-preview .tinting-slider-column .carousel {
  aspect-ratio: 3/2;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}
.tinting-preview .tinting-slider-column .carousel .carousel-inner,
.tinting-preview .tinting-slider-column .carousel .carousel-item {
  height: 100%;
}
.tinting-preview .tinting-slider-column .carousel .tinting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tinting-preview .tinting-slider-column .carousel .carousel-control-prev,
.tinting-preview .tinting-slider-column .carousel .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 3px solid #e12a23;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);
}
.tinting-preview .tinting-slider-column .carousel .carousel-control-prev:hover,
.tinting-preview .tinting-slider-column .carousel .carousel-control-next:hover {
  background-color: #e12a23;
  box-shadow: 0 4px 15px rgba(225, 42, 35, 0.5);
}
.tinting-preview .tinting-slider-column .carousel .carousel-control-prev {
  left: 15px;
}
.tinting-preview .tinting-slider-column .carousel .carousel-control-next {
  right: 15px;
}
.tinting-preview .tinting-slider-column .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}
.tinting-preview .tinting-slider-column .video-wrapper .tinting-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tinting-preview:nth-of-type(even) {
  background: linear-gradient(-45deg, #000000 15%, #3c3434 35%, #3c3434 35%, #000000 55%);
}

.tinting-preview:nth-of-type(even) .row {
  flex-direction: row-reverse;
}
.tinting-preview:nth-of-type(even) .row .tinting-text-content {
  text-align: center;
  margin-left: 32px;
  margin-right: calc((100vw - 1440px) / 2) !important;
}
.tinting-preview:nth-of-type(even) .row .tinting-text-content .slider-button, .tinting-preview:nth-of-type(even) .row .tinting-text-content .hero-button, .tinting-preview:nth-of-type(even) .row .tinting-text-content .hero-button-second {
  margin: 0 auto;
  text-align: center;
}
.tinting-preview:nth-of-type(even) .row .tinting-text-content .hero-features {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.tinting-preview:nth-of-type(even) .row .tinting-text-content .hero-features > li {
  justify-content: center;
}
.tinting-preview:nth-of-type(even) .row .tinting-description {
  text-align: center;
}
.tinting-preview:nth-of-type(even) .row .tinting-description::after {
  margin: 20px auto 0;
}

@media (max-width: 1440px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    font-size: 1.375rem;
  }
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: #e12a23;
    box-shadow: 0 4px 15px rgba(225, 42, 35, 0.5);
    transform: scale(1.05);
  }
  .tinting-preview .tinting-text-content {
    margin-left: 16px;
    margin-right: 16px;
  }
  .tinting-preview:nth-of-type(even) .row .tinting-text-content {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}
@media (max-width: 1366px) {
  .tinting-preview .tinting-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .tinting-preview {
    padding: 40px 0;
  }
  .tinting-preview .row {
    flex-direction: column !important;
  }
  .tinting-preview .row .tinting-text-column {
    padding-bottom: 64px;
  }
  .tinting-preview .row .tinting-text-column .tinting-text-content {
    margin: 0 auto !important;
  }
  .tinting-preview .tinting-slider-column .carousel .carousel-control-prev,
  .tinting-preview .tinting-slider-column .carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .tinting-preview .tinting-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .tinting-preview .tinting-description {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: center;
  }
  .tinting-preview .tinting-description::after {
    width: 20%;
    margin: 16px auto 0;
  }
  .tinting-preview .hero-features {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
  .tinting-preview .hero-features li {
    font-size: 1rem;
  }
  .tinting-text-content {
    margin: 0 auto;
    text-align: center;
  }
  .tinting-text-content .tinting-header {
    margin-bottom: 24px !important;
  }
  .tinting-text-content .slider-button, .tinting-text-content .hero-button, .tinting-text-content .hero-button-second {
    margin: 0 auto;
    text-align: center;
  }
  .tinting-preview:nth-of-type(even) .tinting-text-content,
  .tinting-preview:nth-of-type(even) .tinting-description {
    text-align: center;
  }
  .tinting-preview:nth-of-type(even) .tinting-text-content .slider-button, .tinting-preview:nth-of-type(even) .tinting-text-content .hero-button, .tinting-preview:nth-of-type(even) .tinting-text-content .hero-button-second,
  .tinting-preview:nth-of-type(even) .tinting-description .slider-button,
  .tinting-preview:nth-of-type(even) .tinting-description .hero-button,
  .tinting-preview:nth-of-type(even) .tinting-description .hero-button-second {
    margin: 10px auto 0;
  }
  .tinting-preview:nth-of-type(even) .tinting-text-content::after,
  .tinting-preview:nth-of-type(even) .tinting-description::after {
    margin: 16px auto 0;
  }
}
@media (max-width: 767px) {
  .tinting-preview {
    padding: 40px 0;
  }
  .tinting-preview .row .tinting-text-column {
    padding-bottom: 32px;
  }
  .tinting-preview .tinting-title {
    font-size: 1.875rem;
    line-height: 1.25;
  }
  .tinting-preview .tinting-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .tinting-preview .hero-features li > .feature-text {
    max-width: 280px;
    width: 100%;
    text-align: left;
  }
}
.partners-section {
  background: linear-gradient(to bottom, black 0%, #f8fbfe 5%, #f8fbfe 95%, black 100%);
  padding: 96px 0;
}
.partners-section .partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 48px;
  row-gap: 64px;
  margin: 0 auto;
  transition: all 0.2s linear;
}
.partners-section .partner-logos .partner-logo-item {
  width: calc((100% - 192px) / 5.001);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.partners-section .partner-logos .partner-logo-item .partner-logo {
  height: 80px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  transition: all 0.2s linear;
}
.partners-section .partner-logos .partner-logo-item .partner-logo:hover {
  transform: scale(1.08);
}

.partners-title {
  font-family: MontserratBold;
  color: #111;
  text-transform: uppercase;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partners-subtitle {
  color: #444;
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 48px;
}

@media (max-width: 1366px) {
  .partners-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .partners-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .partners-section .partner-logos .partner-logo-item {
    width: calc((100% - 144px) / 4.001);
  }
}
@media (max-width: 1024px) {
  .partners-title {
    font-size: 2.25rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .partners-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: none;
  }
  .partners-section {
    padding: 72px 0;
  }
  .partners-section .partner-logos {
    column-gap: 32px;
    row-gap: 48px;
  }
  .partners-section .partner-logos .partner-logo-item {
    width: calc((100% - 64px) / 3.001);
  }
  .partners-section .partner-logos .partner-logo-item .partner-logo {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .partners-title {
    font-size: 1.875rem;
    line-height: 1.25;
  }
  .partners-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .partners-section .partner-logos {
    column-gap: 24px;
    row-gap: 32px;
  }
  .partners-section .partner-logos .partner-logo-item {
    width: calc((100% - 24px) / 2.001);
  }
  .partners-section .partner-logos .partner-logo-item .partner-logo {
    height: 60px;
  }
}
.location-map {
  text-align: center;
  padding: 96px 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(60, 52, 52) 50%, rgb(0, 0, 0) 100%);
}
.location-map .map-title {
  font-size: 2.7rem;
  font-family: MontserratBold;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.location-map .map-description {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #d9d9d9;
  margin-bottom: 36px;
}
.location-map .map-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1a1a;
  box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.2s linear;
}
.location-map .map-container:hover {
  box-shadow: 0px 12px 25px rgba(255, 255, 255, 0.25);
}
.location-map iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 12px;
}
.location-map .map-placeholder {
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
  font-family: MontserratRegular;
  font-size: 16px;
  line-height: 1.6;
  height: 300px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.location-map .map-placeholder-text {
  margin-bottom: 0px !important;
  font-family: MontserratRegular;
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}
.location-map .map-consent-btn {
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 8px;
}

@media (max-width: 1366px) {
  .location-map .map-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  iframe {
    height: 550px;
  }
}
@media (max-width: 1024px) {
  .location-map {
    padding: 72px 0;
  }
  .location-map .map-placeholder {
    font-size: 15px;
    line-height: 1.5;
    padding: 30px 20px;
    height: 250px;
  }
  .location-map .map-placeholder-text {
    font-size: 15px;
    line-height: 1.5;
  }
  .location-map .map-consent-btn {
    font-size: 13px;
    padding: 10px 24px;
  }
  .location-map .map-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .location-map .map-description {
    margin-bottom: 24px;
  }
  .location-map iframe {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .location-map {
    padding: 48px 0;
  }
  .location-map .map-placeholder {
    font-size: 14px;
    line-height: 1.4;
    padding: 25px 16px;
    height: 220px;
  }
  .location-map .map-placeholder-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .location-map .map-consent-btn {
    font-size: 12px;
    padding: 8px 20px;
  }
  .location-map .map-title {
    font-size: 1.875rem;
    line-height: 1.25;
  }
  .location-map .map-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .map-container {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
  .location-map iframe {
    height: 450px;
  }
}
.footer {
  background: linear-gradient(180deg, rgb(0, 0, 0) 50%, rgb(60, 52, 52) 100%);
  color: #ddd;
  padding: 60px 0;
  text-align: center;
  font-family: MontserratRegular;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.footer.show {
  opacity: 1;
  transform: translateY(0);
}
.footer .footer-title {
  font-size: 28px;
  font-family: MontserratBold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-contact .footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  color: #ddd;
  margin-right: 18px;
  margin-bottom: 18px;
}
.footer .footer-contact .footer-contact-item:hover {
  color: #e43820;
}
.footer .footer-contact .footer-contact-item:hover svg path {
  fill: #e43820;
}
.footer .footer-contact .footer-contact-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-self: flex-start;
}
.footer .footer-contact .footer-contact-item svg path {
  transition: all 0.2s linear;
}
.footer .footer-contact .footer-contact-item > a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s linear;
  flex-shrink: 0;
}
.footer .footer-contact .footer-contact-item > a:hover {
  color: #e43820;
}
.footer .footer-contact .footer-contact-item a,
.footer .footer-contact .footer-contact-item span,
.footer .footer-contact .footer-contact-item p {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  line-height: 1.2;
}
.footer .footer-link {
  color: #ddd;
  text-decoration: none;
  font-size: 22px;
}
.footer .footer-link:hover {
  color: #e43820;
}
.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.footer .social-icons .social-icon {
  width: 48px;
  height: 48px;
  transition: all 0.2s linear;
}
.footer .social-icons .social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s linear;
}
.footer .social-icons .social-icon:hover {
  transform: scale(1.05);
}
.footer .social-icons .social-icon:hover img {
  transform: scale(1.05);
}
.footer .footer-separator {
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px auto;
}
.footer .footer-bottom {
  font-size: 16px;
  color: #aaa;
  font-family: MontserratRegular;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .footer .footer-box {
    margin-bottom: 32px;
  }
  .footer .footer-box .footer-contact .footer-contact-item > a {
    text-align: left;
  }
}
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e12a23;
  color: white;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  z-index: 999;
  border: solid 1px white;
  animation: buttonPulse 2s infinite ease-in-out;
  padding: 0;
}

.floating-contact img {
  width: 34px;
  height: 34px;
  filter: invert(1);
  transform: rotate(-30deg);
}

.floating-contact:hover {
  background: white;
  animation: hoverLift 0.3s ease-in-out forwards;
}

.floating-contact:hover img {
  filter: invert(0);
}

@media (max-width: 1024px) {
  .floating-contact {
    bottom: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
  }
  .floating-contact img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }
  .floating-contact img {
    width: 28px;
    height: 28px;
  }
}
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.modal-image-wrapper .modal-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.modal-image-wrapper .tint-level-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  pointer-events: none;
  z-index: 2;
}
.modal-image-wrapper .tint-level-overlay .tint-strip {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
  font-size: 14px;
  font-family: MontserratBold;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-image-wrapper .tint-level-overlay .tint-strip:last-child {
  border-right: none;
}

.modal-content {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-title {
  font-family: "MontserratBold";
  font-size: 24px;
  color: white;
}

.modal-body {
  font-family: "MontserratRegular";
  font-size: 16px;
  line-height: 1.7;
}

#modal-images img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  max-height: 350px;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: transform 0.3s;
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.5rem;
}
.btn-close:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .modal-title {
    font-size: 20px;
  }
  .modal-body {
    font-size: 15px;
  }
  .btn-close {
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .modal-title {
    font-size: 18px;
  }
  .modal-body {
    font-size: 14px;
  }
  .btn-close {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
  .modal-image-wrapper .tint-level-overlay .tint-strip {
    font-size: 12px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 1000;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: slideUp 0.3s ease-in-out;
}
.cookie-banner .cookies-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: MontserratRegular;
  line-height: 1.5;
  text-align: center;
}

.cookie-btn, .location-map .map-consent-btn {
  background-color: #e12a23;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-family: MontserratBold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid white;
}
.cookie-btn:hover, .location-map .map-consent-btn:hover {
  background-color: rgb(183.92, 30.932, 25.08);
}

.cookie-banner {
  display: none;
  opacity: 0;
  transition: all 0.2s linear;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
}

.services {
  padding: 96px 0;
}
.services .services-header {
  text-align: center;
  margin-bottom: 48px;
}
.services .services-header .title {
  font-family: MontserratBold;
  font-size: 2.7rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.services .services-header .subtitle {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
}
.services .service-row {
  display: flex;
  column-gap: 48px;
  padding: 48px 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(228, 56, 32, 0.5);
  margin-bottom: 32px;
}
.services .service-row:last-of-type {
  margin-bottom: 52px;
}
.services .service-row .image {
  flex-shrink: 0;
}
.services .service-row .image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
}
.services .service-row .content {
  align-self: center;
}
.services .service-row .content .title {
  font-family: MontserratMedium;
  font-size: 1.5rem;
  line-height: 1.3;
  color: white;
  margin-bottom: 12px;
}
.services .service-row .content .description {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
}
.services .hero-button {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .services {
    padding: 72px 0;
  }
  .services .services-header {
    margin-bottom: 24px;
  }
  .services .services-header .title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .services .services-header .subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .services .service-row {
    padding: 32px 16px;
    column-gap: 32px;
  }
  .services .service-row .image img {
    max-height: 140px;
  }
  .services .service-row .content .title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .services .service-row .content .description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .services .service-row {
    flex-direction: column;
    text-align: center;
  }
  .services .service-row:last-of-type {
    margin-bottom: 38px;
  }
  .services .service-row .image {
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .services .service-row .image img {
    width: auto;
  }
}
.gallery {
  padding-bottom: 96px;
}
.gallery .gallery-header {
  text-align: center;
  margin-bottom: 32px;
}
.gallery .gallery-header .title {
  font-family: MontserratBold;
  font-size: 2.7rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.gallery .gallery-header .subtitle {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
}
.gallery .thumb-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery .thumb-grid .thumb {
  position: relative;
  width: calc((100% - 3 * 16px) / 4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(228, 56, 32, 0.35);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s linear;
}
.gallery .thumb-grid .thumb:hover {
  border-color: #e43820;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.gallery .thumb-grid .thumb .thumb-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery .thumb-grid .thumb .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: MontserratBold;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  pointer-events: none;
}

#fullscreen-slick {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  z-index: 9999;
  padding: 40px 20px;
}
#fullscreen-slick .slick-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: calc(100vh - 110px);
  z-index: 10;
}
#fullscreen-slick .slick-wrap .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#fullscreen-slick .slick-wrap .slick-slide .slide-media {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  outline: 0;
}
#fullscreen-slick .slick-wrap .slick-track {
  height: 100%;
  display: flex;
  align-items: center;
}
#fullscreen-slick .slick-wrap .slick-list {
  height: 100%;
}
#fullscreen-slick .slick-prev,
#fullscreen-slick .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  z-index: 20;
  pointer-events: auto;
}
#fullscreen-slick .slick-prev:before,
#fullscreen-slick .slick-next:before {
  font-size: 60px;
}
#fullscreen-slick .close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.2s linear;
  z-index: 100;
}
#fullscreen-slick .close:hover {
  opacity: 1;
}
#fullscreen-slick .counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #cfcfcf;
  font-family: MontserratRegular;
  font-size: 18px;
  letter-spacing: 0.5px;
  pointer-events: none;
}

#fullscreen-slick {
  overscroll-behavior: none;
  touch-action: none;
}

#fullscreen-slick .slick-list,
#fullscreen-slick .slick-track,
#fullscreen-slick .slick-slide,
#fullscreen-slick .slide-media {
  touch-action: pan-x;
}

#fullscreen-slick,
#fullscreen-slick .slick-list {
  -webkit-overflow-scrolling: auto;
}

@media (max-width: 1366px) {
  #fullscreen-slick .slick-prev {
    left: 8px;
  }
  #fullscreen-slick .slick-next {
    right: 8px;
  }
}
@media (max-width: 1200px) {
  .gallery .thumb-grid .thumb {
    width: calc((100% - 2 * 16px) / 3);
  }
}
@media (max-width: 1024px) {
  .gallery {
    padding-bottom: 72px;
  }
  .gallery .gallery-header .title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .gallery .gallery-header .subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .gallery .thumb-grid .thumb {
    width: calc((100% - 1 * 16px) / 2);
  }
}
@media (max-width: 767px) {
  .gallery {
    padding-bottom: 48px;
  }
  #fullscreen-slick {
    padding: 24px 12px;
  }
  #fullscreen-slick .slick-prev,
  #fullscreen-slick .slick-next {
    position: absolute;
    top: auto;
    bottom: -20px;
    transform: none;
  }
  #fullscreen-slick .slick-prev {
    left: 50%;
    transform: translateX(-100px);
  }
  #fullscreen-slick .slick-next {
    right: 50%;
    transform: translateX(100px);
  }
}
@media (max-width: 500px) {
  .gallery .thumb-grid .thumb {
    width: 100%;
  }
  .gallery .thumb-grid .thumb .thumb-media {
    height: 260px;
  }
}
.hero-banner {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 48px;
  padding: 96px 0;
}
.hero-banner .content .text .title {
  font-family: MontserratBold;
  font-size: 3rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: white;
  max-width: 400px;
}
.hero-banner .content .text .subtitle {
  font-family: MontserratRegular;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #c0c0c0;
  max-width: 670px;
  margin-bottom: 48px;
}
.hero-banner .content .text .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-banner .image > img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-banner {
    flex-direction: column;
    padding: 72px 0;
  }
  .hero-banner .content .text {
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
  .hero-banner .content .text .title {
    max-width: none;
    font-size: 2.5rem;
    line-height: 1.35;
  }
  .hero-banner .content .text .subtitle {
    max-width: none;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .hero-banner .content .text .cta-wrapper {
    justify-content: center;
  }
  .hero-banner .image {
    margin: 0 auto;
  }
  .hero-banner .image > img {
    max-height: 350px;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    padding: 48px 0;
  }
}
.benefits .header-wrapper {
  text-align: center;
  margin: auto;
  max-width: 800px;
  margin-bottom: 48px;
}
.benefits .header-wrapper .title {
  font-family: MontserratBold;
  font-size: 2.7rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.benefits .header-wrapper .subtitle {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
}
.benefits .benefits-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}
.benefits .benefits-cards .card {
  border-radius: 10px;
  text-align: center;
  padding: 32px 24px;
  width: calc(25% - 24px);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(228, 56, 32, 0.5);
  transition: all 0.2s linear;
}
.benefits .benefits-cards .card img {
  width: 66px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 16px;
}
.benefits .benefits-cards .card .title {
  font-family: MontserratBold;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: white;
}
.benefits .benefits-cards .card .subtitle {
  font-family: MontserratRegular;
  font-size: 1rem;
  color: #c0c0c0;
}
.benefits .cta-button > a {
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .benefits .benefits-cards {
    gap: 16px;
  }
  .benefits .benefits-cards .card {
    width: calc(25% - 16px);
    padding: 32px 16px;
  }
}
@media (max-width: 1024px) {
  .benefits .header-wrapper .title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .benefits .header-wrapper .subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .benefits .benefits-cards {
    gap: 24px;
    margin-bottom: 32px;
  }
  .benefits .benefits-cards .card {
    width: calc(50% - 12px);
  }
  .benefits .benefits-cards .card:nth-child(odd):last-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .benefits .benefits-cards {
    gap: 16px;
  }
  .benefits .benefits-cards .card {
    width: 100%;
    padding: 24px 16px;
  }
}
.prices-section {
  padding: 96px 0;
}
.prices-section .prices {
  text-align: center;
  margin-bottom: 48px;
}
.prices-section .prices .title {
  font-family: MontserratBold;
  font-size: 2.7rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.prices-section .prices .subtitle {
  font-family: MontserratRegular;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #c0c0c0;
}
.prices-section .bodytype-slider {
  margin-bottom: 48px;
}
.prices-section .bodytype-slider .slick-list {
  overflow: visible;
}
.prices-section .bodytype-slider .slick-slide {
  padding: 0 32px;
}
.prices-section .bodytype-slider .price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(228, 56, 32, 0.5);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-width: 866px;
  width: 100%;
  border-radius: 10px;
}
.prices-section .bodytype-slider .price-card .image {
  position: relative;
  width: 100%;
}
.prices-section .bodytype-slider .price-card .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.prices-section .bodytype-slider .price-card .image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  display: block;
}
.prices-section .bodytype-slider .price-card .image .bodytype,
.prices-section .bodytype-slider .price-card .image .from-price {
  position: absolute;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.prices-section .bodytype-slider .price-card .image .from-price {
  background-color: #e43820;
}
.prices-section .bodytype-slider .price-card .image .bodytype {
  top: 12px;
}
.prices-section .bodytype-slider .price-card .image .from-price {
  bottom: 12px;
}
.prices-section .bodytype-slider .slick-dots {
  bottom: -34px !important;
}
.prices-section .bodytype-slider .slick-dots li {
  margin: 0 !important;
  width: 18px;
}
.prices-section .bodytype-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(228, 56, 32, 0.2);
  border: none;
  transition: all 0.2s linear;
  opacity: 1;
}
.prices-section .bodytype-slider .slick-dots li button:before {
  content: none !important;
}
.prices-section .bodytype-slider .slick-dots li button:hover {
  background-color: rgba(228, 56, 32, 0.5);
}
.prices-section .bodytype-slider .slick-dots li.slick-active button {
  background-color: #e43820;
  width: 12px;
  height: 12px;
}
.prices-section .bodytype-slider .slick-arrow {
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.2s linear;
}
.prices-section .bodytype-slider .slick-arrow::before {
  content: none;
}
.prices-section .bodytype-slider .slick-arrow::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  transition: all 0.2s linear;
}
.prices-section .bodytype-slider .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: #e43820;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.prices-section .bodytype-slider .slick-arrow:hover::after {
  border-color: #e43820;
}
.prices-section .bodytype-slider .slick-arrow.slick-disabled {
  opacity: 0.4;
  cursor: default;
}
.prices-section .bodytype-slider .slick-prev {
  left: calc(50% - 560px);
}
.prices-section .bodytype-slider .slick-prev::after {
  transform: rotate(-135deg);
  margin-left: 5px;
}
.prices-section .bodytype-slider .slick-next {
  right: calc(50% - 560px);
}
.prices-section .bodytype-slider .slick-next::after {
  margin-left: -5px;
}
.prices-section .bodytype-slider.is-single {
  margin-bottom: 0;
}
.prices-section .bodytype-slider.is-single > .price-card {
  margin: 0 auto;
}
.prices-section .tint-levels {
  text-align: center;
}
.prices-section .tint-levels .tint-title {
  font-family: MontserratBold;
  font-size: 1.5rem;
  line-height: 1.75;
  color: white;
  margin-bottom: 12px;
}
.prices-section .tint-levels .chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.prices-section .tint-levels .chips .chip {
  border: 1px solid #e43820;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
}
.prices-section .tint-levels .hint {
  font-family: MontserratRegular;
  font-size: 1rem;
  line-height: 1.5;
  color: #c0c0c0;
}

@media screen and (max-width: 1440px) {
  .prices-section .bodytype-slider .slick-slide {
    padding: 0 16px;
  }
}
@media screen and (max-width: 1160px) {
  .prices-section .bodytype-slider .slick-prev {
    left: 5%;
  }
  .prices-section .bodytype-slider .slick-next {
    right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .prices-section {
    padding: 72px 0;
  }
  .prices-section .prices {
    margin-bottom: 24px;
  }
  .prices-section .prices .title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .prices-section .prices .subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .prices-section .bodytype-slider .price-card {
    max-width: 740px;
  }
  .prices-section .bodytype-slider .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .prices-section {
    padding: 48px 0;
  }
  .prices-section .bodytype-slider .price-card {
    max-width: calc(100vw - 32px);
  }
  .prices-section .bodytype-slider .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .prices-section .bodytype-slider .slick-prev {
    margin-left: -25%;
  }
  .prices-section .bodytype-slider .slick-next {
    margin-left: 25%;
  }
}
.error-404 {
  text-align: center;
}
.error-404 .container {
  margin: 0 auto;
  margin-top: 160px !important;
  height: 60vh;
  width: 100%;
}
.error-404 .error-code {
  font-size: 80px;
  font-family: MontserratBold;
  margin-bottom: 20px;
  color: white;
}
.error-404 .error-title {
  font-family: MontserratBold;
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
}
.error-404 .error-text {
  font-family: MontserratRegular;
  font-size: 16px;
  margin-bottom: 30px;
  color: white;
}
.error-404 .slider-button, .error-404 .hero-button, .error-404 .hero-button-second {
  text-align: center;
  margin: 0 auto;
  width: 250px;
  padding: 12px 0px;
}

.gift-cards {
  background-color: #111;
  color: #fff;
}
.gift-cards .gift-cards-hero {
  padding-top: 140px;
  padding-bottom: 24px;
  text-align: center;
  background-color: #111;
}
.gift-cards .gift-cards-hero .main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
.gift-cards .gift-cards-hero .main-container .gift-cards-title {
  font-family: MontserratBold;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 40px;
}
.gift-cards .gift-cards-hero .main-container .gift-cards-title span {
  color: #e43820;
}
.gift-cards .gift-cards-hero .main-container .gift-cards-subtitle {
  font-family: MontserratMedium;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 auto;
  max-width: 850px;
}
.gift-cards .gift-cards-hero .main-container .gift-cards-subtitle::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #e12a23, #ff2c1f);
  margin: 40px auto 0 auto;
  border-radius: 2px;
}
.gift-cards .gift-cards-content-section {
  padding: 60px 0;
}
.gift-cards .gift-cards-content-section .main-container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 32px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content {
  max-width: 700px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content .gift-cards-description {
  font-family: MontserratMedium;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 32px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content .gift-cards-subdescription {
  font-family: MontserratMedium;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content ul {
  font-family: MontserratRegular;
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content ul li {
  font-family: MontserratRegular;
  font-size: 1.1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-content ul li::before {
  content: "•";
  font-size: 30px;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
.gift-cards .gift-cards-content-section .main-container .gift-cards-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

@media (max-width: 1024px) {
  .gift-cards-content-section .main-container {
    flex-direction: column;
    gap: 48px;
  }
  .gift-cards .gift-cards-content-section {
    padding: 32px 0;
  }
  .gift-cards .gift-cards-content-section .main-container .gift-cards-image {
    aspect-ratio: 1/1;
    max-height: 500px;
  }
  .gift-cards .gift-cards-content-section .main-container .gift-cards-content {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .gift-cards .gift-cards-hero .main-container .gift-cards-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .gift-cards .gift-cards-hero .main-container .gift-cards-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
  .gift-cards .gift-cards-hero .main-container .gift-cards-subtitle::after {
    margin: 24px auto 0 auto;
  }
  .gift-cards .gift-cards-content-section {
    padding: 16px 0;
  }
  .gift-cards .gift-cards-content-section .main-container .gift-cards-content .gift-cards-description {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .gift-cards .gift-cards-content-section .main-container .gift-cards-content .gift-cards-subdescription {
    font-size: 1.05rem;
  }
  .gift-cards .gift-cards-content-section .main-container .gift-cards-content ul li {
    font-size: 1rem;
  }
}
.window-cleaning {
  padding-top: 77px;
}
.window-cleaning .intro {
  display: flex;
  background-color: #e43820;
}
.window-cleaning .intro .block {
  width: 50%;
  width: calc(45% + 1rem);
  flex: 0 0 auto;
}
.window-cleaning .intro .content {
  position: relative;
  width: calc(55% + 1.75rem);
  clip-path: polygon(0 0, 100% 0, calc(100% - 2rem) 102%, 0% 100%);
  background: linear-gradient(45deg, #000000 15%, #212121 45%, #212121 55%, #000000 85%);
}
.window-cleaning .intro .content .text {
  margin-left: calc((100vw - 1440px + 20px) / 2);
  padding: 160px 0 100px 40px;
}
.window-cleaning .intro .content .text .title {
  font-family: MontserratBold;
  font-size: 3rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: white;
  max-width: 400px;
}
.window-cleaning .intro .content .text .subtitle {
  font-family: MontserratRegular;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #c0c0c0;
  max-width: 670px;
  margin-bottom: 48px;
}
.window-cleaning .intro .content .design-icon {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 110px;
  height: auto;
}
.window-cleaning .intro .video {
  position: relative;
  margin-left: -1.75rem;
  clip-path: polygon(2rem 0, 100% 0, 100% 102%, 0% 100%);
  max-height: 700px;
  overflow: hidden;
  background: linear-gradient(45deg, #000000 15%, #212121 45%, #212121 55%, #000000 85%);
}
.window-cleaning .intro .video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.window-cleaning .intro .video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 1440px) {
  .window-cleaning .intro .content .text {
    padding-left: 16px;
    padding-right: 32px;
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .window-cleaning .intro {
    flex-direction: column;
    background-color: transparent;
  }
  .window-cleaning .intro .block,
  .window-cleaning .intro .content,
  .window-cleaning .intro .video {
    width: 100%;
    clip-path: none;
    margin: 0;
  }
  .window-cleaning .intro .video {
    height: 500px;
    max-height: 500px;
  }
  .window-cleaning .intro .content .text {
    margin: 0 auto;
    text-align: center;
    padding: 100px 16px 60px;
  }
  .window-cleaning .intro .content .text .title {
    max-width: none;
    font-size: 2.5rem;
    line-height: 1.35;
  }
  .window-cleaning .intro .content .text .subtitle {
    max-width: none;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .window-cleaning .intro .content .text .hero-button {
    margin: 0 auto;
  }
  .window-cleaning .intro .content .design-icon {
    display: none;
  }
}
.car-window-tinting-page {
  padding-top: 96px;
}

.building-window-tinting-page {
  padding-top: 96px;
}

.headlight-tinting-page {
  padding-top: 96px;
}

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