
.webinars-nav {
    width: 100%;
    flex-direction: column;
}
.webinars-nav {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 3rem;
}
.webinars-nav .webinars-nav-header {
    width: 90%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: 17rem;
    position: relative;
}

.webinars-nav .webinars-nav-header .webinars-num {
    position: absolute;
    font-size: 13rem;
    font-weight: 500;
    line-height: 1;
    color: var(--theme-gray-bright);
    right: -6rem;
    top: -8rem;
}

.webinars-nav .webinars-nav-header a {
    /* text-decoration: none; */
    font-family: var(--font-family);
    color: var(--theme-text-primary);
    font-weight: bold;
    font-size: .8rem;
    text-decoration: underline;
    cursor: pointer;
}
.webinars-nav .webinars-nav-header a:hover {
    color: var(--theme-blue-deep);

}
.webinars-nav .webinars-nav-header h2 {
    font-family: var(--font-family);
    font-size: 8rem;
    color: var(--theme-text-primary);
    position: relative;
    display: inline-block;
    letter-spacing: .2rem;
    font-weight: 500;
}


/* video & webinars start */
.webinars-main {
    gap: 2rem;
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
}
.webinars-main .webinar-item{
    flex: 1;
    flex-direction: column;
}
.webinars-main .webinar-item .video-title-wrapper h2{
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.05;
}
.webinars-main .webinar-item .webinar-wrapper {
    position: relative;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 1px solid var(--theme-text-invert);
    border-radius: 50%;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon svg {
    width: 2rem;
    height: 2rem;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon svg path{
    fill: var(--theme-text-invert);
}

.webinars-main .webinar-item .webinar-wrapper {
    text-decoration: none;
    display: block;
}
.webinars-main .webinar-item .webinar-wrapper .img-wrapper {
    width: 100%;
    height: 15rem;
    overflow: hidden;
}
.webinars-main .webinar-item .webinar-wrapper .img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* video & webinars end */

.info-wrapper {
    padding: .8rem 0;
    align-items: center;
    gap: 5rem;
}

.info-wrapper .info-date span {
    font-family: var(--font-family);
    font-size: .8rem;
}
.info-wrapper .info-readingtime {
    align-items: center;
}
.info-wrapper .info-readingtime svg {
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
}
.info-wrapper .info-readingtime span {
    font-family: var(--font-family);
    font-size: .8rem;
}