@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
#members-sec .members-list ul, #members-sec .members-list ul li.overlay-container a, #footer {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7em;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin: 20px 0px;
  font-size: 1rem;
  word-wrap: break-word;
}

#main-header {
  display: block;
  background: rgba(0, 0, 0, 0.5) url(../img/pexels-lucie-liz-3165335.jpg) no-repeat center center/cover;
  background-blend-mode: color;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000014;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  opacity: 0.8;
  transition: 0.5s;
  z-index: 99;
}
.navbar.top {
  background: transparent;
}
.navbar .logo a {
  color: #1e88e5;
  font-weight: 700;
}
.navbar ul {
  display: flex;
  list-style: none;
}
.navbar ul li a {
  padding: 10px 20px;
  margin-right: 5px;
  width: 100%;
  color: #fff;
}
.navbar ul li a:hover {
  border-bottom: 1px #1e88e5 solid;
}

#showcase {
  height: 100vh;
}
#showcase .showcase-content {
  color: #fff;
  font-size: 1.2rem;
}
#showcase .showcase-content h1 {
  line-height: 1.2em;
}

#home-info {
  color: #fff;
  overflow: auto;
}
#home-info.flex-columns .column-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  line-height: 1.7rem;
}

/* members section */
#members-sec {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.5) url(../img/jack-b-YHFaMjk4uVo-unsplash.jpg) no-repeat center center/cover;
  background-blend-mode: color;
  text-align: center;
}
#members-sec .members-list {
  margin-bottom: 50px;
}
#members-sec .members-list h2 {
  color: #fff;
  margin: 20px 0 30px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
#members-sec .members-list ul {
  list-style: none;
  flex-wrap: wrap;
}
#members-sec .members-list ul li {
  width: 150px;
  height: 150px;
  margin: 10px;
}
#members-sec .members-list ul li img {
  width: 100%;
  height: 100%;
  border: #190c38 solid 2px;
  border-radius: 50%;
}
#members-sec .members-list ul li.overlay-container a {
  width: 100%;
  height: 100%;
  border: #190c38 solid 2px;
  border-radius: 50%;
  background-color: #190c38;
  font-size: 1.4rem;
  -webkit-animation: more-members 2s infinite ease-in-out;
          animation: more-members 2s infinite ease-in-out;
}
#members-sec .members-list ul li.overlay-container a:hover {
  color: #d96a7e;
}

@-webkit-keyframes more-members {
  0% {
    background-color: #310631b2;
  }
  50% {
    background-color: rgba(5, 5, 29, 0.644);
  }
}

@keyframes more-members {
  0% {
    background-color: #310631b2;
  }
  50% {
    background-color: rgba(5, 5, 29, 0.644);
  }
}
/* About Page */
#about-header {
  background: rgba(0, 0, 0, 0.5) url("../img/mateo-vrbnjak-nCU4yq5xDEQ-unsplash.jpg") no-repeat center center/cover;
  background-blend-mode: color;
}

.boxes {
  padding: 30px;
  line-height: 1.6rem;
}
.boxes i {
  color: #fff;
  border-radius: 50%;
  background: #1e88e5;
  padding: 16px;
  margin-bottom: 15px;
}
.boxes h3 {
  font-weight: bold;
}
.boxes p {
  padding: 0 20px;
}

#about-info {
  color: #fff;
  background: #190c38;
}

#opinions {
  background: rgba(25, 12, 56, 0.7) url("../img/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg") no-repeat center center/cover;
  background-blend-mode: color;
  padding: 50px 20px;
  color: #fff;
}
#opinions h1 {
  font-size: 40px;
  margin-bottom: 40px;
  line-height: 1.2;
}
#opinions .opinion {
  background: #190c38;
  margin-bottom: 40px;
  opacity: 0.9;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  max-width: 900px;
  display: flex;
  align-items: center;
}
#opinions .opinion img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
#opinions .opinion p {
  margin: 20px;
}

/* footer */
#footer {
  flex-direction: column;
  background: #000014;
  color: #fff;
  padding: 10px;
  height: 200px;
}
#footer .social a {
  margin: 0 10px;
  color: #fff;
}
#footer .social a:hover {
  color: #1e88e5;
}/*# sourceMappingURL=style.css.map */