.footer{
    background:#06183d;
    padding:30px 20px 15px;
    color:#fff;
}

.footer-heading{
    text-align:center;
    color:#d6b11d;
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
}

.services-row{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.service-item{
    display:flex;
    align-items:center;
    padding:0 20px;
    position:relative;
}

.service-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:2px;
    height:48px;
    background:rgba(255,255,255,.25);
}

.icon-circle{
    width:48px;
    height:48px;
    border:2px solid #d6b11d;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#d6b11d;
    font-size:20px;
    margin-right:12px;
}

.service-text{
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    line-height:1.2;
}

.footer-tagline{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:22px 0;
}

.footer-tagline::before,
.footer-tagline::after{
    content:"";
    flex:1;
    height:2px;
    background:#d6b11d;
    max-width:220px;
}

.footer-tagline span{
    margin:0 20px;
    font-size:18px;
    font-weight:600;
    white-space:nowrap;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:15px 0;
    text-align:center;
    font-size:14px;
    color:#c8c8c8;
}

@media(max-width:768px){

.services-row{
    flex-direction:column;
    gap:15px;
}

.service-item{
    padding:0;
}

.service-item::after{
    display:none;
}

.footer-tagline::before,
.footer-tagline::after{
    display:none;
}

.footer-tagline span{
    white-space:normal;
    text-align:center;
    font-size:16px;
}

}