/* Colors */
/* Fonts */
/* Border Radius' */
/* Screen Sizes */
.red-gradient {
  background: #c93032;
  background: linear-gradient(310deg, #C95000, #c93032);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0.5px 0.5px 2px #b11010;
}
.red-gradient h1 {
  margin: 0;
  line-height: 1;
}
.red-gradient a:hover, .red-gradient a:focus {
  text-shadow: none;
  color: black;
}
.red-gradient a.btn-ghost {
  background: rgba(0, 0, 0, 0);
  font-size: 1.1em;
  border: 2px solid #ffffff;
  border-radius: 5px;
}
.red-gradient a.btn-ghost:hover {
  color: #ffffff;
  text-decoration: underline;
  background: rgb(159.8313253012, 38.1686746988, 39.7590361446);
}

.green-gradient {
  background: #08b55a;
  background: linear-gradient(310deg, #85bc19, #08b55a);
}

.blue-gradient {
  background: #1a85c1;
  background: linear-gradient(310deg, #0bada8, #1a85c1);
}

.purple-gradient {
  background: #8342b2;
  background: linear-gradient(310deg, #af2cc6, #8342b2);
}

.explore-ada {
  max-width: 1300px;
  width: 100%;
  padding: 1em;
  margin: 0 auto;
}
.explore-ada h2 {
  line-height: 1.85;
  border-bottom: 3px solid #000;
}
.explore-ada a {
  font-size: 1.2rem;
}
.explore-ada ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.explore-ada ul li {
  margin: 0.75em 0;
}
.explore-ada ul li:last-child {
  margin-top: 2em;
}
.explore-ada ul li:last-child a {
  color: #1a85c1;
  font-weight: bold;
  font-size: 1.1rem;
}

.neada-bullet {
  width: 35px;
  height: 35px;
  float: left;
  margin-top: 24px;
}
.neada-bullet + h2 {
  margin-left: 45px;
}

.explore-topics {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
}
.explore-topics > div {
  width: 33%;
}
.explore-topics .text-container {
  margin-top: 0;
  padding-top: 0;
}
.explore-topics .text-container-image {
  margin: 0 1em;
  padding: 0;
  border: 1px solid #ececec;
}
.explore-topics .text-container-heading {
  margin-bottom: 0;
  padding-bottom: 5px;
  background-color: #ececec;
}
.explore-topics img {
  width: 100%;
  padding: 0;
}

.explore-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.explore-wrapper .explore-container {
  flex: 4;
}
@media (max-width: 767px) {
  .explore-wrapper .explore-container {
    width: 100%;
    flex: auto;
  }
}
.explore-wrapper .explore-glossary {
  flex: 1;
}
@media (max-width: 767px) {
  .explore-wrapper .explore-glossary {
    width: 100%;
    flex: auto;
    margin: 0 auto;
  }
}
.explore-wrapper .explore-container-intro {
  display: flex;
}
@media (max-width: 767px) {
  .explore-wrapper .explore-container-intro {
    flex-direction: column;
  }
}
.explore-wrapper .explore-container-intro > div {
  flex: 1;
}
.explore-wrapper .explore-item {
  margin: 2em auto;
  padding-right: 4em;
}
.explore-wrapper .explore-item ul {
  /*padding-left: 45px;*/
}
@media (max-width: 767px) {
  .explore-wrapper .explore-item {
    width: 100%;
    padding: 0;
  }
}

@supports (display: grid) {
  .explore-topics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    /*grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));*/
    grid-auto-rows: 1fr;
  }
  .explore-topics > div {
    width: auto;
  }
}
