li {
  list-style: none;
}

.scroll-up {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-up--visible {
  opacity: 1;
  visibility: visible;
}
.scroll-up a {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: #00cc66;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.scroll-up a:hover {
  background: #fb4b4e;
  transform: translateY(-3px);
}
.scroll-up a svg {
  width: 22px;
  color: #f1f5f9;
  stroke: currentColor;
}

.preloader {
  background: #f1f5f9;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;
}
.preloader--hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader .loader {
  position: relative;
  display: grid;
  place-items: center;
}
.preloader .loader__ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #00cc66;
  border-right-color: #00cc66;
  animation: spin 0.8s linear infinite;
}
.preloader .loader__logo {
  position: absolute;
  width: 50px;
  height: 50px;
  animation: pulse 1.2s ease-in-out infinite;
}

.btn {
  padding: 12px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #00cc66;
  color: #f1f5f9;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}
.btn a {
  text-decoration: none;
  color: #f1f5f9;
  font-weight: bold;
}
.btn:hover {
  background: #fb4b4e;
  transition: all 0.3s ease;
}

.underlinewear {
  position: relative;
  z-index: 10;
}

.underlinewear::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #00cc66;
  opacity: 0.6;
  bottom: 2px;
  z-index: -1;
  left: 0;
}

.process__line--detail {
  border-left: 3px solid #00cc66;
  z-index: 10;
}

.process_bar {
  position: relative;
}

.process_bar::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #00cc66;
  top: 5px;
  left: -9px;
  background: #f1f5f9;
  overflow: hidden;
  z-index: -1;
}

@keyframes leftright {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.contact__container--form, .contact__container--icons, .contact__container, .lorem__container, .navbar__menu--links, .navbar__menu, .navbar__logo {
  display: flex;
  align-items: center;
}

.navbar {
  background-color: #f1f5f9;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem calc((100vw - 1200px) / 2);
  z-index: 1000;
  position: relative;
}
.navbar__logo {
  color: #222121;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  margin-left: 24px;
}
.navbar__bars {
  opacity: 0;
  cursor: pointer;
}
.navbar__bars .fa-times {
  display: none;
}
@media screen and (max-width: 768px) {
  .navbar__bars {
    color: #222121;
    opacity: 1;
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 2rem;
  }
}
.navbar__menu {
  list-style: none;
  text-align: center;
  margin-right: 24px;
  opacity: 0.95;
}
@media screen and (max-width: 768px) {
  .navbar__menu {
    z-index: 1000;
    position: fixed;
    width: 70%;
    height: 100vh;
    left: -100vh;
    top: 80px;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: #f1f5f9;
    transition: all 0.5s ease-in-out;
  }
}
.navbar__menu--links {
  color: #222121;
  text-transform: uppercase;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  margin: 30px 0;
}
.navbar__menu--links:hover {
  color: #00cc66;
  transition: all 0.3s ease;
}
.navbar__menu #button {
  padding: 12px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #00cc66;
  margin-left: 16px;
  color: #f1f5f9;
}
.navbar__menu #button:hover {
  background: #fb4b4e;
  transition: all 0.3s ease;
}

.sticky {
  background-color: #f1f5f9;
  position: fixed;
}

.shownav {
  left: 0;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #00cc66;
  border-radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", sans-serif;
}

.hero,
.about,
.services,
.process,
.projects,
.contact {
  scroll-margin-top: 100px;
  background: #f1f5f9;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    height: 100%;
  }
}
.hero__container--left {
  width: 100%;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .hero__container--left {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 280px) {
  .hero__container--left {
    line-height: 1.5;
  }
}
.hero__container--left h1 {
  font-size: 4rem;
  color: #00cc66;
}
@media screen and (max-width: 280px) {
  .hero__container--left h1 {
    font-size: 2.5rem;
  }
}
.hero__container--left h2 {
  font-size: 4rem;
  color: #222121;
}
@media screen and (max-width: 280px) {
  .hero__container--left h2 {
    font-size: 2rem;
  }
}
.hero__container--left p {
  font-size: 2rem;
  font-weight: 700;
  color: #222121;
  margin-top: 1rem;
}
@media screen and (max-width: 280px) {
  .hero__container--left p {
    font-size: 1rem;
  }
}
.hero__container--btn {
  font-size: 1rem;
  background: #00cc66;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  color: #f1f5f9;
  position: relative;
  cursor: pointer;
  outline: none;
}
.hero__container--btn a {
  position: relative;
  z-index: 2;
  color: #f1f5f9;
  text-decoration: none;
}
.hero__container--btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fb4b4e;
  border-radius: 4px;
  transition: all 0.3s ease;
  outline: none;
}
.hero__container--btn:hover:after {
  width: 100%;
}
.hero__container--right {
  text-align: center;
}
.hero__container--img {
  height: 100%;
  width: 100%;
}

.about {
  background: #ffffff;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  .about__container {
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr;
  }
}
.about__container--left {
  text-align: center;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .about__container--left {
    order: 2;
    margin-right: 0;
  }
}
.about__container--left img {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}
.about__container--right {
  line-height: 1.2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__container--right {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 280px) {
  .about__container--right {
    line-height: 1.5;
  }
}
.about__container--right h1 {
  color: #00cc66;
  font-size: 2.5rem;
  margin: 2rem 0;
  text-transform: capitalize;
}
.about__container--right p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #222121;
}
.about__container--btn {
  margin: 1rem 0;
}

.lorem {
  background-color: #f1f5f9;
  display: grid;
  place-items: center;
}
.lorem__container {
  width: 100%;
  max-width: 1500px;
  justify-content: center;
  text-align: center;
  padding: 100px 200px;
}
@media screen and (max-width: 768px) {
  .lorem__container {
    padding: 80px 50px;
  }
}
.lorem__container p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #222121;
  position: relative;
  z-index: 1;
}
.lorem__container p::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #00cc66;
  opacity: 0.15;
  top: -20px;
  left: -40px;
  z-index: -1;
}
.lorem__container p::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00cc66;
  opacity: 0.15;
  bottom: -20px;
  right: -15px;
  z-index: -1;
}

.services {
  background: #ffffff;
  padding: 100px 0px;
}
.services h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #00cc66;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .services h1 {
    font-size: 2rem;
  }
}
.services__container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  justify-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .services__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__container--card {
  background: #f1f5f9;
  width: 90%;
  padding: 50px;
  border-radius: 5px;
  border-bottom: 5px solid #00cc66;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .services__container--card {
    width: 80%;
  }
}
@media screen and (max-width: 280px) {
  .services__container--card {
    width: 90%;
  }
}
.services__container--card:hover {
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.services__container--card::before {
  position: absolute;
  content: "";
  border-radius: 5px;
  border-bottom: 5px solid #fb4b4e;
  transition: all 0.8s ease-in-out;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
}
.services__container--card:hover::before {
  width: 100%;
}
.services__container--card img {
  max-width: 80px;
  max-height: 80px;
}
.services__container--card h3 {
  font-size: 1.5rem;
  margin: 50px 0px 20px;
  text-transform: capitalize;
}
.services__container--card:hover h3 {
  color: #00cc66;
  transition: all 0.3s ease-in-out;
}
.services__container--card p {
  line-height: 1.3;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #222121;
}

.process {
  background: #f1f5f9;
}
.process__container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  padding: 100px 0px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  .process__container {
    grid-template-columns: 1fr;
  }
}
.process__container--left {
  text-align: center;
}
.process__container--left img {
  max-width: 70%;
  max-height: 70%;
}
@media screen and (max-width: 768px) {
  .process__container--left img {
    width: 60%;
    height: 60%;
  }
}
.process__container--right {
  padding: 0px 20px;
}
.process__container--right h1 {
  text-transform: capitalize;
  font-size: 2.5rem;
  color: #00cc66;
}
@media screen and (max-width: 768px) {
  .process__container--right h1 {
    font-size: 2rem;
  }
}
.process__container--right ul {
  margin: 30px 0px;
  list-style: none;
}
.process__container--right li {
  padding-bottom: 20px;
  padding-left: 30px;
  line-height: 1.5;
  font-size: 1rem;
}

.projects {
  background: #ffffff;
}
.projects__container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  justify-items: center;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .projects__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects__container--left {
  display: grid;
  place-items: center;
}
.projects__container--left h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #00cc66;
}
@media screen and (max-width: 768px) {
  .projects__container--left h1 {
    font-size: 2rem;
  }
}
.projects__container--left p {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 20px 0;
}
.projects__container--right {
  display: grid;
  place-items: center;
}
.projects__container .swiper {
  width: 100%;
  padding: 20px 0 40px;
}
.projects__container .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.projects__container .swiper-slide__img-wrap {
  position: relative;
  width: 80%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}
@media screen and (max-width: 768px) {
  .projects__container .swiper-slide__img-wrap {
    width: 90%;
  }
}
@media screen and (max-width: 280px) {
  .projects__container .swiper-slide__img-wrap {
    width: 95%;
  }
}
.projects__container .swiper-slide__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.projects__container .swiper-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(241, 245, 249, 0.92);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects__container .swiper-slide:hover .swiper-slide__overlay {
  opacity: 1;
}
.projects__container .swiper-slide:hover .swiper-slide__img-wrap img {
  opacity: 0;
}
.projects__container .swiper-slide__title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222121;
  margin: 15px 0 5px;
  text-transform: capitalize;
}
.projects__container .swiper-slide__desc {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #222121;
  text-align: center;
  max-width: 320px;
  margin-bottom: 12px;
}
.projects__container .swiper-slide__tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.projects__container .swiper-slide__tech span {
  background: #00cc66;
  color: #f1f5f9;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact {
  background-color: #f1f5f9;
}
.contact__container {
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0;
  margin: 0 auto;
}
.contact__container h1 {
  font-size: 2.5rem;
  text-transform: capitalize;
  margin: 0 10px;
  color: #00cc66;
}
@media screen and (max-width: 768px) {
  .contact__container h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 280px) {
  .contact__container h1 {
    font-size: 1.5rem;
  }
}
.contact__container--icons {
  width: 100%;
  justify-content: space-evenly;
  padding: 50px 0 0px;
}
.contact__container--icons svg {
  color: #00cc66;
  width: 30px;
}
.contact__container--form {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
}
@media screen and (max-width: 280px) {
  .contact__container--form {
    padding: 20px;
  }
}
.contact__container--form input, .contact__container--form textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
}
.contact__container input[type=submit] {
  width: auto;
  background-color: #00cc66;
  color: white;
  text-transform: capitalize;
  font-weight: bold;
  cursor: pointer;
}
.contact__container--form input:focus, .contact__container--form textarea:focus-within {
  border: 1px solid #00cc66;
  outline: none;
}

.footer {
  background-color: #ffffff;
  padding: 0 20px;
}
.footer__container {
  width: 100%;
  max-width: 1300px;
  padding: 50px 0px;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
}
.footer__container--brand {
  cursor: pointer;
}
.footer__container--brand a {
  text-decoration: none;
}
.footer__container--navLinks li {
  margin: 15px 0;
  text-align: center;
}
.footer__container--navLinks li a {
  color: #222121;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer__container--navLinks li a:hover {
  color: #00cc66;
}
.footer__container--contactInfo div {
  padding: 8px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.footer__container .contact--icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__container .contact--icons div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer__container .contact--icons div:hover {
  color: #00cc66;
}
.footer__container .contact--icons svg {
  color: #00cc66;
  width: 24px;
  flex-shrink: 0;
}

/*# sourceMappingURL=styles.css.map */
