
@charset "UTF-8";
:root {
  --font-family: "Inter", sans-serif;
  --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: 5px;
  --radius-xl: 20px;
  --radius-inputs: 8px;
  --radius-pill: 999px;
  --blur: blur(8px);
  --space-section: 50px;
  --space-section-mobile: 40px;
  --gap-20: 20px;
  --cc-font-family: var(--font-family);
  --cc-modal-border-radius: var(--radius);
  --cc-btn-border-radius: var(--radius);
  --cc-primary-color: var(--bg-dark);
  --cc-btn-primary-bg: var(--accent);
  --cc-btn-primary-color: var(--bg-dark);
  --cc-btn-primary-hover-bg: var(--accent-hover);
  --cc-btn-primary-hover-color: var(--bg-dark);
}

.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;
  }
}
body {
  /*position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

figcaption {
  display: none;
}

ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 16px;
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
}

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

a,
button,
input,
textarea,
select {
  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,
select:focus-visible {
  outline: none;
}

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

textarea {
  vertical-align: inherit;
}

hr {
  margin: 50px 0;
  background-color: var(--muted);
}

/*@media (max-width: 760px) {
  :root {
    --space-section: var(--space-section-mobile);
  }
}*/
/* Typography */
body {
  /*@include at-least($br-sm) {
    //font-size: 1.0625rem;
  }


  @include at-least($br-lg) {
    //font-size: 1.125rem;
  }


  @include at-least($br-xl) {
    //font-size: 1.1875rem;
  }*/
}

h1, .h1,
h2, .h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-rendering: optimizeLegibility;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  margin: 0 0 20px 0;
}

p {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

/* Helpers */
.bg-light {
  background-color: var(--bg-light);
  color: var(--bg-dark);
}

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

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

.txt-soft-white {
  color: var(--text-soft);
}

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

.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;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.mw-600 {
  max-width: 600px;
}

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

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

.py-50 {
  padding: 50px 0;
}

.gap-20 {
  gap: var(--gap-20);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-self-start {
  align-self: flex-start;
}

.flex-self-end {
  align-self: flex-end;
}

.jc-start {
  justify-content: start !important;
}

.jc-end {
  justify-content: end !important;
}

.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;
}

img.invert {
  filter: invert(1);
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-1x1 {
  aspect-ratio: 1/1;
}
.ratio-2x1 {
  aspect-ratio: 2/1;
}
.ratio-16x9 {
  aspect-ratio: 1/1;
}
.ratio-12x5 {
  aspect-ratio: 12/5;
}

.eyebrow {
  margin-bottom: 6px;
  font-size: 14px !important;
  color: var(--muted);
}

/* Display */
/* display - .d-none, .d-block, d-(breakpoint)-block */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

/**
 * Breakpoint visibility utility
 * např:
 * d-xl-visible
 * d-lg-visible
 */
.d-sm-visible {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .d-sm-visible {
    display: block !important;
  }
}

.d-md-visible {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .d-md-visible {
    display: block !important;
  }
}

.d-lg-visible {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .d-lg-visible {
    display: block !important;
  }
}

.d-xl-visible {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .d-xl-visible {
    display: block !important;
  }
}

.d-xxl-visible {
  display: none !important;
}
@media screen and (min-width: 1400px) {
  .d-xxl-visible {
    display: block !important;
  }
}

.d-xxxl-visible {
  display: none !important;
}
@media screen and (min-width: 1600px) {
  .d-xxxl-visible {
    display: block !important;
  }
}

/* Grid - 4 columns */
/* column sizes - .col-(breakpoint)-(number of columns) */
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-20);
}
.grid4 figure {
  height: 100%;
}
.grid4 img {
  border-radius: var(--radius);
}

/* default cols (no breakpoint) - .col-1 */
.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

/* responsive cols - .col-lg-2 */
@media screen and (min-width: 576px) {
  .col-sm-1 {
    grid-column: span 1;
  }
  .col-sm-2 {
    grid-column: span 2;
  }
  .col-sm-3 {
    grid-column: span 3;
  }
  .col-sm-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 768px) {
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-1 {
    grid-column: span 1;
  }
  .col-xl-2 {
    grid-column: span 2;
  }
  .col-xl-3 {
    grid-column: span 3;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1400px) {
  .col-xxl-1 {
    grid-column: span 1;
  }
  .col-xxl-2 {
    grid-column: span 2;
  }
  .col-xxl-3 {
    grid-column: span 3;
  }
  .col-xxl-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1600px) {
  .col-xxxl-1 {
    grid-column: span 1;
  }
  .col-xxxl-2 {
    grid-column: span 2;
  }
  .col-xxxl-3 {
    grid-column: span 3;
  }
  .col-xxxl-4 {
    grid-column: span 4;
  }
}
/* column start - .col-(breakpoint)-start-number */
@media screen and (min-width: 576px) {
  .b-sm-start-1 {
    grid-column-start: 1;
  }
  .b-sm-start-2 {
    grid-column-start: 2;
  }
  .b-sm-start-3 {
    grid-column-start: 3;
  }
  .b-sm-start-4 {
    grid-column-start: 4;
  }
}
@media screen and (min-width: 768px) {
  .b-md-start-1 {
    grid-column-start: 1;
  }
  .b-md-start-2 {
    grid-column-start: 2;
  }
  .b-md-start-3 {
    grid-column-start: 3;
  }
  .b-md-start-4 {
    grid-column-start: 4;
  }
}
@media screen and (min-width: 992px) {
  .b-lg-start-1 {
    grid-column-start: 1;
  }
  .b-lg-start-2 {
    grid-column-start: 2;
  }
  .b-lg-start-3 {
    grid-column-start: 3;
  }
  .b-lg-start-4 {
    grid-column-start: 4;
  }
}
@media screen and (min-width: 1200px) {
  .b-xl-start-1 {
    grid-column-start: 1;
  }
  .b-xl-start-2 {
    grid-column-start: 2;
  }
  .b-xl-start-3 {
    grid-column-start: 3;
  }
  .b-xl-start-4 {
    grid-column-start: 4;
  }
}
@media screen and (min-width: 1400px) {
  .b-xxl-start-1 {
    grid-column-start: 1;
  }
  .b-xxl-start-2 {
    grid-column-start: 2;
  }
  .b-xxl-start-3 {
    grid-column-start: 3;
  }
  .b-xxl-start-4 {
    grid-column-start: 4;
  }
}
@media screen and (min-width: 1600px) {
  .b-xxxl-start-1 {
    grid-column-start: 1;
  }
  .b-xxxl-start-2 {
    grid-column-start: 2;
  }
  .b-xxxl-start-3 {
    grid-column-start: 3;
  }
  .b-xxxl-start-4 {
    grid-column-start: 4;
  }
}
/* column end - .col-(breakpoint)-start-number */
/* Order */
/* column order - .order-(breakpoint)-number */
@media screen and (min-width: 576px) {
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
}
@media screen and (min-width: 768px) {
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
}
@media screen and (min-width: 992px) {
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
}
@media screen and (min-width: 1200px) {
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
}
@media screen and (min-width: 1400px) {
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
}
@media screen and (min-width: 1600px) {
  .order-xxxl-0 {
    order: 0;
  }
  .order-xxxl-1 {
    order: 1;
  }
  .order-xxxl-2 {
    order: 2;
  }
  .order-xxxl-3 {
    order: 3;
  }
  .order-xxxl-4 {
    order: 4;
  }
  .order-xxxl-5 {
    order: 5;
  }
}
/* Header */
.nav-wrap {
  display: block;
  position: relative;
}
.nav-wrap > .container,
.nav-wrap > .nav-container {
  display: none;
}
@media screen and (min-width: 1200px) {
  .nav-wrap > .container {
    display: grid;
  }
}
@media screen and (min-width: 1200px) {
  .nav-wrap > .nav-container {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(100px, 250px) 2fr 100px;
    padding: 2rem 0;
    align-items: center;
  }
}
@media screen and (min-width: 1400px) {
  .nav-wrap {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.hero .mobile-nav-bar {
  background: transparent;
}

.mobile-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-dark);
  padding: 16px 0;
}
@media screen and (min-width: 1200px) {
  .mobile-nav-bar {
    display: none;
  }
}

.logo {
  width: auto;
  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: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 576px) {
  .mobile-menu-panel {
    width: min(420px, 100vw);
  }
}
@media screen and (min-width: 768px) {
  .mobile-menu-panel {
    padding: 16px 24px;
  }
}
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mobile-menu-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 0 0;
}
.mobile-menu-links a {
  display: block;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  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%;
  padding: 10px 22px;
  /*margin-top: auto;*/
}
.mobile-menu [hidden] {
  display: none;
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}

.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: 42px;
  height: 42px;
  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: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Main content */
.shell {
  width: calc(100% - 32px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .shell {
    width: min(1600px, 100% - 48px);
  }
}

.page-title h1 {
  margin-bottom: 0;
}

.text-w600 {
  max-width: 600px;
}

.default-section {
  background-color: var(--bg-mid);
  padding-bottom: var(--space-section);
}

.inline-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* Footer */
.footer-inner {
  display: none;
}
@media screen and (min-width: 1200px) {
  .footer-inner {
    display: grid;
    grid-template-columns: minmax(100px, 250px) 2fr 100px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .footer-inner {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
.footer-inner .pill-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-inner .pill-links {
  flex-wrap: nowrap;
}
.footer-inner .dropdown-link {
  margin-top: -20px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
}
.footer-inner .navbar-nav .dropdown > .dropdown-menu {
  top: auto;
  bottom: 100%;
  transform-origin: bottom center;
}
.footer-inner .pill-links a,
.footer-inner .pill-btn {
  white-space: nowrap;
}

.subfooter {
  padding: 16px 0;
  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: column-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .subfooter-inner {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #606566;
  text-decoration: underline;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .footer-links {
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .footer-links {
    gap: 20px;
  }
}
.footer-links a {
  white-space: nowrap;
}

/* Navigation */
@media screen and (min-width: 1200px) {
  .page-navbar .nav-wrap {
    padding: 2rem 0;
    align-items: center;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pill-nav {
  position: relative;
  border-radius: var(--radius-pill);
}
.pill-nav a {
  font-weight: 500;
}
.pill-nav a:hover {
  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%;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.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);
}

.pill-nav {
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 5px;
  gap: 5px;
}
.navbar-nav > li {
  list-style-type: none;
  margin-bottom: unset;
}
.navbar-nav > li > a {
  border-radius: var(--radius-pill);
  display: inline-block;
  padding: 5px 15px;
}
.navbar-nav > li > a.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}
.navbar-nav > li > a.active:hover {
  color: var(--accent);
}
.navbar-nav .dropdown {
  position: relative;
}
.navbar-nav .dropdown > a .i-arrow-down {
  transition: transform 180ms ease;
  transform-origin: center;
}
.navbar-nav .dropdown > .dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  padding: 0.45rem;
  border-radius: var(--radius-xl);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.995);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.navbar-nav .dropdown.show > .dropdown-menu, .navbar-nav .dropdown:hover > .dropdown-menu, .navbar-nav .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.navbar-nav .dropdown.show > a .i-arrow-down, .navbar-nav .dropdown:hover > a .i-arrow-down, .navbar-nav .dropdown:focus-within > a .i-arrow-down {
  transform: rotate(180deg);
}
.navbar-nav .dropdown .dropdown-menu li {
  list-style-type: none;
  margin: unset;
}
.navbar-nav .dropdown .dropdown-menu .dropdown-item {
  border-radius: calc(var(--radius-pill) - 2px);
  color: var(--text-soft);
  display: block;
  padding: 0.65rem 1rem;
}
.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown .dropdown-menu .dropdown-item.active {
  color: var(--accent);
  background-color: rgba(208, 152, 79, 0.12);
}

.nav-special a {
  background-color: var(--accent);
}

.nav-special a:hover {
  background-color: var(--accent-hover);
  color: white;
}

/* Forms */
form .form-ant {
  display: none;
}

.glass-form {
  position: relative;
  width: 100%;
  max-width: none;
  border-radius: var(--radius-xl);
}
.glass-form .form-container {
  padding: 20px;
}
@media screen and (min-width: 576px) {
  .glass-form .form-container {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .glass-form .form-container {
    padding: 50px;
  }
}
.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;
}
@media screen and (min-width: 576px) {
  .glass-form {
    width: 439px;
  }
}

.form-container {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: var(--blur);
}

.glass-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  font: inherit;
  outline: none;
  padding: 10px 0;
}
.glass-form input::placeholder {
  color: var(--white);
  opacity: 0.8;
}
.glass-form input:focus {
  border-color: #fff;
}
.glass-form input:focus::placeholder {
  opacity: 1;
}

.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 2.25rem 10px 0;
  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);
}

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

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 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: var(--radius-inputs);
  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(167, 175, 177, 0.5);
}

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

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

  &:hover {
    background: var(--accent-hover);
  }
}*/
.contact-form .cta-dot {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .contact-image {
    min-height: 745px;
  }
}

/* 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 - colors set with global variables */
#cc-main .cm__desc,
#cc-main .pm__section-desc-wrapper {
  font-size: 14px;
}

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

.pill-btn {
  padding: 6px 12px;
  color: white;
  background: var(--accent);
}
.pill-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.pill-btn-secondary {
  padding: 6px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
}
.pill-btn-secondary: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);
}
.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-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-mid);
  display: grid;
  place-items: center;
}
.cta-dot img {
  width: 13px;
  height: 13px;
}

/* Cards */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
}
.card-img-top {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.card-content {
  padding: 20px;
}
.card-content h3 {
  text-transform: uppercase;
}
.card-footer {
  margin-top: auto;
  padding: 20px;
}
.card-footer span {
  font-size: 14px;
  color: var(--muted);
}

/* 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);
}

/* Tables */
/* Thumbnails */
.reference-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
}
.reference-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  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;
  mask-repeat: no-repeat;
  mask-composite: intersect;
  mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 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);
  min-height: 470px;
}
.service-card.featured::after {
  border-color: 3px solid var(--white);
  mix-blend-mode: normal;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-repeat: no-repeat;
  mask-composite: intersect;
  mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.service-card .copy {
  position: absolute;
  top: 60%;
  left: 20px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .service-card .copy {
    left: 30px;
    right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .service-card .copy {
    left: 50px;
    right: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .service-card .copy {
    left: 40px;
    right: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .service-card .copy {
    top: 65%;
    left: 50px;
    right: 50px;
  }
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .service-card::after {
    border-color: transparent;
  }
}
.service-card:hover::after {
  border-color: rgb(255, 255, 255);
  transition: all 0.2s ease;
}

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

.services-shell {
  position: relative;
}

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

.service-arrow {
  width: 24px;
  height: 24px;
  padding: 6px 8px;
  border: 0;
  background: transparent center;
  background-size: contain;
  color: #c7c7c7;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
.service-arrow:hover {
  color: #efefef;
}
.service-arrow:first-child {
  margin-left: -8px;
  background-image: url("../img/icons/chevron-left.svg");
}
@media screen and (min-width: 1670px) {
  .service-arrow:first-child {
    margin-left: -32px;
  }
}
.service-arrow:last-child {
  margin-right: -8px;
  background-image: url("../img/icons/chevron-right.svg");
}
@media screen and (min-width: 1670px) {
  .service-arrow:last-child {
    margin-right: -32px;
  }
}

.services-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-template-columns: none;
  gap: var(--gap-20);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8%;
  padding-inline: 8%;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-slider .service-card {
  /*min-height: 400px;*/
  scroll-snap-align: center;
}
@media screen and (min-width: 576px) {
  .services-slider .service-card {
    scroll-snap-align: start;
  }
}
.services-slider::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .services-slider {
    grid-auto-columns: calc((100% - 20px) / 2);
    scroll-padding-inline: 0;
    padding-inline: 0;
  }
}
@media screen and (min-width: 992px) {
  .services-slider {
    grid-auto-columns: calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1400px) {
  .services-slider {
    grid-auto-columns: calc((100% - 60px) / 4);
  }
}

/*@media (max-width: 760px) {

  .services-slider .service-card::after {
    border-color: rgba(255, 255, 255, 0.58);
    mix-blend-mode: overlay;
  }
}*/
/* 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;
  }
}

/* Homepage styles */
.hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.1) 100%), url("../img/hero.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 650px;
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.1) 100%), url("../img/hero.webp");
    min-height: 600px;
    background-position: right;
  }
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 650px;
  padding: 24px 0;
}
.hero-content .hero-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
.hero-content h1 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hero-content {
    align-items: center;
    min-height: 600px;
    padding: 0;
  }
}

.about h1 {
  margin-bottom: 28px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .about h1 {
    font-size: 32px;
  }
}
.about .hours {
  color: var(--white);
}
.about .hours span {
  color: var(--accent);
}

.features {
  margin-top: 50px;
}
.features article {
  min-height: 160px;
  border-radius: var(--radius);
  background: var(--bg-dark);
  display: grid;
  place-items: center;
  align-content: baseline;
  text-align: center;
  padding: 26px 12px;
  transition: background-color 0.2s ease;
}
.features article:hover {
  background: #000;
}
@media screen and (min-width: 768px) {
  .features article {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .features article {
    padding: 30px 30px;
  }
}
@media screen and (min-width: 1400px) {
  .features article {
    padding: 30px 60px;
  }
}
@media screen and (min-width: 1600px) {
  .features article {
    padding: 30px 80px;
  }
}
.features img {
  width: auto;
  height: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .features img {
    height: 50px;
  }
}
.features h3 {
  margin: 0 0 12px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .features h3 {
    font-size: 20px;
  }
}
.features p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
  color: var(--muted);
}
@media screen and (min-width: 768px) {
  .features p {
    font-size: 14px;
  }
}

.news-grid {
  display: grid;
  gap: var(--gap-20);
}
@media screen and (min-width: 576px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Services page */
.page-services .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/services/hero-small.webp");
}
@media screen and (min-width: 768px) {
  .page-services .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/services/hero.webp");
  }
}

.page-hero-grid {
  display: grid;
  gap: var(--gap-20);
}
.page-hero-grid .page-main-image {
  width: 100%;
  display: none;
}
.page-hero-grid .page-main-image.order-3 {
  display: block;
  grid-column: 1/-1;
}
@media screen and (min-width: 992px) {
  .page-hero-grid .page-main-image {
    display: block;
    margin-top: 20px;
  }
  .page-hero-grid .page-main-image.order-3 {
    display: none;
  }
}
.page-hero-grid > aside {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.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-benefits {
  color: #2a1e2a;
}

.page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-20);
}
@media screen and (min-width: 768px) {
  .page-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .page-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-benefit {
  border-radius: var(--radius);
  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;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.page-benefit h3 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-benefit h3 {
    font-size: 20px;
  }
}
.page-benefit p {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  max-width: 290px;
}
@media screen and (min-width: 768px) {
  .page-benefit p {
    font-size: 16px;
  }
}

.service-footer-img {
  height: 400px !important;
}
.service-footer .social-nav {
  margin-top: 30px;
  justify-content: flex-start;
}

.page-services .service-footer {
  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;
}

.page-phone {
  margin-top: 20px;
  font-weight: 700;
}

/* References page */
.page-references-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-20);
}
@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 page */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-20);
}
@media screen and (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.faq-grid article {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.faq-grid article h2 {
  margin: 0 0 20px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .faq-grid article h2 {
    font-size: 20px;
  }
}
.faq-grid article p {
  margin: 0;
  color: var(--text-soft);
}
.faq-grid article .pill-btn {
  margin-top: 10px;
  align-self: flex-end;
}

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

/* Career page styles */
.page-career .services {
  background: var(--bg-mid);
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-20);
}
.career-grid h1 {
  margin: 0 0 20px;
  font-size: 28px;
  text-transform: uppercase;
}
.career-grid .career-empty {
  display: none;
}
.career-grid .career-image {
  justify-self: center;
}
@media screen and (min-width: 1200px) {
  .career-grid .career-image {
    justify-self: start;
  }
}
@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: 3;
  }
}
@media screen and (min-width: 1600px) {
  .career-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .career-grid .career-empty {
    display: block;
  }
  .career-grid .career-image {
    grid-column: 4;
  }
}

.career-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius);
  padding: 20px;
}
.career-card-content {
  padding: 20px 20px 30px 20px;
}
.career-card ul {
  margin: 0;
  padding-left: 10px;
}
.career-card ul li {
  margin-bottom: 30px;
}
.career-card ul li:last-child {
  margin-bottom: 0;
}

.career-card-top {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius);
  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-card-bottom {
  margin-top: auto;
}

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

/* Contacts page styles */
.page-contacts .services {
  background: var(--bg-mid);
}

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

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-20);
}
.contacts-grid .contact-form {
  margin: 0;
  height: 100%;
}
.contacts-grid figure {
  margin: 0;
  max-height: 700px;
  border-radius: var(--radius);
  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;
  }
}

/* Error page */
.error {
  display: flex;
  align-items: center;
  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;
  min-height: 75vh;
}
.error-body {
  position: relative;
  display: flex;
  justify-content: center;
}
.error-content {
  position: relative;
}
.error-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid rgb(255, 255, 255);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.error-inner {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: var(--blur);
  padding: var(--space-section-mobile);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error-inner {
    padding: var(--space-section);
  }
}
.error-inner h1 {
  font-size: 100px;
  margin-bottom: 20px;
}
.error-inner .pill-btn {
  display: inline-block;
  margin-top: 4px;
}

/* Short-term git untracked changes - sample file - copy(NOT rename!!!) it without _sample */