@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.services__icon, .banner .liner {
  z-index: 1;
}

.nav__link {
  display: inline-block;
}

.flex-container, .section, .nav__lists, .nav {
  display: flex;
}

.footer__title, .services, .banner {
  position: relative;
}

.footer__title::before, .services__animate, .banner .liner {
  position: absolute;
}

.services__content, .btn--default, .bg-white {
  background-color: #ffffff;
}

.footer, .btn:hover, .nav {
  background-color: #000000;
}

.btn--primary {
  background-color: #1e266d;
}

.btn--secondary {
  background-color: #01c9f5;
}

.section__title {
  width: 100%;
}

.services__animate {
  height: 100%;
}

.banner .liner {
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  cursor: pointer;
}

.nav__list {
  list-style-type: none;
}

.content__lists, .lists, body {
  padding: 0px;
}

.content__title, .lists, .footer__title, .services__desc, .banner .liner__desc, .banner .liner__title, .nav__lists, body {
  margin: 0px;
}

.copyright, .shortInfo, .lists__link, .footer__title, .btn--secondary, .btn--primary, .btn:hover, .banner .liner__desc, .banner .liner__title, .nav__link {
  color: #ffffff;
}

.content__desc, .copyright, .shortInfo, .lists__link, .footer__title, .services__desc, .section__desc, .banner .liner__desc, .nav__link {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.content__lists, .content__title, .content__heading, .services__title, .section__title, .banner .liner__title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(122, 124, 147, 0.97);
}
.nav__list {
  margin-left: 10px;
}
.nav__link {
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
}
.nav__link:hover {
  color: #1b9ada;
}

.bg-gray {
  background-color: #f9f9f9;
}

.bg-parallax {
  background-image: url("../assets/images/banner/banner-image2.jpg");
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .banner__img {
    max-height: 400px;
  }
}
.banner .liner {
  padding: 0 100px;
  margin-left: 10%;
}
@media (max-width: 767px) {
  .banner .liner {
    padding: 0 10px;
  }
}
.banner .liner__title {
  line-height: 4.5rem;
  font-size: 50px;
}
@media (max-width: 767px) {
  .banner .liner__title {
    font-size: 22px;
    line-height: 2rem;
    margin-bottom: 25px;
  }
}
.banner .liner__desc {
  font-size: 18px;
  max-width: 60%;
  line-height: 2rem;
  margin: 25px 0 50px;
}
@media (max-width: 767px) {
  .banner .liner__desc {
    display: none;
  }
}

.btn {
  border: none;
  padding: 20px;
  font-size: 18px;
  transition: background-color 0.3s linear, color 0.3s linear;
}
.section__title {
  font-size: 36px;
}
.section__desc {
  font-size: 20px;
  margin-top: 0;
}
.section--light {
  color: white;
}
@media (min-width: 576px) {
  .section {
    padding: 100px;
  }
}

.flex-container {
  flex-wrap: wrap;
}

.services {
  margin-bottom: 20px;
}
.services__content {
  padding: 40px;
  box-shadow: 0 0 10px 5px #efefef;
}
.services__animate {
  width: 0px;
  background-color: rgba(1, 0, 255, 0.16);
  transition: width linear 0.25s;
}
.services__icon {
  width: 50px;
}
.services__title {
  font-size: 22px;
  margin: 15px 0;
}
.services:hover > .services__animate {
  width: 100%;
}

.footer {
  padding: 100px 0;
}
.footer__title {
  font-size: 22px;
  margin-bottom: 30px;
}
.footer__title::before {
  content: "";
  left: 0;
  bottom: -10px;
  width: 61px;
  height: 2px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.lists__list {
  list-style-type: none;
}
.lists__list + .lists__list {
  margin-top: 16px;
}
.lists__link {
  font-size: 18px;
  text-decoration: none;
}
.lists__link:hover {
  color: #1b9ada;
}

.shortInfo {
  margin-bottom: 15px;
}
.shortInfo__desc {
  font-size: 16px;
  margin: 16px 0;
}
.shortInfo__text {
  margin-left: 10px;
  font-size: 18px;
}

.copyright {
  padding: 10px;
  text-align: center;
  background-color: #2b2a39;
}

.content__heading {
  font-size: 22px;
  color: #01c9f5;
  margin-bottom: 20px;
}
.content__heading .fa {
  border-radius: 50%;
  margin-right: 30px;
}
.content__title {
  line-height: 4rem;
  color: #1e266d;
  font-size: 50px;
}
.content__desc {
  font-size: 18px;
  color: #696e7b;
  margin: 20px 0;
}
.content__lists {
  font-size: 22px;
  margin-bottom: 30px;
}
.content__list {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.content__list:not(:last-child) {
  margin-bottom: 15px;
}
.content__list .fa {
  font-size: 28px;
  color: #01c9f5;
  margin-right: 20px;
}

.home-image {
  max-width: 80%;
}/*# sourceMappingURL=main.css.map */