@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Unbounded", serif;
  font-optical-sizing: auto;
  font-weight: 1.6;
  font-style: normal;
  background: #000;
}

a {
  text-decoration: none;
  color: #fff;
}

header {
  background: #056F4F;
  padding: 5px 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
  /* Чтобы шапка была поверх других элементов */
}
header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header .container nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
header .container nav .nav-links {
  display: flex;
  gap: 20px;
  list-style-type: none;
}
header .container nav .nav-links a {
  font-size: 16px;
  transition: color 0.3s ease;
}
header .container nav .nav-links a:hover {
  color: #056F4F;
}

.contentzone {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
section p {
  font-size: 20px;
  margin-bottom: 30px;
}
section-video {
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#services {
  position: relative;
}

#contact h3 {
  font-size: 14px;
  color: #ffffff;
}
#contact h3 :hover {
  color: #4e4e4e;
  transition: 0.4s;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #056F4F;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #1b5e20;
}

.about {
  color: #fff;
}
.about te h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.about p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
}
.about-list-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 10px;
}
.about-list li::marker {
  color: rgb(255, 255, 255);
  font-size: 18px;
}
.about-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.about-icon {
  text-align: center;
}

.parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 15px;
}

.card {
  position: relative;
  pointer-events: auto;
  cursor: pointer;
  color: #000000;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 10px 10px 10px;
  min-height: 150px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: scale(1.05);
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  pointer-events: auto;
}
.card-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0%;
  text-align: left;
  text-decoration-line: underline;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
.card-title:hover {
  color: #056F4F;
}
.card-1 {
  grid-column: span 2/span 2;
  grid-row: span 4/span 4;
  background-image: url("/assets/image 2.png");
}
.card-2 {
  grid-column: span 2/span 2;
  grid-row: span 4/span 4;
  grid-column-start: 5;
  grid-row-start: 1;
  background-image: url("/assets/image 6.png");
}
.card-3 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
  background-image: url("/assets/Rectangle 2.png");
}
.card-4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 3;
  background-image: url("/assets/image 3.png");
}

footer {
  background: #056F4F;
  padding: 20px 0;
  text-align: center;
}
footer p {
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 768px) {
  header .container nav .nav-links {
    display: none;
  }
  .about-list-container {
    flex-direction: column;
    align-items: center;
  }
  .about-title {
    text-align: center;
  }
  .about-icons {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .about-icon {
    word-break: break-all;
  }
  .parent {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 16px 5px 16px 5px;
    border-radius: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-title {
    font-size: 22px;
    padding: 12px;
    border-radius: 12px;
  }
  .card-1, .card-2, .card-3, .card-4 {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-column-start: auto !important;
    grid-row-start: auto !important;
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=style.css.map */