* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

body.dark {
  background: #2e2d42;
}

body.dark .categories__title {
  color: #ffffff;
}

body.dark .categories__list li {
  color: #dfe4ea;
}

body.dark .course {
  background: #3f3d56;
}

body.dark .course__title h3 {
  color: #ffffff;
}

body.dark .course__description p {
  color: #dfe4ea;
}

body.dark .header__brand {
  color: #ffffff;
}

button {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul {
  padding-left: 0;
}

ul li {
  display: block;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 992px) {
  .container {
    max-width: 920px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?gfyb8s");
  src: url("fonts/icomoon.eot?gfyb8s#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?gfyb8s") format("truetype"), url("fonts/icomoon.woff?gfyb8s") format("woff"), url("fonts/icomoon.svg?gfyb8s#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-fire:before {
  content: "\e9a9";
}

.icon-happy:before {
  content: "\e9df";
}

.icon-grin:before {
  content: "\e9e9";
}

.mode button {
  border: 0;
  background-color: #8e44ad;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  min-height: 250px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__banner {
  background-image: url("./images/header.jpg");
  background-size: cover;
  background-position: top;
  min-height: 250px;
  width: 100%;
}

@media (min-width: 768px) {
  .header__banner {
    width: 70%;
  }
}

.header__brand span {
  font-size: 20px;
  margin-left: 10px;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .header__logo {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .header__right .mode {
    display: none;
  }
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .content {
    padding: 0;
  }
}

.content__categories {
  width: 100%;
}

@media (min-width: 768px) {
  .content__categories {
    padding: 0 0 0 30px;
    width: 30%;
  }
}

.content__courses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (min-width: 768px) {
  .content__courses {
    width: 70%;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .content__courses {
    padding: 0;
  }
}

.content .mode {
  display: none;
}

@media (min-width: 768px) {
  .content .mode {
    display: block;
  }
}

.course {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 12px 0px rgba(60, 60, 60, 0.1);
          box-shadow: 0 2px 12px 0px rgba(60, 60, 60, 0.1);
  margin-bottom: 30px;
  max-width: 100%;
  padding: 10px;
}

@media (min-width: 768px) {
  .course {
    max-width: 240px;
  }
}

@media (min-width: 992px) {
  .course {
    max-width: 310px;
  }
}

@media (min-width: 1200px) {
  .course {
    max-width: 255px;
  }
}

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

.course__title h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.course__description p {
  font-size: 14px;
}

.course__button a {
  background-color: #8e44ad;
  border-radius: 5px;
  color: #ffffff;
  display: block;
  margin-left: auto;
  max-width: 90px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}

.categories__list li {
  background-color: #eae1e1;
  border-radius: 50px;
  display: inline-block;
  margin: 0 5px 10px 0;
  padding: 5px 10px;
}

@media (min-width: 768px) {
  .categories__list li {
    display: block;
    background-color: transparent;
  }
}

.categories__list li .icon {
  margin-right: 5px;
}
/*# sourceMappingURL=style.css.map */