/* dm-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/dm-sans-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* dm-sans-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/dm-sans-v15-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* dm-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/dm-sans-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* dm-sans-700italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 700;
    src: url('fonts/dm-sans-v15-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.page-width {
    margin: 0 auto;
    padding: 0 5rem;
    max-width: 1400px;
    width: 100%;
}

@media screen and (max-width: 320px) {
    .page-width {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .page-width {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .page-width {
        padding: 0 2.5rem;
    }
}

* {
    box-sizing: border-box;
    font-family: 'DM Sans';
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.header-container {
    position: fixed;
    top: 0;
    right: 5rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    z-index: 99;
    transition: 0.5s all;
}

@media screen and (max-width: 320px) {
    .header-container {
        right: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        right: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .header-container {
        right: 2.5rem;
    }
}

.header-container.scroll {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
    z-index: 99;
}

.header-container .contact-social {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: rgb(167,243,249);
    background: linear-gradient(35deg, rgba(167,243,249,1) 0%, rgba(252,190,234,1) 100%);
    border-radius: 20px;
    box-shadow: -3px 3px 2px 3px rgba(0,0,0,0.2);
    transition: 0.5s all;
}

.header-container.scroll .contact-social {
    border-radius: 0 0 0px 20px;
}

.header-container .contact-social a {
    display: flex;
    width: 28px;
    height: 28px;
    transition: 0.2s all;
}

.header-container .contact-social a:hover {
    transform: scale(1.05);
}

.header-container .contact-social a.x {
    display: flex;
    width: 26px;
    height: 24px;
}

.header-container .contact-social a.mail {
    display: flex;
    width: 38px;
    height: 38px;
}

.header-container .contact-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.vertical-margin {
    margin-top: 60px;
    margin-bottom: 60px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.container .main-logo {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width:768px) {
    .container .main-logo {
        margin-top: 60px;
    }
}

.main-logo h1 {
    position: absolute;
    inset: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.main-logo img, .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container .podcasts, .container .player {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.container .podcasts .episode {
    border-radius: 20px;
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.14);
    margin-bottom: 20px;    
    box-shadow: -3px 3px 2px 3px rgba(0,0,0,0.2);
}

.container .podcasts .episode:nth-of-type(even) {
    background-color: rgba(255,255,255,0.05);
}

.container .podcasts .episode h4 {
    border-radius: 15px;
    color: #fff;
    background-color: rgb(158, 17, 174);
    padding: 10px 18px;
    box-shadow: -3px 3px 2px 3px rgba(0,0,0,0.2);
}
.container .podcasts audio {
    width: 100%;
}

.container .podcasts audio::-webkit-media-controls-panel {
    background: rgb(167,243,249);
    background: linear-gradient(35deg, rgba(167,243,249,1) 0%, rgba(252,190,234,1) 100%);
}

.container .podcasts audio::-webkit-media-controls-play-button {
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s all;
}

.container .podcasts audio::-webkit-media-controls-play-button:hover {
    background-color: #FF007F;
}

.view-on {
    text-align: center;
}

.view-on .view-on-container {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 30px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.view-on .view-on-container .logo {
    width: 80px;
    padding: 15px;
    background: rgb(167, 243, 249);
    background: linear-gradient(35deg, rgba(167, 243, 249, 1) 0%, rgba(252, 190, 234, 1) 100%);
    border-radius: 20px;
    box-shadow: -3px 3px 2px 3px rgba(0,0,0,0.2);
    transition: 0.3s all;
}

.view-on .view-on-container .logo:hover {
    transform: scale(1.05);
}

.gdpr-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(167, 243, 249);
    background: linear-gradient(35deg, rgba(167, 243, 249, 1) 0%, rgba(252, 190, 234, 1) 100%);
    padding: 20px;
    z-index: 999999;
    border-radius: 20px;
    box-shadow: -3px 3px 2px 3px rgba(0,0,0,0.2);
}

.gdpr-content {
    text-align: center;
}

.gdpr-buttons button {
    margin: 5px;
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.3s all;
}

.gdpr-buttons button:hover {
    border: 3px solid #8bd0fa;
}