#services {
    color: aliceblue;
    font-size: 20px;
    line-height: 1.5;
    margin-top: -2rem;
}

.sub-title {
    text-align: center;
    font-size: 60px;
    padding-bottom: 70px;
}

.sub-title span {
    color: orange;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(259px, 1fr));
    grid-gap: 50px;
    margin-top: -1rem;
    width: 90%;
    margin-left: 4rem;
}

.services-list div {
    background-color: orangered;
    padding: 40px;
    font-size: 13px;
    font-weight: 13px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
    box-shadow: 1px 1px 20px yellowgreen,
        1px 1px 40px yellowgreen;
}

.services-list div i {
    font-size: 50px;
    margin-bottom: 30px;
}

.services-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    color: yellow;
}

.services-list div a {
    text-decoration: none;
    color: yellow;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}

.services-list div:hover {
    transform: translateY(-10px);
}

.btn-box2 {
    display: inline-block;
    margin-left: 1rem;
    padding: 12px 8px;
    margin-top: 2rem;
    background: orange;
    border-radius: 10px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 3px orange,
        0 0 20px orange;
    transition: .5s ease;
}

.btn-box2+.btn-box2 {
    margin-left: 10px;
}

.btn-box2:hover {
    box-shadow: 0 0 5px orange,
        0 0 25px orange, 0 0 50px orange,
        0 0 100px orange, 0 0 200px orange;
}



@media screen and (max-width: 768px) {

    #services {
        color: aliceblue;
        font-size: 23px;
        line-height: 1.2;
        margin-top: -2rem;
    }
    
    .sub-title {
        text-align: center;
        font-size: 50px;
        padding-bottom: 50px;
    }
    
    .sub-title span {
        color: orange;
    }
    
    .services-list {
        display: flex;
        flex-direction: column;
        margin-top: -1rem;
        width: 80%;
        margin-left: 2rem;
    }
    
    .services-list div {
        background-color: orangered;
        padding: 40px;
        font-size: 13px;
        font-weight: 13px;
        border-right: 10px;
        border-radius: 20px;
        transition: background 0.5s, transform 0.5s;
        box-shadow: 1px 1px 20px yellowgreen,
            1px 1px 40px yellowgreen;
    }
    
    .services-list div i {
        font-size: 50px;
        margin-bottom: 20px;
    }
    
    .services-list div h2 {
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 11px;
        color: yellow;
    }
    
    .services-list div a {
        text-decoration: none;
        color: yellow;
        font-size: 12px;
        margin-top: 20px;
        display: inline-block;
    }
    
    .services-list div:hover {
        transform: translateY(-10px);
    }
    
    .btn-box2 {
        display: inline-block;
        margin-left: 1rem;
        padding: 12px 8px;
        margin-top: 2rem;
        background: orange;
        border-radius: 10px;
        font-size: 16px;
        color: #081b29;
        letter-spacing: 1px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 0 3px orange,
            0 0 20px orange;
        transition: .5s ease;
    }
    
    .btn-box2+.btn-box2 {
        margin-left: 10px;
    }
    
    .btn-box2:hover {
        box-shadow: 0 0 5px orange,
            0 0 25px orange, 0 0 50px orange,
            0 0 100px orange, 0 0 200px orange;
    }
    
}