* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, calibri;
  color: rgb(47, 74, 83);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

.vertical-menu {
  position: fixed;
  left: 10%;
  top: 15%;
  width: 200px;
  height: fit-content;
  background: linear-gradient(90deg, rgba(254, 254, 254, 0.7) 0%, rgba(254, 254, 254, 0.2) 100%, rgba(254, 254, 254, 0.05) 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  transition: left 0.3s ease, background 0.3s ease;
}
.vertical-menu.scroll-down {
  background: #ffffff;
  left: 0;
}
.vertical-menu .menu-logo {
  display: none;
  padding: 0 20px 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vertical-menu .menu-logo img {
  max-width: 100%;
  height: auto;
}
.vertical-menu .menu-logo.visible {
  display: block;
  opacity: 1;
}
.vertical-menu .menu-list {
  list-style: none;
  flex: 1;
  padding: 0;
}
.vertical-menu .menu-list li:first-child .menu-item {
  border-bottom: none;
}
.vertical-menu .menu-list .menu-item {
  display: block;
  padding: 5px 10px;
  color: rgb(47, 74, 83);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}
.vertical-menu .menu-list .menu-item:hover {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.6), rgba(232, 244, 248, 0.5));
}
.vertical-menu .menu-list .menu-item.active {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.8), rgba(232, 244, 248, 0.9));
  font-weight: 600;
  border-bottom: 1px dashed rgb(47, 74, 83);
}
.vertical-menu .menu-footer {
  display: none;
  padding: 10px;
  border-top: 1px solid rgba(47, 74, 83, 0.1);
}
.vertical-menu .menu-footer.visible {
  display: block;
}
.vertical-menu .menu-footer .lang-toggle {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgb(47, 74, 83);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
  border: none;
}
.vertical-menu .menu-footer .lang-toggle:hover {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.6), rgba(232, 244, 248, 0.3));
  border-color: rgb(47, 74, 83);
}

.menu-to-title-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.menu-to-title-line line {
  stroke: rgb(47, 74, 83);
  stroke-opacity: 0.3;
  transition: opacity 0.3s ease;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ffffff;
  z-index: 1001;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(47, 74, 83, 0.1);
}
.mobile-header .mobile-logo img {
  height: 70px;
  width: auto;
}
.mobile-header .mobile-menu-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-header .mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: rgb(47, 74, 83);
  transition: all 0.3s ease;
}
.mobile-header .mobile-lang-toggle {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(47, 74, 83, 0.3);
  color: rgb(47, 74, 83);
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
}
.mobile-menu-overlay .mobile-menu {
  background-color: #ffffff;
  width: 280px;
  height: 100%;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu-overlay .mobile-menu ul {
  list-style: none;
}
.mobile-menu-overlay .mobile-menu ul li {
  margin-bottom: 10px;
}
.mobile-menu-overlay .mobile-menu ul .mobile-menu-item {
  display: block;
  padding: 12px 16px;
  color: rgb(47, 74, 83);
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
}
.mobile-menu-overlay .mobile-menu ul .mobile-menu-item:hover {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.6), rgba(232, 244, 248, 0.3));
}
.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.contacts-block {
  position: fixed;
  bottom: 0;
  left: 200px;
  right: 0;
  background-color: #ffffff;
  padding: 20px 40px;
  border-top: 1px solid rgba(47, 74, 83, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.contacts-block.active {
  transform: translateY(0);
}
.contacts-block .contacts-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
.contacts-block .contacts-content p {
  margin: 0;
  font-size: 16px;
  color: rgb(47, 74, 83);
  user-select: text;
  cursor: text;
}

.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  padding-right: 0;
}

.hero-section {
  position: relative;
  padding: 0;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .hero-section .hero-background {
    height: 50%;
  }
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 74, 83, 0.3), rgba(47, 74, 83, 0.1));
}
.hero-section .hero-background .copyright {
  position: absolute;
  bottom: 20px;
  left: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}
.hero-section .hero-background .mobile-menu-toggle {
  position: absolute;
  z-index: 999;
  color: #fff;
  left: 50%;
  top: calc(100% - 100px);
  transform: translateX(-50%);
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .hero-section .hero-background .mobile-menu-toggle {
    display: flex;
  }
}
.hero-section .hero-background .mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px 0 60px;
  min-height: 100vh;
  gap: 60px;
}
@media screen and (max-width: 1600px) {
  .hero-section .hero-content {
    padding-top: 10%;
  }
}
@media screen and (max-width: 14600px) {
  .hero-section .hero-content {
    padding-top: 15%;
  }
}
.hero-section .hero-content .hero-logo {
  flex: 0 0 auto;
  position: fixed;
  top: 0;
  left: clamp(10%, 20vw, 30%);
  z-index: 999;
  transition: left 0.3s ease, width 0.3s ease;
}
.hero-section .hero-content .hero-logo img {
  max-width: clamp(300px, 20vw, 460px);
  width: 460px;
  height: auto;
  background: #FEFEFE;
  background: linear-gradient(145deg, rgb(254, 254, 254) 0%, rgba(254, 254, 254, 0.5) 30%, rgba(254, 254, 254, 0.05) 100%);
  transition: width 0.3s ease;
}
.hero-section .hero-content .hero-logo.scroll-down img {
  background: #FEFEFE;
}
.hero-section .hero-content .hero-text {
  flex: 1;
  max-width: 750px;
  background: linear-gradient(170deg, rgba(254, 254, 254, 0.5) 0%, rgba(254, 254, 254, 0.1) 50%, rgba(254, 254, 254, 0.05) 100%);
  padding: 10px;
}
.hero-section .hero-content .hero-text .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(47, 74, 83);
}
.hero-section .hero-content .hero-text .hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgb(47, 74, 83);
}
.hero-section .hero-content .hero-text .hero-subtitle .wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 15%;
}
.hero-section .hero-content .hero-text .footer-section {
  display: none;
}
.hero-section .hero-lang-toggle {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.hero-section .hero-lang-toggle .lang-toggle {
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 32px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}
.hero-section .scroll-indicator:hover {
  color: rgb(232, 244, 248);
  transform: translateX(-50%) scale(1.1);
}
.hero-section .scroll-indicator svg {
  width: 60px;
  height: 60px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.content-section {
  position: relative;
  padding-top: 0;
  padding-left: 200px;
}
.content-section .section-header-bar {
  position: fixed;
  top: 0;
  left: 200px;
  right: 0;
  height: 80px;
  background-color: #ffffff;
  z-index: 998;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(47, 74, 83, 0.1);
  display: none;
}
.content-section .section-header-bar .section-logo img {
  height: 50px;
  width: auto;
}
.content-section .section-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding: 0 0 60px 20px;
  height: calc(100vh - 140px);
  align-items: start;
}
.content-section .section-content .section-image-wrapper {
  position: relative;
  grid-column: 2;
  align-self: start;
  width: clamp(550px, 44vw, 1000px);
  max-height: 550px;
  height: 100%;
}
.content-section .section-content .section-image-wrapper .section-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(47, 74, 83, 0.2);
  margin-bottom: -120px;
  max-height: 550px;
}
.content-section .section-content .section-image-wrapper .image-attribution {
  position: absolute;
  bottom: -105px;
  right: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 248, 0.95));
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 11px;
  color: rgb(47, 74, 83);
  font-style: italic;
  box-shadow: 0 3px 12px rgba(47, 74, 83, 0.15);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(47, 74, 83, 0.1);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.content-section .section-content .section-text-wrapper {
  grid-column: span 2;
  align-self: end;
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.7), rgba(255, 255, 255, 0.6));
  padding: 0 10px 40px;
  margin-top: auto;
  margin-bottom: clamp(0px, 25vw, 400px);
}
.content-section .section-content .section-text-wrapper .section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
  color: rgb(47, 74, 83);
}
.content-section .section-content .section-text-wrapper .section-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(47, 74, 83);
  white-space: pre-line;
}
.content-section .section-content .section-text-wrapper .section-text ul {
  margin-left: 20px;
  margin-top: 10px;
}
.content-section .section-content .section-text-wrapper .section-text .underline {
  text-decoration: underline;
}
.content-section .section-content .section-text-wrapper .section-text .block-end {
  display: block;
  padding-left: 30%;
}
.content-section .scroll-indicator {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgb(47, 74, 83);
  cursor: pointer;
  transition: all 0.3s ease;
}
.content-section .scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.7), rgba(232, 244, 248, 0));
  border-radius: 0;
  padding: 8px;
}
.content-section .scroll-indicator svg {
  width: 60px;
  height: 60px;
}

.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}
.footer-section .footer-section-content {
  border-top: 1px solid rgb(47, 74, 83);
  padding: 5px 20px 0;
}
.footer-section .footer-section-content p {
  font-size: 14px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-text-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 1024px) {
  .vertical-menu {
    display: none;
  }
  .menu-to-title-line {
    display: none !important;
  }
  .mobile-header.visible {
    display: flex;
  }
  .mobile-menu-overlay.active {
    display: block;
  }
  .main-content {
    margin-left: 0;
    padding-top: 0px;
    gap: 50px;
  }
  .contacts-block {
    left: 0;
  }
  .hero-section .hero-content {
    flex-direction: column;
    padding: 40px 0;
    justify-content: flex-start;
  }
  .hero-section .hero-content .hero-logo {
    position: relative;
    left: auto !important;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  .hero-section .hero-content .hero-logo img {
    max-width: clamp(200px, 20vw, 300px) !important;
    width: auto !important;
    max-width: 100%;
  }
  .hero-section .hero-content .hero-text {
    max-width: 100%;
    flex: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    background: #E8F4F8;
    background: linear-gradient(145deg, rgb(232, 244, 248) 0%, rgba(232, 244, 248, 0.5) 30%, rgba(254, 254, 254, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-height: 50%;
    padding-bottom: 150px;
  }
  .hero-section .hero-content .hero-text .hero-title {
    font-size: 36px;
  }
  .hero-section .hero-content .hero-text .hero-subtitle {
    font-size: 16px;
    width: 100%;
  }
  .hero-section .hero-content .hero-text .hero-subtitle .wrapper {
    padding-left: 3%;
  }
  .hero-section .hero-content .hero-text .footer-section {
    display: flex;
    padding-bottom: 0;
  }
  .hero-section .hero-lang-toggle {
    bottom: calc(50% + 60px);
    left: 0px;
    transform: translateX(0%);
  }
  .hero-section .hero-lang-toggle .lang-toggle {
    font-size: 24px;
  }
  .hero-section .scroll-indicator {
    color: rgb(47, 74, 83);
  }
  .hero-section .scroll-indicator svg {
    width: 40px;
    height: 40px;
  }
  .content-section {
    padding-top: 0px;
    padding-left: 0;
    justify-content: flex-start;
  }
  .content-section .section-header-bar {
    left: 0;
    height: 60px;
    padding: 0 20px;
  }
  .content-section .section-header-bar .section-logo img {
    height: 40px;
  }
  .content-section .section-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0px;
    height: auto;
  }
  .content-section .section-content .section-image-wrapper {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
  .content-section .section-content .section-image-wrapper .section-image {
    margin-bottom: 0;
  }
  .content-section .section-content .section-image-wrapper .image-attribution {
    bottom: 20px;
  }
  .content-section .section-content .section-text-wrapper {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-bottom: 0;
    padding: 30px 20px;
  }
  .content-section .section-content .section-text-wrapper .section-title {
    font-size: 32px;
    margin-bottom: 0px;
  }
  .content-section .section-content .section-text-wrapper .section-text {
    font-size: 15px;
  }
  .content-section .scroll-indicator {
    bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/*# sourceMappingURL=styles.css.map */