/*=========================================
SERVICES
=========================================*/

.services-section{

    background:#070707;

}

.service-card{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px 35px;

    height:100%;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.service-icon i{

    font-size:34px;

    color:#D4AF37;

}

.service-card h3{

    font-size:28px;

    margin-bottom:20px;

}

.service-card p{

    color:#bdbdbd;

    line-height:1.8;

}

@media(max-width:768px){

.service-card{

    text-align:center;

}

.service-icon{

    margin:auto auto 30px;

}

}