@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

@-webkit-keyframes pop {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
    top: 0;
    width: 100vw;
    height: 80vh;
  }
}

@keyframes pop {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
    top: 0;
    width: 100vw;
    height: 80vh;
  }
}
@media (max-width: 800px) {
  .nav__menu__icon {
    position: relative;
    z-index: 30;
  }
  .show__navbar {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    background-color: #000;
    -webkit-animation: pop 0.5s ease-in-out forwards;
            animation: pop 0.5s ease-in-out forwards;
    color: #fff;
    align-items: center;
  }
  .show__navbar li a {
    color: #fff;
  }
}
.hover__effect {
  display: flex !important;
}

.hoverable {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: -50%;
  background-color: #fff;
  width: 15rem;
  z-index: 5;
  border-radius: 0.8rem;
  padding: 1rem;
  gap: 1.2rem 0;
  margin: 0.8rem auto;
}
@media (max-width: 768px) {
  .hoverable {
    background-color: #000;
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    align-items: center;
    margin: 3% auto;
  }
}
.hoverable a {
  color: #3734a9 !important;
  width: 100%;
}
@media (max-width: 768px) {
  .hoverable a {
    color: #fff !important;
  }
}
@media (min-width: 800px) {
  .hoverable::after {
    content: " ";
    position: absolute;
    bottom: 100%; /* At the top of the tooltip */
    left: 40%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    z-index: 5;
    border-color: transparent transparent #fff transparent;
  }
}

.app__header {
  background-image: url(../assets/agilean/background.svg);
}
.app__header nav {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% 0;
}
.app__header nav .app__header__logo {
  width: 15%;
}
@media (max-width: 768px) {
  .app__header nav .app__header__logo {
    width: 30%;
  }
}
.app__header nav .app__header__logo img {
  max-width: 100%;
  margin: auto 0;
  display: block;
}
.app__header nav .app__header__links .nav__menu__icon {
  display: none;
}
@media (max-width: 768px) {
  .app__header nav .app__header__links .nav__menu__icon {
    display: block;
    color: #ff7f5c;
    font-size: 2rem;
  }
}
.app__header nav .app__header__links .show__menu {
  display: block;
}
.app__header nav .app__header__links ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem 1.5rem;
}
@media (max-width: 768px) {
  .app__header nav .app__header__links ul {
    display: none;
  }
}
.app__header nav .app__header__links ul li {
  list-style: none;
  color: #fff;
  position: relative;
}
.app__header nav .app__header__links ul li a {
  text-decoration: none;
  color: #fff;
}
.app__header nav .app__header__links ul li a i {
  font-size: 0.7rem;
  margin-left: 2px;
}
.app__header nav .app__header__links ul li button {
  background-color: #ff7f5c;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
}

.app__hero {
  width: 90%;
  margin: 3% auto;
  text-align: center;
  color: #fff;
}
.app__hero h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 5rem;
  margin: 1% 0;
}
@media (max-width: 768px) {
  .app__hero h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.app__hero p {
  font-weight: 500;
  font-size: 1rem;
  padding: 0 1rem;
  margin: 1% 0;
}
@media (max-width: 768px) {
  .app__hero p {
    font-size: 0.8rem;
  }
}
.app__hero button {
  background-color: #22d497;
  border: none;
  padding: 1rem;
  border-radius: 1.5rem;
  color: #fff;
  margin: 2% 0 4rem;
  cursor: pointer;
}

main {
  width: 100%;
}
main .app__work__with {
  width: 90%;
  margin: 3% auto;
  text-align: center;
}
main .app__work__with h2 {
  font-weight: 600;
}
main .app__work__with div {
  display: grid;
  margin: 2% 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  main .app__work__with div {
    grid-template-columns: repeat(3, 1fr);
    margin: 3% 0;
    gap: 1.5rem 1rem;
  }
}
main .app__work__with div img {
  max-width: 100%;
  display: block;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main .app__work__with div img {
    width: 75%;
  }
  main .app__work__with div img:nth-child(7) {
    display: none;
  }
  main .app__work__with div img:last-child {
    display: none;
  }
}
main .app__work__with a {
  text-decoration: none;
  margin: 1% 0;
}
main .app__work__with p {
  color: #3734a9;
  display: flex;
  align-items: center;
  gap: 0 0.3rem;
  margin: 2% auto;
  justify-content: center;
  cursor: pointer;
  transition: all 5000ms;
}
main .app__work__with details {
  display: flex;
}
main .app__work__with details .flex-col-reverse {
  flex-direction: column-reverse;
}
main .app__work__with details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3734a9;
  gap: 0.3rem;
}
main .app__work__with details summary::marker {
  display: none;
}
main .app__work__with details div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1% auto;
  justify-content: center;
  width: 75%;
  gap: 2rem;
}
@media (max-width: 768px) {
  main .app__work__with details div {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
}
main .app__work__with details div img {
  max-width: 100%;
}
main .app__orange__section {
  background-color: #ff7f5c;
  text-align: center;
  padding: 1rem 0;
}
main .app__orange__section img {
  display: block;
  margin: 2% auto;
  max-width: 100%;
}
main .app__orange__section p {
  width: 90%;
  margin: 2% auto;
  font-weight: 400;
  line-height: 2rem;
}
main .app__services {
  background-color: #3734a9;
  padding: 2% 0;
  text-align: center;
}
main .app__services h2 {
  color: #fff;
  margin: 1% 0;
}
main .app__services .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 50%;
  margin: 2% auto 3%;
  gap: 1rem 0;
  justify-content: center;
}
@media (max-width: 768px) {
  main .app__services .container {
    gap: 1.5rem 0;
    width: 95%;
    margin: 4% auto;
  }
}
main .app__services .container .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.3rem;
}
@media (max-width: 768px) {
  main .app__services .container .item {
    gap: 0 0.1rem;
  }
}
main .app__services .container .item img {
  max-width: 100%;
  width: 10%;
}
@media (max-width: 768px) {
  main .app__services .container .item img {
    width: 15%;
  }
}
main .app__services .container .item p {
  color: #fff;
  font-size: 0.9rem;
}
@media (max-width: 425px) {
  main .app__services .container .item p {
    font-size: 0.5rem;
  }
}
main .app__services .colored__cards__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 2% auto;
  gap: 1rem 1.3rem;
}
@media (max-width: 768px) {
  main .app__services .colored__cards__container {
    margin: 4% auto;
    width: 95%;
    gap: 1rem;
  }
}
main .app__services .colored__cards__container div {
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main .app__services .colored__cards__container div {
    width: 100%;
    padding: 6%;
  }
}
main .app__services .colored__cards__container div h3 {
  color: #3734a9;
  margin: 3% 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  main .app__services .colored__cards__container div h3 {
    font-size: 0.6rem;
  }
}
main .app__services .colored__cards__container div p {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main .app__services .colored__cards__container div p {
    font-size: 0.7rem;
    width: 100%;
  }
}
main .app__services .colored__cards__container .orange__card {
  background-color: #ff7f5c;
}
main .app__services .colored__cards__container .green__card {
  background-color: #22d497;
}
main .app__services .colored__cards__container .green__card p {
  color: #fff;
}
main .app__team {
  text-align: center;
  width: 90%;
  margin: 3% auto;
}
main .app__team h2 {
  font-weight: 600;
  font-size: 2rem;
  margin: 2% 0;
}
@media (max-width: 425px) {
  main .app__team h2 {
    font-size: 1rem;
  }
}
main .app__team p {
  font-weight: 300;
  opacity: 0.58;
  margin-bottom: 2%;
}
@media (max-width: 425px) {
  main .app__team p {
    margin: 5% auto;
    font-size: 0.8rem;
  }
}
main .app__team .star__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 3% 0;
}
main .app__team .star__container .star__item {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
@media (max-width: 425px) {
  main .app__team .star__container .star__item {
    gap: 0;
    justify-content: flex-start;
  }
}
main .app__team .star__container .star__item img {
  max-width: 100%;
}
main .app__team .star__container .star__item p {
  opacity: 1;
}
@media (max-width: 425px) {
  main .app__team .star__container .star__item p {
    font-size: 0.65rem;
  }
}
main .acquire__section {
  display: grid;
  background-color: #3734a9;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 3% 2%;
  align-items: stretch;
}
@media (max-width: 768px) {
  main .acquire__section {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
}
main .acquire__section .column {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, 1fr);
  gap: 1rem 0;
  border-right: 1px solid #c4c4c4;
  padding: 8%;
  text-align: center;
}
main .acquire__section .column div {
  display: grid;
  place-content: center;
}
main .acquire__section .column:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  main .acquire__section .column {
    border-right: none;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 3%;
  }
  main .acquire__section .column:nth-child(3) div:nth-child(4) {
    grid-column: 1/span 2;
    width: 50%;
    margin: 4% auto 0;
  }
  main .acquire__section .column:last-child div {
    grid-column: 1/span 2;
  }
}
main .acquire__section .column h3 {
  opacity: 0.7;
  color: #fff;
  margin: 3% 0;
}
@media (max-width: 768px) {
  main .acquire__section .column h3 {
    grid-column: 1/span 2;
  }
}
main .acquire__section .column div {
  background-color: #fff;
  padding: 5%;
}
main .acquire__section .column div p {
  font-weight: 500;
  color: #000;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  main .acquire__section .column div p {
    flex-direction: row;
    gap: 0 0.4rem;
  }
}
main .acquire__section .column .infrastructure {
  flex: 2;
  background-color: #ff7f5c;
  grid-row: 6/span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .acquire__section .column .infrastructure p {
  font-weight: 900;
  color: #000;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  main .acquire__section .column .infrastructure p {
    flex-direction: row;
    gap: 0 0.4rem;
  }
}
@media (max-width: 768px) {
  main .acquire__section .column .infrastructure {
    grid-column: 1/span 2;
  }
}
main .acquire__section .column .platform {
  background-color: #ff7f5c;
  grid-row: 5/span 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .acquire__section .column .platform p {
  font-weight: 900;
  color: #000;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  main .acquire__section .column .platform p {
    flex-direction: row;
    gap: 0 0.4rem;
  }
}
@media (max-width: 768px) {
  main .acquire__section .column .platform {
    grid-column: 1/span 2;
  }
}
main .acquire__section .column .software {
  background-color: #ff7f5c;
  grid-row: 4/span 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .acquire__section .column .software p {
  font-weight: 900;
  color: #000;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  main .acquire__section .column .software p {
    flex-direction: row;
    gap: 0 0.4rem;
  }
}
@media (max-width: 768px) {
  main .acquire__section .column .software {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
}
main .acquire__section .column .technology {
  background-color: #22d497;
  grid-row: 3/span 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .acquire__section .column .technology p {
  font-weight: 900;
  color: #fff;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  main .acquire__section .column .technology p {
    flex-direction: row;
    gap: 0 0.4rem;
  }
}
@media (max-width: 768px) {
  main .acquire__section .column .technology {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
}
main .app__visions {
  width: 90%;
  margin: 3% auto;
  padding: 1rem 0;
}
main .app__visions .element {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: #fafaff;
  margin: 2% 0;
  gap: 1rem;
}
main .app__visions .element:nth-child(2n) {
  flex-direction: row-reverse;
}
main .app__visions .element .hexagon {
  background-color: #3734a9;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
          clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  main .app__visions .element .hexagon {
    padding: 1.5rem;
  }
}
main .app__visions .element .hexagon img {
  max-width: 100%;
  background-color: #fff;
  border-radius: 50%;
  padding: 10%;
}
main .app__visions .element .info h3 {
  margin: 0.3rem 0;
}
@media (max-width: 768px) {
  main .app__visions .element .info h3 {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  main .app__visions .element .info p {
    font-size: 0.6rem;
  }
}
main .app__focus {
  background-color: #3734a9;
  color: #fff;
  padding: 3%;
}
main .app__focus h1 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 425px) {
  main .app__focus h1 {
    font-size: 1rem;
  }
}
main .app__focus .app__focus__list {
  display: grid;
  margin: 2% auto;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
  gap: 1rem;
}
main .app__focus .app__focus__list p {
  text-align: center;
}
main .app__focus .app__focus__list p:last-child {
  grid-column: 1/span 2;
  margin: 3% auto;
}
@media (max-width: 425px) {
  main .app__focus .app__focus__list p {
    font-size: 0.7rem;
  }
}
main .person__section {
  width: 90%;
  margin: 2% auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  main .person__section {
    flex-direction: column-reverse;
  }
}
main .person__section .left {
  max-width: 100%;
}
main .person__section .left small {
  color: #ff7f5c;
  text-transform: uppercase;
  font-weight: 700;
  margin: 5% 0;
}
main .person__section .left h3 {
  font-weight: 900;
}
main .person__section .left p {
  color: #757095;
  margin: 0.5rem 0;
}
main .person__section .left .person__items {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
main .person__section .left .person__items .person__item {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  main .person__section .left .person__items .person__item {
    align-items: flex-start;
  }
}
main .person__section .left .person__items .person__item .person__icon {
  background-color: #22d497;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 3%;
}
main .person__section .left .person__items .person__item .person__icon img {
  max-width: 100%;
}
@media (max-width: 768px) {
  main .person__section .left .person__items .person__item .person__description h4,
main .person__section .left .person__items .person__item .person__description p {
    font-size: 0.8rem;
  }
}
main .person__section .left button {
  border: none;
  background-color: #ff7f5c;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin: 2% auto;
  color: #fff;
  width: 60%;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 768px) {
  main .person__section .left button {
    width: 100%;
    margin: 10% auto;
  }
}
main .person__section .right img {
  max-width: 100%;
}

footer {
  background-color: #3734a9;
  color: #fff;
}
footer .top__green {
  cursor: default;
}
@media (max-width: 768px) {
  footer .top__green {
    position: relative;
    bottom: 10px;
  }
}
footer img {
  max-width: 100%;
  cursor: pointer;
}
footer .footer__wrapper {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  gap: 2rem 4rem;
}
@media (max-width: 768px) {
  footer .footer__wrapper {
    flex-direction: column-reverse;
    gap: 2rem 0;
  }
}
footer .footer__wrapper .footer__left {
  display: flex;
  justify-content: flex-start;
  flex-basis: 60%;
}
@media (max-width: 768px) {
  footer .footer__wrapper .footer__left {
    flex-direction: column;
    align-items: center;
    gap: 1rem 0;
  }
}
footer .footer__wrapper .footer__left .footer__logo__container {
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 0.5rem 0;
}
@media (max-width: 768px) {
  footer .footer__wrapper .footer__left .footer__logo__container {
    align-items: center;
  }
}
footer .footer__wrapper .footer__left .footer__logo__container .footer__logo {
  width: 40%;
}
@media (max-width: 768px) {
  footer .footer__wrapper .footer__left .footer__logo__container .footer__logo {
    width: 60%;
  }
}
footer .footer__wrapper .footer__left .footer__logo__container .footer__logo img {
  max-width: 100%;
}
footer .footer__wrapper .footer__left .footer__logo__container p {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  footer .footer__wrapper .footer__left .footer__logo__container p {
    text-align: center;
  }
}
footer .footer__wrapper .footer__left .footer__logo__container a {
  color: #fff;
  text-decoration: none;
}
footer .footer__wrapper .footer__links {
  display: flex;
  gap: 0 3rem;
  padding: 0 2%;
}
@media (max-width: 768px) {
  footer .footer__wrapper .footer__links {
    gap: 0 3.5rem;
  }
}
@media (max-width: 860px) and (min-width: 425px) {
  footer .footer__wrapper .footer__links {
    margin-right: 4%;
  }
}
footer .footer__wrapper .footer__links div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
footer .footer__wrapper .footer__links div a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) and (min-width: 425px) {
  footer .footer__wrapper .footer__links div a {
    font-size: 0.8rem;
  }
}
footer .footer__wrapper .footer__links div h4 {
  color: #ff7f5c;
}
@media (max-width: 768px) and (min-width: 425px) {
  footer .footer__wrapper .footer__links div h4 {
    font-size: 0.8rem;
  }
}
footer form {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 3% 2%;
  gap: 0.5rem 0;
  border-radius: 1rem;
  flex-basis: 40%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  footer form h4 {
    font-size: 0.8rem;
    padding: 1rem 0;
  }
}
footer form input {
  outline: none;
  border: none;
  background-color: #e3e3e3;
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
}
footer form button {
  color: #fff;
  background-color: #ff7f5c;
  padding: 1rem;
  border: none;
  border-radius: 1rem;
}
footer .footer__bottom {
  text-align: center;
  padding: 0 0 3% 0;
}
footer .footer__bottom div {
  display: flex;
  justify-content: center;
  gap: 0 1rem;
}
footer .footer__bottom div a {
  color: #fff;
}
@media (max-width: 425px) {
  footer .footer__bottom div a {
    font-size: 0.8rem;
    color: #ff7f5c;
  }
}/*# sourceMappingURL=agilean.css.map */