html {
  scrollbar-gutter: stable both-edges;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
:root {
  --marquee-gap: clamp(3rem, 15vw, 10rem);
  --marquee-speed: 22s;
  --marquee-height: 2.4em;
  --gap: clamp(24px, 4vh, 64px);
  --hero-ar: 0.75;
  --contact-max: 1000px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  max-width: 1600px;
  min-width: 300px;
  margin: 0 auto;
  font-family: system-ui, sans-serif;
  background-color: #000000;
}
.header-container {
  background: linear-gradient(
    142deg,
    rgba(0, 0, 0, 1) 17%,
    rgba(166, 2, 2, 1) 50%,
    rgba(242, 0, 0, 1) 69%
  );
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: 0.3s;
}
.logo {
  display: flex;
  max-width: 280px;
  height: 60px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .logo {
    height: 50px;
  }
}
@media (max-width: 500px) {
  .logo {
    height: 40px;
  }
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
  max-height: 100%;
  object-fit: contain;
}
.logo .mview {
  transform: scale(0.9);
  transform-origin: left center;
}
.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}
.menu-drop {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1;
  transition: transform 0.5s;
}
.menu-drop li {
  list-style-type: none;
}
.menu-drop li a {
  color: #370808;
  text-decoration: none;
  display: block;
  padding: 40px 20px;
  font-size: 20px;
  font-family: "Orbitron", sans-serif;
  transition: 0.6s;
}
.menu-drop li a:hover {
  box-shadow: 0 -5px 0 #5a0d0d inset, 550px 0 0 rgba(130, 55, 55, 0.3) inset;
  border-radius: 10px;
  padding: 1rem;
}
.hamburger {
  position: relative;
  width: 30px;
  height: 4px;
  background: #252323;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  height: 4px;
  right: 0;
  background: #252323;
  border-radius: 10px;
  transition: 0.3s;
}
.hamburger::before {
  top: -10px;
  width: 20px;
}
.hamburger::after {
  top: 10px;
  width: 25px;
}
.toggle-menu {
  position: absolute;
  width: 30px;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}
.hamburger,
.toggle-menu {
  display: none;
}
.navigation input:checked ~ .hamburger {
  background: transparent;
}
.navigation input:checked ~ .hamburger::before {
  top: 0;
  transform: rotate(-45deg);
  width: 30px;
}
.navigation input:checked ~ .hamburger::after {
  top: 0;
  transform: rotate(45deg);
  width: 30px;
}
@media screen and (max-width: 768px) {
  .hamburger,
  .toggle-menu {
    display: block;
  }
  .menu-drop {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: 240px;
    height: 100dvh;
    background: rgb(255 0 0 / 90%);
    flex-direction: column;
    transform-origin: top right;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    z-index: 999;
    padding-top: 0;
    pointer-events: none;
  }
  .navigation input:checked ~ .menu-drop {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-drop li {
    width: 100%;
  }
  .menu-drop li a,
  .menu-drop li a:hover {
    padding: 30px;
    font-size: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  }
}
@media screen and (min-width: 769px) {
  .menu-drop {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: transform 0.5s;
  }
}
@media screen and (max-width: 470px) {
  .menu-drop {
    width: 270px;
  }
}
@media screen and (max-width: 650px) {
  .header {
    padding: 0 10px;
  }
}
h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 4px;
  padding: 10px;
  color: rgb(255, 0, 0);
  font-family: "Orbitron", sans-serif;
  position: relative;
  bottom: 26dvh;
}
@media (max-width: 500px) {
  h1 {
    font-size: clamp(1.7rem, 6vw, 4rem);
    padding: 25px 20px;
    font-weight: 600;
    bottom: 36dvh;
  }
}
@media (max-width: 385px) {
  h1 {
    font-size: clamp(1.2rem, 5vw, 3rem);
    font-weight: 700;
  }
}
section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax .bg-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: translateY(0);
  transition: none;
  will-change: transform;
}
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 1100px) {
  #section1 {
    min-height: calc(100vw * var(--hero-ar));
  }
}
@media (max-width: 768px) {
  #section1 .bg-image {
    height: 120%;
    background-position: center 58%;
  }
  #section1 {
    min-height: 90vh;
  }
}
#section1 .bg-image {
  background-image: url("./imgs/home-big.webp");
}
#section1 .bg-image {
  transform-origin: center center;
}
@media (prefers-reduced-motion: reduce) {
  .parallax .bg-image {
    transition: none !important;
  }
}
@media (max-width: 500px) {
  #section1 .bg-image {
    height: 140%;
    background-image: url("./imgs/home-small.webp");
  }
  #section1 {
    min-height: 100dvh;
  }
}
.content {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vh 1rem;
}
.about_wrapper {
  justify-content: flex-start;
  padding-right: clamp(1rem, 8vw, 10vw);
}
.about_text {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 2rem);
  width: clamp(300px, 60vw, 1000px);
  max-width: 90vw;
  color: red;
}
.about_title {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: bold;
  font-family: "Teko", sans-serif;
}
.subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 2rem);
  font-weight: 600;
  font-family: "Teko", sans-serif;
  margin-top: 60px;
}
.about_para {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 3.5rem);
  line-height: 1.6;
  max-width: 65ch;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .parallax .bg-image {
    height: 120%;
  }
}
@media (max-width: 500px) {
  .parallax .bg-image {
    height: 140%;
  }
}
.services-bg {
  background-image: linear-gradient(
      149deg,
      rgba(0, 0, 0, 1) 44%,
      rgba(255, 3, 3, 0.64) 100%
    ),
    url("./imgs/services.webp");
  background-blend-mode: soft-light;
}
.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.section-carousel {
  margin: 0 auto;
  width: 100vw;
  max-width: 1300px;
  padding-block: 2rem;
}
.slider-container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.75;
  border-radius: 50%;
  color: var(--white-100);
  background: var(--black-300);
  color: red;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: rgba(17, 25, 40, 0.25);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 16px;
  color: white;
  gap: 1rem;
}
.image-wrapper {
  width: 70%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
h2 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0;
  font-size: clamp(1.2rem, 5vw, 1.5rem);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  align-items: center;
}
.card-text {
  font-size: clamp(0.9rem, 0.35vw + 0.75rem, 1.05rem);
  line-height: 1.35;
  letter-spacing: clamp(0px, 0.03vw, 0.35px);
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  inline-size: clamp(30ch, 24ch + 6vw, 40ch);
  max-inline-size: 90%;
  text-wrap: normal;
  word-break: normal;
}
@media (min-width: 768px) and (max-width: 980px) {
  .card-text:not(.card-text--long) {
    inline-size: clamp(32ch, 26ch + 2vw, 36ch);
  }
}
@media (min-width: 1200px) {
  .card-text:not(.card-text--long) {
    inline-size: clamp(34ch, 28ch + 3vw, 42ch);
  }
}
#section4.parallax .bg-image {
  top: -15%;
  height: 150%;
  will-change: transform;
}
.contact-bg {
  background-image: linear-gradient(
    149deg,
    rgba(0, 0, 0, 1) 44%,
    rgba(255, 3, 3, 0.64) 100%
  );
}
.contact-wrapper {
  width: 100%;
  max-width: var(--contact-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.contact-wrapper .content {
  padding: 4vh 0;
  max-width: none;
  width: 100%;
  margin: 0;
  justify-content: center;
}
.contact-section {
  padding: calc(var(--marquee-height) + 40px + 1rem) 0 2rem;
  position: relative;
}
.contact-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 4;
  pointer-events: none;
}
.marquee {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: var(--marquee-height);
  z-index: 5;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.marquee,
.info-container,
.map-container {
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  pointer-events: none;
  z-index: 1;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.65), transparent);
}
.marquee__track {
  display: inline-flex;
  gap: var(--marquee-gap);
  white-space: nowrap;
  will-change: transform;
  animation: marquee var(--marquee-speed) linear infinite;
  position: relative;
  z-index: 2;
}
.marquee__text {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.25rem);
  line-height: 1;
  color: red;
  text-transform: none;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee__track {
    animation-play-state: paused;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr max-content;
  align-items: start;
  width: 100%;
  max-width: var(--contact-max);
  margin-inline: auto;
  margin: 0 5%;
  text-align: left;
  z-index: 2;
}
.info-container .info-box:last-child {
  justify-self: end;
  min-width: max-content;
}
.info-box {
  flex: 1 1 0;
  min-width: 220px;
}
.info-box h2 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: red;
}
.info-box p {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0.3rem;
  color: red;
  text-decoration: none;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}
.tel-link,
.mail-link {
  color: inherit;
  text-decoration: none;
}
.tel-link:hover,
.mail-link:hover {
  text-decoration: underline;
}
.map-container {
  width: 100%;
  max-width: var(--contact-max);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
}
@media (max-width: 660px) {
  .info-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .info-container .info-box:last-child {
    justify-self: center;
  }
  .info-box:not(:last-child) {
    margin-bottom: 2rem;
  }
  .info-box {
    width: 100%;
  }
  .info-box h2 {
    font-size: 1.5rem;
  }
  .info-box p,
  .info-box a {
    font-size: 1rem;
  }
  .map-container iframe {
    height: 250px;
  }
}
@media (max-width: 350px) {
  .contact-section {
    padding: 1rem;
  }
  .info-box h2 {
    font-size: 1.3rem;
  }
  .info-box p,
  .info-box a {
    font-size: 0.95rem;
  }
  .map-container iframe {
    height: 200px;
  }
}
.partners-section {
  width: 100%;
  margin-top: 3rem;
  padding: 3rem 0 5rem;
  text-align: center;
  z-index: 2;
}
.partners-title {
  color: rgb(255, 0, 0);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.4rem);
  font-family: "Orbitron", sans-serif;
  margin-bottom: 2rem;
}
.partners-logos {
  max-width: var(--contact-max);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 4rem;
  justify-items: center;
}
.partners-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .partners-logos {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .partners-logos img {
    max-width: 70%;
  }
}
@media (max-width: 640px) {
  .contact-wrapper {
    padding-inline: 1rem;
  }
}
.site-footer {
  background: none;
  margin-top: -5rem;
  position: relative;
}
.rightsReserved {
  font-family: "Teko", sans-serif;
  max-width: var(--contact-max);
  font-size: clamp(16px, 1.7vw, 20px);
  margin: 0 auto 1rem;
  text-align: center;
  color: aliceblue;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 10px 20px;
}
.rightsReserved .name {
  font-weight: bold;
}
@media (max-width: 640px) {
  .contact-section {
    padding-bottom: 4.5rem;
  }
  .site-footer {
    margin-top: -6rem;
  }
}
.scroll-arrow {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}
.scroll-arrow.visible {
  opacity: 1;
  visibility: visible;
}
.hero-arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.progress-ring {
  transform: rotate(-90deg);
}
.progress-ring__progress {
  transition: stroke-dashoffset 0.2s;
}
