.welcome-block {
    display: flex;
    gap: 45px;
}

.welcome-img img {
    min-width: 300px;
    max-width: 350px;
}

.accc-block {
    margin-top: 48px;
}

.program-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
}

.program-title {
    font-size: 38px;
    color: #102236;
    font-weight: 700;
}

.schedule-block {
    margin-top: 38px;
}

.schedule-table {
    max-width: 75%;
}

.schedule-row {
    display: grid;
    grid-template-columns: 20% auto;
    margin: 32px 0;
    gap: 20px;
}

.schedule-table-item {
    font-size: 20px;
    line-height: 120%;
}

.schedule-table-item b {
    font-size: 22px;
    color: #102236;
}

.schedule-table-item:first-child:not(.no-underline) {
    font-size: 16px;
    color: #102236;
    position: relative;
}

.schedule-table-item:first-child:not(.no-underline)::before {
    position: absolute;
    content: "";
    height: 2px;
    left: 0;
    bottom: -1px;
    background-color: #54b25b;
    width: 95%;
}

.no-underline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1650px) {
    .program-title {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .schedule-table {
        max-width: 100%;
        gap: 24px;
    }
}

@media (max-width: 768px) {
     .welcome-block {
        flex-wrap: wrap;
    }

    .welcome-img img {
        min-width: 150px;
        max-width: 200px;
    }
    
    .schedule-row {
        grid-template-columns: 30% auto;
    }

    .schedule-table-item {
        font-size: 16px;
    }

    .schedule-table-item b {
        font-size: 18px;
    }
}