.home_text p {
    font-size: 20px;
}

.home_text {
    position: relative;
    padding: 30px 20px;
    line-height: 28px;
    margin-top: 30px;
    border-radius: 20px;
    transition: transform .3s;
    cursor: pointer;
}

.home_text span {
    color: #1b77f2;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.container .item {
    width: 520px;
    margin: 20px 0;
    padding: 20px 30px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer;
    transition: transform .3s;
}

.item .pic {
    width: 100%;
}

.pic img {
    width: 100%;
}

.item .text {
    text-align: center;
    font-size: 18px;
}

.container .item:hover {
    transform: translateX(-6px);
}

.main .btnsab {
    border: 2px solid#000000;
    color: #000000;
    padding: 4px 25px;
    margin: 10px 0 20px;
    border-radius: 5px;
}

.main .btnsab:hover {
    color: #fff;
    background-color: #20ce88;
    border: 2px solid #20ce88;
}

@media screen and (max-width:1200px) {
    .container .main .cols {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .container .item {
        width: 90%
    }
}
