.hamburger-container {
	opacity: 0;
	transition: opacity .5s;
}
.hamburger-container:hover {
	opacity: 1;
}

.dn-table-container * {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

*:focus {
    outline: none;
}

@font-face {
  font-family: FoundersGrotesk-Bold;
  src: url('../fonts/FoundersGrotesk/FoundersGrotesk-Bold.otf');
}

@font-face {
  font-family: FoundersGrotesk-Light;
  src: url('../fonts/FoundersGrotesk/FoundersGrotesk-Light.otf');
}
@font-face {
  font-family: FoundersGrotesk-Medium;
  src: url('../fonts/FoundersGrotesk/FoundersGrotesk-Medium.otf');
}

@font-face {
  font-family: FoundersGrotesk-Regular;
  src: url('../fonts/FoundersGrotesk/FoundersGrotesk-Regular.otf');
}


.dn-table-container {
  /* background: black; */
  font-family: PatronWEB-Light;
  /* padding: 40px 5% 0 5%; */
}

.top-bar {
  content: '';
  width: 0;
  height: 6px;
  background: white;
  margin-bottom: 30px;
  transition: width 1s ease-out .3s;
}
.top-bar.load {
  width: 100%;
}

.table-header {
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.table-header__title {
  font-family: FoundersGrotesk-Medium;
  font-size: 3rem;
}

.table-header__description {
  display: flex;
  font-family: FoundersGrotesk-Regular;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
}
.description__p {
  width: 48%;
}

.table-subheader {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  color: white;
  margin: 10px 0 20px 0;
}
.subheader__logo {
  font-family: FoundersGrotesk-Regular;
  font-size: 1.5rem;
}
.logo__icon {
  padding: 0 0 10px 2px;
  width: 10px;
}

.dn-table {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
	margin-bottom: 5rem;
}

.table__link {
	text-decoration: none;
}

.table__cell {
  align-items: flex-start;
  border: 1px solid white;
  color: white;
	cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 15px;
  /* width: 20%; */
}

.cell__mood {
  font-family: FoundersGrotesk-Medium;
  font-size: 2rem;
}

.cell__nt {
  font-family: FoundersGrotesk-Light;
  font-size: .94rem;
  margin-top: .35rem;
  text-transform: uppercase;
}

.cell__icon-container {
  align-items: center;
  display: flex;
  height: 140px;
  justify-content: center;
  width: 100%;
}
.icon-container__icon {
  margin: 10px auto 10px auto;
  opacity: 1;
  width: 120px;
}

.cell__label {
  font-family: FoundersGrotesk-Bold;
  font-size: .75rem;
  line-height: 1.3rem;
}
.cell__benefit {
  font-family: FoundersGrotesk-Light;
  line-height: 1.3rem;
}

#social-icons {
	display: none;
}

@media only screen and (max-width: 950px) {
  .dn-table {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .dn-table {
    grid-template-columns: repeat(2, 1fr);
  }
  .table-header {
    flex-direction: column;
  }
  .table-header__description {
    margin-top: 20px;
    width: 100%;
  }
  .description__p {
    width: 45%;
  }
}
@media only screen and (max-width: 500px) {
  .dn-table {
    grid-template-columns: repeat(1, 1fr);
  }
  .table-header__description {
    flex-direction: column;
  }
  .description__p {
    margin-bottom: 10px;
    width: 100%;
  }
}
