@import url(../sections/comment.css);

.hero {
  padding-bottom: 64px;
}
.hero .section-title {
  max-width: 100%;
}
.hero .section-title h1 span,
.hero .section-title .h1 span {
  display: block;
  color: var(--azure-radiance-500);
}
.hero .section-title p {
  max-width: 464px;
  margin-bottom: 40px;
}
.hero-action-buttons {
  margin-bottom: 64px;
}

.last-projects {
  width: 100%;
  padding: 128px 0;
}
.last-projects .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.last-projects-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #202D3D;
}
.last-projects .swiper {
  width: 100%;
}
.last-projects-item {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
.last-projects-item-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.last-projects-item-header .h1 {
  color: #202D3D;
  transition: color 0.3s ease-in-out;
}
.last-projects-item-header .h1:hover {
  color: var(--azure-radiance-500);
}
.last-projects-item-header p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--slate-400);
}
.last-projects-item-cover {
  display: flex;
  align-items: center;
  width: 100%;
  height: 714px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--slate-50);
}
.last-projects-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.3s ease-in-out;
}
.last-projects-item-cover:hover img {
  transform: scale(1.02);
}
.last-projects-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.last-projects-item-footer-tags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  max-width: 208px;
}
.last-projects-item-footer-tags .tag {
  padding: 6px 10px;
}
@media (max-width: 1023px) {
  .last-projects-item {
    gap: 32px;
  }
  .last-projects-title {
    font-size: 20px;
    line-height: 30px;
  }
  .last-projects-item-cover {
    height: auto;
  }
  .last-projects-item-cover img {
    width: 100%;
    height: auto;
  }
  .last-projects-item-cover:hover img {
    transform: none;
  }
}
@media (max-width: 767px) {
  .last-projects-item-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .last-projects-item-footer-tags {
    max-width: 100%;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .last-projects-item-cover {
    border-radius: 8px;
  }
}

.project-info {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid var(--azure-radiance-500);
}
.project-info strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.72px;
  color: #202D3D;
}
.project-info span {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.54px;
  color: #202D3D;
}

.projects {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 164px;
}
.projects .container {
  display: flex;
  flex-direction: column;
  gap: 164px;
}
.projects-item {
  display: flex;
  gap: 84px;
  width: 100%;
}
.projects-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  padding: 84px 0;
}
.projects-item-inner-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.projects-item-inner-header a {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #202D3D;
  transition: color 0.3s ease-in-out;
}
.projects-item-inner-header a:hover {
  color: var(--azure-radiance-500);
}
.projects-item-inner-header strong {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  color: #202D3D;
}
.projects-item-inner-header p {
  font-size: 14px;
  line-height: 22px;
  color: var(--slate-400);
}
.projects-item-inner-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.projects-item-inner-footer-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 20px;
}
.projects-item-cover {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 678px;
  height: 714px;
  border-radius: 12px;
  overflow: hidden;
}
.projects-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.3s ease-in-out;
}
.projects-item-cover:hover img {
  transform: scale(1.02);
}
@media (max-width: 1023px) {
  .projects {
    padding-top: 0;
  }
  .projects .container {
    gap: 128px;
  }
  .projects-item {
    flex-direction: column;
    gap: 32px;
  }
  .projects-item-inner {
    padding: 0;
    order: 2;
  }
  .projects-item-inner-header a {
    font-size: 20px;
    line-height: 30px;
  }
  .projects-item-inner-header strong {
    font-size: 30px;
    line-height: 36px;
  }
  .projects-item-inner-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .projects-item-inner-footer-tags {
    max-width: 228px;
    padding-left: 0;
    justify-content: flex-end;
  }
  .projects-item-cover {
    max-width: 100%;
    height: auto;
  }
  .projects-item-cover img {
    width: 100%;
    height: auto;
  }
  .projects-item-cover:hover img {
    transform: none;
  }
}
@media (max-width: 767px) {
  .projects-item-inner-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .projects-item-inner-footer-tags {
    max-width: 100%;
    justify-content: flex-start;
    padding-left: 20px;
  }
}

.other-projects {
  width: 100%;
  padding-bottom: 128px;
}
.other-projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
.other-projects .section-title {
  max-width: 550px;
}
.other-projects ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
}
.other-projects ul li {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .other-projects ul {
    grid-template-columns: 1fr;
  }
  .other-project-card-cover {
    height: auto;
  }
  .other-project-card-cover img {
    width: 100%;
    height: auto;
  }
  .other-project-card-cover:hover img {
    transform: none;
  }
}

.faq {
  padding: 128px 0;
}

@media (max-width: 1023px) {
  .faq {
    padding: 64px 0;
  }
}
