:root {
  --plex-sans: 'IBM Plex Sans', sans-serif;
  --plex-mono: 'IBM Plex Mono', sans-serif;
  --black: #060A24;
  --btn-color: #00F3BB;
  --active-link: rgba(6,10,36,0.56);
  --white: #FFF;
}

/* ----------GLOBAL PROPERTIES---------- */

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--plex-sans);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 32rem;
  height: 100vh;
  color: var(--black);
  display: flex;
  flex-direction: column;
}

p, a {
  font-family: var(--plex-mono);
}

h1, h2 {
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-weight: 400;
}

/* ----------HEADER SECTION---------- */

.header {
  width: 100%;
  height: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color:var(--white);
  z-index: 10;
}

.nav {
  width: 100%;
  padding: 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  width: 2.4rem;
}

.nav__checkbox {
  display: none;
}

.nav__menu-icon {
  width: 1.8rem;
  height: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav__menu-icon--line {
  height: .2rem;
  width: 1.8rem;
  background-color: #000;
  transition: all 0.2s ease;
}
 
.nav__menu-container {
  position: fixed;
  top: 4.4rem;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: all .3s ease;
}

.nav__menu-container .nav__menu-item {
  list-style: none;
  padding-top: 1.6rem;
  padding-left: 1.6rem;
  padding-bottom: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0;
  background-color: #0000EC;
  position: relative;
}

.nav__menu-item > a {
  color: var(--white);
  text-decoration: none;
}

.nav__menu-item > a:hover {
  text-decoration: line-through;
  color: var(--btn-color);
}

.nav__menu-item > a:active {
  text-decoration: line-through;
  color: var(--active-link);
}

/* ----------MENU ICON ANIMATION---------- */

.nav__checkbox:checked + .nav__menu-icon .nav__menu-icon--line.top {
  transform: translateY(5px) rotate(45deg);
}

.nav__checkbox:checked + .nav__menu-icon .nav__menu-icon--line.med {
  opacity: 0;
}

.nav__checkbox:checked + .nav__menu-icon .nav__menu-icon--line.bot {
  transform: translateY(-5px) rotate(-45deg);
}

/* ----------SHOW MOBILE MENU---------- */

.nav__checkbox:checked ~ .nav__menu-container {
  transform: translateX(0%);
}

/* ----------HERO SECTION---------- */

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero__title {
  margin: 7.3rem 0 0 1.6rem;
  white-space: pre-line;
}

.hero__text--mobile,
.hero__text--desktop {
  font-family: var(--plex-mono);
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin: 1.6rem 1.6rem 0 1.6rem;
}

.hero__text--desktop {
  display: none;
}

.hero__btn {
  width: 28.8rem;
  height: 4.8rem;
  margin: 3.6rem 0 2.4rem 1.6rem;
  font-family: var(--plex-mono);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2rem;
  border: none;
  background-color: var(--btn-color);
  cursor: pointer;
}

.hero__btn:hover {
  background-image: linear-gradient(225deg, #0000FE 0%, #00F0B8 100%);
  color: var(--white);
  transition: all 0.2s ease;
}

/* ----------PODCASTS SECTION---------- */

.podcasts {
  width: 100%;
  background-image: linear-gradient(225deg, #0000FF 0%, #0000A3 100%);
  clip-path: polygon(0 3.4%, 100% 0, 100% 96.6%, 0 100%);
  display: flex;
  flex-direction: column;
}

.podcasts__title {
  color: var(--white);
  margin: 6.4rem 0 0 1.6rem;
}

.podcasts__container {
  margin: 2.1rem 1.1rem 14.35rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;  
  gap: 1.1rem;
}

.podcasts__episode {
  width: 29.8rem;
  height: 15.5rem;
}

/* ----------US SECTION---------- */

.us {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.us__img {
  height: 51.9rem;
  align-self: center;
  transform: translateY(-9.55rem);
}

.us__text-container {
  margin-top: -7rem;
  margin-bottom: 5.4rem;
}

.us__title {
  margin: 0 0 0.8rem 1.6rem;
  white-space: pre-line;
}
.us__text {
  font-family: var(--plex-mono);
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin: 0 1.6rem;
}

/* ----------GUESTS SECTION---------- */

.guests {
  width: 100%;
}

.guests__title {
  margin: 0 0 1.4rem 1.6rem;
}

.guests__container {
  display: flex;
  min-width: 32rem;
  flex-wrap: wrap;
  justify-content: center;
}

.guests__img {
  min-width: 32rem;
  max-width: 48rem;
}

/* ----------TOPICS SECTION---------- */

.topics {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topics__title {
  margin: 4.8rem 0 0 1.6rem;
}

.topics__container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  margin-top: 3.7rem;
}

.topics__container--item {
  width: 28.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6.5rem;
}

.topics__container--item:last-child {
  margin-bottom: 4.2rem;
}

.topics__container--icon {
  margin-bottom: 1.3rem;
}

.topics__container--text {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  text-align: center;
}

/* ----------NEWS SECTION---------- */

.news {
  width: 100%;
  background-image: linear-gradient(225deg, #0000FF 0%, #0000A3 100%);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news__title {
  color: var(--white);
  margin: 6.4rem 1.6rem 3.6rem;
}

.news__btn {
  width: 28.8rem;
  height: 4.8rem;
  margin-bottom: 6.7rem;
  font-family: var(--plex-mono);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2rem;
  border: none;
  background-color: var(--btn-color);
  cursor: pointer;
}

.news__btn:hover {
  background-image: linear-gradient(225deg, #0000FE 0%, #00F0B8 100%);
  color: var(--white);
  transition: all 0.2s ease;
}

/* ----------FOOTER SECTION---------- */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__text {
  font-family: var(--plex-mono);
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin: 2.4rem 0 1.6rem;
}

.footer__icons-container {
  width: 22.6rem;
  font-size: 1.6rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.footer__icons-container > a {
  color: var(--black);
}