.program {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 10px;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    cursor: pointer;
    transition: all 0.5s ease;
}

.program.activated {
    background: #ffffff;
    transition: all 0.5s ease;
}

.program:hover,
.program:active,
.program:focus {
    background: #fff;
}

.program-page-title {
    margin-top: 30px !important;
}

.program-title-block {
    display: flex;
    align-items: center;
    margin-top: 17px;
}

.program-subtitle {
    width: 80%;
    margin: 0 10px 0 0;
    position: absolute;
    top: 10px;
    font-size: 15px;
    color: #00898d;
}

.program-title {
    width: 75%;
    margin: 0;
    font-weight: 700;
    font-size: 17px;
}

.program-more {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 90px;
    background: transparent;
    border: none;
}

.program-more a {
    display: block;
    width: 100%;
    height: 100%;
}

.program-plus {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: auto;
    position: relative;
}


.program-plus::after,
.program-plus::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #00898d;
    position: absolute;
    bottom: 17px;
}

.program-plus::after {
    transition: all 0.5s ease;
    transform: rotate(90deg);
}

.program-plus::before {
    transition: all 0.5s ease;
    transform: rotate(0deg);
}

.program.activated .program-plus:after {
    opacity: 0;
    transition: all 0.5s ease;
}

.program-dropdown {
    display: none;
    padding-left: 40px;
    padding-top: 25px;
}

.program-dropdown p {
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

.program-dropdown p:before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: -26px;
    top: 50%;
    background: #0b454a;
}

@media (min-width: 576px) {
    .program-title-block {
        margin-top: 0;
    }

    .program-subtitle {
        width: 20%;
        position: static;
    }
}

@media (min-width: 768px) {
    .program {
        padding: 15px;
    }

    .program-subtitle {
        margin-right: 0;
        font-size: 18px;
    }

    body.services_bootstrap .program-subtitle {
        width: 28%;
    }

    .program-title {
        width: 100%;
        font-size: 21px;
    }

    .program-plus {
        width: 36px;
        height: 36px;
    }

    .program-dropdown {
        padding-left: 157px;
    }
}

@media (min-width: 992px) {
    body.services_bootstrap .program-subtitle {
        width: 20%;
    }

    .program-dropdown {
        padding-left: 245px;
    }
}

@media (min-width: 1200px) {
    .program-dropdown {
        padding-left: 204px;
    }
}
