@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/*General Elements */
html, body {
  width: 100%;
  height: 100%;
  font-family: "Outfit", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  background-image: url(../images/bg.jpg);
  background-size: cover;
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

.wrapper {
  width: 100%;
  padding-top: 60px;
}

.logo {
  display: block;
  width: 22%;
  margin: auto;
}

.links {
  width: 100%;
  position: absolute;
  bottom: 60px;
  left: 0;
}

ul {
  width: 90%;
  max-width: 1600px;
  margin: auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
ul li {
  width: 20%;
  padding: 0 30px;
}
ul li a {
  display: block;
  width: 100%;
  text-align: center;
}
ul li a img {
  display: block;
  width: 100%;
}
ul li a span.title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  height: 144px;
}
ul li a span.title span {
  width: 100%;
  font-size: 16px;
  color: #6c7f84;
  font-weight: 300;
}
ul li a span.title span strong {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
ul li a small {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 17px;
  background: #6e6e6e;
  line-height: 32px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  max-width: 180px;
  margin: auto;
  text-align: left;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
}
ul li a small i {
  font-style: normal;
  position: relative;
  z-index: 2;
}
ul li a small:before {
  display: block;
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
ul li a small:after {
  display: block;
  content: "";
  position: absolute;
  right: 8px;
  top: 11px;
  width: 14px;
  height: 9px;
  background: url(../images/arrow.png) no-repeat center;
}
ul li a:hover small {
  color: #6e6e6e;
}
ul li a:hover small:before {
  width: calc(100% - 6px);
}

@media screen and (max-width: 1400px) {
  ul li a img {
    margin-bottom: -20px;
  }
  ul li a span.title {
    height: 120px;
  }
  ul li a span.title span {
    font-size: 12px;
  }
  ul li a span.title span strong {
    font-size: 18px;
  }
}
@media screen and (max-width: 1100px) {
  ul li {
    padding: 0 15px;
  }
  ul li a span.title span strong {
    font-size: 15px;
  }
  ul li a span.title small {
    font-size: 12px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 780px) {
  .links {
    bottom: 25%;
  }
  ul li {
    padding: 0 15px;
  }
  ul li a span.title span strong {
    font-size: 13px;
  }
  ul li a span.title small {
    font-size: 10px;
  }
}
@media screen and (max-width: 640px) {
  html, body {
    height: auto;
  }
  body {
    background-position: top center;
    background-size: 300% auto;
  }
  .logo {
    width: 60%;
  }
  .links {
    position: relative;
    bottom: auto;
  }
  ul {
    width: 75%;
    padding-bottom: 60px;
  }
  ul li {
    width: 100%;
    margin-top: 100px;
  }
  ul li a span.title span {
    font-size: 16px;
  }
  ul li a span.title span strong {
    font-size: 24px;
  }
  ul li a small {
    font-size: 17px;
  }
}

/*# sourceMappingURL=style.css.map */
