/*
$lightgreen: #E3F9C1;
$clearorange: #DFA06A;
$orange: #CE6E50;
$pink: #C75359;
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px; }

body {
  font-family: "IBM Plex Mono", monospace;
  color: #2f333c;
  line-height: 1.6; }

a {
  text-decoration: none;
  color: #2f333c; }

li {
  list-style: none; }

.button--primary, .button--secondary {
  font-size: 15px;
  padding: 12px;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  transition: opacity 0.6s ease-in-out;
  text-decoration: none; }

.button--primary:hover, .button--secondary:hover {
  opacity: 0.6; }

.button--primary {
  background-color: rgba(68, 72, 87, 0.796); }
.button--secondary {
  background-color: rgba(13, 110, 139, 0.75); }

@media only screen and (min-width: 1020px) {
  .button--primary, .button--secondary {
    font-size: 15px; } }
.header {
  text-align: right;
  font-size: 16px;
  height: 65px;
  display: flex;
  justify-content: space-between;
  font-family: "Roboto", sans-serif; }
  .header--logo {
    width: 60px;
    display: block;
    height: auto;
    padding: 5px;
    margin-left: 0.2em;
    transition: all 0.5s ease; }
    .header--logo:hover {
      transform: rotate(360deg); }
  .header--navbar {
    background: #fff; }
    .header--navbar--menu {
      border: 1px solid #d8d8db00; }
      .header--navbar--menu--icon {
        display: block;
        cursor: pointer;
        font-size: 1.5em;
        padding: 10px; }
      .header--navbar--menu--submenu {
        display: flex;
        flex-direction: column;
        display: none;
        background: #fff; }
        .header--navbar--menu--submenu a {
          font-size: 1.2em; }
        .header--navbar--menu--submenu li {
          border: 1px solid #d8d8db;
          width: 200px;
          padding: 10px; }
      .header--navbar--menu:hover {
        border: 1px solid #d8d8db; }
      .header--navbar--menu li:hover > ul {
        display: block; }

@media only screen and (min-width: 700px) {
  .header {
    height: 80px;
    align-items: center; }
    .header--logo {
      margin-left: 0.5em;
      width: 75px; }
    .header--navbar--menu--icon {
      display: none; }
    .header--navbar--menu--submenu {
      display: block;
      display: flex;
      flex-direction: row; }
      .header--navbar--menu--submenu a {
        font-size: 1.3em; }
      .header--navbar--menu--submenu li {
        width: 130px;
        padding: 5px;
        text-align: center;
        border: none; }
        .header--navbar--menu--submenu li:hover {
          background-color: #57a99a; }
          .header--navbar--menu--submenu li:hover a {
            color: #fff; }
    .header--navbar--menu li:hover > ul {
      display: flex; }
    .header--navbar--menu:hover {
      border: 1px solid #d8d8db07; } }
.hero {
  font-size: 16px;
  text-align: center;
  line-height: 1.7; }
  .hero--image {
    height: 200px;
    background-image: url("https://raw.githubusercontent.com/anagaetan/podcastChannel/master/images/sky.jpg");
    background-size: cover;
    background-repeat: no-repeat; }
  .hero--title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.3em;
    padding: 1.5em;
    padding-top: 2em; }
  .hero--content {
    padding-bottom: 1.5em; }
    .hero--content p {
      padding: 0 2em 1em 2em; }
  .hero button {
    position: relative;
    bottom: -0.5em; }

@media only screen and (min-width: 375px) {
  .hero--image {
    height: 250px; } }
@media only screen and (min-width: 470px) {
  .hero--image {
    background-position: center;
    height: 280px; }
  .hero--content {
    padding-bottom: 0; }
  .hero button {
    bottom: -1em; } }
@media only screen and (min-width: 600px) {
  .hero {
    padding-bottom: 1em; }
    .hero button {
      bottom: -2em; }
    .hero--image {
      background-image: url("https://raw.githubusercontent.com/anagaetan/podcastChannel/master/images/skytablet.jpg"); } }
@media only screen and (min-width: 700px) {
  .hero {
    font-size: 17px; }
    .hero--title {
      padding: 2em; }
    .hero--content {
      padding: 0 3.5em 2em 3.5em; }
    .hero button {
      bottom: 0; } }
@media only screen and (min-width: 800px) {
  .hero {
    font-size: 18px; }
    .hero--image {
      background-image: url("https://raw.githubusercontent.com/anagaetan/podcastChannel/master/images/skydesktop.jpg");
      background-position: center; } }
@media only screen and (min-width: 1024px) {
  .hero {
    font-size: 20px;
    padding-bottom: 2em; }
    .hero--title {
      padding: 2em; }
    .hero--content {
      padding: 0 5em 2em 5em; } }
.episodes {
  /*    border: solid rgba(0, 0, 0, 0.096) 1px;*/
  position: relative;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjE3NyIgdmlld0JveD0iMCAwIDM3NSAxNzciIGZpbGw9%0D%0AIm5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDE0%0D%0ATDM3NSAwVjE2MS41TDAgMTc3VjE0WiIgZmlsbD0iIzU3YTk5YSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 16px; }
  .episodes--title {
    padding-top: 5em;
    padding-left: 15%;
    text-align: left;
    font-size: 1.3em;
    padding-bottom: 2em; }
  .episodes--grid {
    padding-bottom: 10em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
  .episodes iframe {
    width: 275px;
    margin: 10px; }

@media only screen and (min-width: 375px) {
  .episodes iframe {
    width: 325px; } }
@media only screen and (min-width: 400px) {
  .episodes iframe {
    width: 350px; } }
@media only screen and (min-width: 500px) {
  .episodes--title {
    padding-top: 5em;
    padding-left: 20%; } }
@media only screen and (min-width: 600px) {
  .episodes {
    font-size: 17px; }
    .episodes iframe {
      width: 450px; } }
@media only screen and (min-width: 768px) {
  .episodes--title {
    padding-top: 6em; }
  .episodes iframe {
    width: 320px;
    margin: 1em; } }
@media only screen and (min-width: 900px) {
  .episodes {
    font-size: 18px; }
    .episodes iframe {
      width: 360px; } }
@media only screen and (min-width: 1024px) {
  .episodes {
    font-size: 20px; }
    .episodes--title {
      padding-top: 5em; }
    .episodes iframe {
      width: 400px; } }
@media only screen and (min-width: 1200px) {
  .episodes--title {
    padding-top: 5em; }
  .episodes iframe {
    width: 450px; } }
.aboutus {
  /*   border: solid rgba(255, 192, 203, 0.123);*/
  padding: 0 2.5em 2em 2.5em;
  padding-bottom: 4em;
  font-size: 16px; }
  .aboutus--title {
    animation: moveDown 10s ease infinite;
    text-align: center;
    font-size: 1.3em;
    padding-bottom: 0.8em; }
  .aboutus--text {
    animation: moveRight 10s ease infinite; }
    .aboutus--text p {
      padding-top: 1em;
      padding-bottom: 1em; }

@keyframes moveRight {
  /*    from {transform: translateX(-30px);}
  to {transform: translateX(0px);}*/
  0% {
    transform: translateX(-30px); }
  10% {
    transform: translateX(0px); }
  100% {
    transform: translateX(0px); } }
@keyframes moveDown {
  /*   from {transform: translateY(-40px);}
  to {transform: translateY(0px);}*/
  0% {
    transform: translateY(-30px); }
  10% {
    transform: translateY(0px); }
  100% {
    transform: translateY(0px); } }
@media only screen and (min-width: 600px) {
  .aboutus {
    display: flex;
    align-items: flex-start;
    padding: 0 4em 3em 4em;
    word-spacing: 5px; }
    .aboutus--title {
      /*border: solid rgba(255, 192, 203, 0.075);*/
      animation: moveRight 10s ease infinite;
      flex: 0.7;
      padding-top: 2em; }
    .aboutus--text {
      /*    border: solid rgba(128, 128, 128, 0.041);*/
      animation: moveDown 10s ease infinite;
      flex: 1; }
      .aboutus--text p {
        padding-top: 0;
        padding-bottom: 1em; } }
@media only screen and (min-width: 768px) {
  .aboutus {
    font-size: 18px;
    padding-top: 3em;
    padding-bottom: 5em; }
    .aboutus--title {
      flex: 0.5; }
    .aboutus--text {
      flex: 1; } }
@media only screen and (min-width: 1024px) {
  .aboutus {
    font-size: 20px;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 4em; }
    .aboutus--title {
      text-align: right;
      padding-right: 3em; }
    .aboutus--text p {
      padding-bottom: 1.5em; } }
@media only screen and (min-width: 1200px) {
  .aboutus--title {
    flex: 0.3; } }
.subscribe {
  font-size: 16px;
  min-height: 400px;
  color: white;
  background-color: #6fb5b5;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 4em 2em; }
  .subscribe--form {
    background: rgba(0, 0, 0, 0.05);
    padding: 2.5em 1em;
    text-align: center; }
    .subscribe--form--title {
      font-size: 1.3em;
      font-weight: normal;
      margin-bottom: 2em; }
    .subscribe--form--row {
      margin-bottom: 2em; }
      .subscribe--form--row input {
        padding: 0.3em; }

@media only screen and (min-width: 375px) {
  .subscribe {
    padding: 4em 3em; } }
@media only screen and (min-width: 425px) {
  .subscribe {
    padding: 4em 15%; }
    .subscribe--form {
      padding: 3em 1.5em; } }
@media only screen and (min-width: 600px) {
  .subscribe {
    padding: 4em 20%; }
    .subscribe--form {
      padding: 3em 2em;
      margin: 0 auto; }
      .subscribe--form--title, .subscribe--form--row {
        margin-bottom: 2em; } }
@media only screen and (min-width: 768px) {
  .subscribe {
    font-size: 18px;
    padding: 5em 20%; }
    .subscribe--form {
      max-width: 500px;
      padding: 4em 3em; } }
@media only screen and (min-width: 1024px) {
  .subscribe {
    font-size: 20px;
    padding: 6em 15%; }
    .subscribe--form {
      max-width: 700px; }
      .subscribe--form--content {
        display: flex;
        justify-content: space-around; }
      .subscribe--form--row {
        margin-bottom: 3em; }
        .subscribe--form--row input {
          text-align: center; } }
.topics {
  font-size: 16px;
  padding: 3em 1em; }
  .topics--title {
    font-size: 1.3em;
    text-align: center;
    border: solid rgba(255, 192, 203, 0.055);
    margin-bottom: 30px;
    font-family: 'IBM Plex Mono', monospace; }
  .topics--grid {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative; }
    .topics--grid figure {
      background: #45464b;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      height: 300px;
      width: 300px;
      margin-bottom: 40px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
      border-radius: 5px; }
      .topics--grid figure img {
        opacity: 0.8;
        position: relative;
        width: 100%;
        height: 100%;
        transition: opacity 0.35s, transform 0.35s;
        backface-visibility: hidden; }
      .topics--grid figure:hover img {
        opacity: 0.4; }
      .topics--grid figure:hover h3 {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      .topics--grid figure:hover h3::after {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      .topics--grid figure:hover p {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
    .topics--grid--imagetext {
      font-family: "Shadows Into Light Two", cursive;
      padding: 2em;
      font-size: 1.25em;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      word-spacing: -0.15em;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
      .topics--grid--imagetext::before, .topics--grid--imagetext::after {
        pointer-events: none; }
      .topics--grid--imagetext h3 {
        font-family: "IBM Plex Sans", sans-serif;
        position: relative;
        overflow: hidden;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0); }
      .topics--grid--imagetext h3::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        content: 'la';
        -webkit-transition: -webkit-transform 0.35s;
        transition: transform 0.35s;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0); }
      .topics--grid--imagetext p {
        padding: 1em 0;
        opacity: 0;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0); }
    .topics--grid--5food, .topics--grid--6fitness, .topics--grid--7travel, .topics--grid--8meditation {
      display: none; }

@media only screen and (min-width: 768px) {
  .topics {
    padding: 3em 1em 6em 1em; }
    .topics--title {
      font-size: 23px; }
    .topics--grid {
      justify-content: center;
      display: grid;
      grid-gap: 20px;
      grid-template-columns: repeat(2, 300px);
      grid-template-rows: repeat(4, 300px); }
      .topics--grid--5food, .topics--grid--6fitness, .topics--grid--7travel {
        display: block;
        background-size: cover; }
      .topics--grid--3food, .topics--grid--2fitness {
        display: none; }
      .topics--grid figure {
        width: auto;
        height: auto;
        margin: 0; }
      .topics--grid--5food {
        grid-column: 2 / 3;
        grid-row: 1 / 3; }
      .topics--grid--6fitness {
        grid-column: 1 / 2;
        grid-row: 2 / 4; }
      .topics--grid--7travel {
        grid-column: 2 / 3;
        grid-row: 3 / 5; }
      .topics--grid--4massage {
        grid-column: 1 / 2;
        grid-row: 4 / 5; } }
@media only screen and (min-width: 1200px) {
  .topics--title {
    font-size: 26px; }
  .topics--grid {
    grid-gap: 30px;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: repeat(3, 300px); }
    .topics--grid--8meditation {
      display: block; }
    .topics--grid--1kids {
      grid-column: 2 / 3;
      grid-row: 1 / 2; }
    .topics--grid--4massage {
      grid-column: 1 / 2;
      grid-row: 3 / 4; }
    .topics--grid--5food {
      grid-column: 1 / 2;
      grid-row: 1 / 3; }
    .topics--grid--6fitness {
      grid-column: 3 / 4;
      grid-row: 1 / 3; }
    .topics--grid--7travel {
      grid-column: 2 / 3;
      grid-row: 2 / 4; }
    .topics--grid--8meditation {
      grid-column: 3 / 4;
      grid-row: 3 / 4; } }
.footer {
  font-size: 22px;
  background: #57a99a;
  position: relative;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3em 1em 2em 1em; }
  .footer--logo {
    position: absolute;
    top: -40px;
    width: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all 0.5s ease; }
    .footer--logo:hover {
      transform: rotate(360deg); }
  .footer--socialLinks {
    margin-bottom: 1.5em;
    display: flex; }
    .footer--socialLinks li {
      padding: 0 0.2em; }
    .footer--socialLinks a {
      color: #fff; }
    .footer--socialLinks i {
      width: 43px;
      border-radius: 20px;
      padding: 10px;
      background: rgba(0, 0, 0, 0.151); }
      .footer--socialLinks i:hover {
        transform: scale(1.1); }
  .footer--copyrights {
    font-size: 0.6em; }

@media only screen and (min-width: 768px) {
  .footer {
    font-size: 25px; }
    .footer--socialLinks i {
      width: 50px; } }
@media only screen and (min-width: 1020px) {
  .footer {
    font-size: 30px; }
    .footer--socialLinks i {
      width: 55px; } }

/*# sourceMappingURL=styles.css.map */
