.park-block {
    padding: 120px 0px 60px;
}
.park-block .title__holder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.park-block .title__holder .title {
    margin-bottom: 10px;
    text-align: center;
}
.park-block .title__holder .subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #797b7d;
}
.park-block .cats_tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-align: stretch;
    align-items: stretch;
    margin-bottom: 50px;
}
.park-block .cats_tabs .cat_tab {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #dcddde;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #797b7d;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.park-block .cats_tabs .cat_tab:last-child {
    margin-right: 0px;
}
.park-block .cats_tabs .cat_tab:hover {
    border: 2px solid #ed8400;
    background-color: #ffffff;
}
.park-block .cats_tabs .cat_tab.active {
    border: 2px solid #ed8400;
    color: #ffffff;
    background-color: #ed8400;
}
.park-block .tabs_contents {
    width: 100%;
}
.park-block .tabs_contents .tab_content {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    width: 100%;
}
.park-block .tabs_contents .tab_content.active {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.park-block .tabs_contents .tab_content.visible {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
}
.park-block .tabs_contents .tab_content .park {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-align: start;
    align-items: flex-start;
    width: 100%;
}
.park-block .tabs_contents .tab_content .park .left__side,
.park-block .tabs_contents .tab_content .park .right__side {
    width: calc(50% - 15px);
}
.park-block .tabs_contents .tab_content .park .left__side {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    flex-align: start;
    align-items: flex-start;
}
.park-block .tabs_contents .tab_content .park .park-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #261e1a;
    margin-bottom: 10px;
}
.park-block .tabs_contents .tab_content .park .descr {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #797b7d;
    margin-bottom: 20px;
}
.park-block .tabs_contents .tab_content .park .park-char {
    width: 100%;
    margin-bottom: 40px;
}
.park-block .tabs_contents .tab_content .park .park-char .char-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #261e1a;
    margin-bottom: 10px;
}
.park-block .tabs_contents .tab_content .park .park-char .char__holder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    flex-align: start;
    align-items: flex-start;
    width: 100%;
}
.park-block .tabs_contents .tab_content .park .park-char .char__holder .char-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.park-block
    .tabs_contents
    .tab_content
    .park
    .park-char
    .char__holder
    .char-item:last-child {
    margin-bottom: 0px;
}
.park-block
    .tabs_contents
    .tab_content
    .park
    .park-char
    .char__holder
    .char-item
    .char-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #797b7d;
    background-color: #ffffff;
    padding-right: 10px;
    width: min-content;
}
.park-block
    .tabs_contents
    .tab_content
    .park
    .park-char
    .char__holder
    .char-item
    .char-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #261e1a;
    background-color: #ffffff;
    padding-left: 10px;
    width: fit-content;
    max-width: 230px;
    text-align: right;
}
.park-block .tabs_contents .tab_content .park .park-char .char__holder .char-item:before {
    content: "";
    position: absolute;
    height: 1px;
    border-bottom: 1px dashed #797b7d;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
    z-index: -1;
}
.park-block .tabs_contents .tab_content .park .park-img {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}
.park-block .tabs_contents .tab_content .park .park-img .swiper-park {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #797b7d;
}
.park-block .tabs_contents .tab_content .park .park-img .swiper {
    max-width: 570px;
    width: 100%;
    height: auto;
}
.park-block .tabs_contents .tab_content .park .park-img .swiper .swiper-slide {
    width: 100%;
    box-sizing: border-box;
    display: flex;
}
.park-block .tabs_contents .tab_content .park .park-img .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.park-block .tabs_contents .tab_content .park .thumbs__holder {
    width: 100%;
    overflow: hidden;
    padding-bottom: 2px;
}
.park-block .tabs_contents .tab_content .park .thumbs__holder .swiper-wrapper {
    align-items: stretch;
}
.park-block .tabs_contents .tab_content .park .item__thumb {
    box-sizing: border-box;
    display: flex;
    border: 1px solid #797b7d;
    border-radius: 5px;
    overflow: hidden;
    height: auto;
    cursor: pointer;
    opacity: 0.5;
}
.park-block .tabs_contents .tab_content .park .item__thumb.swiper-slide-thumb-active {
    opacity: 1;
}
.park-block .tabs_contents .tab_content .park .item__thumb img {
    width: 100%;
    object-fit: contain;
}
.park-block .arr_left,
.park-block .arr_right {
    cursor: pointer;
}
@media screen and (max-width: 993px) {
    .park-block .cats_tabs {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        max-width: 767px;
        overflow: auto;
        padding-bottom: 15px;
    }
    .park-block .tabs_contents .tab_content .park {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        flex-align: start;
        align-items: flex-start;
    }
    .park-block .tabs_contents .tab_content .park .left__side,
    .park-block .tabs_contents .tab_content .park .right__side {
        width: 100%;
    }
    .park-block .tabs_contents .tab_content .park .left__side {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 578px) {
    .park-block .tabs_contents .tab_content .park .left__side .park-title {
        font-size: 18px;
    }
    .park-block .tabs_contents .tab_content .park .left__side .descr {
        font-size: 16px;
    }
    .park-block .tabs_contents .tab_content .park .park-char .park-title {
        font-size: 18px;
    }
    .park-block
        .tabs_contents
        .tab_content
        .park
        .park-char
        .char__holder
        .char-item
        .char-name {
        font-size: 16px;
    }
    .park-block
        .tabs_contents
        .tab_content
        .park
        .park-char
        .char__holder
        .char-item
        .char-value {
        font-size: 16px;
        max-width: 205px;
    }
}

@media (max-width:500px) {
    .park-block .cats_tabs{
        flex-direction: column;
        gap: 10px;
    }
    .park-block .cats_tabs .cat_tab:last-child{
        margin-right: 10px;
    }
}

@media (max-width: 320px) {
    .park-block {
        padding: 50px 0px 60px;
    }

}
