@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono:500|IBM+Plex+Sans&display=swap");
header {
  position: fixed;
  width: 100vw;
}
body {
  margin: 0;
}
a {
  color: #000;
}
.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color:yellow;
  text-align: center;
}

.header li a:hover,
.header .menu-btn:hover {
  text-decoration: line-through;
  color: yellow;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  text-decoration: none;
  padding: 20px 36px;
  height: 30px;
}

.header .menu {
  font-family: IBM Plex mono;
  text-transform: uppercase;
  clear: both;
  max-height: 0;
  -webkit-transition: max-height .2s ease-out;
  transition: max-height .2s ease-out;
  background-color: rgb(70, 175, 216);
}

.header .menu-icon {
  cursor: pointer;
  float: right;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 50px 25px;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: rgb(51, 51, 51);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 768px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100vw;
  }
  .header img {
    margin-left: 50px;
  }
  .header li {
    float: left;
  }
  .header li a {
    color: rgb(11, 7, 240);
  }
  .header .menu {
    color: rgb(255, 255, 255);
    clear: none;
    max-height: none;
    background: rgb(255, 255, 255);
    margin-right: 100px;
  }
  .header .menu-icon {
    display: none;
  }
}

.hero {
  padding-top: calc(120px + 29px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: IBM Plex Sans;
  font-size: 25px;
  color: black;
  letter-spacing: 0;
  margin: 0px 16px;
}

.hero .hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-top:-100px;
}

.hero .world {
  margin-left: 10px;
  margin-right: 10px;
}

.hero p {
  font-family: IBM Plex Mono;
  font-size: 14px;
  color: #060A24;
  letter-spacing: 0;
  margin-top: -50px;
}

.hero button {
  width: 90vw;
  height: 48px;
  margin-top: 25px;
  background-color: rgb(243, 0, 182);
  font-family: IBM Plex Mono, Medium;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
  color: #060A24;
  text-align: center;
}

.hero button:hover {
  background-image: linear-gradient(to right, rgba(252,234,187,0.91) 0%, rgba(252,234,187,1) 0%, rgba(252,181,0,1) 47%, rgba(248,181,0,1) 51%, rgba(203,98,245,1) 100%);
}

.hero .dot {
  color: rgb(216, 70, 167);
}

.txt-web {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: calc(120px + 70px);
    padding-left: 100px;
    font-size: 64px;
  }
  .hero button {
    width: 25vw;
  }
  .hero button .world {
    margin: 10px 30px;
  }
  .txt-web {
    display: block;
    font-size: 16px;
    width: 34vw;
  }
  .txt-mobile {
    display: none;
  }
}

.episodes {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 1203.5px;
  margin-top: 24px;
  -webkit-clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
          clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
  background-image: linear-gradient(90deg, rgba(244,255,168,1) 0%, rgba(228,134,232,1) 100%);
}

.episodes h2 {
  font-size: 36px;
  font-family: IBM Plex Sans;
  color: rgb(245, 3, 144);
  font-weight: 100;
  margin: 64px 16px 0px;
}

.episodes iframe {
  width: 325px;
  padding: 0px 16px 5.5px;
}

.episodes .iframe--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .css-1lyh787 {
    background-color: #285841;
  }
  .episodes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 900px;
    margin-top: 5px;
    -webkit-clip-path: polygon(0 7%, 100% 0, 100% 93%, 0% 100%);
            clip-path: polygon(0 7%, 100% 0, 100% 93%, 0% 100%);
  }
  .episodes h2 {
    margin: 150px 0px 26px 100px;
  }
  .episodes .iframe--container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 584px 584px;
        grid-template-columns: 584px 584px;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .episodes iframe {
    width: 584px;
    margin-bottom: 20px;
  }
}

.about-us .about--title {
  font-size: 36px;
  font-family: IBM Plex Sans;
  color: #060A24;
  font-weight: 100;
  margin: 16px;
}

.about-us .about--subtitle {
  font-size: 36px;
  font-family: IBM Plex Sans;
  color: #060A24;
  font-weight: 100;
  margin: 16px;
}

.about-us img {
  width: 100vw;
  height: auto;
  position: relative;
  margin-top: -90px;
}

.about-us p {
  font-family: IBM Plex Mono;
  font-size: 14px;
  color: #060a24;
  letter-spacing: 0;
  line-height: 22px;
  padding: 16px;
}

@media (min-width: 768px) {
  .about-us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-us .about-desc-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about-us .about--title {
    margin: 0;
  }
  .about-us .about--subtitle {
    margin: 0 10px;
  }
  .about-us img {
    width: 458px;
    height: 660px;
  }
  .about-us p {
    width: 464px;
    height: 204px;
  }
}

.interviews {
  padding-top: 100px;
}

.interviews .int-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.interviews img {
  width: 100vw;
}

.interviews .interviews--title {
  font-size: 36px;
  font-family: IBM Plex Sans;
  color: #060A24;
  font-weight: 100;
  margin: 54px 16px 0px;
}

@media (min-width: 768px) {
  .interviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .interviews img {
    width: 33.3%;
  }
  .interviews .interviews--title {
    margin-left: 100px;
  }
}

.topics {
  padding-top: 100px;
  margin-top: 48px;
}

.topics .topics--conteiner {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: IBM Plex Sans, medium;
  font-size: 24px;
  color: #060a24;
  letter-spacing: 0;
  text-align: center;
}

.topics .topics--conteiner div {
  margin-top: 13px;
}

.topics .topics--conteiner img {
  margin-top: 40px;
  height: 150px;
  width: auto;
}

.topics .topics--title {
  font-size: 36px;
  font-family: IBM Plex Sans;
  color: #060A24;
  font-weight: 100;
  margin: 16px;
}

@media (min-width: 768px) {
  .topics .topics--title {
    margin-left: 100px;
  }
  .topics .topics--conteiner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .topics .topics--conteiner div {
    margin: 15px;
  }
}

.novedades {
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
  background-image: linear-gradient(90deg, rgba(244,255,168,1) 0%, rgba(228,134,232,1) 100%);
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-justify: center;
}

.novedades .novedades--title {
  padding-top: calc(120px + 29px);
  color: rgb(223, 22, 163);
  font-family: IBM Plex Sans;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 42px;
  margin: 0px 16px;
  text-align: center;
}

.novedades button {
  height: 48px;
  width: 90vw;
  margin-top: 36px;
  margin-left: 16px;
  background-color: rgb(216, 70, 192);
  font-family: IBM Plex Mono, Medium;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
  color: #060A24;
  text-align: center;
  margin-bottom: 67px;
}

.novedades button:hover {
  background-image: linear-gradient(-225deg, rgb(216, 189, 70) 0%, #f05c79 100%);
}

@media (min-width: 768px) {
  .novedades {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 518px;
    -webkit-clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-justify: center;
  font-family: IBM Plex Mono;
}

footer .footer--hero {
  font-size: 14px;
  color: #060A24;
  letter-spacing: 0;
  line-height: 22px;
}

footer .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .iconmedia {
  padding: 16px;
}

@media (min-width: 768px) {
  footer {
    margin: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-justify: center;
  }
}
/*# sourceMappingURL=main.css.map */