.courses{
    margin: 120px auto 90px;
    max-width: 780px;
    font-family: "Gotham Pro";
}
.courses__title{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.courses__dates{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 20px;
}
.courses__date-item{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E20932;
    text-transform: uppercase;
    font-weight: bold;
    flex-direction: column;
    width: 130px;
    height: 130px;
    border: 2px solid #E20932;
    transition: 300ms ease all;
    position: relative;
}
.courses__date-item::after{
    content: '';
    width: calc(100% + 4px);
    position: absolute;
    bottom: -23px;
    left: -2px;
    height: 22px;
    background: #E20932;
    transition: 200ms ease all;
    opacity: 0;
}
.courses__date-day{
    font-size: 56px;
}
.courses__date-month{
    font-size: 24px;
}
.courses__date-item:hover{
    background: #E20932;
    color: #fff;
    text-decoration: none;
}
.courses__date-item--active{
    background: #E20932;
    color: #fff;
}
.courses__date-item--active:focus{
    color: #fff;
}
.courses__date-item--active::after{
    opacity: 1;
}
.courses__table{
    justify-content: space-between;
    width: 100%;
    border: 1px dashed #D3D6D7;
    padding: 30px 40px;
    display: none;
}
.courses__table--first{
    display: flex;
}

.courses__table--visible{
    display: flex;
}
.courses__table-column--lg{
    width: 440px;
    padding-right: 30px;
    border-right: 1px solid #D3D6D7;
}
.courses__table-column--sm{
    width: 230px;
    padding-left: 30px;
}
.courses__course-name{
    font-size: 22px;
    padding-bottom: 25px;
    font-weight: bold;
}
.courses__course-info{
    font-weight: bold;
    padding-bottom: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.courses__course-info:last-child{
    padding-bottom: 0;
}
.courses__course-item{
    font-weight: normal;
    padding-left: 15px;
    padding-bottom: 5px;
}
.courses__course-item:first-child{
    padding-top: 15px;
}
.courses__row{
    padding-bottom: 25px;
}
.courses__row-title{
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
}
.courses__agp-sponsor{
    max-width: 100%;
}
.courses__btn{
    font-weight: bold;
    background: #E20932;
    color: #fff;
    padding: 15px 30px 13px;
    display: inline-block;
    border: 2px solid #E20932;
    transition: 300ms ease all;
}
.courses__btn:hover{
    color: #E20932;
    background: #fff;
}
.courses__desc{
    font-weight: bold;
    font-size: 14px;
    margin-top: 45px;
}

@media screen and (max-width: 767px){
    .courses__table{
        padding: 10px 20px;
    }
    .courses__date-item{
        width: 80px;
        height: 80px;
    }
    .courses__date-day{
        font-size: 25px;
    }
    .courses__date-month{
        font-size: 18px;
    }
    .courses{
        max-width: 100%;
    }
    .courses__table {
        flex-direction: column;
    }
    .courses__table-column--lg{
        width: 100%;
        padding: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid #D3D6D7;
    }
    .courses__table-column--sm{
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
    }
}

@media screen and (max-width: 479px){
    .courses__date-item{
        width: 55px;
        height: 55px;
    }
    .courses__date-day{
        font-size: 16px;
    }
    .courses__date-month{
        font-size: 14px;
    }
    .courses__course-name{
        font-size: 18px;
    }

}
