﻿.home-plan {
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    float: left;
    padding: 30px 0;
}
  
    .home-plan .box:nth-child(even) {
        transform: translateY(0);
        z-index: 10;
    }

    .home-plan .box:nth-child(odd) {
        transform: translateY(30px);
        border:1px solid #ddd;
        border-radius:30px;

    }
    .home-plan .mobile-plan .item{
        background-color:#f2f2f2;
    }
    .home-plan .item {
        width: 100%;
        height: 600px;
        border-radius: 30px;
        background-color: #fff;
        padding: 20px;
    }

    .home-plan .item .info {
        height: 350px;
        overflow: hidden;
    }

    .home-plan .item h5 {
        padding: 30px 0;
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
    }

    .home-plan .item ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .home-plan .item ul li {
            height: 70px;
            display: flex;
            justify-content: flex-start;
            flex-direction: row;
        }

            .home-plan .item ul li i {
                color: green;
                font-size: 20px;
                margin-left: 5px;
            }

    .home-plan .item.dark {
        background-color: #12022F;
        color: #fff;
    }
