.widget-services.template-1{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.7vw, 20px);
}
.widget-services.template-1 .widget-header .widget-title{
    color: #1B1E25;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
    padding: 0;
    margin: 0;
}
.widget-services.template-1 .widget-header + .widget-content{
    margin-top: 2.5em;
}
.widget-services.template-1 .widget-tabs{
    display: flex;
    flex-wrap: wrap;
    gap: .8em;
}
.widget-services.template-1 .widget-tab{
    color: #000;
    font-size: .9em;
    font-weight: 400;
    line-height: 1.2;
    user-select: none;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    padding: .7em 1.4em;
    cursor: pointer;

    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
}
.widget-services.template-1 .widget-tab:hover{
    background-color: #E8E8E8;
}
.widget-services.template-1 .widget-tab[data-active="true"]{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #ffffff;
}
.widget-services.template-1 .widget-sections{
    margin-top: 2em;
}
.widget-services.template-1 .widget-section{
    display: none;
    border: 1px solid #D7D7D7;
    padding: 2.9em 3em;
}
.widget-services.template-1 .widget-section-description{
    color: #323232;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
.widget-services.template-1 .widget-section p{
    margin-bottom: 1em;
}
.widget-services.template-1 .widget-section ul li:last-child,
.widget-services.template-1 .widget-section p:last-child{
    margin-bottom: 0;
}
.widget-services.template-1 .widget-section ul{}
.widget-services.template-1 .widget-section ul li{
    position: relative;
    padding-left: 1em;
    color: #808080;
    margin-bottom: .6em;
}
.widget-services.template-1 .widget-section ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(.7em);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #808080;
}
.widget-services.template-1 .widget-section-description + .widget-items{
    margin-top: 2.6em;
}
.widget-services.template-1 .widget-items{
    display: flex;
    flex-wrap: wrap;
    gap: 1.6em;
}
.widget-services.template-1 .widget-item{
    max-width: calc(50% - .8em);
    flex: 0 0 calc(50% - .8em);
    background: #F8F8F8;
    padding: 2.3em 2.5em;
}
.widget-services.template-1 .widget-item-title{
    color: #1B1E25;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.35;
}
.widget-services.template-1 .widget-item-description{
    color: #808080;
    font-size: .9em;
    font-weight: 400;
    line-height: 1.5;
}
.widget-services.template-1 .widget-item-title + .widget-item-description{
    margin-top: 1em;
}

@media all and (max-width: 800px) {
    .widget-services.template-1 .widget-header .widget-title{
        font-size: 1.625em;
    }
    .widget-services.template-1 .widget-items{
        gap: 1.25em;
    }
    .widget-services.template-1 .widget-item{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 2em;
    }
    .widget-services.template-1 .widget-section{
        padding: 2.4em 2em;
    }
}
@media all and (max-width: 600px) {
    .widget-services.template-1 .widget-section{
        padding: 1.6em 1.25em;
    }
    .widget-services.template-1 .widget-item{
        padding: 1.25em;
    }
}