

.detail-img {
    width: 400px;
    height: auto;
    padding-bottom: 50px;
}


.detail-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.each-detail-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}


.detail-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 300px;
    text-align: center !important;
}
.center-swiper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-name{
    margin-bottom: 1px;
}

.detail-name h1{
    font-size: var(--site-title);
    color: var(--primary-color);
    /*font-weight: 600;*/
    line-height: 45px;
    margin-bottom: 0;
    font-family: 'VZ-Bold';
}

.detail-name h1 span{
    font-family: 'VZ-Bold';
}

.detail-name h2{
    font-size: 22px;
    color: var(--primary-color);
    /* font-weight: 600; */
    line-height: 45px;
}

.detail-extra h4{
    font-size: 23px;
    color: var(--primary-color);
    /*font-weight: 600;*/
    margin-bottom: 20px;
}

.detail-text *{
    text-align: center;
    font-size: var(--p-size);
    color: var(--text-color);
    line-height: 28px !important;
}

.swiper_features{
    padding-inline: 30px;
}


.swiper_features .swiper-wrapper{
    /*justify-content: space-evenly;*/
}

.swiper_features .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}


.each-feature{
    position: relative;
    width: fit-content;
}

.feature-icon{
    width: 141px;
    height: 141px;
}

.feature-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide:first-child .each-feature::before{
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature1n1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    bottom: 2px;
    left: -9px;
}

.swiper-slide:nth-child(2) .each-feature::before {
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature2n1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
    top: 17px;
    right: -21px;
}

.swiper-slide:nth-child(2) .each-feature::after {
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature2n2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 47px;
    height: 45px;
    top: 51px;
    left: -13px;
}

.swiper-slide:nth-child(3).each-feature::before {
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature3n1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 29px;
    height: 33px;
    bottom: -8px;
    left: 9px;
}

.swiper-slide:nth-child(4) .each-feature::before {
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature4n1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 52px;
    top: 19px;
    right: -42px;
}

.swiper-slide:nth-child(5) .each-feature::before {
    position: absolute;
    content: '';
    background-image: url(../images/detail/feature5n1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 47px;
    bottom: 12px;
    right: -37px;
}


.feature-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 170px;
    text-align: center;
    padding: 14px 15px;
    padding-bottom: 30px;
    background: var(--secondary-color);
    border-radius: 100px;
    height: 305px;
    justify-content: flex-start;
}

.feature-box:hover{
    animation: shake 2s;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.feature-name{
    line-height: 23px;
}

.feature-name span{
    color: var(--primary-color);
    font-size: var(--detail-size);
}

.detail_swiper .swiper-button-prev, .detail_swiper.swiper-rtl .swiper-button-next {
    left: 70px;
    right: auto;
}

.detail_swiper .swiper-button-next, .detail_swiper.swiper-rtl .swiper-button-prev {
    right: 70px;
    left: auto;
}

.whole-features{
    width: 100%;
    position: relative;
    padding-inline: 20px;
}

.swiper_features, .swiper_features .swiper-wrapper{
    position: unset !important;
}

.swiper_features .feature-next, .swiper_features.swiper-rtl .feature-prev {
    right: -6px;
    left: auto;
}

.swiper_features .feature-next, .swiper_features .feature-prev {
    top: 56%;
}


/*responsive*/


@media screen and (max-width: 1399px){
    .detail-img {
        width: 330px;
        height: auto;
    }
}

@media screen and (max-width: 1199px){

    .detail-text * {
        font-size: 14px;
    }

    .detail-img {
        width: 295px;
        height: auto;
    }

    .detail-info {
        padding-inline: 147px;
    }

    .feature-icon {
        width: 124px;
        height: 124px;
    }

    .feature-box {
        width: 159px;
        height: 289px;
    }

}

@media screen and (max-width: 991px){

    .detail-info {
        padding-inline: 14px;
    }

    .detail-name h1 {
        font-size: calc(var(--site-title) - 5px);
        line-height: 39px;
    }

    .detail-name h2 {
        font-size: 17px;
    }

    .detail-name {
        margin-bottom: 0;
    }

    .detail-extra h4 {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .detail-features {
        padding-block: 70px 70px;
    }

    .detail-title h4 {
        font-size: calc(var(--site-title) - 5px);
    }

    .detail-img {
        width: 245px;
        height: auto;
    }


}

@media screen and (max-width: 767px){

    .detail-img {
        padding-bottom: 21px;
    }

    .swiper_features .swiper-button-next, .swiper_features .swiper-button-prev {
        top: 50%;
    }

    .swiper_features .swiper-button-next, .swiper_features.swiper-rtl .swiper-button-prev {
        right: 0px;
        left: auto;
    }

    .swiper_features .swiper-button-prev, .swiper_features.swiper-rtl .swiper-button-next {
        left: 0px;
        right: auto;
    }

    .swiper_features .swiper-button-next:after, .swiper_features .swiper-button-prev:after {
        font-size: 19px !important;
        font-weight: 600 !important;
    }


    .swiper_features{
        position: relative;
    }

    .swiper_features::before{
        position: absolute;
        content: '';
        background: var(--secondary-color);
        width: 92%;
        height: 120px;
        border-radius: 100px;
        top: 57px;
        left: 21px;
    }

    .feature-box {
        width: 159px;
        height: 189px;
    }

    .feature-box {
        background: unset;
        gap: 30px;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
    }

    .swiper-slide .each-feature::before {
        display: none;
    }

    .swiper-slide .each-feature::after {
        display: none;
    }

}

@media screen and (max-width: 575px){


    .detail-features {
        padding-block: 70px 50px;
    }


    .swiper_features .swiper-button-next, .swiper_features .swiper-button-prev {
        top: 43%;
    }


    .detail-name h1 {
        font-size: var(--main-mobile-title);
        line-height: var(--mobile-line-height);
        font-weight: 500;
        font-family: 'VZ-Bold' !important;
    }


    .detail-name h1 span{
        font-weight: 500;
        font-family: 'VZ-Bold' !important;
    }



    .detail-name h2 {
        font-size: var(--mobile-title-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
    }

    .detail-name {
        margin-bottom: 0px;
    }
    .detail-extra h4 {
        font-size: var(--mobile-title-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 6px;
    }

    .swiper_features{
        padding-inline: 24px;
    }

    .swiper_features::before {
        width: 87%;
        top: 43px;
        left: 6%;
    }

    .detail-text * {
        font-size: var(--mobile-text-font) !important;
        line-height: var(--mobile-line-height) !important;
    }

    .detail-title h4 {
        font-size: var(--main-mobile-title);
        line-height: var(--mobile-line-height);
        /*font-weight: 600;*/
        font-family: 'VZ-Bold';
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .swiper_features::before {
        height: 92px;
    }

    .detail-content {
        padding-block: 12px 31px;
    }

    .feature-name span {
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
    }

    .detail-img {
        width: 50%;
        height: auto;
    }

    .feature-name {
        line-height: var(--mobile-line-height);
    }

}

@media screen and (max-width: 500px){
    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .swiper_features::before {
        width: 88%;
        height: 92px;
        left: 6%;
    }
    .detail-features {
        padding-block: 46px 23px;
    }

    .detail-comment {
        padding-bottom: 70px;
    }

    .feature-box {
        background: unset;
        gap: 17px;
    }

}

@media screen and (max-width: 425px){

    .swiper_features .swiper-button-next, .swiper_features .swiper-button-prev {
        top: 48%;
    }

    .detail-img {
        width: 70%;
        height: auto;
    }

    .feature-box {
        width: 140px;
        height: 274px;
        padding: 12px 11px;
    }

    .swiper-slide:first-child .each-feature::before {
        width: 37px;
        height: 40px;
        bottom: -1px;
        left: -7px;
    }

    .form-thinki {
        padding-inline: 30px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .swiper_features::before {
        width: 87%;
        height: 84px;
        left: 7%;
    }

    .feature-box {
        height: 162px;
    }

}

@media screen and (max-width: 375px){

    .detail-img {
        height: 378px;
    }

    .detail-img {
        width: 70%;
        height: auto;
    }

    .detail-features {
        padding-block: 37px 22px;
    }

    .detail-content {
        padding-block: 39px 0;
    }

    .detail-comment {
        padding-bottom: 60px;
    }

    .detail-content-title h5 {
        color: var(--primary-color);
        font-size: 16px;
    }

    .swiper_features::before {
        width: 76%;
        height: 84px;
        left: 12%;
    }



    .swiper-slide:first-child .each-feature::before {
        width: 25px;
        height: 33px;
    }

    .swiper-slide:nth-child(2) .each-feature::after {
        width: 23px;
        height: 32px;
    }

    .swiper-slide:nth-child(2) .each-feature::before {
        width: 29px;
        height: 23px;
    }

    .swiper-slide:nth-child(4) .each-feature::before {
        width: 32px;
        height: 33px;
        right: -30px;
    }

    .swiper-slide:nth-child(5) .each-feature::before {
        width: 33px;
        height: 32px;
        right: -27px;
    }

    .form-thinki {
        padding-inline: 20px;
    }


}

@media screen and (max-width: 320px){
    .form-thinki {
        padding-inline: 10px;
    }


    .feature-icon {
        width: 58px;
        height: 58px;
    }

    .swiper_features::before {
        height: 77px;
    }

    .feature-box {
        background: unset;
        gap: 21px;
    }

    .detail-content {
        padding-block: 56px 0px;
    }

    .detail-features {
        padding-block: 39px 14px;
    }


}




/*responsive*/

