@font-face {
  font-family: "MadimiOne";
  src: url("/assets/MadimiOne-Regular-VPdYyUPw.ttf");
}
.landpage-top-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.landpage-top-area {
  width: 100%;
  height: 38rem;
  position: relative;
}

.landpage-heading {
  position: absolute;
  font-family: "MadimiOne";
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  top: 5rem;
  left: 34%;
}

.landpage-top-btn {
  position: absolute;
  top: 23rem;
  left: 34%;
  background: #21C56C;
  border: 1px solid #0aa34f;
  border-radius: 0.4rem;
  width: 10rem;
  padding: 0.6rem 0.1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: ease-in-out 0.25s;
}

.landpage-top-btn:hover {
  background: #0aa34f;
  box-shadow: 0 0 0.3rem #0aa34f;
}

@media (max-width: 767px) {
  .landpage-top-area {
    height: 34rem;
  }
  .landpage-heading {
    font-size: 1.5rem;
    top: 6rem;
    left: 3%;
  }
  .landpage-top-btn {
    top: 19rem;
    left: 3%;
  }
}.home-nav {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  position: absolute;
  width: 97%;
  padding: 0 1rem;
  left: 0;
  z-index: 99;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1843137255), rgba(255, 255, 255, 0.8823529412), rgba(255, 255, 255, 0.8823529412), rgba(255, 255, 255, 0.1843137255));
  justify-content: space-between;
}
.home-nav .left {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.home-nav .toggle {
  display: none;
  padding: 0.5rem;
  font-size: 1.5rem;
}
.home-nav .logo img {
  width: 8rem;
  height: auto;
}
.home-nav .log-in-btn {
  font-weight: 700;
  padding: 0.5rem;
  color: green;
  cursor: pointer;
}
.home-nav .nav-list {
  display: flex;
  column-gap: 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem;
}
.home-nav .nav-list div {
  cursor: pointer;
}
.home-nav .logo-solo {
  display: none;
}
@media (max-width: 780px) {
  .home-nav {
    position: relative;
  }
}
@media (max-width: 767px) {
  .home-nav {
    position: fixed;
    max-height: 3rem;
    overflow: hidden;
    transition: 0.3s;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1843137255), rgba(255, 255, 255, 0.8823529412), rgba(255, 255, 255, 0.8823529412), rgba(255, 255, 255, 0.8823529412));
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .home-nav .toggle {
    display: block;
  }
  .home-nav .log-in-btn {
    display: none;
  }
  .home-nav .logo {
    direction: rtl;
    display: none;
  }
  .home-nav .logo-solo {
    display: block;
  }
  .home-nav .nav-list {
    grid-column: 1/3;
    display: block;
    line-height: 2.5rem;
  }
}

.open-nav {
  max-height: 20rem !important;
}.about-us {
  width: 74%;
  margin: 0 13%;
  min-height: 30rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-top: 8rem;
  position: relative;
  background: linear-gradient(180deg, #fff 70%, #21C56C 30%);
  padding-bottom: 2rem;
}
.about-us .video {
  position: absolute;
  width: 40rem;
  max-width: 90vw;
  aspect-ratio: 16/9;
  top: -18rem;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
}
.about-us .video video {
  width: 100%;
  height: 100%;
  border-width: 0;
}
.about-us .title {
  padding-top: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #21C56C;
}
.about-us .info {
  padding: 1rem;
  color: gray;
  width: 70%;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.about-us .members-container {
  overflow: auto;
  margin-top: 2rem;
  height: max-content;
  padding-bottom: 1rem;
  /* Track */
}
.about-us .members-container::-webkit-scrollbar {
  height: 3px;
  color: white;
}
.about-us .members-container::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.2745098039);
}
.about-us .members-container::-webkit-scrollbar-thumb {
  background: white !important;
  border-radius: 3px;
}
.about-us .members {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 2rem;
  justify-items: center;
}
.about-us .members .each-member {
  max-width: 20rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.137254902);
  border-top: none !important;
  border-radius: 0.5rem;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  padding: 1rem;
  margin: 0 0.5rem;
  border-radius: 0.3rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.about-us .members .each-member .member-title {
  column-gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}
.about-us .members .each-member .member-title .img {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}
.about-us .members .each-member .member-title .img img {
  width: 100%;
  height: 100%;
}
.about-us .members .each-member .member-title .member-info {
  margin-top: 0.5rem;
  text-align: center;
}
.about-us .members .each-member .member-title .member-info .name {
  font-weight: 600;
}
.about-us .members .each-member .member-title .member-info .role {
  color: rgba(0, 0, 0, 0.6705882353);
  font-size: 0.9rem;
}
.about-us .members .each-member .resume {
  font-size: 0.97rem;
  color: rgba(0, 0, 0, 0.8352941176);
}

@media (max-width: 767px) {
  .about-us {
    width: 90%;
    margin: 0 5%;
  }
  .members {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .video {
    margin-top: 4rem;
  }
  .info {
    width: 90% !important;
  }
}.testimonials {
  margin-top: 8rem;
  background-color: #21C56C;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding-bottom: 1rem;
}
.testimonials .title {
  font-size: 2rem;
  text-align: center;
  color: white;
  padding: 1rem 0;
  font-weight: 800;
}
.testimonials .all-users-container {
  overflow: auto;
  padding-bottom: 1rem;
  width: 90%;
  margin: auto;
  /* Track */
}
.testimonials .all-users-container::-webkit-scrollbar {
  height: 3px;
  color: white;
}
.testimonials .all-users-container::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.2745098039);
}
.testimonials .all-users-container::-webkit-scrollbar-thumb {
  background: white !important;
  border-radius: 3px;
}
.testimonials .all-users-t {
  margin: auto;
  width: max-content;
  justify-content: center;
  justify-items: center;
  display: flex;
}
.testimonials .each-user-t {
  background-color: #fff;
  margin: 0.5rem;
  width: 23rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0.3rem;
  min-height: 15rem;
}
.testimonials .each-user-t .user-info {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-areas: "img username" "img stars";
  column-gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.testimonials .each-user-t .user-info .img {
  width: 3.5rem;
  height: 3.5rem;
  grid-area: img;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .each-user-t .user-info .img img {
  width: 100%;
  height: 100%;
}
.testimonials .each-user-t .user-info .name {
  width: 100%;
  grid-area: username;
  color: #000;
  align-items: center;
  font-weight: bold;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  column-gap: 0.5rem;
}
.testimonials .each-user-t .user-info .name span {
  font-weight: lighter !important;
}
.testimonials .each-user-t .user-info .name img {
  width: 2rem;
  height: auto;
  min-height: 1.4rem;
  justify-self: end;
}
.testimonials .each-user-t .user-info .stars {
  grid-area: stars;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  width: 5.5rem;
}
.testimonials .each-user-t .user-info .stars img {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 75%;
}

@media (max-width: 767px) {
  .testimonials {
    width: 100% !important;
  }
  .all-users-t {
    grid-template-columns: 1fr !important;
  }
  .all-users-t .each-user-t {
    width: 80vw !important;
  }
}.footer {
  height: 15rem;
  margin-top: 5rem;
  background-color: #21C56C;
  padding: 0.5rem 0;
}
.footer .logo {
  width: 50vw;
  max-width: 15rem;
  margin: 1rem auto;
}
.footer .logo img {
  width: 100%;
  height: auto;
}
.footer .footer-content .social {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.footer .footer-content .social .each-social {
  font-size: 2rem;
  margin: 0 0.3rem;
  color: white !important;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  transition: 0.3s;
  border-radius: 50%;
}
.footer .footer-content .social .each-social:hover {
  color: #21C56C;
  background-color: #fff;
  color: #21C56C !important;
}
.footer .copyright {
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}.services {
  max-width: 1600px;
  margin: 0 auto;
}

.services-heading {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  color: #21C56C;
}

.services-area {
  width: 80%;
  margin: 0 10%;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  grid-column-gap: 2rem;
}

.services-list {
  list-style: none;
  padding: 0;
  width: 100%;
}
.services-list .services-des {
  transition: 0.4s;
  max-height: 0;
}

.services-list li {
  overflow: hidden !important;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

.services-item-active .services-des {
  max-height: 35rem;
}

.services-list li:hover div {
  color: #000;
}
.services-list li:hover span {
  color: #0073a8;
}

.services-info {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-column-gap: 0.5rem;
}

.services-list li img {
  width: 1.5rem;
  height: 1.5rem;
}

.services-info div {
  color: rgba(0, 0, 0, 0.8078431373);
}

.services-list li span {
  font-size: 0.9rem;
  color: rgba(0, 115, 168, 0.6431372549);
}

.services-item-active {
  background: rgba(139, 255, 197, 0.1921568627);
  border-radius: 0.3rem;
}
.services-item-active .services-info div {
  font-weight: bold;
  color: #000 !important;
}
.services-item-active .services-info span {
  color: #0073a8;
}

.services-des {
  height: auto;
  border-top: 1px dotted rgba(0, 0, 0, 0.2745098039);
  box-sizing: border-box;
  animation: service-anim 0.4s linear;
}

.services-des p {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.7137254902);
}

@keyframes service-anim {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 5rem;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .services {
    width: 90%;
    margin: 0 5%;
  }
  .services-area {
    width: 100%;
    margin: 0;
  }
}
.service-image {
  max-width: 15rem;
  margin: 1rem auto;
}
.service-image img {
  width: 100% !important;
  height: auto !important;
}.try-free {
  width: 74%;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.try-free .right .image {
  width: 100%;
  height: 100%;
}
.try-free .right .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.try-free .left {
  padding: 0.5rem;
}
.try-free .left .title {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 1rem 0;
}
.try-free .left .title span {
  font-size: 1.7rem;
  color: #21C56C;
}
.try-free .left .sub-title {
  margin: 2rem 0;
  color: rgb(80, 80, 80);
  font-size: 1.1rem;
  line-height: 2.4rem;
  width: 90%;
}
.try-free .left .button button {
  background-color: #21C56C;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  font-size: 1.3rem;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
}
@media (max-width: 800px) {
  .try-free {
    width: 98%;
    grid-template-columns: 1fr;
  }
  .try-free .right {
    grid-row: 1/2;
    max-height: 20rem;
  }
  .try-free .left .title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 1rem 0;
  }
  .try-free .left .title span {
    font-size: 1.4rem;
    color: #21C56C;
  }
  .try-free .left .sub-title {
    font-size: 1rem;
    line-height: 1.9rem;
  }
  .try-free .left .button {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }
}