:root {
  --color-bg: rgb(242 247 243 / 49%);
  --color-bg-2: rgb(240 255 254);
  --color-bg-2-dots: rgb(228 220 198);
  --color-bg-3: #f3f9ff;
  --color-eyebrow-light: #00ffc5;
  --services-overlay-inner: rgb(243 249 255 / 0.88);
  --services-overlay-outer: rgb(243 249 255 / 0.45);
  --color-bg-4: rgb(127, 127, 127);
  --color-surface: rgba(255, 255, 255, 0.78);
  --color-surface-alt: #e2f1ef;
  --color-text: #1d1d1f;
  --color-text-2: #08427d;
  --color-muted: #252525;
  --color-muted-2: #4d4d4d;
  --color-primary: #004e97;
  --color-primary-hover: #002197;
  --color-secondary: #006b8a;
  --color-tertiary: #009768;
  --color-accent: #d9b38c;
  --color-border: rgba(29, 29, 31, 0.08);
  --color-shadow: 0 20px 60px rgba(20, 20, 25, 0.08);
  --color-shadow-soft: 0 10px 30px rgba(20, 20, 25, 0.05);
  --color-success: #2f8f63;
  --color-error: #c95a5a;
  --color-white: #f4f4f4;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1200px;
  --header-height: 72px;
  --parallax-strength: 0.28;
  --parallax-strength-mobile: 0.12;
  --parallax-speed-bg: 1;
  --parallax-speed-heading: 0.28;
  --parallax-speed-eyebrow: 0.24;
  --parallax-speed-text: 0.18;
  --parallax-speed-card: 0.12;
  --parallax-speed-btn: 0.12;
  --transition: 0.20s ease;
  --transition-slow: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  min-height: calc(100vh - var(--header-height));
  padding: 4rem 0;
}

.section--bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section--bg > .container {
  position: relative;
  z-index: 2;
}

.services.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: radial-gradient(rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.4));
}

.about.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: radial-gradient(rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.4));
}

.team.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: radial-gradient(rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.4));
}

.contact.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: radial-gradient(rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.4));
}

h1,
h2,
h3 {
  font-family: "Commissioner", sans-serif;
}

h3 {
  font-weight: 600;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.section-bg__media {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 124%;
  will-change: transform;
}
.section-bg__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.section-bg__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-layer {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .section-bg__media,
  .parallax-layer {
    will-change: auto;
    transform: none !important;
  }
  .section-bg__media {
    top: 0;
    height: 100%;
  }
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.light .eyebrow {
  color: var(--color-eyebrow-light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: 0 0 25px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 5px;
  padding-right: 15px;
}
.section-heading.light h2 {
  color: var(--color-white);
}
.section-heading.light p {
  color: #e9e9e9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.4rem;
  border-radius: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: all var(--transition);
  min-width: 230px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover {
  filter: hue-rotate(20deg);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}
.btn--secondary {
  transition: all var(--transition);
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}
.btn--secondary:hover {
  filter: hue-rotate(-15deg);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.btn--border {
  color: var(--color-secondary);
  border: 2px solid white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}
.btn--border:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.1);
}
.btn--full {
  width: 100%;
}
.btn--small {
  min-height: 46px;
  padding: 0.5rem 1rem;
  max-width: 210px;
  font-size: 0.95rem !important;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: white;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  box-shadow: var(--color-shadow-soft);
  transition: all var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  background: white;
}

.header-wrapper {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand svg {
  width: 200px;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  box-shadow: var(--color-shadow);
  cursor: pointer;
  transition: transform var(--transition);
}
.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: var(--transition);
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  box-shadow: var(--color-shadow);
  backdrop-filter: blur(18px);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.main-nav li:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.main-nav a {
  display: block;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  transition: var(--transition);
  font-size: 0.9rem;
  position: relative;
}
.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  left: 0;
  right: 0;
  top: var(--header-height);
}

.hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero .hero-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 420px;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}
.hero .hero-banner .section-bg {
  z-index: 0;
}
.hero .hero-banner .hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 2rem;
  margin: 0 auto;
  background: radial-gradient(rgba(255, 255, 255, 0.95) 29%, rgba(255, 255, 255, 0));
  border-radius: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* soporte Safari */
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .hero-banner .hero-content h3 {
  letter-spacing: 0.5px;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
  color: var(--color-text-2);
  margin: 0;
  margin-bottom: 30px;
}
.hero .hero-banner .hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: -10px;
  color: var(--color-text-2);
  font-weight: 400;
}
.hero .hero-banner .hero-content h1 span {
  display: block;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}
.hero .hero-banner .hero-content p {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: 60px;
  opacity: 0.9;
  color: var(--color-text-2);
  font-weight: 400;
}
.hero .hero-banner .hero-content .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
}

.service-card,
.team-card,
.contact-list-wrapper,
.contact-form {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgb(255, 255, 255);
  box-shadow: var(--color-shadow);
}

.contact-list-wrapper {
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
.contact-list-wrapper .contact-map {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .contact-list-wrapper {
    width: 50%;
    padding: 2rem;
  }
  .contact-list-wrapper .contact-map {
    height: 100%;
  }
}

.services__grid,
.team__grid {
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .services__grid.under-team,
  .team__grid.under-team {
    margin-top: 1rem;
  }
}

.services__grid > .parallax-layer {
  height: 100%;
}
.services__grid > .parallax-layer .service-card {
  height: 100%;
}

.services .actions {
  display: flex;
  padding: 30px 0;
  justify-content: center;
  padding-bottom: 0;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-surface-alt);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card,
.team-card {
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card h3,
.team-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-secondary);
}
.service-card p,
.team-card p {
  margin: 0;
  color: var(--color-muted);
}

.form-actions {
  display: flex;
  justify-content: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.team-card__media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  overflow: hidden;
}
.team-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-card__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
.team-card h3 {
  line-height: normal;
  margin-bottom: 5px;
}
.team-card p {
  font-size: 0.94rem;
}
@media (min-width: 992px) {
  .team-card {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .team-card__body {
    text-align: left;
  }
}

.grid-bottom .team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.grid-bottom .team-card p {
  margin-bottom: 0;
}
.grid-bottom .team-card__media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  overflow: hidden;
}
.grid-bottom .team-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact__flex {
  display: flex;
  gap: 1.5rem;
  flex-direction: column-reverse;
  margin-bottom: 50px;
}
.contact__content p {
  color: var(--color-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0;
  margin-top: 0;
}
.contact-list li a {
  color: var(--color-secondary);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  word-break: break-word;
  font-size: 0.9rem;
  transition: all var(--transition);
  line-height: normal;
  font-weight: 500;
}
.contact-list li a svg {
  min-width: 24px;
  color: var(--color-secondary);
  transform: scale(1);
  flex-shrink: 0;
  stroke-width: 1.5;
  transition: all var(--transition);
}
.contact-list li a:hover {
  color: var(--color-primary);
}
.contact-list li a:hover svg {
  color: var(--color-primary);
}
.contact-list strong {
  color: var(--color-text);
}

.contact-form {
  border-radius: 15px;
  padding: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.form-row .form-group {
  margin-bottom: 0;
}

.form-group {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.form-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-muted-2);
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(122, 92, 62, 0.2);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(122, 92, 62, 0.35);
  box-shadow: 0 0 0 4px rgba(122, 92, 62, 0.08);
  transform: translateY(-1px);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-bg-4);
  opacity: 0.8;
  font-size: 15px;
}
.form-group textarea {
  resize: vertical;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--color-error);
}
.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
  border-color: var(--color-error);
  box-shadow: 0 0 0 4px rgba(201, 90, 90, 0.15);
}
.form-group.has-error .field-error {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.field-error {
  color: var(--color-error);
  font-size: 0.8rem;
  padding-right: 5px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.form-response {
  margin: 0;
  font-size: 14px;
  transform: translateY(15px);
  font-weight: 400;
}
.form-response.is-success {
  color: var(--color-success);
}
.form-response.is-error {
  color: var(--color-error);
}

.site-footer {
  padding: 2rem 1rem 1rem 1rem;
  background: linear-gradient(0, white, rgba(255, 255, 255, 0));
  color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.footer-wrapper {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.footer-wrapper p {
  margin: 0;
  color: black;
  font-size: 0.8rem;
}

.back-to-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  color: black;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  position: absolute;
  bottom: 3.3rem;
  left: initial;
  transition: all var(--transition);
}
.back-to-top.is-visible {
  opacity: 0.06;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 2px;
  display: inline-block;
  border: 3px solid black;
  border-radius: 50px;
  transition: all var(--transition);
}
.back-to-top__label {
  margin-top: 0;
}
.back-to-top:hover {
  opacity: 0.15;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.image-gallery {
  --items-view: 3;
  --gap: 24px;
  position: relative;
  padding: 10px 0;
  max-width: 100%;
  margin: 0 auto;
}
.image-gallery .carousel-wrapper {
  position: relative;
  padding: 0;
}
.image-gallery .carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}
.image-gallery .carousel-track {
  display: flex;
  gap: var(--gap);
  transition: transform 1s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform;
  padding: 15px 5px;
}
.image-gallery .carousel-item {
  flex: 0 0 calc(100% / var(--items-view) - var(--gap) * (var(--items-view) - 1) / var(--items-view));
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-gallery .carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.08);
}
.image-gallery .carousel-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 4px solid white;
  border-radius: 10px;
}
.image-gallery .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}
.image-gallery .nav-btn:hover .nav-btn__arrow-line {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.image-gallery .nav-btn.prev {
  left: -50px;
}
.image-gallery .nav-btn.next {
  right: -50px;
}
.image-gallery .nav-btn .nav-btn__arrow {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(1.3);
}
.image-gallery .nav-btn .nav-btn__arrow-line {
  width: 15px;
  height: 15px;
  border-top: 1px solid #747474;
  border-right: 1px solid #747474;
  display: block;
  transform: rotate(45deg);
}
.image-gallery .nav-btn.prev .nav-btn__arrow-line {
  transform: rotate(-135deg);
}
.image-gallery .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
.image-gallery .carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-gallery .carousel-dots .dot.active {
  background: #707070;
}
.image-gallery #image-modal {
  border: none;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  outline: none;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease, overlay 0.28s ease allow-discrete;
}
.image-gallery #image-modal[open] {
  opacity: 1;
  transform: scale(1);
}
.image-gallery #image-modal.is-closing {
  opacity: 0;
  transform: scale(0.97);
}
.image-gallery #image-modal::backdrop {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background-color 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease, overlay 0.28s ease allow-discrete;
}
.image-gallery #image-modal[open]::backdrop {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.image-gallery #image-modal.is-closing::backdrop {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.image-gallery #image-modal .modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.image-gallery #image-modal #modal-img {
  width: 100%;
  max-width: 1200px;
  max-height: 85vh;
  border-radius: 8px;
  transition: opacity 0.28s ease, transform 0.28s ease;
  will-change: opacity, transform;
}
.image-gallery #image-modal #modal-img.changing {
  opacity: 0;
  transform: scale(0.97);
}
.image-gallery #image-modal .modal-image-wrapper {
  position: relative;
  padding: 0 15px;
}
@media (min-width: 1345px) {
  .image-gallery #image-modal .modal-image-wrapper {
    padding: 0;
  }
}
.image-gallery #image-modal .modal-image-container {
  position: relative;
  min-width: 120px;
  min-height: 120px;
  touch-action: pan-y pinch-zoom;
}
.image-gallery #image-modal .modal-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 2%;
  z-index: 12;
}
.image-gallery #image-modal .modal-dots .dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: #d0d0d0;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-gallery #image-modal .modal-dots .dot.active {
  background: #707070;
}
.image-gallery #image-modal.is-loading .modal-image-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #848484;
  animation: modalSpinner 0.8s linear infinite;
  pointer-events: none;
}
.image-gallery #image-modal .modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255, 255, 255);
  border: none;
  color: #fff;
  padding: 18px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 12;
}
.image-gallery #image-modal .modal-nav:focus {
  outline: none;
}
.image-gallery #image-modal .modal-nav:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 78, 151, 0.35);
}
.image-gallery #image-modal .modal-nav.m-prev {
  left: 0;
  border-radius: 8px;
}
.image-gallery #image-modal .modal-nav.m-next {
  right: 0;
  border-radius: 8px;
}
.image-gallery #image-modal .modal-nav .modal-nav__arrow {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(1.2);
}
.image-gallery #image-modal .modal-nav .modal-nav__arrow-line {
  width: 100%;
  height: 100%;
  border-top: 1px solid #747474;
  border-right: 1px solid #747474;
  display: block;
  transform: translateX(-2px) rotate(45deg);
}
.image-gallery #image-modal .modal-nav.m-prev .modal-nav__arrow-line {
  transform: translateX(2px) rotate(-135deg);
}
.image-gallery #image-modal .modal-nav:hover .modal-nav__arrow-line {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
@media (min-width: 1345px) {
  .image-gallery #image-modal .modal-nav {
    background: rgba(255, 255, 255, 0);
    border: none;
    color: #fff;
    padding: 20px 20px;
  }
  .image-gallery #image-modal .modal-nav.m-prev {
    left: -78px;
  }
  .image-gallery #image-modal .modal-nav.m-next {
    right: -78px;
  }
  .image-gallery #image-modal .modal-nav .modal-nav__arrow {
    width: 21px;
    height: 21px;
  }
  .image-gallery #image-modal .modal-nav .modal-nav__arrow-line {
    border-top: 1px solid #747474;
    border-right: 1px solid #747474;
  }
}
.image-gallery #image-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 12;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.image-gallery #image-modal .close-modal:focus {
  outline: none;
}
.image-gallery #image-modal .close-modal:focus-visible span {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 78, 151, 0.35);
}
.image-gallery #image-modal .close-modal span {
  width: 40px;
  height: 40px;
  display: block;
  line-height: 36px;
  font-size: 2rem;
  color: #747474;
  background: white;
  border-radius: 50%;
  font-weight: 100;
  transition: all 0.3s ease;
}
.image-gallery #image-modal .close-modal:hover span {
  color: #333;
}

@media (min-width: 520px) {
  .hero .hero-banner .hero-content .actions {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .btn--full {
    max-width: 230px;
    min-width: 230px;
  }
  .btn {
    font-size: 1.1rem;
  }
  .section {
    padding: 5rem 0;
    display: flex;
    justify-content: center;
  }
  .section > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .nav-toggle {
    display: none;
  }
  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .main-nav li {
    border-bottom: none !important;
  }
  .main-nav a {
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--color-secondary);
  }
  .main-nav a.active, .main-nav a:hover {
    color: var(--color-primary);
  }
  .hero .hero-banner {
    min-height: 500px;
    text-align: left;
    align-items: center;
  }
  .hero .hero-banner .hero-content {
    margin: 0;
  }
  .hero .hero-banner .hero-content p {
    max-width: 56%;
  }
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team__grid.under-team {
    margin-top: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .team__grid.under-team .team-card {
    justify-content: center;
  }
  .contact__grid {
    align-items: start;
  }
  .contact__flex {
    flex-direction: row;
  }
  .footer-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .brand svg {
    width: 220px;
  }
  .contact-form {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .main-nav ul {
    gap: 0.6rem;
  }
  .main-nav a {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 1024px) {
  .hero__content p {
    font-size: 1.06rem;
  }
  .service-card,
  .team-card {
    padding: 1.8rem;
  }
  .contact-form {
    padding: 2rem;
  }
}
@keyframes modalSpinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@starting-style {
  #image-modal[open] {
    opacity: 0;
    transform: scale(0.97);
  }
  #image-modal[open]::backdrop {
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #image-modal,
  #image-modal #modal-img {
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .image-gallery {
    --items-view: 2;
  }
}
@media (max-width: 768px) {
  .image-gallery {
    --items-view: 1;
  }
  .image-gallery .nav-btn {
    display: none;
  }
}

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