/*planMainContent*/

.planMainContent {
    position: relative;
    border-radius: 10px;
    display: inline-block;
    margin: 55px 0;
    overflow: hidden;
    z-index: 9;
}
.planHover {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
}
.hoverLeftSide {
    position: relative;
    width: 70px;
    height: 100%;
    display: inline-block;
    background: #fa2a19;
    transition: all 0.5s ease 0s;
}
/*change-1-11*/
.hoverLeftSide a {
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: #fff;
    font-family: Josefin Sans;
    width: 200px;
    text-align: center;
}

.hoverLeftSide a:hover {
    color: #fff;
}
.hoverRightSide {
    display: inline-block;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: 1s;
}
.planMainContent:hover .hoverRightSide {
    opacity: 1;
}
.hoverRightSide p {
    color: #fff;
    padding: 35% 10%;
    text-align: center;
    line-height: 24px;
}