.linkas {
  color: #ccff00;
  text-decoration: none;
  transition: opacity 0.2s ease;
}.linkas:hover {
  opacity: 0.8;
}
p {
  font-size: 0.9rem !important;
  font-style: light !important;
  opacity: 0.7;
  font-weight: 200;
  line-height: 1.6;  
}
.none {
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 600;
}
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 1000;
}
.navbar.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.90) !important;
}
.hero {
  background: url('hero.png') center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
  
  /* Flexbox centering */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start; /* align left, you can change to center if you want */
  padding: 0 2rem; /* optional horizontal padding */
  text-align: left; /* keep text left-aligned */
}


.navbar .nav-link,
.navbar .navbar-brand,
.navbar .navbar-text {
  color: white !important;
}

.navbar .nav-link:hover {
  color: #ccff00 !important;
}/* Make navbar transparent, on top */
.navbar {
  z-index: 1000;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Style burger menu button without border */
.navbar-toggler {
  border: none !important;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  opacity: 0.7;
  box-shadow: none !important;
  outline: none !important;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: white !important;
}

.navbar .nav-link:hover {
  color: #ccff00 !important;
}

/* Hero offset for navbar */
.hero {
  background: url('hero.png') center/cover no-repeat;
  height: 100vh;
  position: relative;
  padding-top: 80px;
  color: white;
}

/* Side-panel menu styling */
.black-menu {
  position: fixed;
  top: 56px; /* Adjust if navbar height is different */
  right: 0;
  width: 20%;
  height: calc(100% - 56px);
  background-color: black;
  padding: 2rem 2rem;
  z-index: 999;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.4);
}

.black-menu ul.navbar-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 0;
  text-align: left;
}

/* Style burger menu nav-links as h4 */
.black-menu .nav-link {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Style close button without border */
.black-menu .btn-close {
  border: none !important;
  opacity: 1;
  transition: opacity 0.2s ease;
  position: relative;
  overflow: visible;
  font-size: 1rem;
}

/* Animate close button from line to X */
.black-menu .btn-close::before,
.black-menu .btn-close::after {
  animation: drawClose 0.6s ease-out forwards;
}

@keyframes drawClose {
  0% {
    clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: scale(1);
    opacity: 1;
  }
}

.black-menu .btn-close:active,
.black-menu .btn-close:focus {
  opacity: 0.7;
  box-shadow: none !important;
}

/* Menu social links styling */
.menu-social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  align-items: flex-start;
}

/* Push menu bottom content to bottom */
.menu-bottom-content {
  margin: auto 0;
  display: flex;
  flex-direction: column;
}

.menu-social-link {
  color: #ccff00;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.menu-social-link:hover {
  opacity: 0.8;
}

.menu-social-link i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .black-menu {
    width: 60%; /* Fallback to full width on mobile */
  }
  
}
.black-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 20%; /* default for desktop */
  height: 100vh;
  background-color: black;
  padding: 2rem 2rem;
  z-index: 1050;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.4);

  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  
  display: flex;
  flex-direction: column;
}

.black-menu.show {
  transform: translateX(0%);
}

@media (max-width: 768px) {
  .black-menu {
    width: 60%; /* Mobile: take 60% of screen width */
  }
}

.hero .d-flex p {
  max-width: 500px;
  color: white;
  font-size: 0.9rem;
  font-weight: 100;
}


.services {
background: #CCFF00;
background: linear-gradient(90deg,rgba(204, 255, 0, 1) 100%, rgba(180, 250, 105, 1) 7%);
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0% 100%);
  margin-top: -50px;
  padding-top: 150px; /* Increased from 100px to 150px */
  position: relative;
  z-index: 1;
}

.services {
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
}


.gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; /* <-- smooth sliding */
  cursor: grab;
  position: relative;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll img {
  height: 150px;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

.gallery-item {
  flex: 0 0 calc(100% / 3.5); /* Shows 3.5 items */
  scroll-snap-align: start;
 
  border-radius: 0px;
  padding: 0.5rem;
}
.gallery {
  background-color: #141414;
  padding: 8rem 0 5rem 0;
}
.gallery-item img {
  height: 150px;
  object-fit: cover;
  width: 100%;
  border-radius: 0px;
}

/* Scroll Button Styles */
.scroll-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccff00;
  color: black;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 10;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h1,
.hero h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
}
.stats-block h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  font-style: black;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

body {
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 5rem;
}
.button1 {
  letter-spacing: 5px;
  border-radius: 1px solid;
  margin-left: 10px;
}
.btn-outline-lime {
  border: 2px solid #ccff00;
  color: #ccff00;
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 999px; /* Makes it pill-shaped */
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-lime:hover {
  background-color: #ccff00;
  color: black;
}
.services h5 {
  padding: 50px 0 0 0 ;
}

.services h5 {
  margin-bottom: 0;
}

.stats-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  position: relative;
  width: 100%;
}

.stats-block {
  background-color: #ccff00;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-block {
  position: relative;

  overflow: hidden;
}

.photo-block .full-photo {
  width: 100%;

  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 700px; /* <--- This makes it extend beyond stats block */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .stats-photo-section {
    grid-template-columns: 1fr;
  }

  
}




.photo-block {
  position: relative;
}

.photo-button {
  /* Default state should now be filled */
  background-color: #ccff00;
  color: black;
  border: 2px solid #ccff00;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  font-size: 65%;
  letter-spacing: 2.5px;
  transition: all 0.3s ease;
}


/* Istria fill effect */
.photo-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #ccff0000;
  z-index: -1;
  transition: width 0.4s ease;
}

.photo-button:hover::before {
  width: 100%;
}


.photo-button:hover {
  background-color: transparent;
  color: #ccff00;
}






.gallery-item {
  display: inline-block;
  text-align: left;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.gallery-item:hover {
  opacity: 1;
}

/* Remove text movement on hover */
.gallery-item h5,
.gallery-item p {
  transition: none;
  margin: 0;
  text-align: left;
  padding-left: 0rem;
  padding-right: 1rem;
}

/* Ensure link behaves like a block and inherits opacity */
.gallery-item img,
.gallery-item h5,
.gallery-item p {
  display: block;
  width: 100%;
  pointer-events: none; /* So only the link wrapper is clickable */
}






:root {
  --stats-height: 110px;
 
}

.stats-photo-section { 
 
  display: flex;
  width: 100%;
  align-items: flex-start;
  height: var(--photo-height);
  gap: 0;
}

.stats-block {
  flex: 1;
  background-color: #ccff00;
  
  height: var(--stats-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.photo-block {
  flex: 1;
  height: var(--photo-height);
  
  overflow: hidden;
  margin-right: 7rem;
}

.photo-block .full-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Remove any grid styles from stats-photo-section */
.stats-photo-section {
  /* no grid styles here */
}













@media (max-width: 770px) {
  .hero .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero .d-flex h1:nth-of-type(1) {
    order: 1;
  }

  .hero .d-flex h1:nth-of-type(2) {
    order: 2;
  }

  .hero .d-flex p {
    order: 3; /* Paragraph comes after both headlines */
    margin-top: 1rem;
  }
  
 .hero {
    text-align: left;
  }

  .hero .d-flex {
    align-items: flex-start !important;
    text-align: left !important;
  }

   .hero .d-flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero {
    text-align: left;
    align-items: flex-start;
  }

  .hero h1,
  .hero p {
    text-align: left;
  }
  

  
}





/* Initial offset for parallax */

/* Hover states — both align and animate right */



.services p {
  font-size: 0.9rem !important;
  opacity: 70%;
  font-weight: 200;
}

.services h5,
.services p {
  display: inline-block;
  vertical-align: middle;

}


body {background-color: rgb(19, 20, 20) !important;}

input,
textarea {
  background-color: #292929;
  color: #f5f5f5; /* Light color for readability */
 
  padding: 0.5rem;
}

input::placeholder,
textarea::placeholder {
  color: #999; /* Optional: lighter placeholder */
}

.contact .form-control {
  background-color: #141414 !important;
  color: #f5f5f5 !important;
  
}

.contact .form-control::placeholder {
  color: #999 !important;
}







.services .service-item h5 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
}
h5,h3,h4 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0px;
}

.button1,
.btn-outline-lime {
  font-size: 65%;
  letter-spacing: 5px;
  border: 2px solid #ccff00;
  color: #ccff00;
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
}
.text-overlay-container {
  position: relative;
}

.text-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 8px;
}

.service-style-heading {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(-45deg,  #C0FD13, #8FFF3A ,#E1FF3A);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

.service-item {
  position: relative;
  overflow: hidden;
}

.service-link {
  position: relative;
  display: inline-block;
  padding-left: 1rem; /* create space for line */
}

/* The vertical line (hidden by default) */
.service-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background-color: rgba(0, 0, 0, 0.108); /* or #141414 if dark mode */
  transition: height 0.3s ease;
}


/* On hover: line expands to match content height */
.service-item:hover .service-link::before {
  height: 90%;
}
@media (max-width: 514px) {
  .bg-img img,
  .fg-img img {
  
    width: calc(100% + 300px);
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: -650px;
  }

  .image-layer {
    overflow: hidden; /* Already set, but ensure it's here */
  }
  .hero-content{
    margin-top: 15rem;
  }
}
@media (min-width: 514px) and (max-width: 614px) {
  .bg-img img,
  .fg-img img {
    object-position: -600px;
  }
   .hero-content{
    margin-top: 15rem;
  }
}
@media (min-width: 614px) and (max-width: 714px) {
  .bg-img img,
  .fg-img img {
    object-position: -500px;
  }
   .hero-content{
    margin-top: 15rem;
  }
}

.mmm {
  left:500px;
}




.stats-photo-section {
  display: flex;
  width: 100%;
}

.stats-block {
  /* FIX: exact left half */
  background-color: #ccff00;
 
  display: flex;
  align-items: center;
  justify-content: center;
}




















.photo-block {
  width: 50%; /* FIX: exact right half */

  background-color: #141414; /* Matches gallery */

  overflow: hidden;
  display: flex;
  justify-content: flex-end; /* aligns image to right */
  padding-right: var(--bs-gutter-x, 1.5rem); /* MATCH Bootstrap container right padding */
}
.gallery p + .contact p {
  margin-top: 5px;
  font-size: 0.8rem !important;
  opacity: 70%;
  font-weight: 200;
}
.photo-block .full-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}


@media (max-width: 768px) {
  .stats-photo-section {
    flex-direction: column;
  }

  .stats-block,
  .photo-block {
    width: 100%;
    padding-right: 0;
  }
  .logogo {
    width: 25% !important;
  }
}

.stats-photo-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap; /* ensures wrapping on smaller screens */
}

.stats-block {
  
  background-color: #ccff00;

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

.photo-block {
  width: 50%;

  padding-right: var(--bs-gutter-x, 1.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.photo-block .full-photo {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}


.contact-below {
  background-color: #141414;
}

.contact-form {
  padding: 2rem 5rem;
  background-color: #141414;
}

.contact-form form input,
.contact-form form textarea {
  background-color: #171717;
  color: #f5f5f5;
  border: 1px solid #444;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #999;
}

.contact-photo {
  background-color: black;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-photo .full-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

p{
  font-size: 12px;
}
input,
textarea {
  background-color: #464343;
  color: #f5f5f5;
  border: none; /* ✅ Remove border */
  padding: 0.5rem;
  font-size: 0.7rem; /* ✅ Smaller text size */
}

.contact .form-control {
  background-color: #282828 !important;
  color: #f5f5f5 !important;
  border: none !important; /* ✅ Remove border */
  font-size: 0.7rem !important; /* ✅ Apply font size */
}




.contact .form-control::placeholder {
  font-size: 0.7rem !important;
}


/* Base input/textarea styles */
input,
textarea,
.contact .form-control {
  background-color: #1d1c1c !important;  /* dark background */
  color: #f5f5f5 !important;             /* light text */
  border: none !important;               /* remove all borders */
  outline: none !important;              /* remove outline glow */
  box-shadow: none !important;           /* remove Bootstrap focus effect */
  font-size: 0.7rem !important;
}

/* Placeholder styles */
input::placeholder,
textarea::placeholder {
  color: #888 !important;
  font-size: 0.7rem;
}

/* On focus: make it even darker instead of white */
input:focus,
textarea:focus,
.contact .form-control:focus {
  background-color: #0f0f0f !important;  /* slightly darker background */
  color: #fff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.contact-form {
  padding-left: 2rem; /* Aligns with hero section's padding */
}
.tarpas {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
}
.footer {
  background-color: #000;
}

.custom-footer {
  background-color: #ccff00;
  clip-path: polygon(0% 30px, 100% 0%, 100% 100%, 0% 100%);
  padding: 50px 0;
  margin-top: -50px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
}
.logo {
  height: auto;
  width: 30%;
}
.logogo {
  height: auto;
  width:10%;
}

.services {
  padding:10rem 0 8rem 0;
}










.hero-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.hero-paragraph-desktop {
  display: block;
}

.hero-paragraph-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* Navbar alignment on mobile */
  .navbar {
    padding: 0.5rem 0 !important;
    display: flex;
    align-items: center;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0 !important;
  }

  .navbar-toggler {
    padding: 0 !important;
    border: none !important;
    display: flex;
    align-items: center;
  }

  /* Hero section adjustment - move content up by 50px */
  .hero-text-container {
    transform: translateY(-50px);
  }

  /* Force photo block to be visible and take full width */
  .photo-block {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
  }

  .photo-block .full-photo {
    width: 100% !important;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Other mobile layout adjustments */
  .stats-photo-section {
    flex-direction: column;
  }

  .stats-block,
  .photo-block {
    width: 100% !important;
    padding-right: 0;
  }

  .stats-block {
    padding-top: 5rem;
    padding-bottom: 4rem;
    height: auto;
  }

  .logogo {
    width: 25% !important;
  }

  .tarpas {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .stats-block h2 {
    font-size: 2rem;
  }

  h1 {
    font-size: 3rem;
  }

  .qqq {
    margin-top: 6rem;
  }

  .hero {
    background-position: calc(50% - 15rem) center;
  }

  .gallery-item {
    flex: 0 0 83.33%; /* 100 / 1.2 = ~83.33% */
  }
}

/* HERO LAYOUT - DESKTOP (>770px) */
@media (min-width: 771px) {
  .hero-line-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-h1-1 {
    flex-shrink: 0;
     /* Adjust as needed */
  }

  .hero-paragraph-desktop {
    display: block;
    flex-grow: 1;
    
  }

  .hero-paragraph-mobile {
    display: none;
  }

  .hero-h1-2 {
    margin-top: -1.5rem;
     /* Adjust as needed */
  }
}

/* MOBILE fallback: only show mobile version */
@media (max-width: 770px) {
  .hero-line-1 {
    display: block;
  }

  .hero-paragraph-desktop {
    display: none;
  }

  .hero-paragraph-mobile {
    display: block;
  }
  .hero-h1-2{
    line-height: 0.9;

  }
  .hero-h1-1{
    line-height: 0.9;
  }
}

.ppp{
  line-height: 1;
  margin-top: -0.5rem;
}

/* Initial state with transition */
.service-item h4,
.service-item p {margin-top: 0.3rem;
   line-height: 1.1;
  transition: transform 0.4s ease;
}

/* Hover effect */
.service-item:hover h4,
.service-item:hover p {
  transform: translateX(10px);
}


/* Initial state: slight opacity, no movement */
.service-item h5,
.service-item p {
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* On hover: full opacity and move right */
.service-item:hover h5,
.service-item:hover p {
  transform: translateX(10px);
  opacity: 1;
}

@media (max-width: 767px) {
  .services .row {
    margin-left: 0;
    margin-right: 0;
  }

  .service-item {
    padding-left: 2rem;  /* Matches container inner padding */
    padding-right: 1rem;
    width: 100%;
    padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  }
}

@keyframes zoom-bg {
  from {
    transform: scale(1);
    filter: blur(0px);
  }
  50% {
    filter: blur(0px);
  }
  to {
    transform: scale(1.05); /* subtle */
    filter: blur(3px);
  }
}

@keyframes zoom-fg {
  from {
    transform: scale(1);
    filter: blur(12px);
  }
  to {
    transform: scale(1.1); /* faster zoom */
    filter: blur(0px);
  }
}

.parallax-bg-animate {
  animation: zoom-bg 4s ease-out forwards;
}

.parallax-fg-animate {
  animation: zoom-fg 4s ease-out forwards;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  align-items: center;
  color: white;
  background: none !important; /* remove old background */
}

/* Layer container styles */
.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Make sure images fill container */
.image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}

/* Text content stays above images */
.hero-text-container {
  position: relative;
  z-index: 10;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo img {
  width: 120px;
  height: auto;
  z-index: 2;
  animation: fadeIn 1s ease-in-out forwards;
}

/* Split panels */
.split-left,
.split-right {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: skewX(-45deg) scaleX(1);
  z-index: 1;
  transition: all 1s ease;
}

/* Positions */
.split-left {
  left: -100%;
  transform-origin: left;
}

.split-right {
  right: -100%;
  transform-origin: right;
}

/* Animate split */
#preloader.animate .split-left {
  transform: skewX(-45deg) scaleX(0);
  left: 0;
}

#preloader.animate .split-right {
  transform: skewX(-45deg) scaleX(0);
  right: 0;
}

#preloader.animate {
  animation: fadeOut 0.5s ease 0.3s forwards;
}

/* Fade logo in */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Fade preloader out */
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

.gallery-scroll-tight {
  gap: 0rem !important; /* Reduce spacing between images */
}


.gallery-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay .overlay-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.gallery-overlay img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: auto;
  border-radius: 6px;
}

.gallery-overlay .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.left-arrow { left: -50px; }
.right-arrow { right: -50px; }

@media (max-width: 768px) {
  .nav-arrow.left-arrow { left: 10px; }
  .nav-arrow.right-arrow { right: 10px; }
  .gallery-overlay .close-btn { top: -20px; font-size: 1.5rem; }
}

.gallery-clickable {
  pointer-events: auto !important;
  cursor: pointer;
}

.gallery-subpage .gallery-item img {
  height: 250px; /* or any value you want, like 300px */
  object-fit: cover;
}

.gallery2 {
  padding: 4rem 0;
}















.glitch--style-1 {
  --gap-horizontal: 20px;
  --gap-vertical: 2px;
  --time-anim: 2.25s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: none;
  --blend-mode-5: none;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: transparent;
  --blend-color-5: transparent; }
.glitch--style-2 {
  --gap-horizontal: 5px;
  --gap-vertical: 10px;
  --time-anim: 2s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: luminosity;
  --blend-mode-4: none;
  --blend-mode-5: none;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: #4d8c60;
  --blend-color-4: transparent;
  --blend-color-5: #c9b09a; }
.glitch--style-3 {
  --gap-horizontal: 20px;
  --gap-vertical: 2px;
  --time-anim: 2.25s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: multiply;
  --blend-mode-4: none;
  --blend-mode-5: none;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: #af4563;
  --blend-color-4: transparent;
  --blend-color-5: transparent; }
.glitch--style-4 {
  --gap-horizontal: 5px;
  --gap-vertical: 20px;
  --time-anim: 5s;
  --blend-mode-1: none;
  --blend-mode-2: exclusion;
  --blend-mode-3: hard-light;
  --blend-mode-4: overlay;
  --blend-mode-5: none;
  --blend-color-1: transparent;
  --blend-color-2: #52f1cd;
  --blend-color-3: #525df1;
  --blend-color-4: #f19b52;
  --blend-color-5: transparent; }
.glitch--style-5 {
  --gap-horizontal: 50px;
  --gap-vertical: 100px;
  --time-anim: 2.25s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: overlay;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: #000;
  --blend-color-5: #8d16f2; }
.glitch--style-6 {
  --gap-horizontal: 3px;
  --gap-vertical: 70px;
  --time-anim: 2.25s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: overlay;
  --blend-mode-4: none;
  --blend-mode-5: none;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: rgba(255,255,255,0.2);
  --blend-color-4: transparent;
  --blend-color-5: transparent; }

.glitch {
    position: relative;
    display: inline-block;
    margin: 0 0 8px;
    overflow: hidden;
    width: 95%;
}
  &:before,
  &:after {
      content: attr(data-text);
      position: absolute;
      width: 100%;
    
      
  }
  
  &:before {
      left: 2px;
      text-shadow: -2px 0 #FF00F8;
      clip: auto;
  }
  
  &:after {
      left: -2px;
      text-shadow: -2px 0 #00D5FF;
      clip: auto;
  }
  
  &:hover {
    &:before {
      visibility: visible;
      animation: glitch-anim-2 4s infinite linear alternate-reverse;
    }

    &:after {
      visibility: visible;
      animation: glitch-anim 2.5s infinite linear alternate-reverse;
    }
    
    &.style-2 {
      &:before,
      &:after {
        animation-name: glitch-anim-2;
      }
    }
    
    &.style-1-hor {
      &:before,
      &:after {
        animation-name: glitch-anim-1-horizontal;
      }
    }
    
    &.style-2-hor {
      &:before,
      &:after {
        animation-name: glitch-anim-2-horizontal;
      }
    }
    
     &.style-3-hor {
      &:before,
      &:after {
        animation-name: glitch-anim-3-horizontal;
      }
    }
    
    &.style-1-ver {
      &:before,
      &:after {
        animation-name: glitch-anim-1-vertical;
      }
    }
    
    &.style-2-ver {
      &:before,
      &:after {
        animation-name: glitch-anim-2-vertical;
      }
    }
    
     &.style-3-ver {
      &:before,
      &:after {
        animation-name: glitch-anim-3-vertical;
      }
    }
    
    &.style-text {
      &:before,
      &:after {
        animation-name: glitch-anim-text;
      }
    }
    
    &.style-flash {
      &:before,
      &:after {
        animation-name: glitch-anim-flash;
      }
    }
  }


@keyframes glitch-anim {
  0% {
    clip: rect(29px, 9999px, 11px, 0); }
  4.16666667% {
    clip: rect(11px, 9999px, 21px, 0); }
  8.33333333% {
    clip: rect(18px, 9999px, 1px, 0); }
  12.5% {
    clip: rect(17px, 9999px, 5px, 0); }
  16.66666667% {
    clip: rect(3px, 9999px, 27px, 0); }
  20.83333333% {
    clip: rect(20px, 9999px, 25px, 0); }
  25% {
    clip: rect(25px, 9999px, 19px, 0); }
  29.16666667% {
    clip: rect(12px, 9999px, 151px, 0); }
  33.33333333% {
    clip: rect(29px, 9999px, 1px, 0); }
  37.5% {
    clip: rect(24px, 9999px, 31px, 0); }
  41.66666667% {
    clip: rect(9px, 9999px, 1px, 0); }
  45.83333333% {
    clip: rect(1px, 9999px, 17px, 0); }
  50% {
    clip: rect(3px, 9999px, 27px, 0); }
  54.16666667% {
    clip: rect(17px, 9999px, 151px, 0); }
  58.33333333% {
    clip: rect(15px, 9999px, 10px, 0); }
  62.5% {
    clip: rect(1px, 9999px, 15px, 0); }
  66.66666667% {
    clip: rect(10px, 9999px, 3px, 0); }
  70.83333333% {
    clip: rect(27px, 9999px, 117px, 0); }
  75% {
    clip: rect(2px, 9999px, 5px, 0); }
  79.16666667% {
    clip: rect(4px, 9999px, 13px, 0); }
  83.33333333% {
    clip: rect(8px, 9999px, 44px, 0); }
  87.5% {
    clip: rect(13px, 9999px, 14px, 0); }
  91.66666667% {
    clip: rect(21px, 9999px, 31px, 0); }
  95.83333333% {
    clip: rect(0px, 9999px, 33px, 0); }
  100% {
    clip: rect(9px, 9999px, 148px, 0); } }

@keyframes glitch-anim-2 {
  6.66666667% {
    clip: rect(43px, 9999px, 105px, 0); }
  10% {
    clip: rect(5px, 9999px, 0px, 0); }
  13.33333333% {
    clip: rect(16px, 9999px, 14px, 0); }
  16.66666667% {
    clip: rect(12px, 9999px, 106px, 0); }
  20% {
    clip: rect(1px, 9999px, 189px, 0); }
  23.33333333% {
    clip: rect(20px, 9999px, 41px, 0); }
  26.66666667% {
    clip: rect(30px, 9999px, 176px, 0); }
  30% {
    clip: rect(12px, 9999px, 32px, 0); }
  33.33333333% {
    clip: rect(22px, 9999px, 155px, 0); }
  36.66666667% {
    clip: rect(14px, 9999px, 40px, 0); }
  40% {
    clip: rect(25px, 9999px, 86px, 0); }
  43.33333333% {
    clip: rect(13px, 9999px, 94px, 0); }
  46.66666667% {
    clip: rect(1px, 9999px, 139px, 0); }
  50% {
    clip: rect(14px, 9999px, 76px, 0); }
  53.33333333% {
    clip: rect(2px, 9999px, 124px, 0); }
  56.66666667% {
    clip: rect(6px, 9999px, 70px, 0); }
  60% {
    clip: rect(9px, 9999px, 140px, 0); }
  63.33333333% {
    clip: rect(7px, 9999px, 151px, 0); }
  66.66666667% {
    clip: rect(1px, 9999px, 131px, 0); }
  70% {
    clip: rect(21px, 9999px, 183px, 0); }
  73.33333333% {
    clip: rect(11px, 9999px, 60px, 0); }
  76.66666667% {
    clip: rect(91px, 9999px, 28px, 0); }
  80% {
    clip: rect(14px, 9999px, 193px, 0); }
  83.33333333% {
    clip: rect(2px, 9999px, 150px, 0); }
  86.66666667% {
    clip: rect(3px, 9999px, 131px, 0); }
  90% {
    clip: rect(17px, 9999px, 45px, 0); }
  93.33333333% {
    clip: rect(18px, 9999px, 37px, 0); }
  96.66666667% {
    clip: rect(9px, 9999px, 46px, 0); }
  100% {
    clip: rect(38px, 9999px, 15px, 0); } }

/* Animations */
/* Horizontal */
@keyframes glitch-anim-1-horizontal {
  0% {
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%); }
  10% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%); }
  20% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); }
  30% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%); }
  40% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%); }
  50% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%); }
  60% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%); }
  70% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%); }
  80% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%); }
  90% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); }
  100% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%); } }

@keyframes glitch-anim-2-horizontal {
  0% {
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%); }
  15% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%); }
  22% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%); }
  31% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%); }
  45% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%); }
  51% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%); }
  63% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%); }
  76% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%); }
  81% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%); }
  94% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%); }
  100% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%); } }

@keyframes glitch-anim-3-horizontal {
  0% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%); }
  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%); }
  10% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%); }
  25% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%); }
  27% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%); }
  30% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%); }
  33% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%); }
  37% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%); }
  40% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%); }
  45% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%); }
  50% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%); }
  53% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%); }
  57% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%); }
  60% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%); }
  65% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%); }
  70% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%); }
  73% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%); }
  80% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%); }
  100% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%); } }

/* Vertical */
@keyframes glitch-anim-1-vertical {
  0% {
    -webkit-clip-path: polygon(2% 0, 5% 0, 5% 100%, 2% 100%);
    clip-path: polygon(2% 0, 5% 0, 5% 100%, 2% 100%); }
  10% {
    -webkit-clip-path: polygon(15% 0, 15% 0, 15% 100%, 15% 100%);
    clip-path: polygon(15% 0, 15% 0, 15% 100%, 15% 100%); }
  20% {
    -webkit-clip-path: polygon(10% 0, 20% 0, 20% 100%, 10% 100%);
    clip-path: polygon(10% 0, 20% 0, 20% 100%, 10% 100%); }
  30% {
    -webkit-clip-path: polygon(1% 0, 2% 0, 2% 100%, 1% 100%);
    clip-path: polygon(1% 0, 2% 0, 2% 100%, 1% 100%); }
  40% {
    -webkit-clip-path: polygon(33% 0, 33% 0, 33% 100%, 33% 100%);
    clip-path: polygon(33% 0, 33% 0, 33% 100%, 33% 100%); }
  50% {
    -webkit-clip-path: polygon(44% 0, 44% 0, 44% 100%, 44% 100%);
    clip-path: polygon(44% 0, 44% 0, 44% 100%, 44% 100%); }
  60% {
    -webkit-clip-path: polygon(50% 0, 20% 0, 20% 100%, 50% 100%);
    clip-path: polygon(50% 0, 20% 0, 20% 100%, 50% 100%); }
  70% {
    -webkit-clip-path: polygon(70% 0, 70% 0, 70% 100% 70%, 70% 100%);
    clip-path: polygon(70% 0, 70% 0, 70% 100% 70%, 70% 100%); }
  80% {
    -webkit-clip-path: polygon(80% 0, 80% 0, 80% 100% 80%, 80% 100%);
    clip-path: polygon(80% 0, 80% 0, 80% 100% 80%, 80% 100%); }
  90% {
    -webkit-clip-path: polygon(50% 0, 55% 0, 55% 100%, 50% 100%);
    clip-path: polygon(50% 0, 55% 0, 55% 100%, 50% 100%); }
  100% {
    -webkit-clip-path: polygon(70% 0, 80% 0, 80% 100%, 70% 100%);
    clip-path: polygon(70% 0, 80% 0, 80% 100%, 70% 100%); } }

@keyframes glitch-anim-2-vertical {
  0% {
    -webkit-clip-path: polygon(25% 0, 30% 0, 30% 100%, 25% 100%);
    clip-path: polygon(25% 0, 30% 0, 30% 100%, 25% 100%); }
  15% {
    -webkit-clip-path: polygon(3% 0, 3% 0, 3% 100%, 3% 100%);
    clip-path: polygon(3% 0, 3% 0, 3% 100%, 3% 100%); }
  22% {
    -webkit-clip-path: polygon(5% 0, 20% 0, 20% 100%, 5% 100%);
    clip-path: polygon(5% 0, 20% 0, 20% 100%, 5% 100%); }
  31% {
    -webkit-clip-path: polygon(20% 0, 20% 0, 20% 100%, 20% 100%);
    clip-path: polygon(20% 0, 20% 0, 20% 100%, 20% 100%); }
  45% {
    -webkit-clip-path: polygon(40% 0, 40% 0, 40% 100%, 40% 100%);
    clip-path: polygon(40% 0, 40% 0, 40% 100%, 40% 100%); }
  51% {
    -webkit-clip-path: polygon(52% 0, 59% 0, 59% 100%, 52% 100%);
    clip-path: polygon(52% 0, 59% 0, 59% 100%, 52% 100%); }
  63% {
    -webkit-clip-path: polygon(60% 0, 60% 0, 60% 100%, 60% 100%);
    clip-path: polygon(60% 0, 60% 0, 60% 100%, 60% 100%); }
  76% {
    -webkit-clip-path: polygon(75% 0, 75% 0, 75% 100%, 75% 100%);
    clip-path: polygon(75% 0, 75% 0, 75% 100%, 75% 100%); }
  81% {
    -webkit-clip-path: polygon(65% 0, 40% 0, 40% 100%, 65% 100%);
    clip-path: polygon(65% 0, 40% 0, 40% 100%, 65% 100%); }
  94% {
    -webkit-clip-path: polygon(45% 0, 50% 0, 50% 100%, 45% 100%);
    clip-path: polygon(45% 0, 50% 0, 50% 100%, 45% 100%); }
  100% {
    -webkit-clip-path: polygon(14% 0, 33% 0, 33% 100%, 14% 100%);
    clip-path: polygon(14% 0, 33% 0, 33% 100%, 14% 100%); } }

@keyframes glitch-anim-3-vertical {
  0% {
    -webkit-clip-path: polygon(1% 0, 3% 0, 3% 100%, 1% 100%);
    clip-path: polygon(1% 0, 3% 0, 3% 100%, 1% 100%); }
  5% {
    -webkit-clip-path: polygon(10% 0, 9% 0, 9% 100%, 10% 100%);
    clip-path: polygon(10% 0, 9% 0, 9% 100%, 10% 100%); }
  10% {
    -webkit-clip-path: polygon(5% 0, 6% 0 6% 100%, 5% 100%);
    clip-path: polygon(5% 0, 6% 0 6% 100%, 5% 100%); }
  25% {
    -webkit-clip-path: polygon(20% 0, 20% 0, 20% 100%, 20% 100%);
    clip-path: polygon(20% 0, 20% 0, 20% 100%, 20% 100%); }
  27% {
    -webkit-clip-path: polygon(10% 0, 10% 0, 10% 100%, 10% 100%);
    clip-path: polygon(10% 0, 10% 0, 10% 100%, 10% 100%); }
  30% {
    -webkit-clip-path: polygon(30% 0, 25% 0, 25% 100%, 30% 100%);
    clip-path: polygon(30% 0, 25% 0, 25% 100%, 30% 100%); }
  33% {
    -webkit-clip-path: polygon(15% 0, 16% 0, 16% 100%, 15% 100%);
    clip-path: polygon(15% 0, 16% 0, 16% 100%, 15% 100%); }
  37% {
    -webkit-clip-path: polygon(40% 0, 39% 0, 39% 100%, 40% 100%);
    clip-path: polygon(40% 0, 39% 0, 39% 100%, 40% 100%); }
  40% {
    -webkit-clip-path: polygon(20% 0, 21% 0, 21% 100%, 20% 100%);
    clip-path: polygon(20% 0, 21% 0, 21% 100%, 20% 100%); }
  45% {
    -webkit-clip-path: polygon(60% 0, 55% 0, 55% 100%, 60% 100%);
    clip-path: polygon(60% 0, 55% 0, 55% 100%, 60% 100%); }
  50% {
    -webkit-clip-path: polygon(30% 0, 31% 0, 31% 100%, 30% 100%);
    clip-path: polygon(30% 0, 31% 0, 31% 100%, 30% 100%); }
  53% {
    -webkit-clip-path: polygon(70% 0, 69% 0, 69% 100%, 70% 100%);
    clip-path: polygon(70% 0, 69% 0, 69% 100%, 70% 100%); }
  57% {
    -webkit-clip-path: polygon(40% 0, 41% 0, 41% 100%, 40% 100%);
    clip-path: polygon(40% 0, 41% 0, 41% 100%, 40% 100%); }
  60% {
    -webkit-clip-path: polygon(80% 0, 75% 0, 75% 100%, 80% 100%);
    clip-path: polygon(80% 0, 75% 0, 75% 100%, 80% 100%); }
  65% {
    -webkit-clip-path: polygon(50% 0, 51% 0, 51% 100%, 50% 100%);
    clip-path: polygon(50% 0, 51% 0, 51% 100%, 50% 100%); }
  70% {
    -webkit-clip-path: polygon(90% 0, 90% 0, 90% 100%, 90% 100%);
    clip-path: polygon(90% 0, 90% 0, 90% 100%, 90% 100%); }
  73% {
    -webkit-clip-path: polygon(60% 0, 60% 0, 60% 100%, 60% 100%);
    clip-path: polygon(60% 0, 60% 0, 60% 100%, 60% 100%); }
  80% {
    -webkit-clip-path: polygon(100% 0, 99% 0, 99% 100%, 100% 100%);
    clip-path: polygon(100% 0, 99% 0, 99% 100%, 100% 100%); }
  100% {
    -webkit-clip-path: polygon(70% 0, 71% 0, 71% 100%, 70% 100%);
    clip-path: polygon(70% 0, 71% 0, 71% 100%, 70% 100%); } }

@keyframes glitch-anim-text {
  0% {
    opacity: 1;
    transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%); }
  10% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%); }
  20% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%); }
  35% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%); }
  50% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%); }
  60% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%); }
  70% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); }
  80% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%); }
  90% {
    transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); } }

/* Flash */
@keyframes glitch-anim-flash {
  0% {
    opacity: 0.2;
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0); }
  33%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0); } }






/* Add this to your main CSS file */
.skater-photo-container {
  position: relative;
  display: inline-block; /* Adjust as needed */
}

.skater-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* VIDEO badge styles */
.video-badge {
  width: 80px; /* adjust size as needed */
  height: 80px;
}

.rotating-bg {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Skater photo container */
.skater-photo-container {
  position: relative;
  display: inline-block;
}

.skater-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* Video badge */
.video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 110px;  /* ⬅️ made circle bigger */
  height: 110px;
}

.rotating-bg {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}

.play-button {
  position: absolute;
  top: 50%;
  left: calc(50% + 0.2rem);
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 20px rgba(0,0,0,0);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.photo-block .full-photo {
  height: 80%;
  object-fit: contain;
}


@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-down {
  animation: fadeDown 1.5s ease-out forwards;
  animation-delay: 2.5s;
  opacity: 0;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInSimple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInLight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.85;
  }
}

.fade-in-right {
  animation: fadeInRight 1.5s ease-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.fade-in-paragraph {
  animation: fadeInSimple 2s ease-out forwards;
  animation-delay: 2.5s;
  opacity: 0;
}

.hero-paragraph-light {
  animation: fadeInLight 2s ease-out forwards;
  animation-delay: 2.5s;
}

/* Align gallery text like contact section */
.gallery-item h5,
.gallery-item p {
  text-align: left;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Double spacing between gallery item heading and paragraph */
.gallery-item h5 {
  margin-bottom: 0.3rem !important;
}

/* Match font size in gallery and service section paragraphs */
.gallery-caption,
.services p {
  font-size: 0.75rem !important;
}

/* Same spacing for service items */
.service-item h4,
.service-item h5 {
  margin-bottom: 0.3rem !important;
}

.hero.hero-subpage {
  background: url('hero.png') center/cover no-repeat !important;
  height: 50vh;
}
.hero-subpage {
  position: relative;
  background: url('hero.png') center/cover no-repeat;
  height: 60vh;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  z-index: 1;
}


.intro-gallery-section {
  background-color: #141414;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-side {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-scroll img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .intro-gallery-section {
    flex-direction: column;
  }

  .gallery-side,
  .intro-text {
    width: 100%;
  }

  .gallery-scroll img {
    height: auto;
  }
}
.gallery-side {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.gallery-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 0 1rem 1rem 0;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.gallery-item:hover {
  opacity: 1;
}
.tarpas2 {
  padding-right: 10rem;
}


/* Ensure hero headline and intro text align perfectly on all small screens */
@media (max-width: 600px) {
  /* Hero headline container */
  .hero-subpage .container,
  .hero-subpage .container.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Intro section container */
  .intro-section .container,
  .intro-section .container.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Remove extra inner padding */
  .intro-section .col-md-6,
  .intro-section .tarpas,
  .intro-section .tarpas2,
  .intro-section .px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Mobile hard fix: align hero H1 with intro paragraph on subpages */
@media (max-width: 600px) {
  /* 1) Remove the global hero side padding specifically on subpages */
  .hero-subpage.hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 2) Give BOTH sections the same left/right inset */
  .hero-subpage .container,
  .intro-section .container {
    padding-left: 1rem !important;   /* keep some breathing room; set to 0 for flush */
    padding-right: 1rem !important;
  }

  /* 3) Kill column gutters so the intro paragraph doesn't get double inset */
  .intro-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .intro-section [class^="col-"],
  .intro-section [class*=" col-"],
  .intro-section .col,
  .intro-section .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 4) Also neutralize any extra padding utilities inside intro (e.g., px-5) */
  .intro-section .px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* Move second article image below the paragraph on mobile */
@media (max-width: 768px) {
  .article-image {
    order: 2; /* send image below */
    margin-top: 1rem; /* add some spacing */
  }

  .article-text {
    order: 1; /* keep text first */
  }
}
/* Disable click on treniruote.html gallery */
/* Make gallery items non-clickable ONLY on treniruote.html */
.treniruote-page .gallery-clickable {
  pointer-events: none !important;
  cursor: default !important;
  opacity: 1 !important;            /* keep visuals steady on hover */
}
.treniruote-page .gallery-item:hover { opacity: 1 !important; }
/* === Stories Overlay (IG-style) === */
.stories-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 99999;
  display: none;
}

.stories-overlay.hidden { display: none; }
.stories-overlay.show   { display: block; }

#storyVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100vw;
  max-height: 82vh;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #000;
}

/* Top chrome: close + progress */
.stories-chrome {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.stories-close {
  margin-right: 8px;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
}

.stories-progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  width: 100%;
}

.stories-progress .bar {
  height: 3px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  border-radius: 2px;
}

.stories-progress .bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width .1s linear;
}

/* Tap zones */
.stories-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  cursor: pointer;
  z-index: 1;
}

.stories-zone-left  { left: 0; }
.stories-zone-right { right: 0; }

/* Arrows (visual hint) */
.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.stories-arrow-left  { left: 12px; }
.stories-arrow-right { right: 12px; }

/* Badge cursor */
#openStoriesBtn { cursor: pointer; }

/* Small screens: ensure video fits */
@media (max-width: 575px) {
  #storyVideo { max-height: 72vh; }
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 1rem 2rem; /* row gap / column gap */
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #ccff00; /* lime highlight */
}

.social-links i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* Mobile: stack into one column */
@media (max-width: 600px) {
  .social-links {
    grid-template-columns: 1fr;
  }
}
.q01 {
  object-fit: cover;
  width: 80%;
  height: auto; /* adjusts dynamically */
  display: block;
}

/* Inline video badge used next to headings/buttons (2× larger) */
.video-badge-inline {
  position: relative;
  display: inline-block;
  width: 112px;   /* doubled from 56px */
  height: 112px;  /* doubled from 56px */
  top: 0;
  right: 0;
}

.video-badge-inline .rotating-bg {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}

.video-badge-inline .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 22px rgba(0,0,0,0);
}

.video-badge-inline .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Keep inline badge perfectly round and centered */
/* Optical centering fix for apie.html badge next to the H1 */
.hero-title-with-badge .video-badge-inline .play-button {
  /* geometric center */
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 0 22px rgba(0,0,0,0);

  /* optical nudge: triangle looks better a bit higher and a hair to the right */
  top: 50%;
  left: 53%;
}

.hero-title-with-badge .video-badge-inline .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Reset button styling for the badge */
.video-badge-inline {
  position: relative;
  display: inline-block;
  width: 112px;
  height: 112px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.video-badge-inline .rotating-bg { width: 100%; height: 100%; animation: spin 10s linear infinite; }

.video-badge-inline .play-button {
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%, -50%);
}

/* Optical centering specifically for the apie title badge */
.hero-title-with-badge .video-badge-inline .play-button { top: 50%; left: 53%; }

/* Keep the badge clean inside the flex wrapper */
.hero-title-with-badge .video-badge-inline { flex-shrink: 0; line-height: 0; vertical-align: middle; }

/* === SERVICE ARROWS (MOBILE ONLY) === */
.service-arrow{
  display: none; /* hide by default (desktop) */
}

@media (max-width: 768px){
  .service-arrow{
    display: block;
    margin-top: 5px;
    width: 24px;
    height: auto;
  }
}

/* === GALLERY MOBILE SCROLL BUTTON (RIGHT) === */
.gallery-scroll-wrap{
  position: relative;
}

/* hide on desktop */
.scroll-button--gallery{
  display: none;
}

@media (max-width: 768px){
  .scroll-button--gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.25);
    z-index: 20;
    padding: 0;
  }

  .scroll-button--gallery .scroll-button__icon{
    width: 22px;
    height: auto;
    filter: invert(1) brightness(2); /* make Arrow 4.svg appear white */
  }

  .scroll-button--gallery:active{
    transform: translateY(-50%) scale(0.96);
  }
}

/* hide native scrollbar visuals (still swipeable) */
.gallery-scroll{
  scrollbar-width: none; /* Firefox */
}
.gallery-scroll::-webkit-scrollbar{
  display: none;
}

/* Carousel Images */
.carousel-img {
  filter: grayscale(100%);
}

/* Carousel Navigation */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.carousel-nav-btn:hover {
  background: black;
  color: #ccff00;
}

.carousel-nav-left {
  left: 10px;
}

.carousel-nav-right {
  right: 10px;
}

/* Photo button hover styling */
.photo-button:hover {
  background: black;
  color: #ccff00;
}

/* Rotation animation for video badge */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* === MOBILE ACTION BUTTONS (Contact Section) === */
.mobile-action-buttons {
  display: none !important; /* hidden by default (desktop) */
}

/* Show mobile action buttons on mobile (max-width: 768px) and tablet (777-1153px) */
@media (max-width: 768px), (min-width: 777px) and (max-width: 1153px) {
  .mobile-action-buttons {
    display: flex !important;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  /* Override .photo-button absolute positioning when inside mobile-action-buttons */
  .mobile-action-buttons .photo-button {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    flex: 1;
    min-width: 150px;
    text-align: center;
  }
}

/* Mobile: styled like "placiau apie trenerį" button with text "VIDEO CLIPS" */
.video-badge-mobile {
  position: relative;
  width: 100%;
  height: auto;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  border: 2px solid #ccff00;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 65%;
  letter-spacing: 2.5px;
  text-align: center;
  color: #ccff00;
}

.video-badge-mobile:hover {
  background-color: #ccff00;
  color: black;
  border-color: #ccff00;
}

.video-badge-mobile .rotating-bg {
  display: none; /* Hide SVG background on mobile */
}

.video-badge-mobile .play-button {
  display: none; /* Hide play button on mobile */
}

/* Desktop: original styling with rotating background and play button */
.video-badge {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-badge .rotating-bg {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}

.video-badge .play-button {
  position: absolute;
  top: 50%;
  left: calc(50% + 0.2rem);
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 20px rgba(0,0,0,0);
}

.video-badge .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Show mobile buttons on mobile only */
@media (max-width: 768px) {
  .mobile-action-buttons {
    display: flex !important;
  }

  /* Hide desktop photo button on mobile */
  .photo-block .photo-button {
    display: none;
  }

  /* Hide desktop video badge on mobile */
  .photo-block .video-badge {
    display: none;
  }
}

/* Also show mobile buttons on medium screens (777px - 1153px) with mobile composition */
@media (min-width: 777px) and (max-width: 1153px) {
  .mobile-action-buttons {
    display: flex !important;
  }

  /* Hide desktop photo button */
  .photo-block .photo-button {
    display: none;
  }

  /* Hide desktop video badge */
  .photo-block .video-badge {
    display: none;
  }
}

/* Desktop: ensure they stay hidden */
@media (min-width: 769px) {
  .mobile-action-buttons {
    display: none !important;
  }
}

/* === MEDIUM SCREENS: MOBILE COMPOSITION (777px - 1153px) === */
@media (min-width: 777px) and (max-width: 1153px) {
  .stats-contact-section {
    flex-direction: column;
  }

  .stats-contact-section > * {
    width: 100% !important;
  }

  .left-content {
    width: 100% !important;
  }

  .photo-block {
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .photo-block .full-photo {
    width: 100%;
  }

  .stats-block,
  .contact-form {
    width: 100%;
    padding-right: 0;
  }

  .contact-form {
    padding-left: 2rem;
  }

  .tarpas {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }
}
