* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:wght@300;400;500;700&display=swap");
  font-family: "Lato", sans-serif;
}

:root {
  /* Color */
  --palette-primary-main: rgba(238, 185, 0, 1);
  --palette-primary-light: rgba(220, 177, 65, 0.6);
  --palette-primary-dark: rgba(220, 177, 65, 1);
  --palette-primary-darker: rgba(138, 116, 38, 1);
  --palette-primary-highlight: #faf1d0;
  --palette-secondary-main: rgba(7, 32, 62, 1);
  --palette-secondary-dark: rgba(24, 50, 81, 1);
  --palette-secondary-light: rgba(44, 70, 101, 1);
  /* breakpoints */
  --xs: 0px;
  --sm: 600px;
  --md: 900px;
  --lg: 1200px;
  --xl: 1536px;
}

/* Sections and Containers */

nav {
  border-radius: 0px;
}

body {
  display: grid;
  place-items: center;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: clamp(300px, 90%, 1300px);
  padding: 60px 0px;
}

.title-box {
  margin-bottom: 60px;
}

.portraitBorder {
  width: 440px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border: 14px solid rgba(18, 44, 79);
}

.portraitBorderGold {
  width: 440px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border: 14px solid rgb(218, 180, 81);
}

.coaching-logo-div {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.coaching-logo-div-ap {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
}

.blueBorderThick {
  display: grid;
  place-items: center;
  border: 14px solid rgba(18, 44, 79);
}

.logo-size {
  height: 180px;
}

.logo-size-ap {
  height: 110px;
}

.row1 {
  display: grid;
  place-items: center;
  column-gap: 30px;
  grid-template-columns: auto 1fr;
  width: 85%;
  margin: 1em 0em;
}

.about {
  display: grid;
  place-items: center;
  width: 100%;
}

.column1 {
  display: grid;
  place-items: center;
  width: 80%;
  margin: 2rem 0rem;
}

.column2 {
  display: grid;
  place-items: center;
  padding: 1rem;
  background-color: rgb(218, 180, 81);
  margin: 8px;
}

iframe {
  width: clamp(500px, 100%, 1040px);
  height: 252px;
  border: 8px solid #dcb141;
  border-radius: 25px;
  background: #292929;
}

.podcast-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 20px;
}

@media (max-width: 1000px) {
  .podcast-row {
    justify-content: center;
    text-align: center;
  }
}

.podcast-div {
  flex-basis: 48%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .podcast-div {
    flex-basis: 100%;
  }
}

.pod-p {
  font-size: 24px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  padding: 0em;
}

.byu-id-layout {
  display: grid;
  place-items: center;
  grid-template-columns: auto 1fr;
  width: 1008px;
  border: solid 1em rgb(40, 40, 40);
  border-radius: 8px;
  background-color: rgb(40, 40, 40);
  grid-gap: 1em;
}

.thumbnail-lg {
  border-radius: 10px;
  height: 200px;
  width: 200px;
}

.left {
  margin-right: 225px;
}

.right {
  margin-left: 225px;
}

.podcast-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.podcast-box-featured {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
  width: 100%;
}

@media (max-width: 1000px) {
  .podcast-box-featured {
    flex-direction: column;
    text-align: center;
  }
}

.podcast-box-feature-action {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: clamp(280px, 100%, 360px);
}

.podcast-box-feature-iframe {
  width: 100%;
}

.podcast-box-feature-action-title {
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 300;
  text-align: left;
  width: 300px;
  color: var(--palette-primary-dark);
  padding-right: 20px;
  margin-right: 20px;
  line-height: 48px;
  position: relative;
}

.podcast-box-feature-action-title:after {
  content: "»";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .podcast-box-feature-action-title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.03em;
  }
}

.a-button {
  width: 100%;
}

.button-secondary {
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  padding: 5px 10px;
  gap: 10px;
  border: 2px;
  background-color: transparent;
  border: 2px solid var(--palette-secondary-main);
  border-radius: 2px;
  color: var(--palette-secondary-main);
  cursor: pointer;
}

.button-secondary:hover {
  background: #eee;
}

@media (max-width: 600px) {
  .button-secondary {
    font-size: 18px;
    line-height: 22px;
  }
}

.podcast-box-divider {
  border-bottom: 1px solid var(--palette-primary-darker);
  border-top: 1px solid var(--palette-primary-darker);
  margin: 0px auto;
  width: 100%;
}

/* Headings */

h1 {
  font-size: 3.6rem;
  padding: 0.4rem;
  color: var(--palette-primary-dark);
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
}

/* Fonts, weights, colors and Sizes */

.title {
  font-family: Montserrat, sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 78px;
  letter-spacing: 0em;
  text-align: center;
  color: var(--palette-primary-dark);
}

@media (max-width: 600px) {
  .title {
    font-size: 48px;
  }
}

.times {
  font-family: "Times New Roman", serif;
}

.blue {
  color: rgb(18, 44, 79);
}

.bold {
  font-weight: bold;
}

.plain {
  text-decoration: none;
  color: #122c4f;
}

/* HTML Elements */

p {
  font-size: 18px;
  color: rgb(18, 44, 79);
  padding: 0.75em;
}

li {
  list-style-type: none;
  font-size: 18px;
  line-height: 24px;
  padding-left: 1.4rem;
}

.justifyLeft-coaching {
  justify-self: start;
}

/* Accent CSS */

.divider {
  width: clamp(280px, 100%, 500px);
  border-bottom: 2px solid var(--palette-primary-dark);
  border-top: 2px solid var(--palette-primary-dark);
  margin-bottom: 1em;
  margin: 0px auto;
}

.specialDivider {
  width: 150px;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  margin: 0.25em 0em;
}

.div-540 {
  display: none;
}

@media only screen and (max-width: 1315px) {
  .row1 {
    width: 100%;
  }

  .container {
    width: 94%;
    margin: 2em 0em;
  }

  iframe {
    width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  .container {
    width: 100%;
    margin: 2em 1em;
    padding: 1em;
  }

  .portraitBorder {
    width: 360px;
  }

  .portraitBorderGold {
    width: 360px;
  }

  .column1 {
    width: 90%;
  }

  .font16 {
    font-size: 17px;
  }
  .podcast-box-feature-action-title:after {
    display: none;
  }
  .podcast-box-feature-action,
  .podcast-box-feature-action-title {
    width: 100%;
    text-align: center;
  }
  .podcast-box-feature-action {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 975px) {
  .font16 {
    font-size: 16px;
  }

  iframe {
    width: 800px;
    height: 265px;
  }
}

@media only screen and (max-width: 925px) {
  .portraitBorder {
    width: 350px;
  }

  .portraitBorderGold {
    width: 350px;
  }

  .column1 {
    width: 95%;
    margin: 1.2rem 0rem;
  }

  .column2 {
    padding: 1rem 0.2rem;
  }

  .logo-size-ap {
    height: 100px;
  }
}

@media only screen and (max-width: 860px) {
  .portraitBorder {
    width: 440px;
  }

  .portraitBorderGold {
    width: 440px;
  }

  .row1 {
    grid-template-columns: none;
    grid-template-rows: auto auto;
    column-gap: 0px;
    row-gap: 10px;
    width: 90%;
  }

  .column2 {
    padding: 1rem 0.2rem;
  }

  .font16 {
    font-size: 15px;
    padding: 0.75rem 0.25rem;
  }

  iframe {
    width: 700px;
    height: 185px;
  }
}

@media only screen and (max-width: 795px) {
  .font16 {
    font-size: 18px;
    text-align: center;
    padding: 0.75rem 3rem;
  }
}

@media only screen and (max-width: 760px) {
  iframe {
    width: 600px;

    padding: 0.5em;
  }
}

@media only screen and (max-width: 680px) {
  .font16 {
    font-size: 17px;
    padding: 0.75rem 2.5rem;
  }

  .portraitBorder {
    width: 400px;
  }

  .portraitBorderGold {
    width: 400px;
  }

  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 17px;
  }

  li {
    font-size: 17px;
  }

  .column1 {
    margin: 0rem 0rem 1.2rem 0rem;
  }

  iframe {
    width: 550px;
    height: 120px;
  }
}

@media only screen and (max-width: 640px) {
  .font16 {
    font-size: 16px;
  }

  .portraitBorder {
    width: 380px;
  }

  .portraitBorderGold {
    width: 380px;
  }

  h2 {
    font-size: 17.5px;
  }
}

@media only screen and (max-width: 600px) {
  .font16 {
    padding: 0.75rem 1.5rem;
  }

  h2 {
    font-size: 17px;
  }

  iframe {
    width: 500px;
  }
}

@media only screen and (max-width: 570px) {
  .font16 {
    padding: 0.75rem 1.25rem;
  }

  h2 {
    font-size: 16px;
  }

  .container {
    margin: 1em 0em 1.5em 0em;
  }

  iframe {
    width: 480px;
  }

  .podcast-row {
    grid-gap: 1rem;
  }
}

@media only screen and (max-width: 540px) {
  .coaching-logo-div {
    display: none;
  }

  .div-540 {
    display: grid;
    place-items: center;
  }

  .container {
    width: 94%;
  }

  .auto-div {
    display: grid;
    place-items: center;
    grid-template-columns: auto 1fr;
  }

  .portraitBorder {
    border: 10px solid rgba(18, 44, 79);
  }

  .portraitBorderGold {
    border: 10px solid rgb(215, 180, 81);
  }

  .blueBorderThick {
    border: 10px solid rgba(18, 44, 79);
  }

  .logo-size {
    height: 100px;
  }

  p {
    padding: 0.4em;
  }

  iframe {
    width: 460px;
  }
}

@media only screen and (max-width: 510px) {
  .column2 {
    margin: 5px;
  }

  p {
    font-size: 16px;
  }

  li {
    font-size: 16px;
  }

  .font16 {
    font-size: 15px;
  }

  iframe {
    width: 460px;
  }

  .container {
    width: 98%;
  }

  .logo-size {
    width: 100px;
  }

  .logo-size-ap {
    width: auto;
  }
}

@media only screen and (max-width: 495px) {
  .container {
    width: 98%;
  }

  .blueBorderThick {
    border: 8px solid rgba(18, 44, 79);
  }

  iframe {
    width: 420px;
    padding: 0em;
    height: 96px;
  }
}

@media only screen and (max-width: 475px) {
  .portraitBorder {
    width: 350px;
  }

  .portraitBorderGold {
    width: 350px;
  }

  .font16 {
    font-size: 14px;
  }

  h2 {
    font-size: 15px;
    text-align: center;
  }

  .logo-size-ap {
    height: 80px;
    width: auto;
  }

  .container {
    padding: 1em 0em;
  }
}

@media only screen and (max-width: 450px) {
  iframe {
    width: 380px;
  }
}

@media only screen and (max-width: 410px) {
  iframe {
    width: 355px;
  }
}

@media only screen and (max-width: 400px) {
  p {
    font-size: 15px;
  }

  li {
    font-size: 15px;
  }

  h2 {
    font-size: 14px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .portraitBorder {
    width: 300px;
  }

  .portraitBorderGold {
    width: 300px;
  }

  .font16 {
    padding: 0.7rem 0.25rem;
    font-size: 13.5px;
  }
}

@media only screen and (max-width: 380px) {
  h2 {
    font-size: 13.5px;
  }

  .font16 {
    font-size: 13px;
  }

  .portraitBorder {
    width: 290px;
  }

  .portraitBorderGold {
    width: 290px;
  }

  iframe {
    width: 320px;
  }
}

@media only screen and (max-width: 360px) {
  h2 {
    font-size: 18px;
  }

  .font16 {
    font-size: 15px;
    padding: 0.75rem 0.75rem;
  }
}
