/* PODCAST */
/* www.kawcode.com */
:root {
    --main-color: #003A5D;
    --second-color: #E5CA6A;
    --size: 1.2;
    --bg-color: #fff;
    --text-color: #fff;
    --footer-color: #d6d6d6;
    --footer-line: #425680;
    --bg-hsla: hsla(0, 0%, 100%, 0.315);
    --transition-1: all 0.5s ease-in-out;
    --transition-2: all 0.3s ease-in-out;
    --border-bottom: 2px solid rgba(163, 163, 163, 0.486);
}

.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    /* negative margin */
    position: relative;
}

.column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.bg-big {
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url(../images/pexels-dmitry-demidov-3783471.jpg);
    opacity: 0.4;
    z-index: 0;
}
header, .f-header, footer, .f-footer{
    position: relative;
    z-index: 9;
}

.article-bg {
    z-index: 0;
    background: rgb(0, 58, 93);
    background: -moz-linear-gradient(133deg, rgba(0, 58, 93, 0.3435574913559174) 0%, rgba(255, 192, 83, 0.545) 37%, rgb(255, 204, 18) 100%);
    background: -webkit-linear-gradient(133deg, rgba(0, 58, 93, 0.3435574913559174) 0%, rgba(156, 112, 35, 0.545) 37%, rgba(204, 177, 74, 0.267927239255077) 100%);
    background: linear-gradient(133deg, rgba(0, 57, 93, 0.692) 0%, rgba(65, 58, 56, 0.664) 37%, rgba(255, 207, 16, 0.822) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#003a5d", endColorstr="#ccb14a", GradientType=1);
}

/* main */
.k__podcast {
    display: grid;
    grid-template-columns: 950px;
    justify-content: center;
    z-index: 7;
    position: relative;
    margin-top: 20px;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    display: grid;
    border-radius: 0 0 10px 10px;
    transition: var(--transition-2);
    background-color: var(--bg-hsla);
    border-bottom: var(--border-bottom);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
    transition: var(--transition-2);
    background-color: var(--bg-hsla);
    border-bottom: var(--border-bottom);
}
.k__podcast-serie-link{
    display: grid;
    align-self: center;
    width: 220px;
    text-align: center;
}
.k__podcast-serie-link a{
    color: #999;
    font-size: 1.5rem;
    text-decoration: underline;
}
.k__podcast-text {
    display: grid;
    grid-template-columns: auto;
    max-width: max-content;
    align-self: center;
}

.k__podcast-text-p {
    background-color: var(--bg-hsla);
    border-bottom: var(--border-bottom);
    padding: 40px 20px;
    border-radius: 0 0 10px 10px;
    font-size: calc(var(--size)*1.1rem);
}

.k__podcast-title-text {
    color: var(--main-color);
    font-size: calc(var(--size)*1.7rem);
    margin: 20px 0;
}

.k__podcast-title {
    color: var(--main-color);
    font-size: calc(var(--size)*1.3rem);
    margin: 20px 0;
    border-right: 5px solid var(--second-color);
    padding-right: 10px;
}

.k__podcast-voice {
    display: flex;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

/* list candident */

.k__present {
    justify-content: flex-start;
    align-items: flex-start;
}

.k__present-show {
    width: 220px;
    margin: 0 10px;
    transition: var(--transition-2);
    position: relative;
    margin-bottom: 20px;
}

.k__present-show-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    transition: var(--transition-2);
}

.k__present-show:hover {
    transform: translateY(20px) scale(1.1);
}

.k__present-show:last-child:hover {
    transform: translateX(20px) scale(1.1);
}

.k__present-show:first-child {
    z-index: 9;
}

.k__present-show:first-child:hover {
    transform: translateX(-20px) scale(1.1);
}

.k__present-show:hover .k__present-show-caption {
    transform-origin: 50% 40%;
    transform: translateY(5px);
}

.k__present-show-caption {
    display: grid;
    grid-template-columns: auto;
    color: var(--text-color);
    padding: 10px;
    border-radius: 0 0 10px 10px;
    margin-top: 5px;
    transition: var(--transition-2);
    background-color: var(--bg-hsla);
    border-bottom: var(--border-bottom);
}

.k__present-show-caption-p {
    padding-bottom: 5px;
}

.k__present-show-social {
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px
}

.k__present-show-social-li {
    margin: 0 10px;
    width: 20px;
    height: auto;
}

.k__present-show-social-li img {
    width: 100%;
    height: auto;
    display: block;
}

/* serie */
.k__podcast-serie {
    margin: 0 -10px;
}

.k__podcast-serie-show {
    width: 220px;
    margin: 0 10px;
    transition: var(--transition-2);
    position: relative;
    margin-bottom: 20px;
}

.k__podcast-serie-show:hover {
    transform: translateY(10px);
}

.k__podcast-serie-show:hover .k__podcast-serie-show-caption {
    transition: var(--transition-2);
    text-decoration: underline;
    color: var(--text-color);
    transform: translateY(10px);
    background-color: hsla(0, 0%, 45%, 0.651);
}

.k__podcast-serie-show:hover::before {
    transform: scale(0);
}

.k__podcast-serie-show-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    transition: var(--transition-2);
    position: relative;
}

.k__podcast-serie-show-figure {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    transition: var(--transition-2);
    position: relative;
}


.k__podcast-serie-show-caption {
    display: grid;
    grid-template-columns: auto;
    color: #fff !important;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    transition: var(--transition-2);
    background-color: var(--bg-hsla);
    border-bottom: var(--border-bottom);
}

.k__podcast-serie-show-caption-p {
    padding-bottom: 5px;
}

.k__podcast-serie-number {
    position: absolute;
    bottom: 0;
    right: 25px;
    background-color: var(--bg-hsla);
    padding: 0 5px;
    color: var(--text-color);
    font-size: 2rem
}

/* pagination */
.k__pagination {
    margin-top: 30px;
    width: 50%;
    display: grid;
    justify-self: center;
    align-items: end;
}

.k__pagination-ul {
    justify-content: center;
}

.k__pagination-li {
    margin-right: 10px;
    position: relative;
    color: var(--text-color);
}

.k__pagination-li-a {
    background: var(--bg-hsla);
    padding: 0 10px;
    text-align: center;
    font-size: 1.3rem;
}

.k__pagination-li-a::after {
    content: '\00a0';
    width: 0;
    height: 0;
    background: rgba(153, 153, 153, 0.212);
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: right;
    overflow: hidden;
    transition: var(--transition-2);
}

.k__pagination-li-a:hover::after {
    animation: ho .2s ease-in-out;
}

@keyframes ho {
    0% {
        width: 100%;
        height: 100%;
    }

    100% {
        width: 100%;
        height: 0%;
    }
}
footer{
    z-index: 0;
}

/* iPad pro 12 (2020) */
@media only screen and (max-width: 1190px) {
    .header {
        width: 98%;
        justify-content: space-between;
    }

    .assets {
        display: flex;
        width: 87%;
        justify-content: space-between;
    }

    .header__search {
        top: 95px;
    }

    .header__search-max {
        min-width: 98%;
    }

    .k__search-search {
        margin-left: 10px;
    }

    .header__nav-li {
        margin: 0 0 0 20px;
        font-size: calc(var(--size)*.98rem);
    }

    .k__present {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .k__present-show {
        width: 23%;
    }

    /* main */
    .k__podcast {
        grid-template-columns: 98%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 23%;
    }

    .k__podcast-serie-number {
        position: absolute;
        bottom: 0;
        right: 25px;
        background-color: var(--bg-hsla);
        padding: 5px 10px;
        color: #fff;
        font-size: 2rem
    }
}
/* iPad pro 12 (2020) */
@media only screen and (max-width: 1103px) {

    .assets {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .k__present-show {
        width: 23%;
    }

    /* main */
    .k__podcast {
        grid-template-columns: 95%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 23%;
    }
}

/* iPad pro 12 */
@media only screen and (max-width: 1024px) {

    .k__present-show {
        width: 22.98%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 22.98%;
    }
}

@media only screen and (max-width: 1000px) {

    .k__present-show {
        width: 22.8%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 22.8%;
    }
}

/* RESPONSIVE AREA */
/* iPad pro 12 (2020) */
@media only screen and (max-width: 960px) {
    .k__present-show {
        width: 31%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 31%;
    }
}

@media only screen and (max-width: 900px) {
    .k__present-show {
        width: 31%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 31%;
    }
}

@media only screen and (max-width: 896px) {

    .k__present-show {
        width: 31%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 31%;
    }
}

@media only screen and (max-width: 883px) {

    .k__present-show {
        width: 31%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 31%;
    }
}

/* Galaxy S20 iPad pro 11*/
@media only screen and (max-width: 869px) {

    .k__present-show {
        width: 30.8%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.8%;
    }

    footer {
        padding: 10px 0;
    }
}

/* iPad pro 11 (2021) */
@media only screen and (max-width: 800px) {

    .k__present-show {
        width: 30.7%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.7%;
    }

    footer {
        padding: 10px 0;
    }
}

/* Huawei p30 / iPad mini*/
@media only screen and (max-width: 780px) {
    .k__present-show {
        width: 30.6%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.6%;
    }
}

@media only screen and (max-width: 740px) {
    .k__present-show {
        width: 30.5%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.5%;
    }
}

@media only screen and (max-width: 736px) {
    .k__present-show {
        width: 30.3%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.3%;
    }
}

@media only screen and (max-width: 720px) {
    .k__present-show {
        width: 30.3%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.3%;
    }
}

@media only screen and (max-width: 667px) {
    .k__present-show {
        width: 30.2%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30.2%;
    }

}

@media only screen and (max-width: 640px) {
    .k__present-show {
        width: 30%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 30%;
    }

}

@media only screen and (max-width: 600px) {
    .k__present-show {
        width: 29.9%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 29.9%;
    }

}

@media only screen and (max-width: 568px) {
    .k__present-show {
        width: 29.7%;
    }

    /* serie */
    .k__podcast-serie-show {
        width: 29.7%;
    }
}

/* iPhone13 */
@media only screen and (max-width: 428px) {

    .k__present {
        width: 100%;
    }

    .k__present-show {
        width: 44%;
    }

    /* serie */

    .k__podcast-serie {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .k__podcast-serie-show {
        width: 44%;
    }

    /* pagination */
    .k__pagination {
        width: 100%;
    }

    .k__pagination-li {
        margin-right: 5px;
    }

    /* footer */
    .footer {
        margin-top: 70px;
    }

    .footer__top {
        width: 95%;
        margin-top: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        margin: 50px 0;
        padding-top: 20px;
    }

    .k__map {
        flex-direction: column;
        align-items: center;
    }

    .k__map-figure {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 10px;
    }

    .footer__right {
        width: 100%;
        margin-top: 0;

    }

    .k__nav-footer {
        display: grid;
        grid-template-columns: auto auto;
        margin-top: 20px;
    }

    .k__social-a {
        width: 20%;
        margin: 0 10px;
    }

    .footer__podcast {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer__podcast-p {
        font-size: 1rem;
        margin-right: 0;
        color: #fff;

    }

    .partner-logo {
        width: 100%;
        height: auto;
    }
}

/* iPhone 6/7/8 plus */
@media only screen and (max-width: 414px) {

    .k__present-show {
        width: 45%;
    }

    .k__podcast-serie-show {
        width: 45%;
    }
}

/* Google pixel */
@media only screen and (max-width: 393px) {

    .k__present-show {
        width: 44.8%;
    }

    .k__podcast-serie-show {
        width: 44.8%;
    }
}

/* iPhoneX/XS/6/7/8 */
@media only screen and (max-width: 375px) {

    .k__present-show {
        width: 44.6%;
    }

    .k__podcast-serie-show {
        width: 44.6%;
    }
}

/* Huawei p30/ Galaxy S9*/
@media only screen and (max-width: 360px) {

    .k__present-show {
        width: 44.4%;
    }

    .k__podcast-serie-show {
        width: 44.4%;
    }

    .footer__top {
        width: 90%;
        margin-top: 30px;
    }

    .k__map-figure {
        width: 330px;
        margin-top: 40px;
    }
}

/* iPhone 5/SE */
@media only screen and (max-width: 320px) {
    .k__podcast {
        grid-template-columns: 90%;

    }

    .hamburger__menu {
        position: absolute;
        overflow: auto;
    }

    .k__present {
        justify-content: center;
        align-items: center;
    }

    .k__present-show {
        width: 80%;

    }

    /* serie */

    .k__podcast-serie {
        justify-content: center;
        align-items: center;
    }

    .k__podcast-serie-show {
        width: 80%;
    }

    /* pagination */
    .k__pagination {
        width: 100%;
    }

    .k__pagination-li {
        margin-right: 5px;
    }

    /* footer */
    footer {
        margin-top: 70px;
    }

    .footer__top {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        margin-top: 50px;
        padding-top: 20px;
    }

    .k__map {
        flex-direction: column;
    }

    .footer__right {
        width: 100%;
        margin-top: 0;

    }

    .k__nav-footer {
        display: grid;
        grid-template-columns: auto auto;
        margin-top: 20px;
    }

    .k__social-a {
        width: 20%;
        margin: 0 10px;
    }

    .footer__podcast {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer__podcast-p {
        font-size: 1rem;
        margin-right: 0;
        color: #fff;

    }
}
