@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
* {
  padding: 0;
  margin: 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%;
}
.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__header .app__hero {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 425px) {
  .app__header .app__hero {
    flex-direction: column-reverse;
  }
}
.app__header .app__hero img {
  max-width: 100%;
  flex: 1;
}
.app__header .app__hero div {
  flex: 1;
  color: #fff;
}
.app__header .app__hero div h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.app__header .app__hero div p {
  width: 50%;
}
@media screen and (max-width: 425px) {
  .app__header .app__hero div p {
    width: 100%;
    margin: auto;
  }
}

main {
  width: 100%;
}
main section {
  width: 90%;
  margin: 2% auto;
}
main section div {
  margin: 3% auto;
}
main section div h1 {
  font-size: 1.8rem;
  margin: 2% 0;
}
main section div p,
main section div li {
  opacity: 0.58;
}
main section div ul {
  padding-left: 2rem;
}

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=privacy.css.map */