* {
  margin: 0;
  font-family: 'Lato', sans-serif;
}

.container {
  width: 85%;
  margin: auto;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.f-column {
  flex-direction: column;
}

.d-center {
  justify-content: center;
  align-items: center;
}

nav {
  padding: 1.5rem;
}

.t-center {
  text-align: center;
}

#contact {
  margin-top: 2rem;
  color: #272a31;
  font-size: 1rem;
}

#contact a {
  color: #272a31;
  text-decoration: underline;
  font-weight: 700;
}

.past-box img {
  width: 100%;
  height: 250px;
  top: 0;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}

#logo-section img {
  border: 1px solid #d3d3d3;
  padding: 4rem;
  flex-grow: 1;
}

#mobile-nav {
  position: fixed;
  transition: transform 1s ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 60vw;
  background: #272a31;
  z-index: 5;
  padding: 2rem;
}

#mobile-menu-left {
  position: fixed;
  transition: transform 1s ease-in-out;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 40vw;
  background: #d3d3d3 no-repeat fixed left 50% bottom;
  opacity: 1;
  z-index: 3;
}

#mobile-nav li {
  list-style: none;
  margin: 1rem 0;
  font-size: 1.5rem;
}

#mobile-nav li a {
  color: #d3d3d3;
  text-decoration: none;
}

#mobile-menu-btn::before {
  background: red;
}

#mobile-menu-btn {
  z-index: 6;
  height: 50px;
  width: 50px;
  cursor: pointer;
  transition: all 1s ease-in-out;
}

#mobile-menu-burger {
  z-index: 6;
  width: 35px;
  height: 4px;
  border-radius: 5px;
  background: #272a31;
  transition: all 1s ease-in-out;
}

#mobile-menu-burger::after,
#mobile-menu-burger::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 4px;
  background: #272a31;
  border-radius: 5px;
  transition: all 1s ease-in-out;
}

#mobile-menu-burger::after {
  transform: translateY(8px);
}

#mobile-menu-burger::before {
  transform: translateY(-8px);
}

#mobile-menu-btn.open #mobile-menu-burger {
  rotate: 180deg;
  background: transparent;
}

#mobile-menu-btn.open #mobile-menu-burger::before {
  transform: rotate(45deg);
}

#mobile-menu-btn.open #mobile-menu-burger::after {
  transform: rotate(-45deg);
}

.hide-menu {
  transform: translateX(250%);
}

.hide-menu2 {
  transform: translateX(-200%);
}

.show-menu {
  transform: translateX(0);
}

.show-menu2 {
  transform: translateX(0);
}

header {
  padding: 5rem 1rem 5rem 1rem;
  color: #ec5242;
  font-size: 1.5rem;
}

header::before {
  content: '';
  background: url('img/MobileHeaderBG.jpg') no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  height: 1050px;
  opacity: 0.3;
  box-sizing: border-box;
}

hgroup h1 {
  box-sizing: border-box;
  background-image: url('img/MobileMenuBG.jpg');
  font-weight: 900;
  background-size: cover;
  background-clip: border-box;
  -webkit-background-clip: text;
  color: #ec5242;
  -webkit-text-fill-color: transparent;
}

header h5 {
  margin-top: 2.5rem;
  border: 2px #f9f9f9 solid;
  color: #272a31;
  padding: 1.3rem;
  font-weight: 300;
}

header h2 {
  color: #272a31;
  margin: 1.2rem 0 0.5rem 0;
  font-weight: 900;
}

header h3 {
  color: #272a31;
  font-size: 1.3rem;
  font-weight: 500;
}

#main-program {
  background-color: #272a31;
}

footer h2 {
  color: #d3d3d3;
  font-weight: 800;
}

#main-program h2 {
  color: #f9f9f9;
  padding: 1.5rem 0 0.5rem 0;
  margin: 1.5rem 0 0.3rem 0;
  font-weight: 700;
}

.underline {
  margin: 0 auto;
  height: 1px;
  width: 40px;
  background-color: #ec5242;
}

#program-cards {
  margin-top: 1.6rem;
}

.card-program {
  padding: 2rem;
  margin: 0.3rem 1.5rem;
  position: relative;
  box-sizing: border-box;
}

.card-program::before {
  content: '';
  background: url("img/cardProgramBG.png") no-repeat;
  background-size: cover;
  opacity: 0.2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

#join-button {
  background-color: #ec5242;
  margin: 3rem auto;
  width: 60%;
  padding: 2rem;
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 700;
}

.card-program i {
  flex: 1;
  color: #f9f9f9;
  flex-shrink: 1;
}

.card-program h4 {
  flex: 2;
  color: #ec5242;
  flex-shrink: 1;
  margin-left: 0.5rem;
}

.card-program p {
  flex: 3;
  color: #f9f9f9;
  flex-shrink: 4;
}

#featured-section h2 {
  margin: 2rem 0 0.5rem 0;
  font-weight: 700;
  text-align: center;
}

footer .underline {
  margin: 1rem auto;
}

#featured-section .underline {
  margin-bottom: 2.5rem;
}

.card-speaker {
  display: flex;
  transition: transform 1s ease-in-out;
  position: relative;
  padding: 0.5rem;
  width: 90%;
  margin: 0 auto;
}

.speaker-image {
  max-width: 150px;
  max-height: 150px;
  margin-right: 1rem;
}

.card-speaker::before {
  content: '';
  position: absolute;
  background: url('img/SpeakerBG4.jpg') no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 100px 80px;
  z-index: -1;
}

#featured-speakers {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 90%;
  margin: 0 auto;
}

.speaker-resume {
  color: #ec5242;
  font-style: italic;
}

.speaker-line {
  width: 30px;
  height: 2px;
  background-color: #d3d3d3;
  margin: 0.5rem 0;
}

.speaker-description {
  color: #272a31;
}

.ts-1 {
  transition: transform 1s ease-in-out;
}

.ts-12 {
  transition: transform 1.2s ease-in-out;
}

.ts-14 {
  transition: transform 1.4s ease-in-out;
}

.ts-16 {
  transition: transform 1.6s ease-in-out;
}

#see-more {
  transform: translateY(-10%);
  transition: transform 1s ease-in-out;
  padding: 1.2rem;
  margin: 0 auto;
  width: 90%;
  background-color: white;
  border: 1px solid #d3d3d3;
  font-weight: 500;
  letter-spacing: 1.5px;
}

#see-more span {
  margin-left: 1rem;
  color: #ec5242;
  font-size: 1.2rem;
  font-weight: bolder;
}

footer {
  margin-top: 2rem;
}

#img-div {
  flex-wrap: wrap;
}

#img-div > * {
  max-width: 150px;
  min-width: 150px;
  background: #272a31;
  flex-basis: 50%;
  margin: 1.5rem;
}

#footer-logo img {
  width: 40%;
  max-width: 45%;
  min-width: 40%;
}

#img-div img:nth-child(7) {
  margin: 0 auto;
}

.p-fixed {
  position: fixed;
}

#logo-section {
  background: #f9f9f9;
  padding: 2rem;
}

#logo-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  flex-grow: 2;
}

#logo-section .underline {
  margin-bottom: 0.5rem;
}

#logo-section p {
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 2;
}

.past-box {
  position: relative;
  color: #f9f9f9;
  width: 80%;
  margin: 0 auto;
  height: 250px;
  font-size: 1.2rem;
}

#past-box-1 {
  margin-bottom: 1rem;
}

#past-sections {
  padding: 1rem;
}

#past-sections .underline {
  margin-bottom: 1rem;
}

#past-sections h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

#past-sections p {
  margin: 0 2rem 3rem 2rem;
  font-weight: 400;
}

.past-box-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coming-soon-page {
  color: #ec5242;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  width: 100vw;
  height: 50vh;
}

#desktop-menu {
  display: none;
}

#see-whole {
  display: none;
}

#join-button:hover {
  color: #ec5242;
  background-color: #f9f9f9;
  transition: 1s ease-out;
}

#see-more:hover {
  cursor: context-menu;
  color: #f9f9f9;
  background-color: #272a31;
  transition: 1s ease-out;
}

#footer-logo {
  margin-top: 4rem;
  justify-content: space-between;
  padding: 3rem;
  box-sizing: content-box;
  align-items: center;
}

#footer-logo p {
  font-size: 0.9rem;
  color: #272a31;
}

#parterns {
  background-color: #272a31;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  header::before {
    height: 1050px;
  }

  nav {
    padding: 0;
  }

  #mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
  }

  #desktop-menu {
    display: initial;
    width: 50%;
  }

  #black-line {
    background-color: #272a31;
    padding: 0.2rem;
  }

  #black-line ul {
    background-color: #272a31;
    justify-content: end;
  }

  #black-line ul li {
    list-style: none;
    margin: 0.5rem;
  }

  .normal-elements a {
    text-decoration: none;
    color: #272a31;
    margin-right: 2rem;
  }

  #white-line a {
    width: 10%;
  }

  #black-line ul li a {
    color: #f9f9f9;
    background-color: #272a31;
    text-decoration: none;
  }

  #white-line {
    background-color: #f9f9f9;
  }

  #white-line .container {
    padding: 1rem;
    justify-content: space-between;
  }

  #white-line ul li {
    list-style: none;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  #campaign-logo {
    letter-spacing: 0.1px;
    text-decoration: none;
    color: #ec5242;
    border: #ec5242 1px solid;
    padding: 0.5rem;
  }

  .wma-90 {
    width: 90%;
    margin: 0 auto;
  }

  header hgroup {
    width: 90%;
    margin: auto;
  }

  header hgroup h4 {
    font-size: 3rem;
  }

  header hgroup h1 {
    font-size: 5rem;
  }

  header hgroup h5 {
    width: 50%;
  }

  #program-cards {
    flex-direction: row;
    width: 90%;
    margin: auto;
  }

  #main-program .underline {
    margin: 1rem 0 4rem 0;
  }

  .card-program {
    flex-direction: column;
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0.1rem;
  }

  #join-button {
    display: none;
  }

  #see-whole {
    margin: 5rem 0;
    display: initial;
    color: #f9f9f9;
  }

  .card-program h4 {
    margin: 1.5rem 0;
  }

  #see-more {
    display: none;
  }

  .speaker-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
  }

  .card-speaker {
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 1rem;
  }

  .card-speaker:nth-child(n+3) {
    transition: none;
    position: inherit;
    transform: translateX(0);
  }

  #featured-speakers {
    grid-template-columns: 1fr 1fr;
  }

  #parterns {
    background: #272a31;
  }

  .past-box img {
    height: 400px;
  }

  #logo-section img {
    width: 25%;
  }

  #footer-logo img {
    width: 1%;
  }

  #img-div img:nth-child(7) {
    margin: 0;
  }

  .m-auto {
    margin: 0 auto;
  }

  .past-box {
    width: 50%;
    height: 400px;
  }

  #campaign-logo:hover {
    background-color: #ec5242;
    color: #f9f9f9;
    transition: 1s;
  }

  .card-program:hover {
    border: 3px #f9f9f9 solid;
    transition: 1s ease-out;
  }

  #footer-logo {
    margin: 0 auto;
  }
}
