@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header {
  width: 100%;
  position: relative;
  z-index: 20;
}
.header__top {
  background-color: #003D4E;
  position: relative;
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  gap: 30px;
}
@media (max-width: 1023px) {
  .header__top-inner {
    padding-right: 90px;
    height: 120px;
  }
}
@media (max-width: 992px) {
  .header__top-inner {
    gap: 20px;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1023px) {
  .header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 30;
  }
  .header__burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
  }
}
@media (max-width: 768px) {
  .header__burger {
    right: 20px;
  }
}
.header__logo {
  display: inline-block;
  max-width: 380px;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .header__logo {
    max-width: 260px;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .header__contact {
    display: none;
  }
}
.header__contact-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  line-height: 32px;
}
.header__contact-item:hover {
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .header__contact-item {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .header__contact-item {
    font-size: 16px;
  }
}
.header__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}
.header__contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  background: linear-gradient(to bottom, #ededed 0%, #c9c9c9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}
.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}
.header__menu-item {
  position: relative;
}
.header__menu-item--has-submenu:hover > .header__submenu, .header__menu-item--has-submenu.is-open > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__menu-item--has-submenu:hover > .header__menu-link .header__menu-arrow, .header__menu-item--has-submenu.is-open > .header__menu-link .header__menu-arrow {
  transform: rotate(180deg);
}
.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #2b2b2b;
  line-height: 92px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 0;
}
.header__menu-link:hover, .header__menu-link.is-active {
  color: #003D4E;
  opacity: 0.7;
}
.header__menu-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 50;
}
.header__submenu-link {
  display: block;
  padding: 10px 20px;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.header__submenu-link:hover, .header__submenu-link.is-active {
  color: #ffffff;
  background-color: #003D4E;
}
.header__submenu-item--has-children {
  position: relative;
}
.header__submenu-item--has-children > .header__submenu-link::after {
  content: "›";
  float: right;
  margin-left: 8px;
  opacity: 0.6;
}
.header__submenu--nested {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 60;
}
.header__submenu-item--has-children:hover > .header__submenu--nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu {
  display: none;
}
.mobile-menu.mm-spn {
  display: block;
}

.main {
  width: 100%;
}

.section {
  padding: 60px 0;
}
.section__title {
  font-size: 32px;
  font-weight: 600;
  color: #003D4E;
  margin: 0 0 24px;
}

.hero {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 40px;
  min-height: 782px;
  padding-top: 90px;
}
@media (max-width: 992px) {
  .hero__inner {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 420px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__title {
  margin: 0 0 80px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  color: #003D4E;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 50px;
    margin: 0 0 60px;
  }
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 40px;
    margin: 0 0 40px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
    margin: 0 0 30px;
  }
}
.hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .hero__list {
    gap: 10px;
  }
}
.hero__list-item {
  position: relative;
  padding-left: 44px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #003D4E;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.hero__list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 12px;
  background-image: url("media/li.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  transform: translateY(-50%);
}
.hero__list-item strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero__list-item {
    font-size: 14px;
    padding-left: 38px;
  }
  .hero__list-item::before {
    width: 26px;
    height: 10px;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__image img {
  width: auto;
  height: 100%;
}
@media (max-width: 1200px) {
  .hero__image img {
    margin-right: -150px;
  }
}
@media (max-width: 992px) {
  .hero__image {
    align-items: flex-end;
  }
  .hero__image img {
    margin-right: 0;
    height: 400px;
  }
}

.loesungen {
  position: relative;
  background-color: #ffffff;
  padding: 160px 0;
  min-height: 720px;
}
@media (max-width: 992px) {
  .loesungen {
    min-height: auto;
    padding: 70px 0 400px;
  }
}
.loesungen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  background-image: url("media/shadow2.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}
.loesungen__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .loesungen__inner {
    gap: 30px;
  }
}
.loesungen__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  flex: 1 1 50%;
}
.loesungen__title {
  margin: 0 0 30px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #003D4E;
}
@media (max-width: 768px) {
  .loesungen__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.loesungen__text {
  font-size: 17px;
  line-height: 1.55;
  color: #003D4E;
}
.loesungen__text p {
  margin: 0 0 20px;
}
.loesungen__text p:last-child {
  margin-bottom: 0;
}
.loesungen__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .loesungen__image img {
    max-width: 500px;
  }
}
.maschinenpark {
  position: relative;
  background-color: #003D4E;
  padding: 60px 0 40px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .maschinenpark {
    padding: 60px 0 20px;
  }
}
.maschinenpark__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.maschinenpark__title {
  margin: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .maschinenpark__title {
    font-size: 26px;
  }
}
.maschinenpark__nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.maschinenpark__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.maschinenpark__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.maschinenpark__btn:hover {
  transform: translateY(-1px);
}
.maschinenpark__btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}
.maschinenpark__swiper {
  position: relative;
  overflow: visible;
}

.machine-card {
  position: relative;
  padding-bottom: 69px;
  opacity: 0.35;
  display: block;
  transition: opacity 0.35s ease;
}
.machine-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 69px);
  width: 100%;
  height: 69px;
  transform: translateX(-50%);
  background-image: url("media/shadow1.png");
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.machine-card__inner {
  position: relative;
  height: 290px;
  padding: 40px 40px 28px;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: background-image 0.35s ease, border-color 0.35s ease;
}
.machine-card__inner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-image: url("media/light1.png");
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.machine-card__inner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-image: url("media/light1.png");
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.machine-card__icon {
  margin-top: 18px;
}
.machine-card__icon img {
  display: block;
  height: 97px;
  width: auto;
}
.machine-card__title {
  margin: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.machine-card:hover,
.swiper-slide-active .machine-card {
  opacity: 1;
}
.machine-card:hover .machine-card__inner,
.swiper-slide-active .machine-card .machine-card__inner {
  background-image: url("media/bg1.png");
  border-color: rgba(255, 255, 255, 0.12);
}
.machine-card:hover .machine-card__inner::before, .machine-card:hover .machine-card__inner::after,
.swiper-slide-active .machine-card .machine-card__inner::before,
.swiper-slide-active .machine-card .machine-card__inner::after {
  opacity: 1;
}
.machine-card:hover::after,
.swiper-slide-active .machine-card::after {
  opacity: 0.9;
}

.features {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 80px;
}
.features__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 992px) {
  .features__inner {
    flex-direction: column;
    gap: 60px;
  }
}
.features__col {
  position: relative;
  flex: 1 1 50%;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .features__col {
    padding-top: 100px;
  }
}
.features__icon {
  position: absolute;
  top: -50px;
  left: 0;
  display: block;
  width: 89px;
  height: 89px;
  z-index: 3;
}
.features__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .features__icon {
    width: 70px;
    height: 70px;
    top: -36px;
  }
}
@media (max-width: 992px) {
  .features .features__col + .features__col .features__icon {
    top: 0;
  }
}
.features__title {
  margin: 0 0 35px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #003D4E;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.features__text {
  font-size: 17px;
  line-height: 1.55;
  color: #003D4E;
}
.features__text p {
  margin: 0 0 20px;
}
.features__text p:last-child {
  margin-bottom: 0;
}

.leistungen {
  position: relative;
  background-color: #3a3a3a;
  overflow: hidden;
}
.leistungen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  background: linear-gradient(to right, #d8d8d8 0%, #ededed 25%, #ffffff 55%, #d2d2d2 100%);
  z-index: 0;
}
@media (max-width: 992px) {
  .leistungen::before {
    height: 320px;
  }
}
.leistungen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  background-image: url("media/shadow4.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  z-index: 1;
  pointer-events: none;
}
.leistungen__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 90px 30px 80px;
}
@media (max-width: 992px) {
  .leistungen__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 30px 440px;
  }
}
.leistungen__col {
  position: relative;
  min-width: 0;
}
.leistungen__col--left {
  display: flex;
  flex-direction: column;
}
.leistungen__title {
  margin: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: #003D4E;
}
@media (max-width: 768px) {
  .leistungen__title {
    font-size: 30px;
  }
}
.leistungen__image {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 1200px) {
  .leistungen__image img {
    height: 700px;
    width: auto;
  }
}
@media (max-width: 992px) {
  .leistungen__image img {
    height: 400px;
  }
}
.leistungen__accordion {
  position: relative;
  margin-bottom: 69px;
}
.leistungen__accordion::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -69px;
  transform: translateX(-50%);
  width: 105%;
  height: 69px;
  background-image: url("media/shadow3.png");
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 992px) {
  .leistungen__accordion::after {
    display: none;
  }
}
.leistungen__support {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  color: #ffffff;
}
.leistungen__support-title {
  margin: 0 0 24px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}
.leistungen__support-text {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.7;
}
.leistungen__support-text p {
  margin: 0 0 16px;
}
.leistungen__support-text p:last-child {
  margin-bottom: 0;
}
.leistungen__support-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.leistungen__support-link:hover {
  opacity: 0.8;
}

.accordion {
  position: relative;
  margin-left: 30px;
  background: linear-gradient(to bottom, #C0C0C0 0%, #9E9E9F 45%, #5e5e5e 100%);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .accordion {
    margin-left: 0;
  }
}
.accordion__item {
  position: relative;
  background: transparent;
  transition: margin 0.35s ease, width 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.accordion__item.is-active {
  margin-left: -30px;
  width: calc(100% + 30px);
  background: linear-gradient(to bottom, #5F858E 0%, #1C515F 100%);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.accordion__head {
  display: block;
  width: 100%;
  padding: 15px 45px 5px;
  margin: 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: padding 0.35s ease, background 0.2s ease;
}
.accordion__head:hover {
  background: rgba(255, 255, 255, 0.05);
}
.accordion__item.is-active .accordion__head {
  padding-bottom: 8px;
  padding-top: 36px;
  cursor: default;
}
.accordion__item.is-active .accordion__head:hover {
  background: transparent;
}
.accordion__item:last-child .accordion__head {
  padding-bottom: 36px;
  cursor: default;
}
.accordion__item:last-child .accordion__head:hover {
  background: transparent;
}
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.accordion__item.is-active .accordion__panel {
  grid-template-rows: 1fr;
}
.accordion__body {
  min-height: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
}
.accordion__body p {
  margin: 0;
  padding: 0 45px 20px;
}
.accordion__body p:last-child {
  padding-bottom: 36px;
}

.content {
  position: relative;
  background-color: #ffffff;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .content {
    padding: 40px 0 60px;
  }
}
.content__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1200px) {
  .content__inner {
    gap: 40px;
  }
}
.content__sidebar {
  flex: 0 0 280px;
  max-width: 280px;
  position: sticky;
  top: 30px;
}
@media (max-width: 1023px) {
  .content__sidebar {
    display: none;
  }
}
.content__main {
  flex: 1 1 auto;
  min-width: 0;
}
.content__header {
  margin-bottom: 40px;
}
.content__breadcrumb {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content__breadcrumb span {
  color: #003D4E;
}
.content__title {
  margin: 0 0 20px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #003D4E;
}
@media (max-width: 992px) {
  .content__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .content__title {
    font-size: 28px;
  }
}
.content__lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: #003D4E;
  font-weight: 500;
}
@media (max-width: 768px) {
  .content__lead {
    font-size: 17px;
  }
}
.content__body {
  font-size: 17px;
  line-height: 1.65;
  color: #333333;
}
.content__body h2 {
  margin: 40px 0 16px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #003D4E;
}
@media (max-width: 768px) {
  .content__body h2 {
    font-size: 22px;
    margin: 32px 0 14px;
  }
}
.content__body p {
  margin: 0 0 18px;
}
.content__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.content__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 2px;
  background-color: #003D4E;
}

.sidebar-nav {
  background: linear-gradient(to bottom, #ededed 0%, #c9c9c9 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.sidebar-nav__heading {
  margin: 0;
  padding: 18px 24px;
  background-color: #003D4E;
  color: #ffffff;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sidebar-nav__item:last-child {
  border-bottom: 0;
}
.sidebar-nav__link, .sidebar-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  margin: 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.sidebar-nav__link:hover, .sidebar-nav__toggle:hover {
  color: #003D4E;
  background-color: rgba(255, 255, 255, 0.4);
}
.sidebar-nav__link.is-active {
  color: #ffffff;
  background-color: #003D4E;
}
.sidebar-nav__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  flex-shrink: 0;
  margin-left: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}
.sidebar-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  transition: max-height 0.35s ease;
}
.sidebar-nav__item--has-children.is-open > .sidebar-nav__toggle {
  color: #003D4E;
  background-color: rgba(255, 255, 255, 0.5);
}
.sidebar-nav__item--has-children.is-open > .sidebar-nav__toggle .sidebar-nav__arrow {
  transform: rotate(180deg);
}
.sidebar-nav__item--has-children.is-open > .sidebar-nav__submenu {
  max-height: 1500px;
}
.sidebar-nav__sublink {
  display: block;
  padding: 10px 24px 10px 40px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.sidebar-nav__sublink:hover {
  color: #003D4E;
  background-color: rgba(255, 255, 255, 0.6);
}
.sidebar-nav__sublink.is-active {
  color: #ffffff;
  background-color: #003D4E;
  font-weight: 500;
}
.sidebar-nav__subitem--has-children > .sidebar-nav__toggle--nested {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 24px 10px 40px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.sidebar-nav__subitem--has-children > .sidebar-nav__toggle--nested:hover {
  color: #003D4E;
  background-color: rgba(255, 255, 255, 0.6);
}
.sidebar-nav__subitem--has-children.is-open > .sidebar-nav__toggle--nested .sidebar-nav__arrow {
  transform: rotate(180deg);
}
.sidebar-nav__subitem--has-children.is-open > .sidebar-nav__submenu--nested {
  max-height: 800px;
}
.sidebar-nav__submenu--nested {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  transition: max-height 0.35s ease;
}
.sidebar-nav__submenu--nested .sidebar-nav__sublink {
  padding-left: 56px;
  font-size: 14px;
}

.footer {
  position: relative;
  background-color: #003D4E;
  color: #ffffff;
  padding: 70px 0 40px;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 260px;
  }
}
.footer__nav {
  position: relative;
  width: 100%;
  padding-top: 70px;
}
.footer__nav::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 58px;
  background-image: url("media/shadow5.png");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 992px) {
  .footer__nav {
    display: none;
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.footer__link {
  display: inline-block;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.footer__link:hover, .footer__link.is-active {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer__link {
    font-size: 15px;
  }
}
.footer__meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 48px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer__meta {
    font-size: 14px;
    gap: 4px 20px;
  }
}
.footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 30px;
  margin-top: -10px;
}
.footer__legal .footer__link {
  font-size: 14px;
}

.footer__menu {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 12, 18, 0.94);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}
.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 82vh;
  pointer-events: auto;
}
.lightbox__img {
  display: block;
  max-width: 95vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  background: #fff;
  border-radius: 4px;
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  max-width: 720px;
  padding: 0 12px;
  pointer-events: auto;
}
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.15s ease;
  padding: 0;
  font-family: inherit;
}
.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lightbox__btn:active {
  transform: scale(0.95);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 32px;
}
.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
}
.lightbox__prev:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
}
.lightbox__next:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox.is-loading .lightbox__img {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .lightbox__close {
    top: 12px;
    right: 12px;
  }
  .lightbox__prev {
    left: 8px;
  }
  .lightbox__next {
    right: 8px;
  }
  .lightbox__caption {
    font-size: 14px;
  }
}

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