/*
Theme Name: supder-duper-right-version-theme
*/


@charset "UTF-8";
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: white;
}

.section-preview {
  min-height: 100vh;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
}
.section-preview .heading {
  text-align: center;
  margin: auto 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-preview .heading .title-start {
  color: white;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  opacity: 0;
}
.section-preview .heading .title-end {
  font-weight: 400;
  font-size: 1.3rem;
  color: #00d3e0;
  position: relative;
  display: inline-block;
  margin-top: 10px;
  opacity: 0;
}
.section-preview .heading .title-end::after {
  content: "";
  display: block;
  height: 5px;
  background-color: #00d3e0;
  width: 100px;
  margin: 20px auto 0;
}
.section-preview .heading .title-end.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-preview .heading .title-start.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-preview .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-direction: row;
}
.section-preview .about, .section-preview .cards {
  flex: 1;
}
.section-preview .about.show {
  animation: fadeInRight 0.7s ease-out forwards;
}
.section-preview .about {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  opacity: 0;
}
.section-preview .about h3 {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 600;
}
.section-preview .about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-preview .about ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.section-preview .about ul li {
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: RGB(156, 163, 175);
}
.section-preview .about ul li::before {
  content: "✔";
  color: #00d3e0;
  margin-right: 10px;
}
.section-preview .card.show {
  animation: fadeInLeft 0.7s ease-out forwards;
}
.section-preview .card:nth-child(2).show {
  animation-delay: 0.2s;
}
.section-preview .card:nth-child(3).show {
  animation-delay: 0.3s;
}
.section-preview .card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
}
.section-preview .card .icon {
  font-size: 1.25rem;
  color: #00d3e0;
  flex-shrink: 0;
  background-color: rgba(0, 211, 224, 0.1);
  border: 2px solid #00d3e0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.section-preview .card h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}
.section-preview .card p {
  font-size: 0.75rem;
  margin-top: 8px;
  color: rgb(156, 163, 175);
}

.section-title {
  min-height: 110vh;
  background: linear-gradient(to top, #0d121e, #1e2d4e);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-title .main-title-block {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: -100px;
  position: relative;
  overflow: hidden;
}
.section-title .main-title-block .project-button {
  animation: fadeInUp 0.7s ease-out forwards;
  animation-delay: 0.4s;
}
.section-title .main-title-block .project-button {
  display: inline-flex;
  margin-top: 20px;
  opacity: 0;
  align-items: center;
  background-color: #14b8a6; /* бирюзово-зелёный */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
}
.section-title .main-title-block .project-button .arrow {
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}
.section-title .main-title-block .project-button:hover {
  background-color: #0d9488; /* темнее при наведении */
}
.section-title .main-title-block h1 {
  font-size: 2rem;
  color: #00d3e0;
  opacity: 0;
  margin-bottom: 8px;
}
.section-title .main-title-block h2 {
  font-size: 0.9rem;
  text-align: center;
  margin-inline: 30px;
  opacity: 0;
}
.section-title .main-title-block h1.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-title .main-title-block h2.show {
  animation: fadeInUp 0.7s ease-out forwards;
  animation-delay: 0.2s;
}
.section-title .icon {
  position: absolute;
  font-size: 3rem;
  color: #0bc7b7;
  opacity: 0.6;
  animation: floatAndSway 6s ease-in-out infinite;
}
.section-title .icon.icon-left {
  left: 2%;
  top: 20%;
  animation-delay: 0s;
}
.section-title .icon.icon-right {
  right: 10%;
  top: 50%;
  animation-delay: 2s;
  position: absolute;
  scale: 4;
}
.section-title .icon.icon-bottom {
  left: 7%;
  bottom: 10%;
  animation-delay: 4s;
}
@keyframes floatAndSway {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.section-solution {
  min-height: 100vh;
  background: linear-gradient(to top, #0d121e, #1e2d4e);
}
.section-solution .title-block {
  text-align: center;
  margin: auto 60px;
  padding-top: 40px;
  padding-bottom: 10px;
}
.section-solution .title-block .title-start {
  color: white;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  opacity: 0;
}
.section-solution .title-block .title-end {
  font-weight: 400;
  font-size: 1.3rem;
  color: rgb(156, 163, 175);
  position: relative;
  display: inline-block;
  margin-top: 10px;
  opacity: 0;
}
.section-solution .title-block .title-end::after {
  content: "";
  display: block;
  height: 5px;
  background-color: #00d3e0;
  width: 100px;
  margin: 20px auto 0;
}
.section-solution .title-block .title-start.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-solution .title-block .title-end.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-solution .grid-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.section-solution .grid-block .card.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-solution .grid-block .card:nth-child(2).show {
  animation-delay: 0.2s;
}
.section-solution .grid-block .card:nth-child(3).show {
  animation-delay: 0.3s;
}
.section-solution .grid-block .card:nth-child(4).show {
  animation-delay: 0.4s;
}
.section-solution .grid-block .card:nth-child(5).show {
  animation-delay: 0.5s;
}
.section-solution .grid-block .card:nth-child(6).show {
  animation-delay: 0.6s;
}
.section-solution .grid-block .card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
  opacity: 0;
}
.section-solution .grid-block .card:hover {
  transform: translateY(-4px);
}
.section-solution .grid-block .card h2 {
  margin-top: 0.5rem;
  color: #f1f5f9;
  font-size: 1.1rem;
}
.section-solution .grid-block .card p {
  font-size: 0.9rem;
  margin: 0.8rem 0;
}
.section-solution .grid-block .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-solution .grid-block .card ul li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgb(156, 163, 175);
}
.section-solution .grid-block .card ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #38bdf8;
}
.section-solution .grid-block .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 0.8rem;
}
.section-solution .grid-block .icon-box.blue {
  background: #0ea5e9;
}
.section-solution .grid-block .icon-box.cyan {
  background: #06b6d4;
}
.section-solution .grid-block .icon-box.purple {
  background: #a78bfa;
}
.section-solution .grid-block .icon-box.green {
  background: #8fda18;
}
.section-solution .grid-block .icon-box.pink {
  background: #9566e2;
}
.section-solution .grid-block .icon-box.orange {
  background: #fb923c;
}

.section-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
}
.section-contact .title-block {
  text-align: center;
  margin: auto 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-contact .title-block .title-start {
  color: white;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  opacity: 0;
}
.section-contact .title-block .title-end {
  font-weight: 400;
  font-size: 1.3rem;
  color: rgb(156, 163, 175);
  position: relative;
  display: inline-block;
  margin-top: 10px;
  opacity: 0;
}
.section-contact .title-block .title-end::after {
  content: "";
  display: block;
  height: 5px;
  background-color: #00d3e0;
  width: 100px;
  margin: 20px auto 0;
}
.section-contact .title-block .title-start.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-contact .title-block .title-end.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-contact .contact-card.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.section-contact .contact-card {
  margin-inline: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  opacity: 0;
  margin-bottom: 60px;
}
.section-contact .contact-card .title {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #f8fafc;
}
.section-contact .contact-card .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.section-contact .contact-card .contact-item .icon {
  width: 40px;
  height: 40px;
  background: #0f172a;
  color: #0ea5e9;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-right: 1rem;
}
.section-contact .contact-card .contact-item .info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #f1f5f9;
}
.section-contact .contact-card .contact-item .info p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5e1;
}
.section-contact .contact-card hr {
  border: none;
  border-top: 1px solid #334155;
  margin: 1.5rem 0;
}
.section-contact .contact-card .footer-note {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
}
.section-contact .contact-card .footer-note i {
  margin-right: 0.5rem;
  color: #0ea5e9;
}
.section-contact .footer {
  width: 100%;
}
.section-contact .footer p {
  font-size: 0.75rem;
  margin-top: 8px;
  margin-bottom: 0;
  padding-bottom: 20px;
  padding-top: 10px;
  margin-inline: 40px;
  color: rgb(156, 163, 175);
}
.section-contact .footer hr {
  opacity: 0.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.changeColorTitle {
  color: #06b6d4;
}

.title-block {
  text-align: center;
  margin: auto 60px;
  padding-top: 40px;
  padding-bottom: 10px;
}
.title-block .title-start {
  color: white;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  opacity: 0;
}
.title-block .title-end {
  font-weight: 400;
  font-size: 1.3rem;
  color: rgb(156, 163, 175);
  position: relative;
  display: inline-block;
  margin-top: 10px;
  opacity: 0;
}
.title-block .title-end::after {
  content: "";
  display: block;
  height: 5px;
  background-color: #00d3e0;
  width: 100px;
  margin: 20px auto 0;
}
.title-block .title-start.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
.title-block .title-end.show {
  animation: fadeInUp 0.7s ease-out forwards;
}/*# sourceMappingURL=style.css.map */

.slider-container.show {
  animation: fadeInUp 0.7s ease-out forwards;
}

.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: auto;
  border-radius: 12px;
  opacity: 0;
  margin-inline: 32px;
  opacity: 0;
}

.slider-container.show {
  animation: fadeInUp 0.7s ease-out forwards;
}

.slider-container {
  position: relative;
  width: 100%;
  margin: auto;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  transform: translate3d(0, 0, 0);
}
.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .slide {
    border-radius: 0;
  }
}
.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.slide .caption {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: rgb(156, 163, 175);
  font-style: italic;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 24px;
  z-index: 10;
}
.slider-button.left {
  left: 10px;
}
.slider-button.right {
  right: 10px;
}
@media (max-width: 550px) {
  .slider-button {
    display: none;
  }
}
@media (hover: hover) {
  .slider-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
  top: -50px;
  position: relative;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(156, 163, 175, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.slider-dots button.active {
  background-color: rgb(156, 163, 175);
}/*# sourceMappingURL=slider.css.map */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-challenges {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-challenges .card:nth-child(1).show {
  animation: fadeInLeft 0.7s ease-out forwards;
}
.section-challenges .card:nth-child(2).show {
  animation: fadeInRight 0.7s ease-out forwards;
}

.container {
  max-width: 800px;
  margin-inline: 32px;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  opacity: 0;
  margin-inline: 32px;
}
.card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.card .block-info {
  flex: 1 1 60%;
}
.card .block-info .title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}
.card .block-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.card .block-info ul li {
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: RGB(156, 163, 175);
}
.card .block-info ul li::before {
  content: "•";
  color: #00d3e0;
  margin-right: 10px;
}
.card .image-block {
  flex: 1 1 35%;
}
.card .image-block img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .image-block p {
  color: gray;
}

.section-solution .cards .card.show:nth-child(n) {
  animation: fadeInLeft 0.7s ease-out forwards;
}
.section-solution .cards .card.show:nth-child(2n) {
  animation: fadeInRight 0.7s ease-out forwards;
}

.cards {
  max-width: 800px;
  margin: auto;
  padding-bottom: 20px;
}
.cards .card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-inline: 32px;
  opacity: 0;
}
.cards .card .icon {
  font-size: 1.25rem;
  color: #00d3e0;
  flex-shrink: 0;
  background-color: rgba(0, 211, 224, 0.1);
  border: 2px solid #00d3e0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.cards .card h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}
.cards .card p {
  font-size: 0.75rem;
  margin-top: 8px;
  color: rgb(156, 163, 175);
}

.section-core_concept {
  width: 100%;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
}
.section-core_concept .card.show {
  animation: fadeInUp 0.7s ease-out forwards;
}

.section-ship_management_system {
  min-height: 100vh;
  background: linear-gradient(to top, #0d121e, #1e2d4e);
}
.section-ship_management_system .card.show {
  animation: fadeInUp 0.7s ease-out forwards;
}

.section-scheduled_maintenance {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
}
.section-scheduled_maintenance .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.section-scheduled_maintenance .card.show {
  animation: fadeInUp 0.7s ease-out forwards;
}
@media (max-width: 768px) {
  .section-scheduled_maintenance .cards {
    grid-template-columns: 1fr;
  }
}

.section-inspections {
  width: 100%;
  background: linear-gradient(to top, #0d121e, #1e2d4e);
}
.section-inspections .card:nth-child(n).show {
  animation: fadeInRight 0.7s ease-out forwards;
}

.section-training_and_testing {
  width: 100%;
  background: linear-gradient(to bottom, #0d121e, #1e2d4e);
}/*# sourceMappingURL=mainPreview.css.map */
