body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  background-color: #212529;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.link {
  color: #80c7af;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #80c7af;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #80c7af;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(42, 44, 57, 0.9);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: rgba(42, 44, 57, 0.9);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  background: transparent;
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  background: #80c7af;
}

/** ----------------------- Mobile Navigation ------------------------ */

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: rgba(20, 21, 28, 0.9);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: white;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}
#hero #hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 30vh;
  padding-top: 30px;
  margin-top: 2vh;
}
#hero h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  body {
    text-align: center;
  }
  .collapse p {
    text-align: left;
  }
  #events ul {
    text-align: left;
  }
  #hero .carousel-container {
    height: 30vh;
  }
  #hero h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 991px) {
  #hero-container-image {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Poppins', sans-serif;
}
.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #80c7af;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  color: #2a2c39;
}

.img-lg {
  max-width: 100%;
}

@media (max-width: 991px) {
  section {
    padding: 40px 0;
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content .btn-learn-more {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #80c7af;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #80c7af;
}
.about .content .btn-learn-more:hover {
  background: #80c7af;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .about {
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Combat
--------------------------------------------------------------*/
@media (min-width: 992px) {
  section {
    padding: 60px 0;
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2a2c39;
  padding: 50px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #80c7af;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #80c7af;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Upcoming Events
--------------------------------------------------------------*/
#events {
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  #events {
    padding: 50px 0 80px 0;
    overflow: hidden;
  }
}

#events li {
  list-style: none;
  margin-bottom: 15px;
}

.axe-li {
  width: 25px;
  margin-right: 5px;
}

@media (max-width: 991px) {
  #events ul {
    padding-left: 1.25rem;
  }
}

/*--------------------------------------------------------------
# OUR MEMBERS
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .members {
    padding: 60px 0;
    overflow: hidden;
  }
}

.members .members-carousel,
.members .members-slider {
  overflow: hidden;
}
.members .member-item {
  /* box-sizing: content-box; */
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
.members .member-item .member-img {
  width: 180px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
}
.members .member-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.members .member-item h4 {
  font-size: 14px;
  color: rgb(184, 184, 184);
  margin: 0;
}
.members .member-item .quote-icon-left,
.members .member-item .quote-icon-right {
  color: rgb(216, 216, 216);
  font-size: 26px;
}
.members .member-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.members .member-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.members .member-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.members .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.members .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #80c7af;
}
.members .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #80c7af;
}

/*--------------------------------------------------------------
# JOIN US
--------------------------------------------------------------*/
@media (min-width: 992px) {
  #join-us {
    padding: 60px 0;
    overflow: hidden;
  }
}

.faq {
  padding: 50px 0 0 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #ececf1;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #80c7af;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: #fff;
}
.faq .faq-list .collapsed:hover {
  color: #80c7af;
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (max-width: 991px) {
  .faq {
    padding: 30px 0 0 0;
  }
  .faq .faq-list {
    width: 95%;
    margin: 0 auto;
  }
  #join-us li {
    text-align: left;
  }
}

/*---------- Image Gallery ------------*/

#bottom-row {
  margin-top: 25px;
}

@media (max-width: 991px) {
  #bottom-row {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

@media (min-width: 992px) {
  .contact {
    padding: 60px 0 100px 0;
    overflow: hidden;
  }
}

.contact a:hover {
  color: #80c7af;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #80c7af;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #80c7af;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
