.widget-about.template-1{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-about.template-1 .widget-about-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.3em 3em;
}
.widget-about.template-1 .widget-header{
    flex: 1;
    margin-top: -5px;
}
.widget-about.template-1 .widget-header .widget-title{
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}
.widget-about.template-1 .widget-header .widget-description{
    font-size: 1em;
    font-weight: 400;
    line-height: 130%;
    color: #000000;
    margin-top: 1.6em;
}
.widget-about.template-1 .widget-button-wrap{
    margin-top: 1.8em;
}
.widget-about.template-1 .widget-button-wrap[data-device='mobile']{
    display: none;
}
.widget-about.template-1 .widget-over-button-text{
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: #252525;
}
.widget-about.template-1 .widget-over-button-text + .widget-button{
    margin-top: 22px;
}
.widget-about.template-1 .widget-button{
    display: inline-flex;
    font-size: .85em;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    padding: 19px 34px;
    text-transform: uppercase;
    background-color: var(--main-color, #252525);
    border-radius: 4px;
    border: none;
    user-select: none;

    transition: background-color .2s ease-out;
}
.widget-about.template-1 .widget-button:hover,
.widget-about.template-1 .widget-button:focus{
    background-color: var(--dark-main-color, #000000);
}
.widget-about.template-1 .widget-content{
    max-width: calc(50% - 1.5em);
    flex: 0 0 calc(50% - 1.5em);
}
.widget-about.template-1 .widget-media-content{
    position: relative;
    overflow: hidden;
    user-select: none;
}
.widget-about.template-1 .widget-video{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.widget-about.template-1 .widget-video svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    height: auto;
    aspect-ratio: 4/4;
    backdrop-filter: blur(2px);
    border-radius: 50%;

    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-about.template-1 .widget-video:hover svg{
    transform: translate(-50%, -50%) scale(1.04);
}
.widget-about.template-1 .widget-video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.widget-about.template-1 .widget-picture{
    display: flex;
}
.widget-about.template-1 .widget-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media all and (max-width: 1240px) {
    .widget-about.template-1 .widget-header,
    .widget-about.template-1 .widget-content{
        max-width: calc(50% - 20px);
    }
    .widget-about.template-1 .widget-header{
        margin-top: 0;
    }
}
@media all and (max-width: 1000px) {
    .widget-about.template-1 .widget-header .widget-description br{
        display: none;
    }
}
@media all and (max-width: 800px) {
    .widget-about.template-1{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-about.template-1 .widget-about-wrapper{
        flex-wrap: wrap;
    }
    .widget-about.template-1 .widget-header .widget-title{
        font-size: 2.6em;
    }
    .widget-about.template-1 .widget-header,
    .widget-about.template-1 .widget-content{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-about.template-1 .widget-video img,
    .widget-about.template-1 .widget-picture img{
        aspect-ratio: 16/9;
    }
    .widget-about.template-1 .widget-header .widget-description,
    .widget-about.template-1 .widget-header .widget-button-wrap{
        margin-top: 1.5em;
    }
    .widget-about.template-1 .widget-header .widget-over-button-text + .widget-button {
        margin-top: 18px;
    }
    .widget-about.template-1 .widget-button{
        font-size: .875em;
    }
}
@media all and (max-width: 600px) {
    .widget-about.template-1 .widget-about-wrapper{
        gap: 34px 40px;
    }
    .widget-about.template-1 .widget-header .widget-title{
        font-size: 1.75em;
        line-height: 110%;
    }
    .widget-about.template-1 .widget-header .widget-description{
        margin-top: 1em;
    }
    .widget-about.template-1 .widget-button-wrap {
        margin-top: 1.6em;
    }
    .widget-about.template-1 .widget-button-wrap[data-device='desktop']{
        display: none;
    }
    .widget-about.template-1 .widget-button-wrap[data-device='mobile']{
        display: flex;
        justify-content: center;
    }
    .widget-about.template-1 .widget-over-button-text{
        font-size: 16px;
    }
    .widget-about.template-1 .widget-over-button-text + .widget-button {
        margin-top: 15px;
    }
    .widget-about.template-1 .widget-button{
        padding: 16px 32px;
    }
    .widget-about.template-1 .widget-video img,
    .widget-about.template-1 .widget-picture img {
        aspect-ratio: 16 / 9;
    }
    .widget-about.template-1 .widget-video svg{
        width: 20%;
    }
}
