.widget-faq.template-2{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-faq.template-2 .widget-header{
    display: flex;
    flex-direction: column;
    gap: 1.8em;
}
.widget-faq.template-2 .widget-header .widget-title{
    font-size: 3.2em;
    font-weight: 700;
    line-height: 128%;
    color: #000000;
}
.widget-faq.template-2 .widget-header .widget-title span.special{
    color: var(--main-color);
}
.widget-faq.template-2 .widget-header .widget-description{
    font-size: 1em;
    font-weight: 500;
    line-height: 130%;
    color: #626262;
    max-width: 518px;
    margin-top: 30px;
}
.widget-faq.template-2 .widget-header + .widget-content{
    margin-top: 18px;
}
.widget-faq.template-2 .widget-items{
    font-size: clamp(16px, 2.5vw, 20px);
}
.widget-faq.template-2 .widget-item{
    overflow: hidden;
    padding: 1.1em 1em;
    cursor: pointer;
    border-bottom: 1px solid #DADADA;
}
.widget-faq.template-2 .widget-item:first-child{
    margin-top: 0;
}
.widget-faq.template-2 .widget-item-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.widget-faq.template-2 .widget-item:first-child .widget-item-header{
    padding-top: 0;
}
.widget-faq.template-2 .widget-item-title{
    font-size: 1em;
    font-weight: 500;
    line-height: 128%;
    color: #252525;
}
.widget-faq.template-2 .widget-item-icon{
    display: flex;
    transform-origin: center;

    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-faq.template-2 .widget-item.open .widget-item-icon{
    transform: rotateZ(-135deg);
}
.widget-faq.template-2 .widget-item-icon svg{
    height: auto;
}
.widget-faq.template-2 .widget-item-icon svg path{
    transition: stroke .4s ease-out;
}
.widget-faq.template-2 .widget-item:hover .widget-item-icon svg path{
    stroke: var(--main-color);
}
.widget-faq.template-2 .widget-item-content{
    cursor: default;
    display: none;
}
.widget-faq.template-2 .widget-item-description{
    font-size: .8em;
    font-weight: 400;
    line-height: 130%;
    color: #626262;
    margin-top: 1.875em;
}
.widget-faq.template-2 .widget-item-description p,
.widget-faq.template-2 .widget-item-description ul{
    margin-bottom: clamp(16px, 3vw, 20px);
}
.widget-faq.template-2 .widget-item-description ul {
	margin-top: 10px;
	list-style: disc;
	padding-left: 15px;
}
.widget-faq.template-2 .widget-item-description ul li:before{
    transform: translateY(7px);
}
.widget-faq.template-2 .widget-item-description ul li::marker{
    display: none;
    content: none;
}
.widget-faq.template-2 .widget-item-description a{
    color: var(--main-color, #626262);
    text-decoration: underline;
}
.widget-faq.template-2 .widget-item-description a:hover,
.widget-faq.template-2 .widget-item-description a:focus{
    color: var(--dark-main-color, #626262);
}

@media all and (max-width: 1000px) {
    .widget-faq.template-2 .widget-item-title br{
        display: none;
    }
}

@media all and (max-width: 800px) {
    .widget-faq.template-2{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-faq.template-2 .widget-header{
        gap: 1.4em;
    }
    .widget-faq.template-2 .widget-header .widget-title{
        font-size: 2.6em;
    }
    .widget-faq.template-2 .widget-item-icon{
        width: 20px;
        height: 20px;
    }
}
@media all and (max-width: 600px) {
    .widget-faq.template-2 .widget-header{
        gap: .8em;
    }
    .widget-faq.template-2 .widget-header .widget-title {
        font-size: 1.75em;
    }

    .widget-faq.template-2 .widget-header + .widget-content{
        margin-top: 11px;
    }
    .widget-faq.template-2 .widget-item{
        padding: 1em .6em;
    }
    .widget-faq.template-2 .widget-item-header{
        gap: 20px;
    }
    .widget-faq.template-2 .widget-item-icon{
        width: 16px;
        height: 16px;
    }
    .widget-faq.template-2 .widget-item-description {
        font-size: .875em;
        margin-top: 1.2em;
    }
}