@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

.webinar-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 32px;
    line-height: 40px;
    color: #ffffff;
    margin: 5px 0;
}
.webinars-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: auto;
}

.webinar-item {
    display: flex;
    min-height: 350px;
    background: #0a192f;
    color: #ffffff;
    overflow: hidden;
    align-items: center;
}

.webinar-image {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.webinar-content {
    width: 50%;
    height: 100%;
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: top right;

}

.webinar-block {
    padding: 35px;
    height: 100%;
    background: #061020f2;
}

.webinar-date {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    font-family: 'Source Sans Pro', sans-serif; 
    margin-bottom: 10px;
}


.webinar-content p {
    font-size: 16px;
    margin: 10px 0;
    color: #ffffff;
    font-family: 'Source sans Pro", sans-serif;
}

.webinar-button {
    display: inline-block;
    padding: 10px 30px;
    background: #00AEC1;
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 10px;
    font-size: 14px;
}

.webinar-button:hover {
    background: #1be4fa;
}



@media (max-width: 768px) {}

@media (max-width: 480px) {
.webinar-image {
    display: none;
}

.webinar-content {
    width: 100%;
    background-size: 135%;
    background-position: center;
}

.webinar-block {
    padding: 35px 20px;
    background: #061020de;
    height: inherit;
}
.webinar-item {
    height: 370px;
}
.webinar-content h3 {
    font-size: 28px;
    line-height: 1.3em;
}
   
}
