
@charset "UTF-8";
:root {
  --bg-dark: #0c1416;
  --bg-mid: #182022;
  --bg-light: #f4f4f4;
  --white: #ffffff;
  --muted: #a7afb1;
  --text-soft: #f1f0f1;
  --accent: #d0984f;
  --accent-hover: #b07a3a;
  --danger: red;
  --success: green;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --blur: blur(8px);
  --space-section: 50px;
  --space-section-mobile: 40px;
}

.gallery-item h3, .gallery-item img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*%navbar-top-active {
    background-color: #e9ecef;
}*/
/* Base html elements */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/*html {
  scroll-padding-top: 3.5rem;
}*/
body {
  /*position: relative;
  padding-top: 4rem;
  padding-bottom: 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.5;
}

figcaption {
  display: none;
}

* {
  box-sizing: border-box;
}

i {
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: cover;
  display: inline-block;
}

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

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

a,
button,
input,
textarea {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
}

/*a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: none;
}*/
p {
  margin-top: 0;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

textarea {
  vertical-align: inherit;
}

@media (max-width: 760px) {
  :root {
    --space-section: var(--space-section-mobile);
  }
}
/* Typography */
/* Helpers */
.bg-light {
  background-color: var(--bg-light);
}

.bg-mid {
  background-color: var(--bg-mid);
}

.bg-dark {
  background-color: var(--bg-dark);
}

.i-arrow-down {
  background-image: url("../img/icons/arrow-down.svg");
}

.form-ant {
  display: none;
}

.alert {
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--white);
}
.alert .alert-success {
  background-color: var(--success);
}
.alert .alert-danger {
  background-color: var(--danger);
}

body.menu-open {
  overflow: hidden;
}

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

.pb-50 {
  padding-bottom: 50px;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
  position: absolute !important;
}

.shell {
  width: min(1800px, 100% - 48px);
  margin-inline: auto;
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
  }
}
img.invert {
  filter: invert(1);
}

/* Header */
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding-top: 2rem;
  position: relative;
}

.mobile-nav-bar {
  display: none;
}

.logo {
  width: 250px;
  height: 42px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin-inline: auto;
}

.menu-toggle:hover span {
  background: var(--accent);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.mobile-menu-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(420px, 100vw);
  background: rgba(0, 0, 0, 0);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mobile-menu-head .logo {
  width: 150px;
}

.menu-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--radius-xl);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--radius-xl);
  padding: 10px;
}

.mobile-menu-links a {
  display: block;
  border-radius: var(--radius-pill);
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-soft);
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links a:hover {
  color: var(--accent);
  background: rgba(208, 152, 79, 0.12);
}

.mobile-menu .pill-btn {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1310px) {
  .nav-wrap {
    grid-template-columns: minmax(100px, 250px) 2fr 100px;
  }
}
@media (max-width: 1050px) {
  .nav-wrap.shell {
    width: 100%;
    margin-inline: 0;
  }
  .nav-wrap {
    display: block;
    padding-top: 0;
  }
  .nav-wrap > .container,
  .nav-wrap > .nav-container {
    display: none;
  }
  .mobile-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #070e10;
    padding: 16px 20px;
  }
  .mobile-menu[hidden] {
    display: none;
  }
  .mobile-nav-bar .logo {
    width: 180px;
  }
  .mobile-menu-head .logo {
    width: 180px;
  }
  .mobile-menu-panel {
    padding: 18px 20px;
  }
}
@media (max-width: 760px) {
  .mobile-nav-bar {
    padding: 14px 12px;
  }
  .mobile-nav-bar .logo {
    width: 150px;
  }
  .mobile-menu-head .logo {
    width: 150px;
  }
  .mobile-menu-panel {
    padding: 14px 12px;
    width: 100%;
  }
}
/* Main content */
.default-section {
  background-color: var(--bg-mid);
  padding-bottom: var(--space-section);
}

/*.faq-section {
    background-color: var(--bg-mid);
}*/
/* Footer */
.footer {
  /*background: var(--bg-dark);*/
  /*.footer-inner .pill-links a,
  .footer-inner .pill-btn,
  .footer-links a,{
    white-space: nowrap;
  }*/
}

.mobile-footer-bar {
  margin-bottom: 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-inner .logo {
  min-width: 180px;
  height: auto;
}
.footer-inner .nav-container {
  min-width: 0;
}
.footer-inner .pill-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-inner .pill-links {
  flex-wrap: nowrap;
}
.footer-inner .dropdown-content {
  top: -420%;
}
.footer-inner .pill-links a,
.footer-inner .pill-btn {
  white-space: nowrap;
}

.subfooter {
  padding: 16px 0;
  /*background: var(--bg-mid);*/
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.subfooter p {
  margin-bottom: 0;
}

.subfooter-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/*.footer-inner .logo {
  min-width: 180px;
  height: auto;
}*/
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  font-size: 12px;
  color: #606566;
  text-decoration: underline;
  white-space: nowrap;
}
.footer-links a {
  white-space: nowrap;
}

/*.footer-inner .nav-container {
  min-width: 0;
}

.footer-inner .pill-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}*/
/*.footer-inner .pill-links {
  flex-wrap: nowrap;
}*/
/*.footer-inner .pill-links a,
.footer-inner .pill-btn,
.footer-links a, {
  white-space: nowrap;
}*/
/*.footer-inner .dropdown-content {
  top: -420%;
}*/
@media (max-width: 1310px) {
  .footer-inner {
    grid-template-columns: minmax(100px, 250px) 2fr 100px;
  }
}
@media (max-width: 1050px) {
  .mobile-footer-bar.shell {
    width: 100%;
    margin-inline: 0;
  }
  .footer-inner {
    display: none;
  }
  .footer-links {
    gap: 5px;
  }
  .footer {
    background: transparent;
    padding: 0;
  }
  .mobile-footer-bar {
    margin-bottom: 0;
  }
}
@media (max-width: 890px) {
  .subfooter-inner {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 10px;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
}
/* Navigation */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/*.pill-nav {
    position: relative;
    border-radius: var(--radius-pill);
}*/
.pill-links {
  display: flex;
  gap: 28px;
  padding: 5px 10px;
  backdrop-filter: var(--blur);
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 2;
}

.pill-nav {
  position: relative;
  border-radius: var(--radius-pill);
}
.pill-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border: 2px solid #fff;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.pill-nav a {
  font-weight: 500;
  border-radius: 10px;
  padding: 4px 6px;
}
.pill-nav a:hover, .pill-nav a.active {
  color: var(--accent);
}

/*.pill-nav a {
    font-weight: 500;
    border-radius: 10px;
    padding: 4px 6px;
}*/
/*.pill-nav a:hover,
.pill-nav a.active {
    color: var(--accent);
}*/
.social-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-nav.align-start {
  justify-content: flex-start;
}

.social-circle {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.social-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.social-circle-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: var(--blur);
}

.social-circle img {
  z-index: 1;
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.dropdown-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.dropdown-link > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-link > a .i-arrow-down {
  transition: transform 0.2s ease;
}

.dropdown-link:hover > a .i-arrow-down {
  transform: rotate(180deg);
}

.dropdown-link:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-xl);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.23);
}

.dropdown-content a {
  position: relative;
  z-index: 2;
  color: var(--text-soft);
  padding: 11px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.dropdown-content a:hover {
  color: var(--accent);
  background-color: rgba(208, 152, 79, 0.12);
}

@media (max-width: 1300px) {
  .pill-nav {
    gap: 20px;
  }
}
/* Forms */
form .form-ant {
  display: none;
}

.glass-form {
  position: relative;
  width: 439px;
  border-radius: var(--radius-xl);
}
.glass-form .h2 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.glass-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgb(255, 255, 255);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/*.glass-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 1);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}*/
.form-container {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: var(--blur);
  padding: 54px 56px;
}

/*.glass-form .h2 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: -0.03em;
}*/
.glass-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: white;
  font: inherit;
  outline: none;
  padding: 10px 0;
}

.glass-form select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 10px 0;
  padding-right: 2.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.glass-form select.is-invalid:not([multiple]):not([size]),
.glass-form select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 3.25rem;
  background-position: right 0 center, center right 1.5rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-color: var(--danger);
}

.glass-form select.is-valid:not([multiple]):not([size]),
.glass-form select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  padding-right: 3.25rem;
  background-position: right 0 center, center right 1.5rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-color: var(--success);
}

.glass-form .cf-input input.is-invalid,
.glass-form .cf-input input.is-valid {
  background-position: right 0 center;
  padding-right: calc(1.5em + 0.25rem);
}

.glass-form select option {
  /* native select option — no custom styles */
}

.glass-form input::placeholder {
  color: #fff;
  opacity: 0.8;
}

.glass-form input:focus {
  border-color: white;
}

.glass-form input:focus::placeholder {
  opacity: 1;
}

.form-note {
  margin: 18px 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form {
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px 40px 40px;
}

.cf-input {
  margin-bottom: 16px;
}

.cf-input .help-block {
  font-size: 12px;
  float: right;
}

.cf-input input.is-invalid,
.cf-input textarea.is-invalid,
.contact-form input.is-invalid:focus,
.contact-form textarea.is-invalid:focus {
  border-color: var(--danger);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.cf-input input.is-valid,
.cf-input textarea.is-valid,
.contact-form input.is-valid:focus,
.contact-form textarea.is-valid:focus {
  border-color: var(--success);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.cf-input .text-danger {
  color: var(--danger);
}

.cf-input .help-block i {
  display: none;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: #707778;
}

.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--bg-light);
  color: #8f9496;
  font: 500 14px/1.3 "Inter", sans-serif;
  padding: 8px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--muted), 0.5);
}

.contact-form textarea {
  min-height: 146px;
  resize: vertical;
}

.contact-form .cta-pill {
  background: var(--accent);
  color: var(--white);
}

.contact-form .cta-pill:hover {
  background: var(--accent-hover);
}

.contact-form .cta-dot {
  background: #fff;
}

.contact-image {
  min-height: 745px;
}

@media (max-width: 1300px) {
  .glass-form {
    width: 100%;
    max-width: 439px;
  }
  .contact-grid > div,
  .contact-form {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .glass-form {
    width: 100%;
    max-width: none;
  }
}
/* basic cookie panel */
.cookies-info {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  color: #ffffff;
  font-size: 0.8rem;
  text-align: center;
  background-color: #000000;
  z-index: 1000;
}
.cookies-info button {
  margin-left: 1rem;
}

/* full cookie panel */
/* Breadcrumb */
/* Buttons */
.pill-btn,
.cta-pill {
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.pill-btn {
  padding: 5px 10px;
  color: var(--bg-dark);
  background: var(--accent);
}
.pill-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 5px 18px 5px 5px;
  background-color: var(--white);
  color: var(--bg-dark);
  /*font: 600 16px/1.3 "Inter", sans-serif;*/
  /*letter-spacing: -0.02em;*/
}
.cta-pill:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.cta-pill.pill-brown {
  background-color: var(--accent);
  color: var(--white);
}
.cta-pill.pill-brown:hover {
  background-color: var(--accent-hover);
}
.cta-pill.pill-brown .cta-dot {
  background-color: var(--white);
}
.cta-pill.pill-brown .cta-dot img {
  filter: invert(1);
}

.cta-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-mid);
  display: grid;
  place-items: center;
}
.cta-dot img {
  width: 13px;
  height: 13px;
}

/* Lists */
ul.checkmark {
  list-style: none;
  padding-left: 0;
}
ul.checkmark li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
ul.checkmark li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Pagination */
/* Tables */
/* Thumbnails */
.reference-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.01);
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid transparent;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  transition: all 0.2s ease;
}

.reference-card:hover::after {
  border-color: rgb(255, 255, 255);
  transition: all 0.2s ease;
}

.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-card .overlay {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, rgba(12, 20, 22, 0) 0%, rgba(12, 20, 22, 0.95) 100%);
}

.reference-card .copy {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 30px;
}

.reference-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.reference-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 470px;
  background: rgba(255, 255, 255, 0.01);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid transparent;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  transition: all 0.2s ease;
}

.service-card:hover::after {
  border-color: rgb(255, 255, 255);
  transition: all 0.2s ease;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .overlay {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, rgba(12, 20, 22, 0) 0%, rgba(12, 20, 22, 0.95) 100%);
}

.service-card .copy {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 55px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.service-card.featured {
  border: 3px solid var(--white);
}

/* Carousel base class */
.cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 16px;
}

.services-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 120px) / 4);
  grid-template-columns: none;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding-inline: 0;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-slider .service-card {
  scroll-snap-align: center;
}
.services-slider::-webkit-scrollbar {
  display: none;
}

/*.services-slider::-webkit-scrollbar {
    display: none;
}*/
/*.services-slider .service-card {
    scroll-snap-align: center;
}*/
/* Gallery */
.gallery-item {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.gallery-item figure {
  overflow: hidden;
}
.gallery-item figcaption {
  display: block;
  position: relative;
}
.gallery-item h3 {
  padding: 0.5rem;
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media screen and (min-width: 576px) {
  .gallery-item h3 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .gallery-item h3 {
    font-size: 1.25rem;
  }
}
.gallery-item:hover {
  text-decoration: none;
}
.gallery-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.gal-detail__fullzoom figure {
  margin-bottom: 30px;
}

.home-galleries .gallery-item h3 {
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .home-galleries .gallery-item h3 {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .home-galleries .gallery-item h3 {
    font-size: 1rem;
  }
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .bi {
  width: 1em;
  height: 1em;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

.hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.1) 100%), url("../img/hero.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 900px;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 790px;
}

.services {
  background: var(--bg-dark);
  padding: var(--space-section) 0;
}

.services-shell {
  position: relative;
}

.services-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  pointer-events: none;
  margin-bottom: 0;
}

.service-arrow {
  border: 0;
  background: transparent;
  color: #c7c7c7;
  font-size: 30px;
  line-height: 1;
  padding: 6px 8px;
  cursor: pointer;
  pointer-events: auto;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.services-nav .service-arrow:first-child {
  margin-left: -8px;
  background-image: url("../img/icons/chevron-left.svg");
}

.services-nav .service-arrow:last-child {
  margin-right: -8px;
  background-image: url("../img/icons/chevron-right.svg");
}

.service-arrow:hover {
  color: #efefef;
}

.about {
  background: var(--bg-mid);
  padding: var(--space-section) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.about h2,
.contact h2 {
  margin: 0;
  max-width: 560px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}

.hours {
  color: var(--white) !important;
  line-height: 1.5;
}

.hours span {
  color: var(--accent);
}

.about-image,
.contact-image {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
}

.about-image img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
}

.features article {
  min-height: 160px;
  border-radius: var(--radius-xl);
  background: var(--bg-dark);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px 20px;
}

.features img {
  width: 46px;
  margin-bottom: 20px;
}

.features h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.features p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  color: var(--white);
}

.contact {
  background: var(--bg-light);
  color: var(--bg-dark);
  padding: var(--space-section) 0;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid div {
  grid-column: 1;
}

.contact-grid .contact-image {
  grid-column: 3/5;
}

@media (max-width: 1300px) {
  .cards-row:not(.services-slider),
  .features {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
  .services-slider {
    grid-auto-columns: calc((100% - 80px) / 3);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .services-slider {
    grid-auto-columns: calc((100% - 40px) / 2);
  }
}
@media (max-width: 760px) {
  .hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.1) 100%), url("../img/hero-small.webp");
    min-height: 630px;
  }
  .hero-bg {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-content {
    min-height: 1000px;
    align-items: start;
    padding: 24px 0;
  }
  .cards-row:not(.services-slider) {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .features article img {
    width: 32px;
  }
  .features article h3 {
    font-size: 14px;
  }
  .features article p {
    font-size: 12px;
  }
  .services-nav {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    pointer-events: none;
    margin-bottom: 0;
  }
  .services-nav .service-arrow {
    pointer-events: auto;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
  }
  .services-nav .service-arrow:first-child {
    margin-left: -8px;
    background-image: url("../img/icons/chevron-left.svg");
  }
  .services-nav .service-arrow:last-child {
    margin-right: -8px;
    background-image: url("../img/icons/chevron-right.svg");
  }
  .services-slider {
    grid-auto-columns: 100%;
    scroll-padding-inline: 8%;
    padding-inline: 8%;
  }
  .services-slider .service-card {
    min-height: 400px;
    scroll-snap-align: center;
  }
  .service-card .copy {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
  .services-slider .service-card::after {
    border-color: rgba(255, 255, 255, 0.58);
    mix-blend-mode: overlay;
  }
  .about h2,
  .contact h2 {
    font-size: 28px;
  }
}
/* Services */
.page-navbar,
.page-footer {
  background: #0c1416;
}

.page-navbar .nav-wrap {
  padding: 2rem 0;
  align-items: center;
}

.page-brand img {
  width: 170px;
  height: auto;
}

.page-hero,
.page-title {
  background: var(--bg-mid);
  padding: 50px 0;
}
.page-hero.white,
.page-title.white {
  background: var(--bg-light);
  color: var(--bg-dark);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 893px) minmax(0, 439px);
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}

.page-eyebrow {
  margin: 0 0 15px;
  color: #85898a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.page-hero h1,
.page-title h1,
.service-footer h2,
.page-installation h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.page-text {
  margin: 15px 0 26px;
  max-width: 520px;
  color: #eae9ea;
  font-size: 14px;
  line-height: 1.4;
}

.page-main-image,
.page-gallery-grid figure,
.service-footer-image,
.page-installation-image {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.page-main-image.order-3 {
  display: none;
}

.page-main-image {
  width: 100%;
  aspect-ratio: 893/371;
}

.page-main-gallery {
  display: none;
  margin: 0 0 10px 0;
}

.page-main-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.page-main-image img,
.page-gallery-grid img,
.service-footer-image img,
.page-installation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-service-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-service-row span {
  padding-bottom: 10px;
  opacity: 0.7;
}

.page-gallery {
  background: #0c1416;
  padding: 50px 0;
}

.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-gallery-grid figure {
  aspect-ratio: 1/1;
}

.page-gallery-text {
  grid-column: span 2;
  max-width: 600px;
}

.page-gallery-text h3 {
  margin: 0 0 15px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.page-benefits {
  background: #f4f4f4;
  color: #2a1e2a;
  padding: 50px 0;
}

.page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.page-benefit {
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  padding: 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-benefit-title {
  background: rgba(24, 32, 34, 0.05);
  justify-content: center;
}

.page-benefit span {
  display: flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d0984f;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.page-benefit h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.page-benefit p {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  max-width: 290px;
}

.service-footer {
  background-color: var(--bg-mid);
  color: var(--white);
  padding: var(--space-section) 0;
}

.service-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.service-footer-grid ol {
  margin: 18px 0 0;
  padding-left: 20px;
}
.service-footer-grid li {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}
.service-footer-grid .service-footer-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  align-self: flex-end;
}
.service-footer-grid .service-footer-contact {
  /*color: #eae9ea;*/
  font-size: 14px;
  line-height: 1.4;
  align-self: flex-end;
}
.service-footer-grid .social-nav {
  margin-top: 30px;
  justify-content: flex-start;
}
@media screen and (min-width: 1200px) {
  .service-footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
@media screen and (min-width: 1400px) {
  .service-footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.page-services .service-footer {
  background-color: var(--bg-light);
  color: var(--bg-mid);
}
.page-services .service-footer .social-circle {
  background-color: rgba(0, 0, 0, 0.1);
}
.page-services .service-footer .social-circle::after {
  border-color: rgba(24, 32, 34, 0.5);
}
.page-services .service-footer .social-circle img {
  filter: none;
}

@media screen and (min-width: 1200px) {
  .page-services .service-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.page-installation {
  background: #182022;
  padding: 50px 0;
}

.page-installation#sluzby {
  background: white;
  padding: 50px 0;
}

.page-installation#sluzby h2,
.page-installation#sluzby p {
  color: #182022;
}

.page-installation#sluzby .social-nav .social-circle {
  background-color: rgba(0, 0, 0, 0.1);
}

.page-installation#sluzby .social-nav .social-circle::after {
  border-color: rgba(24, 32, 34, 0.5);
}

.page-installation#sluzby .social-nav .social-circle img {
  filter: none;
}

.page-installation-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.page-installation-copy ol {
  margin: 18px 0 0;
  padding-left: 20px;
}

.page-installation-copy li {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
}

.page-installation-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  align-self: flex-end;
}

.page-installation-contact {
  color: #eae9ea;
  font-size: 14px;
  line-height: 1.4;
  align-self: flex-end;
}

.page-installation-contact .social-nav {
  justify-content: flex-start;
}

.page-installation-contact p {
  margin: 0;
}

.page-phone {
  /*margin-top: 18px;*/
  font-weight: 700;
}

.page-installation-contact .social-nav {
  margin-top: 20px;
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1700px) {
  .page-benefit {
    padding-inline: 20px;
  }
}
@media (max-width: 1300px) {
  .page-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero-grid div {
    margin: auto 0;
  }
  .page-hero-grid .glass-form {
    justify-self: flex-end;
  }
  .page-installation-grid {
    grid-template-columns: 1fr;
  }
  .glass-form,
  .page-installation-image {
    width: 100%;
  }
  .page-main-image {
    display: none;
  }
  .page-main-image.order-3 {
    display: block;
    grid-column: span 2;
  }
  .page-main-gallery {
    display: block;
    margin: 0 0 10px 0;
  }
  .page-main-gallery img {
    height: 450px;
  }
  .glass-form {
    min-height: 0;
  }
  .page-gallery-grid,
  .page-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1050px) {
  .subpage .nav-wrap.shell,
  .subpage .mobile-footer-bar.shell {
    width: 100%;
    margin-inline: 0;
  }
  .page-navbar .nav-wrap {
    padding: 0;
  }
  .subpage .mobile-nav-bar {
    width: 100%;
  }
  .page-navbar .nav-wrap {
    padding: 0 !important;
  }
}
@media (max-width: 1000px) {
  .page-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .page-main-image.order-3 {
    display: block;
    grid-column: span 1 !important;
  }
  .page-hero-grid div {
    margin: 0 auto !important;
  }
  .page-hero-grid .glass-form {
    justify-self: center !important;
  }
}
@media (max-width: 760px) {
  .subpage .shell {
    width: calc(100% - 32px);
  }
  .page-gallery#reference .page-gallery-grid {
    grid-template-columns: 1fr;
  }
  .subpage .nav-wrap.shell,
  .subpage .mobile-footer-bar.shell {
    width: 100%;
    margin-inline: 0;
  }
  .page-brand img {
    width: 150px;
  }
  .page-hero,
  .page-gallery,
  .page-benefits,
  .page-installation {
    padding: 28px 0;
  }
  .page-hero h1,
  .page-installation h2,
  .glass-form h2 {
    font-size: 24px;
  }
  .glass-form .form-container {
    padding: 24px 20px;
  }
  .page-main-image {
    display: none;
  }
  .page-main-gallery {
    display: block;
  }
  .page-main-gallery img {
    height: 250px !important;
  }
  .page-gallery-grid,
  .page-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
  }
  .page-benefits-grid .page-benefit h3 {
    font-size: 14px;
  }
  .page-benefits-grid .page-benefit p {
    font-size: 12px;
  }
}
/* References page styles */
.page-references-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .page-references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .page-references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .page-references-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-grid article {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.faq-grid article h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.faq-grid article p {
  margin: 0;
  font-size: 15px;
}
.faq-grid article .pill-btn {
  margin-top: 10px;
  align-self: flex-end;
}

.faq-decor {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* Career page styles */
.page-career .services {
  background: var(--bg-mid);
}

.career {
  background-color: var(--bg-light);
  color: black;
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 50px 0;
  gap: 20px;
}
.career-grid h1 {
  margin: 0 0 20px;
  font-size: 28px;
  text-transform: uppercase;
}
.career-grid .career-image {
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .career-grid {
    grid-template-columns: 1fr 1fr;
  }
  .career-grid .career-image {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1200px) {
  .career-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .career-grid .career-image {
    grid-column: initial;
  }
}
@media screen and (min-width: 1600px) {
  .career-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .career-grid .career-card {
    grid-column: span 1/4;
  }
}

.career-card {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 20px;
}
.career-card ul li {
  margin-bottom: 30px;
}

.career-card-top {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-card-top p {
  margin: 0;
}
.career-card-top .career-price {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

.career-image {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.career-image.order-3 {
  display: none;
}

.career-image img {

}*/
/*@media (max-width: 1700px) {
    .career-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .career-image {
        grid-column: span 1 !important;
        min-height: 750px;
        max-height: none;
    }

    .career-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 1600px) {
    .career-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .career-image {
        display: none;
    }

    .career-grid div {
        grid-column: span 2 !important;
    }

    .career-image.order-3 {
        display: block;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 1300px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .career-grid {
        grid-template-columns: 1fr !important;
    }

    .career-image.order-3 {
        height: 350px !important;
        min-height: auto;
    }
}*/
/* Contacts page styles */
.page-contacts .services {
  background: var(--bg-mid);
}

.contacts {
  background-color: var(--bg-light);
  color: var(--bg-dark);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  /*@include until(1601px) {
    > ul {
    }
    div {
      grid-column: span 2;
    }
  }*/
  /*@include until(1301px) {
    .contact-image {
      min-height: 260px;
    }
  }*/
  /*@include until(1101px) {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr 300px;

    div {
      grid-column: span 1;
      order: 1;
    }

    .contact-form {
      min-width: 300px;
    }

    .contact-image {
      grid-column: 1;
    }

    figure {
      order: 3;
      grid-column: span 2;
    }

    .contacts-text {
      order: 2;
      text-align: center;
    }
  }*/
  /*@include until($br-md) {
    grid-template-columns: 1fr;

    figure {
      order: 3;
      grid-column: 1;
    }

    .contacts-text {
      order: 2;
      text-align: center;
    }
  }*/
}
.contacts-grid .contact-form {
  margin: 0;
  height: 100%;
}
.contacts-grid figure {
  margin: 0;
  max-height: 700px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  order: 3;
}
.contacts-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts-grid .contacts-text {
  text-align: center;
  order: 2;
}
@media screen and (min-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-grid figure {
    grid-column: 1/-1;
  }
  .contacts-grid .contacts-text {
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .contacts-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contacts-grid figure {
    grid-column: 2;
    order: 2;
  }
  .contacts-grid .contacts-text {
    order: 3;
  }
}
@media screen and (min-width: 1400px) {
  .contacts-grid {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

/*.contacts-text {
  text-align: right;
}*/
/*@media (max-width: 1600px) {
  .contact-grid div {
    grid-column: span 2;
  }
}*/
/*@media (max-width: 1300px) {
  .contact-image {
    min-height: 260px;
  }
}*/
/*@media (max-width: 1100px) {
  .contact-grid div {
    grid-column: span 1;
  }

  .contact-grid .contact-form {
    min-width: 300px;
  }

  .contact-grid .contact-image {
    grid-column: 1;
  }

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

  .contacts-grid {
    grid-template-columns: 1fr 300px;
  }

  .contacts-grid div {
    order: 1;
  }

  .contacts-grid figure {
    order: 3;
    grid-column: span 2;
  }

  .contact-grid .contacts-text {
    order: 2;
    text-align: center;
  }
}*/
/*@media (max-width: 760px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid figure {
    order: 3;
    grid-column: 1;
  }

  .contacts-grid .contacts-text {
    order: 2;
    text-align: center;
  }
}*/
/* Short-term git untracked changes - sample file - copy(NOT rename!!!) it without _sample */