@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* Base Styles */
:root {
  --primary: #2f81a9;
  --primary-light: rgba(26, 123, 165, 0.2);
  --primary-dark: #156a91;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.font-josefin {
  font-family: "Josefin Sans", sans-serif;
}

.font-nunito {
  font-family: "Nunito Sans", sans-serif;
}

.border-rounded {
  border-radius: 25px;
  padding: 5px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  overflow: hidden;
}

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.highlight {
  color: var(--primary);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  z-index: 1000;
  padding: 1rem 0;
}

.alternative {
  background-color: var(--primary) !important;
}

.navbar-toggler-icon {
  filter: brightness(100);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo-color {
  display: none;
}

.nav-link,
.nav-link.active {
  color: #fff !important;
  &:hover {
    font-weight: 600;
  }
}

.navbar.sticky-top {
  position: fixed;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  .navbar-logo-color {
    display: block;
  }

  .navbar-logo-white {
    display: none;
  }

  .nav-link,
  .nav-link.active {
    color: #000 !important;
    &:hover {
      font-weight: 600;
    }
  }

  .navbar-toggler-icon {
    filter: unset;
  }
}

.nav-item.active {
  .nav-link {
    font-weight: 600;
  }
}

.navbar-logo {
  width: 230px;
}

.navbar-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin: 0;
}

.navbar-logo p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-color: rgba(47, 129, 169, 0.5);
  color: var(--white);
  overflow: hidden;
  /* padding-top: 80px; Espacio para la navbar */

  .image-home {
    width: 40rem;
    margin: 0 auto 50px;
  }

  .formas {
    position: absolute;
    display: flex;
    align-items: baseline;
    bottom: 0;
    right: 0;
  }

  .formas-wrapper {
    position: relative;
  }

  .shape {
    margin: 5px;
    width: 90px;
    height: 300px;
    border: 1px solid #fff;
    border-radius: 50px;
  }

  .very-short {
    height: 100px;
  }

  .short {
    height: 200px;
  }

  .long {
    height: 400px;
  }

  .very-long {
    height: 600px;
  }

  .with-bg {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
  }

  .forma2 {
    position: relative;
    bottom: -50px;
  }

  .forma3 {
    position: relative;
    bottom: -150px;
  }
  .forma4 {
    position: relative;
    bottom: -250px;
  }
  .forma5 {
    position: relative;
    bottom: -250px;
  }
  .forma6 {
    position: relative;
    bottom: -150px;
  }
}

.hero-slider {
  img {
    width: 100%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 129, 169, 0.6);
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 15rem;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-text {
  margin-bottom: 2rem;
  width: 600px;

  .banner-title {
    font-size: 3rem;
    font-weight: 800;
  }
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-text h2 {
  font-size: 2rem;
  font-weight: 600;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
}

.parallax-about-bg {
  background-image: url("../images/home4.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

  &::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.bottom-faded {
  &::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(249, 250, 251, 1) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(249, 250, 251, 1) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(249, 250, 251, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f9fafb",GradientType=1);
  }
}

.about-image {
  position: relative;
  z-index: 1;

  .about-content {
    position: absolute;
    z-index: 2;
    background-color: #fff;
  }
}

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

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, var(--primary), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.about-description {
  max-width: 600px;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.quienes-somos,
.porque-elegirnos {
  position: relative;
  height: 700px;
}

.quienes-somos {
  .about-content {
    top: 50px;
    left: 300px;
  }
}

.porque-elegirnos {
  margin-top: 50px;

  .about-content {
    top: 50px;
    right: 300px;
  }

  img {
    float: right;
  }
}

.diagonal-cut {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--primary);
  transform: skewY(-6deg) translateY(50%);
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.about-column h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bordered-content {
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.section-title {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 9999px 1rem 1rem 9999px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.product-description {
  background-color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-description p {
  margin-bottom: 1.5rem;
}

.product-features {
  background-color: var(--gray-100);
  padding: 1rem;
  border-radius: var(--radius);
}

.product-features h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.blue-dot {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.product-image {
  overflow: hidden;
}

.product1-slider,
.product2-slider,
.product3-slider {
  .slick-slide {
    max-height: 400px;
    border-radius: 25px;
    overflow: hidden;
  }
}

/* Services Section */
.services {
  position: relative;
  padding: 5rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2rem;
}

.service-item:last-child {
  border-bottom: none;
}

.service-title {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 9999px 1rem 1rem 9999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.service-content {
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary);
  margin-left: 1rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.floating-figure {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50px;
}

.floating-figure-1 {
  opacity: 0.5;
  transform: rotate(-20deg);
  left: -150px;
  top: 350px;
}

.floating-figure-2 {
  opacity: 1;
  transform: rotate(-20deg);
  right: -150px;
  top: 315px;
}

.floating-figure-3 {
  opacity: 0.2;
  transform: rotate(-20deg);
  right: -50px;
  width: 400px;
  top: 550px;
}

.floating-figure-position2 {
  position: relative;
  top: 1800px;
  left: 100px;
}

.floating-figure-position3 {
  position: relative;
  top: 1100px;
  left: -100px;
}

.card {
  z-index: 10;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--gray-50);

  .clients {
    img {
      width: 200px;
      margin: 0 auto;
    }
  }
}

.accordion {
  .accordion-item {
    border: unset;
  }
  .accordion-button {
    background-color: var(--primary);
    color: #fff;
    border-radius: 25px;
    border: 1px solid #fff;

    &:focus {
      box-shadow: unset;
    }
  }
  .accordion-item {
    margin-bottom: 15px;
    background-color: unset;
  }
  .accordion-body {
    background-color: #fff;
    border-radius: 25px;
  }
}

.btn {
  border-radius: 25px;
  padding: 10px 25px;
}

.btn-primary {
  background-color: var(--primary);
  &:hover {
    border: 2px solid var(--primary);
    background-color: #fff;
    color: var(--primary);
  }
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 25px;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info h3,
.contact-form h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  color: var(--primary);
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.submit-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

.map-container {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.map-container h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.image-border-rounded {
  border-radius: 25px;
  width: 30rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem 0;

  .logo-footer {
    width: 100%;
  }
}

.footer-content {
  display: flex;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.card {
  border-radius: 25px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-bottom: unset;
  height: 100%;
}

.card-title {
  p {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

.card:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
  background-color: var(--primary);

  svg {
    fill: #fff;
    path {
      fill: #fff;
    }
  }

  p {
    color: #fff;
  }
}

.zoom-on-hover:hover {
  transform: scale(1.5);
  transition: transform 1s ease;
}

/* slick carousel */

.carousel1 {
  .quote-img {
    width: 6rem;
    position: absolute;
    top: -50px;
  }

  .card-border-rounded-square {
    width: 45rem;
    padding: 100px;
    -webkit-box-shadow: 9px 10px 18px -7px rgba(0, 0, 0, 0.5);
    box-shadow: 9px 10px 18px -7px rgba(0, 0, 0, 0.5);
  }
}

.slick-dots {
  li {
    button {
      &:before {
        font-size: 12px;
        filter: drop-shadow(2px 2px 8px #000000);
        -webkit-filter: drop-shadow(2px 2px 8px #000000);
        -moz-filter: drop-shadow(2px 2px 8px #000000);
        color: #fff;
        opacity: 1;
      }

      &:hover {
        &:before {
          color: var(--color-primary);
        }
      }
    }

    &.slick-active button:before {
      color: var(--color-primary);
    }
  }
}

.services-slider {
  position: absolute;
  top: 50px;
  left: 0;
  max-width: 100vw;

  .slick-slide {
    img {
      opacity: 0.5;
    }
  }
}

.alert.fade:not(.show) {
  height: 0;
  padding: 0;
  margin: 0;
}

/* ---- whatsapp ----*/
@-webkit-keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 4%;
  }

  100% {
    opacity: 1;
    right: 4%;
    bottom: 4%;
  }
}
@keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 4%;
  }

  100% {
    opacity: 1;
    right: 4%;
    bottom: 4%;
  }
}

@-webkit-keyframes whatsapp_rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes whatsapp_rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.w-flotante {
  opacity: 0;
  background-color: green;
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 4%;
  right: 4%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  /* animation */
  -webkit-animation-name: whatsapp_animation;
  animation-name: whatsapp_animation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  &:hover {
    background-color: #2879ff;
  }

  .whatsapp {
    color: white;
    font-size: 2.5rem;
    /* animation */
    -webkit-animation-name: whatsapp_rotation;
    animation-name: whatsapp_rotation;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}

.pt-120 {
  padding-top: 120px;
}

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

/* Responsive Styles */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-open .home-page {
    background-color: var(--primary) !important;
    &.sticky-top {
      background-color: #fff !important;
    }
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 100%;
  }

  .hero-content {
    left: 16px;
  }

  .hero-text {
    width: unset;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .about-description {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .quienes-somos,
  .porque-elegirnos {
    height: unset;
  }

  .porque-elegirnos img {
    float: unset;
  }

  .about-image .about-content {
    position: relative;
    top: 0;
    left: 0;
    margin: 25px 0;
  }

  .image-border-rounded {
    margin: 0 auto;
  }

  .products,
  .services {
    padding-top: 0;
  }

  .footer {
    .logo-footer {
      width: 200px;
      margin: 0 auto;
    }
    .footer-logo {
      margin-bottom: 25px;
    }
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-content {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .navbar-logo {
    width: 180px;
  }

  .hero {
    height: 80vh;

    .banner-title {
      font-size: 1.8rem;
    }

    .hero-text p {
      font-size: 1rem;
    }

    .shape {
      width: 40px;
      height: 150px;
    }

    .long {
      height: 200px;
    }
    .short {
      height: 100px;
    }
    .very-short {
      height: 50px;
    }
    .very-long {
      height: 300px;
    }
  }

  .hero-slider {
    display: none;
  }

  .hero-slider-mobile {
    display: block;

    .slick-slide {
      img {
        object-fit: cover;
        height: 80vh;
      }
    }
  }

  .image-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .accordion-body {
    flex-direction: column;
    p {
      margin-top: 30px;
    }
  }
}

@media (max-width: 480px) {
  .section-title {
    padding: 0.75rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}
