@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "neulis-neue";
  src: url("../fonts/neulis-neue.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --neulis-neue-font: "neulis-neue", sans-serif;
  --geist-font:
    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* Colors */
  --white: #fff;
  --black: #000;
  /* Text colors */
  --text-primary: #000000;
  --text-primary-hover: #0e2a19;
  --text-white: #ffffff;
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-accent-500: #35a34f;
  --bg-neutral-300: #d1d1d1;
  --bg-neutral-500: #b3b3b3;
  --bg-black: #000000;
  --z-index-behind: -2;
  --z-index-default: 0;
  --z-index-above: 2;
  --z-index-dropdown: 100;
  --z-index-modal: 1000;

  /* Neokov brand colors */
  --neokov-green-dark: #17422e;
  --neokov-green-darker: #0e2a19;
  --neokov-green-mid: #17422c;
  --neokov-green-bright: #35a34f;
  --neokov-green-bright-light: #4cbf66;
  --neokov-light-bg: #f4fff7;
  --neokov-text-muted: #c9d6cf;
  --radius: 4px;

  /* Header layout */
  --site-header-height: 125px;
  --site-header-offset: calc(var(--site-header-height) + 1px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}
section[id],
#nebezpecne-odpady {
  scroll-margin-top: var(--site-header-offset);
}
body {
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
}
:is(h1, h2, h3, h4) {
  line-height: 1.2;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:is(:link, :visited) {
  color: var(--text-primary);
  transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-block-end: solid 1px;
}
a:hover {
  color: var(--text-primary-hover);
  border-block-end-color: transparent;
}
:is(a, button, [role="button"]):focus-visible {
  outline: 2px dashed var(--text-primary-hover);
  outline-offset: 4px;
}
p {
  text-wrap: pretty;
  line-height: 1.6;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  inline-size: 100%;
  overflow-x: clip;
}
.home-page-content {
  font-family: var(--geist-font);
}
@media screen and (min-width: 1921px) {
  .container-fluid-custom {
    max-inline-size: 1440px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
  .container-fluid-custom {
    padding-inline: max(1rem, 8%);
    max-inline-size: none;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid-custom {
    padding-inline: 1rem;
    max-inline-size: none;
  }
}
a.skip-link {
  position: absolute;
  inset-block-start: -3.333rem;
  inset-inline-start: 50%;
  background: var(--text-primary-hover);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: inset-block-start 0.3s;
}
a.skip-link:focus {
  inset-block-start: 1.667rem;
}
.section-py {
  padding-block: clamp(3.333rem, calc(2.444rem + 5vw), 7.778rem);
}
.img-object-cover {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.pos-relative-mobile {
  position: absolute;
}
.row-gutters-lg {
  --gutter-lg: clamp(1rem, calc(0.9rem + 0.562vw), 1.5rem);
  margin-inline: calc(-1 * var(--gutter-lg));
}
.row-gutters-lg > [class^="col-"],
.row-gutters-lg > [class*=" col-"] {
  padding-inline: var(--gutter-lg);
}
.row-gutters-sm {
  --gutter-sm: clamp(0.556rem, calc(0.467rem + 0.5vw), 1rem);
  margin-inline: calc(-1 * var(--gutter-sm));
}
.row-gutters-sm > [class^="col-"],
.row-gutters-sm > [class*=" col-"] {
  padding-inline: var(--gutter-sm);
}
.section-bg-accent {
  background-color: var(--bg-accent-500);
}
.section-bg-black {
  background-color: var(--bg-black);
}
.section-bg-neutral-300 {
  background-color: var(--bg-neutral-300);
}
.section-bg-neutral-500 {
  background-color: var(--bg-neutral-500);
}
.section-bg-img {
  inset-block-start: 0;
  inset-inline: 15px;
  inline-size: calc(100% - 30px);
  block-size: 100%;
}

.title-box {
  position: relative;
}
.text-white .title-box {
  color: var(--white);
}
.title-box > * {
  position: relative;
  text-wrap: balance;
  line-height: 1.2em;
}
.title-box :is(h1, h2) {
  font-size: clamp(1.667rem, calc(1.222rem + 2.5vw), 3.889rem);
}
.title-box small {
  font-size: inherit;
  color: inherit;
}

/* Header ............................................................... */

.site-header-sentinel {
  block-size: 1px;
  inline-size: 100%;
  pointer-events: none;
  background: var(--neokov-green-dark);
}
.site-header {
  position: sticky;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--z-index-dropdown);
  background-color: transparent;
  border-bottom: 1px solid rgb(255, 255, 255);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-sticky {
  background-color: var(--neokov-green-dark);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.site-header .custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-block-size: 3.7rem;
  gap: 1.5rem;
  height: var(--site-header-height);
  transition: height 0.25s ease;
}
.site-header.is-sticky .custom-container {
  height: 90px;
}
a.site-header-logo {
  display: block;
  flex: 0 0 auto;
  border-block-end: none;
}
.site-header-logo img {
  inline-size: auto;
  display: block;
  max-height: 65px;
  width: auto;
  transition: max-height 0.25s ease;
}

.site-header.is-sticky .site-header-logo img {
  max-height: 50px;
}
.main-nav {
  flex: 1 1 auto;
  min-inline-size: 0;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.main-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: underline;
  border: 0;
}
.main-nav a:hover, .main-nav a.hi {
  color: var(--neokov-green-bright-light);
}
.main-nav li.is-active a {
  border-block-end-color: currentColor;
}
a.site-header-phone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border-block-end: none;
}
a.site-header-phone span {
  text-decoration: underline;
}
.site-header-phone .icon-circle {
  font-size: 22px;
  color: var(--neokov-green-bright);
}

.site-header-phone:hover {
  color: var(--neokov-green-bright-light);
}
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  inline-size: 2.75rem;
  block-size: 2.75rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: calc(var(--z-index-dropdown) + 2);
}
.nav-toggle span {
  display: block;
  inline-size: 1.25rem;
  block-size: 2px;
  background-color: var(--white);
  margin: 0;
  flex-shrink: 0;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.main-nav-footer {
  display: none;
}

.custom-container {
  max-width: 1721px;
  margin: 0 auto;
}

/* Hero ............................................................... */

.hero {
  position: relative;
  background-color: var(--neokov-green-dark);
  overflow: hidden;
  isolation: isolate;
  margin-block-start: calc(-1 * var(--site-header-offset));
  padding-block-start: var(--site-header-offset);
  padding-bottom: 75px;
  min-height: 100vh;
}

.hero-in {
  min-height: 60vh;
}

.hero-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--neokov-green-bright);
  clip-path: polygon(0 0, 36% 0, 100% 100%, 0% 100%);
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 165px;
  max-width: 495px;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
}
.hero-content {
  color: var(--white);
  padding-top: 106px;
  max-width: 726px;
}
.hero-heading {
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  font-size: 62px;
  font-weight: 600;
  font-family: var(--neulis-neue-font);
}
.hero-content p {
  font-size: 18px;
  margin-top: 104px;
  line-height: 28px;
  padding-right: 85px;
  margin-left: auto;
  max-width: 440px;
}
.hero-content p a {
  color: var(--neokov-green-bright);
}
.hero-heading .is-accent {
  display: block;
  color: var(--neokov-green-bright);
}
.hero-heading span {
  display: block;
}
.hero a.btn-cta {
  margin: 0 auto;
}
a.btn-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  background-color: var(--neokov-green-bright);
  color: var(--white);
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  position: relative;
  width: max-content;
  padding-left: 40px;
  padding-right: 60px;
  height: 67px;
  z-index: var(--z-index-above);
  border: 0;
}
a.btn-cta span {
  text-decoration: underline;
  white-space: nowrap;
}
.btn-cta img {
  height: 16px;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
.btn-cta:hover {
  background-color: var(--neokov-green-bright-light);
  color: var(--white);
}
.btn-cta.btn-shadow {
  box-shadow: 0 14px 92px 22px rgba(53, 163, 79, 0.34);
  transition: all 0.2s ease;
}
.btn-cta.btn-shadow:hover {
  box-shadow: 0 16px 96px 24px rgba(53, 163, 79, 0.4);
}
.hero-media {
  display: block;
  height: calc(100% + 60px);
  max-width: 860px;
  width: 100%;
  background-color: transparent;
  transform: translateY(-30px);
  position: absolute;
  right: 90px;
  top: 24px;
  bottom: -30px;
  overflow: hidden;
  clip-path: polygon(0 0, 53% 0, 100% 20%, 100% 100%, 77% 100%, 0 68%);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 42, 25, 0.85) 0%,
    rgba(14, 42, 25, 0.4) 40%,
    rgba(14, 42, 25, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
  max-width: 785px;
  max-height: 172px;
  clip-path: polygon(0 0, 60% 0, 100% 83%, 100% 100%, 0 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Gallery ............................................................... */
.gallery {
  padding-top: 110px;
  padding-bottom: 180px;
  background: var(--neokov-light-bg);
}
.gallery-top {
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.header-texts h2 {
  font-size: 52px;
  font-family: var(--neulis-neue-font);
  font-weight: 600;
  text-transform: uppercase;
}
.header-texts p {
  font-size: 18px;
  max-width: 400px;
}
.header-line {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--neokov-green-bright);
  margin-bottom: 150px;
  margin-top: 35px;
}
a.btn-cta-2 {
  margin: 0;
  background-color: var(--neokov-green-dark);
}
.header-top-left a.btn-cta-2 {
  margin-top: 65px;
}

.gallery-bottom-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 70px;
  grid-row-gap: 65px;
}
.gallery-card {
  position: relative;
  height: 525px;
  padding: 45px;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%, 0 29%);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-card-icon {
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 4;
}
.gallery-card-icon img {
  height: 100%;
  width: 100%;
}
.gallery-card .gallery-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--neokov-green-dark);
  opacity: 54%;
  transition:
    opacity 0.4s ease-out,
    background-color 0.4s ease-out;
  will-change: opacity, background-color;
}
.gallery-card:hover .gallery-overlay {
  opacity: 70%;
  background: var(--neokov-green-bright);
}
.gallery-card-contents {
  position: relative;
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.gallery-card h3 {
  font-size: 36px;
  font-weight: 600;
  text-decoration: underline;
}
.gallery-card p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-top: 20px;
}
/* Process ............................................................... */

.process {
  padding-top: 150px;
  padding-bottom: 125px;
  background-color: #e5f7ea;
}
.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-bottom: 100px;
}
.process-top-left p {
  font-size: 18px;
  max-width: 420px;
  margin: 0;
}
.process-top-right {
  flex: 1 1 auto;
  text-align: right;
}
.process-top-right h2 {
  font-size: 52px;
  font-family: var(--neulis-neue-font);
  text-transform: uppercase;
  font-weight: 600;
  max-width: 620px;
  margin-left: auto;
  line-height: 1.1;
}
.process-steps-wrapper {
  position: relative;
}
.process-steps-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-steps-wrapper ul li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px 280px 36px 24px;
  border-top: 1px solid rgba(23, 66, 46, 0.15);
  transition: background-color 0.3s ease;
}
.process-steps-wrapper ul li:last-child {
  border-bottom: 1px solid rgba(23, 66, 46, 0.15);
}
.process-steps-wrapper ul li:hover {
  background-color: #d4f0dd;
}
.process-step-num {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
}
.process-step-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 4px;
}
.process-step-content p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
.process-hover-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: var(--z-index-above);
}
.process-hover-img {
  position: absolute;
  right: 40px;
  top: 0;
  width: 215px;
  height: auto;
  min-height: 285px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity, top;
}

/* Experience ............................................................... */

.experience {
  padding-top: 125px;
  padding-bottom: 240px;
  background: var(--neokov-light-bg);
  position: relative;
}
.experience-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.experience-media {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 868px;
  clip-path: polygon(0 0, 53% 0, 100% 20%, 100% 100%, 77% 100%, 0 68%);
}
.experience-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.experience-stat {
  display: flex;
  gap: 30px;
  margin-bottom: 48px;
}
.experience-stat-num {
  font-size: 200px;
  font-weight: 600;
  line-height: 0.85;
  font-family: var(--neulis-neue-font);
}
.experience-stat-label {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 0.02em;
  padding-bottom: 14px;
}
.experience-content h2 {
  font-size: 60px;
  font-family: var(--neulis-neue-font);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 510px;
  margin-bottom: 40px;
}
.experience-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 550px;
  margin: 0 0 48px;
}
.experience-content .btn-cta-2 {
  margin: 0;
}

/* Locations ............................................................... */

.locations {
  padding-top: 120px;
  padding-bottom: 125px;
  background-color: #e5f7ea;
}
.locations-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 100px;
}

.locations-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.location-card {
  position: relative;
  padding: 50px 32px 90px;
  clip-path: polygon(100% 0, 100% 70%, 60% 100%, 0 100%, 0 0);
}
.location-card-dark {
  background-color: var(--neokov-green-dark);
  color: var(--white);
}
.location-card-mid {
  background-color: var(--neokov-green-bright);
  color: var(--white);
}
.location-card-light {
  background-color: var(--white);
  color: var(--text-primary);
}
.location-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 52px;
  line-height: 1.3;
}
.location-card-details {
  margin: 0 0 25px;
}
.location-card-info {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 17px;
}
.location-card-details dt {
  font-weight: 600;
  margin: 0;
}
.location-card-details a {
  margin: 0;
}
.location-card-dark a,
.location-card-mid a {
  color: inherit;
  border-block-end-color: currentColor;
}
.location-card-light a {
  border-block-end-color: currentColor;
}

.location-card-mid a:hover {
  border-block-end-color: var(--text-primary);
  color: var(--text-primary);
}

.location-card-light a:hover,
.location-card-dark a:hover {
  border-block-end-color: var(--neokov-green-bright);
  color: var(--neokov-green-bright);
}
.location-card-hours {
  margin-bottom: 40px;
}
.location-card-hours h4 {
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 17px;
}
.location-card-hours p {
  margin: 0 0 3px;
  font-size: 17px;
  line-height: 1.5;
}
.location-card-link {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
  border-block-end: none;
  align-self: flex-start;
}
.location-card-link:hover {
  color: inherit;
  opacity: 0.85;
}

/* CTA Banner ............................................................... */

.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  background-image: url("../images/cta-bg.png");
  padding-top: 115px;
  padding-bottom: 95px;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner-overlay {
  background: var(--neokov-green-dark);
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: var(--z-index-above);
}
.cta-banner-content {
  color: var(--white);
}
.cta-banner-content h2 {
  font-size: 48px;
  font-family: var(--neulis-neue-font);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 50px;
  color: var(--white);
}
.cta-banner-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 450px;
  margin: 0;
}
a.cta-banner-btn {
  margin: 0;
  margin-left: auto;
  transition: all 0.2s ease !important;
}

/* Footer ............................................................... */

.site-footer {
  background-color: var(--neokov-light-bg);
}
.site-footer a:hover, .site-footer a.hi {
  color: var(--neokov-green-bright);
  border-color: var(--neokov-green-bright);
}
.site-footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 60px;
  padding: 80px 0;
}
a.site-footer-logo {
  display: inline-block;
  border-block-end: none;
  margin-bottom: 32px;
}
.site-footer-logo img {
  display: block;
  max-height: 60px;
  width: auto;
}
.site-footer-brand p {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--neulis-neue-font);
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}
.site-footer-block {
  margin-bottom: 30px;
}
.site-footer-block p {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.site-footer-block a {
  font-size: 16px;
  font-weight: 400;
}
.site-footer-block.site-footer-top-block a {
  font-weight: 600;
  font-size: 18px;
}
.site-footer-top-block {
  margin-bottom: 40px;
}
.site-footer-contact .site-footer-block:last-child .site-footer-value {
  margin-bottom: 0;
}

.site-footer-nav li {
  margin-bottom: 12px;
}
.site-footer-nav a {
  font-size: 16px;
  font-weight: 400;
  border-block-end-color: currentColor;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid rgba(23, 66, 46, 0.15);
  font-size: 16px;
}
.site-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer-bottom p {
  margin: 0;
}
.site-footer-bottom a {
  border-block-end-color: currentColor;
}
.site-footer-bottom span {
  margin-inline: 8px;
  opacity: 0.5;
}

/* Slider ............................................................... */

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
  .custom-container {
    max-width: 1721px;
  }
}
@media screen and (max-width: 1780px) {
  html {
    font-size: 16px;
  }
  .experience-media {
    max-width: 750px;
  }
  .hero-content p {
    padding-right: 95px;
  }
  .custom-container {
    max-width: 100%;
    padding: 0 40px;
  }
  .hero-media {
    right: 28px;
  }
}
@media screen and (max-width: 1560px) {
  .hero-media {
    max-width: 675px;
    right: 40px;
  }
  .site-header-logo img,
  .site-header.is-sticky .site-header-logo img {
    max-height: 54px;
  }
  .main-nav ul {
    gap: 30px;
  }
  .main-nav a {
    font-size: 16px;
  }
  .hero-content p {
    padding-right: 145px;
  }
  .experience-media {
    max-width: 668px;
  }
  .experience {
    padding-bottom: 125px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  :root {
    --site-header-height: 90px;
  }
  .site-header-logo img,
  .site-header.is-sticky .site-header-logo img {
    max-height: 40px;
  }
  .main-nav ul {
    gap: 24px;
  }
  .main-nav a {
    font-size: 15px;
  }

  .hero-content p {
    padding-right: 135px;
    max-width: 500px;
  }
  .experience-media {
    max-width: 590px;
  }
  a.site-header-phone {
    font-size: 16px;
    gap: 10px;
  }
  .site-header-phone .icon-circle {
    font-size: 18px;
  }
  .gallery-top {
    gap: 40px;
    padding-bottom: 80px;
  }
  .hero-heading {
    font-size: 52px;
  }
  .hero-content p {
    padding-right: 135px;
    max-width: 500px;
    font-size: 16px;
    margin-top: 60px;
    line-height: 26px;
    margin-left: 20px;
  }
  .hero-corner {
    max-height: 105px;
    max-width: 405px;
  }

  a.btn-cta {
    font-size: 16px;
    height: 56px;
    padding-left: 30px;
    padding-right: 50px;
  }
  .btn-cta img {
    height: 14px;
  }
  .gallery {
    padding: 100px 0;
  }
  .process {
    padding: 100px 0;
  }
  .experience-stat-num {
    font-size: 160px;
  }
  .experience-stat {
    gap: 20px;
  }
  .experience-stat-label {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
  }
  .experience {
    padding: 100px 0;
  }
  .locations {
    padding: 100px 0;
  }
}

@media screen and (max-width: 1199px) {
  .locations-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .pos-relative-mobile {
    position: relative;
  }
  .section-bg-img {
    inset-inline: 0;
    inline-size: 100%;
    block-size: auto;
  }
  .hero {
    min-height: unset;
  }
  .site-header {
    background-color: var(--neokov-green-dark);
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: calc(var(--z-index-dropdown) - 1);
  }
  .main-nav {
    position: fixed;
    inset-inline: 0;
    inset-block-start: var(--site-header-offset);
    inset-block-end: 0;
    background-color: var(--neokov-green-dark);
    flex-direction: column;
    padding: 0;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s;
    overflow-y: auto;
    z-index: calc(var(--z-index-dropdown) + 1);
    -webkit-overflow-scrolling: touch;
    padding: 0 80px;
    block-size: calc(100dvh - var(--site-header-offset));
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    inline-size: 100%;
  }
  .main-nav li {
    border-block-end: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border: 0;
    transition:
      background-color 0.2s ease,
      color 0.2s ease;
  }
  .main-nav a:hover, .main-nav a.hi {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--neokov-green-bright-light);
  }
  .main-nav-footer {
    display: block;
    margin-block-start: auto;
    padding: 1.5rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    inline-size: 100%;
    padding: 0.95rem 1.25rem;
    background-color: var(--neokov-green-bright);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 0;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .main-nav-phone:hover {
    background-color: var(--neokov-green-bright-light);
    color: var(--white);
  }
  .main-nav-phone .fa {
    font-size: 1.25rem;
  }
  .nav-toggle {
    display: flex;
  }
  a.site-header-phone {
    display: none;
  }
  .hero-content {
    max-width: 480px;
    padding-top: 80px;
  }
  .hero-heading {
    white-space: normal;
    font-size: 44px;
  }
  .hero-content p {
    padding-right: 20px;
    margin-top: 40px;
    max-width: 100%;
  }
  .hero-media {
    max-width: 420px;
    right: 0;
  }
  .hero-media::before {
    clip-path: polygon(0 0, 57% 0, 100% 48%, 100% 100%, 0 100%);
  }
  .header-texts h2 {
    font-size: 38px;
  }

  .header-texts p {
    font-size: 16px;
  }
  .gallery-card h3 {
    font-size: 30px;
  }
  .gallery-card p {
    font-size: 16px;
    line-height: 22px;
  }
  .process-step-content h3 {
    font-size: 22px;
  }
  .process-step-content p {
    font-size: 16px;
  }
  .experience-content h2 {
    font-size: 44px;
    max-width: 370px;
  }
  .experience-media {
    max-width: 45%;
  }
  .experience-content p {
    font-size: 16px;
    margin: 0 0 36px;
    max-width: 480px;
  }
  .header-line {
    margin-bottom: 80px;
  }
  .cta-banner-content h2 {
    font-size: 36px;
  }
  .cta-banner-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .hero-corner {
    display: none;
  }
  .hero-inner {
    min-block-size: auto;
    padding-block-end: 2rem;
  }
  .hero-content {
    block-size: auto;
  }
  .hero-heading {
    white-space: normal;
    margin: 0 0 1.2rem;
  }
  .hero-text {
    margin: 0 0 1.5rem;
  }

  .process-top {
    flex-direction: column-reverse;
    gap: 40px;
    padding-bottom: 60px;
  }
  .process-top-right {
    text-align: left;
  }
  .process-top-right h2 {
    max-width: none;
    margin-left: 0;
    font-size: 40px;
  }
  .process-steps-wrapper ul {
    max-width: 100%;
  }
  .process-hover-media {
    display: none;
  }

  .experience-inner {
    flex-direction: column;
    gap: 60px;
    padding-top: 180px;
  }
  .experience-stat {
    gap: 20px;
    justify-content: flex-end;
    padding-right: 20%;
  }
  .experience-stat-num {
    font-size: 80px;
  }
  .experience-content h2 {
    font-size: 40px;
    max-width: none;
  }
  .experience-content p {
    max-width: none;
  }

  .locations-top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 60px;
  }

  .locations-cards {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: none;
    max-width: 70%;
  }

  .cta-banner-content h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .cta-banner-btn {
    align-self: flex-start;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0;
  }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-media {
    max-width: 50%;
    right: 0;
  }
  .hero-media::before {
    clip-path: none;
    max-width: none;
    max-height: none;
  }
  .hero-content p {
    margin-left: 0;
  }
  .gallery-top {
    flex-direction: column;
    gap: 12px;
  }
  .header-top-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-texts h2 {
    font-size: 32px;
  }
  .header-top-left a.btn-cta-2 {
    margin-top: 0;
  }
  .header-line {
    display: none;
  }
  .gallery-bottom-cards {
    grid-column-gap: 30px;
    grid-row-gap: 35px;
  }
  .gallery-card h3 {
    font-size: 26px;
  }
  .gallery-card p {
    font-size: 15px;
    line-height: 21px;
  }
  .gallery-card {
    height: 425px;
    padding: 32px;
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  }
  .gallery-card-icon {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .site-footer-bottom-content {
    flex-direction: column;
  }
  .site-footer-bottom {
    padding: 30px 0;
  }
  .cta-banner-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .cta-banner {
    padding: 80px 0;
  }
  .locations-cards {
    max-width: 100%;
  }
  .experience-stat {
    margin-bottom: 30px;
  }
  .experience-inner {
    padding-top: 0;
  }
  .experience-media {
    display: none;
  }
  .experience-stat {
    justify-content: flex-start;
  }
  .process-steps-wrapper ul li {
    padding: 30px 20px;
    gap: 20px;
  }
  .process-step-content h3 {
    font-size: 20px;
  }
  .process-step-content p {
    font-size: 14px;
  }
  .gallery-bottom-cards {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    height: 525px;
  }
  .header-top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero a.btn-cta {
    margin-left: 0;
  }
  .gallery-top {
    gap: 20px;
  }
  .main-nav {
    padding: 0 30px;
  }
}

@media screen and (max-width: 575px) {
  .custom-container {
    padding-inline: 20px;
  }
  .hero-heading {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 22px;
  }
  a.btn-cta {
    font-size: 14px;
    height: 48px;
    padding-left: 24px;
    padding-right: 40px;
  }
  .btn-cta img {
    height: 12px;
    right: 18px;
  }
  .gallery {
    padding: 80px 0;
  }
  .gallery-top {
    padding-bottom: 60px;
  }
  .process {
    padding: 80px 0;
  }
  .experience {
    padding: 80px 0;
  }
  .experience-stat {
    gap: 12px;
  }
  .locations {
    padding: 80px 0;
  }
  .cta-banner-content h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .cta-banner-content p {
    font-size: 14px;
  }
  .site-footer-logo img {
    max-height: 45px;
  }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }
  .location-card h3 {
    font-size: 22px;
    margin: 0 0 42px;
  }
  .process-steps-wrapper ul li {
    grid-template-columns: 40px 1fr;
  }
  .gallery-card {
    clip-path: polygon(79% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
  }
  .main-nav {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .custom-container {
    max-width: 100%;
    padding-inline: 16px;
  }
  .header-texts h2 {
    font-size: 28px;
  }
  .hero-heading {
    font-size: 28px;
  }
  .hero-content {
    padding-top: 50px;
  }
  .experience-content h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 360px) {
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
