.widget-about.template-3{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.7vw, 20px);
}
.widget-about.template-3 .widget-header{
    display: flex;
    align-items: flex-start;
    gap: 2em 4.4em;
}
.widget-about.template-3 .widget-header.vertical-align-center{
    align-items: center;
}
.widget-about.template-3 .widget-header.vertical-align-end{
    align-items: flex-end;
}
.widget-about.template-3 .widget-picture{
    max-width: 45%;
    flex: 0 0 45%;
    overflow: hidden;
}
.widget-about.template-3 .widget-picture img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.widget-about.template-3 .widget-header-wrapper{
    flex: 1;
}
.widget-about.template-3 .widget-header.vertical-align-top .widget-picture + .widget-header-wrapper{
    padding-top: 0.7em;
}
.widget-about.template-3 .widget-title{
    color: #1B1E25;
    font-size: 1.9em;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    text-wrap: balance;
}
.widget-about.template-3 .widget-title + .widget-description{
    margin-top: 1em;
}
.widget-about.template-3 .widget-description{
    color: #808080;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
.widget-about.template-3 .widget-description p{
    margin-bottom: 1.5em;
}
.widget-about.template-3 .widget-description *:last-child{
    margin-bottom: 0;
}
.widget-about.template-3 .widget-description ul{
    color: inherit;
}
.widget-about.template-3 .widget-description ul li{
    position: relative;
    padding-left: 1em;
    margin-bottom: .7em;
}
.widget-about.template-3 .widget-description ul li:last-child{
    margin-bottom: 0;
}
.widget-about.template-3 .widget-description ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(.15em, .6em);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #808080;
}
.widget-about.template-3 .widget-description ul li:last-child{
    margin-bottom: 0;
}
.widget-about.template-3 .widget-description + .widget-button{
    margin-top: 2.8125em;
}
.widget-about.template-3 .widget-button{
    display: inline-block;
    color: #FFF;
    font-size: .8em;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    padding: 1em 2em;
    user-select: none;
    background-color: var(--main-color, #C41F4C);
    border: 1px solid var(--main-color, #C41F4C);
    cursor: pointer;
    margin: 0 0 0 auto;

    transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
}
.widget-about.template-3 .widget-button:hover{
    border-color: #000000;
    background-color: #000000;
}
@media all and (max-width: 800px) {
    .widget-about.template-3 .widget-header{
        flex-wrap: wrap;
        gap: 3em 2em;
    }
    .widget-about.template-3 .widget-title,
    .widget-about.template-3 .widget-description{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-about.template-3 .widget-description p{
        margin-bottom: 1em;
    }
    .widget-about.template-3 .widget-title{
        font-size: 1.625em;
        line-height: 1.2;
    }
    .widget-about.template-3 .widget-picture{
        max-width: 36%;
        flex: 0 0 36%;
    }
    .widget-about.template-3 .widget-picture + .widget-header-wrapper {
        padding-top: 0;
    }
    .widget-about.template-3 .widget-header-wrapper{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-about.template-3 .widget-button{
        font-size: 1em;
        margin: 1.4em 0 0 0;
    }
    .widget-about.template-3 .widget-description + .widget-button {
        margin-top: 2.6em;
    }
}
@media all and (max-width: 600px) {
    .widget-about.template-3 .widget-picture {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-about.template-3 .widget-title + .widget-description {
        margin-top: 1.3em;
    }
    .widget-about.template-3 .widget-description ul li{
        padding-left: 1.5em;
        margin-bottom: 0;
    }
    .widget-about.template-3 .widget-description ul li:before{
        transform: translate(.6em, .6em);
    }
}