/*
Global
*/
* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  font-family: Roboto;
  font-weight: 300;
}
body,
html {
  -webkit-font-smoothing: antialiased;
  font-size: 0.95rem;
  background: #fcfafb;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  height: 100%;
  width: 100%;
  /* overflow-x: hidden; this breaks nav AND pull to refresh?... */
}
.base-button {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: button;
  overflow: visible;
  padding: 15px 20px;
  border: 2px solid white;
  color: rgb(250, 250, 250);
}
.base-button:focus {
  outline: none;
}
.base-button:active {
  transform: scale(0.95);
}
.base-button-a {
  display: inline-block;
  text-decoration: none;
  padding: 15px 50px;
  border: 2px solid white;
  color: rgb(250, 250, 250);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  background-color: transparent;
  cursor: pointer;
  overflow: visible;
}
.base-button-a:focus {
  outline: none;
}
.base-button-a:active {
  transform: scale(0.95);
}
.rounded {
  border-radius: 20px;
}
.disabled {
  background-color: gray;
}
.flipped {
  transform: rotate(180deg);
  margin-bottom: -10px;
}
.not-flipped {
  margin-bottom: -10px;
}

/*
Landing section
*/
.signup-section {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box;
  height: 100vh;
  min-height: 950px;
  background-size: cover;
  background-position: bottom;
  background-image: url('../images/mosque.svg');
  margin-bottom: -2px;
}
.landing-container {
  width: 85%;
  max-width: 1200px;
  justify-content: flex-end;
  position: relative;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: flex;
  box-sizing: border-box;
}
.landing-content {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  width: 700px;
  margin: 220px 0 auto;
  max-width: 100%;
}
.landing-headline {
  font-size: 4.5rem;
  margin: 30px 0 0;
  color: white;
}
.landing-subtitle {
  font-size: 2rem;
  color: white;
}
.landing-subtitle-mobile {
  font-size: 2rem;
  color: white;
  display: none;
}
@media screen and (max-width: 1024px) {
  .signup-section {
    height: 60vh;
  }
  .landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .landing-subtitle {
    display: none;
  }
  .landing-subtitle-mobile {
    display: block;
  }
}

/*
About section
*/
.about-section {
  background-color: rgba(1, 25, 47, 1);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.about-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  box-sizing: border-box;
  width: 85%;
}
.ummahacks_mcay {
  /* margin: -70px 0 50px 0; */
  max-width: 675px;
  max-height: 200px;
  margin: auto;
  width: 675px;
  height: 200px;
  content: url('../images/ummahacks_x_msay.png');
}
.about {
  margin: 130px 25px;
  width: 85%;
  max-width: 1200px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.about-title {
  color: white;
  font-size: 3.5rem;
  margin: 0 0 15px;
  max-width: 600px;
}
.about-text {
  color: white;
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .about {
    margin: 100px 25px 0px 25px;
  }
  .ummahacks_mcay {
    max-width: 500px;
    max-height: 150px;
    width: 500px;
    height: 150px;
    margin: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 800px) {
  .ummahacks_mcay {
    max-width: 300px;
    max-height: 80px;
    width: 300px;
    height: 80px;
    margin-bottom: 25px;
  }
}

/*
FAQ Section
*/
.faq-section {
  background: #fafafa;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faq {
  max-width: 1200px;
  width: 85%;
}
.faq-title {
  font-size: 3.4rem;
  margin: 0 0 15px;
  max-width: 600px;
}
.faq-content {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0 15px 0;
}
.faq-content-title {
  font-size: 2.1rem;
  margin: 0 0 10px;
}
.faq-questions {
  display: flex;
  flex-wrap: wrap;
}
.faq-items {
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .faq-items {
    width: 100%;
    margin-bottom: 25px;
  }
  .faq-questions {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.faq-item {
  min-height: 250px;
  margin-right: 25px;
}
.faq-item-title {
  font-size: 1.5rem;
  margin: 0;
}
.faq-item-content {
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 10px 0;
}
/*
Mosque Separator
*/
.mosque-separator {
  height: 400px;
  background-size: cover;
  background-position: bottom;
  background-image: url('../images/mosque_separator.svg');
  margin-bottom: -2px;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .mosque-separator {
    height: 13vh;
  }
}
@media only screen and (min-width: 1700px) {
  .mosque-separator {
    height: 40vh;
  }
}
@media only screen and (min-width: 2300px) {
  .mosque-separator {
    height: 45vh;
  }
}
@media only screen and (min-width: 2600px) {
  .mosque-separator {
    height: 55vh;
  }
}
/*
Mentors Section
*/
@media only screen and (max-width: 800px) {
  .network-container {
    display: none;
  }
  .mentor-section {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .become-a-mentor {
    margin: 0 15px 0 15px;
    padding-bottom: 30px;
    box-sizing: border-box;
  }
}
.mentor-section {
  background: rgba(1, 25, 47, 1);
  height: 70vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  box-sizing: border-box;
}
.network-container {
  margin: -70px 0 50px 0;
  max-width: 500px;
  max-height: 500px;
  width: 500px;
  height: 500px;
  content: url('../images/network.png');
}
.mentors-title {
  color: white;
  font-size: 3.5rem;
  margin: 0 0 15px;
  max-width: 600px;
}
.mentors-text {
  color: white;
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}
.become-a-mentor {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  height: 55vh;
  width: 500px;
}
/*
Sponsors Section
*/
@media only screen and (max-width: 800px) {
  .sponsors {
    margin: 0 15px 0 15px;
  }
}
.sponsors-section {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-position: bottom;
  background-image: url('../images/sponsors_background.png');
  margin-bottom: -2px;
  box-sizing: border-box;
}
.sponsors {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: 450px;
  margin-bottom: 40px;
}
.sponsors-title {
  color: white;
  font-size: 3.4rem;
  margin: 0 0 15px;
  max-width: 600px;
}
.sponsors-text {
  color: white;
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}
.sponsors-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
/*
Speaker Section
*/
.speaker-section {
  height: 100%;
  padding: 15px;
  background: rgb(208, 221, 224);
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speakers-title {
  color: black;
  font-size: 3.4rem;
  margin: 0 0 15px;
  max-width: 600px;
}
.speakers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.speaker-card {
  background: #fafafa;
  min-width: 275px;
  min-height: 300px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.speaker-card:hover {
  transform: scale(1.05);
}
.speaker-photo {
  max-width: 300px;
  max-height: 300px;
}
.speaker-job-title {
  color: #01192f;
}
.speaker-name {
  font-weight: bolder;
}
.speaker-company-name {
  color: gray;
}
/* Stats Section */
.stats-section {
  color: black;
  padding: 0 15px 0 15px;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: -10px;
}
.stats:after {
  content: '';
  width: 10rem;
  height: 0.8rem;
  background-color: #45e19f;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}
.stats {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 50%;
}

.stats .stat {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 2rem;
  margin: 10px;
}

.stats .description {
  color: gray;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  max-width: 80%;
}
.logos img {
  width: 400px;
}
@media only screen and (min-width: 1500px) {
  .logos {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1400px) {
  .logos {
    max-width: 50%;
  }
  .logos img {
    width: 250px;
    max-height: 250px;
  }
}

@media only screen and (max-width: 800px) {
  .logos {
    width: 100%;
  }
  .logos #minterns {
    margin: 0 0 -50px 0;
  }
  .stats {
    width: 80%;
  }
  .stats .stat {
    font-size: 1.5rem;
  }
  .sponsors-text {
    max-width: 400px;
  }
}

.sponsor-logos {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.sponsor-logos:after {
  content: '';
  width: 10rem;
  height: 0.8rem;
  background-color: #45e19f;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}
.sponsor-logos-section {
  color: black;
  padding: 0 15px 0 15px;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: -10px;
}
