.nav-about a {
  color: var(--green);
}

/* about us */
.about {
  padding: 120 0px;
  background-color: var(--background);
  z-index: 0;
}

.about-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  border-width: 0 0 20 0px;
  border-style: solid;
  -o-border-image: linear-gradient(to left, var(--green), rgba(139, 198, 63, 0)) 1;
     border-image: linear-gradient(to left, var(--green), rgba(139, 198, 63, 0)) 1;
}

.about-1-border {
  border-left: var(--green) solid 10px;
  margin: 0 20px;
  opacity: 0;
  transform: translateY(-50px);
  animation: slide 0.5s 0.5s ease forwards;
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.about-1 {
  width: 50%;
  line-height: 1.5em;
}
.about-1 h3 {
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(200px);
  animation: slide2 1.5s 1s ease forwards;
}
.about-1 h3 span {
  color: var(--green);
}

.about-2 {
  width: 50%;
  z-index: -1;
}
.about-2 img {
  max-width: 100%;
}

@keyframes slide2 {
  from {
    width: 0%;
    transform: translateX(200px);
  }
  to {
    width: 100%;
    transform: translateX(0px);
    padding: 30 20px;
  }
}
.about-desc {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  border-bottom-width: 20px;
  border-bottom-style: solid;
  -o-border-image: linear-gradient(to right, var(--green), rgba(139, 198, 63, 0.2)) 4;
     border-image: linear-gradient(to right, var(--green), rgba(139, 198, 63, 0.2)) 4;
}
.about-desc img {
  position: relative;
  max-width: 100%;
  z-index: -1;
}
.about-desc i {
  color: var(--green);
  font-size: 1.3em;
}
.about-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9em;
  padding: 40 20px;
}

.about-desc-1 {
  width: 50%;
}

.about-desc-2 {
  width: 50%;
}
.about-desc-2 li {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.about-desc-2 .border {
  height: 4px;
  background: linear-gradient(to right, var(--green), rgba(139, 198, 63, 0));
  width: 0%;
}

@keyframes border-slide {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.about-contact {
  text-align: center;
  font-size: 1.4em;
  padding: 30px;
}
.about-contact a {
  font-weight: bold;
  color: var(--green);
  text-decoration: none;
}
.about-contact span:hover {
  display: inline-block;
  transform: translateY(-4px);
  transition: transform 0.5s ease;
}

@media screen and (max-width: 1200px) {
  .about-desc-1 {
    width: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  }
  .about-desc-2 {
    width: 80%;
  }
  .about-desc-2 ul {
    padding: 40 30px;
  }
  .about-desc {
    background: transparent;
    flex-direction: column;
    justify-content: center;
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  .about-container {
    flex-direction: column;
  }
  .about-1 {
    width: 100%;
    padding: 40 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-1 .about-1-border {
    animation: none;
    opacity: 1;
    transform: translateY(0px);
  }
  .about-1 .about-1-border h3 {
    animation: none;
    white-space: normal;
    transform: translateX(0px);
    width: 100%;
    padding: 20px;
  }
  .about-2 {
    width: 100%;
  }
  .about-desc-2 ul {
    display: grid;
    grid-gap: 10px;
  }
  .about-desc-2 ul li {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 5px;
    justify-content: start;
  }
}
@media screen and (max-width: 768px) {
  .about-desc-2 {
    width: 100%;
  }
}/*# sourceMappingURL=about.css.map */