@import url("https://fonts.googleapis.com/css?family=Quicksand");
* {
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

body {
  background: #212121;
}

.navbar {
  background: #424242;
  padding: 10px;
}
.navbar .navbar-brand {
  color: #ffffff;
}
.navbar .navbar-nav li {
  position: relative;
}
.navbar .navbar-nav li a {
  color: #ffffff;
}
.navbar .navbar-nav li .border-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #8a202e;
  transition: .2s all;
}
.navbar .navbar-nav li a:hover + .border-nav {
  width: 100%;
  left: 0;
}

.about {
  margin: 60px auto;
}
.about .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .about .flex-container {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
}
.about .flex-container .photo {
  position: relative;
}
.about .flex-container .photo:before, .about .flex-container .photo:after {
  content: '';
  position: absolute;
}
.about .flex-container .photo:before {
  height: 114%;
  border-radius: 20px;
  background: #8a202e;
  z-index: -1;
  transform: rotate(45deg);
  top: -5%;
  right: 43%;
  width: 40px;
}
.about .flex-container .photo:after {
  height: 114%;
  border-radius: 20px;
  background: #8a202e;
  z-index: -1;
  transform: rotate(-45deg);
  top: -5%;
  width: 40px;
  right: 43%;
}
.about .flex-container .photo img {
  border-radius: 50%;
}
.about .flex-container .content h1 {
  font-size: 4rem;
  color: #8a202e;
}
.about .flex-container .content p {
  max-width: 500px;
  font-size: 1.3rem;
}

.stats .section-name h1 {
  color: #8a202e;
}
.stats ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 536px) {
  .stats ul {
    justify-content: center;
  }
}
.stats ul li {
  text-align: center;
  margin: 10px;
}
.stats ul li .icon {
  width: 150px;
  height: 150px;
  text-align: center;
  background: #424242;
  padding: 20% 0%;
  border-radius: 50%;
  margin: 10px auto;
}
.stats ul li .stats-content h6 {
  color: #8a202e;
}
.stats ul li:first-of-type .icon {
  padding-top: 30%;
}

footer {
  padding: 10px;
  background: #424242;
}
footer ul {
  list-style: none;
  text-align: center;
}
footer ul li {
  margin: 10px;
  display: inline-block;
}

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