.program-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    transition: 0.3s;
    padding: 0;
    box-shadow: 0 14px 40px 0 rgba(2, 9, 18, 0.08);
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-name: fadeInUp;
}
.program-item__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 263px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 237" xmlns="http://www.w3.org/2000/svg"><path d="M137 202.5C73.5 167 4.33333 201 -45 213.5V0H389C395.167 89.3333 403.8 261.1 389 233.5C370.5 199 302.5 222.5 247.5 233.5C210.08 240.984 174.627 223.535 137 202.5Z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 237" xmlns="http://www.w3.org/2000/svg"><path d="M137 202.5C73.5 167 4.33333 201 -45 213.5V0H389C395.167 89.3333 403.8 261.1 389 233.5C370.5 199 302.5 222.5 247.5 233.5C210.08 240.984 174.627 223.535 137 202.5Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}
.program-item__image img {
    height: 100%;
    max-width: 100%;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.program-item__content {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 0 32px 17px;
}
.program-item__icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 50px;
    margin: -58px auto 15px;
}
.program-item:hover .program-item__icon {
    -webkit-animation-name: wobble-horizontal-on-hover;
    animation-name: wobble-horizontal-on-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.program-item__title {
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms ease;
    margin-bottom: 8px;
    color: #0B2038;
    line-height: 1.2;
}
.program-item__title a {
    text-decoration: none;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0 95% / 0 1px no-repeat;
    transition: all 500ms ease;
}
.program-item__title a:hover {
    background-size: 100% 1px;
    color: var(--accent-color);
}
.program-item__special {
    color: var(--accent-color);
    line-height: 1;
    display: block;
    margin: 0 0 21px;
    transition: all 300ms ease;
}
.program-item__text {
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin: 0 0 23px;
    transition: all 300ms ease;
}
.program-item__button {
    flex: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.program-item__button a {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 42px;
    border-radius: 50%;
    background-color: var(--accent-color);
    font-size: 15px;
    color: #ffffff;
    transition: all 300ms ease;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}
.program-item__button a:hover {
    background-color: #0B2038;
    color: #F25334;
    fill: #F25334;
}
.program-item__button a svg {
    display: inline-block;
    fill: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.program-item__button a:hover svg {
    animation: iconTranslateX 0.4s forwards;
    fill: #F25334;
}