.service-icon {
    width: 100px;
}
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service .service-item p {
    margin-bottom: 10px;
    font-size: 16px;
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    color: #0796fe;
    transition: .3s;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: #0796fe;
}

.service .service-item:hover a.btn {
    color: #092a49;
    background: #1d2434;
    border-color: #1d2434;
}

.card-effect {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 25px;
    transition: all 0.5s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.plans ul li {
    margin-top: 8px
}

.plan {
    padding-top: 80px;
    padding-bottom: 80px;
}

.btn-color {
    background-color: #00aeef;
    color: white;
    transition: 0.4s ease;
}

.btn-color:hover {
    font-weight: 600;
    color: #f0f0f0;
}

