.widget-faq.template-1{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.7vw, 20px);
}
.widget-faq.template-1 .widget-header .widget-title{
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.3;
    color: #151515;
    text-transform: uppercase;
    text-wrap: balance;
    padding: 0;
    margin: 0;
}
.widget-faq.template-1 .widget-header .widget-description{
    color: #000;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
.widget-faq.template-1 .widget-header .widget-title + .widget-description{
    margin-top: 1.5em;
}
.widget-faq.template-1 .widget-header + .widget-content{
    margin-top: 2.5em;
}
.widget-faq.template-1 .widget-items{}
.widget-faq.template-1 .widget-item{
    border-bottom: 1px solid #989494;
}
.widget-faq.template-1 .widget-item-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 18px;
    cursor: pointer;
}
.widget-faq.template-1 .widget-item:first-child .widget-item-header{
    padding-top: 0;
}
.widget-faq.template-1 .widget-item-title{
    font-size: 1.1em;
    font-weight: 600;
    line-height: 130%;
    color: #151515;
}
.widget-faq.template-1 .widget-item-icon{
    display: flex;
    width: 18px;
    height: 18px;
    transform: translateY(-6px);

    transition: transform .4s ease-out;
}
.widget-faq.template-1 .widget-item.open .widget-item-icon{
    transform: translateY(-6px) rotateZ(-90deg);
    transform-origin: center;
}
.widget-faq.template-1 .widget-item-icon svg{
    height: auto;
}
.widget-faq.template-1 .widget-item-icon svg path{
    transition: stroke .4s ease-out;
}
.widget-faq.template-1 .widget-item.open .widget-item-icon svg path{
    stroke: #CB1B4C;
}
.widget-faq.template-1 .widget-item-content{
    cursor: default;
    display: none;
}
.widget-faq.template-1 .widget-item-description{
    font-size: 1em;
    font-weight: 400;
    line-height: 1.3;
    color: #323232;
    margin: 13px 0 40px;
}
.widget-faq.template-1 .widget-item-description p{
    margin-bottom: 20px;
}
.widget-faq.template-1 .widget-item-description b{
    font-weight: 600;
}
.widget-faq.template-1 .widget-item-description ol {
    counter-reset: num;
    list-style: none;
}
.widget-faq.template-1 .widget-item-description ol li {
    display: flex;
    position: relative;
    margin-bottom: 22px;
    counter-increment: num;
}
.widget-faq.template-1 .widget-item-description ol li:last-child{
    margin-bottom: 0;
}
.widget-faq.template-1 .widget-item-description ol li:before {
    content: "/" counter(num);
    display: inline-block;
    margin-right: 5px;
    min-width: 40px;
}
.widget-faq.template-1 .widget-item-description ol li:nth-child(-n+9):before {
    content: "/0" counter(num);
}
@media all and (max-width: 1000px) {
    .widget-faq.template-1 .widget-header .widget-title{
        text-align: left;
    }
    .widget-faq.template-1 .widget-item-title{
        font-size: 20px;
    }
    .widget-faq.template-1 .widget-item-description{
        margin: 12px 0 30px;
    }
}
@media all and (max-width: 800px) {
    .widget-faq.template-1 .widget-header .widget-title{
        font-size: 1.625em;
    }
    .widget-faq.template-1 .widget-header .widget-description{
        font-size: 1.125em;
    }
    .widget-faq.template-1 .widget-header .widget-title + .widget-description{
        margin-top: 1.1em;
    }
    .widget-faq.template-1 .widget-item-title{
        font-size: 1.125em;
    }
}
@media all and (max-width: 600px) {
    .widget-faq.template-1 .widget-header .widget-title br{
        display: none;
    }
    .widget-faq.template-1 .widget-item-header{
        padding-top: 45px;
        padding-bottom: 11px;
        gap: 20px;
    }
    .widget-faq.template-1 .widget-item-title{
        font-size: 18px;
    }
    .widget-faq.template-1 .widget-item-icon{
        width: 14px;
        height: 14px;
    }
    .widget-faq.template-1 .widget-item-description{
        margin: 15px 0 17px;
    }
    .widget-faq.template-1 .widget-item-description p {
        margin-bottom: 24px;
    }
    .widget-faq.template-1 .widget-item-description ol li {
        margin-bottom: 26px;
        line-height: 133%;
    }
    .widget-faq.template-1 .widget-item-description ol li:before{
        min-width: 32px;
        margin-right: 13px;
    }
}