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

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
}

.container {
  height: 100vh;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  padding: 2%;
}

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

.title span {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.podcast-title {
  text-decoration: none;
  color: inherit;
}

.podcast-title:hover {
  text-decoration: underline;
}

h1 {
  text-decoration: none;
  color: inherit;
}

h1:hover {
  text-decoration: underline;
}

.coach-container {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  color: black;
}

.coach {
  width: 100%;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1em;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.coach img {
  width: 250px;
  height: auto;
  border-radius: 50%;
}

iframe {
  border-radius: 15px;
}

.inner-coach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 330px;
  width: 375px;
}

.inner-coach img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.inner-coach img:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.inner-coach h2 {
  width: 100%;
  text-align: center;
}

.inner-coach a {
  width: 100%;
  text-align: center;
  margin: 20px;
}

@media only screen and (max-width: 986px) {
  .coach {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 100px;
    border: 5px black solid;
    border-radius: 5px;
    padding: 15px;
  }
  .inner-coach {
    margin: 20px;
    width: auto;
    max-width: 400px;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .inner-coach h2 {
    border-bottom: 2px black solid;
    padding-bottom: 5px;
    border-radius: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 986px) {
  .inner-coach {
    margin-right: 41px;
  }
  .coach {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 964px) {
  .coach {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 703px) {
  .inner-coach {
    margin-right: 0px;
    margin: 0px !important;
  }
}

@media only screen and (max-width: 618px) {
  iframe {
    width: 100%;
    height: 169px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
}

@media only screen and (max-width: 446px) {
  .inner-coach h2 {
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 370px) {
  .inner-coach img {
    width: 85%;
    height: auto;
  }
}

@media only screen and (max-width: 320px) {
  .inner-coach h2 {
    font-size: 0.9em;
  }
  .inner-coach img {
    width: 85%;
  }
}
/*# sourceMappingURL=style.css.map */