.why-us-box{
    min-height: 500px;
    position: relative;
}
.why-us-box-content{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    max-height: 50px;
}
.why-us-box .why-us-slide__title{
    width: 40%;
    text-align: left;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.why-us-box .why-us-slide__title:hover {
    color: #cf2d42;
}
.why-us-box .why-us-slide__title::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 26px;
    width: 10px;
    height: 8px;
    background-image: url(/local/templates/main_nd/img/icons/dropdown-closed-blue-dark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
}
.why-us-box-item{
    width: calc(100% - 40% - 20px);
    position: absolute;
    left: 40%;
    top: 0px;
    display: none;
    transition: opacity 0.3s ease-in;
}
.why-us-box .why-us-slide__content{
    justify-content: space-between;
}
.why-us-box-content.active{
    min-height: 100px;
}
.why-us-box-content.active .why-us-box-item{
    display: block;
}
.why-us-box-content.active .why-us-slide__title::before{
    transform: rotate(0);
}
.why-us-box .why-us-slide__image {
    height: 240px;
}
.why-us-box .why-us-slide__col{
    width: 49%;
}
.why-us-box .why-us-slide__col:first-child {
    margin-right: 0;
}
.why-us-box .why-us-slide__text{
    text-align: left;
    margin-bottom: 20px;
}
.why-us-box .why-us-slide__slide-title{
    font-size: 20px;
}
@media screen and (max-width: 1180px) {
    .why-us-box .why-us-slide__title{
        font-size: 22px;
    }
}
@media screen and (max-width: 1070px) {
    .why-us-box {
        min-height: auto;
        padding-bottom: 40px;
    }
    .why-us-box .why-us-slide__title {
        width: 100%;
        font-size: 20px;
    }
    .why-us-box-item {
        width: 100%;
        position: relative;
        left: 0;
        top: unset;
    }
    .why-us-box .why-us-slide__text {
        max-width: 100%;
    }
    .why-us-box-content.active {
        max-height: unset;
        min-height: unset;
    }
    .why-us-box .why-us-slide__col {
        width: 100%;
    }
    .why-us-box .why-us-slide__image {
        height: auto;
    }
    .why-us-box-content{
        display: block;
        margin-bottom: 30px;
    }
    .why-us-box .why-us-slide__title::before{
        right: 0;
        top: 9px;
        transition: transform .3s ease-out;
    }
}