@import url("../vendor/bootstrap/scss/bootstrap.css");
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,800;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #16222A;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3A6073, #16222A);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-family: "Poppins", sans-serif;
}

nav {
  border: none;
  background: #16222A;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3A6073, #16222A);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
nav .navbar-brand {
  font-weight: 600;
  border-radius: 5px;
  color: white;
  letter-spacing: 2px;
}
nav .navbar-brand:hover {
  background: #114357;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F29492, #114357);
  -webkit-background-clip: text;
  color: transparent;
}
nav .navbar-toggler-icon {
  color: white;
}
nav .nav-item {
  padding-right: 10px;
}
nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inconsolata", sans-serif;
}
nav .nav-item .nav-link:hover {
  background: #114357;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F29492, #114357);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  -webkit-background-clip: text;
  color: transparent;
}

.hero {
  margin-top: 70px;
  width: 100%;
  transition: all 0.5s ease-in;
}
.hero .hero-body {
  margin-top: 80px;
  margin-left: 5px;
  border-left: 5px solid white;
}
.hero .hero-body p {
  font-size: 25px;
  color: #7cffe9;
  font-family: "Inconsolata", sans-serif;
}
.hero .hero-body h1 {
  font-size: 90px;
  color: white;
  font-weight: 600;
}
.hero .hero-body h2 {
  font-size: 50px;
  color: #dfe9f5;
  font-weight: 500;
}
.hero .hero-body .hero-button {
  display: inline;
  line-height: 50px;
  border-radius: 30px;
  font-size: 20px;
  padding: 9px;
  color: #dfdddd;
  background: #114357;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F29492, #114357);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.hero .hero-body .hero-button:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hero .social-icons {
  margin-top: 20px;
}
.hero .social-icons i {
  color: white;
  width: 30px;
}
.hero .social-icons i:hover {
  background: #114357;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F29492, #114357);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 800px) {
  .hero {
    margin-top: 40px;
  }
  .hero .hero-body p {
    font-size: 20px;
  }
  .hero .hero-body h1 {
    font-size: 65px;
  }
  .hero .hero-body h2 {
    font-size: 35px;
  }
  .hero .tools-icon {
    display: none;
  }
}

.content-about {
  margin-top: 130px;
  font-family: "Poppins", sans-serif;
}
.content-about .about-title h1 {
  color: white;
  font-size: 40px;
}
.content-about .about-title hr {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}
.content-about .about-title ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: space-between;
}
.content-about .about-title ul i {
  color: rgba(255, 255, 255, 0.3);
}
.content-about .about-title ul i:hover {
  background: #114357;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F29492, #114357);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  -webkit-background-clip: text;
  color: transparent;
}
.content-about .about-text {
  color: white;
}
@media (max-width: 800px) {
  .content-about .tools-icon {
    display: none;
  }
}

.content-qualification {
  margin-top: 130px;
  font-family: "poppins", sans-serif;
}
.content-qualification h1 {
  color: white;
  margin-bottom: 0;
}
.content-qualification h3 {
  color: white;
  font-family: "inconsolata", sans-serif;
  font-size: 16px;
  margin-top: 0;
  color: #7cffe9;
  margin-bottom: 50px;
}
.content-qualification .card {
  height: 155px;
  color: #dfe9f5;
  margin-bottom: 20px;
  display: flex;
  padding: 15px;
  justify-content: center;
  background: rgba(22, 34, 42, 0.5);
  border: none;
}
.content-qualification .card:hover {
  background: rgba(58, 96, 115, 0.9);
}
.content-qualification .card .icon {
  color: #7cffe9;
  position: absolute;
  top: 35%;
  left: 10%;
}
.content-qualification .card .title {
  margin-bottom: 10px;
  text-align: right;
  font-size: 10px;
}
.content-qualification .card .subtitle {
  font-family: "Inconsolata", sans-serif;
  color: #dfe9f5;
  text-align: right;
}
.content-qualification .card .subtitle p {
  margin-bottom: 0;
  padding: 0;
}/*# sourceMappingURL=main.css.map */