@charset "UTF-8";
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}
html ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

main {
  height: auto;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: visible !important;
}
main .body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
main .body--title {
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
main .body--title.animated {
  opacity: 1;
  transform: translateY(0);
}
main .body--title p {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 10px 20px;
  color: white !important;
}
main .body--title p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0; /* Начальная ширина для анимации */
  height: 30px;
  background-color: rgba(78, 201, 176, 0.4);
  border-radius: 10px;
  z-index: -1;
  transform: translateX(-50%) translateY(15%);
  transition: width 0.8s ease-out 0.3s;
}
main .body--title.animated p::after {
  width: 110%; /* Конечная ширина при анимации */
}
main .body--projects {
  height: auto;
  width: 100%;
  max-width: 1500px;
  display: grid;
  gap: 30px;
  padding: 100px 20px;
  box-sizing: border-box;
  grid-auto-rows: 1fr;
}
@media (max-width: 800px) {
  main .body--projects {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 25px;
  }
  main .body--projects .project--container {
    min-height: 250px;
    max-height: 300px;
  }
}
@media (min-width: 801px) and (max-width: 1199px) {
  main .body--projects {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 35px;
  }
  main .body--projects .project--container {
    min-height: 280px;
    max-height: 350px;
  }
  main .body--projects .plan {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  main .body--projects {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 40px;
  }
  main .body--projects .project--container {
    min-height: 300px;
    max-height: 350px;
  }
}
main .body--projects .project--container {
  height: 100%;
  width: 100%;
  border: 2px solid rgba(78, 201, 176, 0.8);
  padding: 25px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(78, 201, 176, 0.3);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(40, 40, 40, 0.9));
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}
main .body--projects .project--container.animated {
  opacity: 1;
  transform: translateY(0);
}
main .body--projects .project--container:hover {
  cursor: pointer;
  transform: translateY(-5px) scale(1.02);
  border: 2px solid #ffffff;
  box-shadow: 0px 10px 25px rgba(255, 255, 255, 0.2);
}
main .body--projects .project--container--title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
}
main .body--projects .project--container--title p {
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
}
main .body--projects .project--container.animated main .body--projects .project--container--title p {
  opacity: 1;
  transform: translateY(0);
}
main .body--projects .project--container--info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  flex-grow: 1;
}
main .body--projects .project--container--info p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
}
main .body--projects .project--container--info span {
  color: #4ec9b0 !important;
  font-weight: 600;
  transform: translateY(10px);
  transition: all 0.5s ease 0.4s;
}
main .body--projects .project--container.animated main .body--projects .project--container--info p, main .body--projects .project--container.animated main .body--projects .project--container--info span {
  opacity: 1;
  transform: translateY(0);
}
main .body--projects .project--container--more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}
main .body--projects .project--container--more a {
  text-decoration: none;
  color: rgb(255, 179, 54) !important;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: rgba(255, 179, 54, 0.1);
}
main .body--projects .project--container--more a:hover {
  background-color: rgba(255, 179, 54, 0.2);
  transform: translateY(-2px);
}
main .body--projects .project--container.animated main .body--projects .project--container--more {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  main .body--projects .mobile {
    display: none;
  }
}
@media (max-width: 1200px) {
  main .body--projects .plan {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */