* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", "Arial";
}

html {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: inherit;
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
  background: #2a58f0;
  border-radius: 10px;
}

body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

.btn-pattern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.btn-pattern a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 48px;
  background-color: #2a58f0;
  color: white;
  border-radius: 10px;
  font-weight: 500;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.btn-pattern a:hover {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4588235294));
}
.btn-pattern a:active {
  background-color: #1c3fb1;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 1100px;
  height: 10vh;
  min-height: 98px;
  background-color: #fff;
}
header a {
  color: #2b50c7;
  font-weight: 500;
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 1100px;
  height: 100%;
  max-height: 98px;
  background-color: inherit;
}
header nav .nav_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1150px;
  height: 100%;
}
header nav .nav_container .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header nav .nav_container .logo img {
  max-width: 125px;
}
header nav .nav_container .logo img:last-of-type {
  display: none;
}
header nav .nav_container .options {
  width: 50%;
  max-width: 400px;
  text-transform: capitalize;
}
header nav .nav_container .options ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav .nav_container .btn-download {
  max-width: 100px;
}
header nav .nav_container .btn-download a:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6039215686));
}

.fixed {
  position: fixed;
  animation: fixedA 0.5s ease;
  z-index: 1;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
}
.fixed .logo img:first-of-type {
  display: none;
}
.fixed .logo img:last-of-type {
  display: block !important;
}

@keyframes fixedA {
  0% {
    text-decoration: none;
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    text-decoration: none;
    transform: translateY(0);
    opacity: 1;
  }
}
main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 1100px;
  height: auto;
  background-color: #fff;
}

section.banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 1100px;
  max-width: 1150px;
  height: 550px;
  padding-top: 150px;
  margin-bottom: 50px;
  overflow: hidden;
}
section.banner .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}
section.banner .text-container h1 {
  font-size: 2.5em;
  font-weight: 400;
  line-height: 50px;
  color: black;
}
section.banner .text-container h1 span {
  color: #2b50c7;
}
section.banner .text-container p {
  margin-top: 20px;
  line-height: 30px;
  font-size: 1.1em;
  color: black;
}
section.banner .text-container .btn-pattern {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
section.banner .text-container .btn-pattern a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 60px;
}
section.banner .text-container .btn-pattern a ion-icon {
  margin-left: 5%;
  transform: rotateY(180deg);
}
section.banner .text-container .btn-pattern a:nth-of-type(2) {
  background-color: #e1e7fc;
  color: #2b50c7;
  margin-left: 15px;
}
section.banner .text-container .btn-pattern a:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6039215686));
}
section.banner .text-container .btn-pattern a:hover ion-icon {
  animation: arrowAnimation 1.5s ease infinite;
}
@keyframes arrowAnimation {
  0% {
    transform: translateX(5px) rotateY(180deg);
  }
  50% {
    transform: translateX(-2px) rotateY(180deg);
  }
  100% {
    transform: translateX(5px) rotateY(180deg);
  }
}
section.banner .img-container {
  flex: 1;
  padding: 20px;
  pointer-events: none;
}
section.banner .img-container img {
  width: 480px;
}

section.cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 1100px;
  height: auto;
  overflow: hidden;
}
section.cards .cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-width: 1100px;
  max-width: 1150px;
  height: 100%;
  overflow: hidden;
}
section.cards .cards-container .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28.3333333333%;
  height: auto;
  min-height: 350px;
  margin: 40px 20px;
  padding: 10px;
  border: 1px solid blue;
  border-radius: 10px;
  border-bottom: 6px solid blue;
  background-color: #f7f7f7;
  transition: 0.7s ease;
}
section.cards .cards-container .card img {
  width: 80px;
  pointer-events: none;
}
section.cards .cards-container .card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  padding-bottom: 15px;
  min-height: 390px;
}
section.cards .cards-container .card .text h3 {
  width: 95%;
  font-weight: 500;
  margin: 15px 0px;
  color: black;
}
section.cards .cards-container .card .text P {
  width: 95%;
  height: auto;
  min-height: 150px;
  text-align: justify;
  color: black;
}
section.cards .cards-container .card a {
  display: none;
  position: absolute;
  width: 100px;
  padding: 5px;
  border: 2px solid blue;
  border-radius: 10px;
  color: inherit;
  font-weight: 500;
  text-transform: capitalize;
  pointer-events: all;
  text-align: center;
  background-color: white;
  transition: 0.7s ease;
  animation: btnLeave 0.5s ease;
  bottom: -50px;
  color: black;
}
section.cards .cards-container .card a:hover {
  transform: scale(1.1);
  transition: 0.7s ease;
}
@keyframes btnLeave {
  0% {
    display: block;
    bottom: -20px;
    opacity: 1;
  }
  100% {
    display: block;
    bottom: -40px;
    opacity: 0;
  }
}
section.cards .cards-container .card:hover {
  transform: translateY(-15px);
  transition: 0.7s ease;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6039215686));
}
section.cards .cards-container .card:hover a {
  display: block;
  position: absolute;
  bottom: -20px;
  animation: btnRead 0.4s linear;
}
@keyframes btnRead {
  0% {
    display: block;
    bottom: -40px;
    opacity: 0;
  }
  100% {
    display: block;
    bottom: -20px;
    opacity: 1;
  }
}

section.slider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 600px;
  padding: 100px 0px;
}
section.slider .slider-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 1000px;
  max-width: 1050px;
  height: 95%;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s ease;
}
section.slider .slider-container img {
  max-width: 100%;
  pointer-events: none;
}
section.slider .slider-container .slider-img {
  display: flex;
  overflow: hidden;
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
section.slider .slider-container .slider-img .second-border {
  width: 100%;
  height: 100%;
}
section.slider .slider-container .slider-img .second-border .img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.8s ease;
}
section.slider .slider-container .slider-img .second-border img {
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
section.slider .slider-container .slider-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  padding: 10px;
}
section.slider .slider-container .slider-text div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 100%;
  text-align: center;
}
section.slider .slider-container .slider-text div img {
  max-width: 250px;
  height: auto;
}
section.slider .slider-container .slider-text div h4 {
  width: 85%;
  height: auto;
  margin: 25px 0px;
  font-weight: 400;
  line-height: 30px;
  font-size: 1.3rem;
  color: #4b4b4b;
}
section.slider .slider-container .slider-text div a {
  height: auto;
  color: rgba(56, 56, 56, 0.6431372549);
  text-transform: uppercase;
  font-weight: 500;
}
section.slider .slider-container .slider-text div a:hover {
  color: #2b50c7;
}
section.slider .slider-container .slider-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  max-width: 1100px;
}
section.slider .slider-container .slider-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  border: 1px transparent;
  background-color: #2a58f0;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
section.slider .slider-container .slider-button button span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
section.slider .slider-container .slider-button button:hover {
  background-color: #1c3fb1;
}
section.slider .slider-container .slider-button button:active {
  background-color: #2a58f0;
}
section.slider .slider-container .slider-button span:hover {
  animation: arrowAnimationSlider 1.5s ease infinite;
}
@keyframes arrowAnimationSlider {
  0% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(2px);
  }
}

.active {
  display: flex !important;
  opacity: 1;
  transition: 0.8s ease;
}

.none {
  display: none !important;
  opacity: 0;
  transition: 0.8s ease;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 1100px;
  height: 10vh;
  background-color: #181818;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 800px;
  max-width: 950px;
  height: 85%;
  text-align: center;
}
footer .container a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .copy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  flex: 1;
  color: black;
}
footer .copy a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: rgba(141, 141, 141, 0.4588235294);
}
footer .copy a span {
  margin: 0px 5px;
}
footer .made {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: 1;
}
footer .made .container-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: 0.5s ease;
  padding: 5px;
  opacity: 0.35;
  border-radius: 10px;
}
footer .made .container-social span {
  margin: 0;
  font-weight: 500;
  color: white;
  font-size: 1rem;
  z-index: 1;
}
footer .made .container-social .social-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
}
footer .made .container-social .social-link a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  color: black;
}
footer .made .container-social .social-link a #icon {
  width: 100%;
  height: 55%;
  margin: 0;
}
footer .made .container-social .social-link a:hover {
  transition: 0.5s ease;
  transform: scale(1.3);
}
footer .made :first-child {
  margin-right: 30px;
}
footer .made .container-social::after, footer .made .container-social::before {
  position: absolute;
  content: "";
  background-color: #2b50c7;
  width: 50%;
  height: 100%;
  transition: 0.5s ease;
}
footer .made .container-social::after {
  left: 0;
}
footer .made .container-social::before {
  right: 0;
  z-index: 1;
}
footer .made .container-social:hover {
  transition: 0.5s ease;
  opacity: 1;
  filter: drop-shadow(0px 0px 20px #2b50c7);
}
footer .made .container-social:hover span {
  transition: 0.8s ease;
  display: none;
}
footer .made .container-social:hover::after {
  transform: translateY(-100%);
}
footer .made .container-social:hover::before {
  transform: translateY(100%);
}/*# sourceMappingURL=main.css.map */