
.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
	padding-top:20px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.schedule-time {
    font-family: Lato;
    font-size: 29px;
    font-weight: 700;
    line-height: 43.5px;
    text-align: left;
    color: #002B30;
}

.schedule-title {

    color: #006C7B;
    font-family: Lato;
    font-size: 24px;
    font-weight: 700;
    line-height: 37.5px;
    text-align: left;
}

.schedule-description {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #002B30;
}

@media  (  max-width:1024px){
    section.schedule-section {
        padding: 30px;
    }
}

@media  (  max-width:767px){
    .schedule-item {
        display: flex;
        flex-direction: column;
    }

    .schedule-title {
        font-size: 1.3rem;
        line-height: 106%;
        margin-bottom: 7px;
    }

    .schedule-description {
        line-height: 120%;
    }
}