.container {
    font-family: "Public sans", "Roboto", sans-serif;
    margin-top: 30px;
}

.head {
    font-size: 16px;
    line-height: 1.4rem;
    font-weight: 500;
}

.toggler {
    position: relative;
    margin: 15px 0px 0px 0px;
    display: inline-block;
}
.toggler button {
    background: none;
    outline: none;
    border: none;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    margin-right: 15px;
    color: #fff;
    padding: 7px 15px 7px 0px;
    text-align: left;
    cursor: pointer;
}

.webinar {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(35, 35, 35);
}
.webinar:last-child {
    border-bottom: none;
}

.banner_image {
    width: 100%;
    border-radius: 8px;
}
.webinar_detail {
    margin-top: 15px;
}
.webinar_date {
    border: 2px solid #a3dad4;
    background: #e6f5f3;
    color: #000;
    padding: 5px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}
.webinar_date span {
    margin-left: 4px;
    font-size: 10px;
    color: #059b8b;
}

.host_name {
    margin: 13px 0px 5px 0px;
    font-size: 16px;
    font-weight: 600;
}

.webinar_title {
    font-size: 14px;
    line-height: 1.2rem;
    font-weight: 500;
    font-style: italic;
}
.webinar_description {
    font-size: 12px;
    line-height: 1.2rem;
    color: #ccc;
}
.start_date {
    font-size: 10px;
    margin: 5px 0px 10px 0px;
}
.register_now {
    cursor: pointer;
    background: var(--gradient);
    outline: none;
    border: none;
    padding: 10px 25px;
    margin: 10px 0px;
    border-radius: 5px;
    font-size: 10px;
    color: #fff;
}

@media screen and (min-width: 350px) {
    .container {
        margin-top: 50px;
    }
    .head {
        font-size: 18px;
    }
    .webinar {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .banner_image {
        width: 35%;
    }
    .webinar_detail {
        margin-top: 0px;
        margin-left: 20px;
    }
    .register_now {
        font-size: 12px;
    }
}

@media screen and (min-width: 550px) {
    .webinar_date span {
        font-size: 12px;
        font-weight: 500;
    }
    .host_name {
        font-size: 18px;
    }
    .webinar_title {
        font-size: 16px;
        line-height: 1.5rem;
    }
    .webinar_description {
        font-size: 14px;
        line-height: 1.4rem;
    }
    .start_date {
        font-size: 14px;
    }
}

@media screen and (min-width: 750px) {
    .head {
        font-size: 24px;
    }
}
@media screen and (min-width: 1050px) {
    .host_name {
        font-size: 22px;
    }
    .webinar_title {
        font-size: 18px;
        margin: 10px 0px 8px 0px;
    }
    .start_date {
        margin: 5px 0px 20px 0px;
    }
}
