.widget-about.template-2{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.7vw, 20px);
    width: 100%;
}
.widget-about.template-2 .widget-header{
    display: flex;
    justify-content: space-between;
    gap: 2em 5em;
}
.widget-about.template-2 .widget-header .widget-title{
    flex: 1;
    color: #1B1E25;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4;
}
.widget-about.template-2 .widget-header .widget-description{
    flex: 1;
    color: #1B1E25;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
.widget-about.template-2 .widget-header .widget-description p{
    margin-bottom: 1.5em;
}
.widget-about.template-2 .widget-header .widget-description b{
    font-weight: 700;
}
.widget-about.template-2 .widget-header .widget-description *:last-child{
    margin-bottom: 0;
}
.widget-about.template-2 .widget-header .widget-description ul{
    color: inherit;
}
.widget-about.template-2 .widget-header .widget-description ul li{
    position: relative;
    padding-left: 1.5em;
}
.widget-about.template-2 .widget-header .widget-description ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(.6em, .6em);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #808080;
}
.widget-about.template-2 .widget-header .widget-description ul li:last-child{
    margin-bottom: 0;
}
@media all and (max-width: 800px) {
    .widget-about.template-2 .widget-header{
        flex-wrap: wrap;
    }
    .widget-about.template-2 .widget-header .widget-title,
    .widget-about.template-2 .widget-header .widget-description{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-about.template-2 .widget-header .widget-description p{
        margin-bottom: 1em;
    }
    .widget-about.template-2 .widget-header .widget-title{
        font-size: 1.125em;
    }
}