table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border-spacing: 0;
}

.product-page-wrapper {
    margin-bottom: 136px;
}

.product-hero {
    margin-top: 66px;
    display: flex;
    justify-content: space-between;
}

.product-hero-slider {
    overflow: hidden;
    padding: 15px 15px;
    margin: -15px;
    cursor: pointer;
}

.product-hero-slider-wrapper {
    height: 542px;
    padding: 37.5px 0;
    width: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

/* .product-hero-slider .product-hero-slide {
  height: 145px !important;
} */

.product-hero-slider-wrapper .swiper-button-next {
    height: 15px;
    width: 15px;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10;
    background-size: contain !important;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.product-hero-slider-wrapper .swiper-button-prev {
    height: 15px;
    width: 15px;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10;
    background-size: contain !important;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

/* .product-hero-slider .swiper-wrapper {
  margin-top: 10px;
} */

.product-hero-slider-wrapper .swiper-button-next:after,
.product-hero-slider-wrapper .swiper-button-prev:after {
    display: none;
    content: "";
}

.product-hero-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-slider img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}

.product-hero-slider .swiper-slide-active {
    box-shadow: 0px 0px 17.35px 0px #57575740;
    border-radius: 8px;
    background: #fff;
}

.product-hero-preview {
    display: flex;
    width: 100%;
}

.product-hero-image {
    margin-left: 60px;
    max-width: 912px;
    width: 100%;
    height: 539px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	position: relative;
}

.product-hero-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-hero-info {
    max-width: 514px;
}

.product-hero-title {
    font-weight: 700;
    font-size: 39px;
    line-height: 110%;
}

.product-hero-description {
    font-weight: 400;
    font-size: 19px;
    line-height: 175%;
    margin-top: 22px;
}

.product-hero-button {
    height: 72px;
    border-radius: 10px;
    padding: 0 67px;
    font-weight: 600;
    font-size: 19px;
    line-height: 170%;
    width: fit-content;
    white-space: nowrap;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product-hero-buttons {
    margin-top: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-hero-price-button {
    background-color: #ff632a;
    color: #ffffff;
}

.product-hero-price-button:hover,
.help-block-button:hover {
    transition: all 0.3s;
    cursor: pointer;
    background-color: #fa4402;
}

.product-hero-download-button {
    border: 1px solid #c0c0c0;
    margin-top: 25px;
    color: #2E2E2E;
}

.product-hero-download-button:hover,
.product-details-section-button:hover,
.request-card-button:hover {
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #fa4402;
    color: #fa4402;
}

.product-nav-panel-item:hover {
    transition: all 0.3s;
    cursor: pointer;
    color: #fa4402;
}

.product-nav-panel {
    display: grid;
    grid-auto-flow: column;
    white-space: nowrap;
    gap: 1px;
    background-color: #e0e0e0;
    border: none;
    margin-top: 80px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
    overflow-x: auto;
    width: 100%;
}

.product-nav-panel.hidden {
    transform: translateY(-100%);
    /* уезжает вверх */
}

.product-nav-panel div {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 69px;
    font-weight: 600;
    font-size: 20px;
    padding: 0 20px
}

.product-nav-panel-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-nav-panel-item.active {
    background-color: #f5f5f5;
}

.product-details {
    overflow: hidden;
    transition: height 0.35s ease;
    margin-bottom: 75px;
}

.product-details-section {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: none;
}

.product-details-image-wrapper {
    display: flex;
    justify-content: space-between;
}

.product-details-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-details-section-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 175%;
}

.product-details .product-details-section-title:nth-child(n + 2) {
    margin-top: 50px;
    margin-bottom: 20px;
}

.characteristics-table {
    width: 100%;
    border: 1px solid #ff632a;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 14px;
}

.characteristics-table table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.characteristics-table table tr:first-child {
    background: #ff632a;
    border: 1px solid #ff632a;
    color: #fff;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    text-align: center;
    height: 65px;
}

.characteristics-table table tr:first-child td:first-child {
    border-left: 0;
}

.characteristics-table table tr:first-child td:last-child {
    border-right: 0;
}

.characteristics-table table tr:first-child td,
.characteristics-table table tr:first-child th {
    padding: 0;
    border: 1px solid #ffffff;
    border-left: 0;
    border-top: 0;
    vertical-align: middle;
}

.characteristics-table table tr:nth-child(n + 2) td,
.characteristics-table table tr:nth-child(n + 2) th {
    border: 1px solid #ababab;
    vertical-align: middle;
    font-weight: 400;
    font-size: 19px;
    line-height: 170%;
    height: 49px;
}

.characteristics-table table tr:nth-child(n + 2) td:nth-child(n + 2) {
    text-align: center;
}

.characteristics-table table tr:nth-child(n + 2) td:nth-child(1) {
    padding-left: 50px;
    text-align: left;
}

.cutting-table {
    border: 1px solid #ff632a;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-top: 14px;
}

.cutting-table td:nth-child(2) {
    border-right: none !important;
}

.cutting-table td:first-child {
    border-left: none !important;
    border-bottom: none !important;
}

.cutting-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.cutting-table thead {
    background: #ffb885;
    border-collapse: collapse;
}

.cutting-table thead tr {
    background: #ffb885;
}

.cutting-table thead tr th {
    border: 1px solid #ffffff;
    border-top: none;
    padding: 0;
	vertical-align: middle;
}

.cutting-table thead tr th:nth-child(n + 3) {
    border: none;
    border-spacing: 0;
}

.cutting-table thead tr th:nth-child(1) {
    width: 300px;
}

.cutting-table thead tr th:nth-child(2) {
    width: 400px;
}

.cutting-table th {
    font-weight: 600;
    position: relative;
    height: 100px;
}

.cutting-table th:nth-child(n + 3) {
    position: relative;
    height: 100px;
    border: none;
    border-spacing: 0;
    width: 100px;
}

.cutting-table th:nth-child(n + 3)::before {
    content: attr(data-label);
    position: absolute;
    top: 20%;
    left: -50%;
    transform: rotate(90deg);
    white-space: nowrap;
    font-size: 19px;
    width: 100%;
    text-align: right;
}

.cutting-table td {
    border: 1px solid #ababab;
    padding: 5px;
    position: relative;
    height: 40px;
	vertical-align: middle;
}

.bar-container {
    border-left: 1px solid #ababab !important;
}

.cutting-table td:nth-child(n + 3) {
    border: inherit;
    border-left: 1px solid black;
}

.cutting-table td:nth-child(n + 2) {
    padding: 0;
    border-bottom: none;
    border-top: none;
}

.cutting-table tr:nth-child(5n) {
    border-bottom: 1px solid #ababab;
}

.cutting-table tr:last-child,
.cutting-table tr:last-child td {
    border-bottom: none;
}

.bar {
    height: 100%;
    background: linear-gradient(to right, #d9d9d9, #efefef);
    position: absolute;
    top: 5px;
    left: 0;
    height: 31px;
    z-index: -1;
}

.help-block {
    width: 100%;
    position: relative;
    height: 396px;
    overflow: hidden;
    border-radius: 10px;
}

.help-block-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: 0 50%;
    transform: scaleX(-1);
    filter: brightness(0.8);
}

.help-block-image {
    max-width: 800px !important;
}

.help-block-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding-left: 9.3%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.help-block-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #ffffff;
    margin-top: 62px;
}

.help-block-button {
    height: 72px;
    background-color: #ff632a;
    border-radius: 10px;
    padding: 0 67px;
    font-weight: 600;
    font-size: 19px;
    line-height: 170%;
    width: fit-content;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 25px;
}

.equipment-block {
    margin-top: 134px;
}

.equipment-card {
    display: flex;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 90px;
    height: 342px;
    transition: all 0.5s;
}

.equipment-card:hover,
.request-card:hover,
.order-card:hover {
    transition: all 0.5s;
    transform: scale(1.01);
    box-shadow: 0px 10px 19px 0px #57575740;
}

.equipment-card:hover .equipment-card-image {
    transform: scale(1.03);
}

.equipment-card:last-child {
    margin-bottom: 0;
}

.equipment-card.reverse {
    flex-direction: row-reverse;
}

.equipment-card.reverse .equipment-card-content-image {
    left: -20%;
    right: auto;
}

.equipment-card-image {
    width: 36%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

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

.equipment-card-content-wrapper {
    width: 64%;
    position: relative;
    background-color: #eeeeee;
}

.equipment-card-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-card-content-image {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 65%;
    top: -60%;
}

.equipment-card-content-text {
    font-weight: 600;
    font-size: 25px;
    line-height: 148%;
    max-width: 714px;
}

.requests-block {
    display: flex;
    margin-top: 174px;
    height: 412px;
    justify-content: space-between;
}

.request-card {
    width: 40%;
    height: 100%;
    border-radius: 10px;
    background-color: #484848;
    position: relative;
    overflow: hidden;
}

.request-card-bg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    object-fit: cover;
    transform: scaleX(-1);
    width: 100%;
    z-index: 1;
}

.request-card-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.card-content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-card-content {
    padding: 0 110px;
}

.request-card-button {
    height: 72px;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 19px;
    line-height: 170%;
}

.request-card-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 153%;
    text-align: center;
    margin-top: 32px;
    color: #ffffff;
}

.order-card {
    width: 59%;
    height: 100%;
    border-radius: 10px;
    background-color: #484848;
    position: relative;
    overflow: hidden;
}

.order-card-bg {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    z-index: 1;
    height: 100% !important;
}

.order-card-content {
    margin: 0 155px 0 130px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.order-card-content img {
    height: 78px;
}

.product-details-section-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 170%;
    margin-bottom: 20px;
}

.product-details-section-list-title {
    font-weight: 600;
    font-size: 19px;
    line-height: 175%;
}

.product-details-section-list {
    list-style-type: disc;
    padding-left: 40px;
}

.product-details-section-list-item {
    font-weight: 400;
    font-size: 19px;
    line-height: 175%;
}

.product-details-section-list-item::marker {
    font-size: 12px;
}

.product-details-section img {
    width: 100%;
}

.product-details-section p {
    margin-top: 16px;
}

.product-details-section p:first-child {
    margin-top: 0;
}

.product-details-section a{
    color: #000000
}

.product-details-section-button-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 39px;
}

.download-link {
    color: #ff632a;
    transition: all 0.3s;
}

.download-link:hover {
    color: #fa4402;
    cursor: pointer;
}

.product-details-section-button {
    height: 72px;
    border-radius: 10px;
    border: 1px solid #ff632a;
    padding: 0 70px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 19px;
    line-height: 170%;
}

.product-videos-slider-container {
    margin: 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-videos-slider-container .swiper-button-prev {
    height: 50px;
    width: 50px;
    background-color: #c0c0c0;
    border-radius: 100%;
    left: -80px;
    transition: all 0.3s;
    background-image: none;
}

.product-videos-slider-container .swiper-button-next {
    height: 50px;
    width: 50px;
    background-color: #c0c0c0;
    border-radius: 100%;
    right: -80px;
    transition: all 0.3s;
    transform: scaleX(-1);
    background-image: none;
}

.product-videos-slider-container .swiper-button-prev img,
.product-videos-slider-container .swiper-button-next img {
    width: 70%;
}

.product-videos-slider-container .swiper-button-next:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.product-videos-slider-container .swiper-button-prev:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.product-videos-slider-container .swiper-button-prev:after,
.product-videos-slider-container .swiper-button-next:after {
    content: "";
}

.product-videos-slide iframe {
    pointer-events: none;
    border-radius: 10px;
    height: 180px;
    width: 100%;
    min-height: 180px;
}

.product-videos-main-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 52px;
}

.product-videos-main-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.product-videos-main-slider iframe {
    width: 100%;
    height: 72vh;
    border: 0;
    border-radius: 10px;
    background: #000;
}

.question-block {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    max-width: 1410px;
    margin: 172px auto 0 auto;
}

.question-block-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    object-fit: cover;
    height: 100% !important;
}

.question-block-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question-block-content {
    position: relative;
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.question-block-content-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 122px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.question-block-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 145%;
}

.question-block-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-top: 36px;
}

.question-image-wrapper {
    width: 50%;
    right: 12px;
    bottom: 0px;
    position: absolute;
    display: flex;
    height: 100%;
    flex: 1;
    align-items: flex-end;
    justify-content: flex-end;
}

.order-card-content .help-block-button {
    margin: 0;
}

.product-videos-title {
    margin-top: 160px;
    margin-bottom: 55px;
    font-weight: 600;
    font-size: 22px;
    line-height: 170%;
}

.product-section-table table td {
    vertical-align: middle;
}

.product-section-table table tr td:first-child {
    border-left: 0 !important;
}

.product-section-table table tr td:last-child {
    border-right: 0 !important;
}

.product-section-table table tr td,
.product-section-table table tr th {
    border: 1px solid #ABABAB;
    vertical-align: middle;
}

.product-details-section ul {
    list-style: disc;
    /* padding: 0 0 0 5px; */
    padding: 0 0 0 25px;
    margin: 35px 0 25px 15px;
}

@media screen and (min-width: 1280px) and (max-width: 1900px) and (min-height: 500px) and (max-height: 1079px) {
    .product-hero-title {
        font-size: 35px;
    }

    .product-hero-description {
        font-weight: 400;
        font-size: 17px;
        line-height: 175%;
        margin-top: 18px;
    }

    .product-hero-info {
        max-width: 440px;
    }

    .product-hero-button,
    .help-block-button,
    .request-card-button {
        height: 49px;
        padding: 0 45px;
        font-size: 15px;
    }

    .product-nav-panel div {
        height: 49px;
        font-size: 15px;
        padding: 0 10px;
    }

    .product-section-table table tr td {
        font-size: 15px;
    }

    .characteristics-table table tr:nth-child(n + 2) td,
    .characteristics-table table tr:nth-child(n + 2) th {
        font-size: 15px;
    }

    .characteristics-table table tr:nth-child(n + 2) td:nth-child(1) {
        padding-left: 30px;
        text-align: left;
    }

    .help-block-title {
        font-weight: 700;
        font-size: 38px;
    }

    .equipment-card {
        margin-bottom: 60px;
        height: 300px;
    }

    .equipment-card-content-text {
        font-size: 20px;
    }

    .order-card-content {
        margin: 0 auto;
        gap: 40px;
        justify-content: center;
    }

    .order-card-content img {
        height: 48px;
        width: auto;
    }

    .requests-block,
    .question-block {
        margin-top: 114px;
    }

    .product-hero-download-button {
        margin-top: 15px;
    }

}


@media screen and (max-width: 1279px) {
    .product-hero {
        flex-direction: column-reverse;
        gap: 72px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .product-videos-title {
        margin-top: 82px;
        margin-bottom: 17px;
        font-weight: 600;
        font-size: 18px;
        line-height: 170%;
    }

    .product-hero-info {
        max-width: 100%;
    }

    .product-hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .product-hero-download-button {
        margin-top: 0;
    }

    .product-hero-button {
        height: 39px;
        font-weight: 600;
        font-size: 14px;
        line-height: 170%;
        padding: 0 41px;
    }

    .product-hero-title {
        font-size: 32px;
    }

    .product-hero-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 175%;
    }

    .product-hero-preview {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-hero-image {
        width: 100%;
        max-height: 385px;
		height: auto;
        margin-left: 0;
    }

    .product-hero-slider-wrapper {
        width: 100%;
        height: auto;
    }

    .product-hero-slider-wrapper {
        padding: 0 53px;
    }

    .product-hero-slider {
        padding: 15px 15px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .product-hero-slider .product-hero-slide {
        height: 124px !important;
    }

    .product-hero-slider .swiper-wrapper {
        margin-top: 0px;
    }

    .product-hero-slider-wrapper .swiper-button-next,
    .product-hero-slider-wrapper .swiper-button-prev {
        position: absolute;
        top: 50%;
        width: 29px;
        height: 29px;
    }

    .product-hero-slider-wrapper .swiper-button-next {
        left: auto;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .product-hero-slider-wrapper .swiper-button-prev {
        right: auto;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .product-nav-panel div {
        height: 43px;
        font-size: 14px;
    }

    .product-nav-panel {
        grid-template-columns: repeat(5, auto);
        margin-top: 36px;
    }

    .help-block {
        height: 258px;
    }

    .help-block-title {
        font-weight: 700;
        font-size: 29px;
        line-height: 132%;
        margin-top: 40px;
        width: 317px;
    }

    .help-block-button {
        height: 45px;
        padding: 0 31px;
        font-size: 14px;
        line-height: 100%;
        margin-top: 21px;
    }

    .help-block-image {
        width: 60% !important;
        transform: translateX(5%);
    }

    .help-block-wrapper {
        padding-left: 68px;
    }

    .equipment-card-content-wrapper {
        width: 68%;
    }

    .equipment-card-content-text {
        font-size: 18px;
        line-height: 148%;
        max-width: 376px;
    }

    .equipment-card-content-image {
        right: -25%;
        width: 100%;
        top: -60%;
    }

    .equipment-card {
        height: 236px;
        margin-bottom: 44px;
    }

    .equipment-card.reverse .equipment-card-content-image {
        left: -20%;
        right: auto;
        transform: scaleX(-1);
    }

    .requests-block {
        height: 174px;
        margin-top: 72px;
    }

    .request-card {
        width: 43%;
    }

    .order-card {
        width: 55%;
    }

    .request-card-content {
        padding: 0 40px;
    }

    .request-card-button {
        height: 39px;
        max-width: 175px;
        border-radius: 5px;
        font-size: 14px;
        line-height: 170%;
    }

    .request-card-text {
        font-size: 14px;
        line-height: 123%;
        margin-top: 16px;
    }

    .request-card-img {
        width: 70%;
    }

    .order-card-content img {
        height: 39px;
    }

    .order-card-content {
        margin: 0 23px 0 15px;
        gap: 23px;
    }

    .characteristics-table table tr:nth-child(n + 2) td:nth-child(1) {
        padding-left: 0px;
        text-align: center;
    }

    .characteristics-table table tr:first-child {
        font-size: 14px;
    }

    .characteristics-table table tr:nth-child(n + 2) td {
        font-size: 14px;
    }

    .product-details-section ul {
        font-size: 14px
    }

    .product-section-table table tr td {
        font-size: 14px;
    }

    .product-details-section p,
    .product-details-section-list-item {
        font-size: 14px;
    }

    .product-details-section p {
        margin-top: 10px;
        max-width: 100%;
        line-height: 175%;
    }

    .product-details-section {
        margin-top: 44px;
        font-size: 15px;
    }

    .product-details-section-button {
        height: 45px;
        border-radius: 5px;
        padding: 0 40px;
        font-size: 14px;
        line-height: 170%;
    }

    .product-details-section-title {
        font-size: 18px;
        margin-bottom: 17px;
    }

    .question-block {
        height: 234px;
        margin-top: 82px;
        margin-bottom: 86px;
    }

    .question-block-title {
        font-size: 29px;
    }

    .question-block-text {
        font-size: 20px;
        margin-top: 16px;
    }

    .question-image-wrapper img {
        width: 100%;
    }

    .question-image-wrapper {
        width: 80%;
        right: 0px;
    }

    .question-block-content-left {
        top: 53px;
        bottom: auto;
        bottom: 0;
        left: 62px;
        justify-content: flex-start;
    }

    .product-videos-slide iframe {
        width: 100%;
        height: 100%;
        min-height: 86px;
    }

    .product-videos-slider-container {
        margin: 0 40px;
        height: 8.5vh;
        min-height: 86px;
    }

    .product-videos-main-slider {
        height: 358px !important;
        margin: 0 auto 36px;
    }

    .product-videos-slider-container .swiper-button-next img,
    .product-videos-slider-container .swiper-button-prev img {
        width: 70%;
    }

    .product-videos-slider-container .swiper-button-next,
    .product-videos-slider-container .swiper-button-prev {
        height: 25px;
        width: 25px;
    }

    .product-videos-slider-container .swiper-button-next {
        right: -40px;
        transform: scaleX(-1) translateY(50%);
    }

    .product-videos-slider-container .swiper-button-prev {
        left: -40px;
        transform: translateY(50%);
    }

    .product-videos-main-slider iframe {
        height: 100%;
    }
}

@media screen and (min-width: 768px) {
    .mobile_none {
        display: block;
    }

    .only-mobile {
        display: none;
    }

    .cutting-table .mobile_none {
        display: table-cell;
    }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .help-block-wrapper {
        padding-left: 0;
        ;
        justify-content: center;
    }

    .characteristics-table table tr:nth-child(n + 2) td:nth-child(1) {
        padding-left: 0px;
        text-align: center;
    }

    .characteristics-table table tr:first-child {
        font-size: 12px;
        line-height: 175%;
    }

    .characteristics-table table {
        min-width: auto;
    }

    .characteristics-table table tr:nth-child(n + 2) td {
        font-size: 12px;
        line-height: 175%;
    }

    .product-details-section ul {
        font-size: 12px;
        line-height: 175%;
    }

    .product-section-table table tr td {
        font-size: 12px;
        line-height: 175%;
    }

    .product-details-section p,
    .product-details-section-list-item {
        font-size: 12px;
        line-height: 175%;
    }

    .product-videos-title {
        margin-top: 75px;
        margin-bottom: 21px;
        font-weight: 600;
        font-size: 14px;
        line-height: 150%;
    }

    .product-hero-title {
        font-weight: 700;
        font-size: 17px;
        line-height: 110%;
    }

    .product-hero {
        gap: 42px;
    }

    .product-hero-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 175%;
    }

    .product-hero-buttons {
        justify-content: center;
        gap: 19px;
    }

    .product-hero-download-button {
        margin-top: 0;
    }

    .product-hero-button {
        height: 39px;
        font-size: 12px;
        line-height: 170%;
        padding: 0 33px;
    }

    .product-hero-preview {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-hero-image {
        width: 100%;
        height: 182px;
        margin-left: 0;
    }

    .product-hero-image img {
        height: 100%;
        width: 100%;
    }

    .product-hero-slider-wrapper {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .product-hero-slider {
        padding: 15px 0 15px 15px;
        margin: 0 auto;
        margin-top: 5px;
    }

    .product-hero-slider .product-hero-slide {
        height: 80px !important;
    }

    .product-hero-slider .swiper-wrapper {
        margin-top: 0px;
    }

    .product-nav-panel {
        overflow-x: auto;
        margin-top: 56px;
    }

    .product-nav-panel div {
        height: 34px;
        font-size: 12px;
        white-space: nowrap;
        padding: 0 12px;
    }

    .product-details {
        margin-bottom: 62px;
    }

    .product-details-section-title {
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 21px;
    }

    .table-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .characteristics-table,
    .cutting-table {
        width: 100%;
        min-width: fit-content;
    }

    .characteristics-table table tr:first-child {
        font-size: 12px;
    }

    .characteristics-table table tr:nth-child(n + 2) td,
    .characteristics-table table tr:nth-child(n + 2) th {
        font-size: 12px;
        height: 25px;
    }

    .characteristics-table table tr:nth-child(n + 2) td:nth-child(1) {
        padding-left: 12px;
        text-align: center;
    }

    .characteristics-table table td:first-child {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .characteristics-table table td:nth-child(n + 2) {
        width: 82px;
        min-width: 82px;
        max-width: 82px;
    }

    .cutting-table th {
        font-size: 12px;
        line-height: 170%;
    }

    .cutting-table td {
        font-size: 12px;
        line-height: 170%;
    }

    .mobile_none {
        display: none;
    }

    .cutting-table thead tr th:nth-child(n + 3) {
        width: 35px;
        min-width: 35px;
        max-width: 35px;
    }

    .only-mobile {
        display: block;
    }

    .cutting-table .only-mobile {
        display: table-row;
    }

    .cutting-table .only-mobile td:first-child {
        background-color: #ffe5d3;
    }

    .cutting-table tbody td {
        height: 27px;
    }

    .cutting-table td:nth-child(2) {
        border-left: none !important;
    }

    .bar {
        height: 20px;
    }

    .cutting-table th:nth-child(n + 3)::before {
        top: 60%;
        left: -50%;
        transform: rotate(90deg);
        white-space: nowrap;
        font-size: 12px;
        width: 40px;
        text-align: right;
    }

    .cutting-table table td:first-child {
        width: 145px;
        min-width: 145px;
        max-width: 145px;
    }

    .help-block-title {
        font-weight: 700;
        font-size: 22px;
        line-height: 132%;
        text-align: center;
        margin-top: 50px;
    }

    .help-block-button {
        height: 35px;
        border-radius: 5px;
        padding: 0 23px;
        font-size: 12px;
        line-height: 100%;
        margin: 48px auto 0 auto;
    }

    .help-block {
        height: 258px;
    }

    .help-block-image {
        display: none;
    }

    .equipment-card {
        display: flex;
        flex-direction: column;
        margin-bottom: 46px;
        height: 463px;
    }

    .equipment-card.reverse {
        flex-direction: column;
    }

    .equipment-card-content-wrapper {
        height: 268px;
        width: 100%;
        overflow: hidden;
    }

    .equipment-card-content-text {
        font-size: 15px;
        max-width: 217px;
    }

    .equipment-card-image {
        width: 100%;
        height: 215px;
    }

    .equipment-card-content-image {
        position: absolute;
        z-index: 1;
        right: -50%;
        width: auto;
        height: 150%;
        top: -30%;
    }

    .equipment-card.reverse .equipment-card-content-image {
        left: auto;
        right: -50%;
    }

    .equipment-block {
        margin-top: 57px;
    }

    .requests-block {
        flex-direction: column;
        height: 100%;
        gap: 21px;
        margin-top: 49px;
    }

    .request-card {
        width: 100%;
        height: 157px;
        border-radius: 10px;
        background-color: #484848;
        position: relative;
        overflow: hidden;
    }

    .order-card {
        height: 157px;
        width: 100%;
    }

    .request-card-content {
        padding: 0 25px;
    }

    .request-card-button {
        height: 35px;
        max-width: 175px;
        margin: 0 auto;
        border-radius: 5px;
        font-size: 12px;
        line-height: 170%;
    }

    .request-card-img {
        height: 120%;
    }

    .request-card-text {
        font-size: 10px;
        line-height: 123%;
        max-width: 231px;
        margin-top: 17px;
    }

    .order-card-bg {
        object-position: -0%;
    }

    .order-card-content {
        flex-direction: column;
        gap: 23px;
        margin: 0;
    }

    .order-card-content img {
        height: 39px;
    }

    .question-block {
        height: 120px;
        margin-top: 60px;
        margin-bottom: 57px;
    }

    .question-block-title {
        font-size: 14px;
        line-height: 145%;
    }

    .question-block-text {
        font-size: 10px;
        line-height: 100%;
        margin-top: 6px;
    }

    .question-image-wrapper img {
        width: 100%;
    }

    .question-block-content-left {
        top: 20px;
        left: 24px;
        display: flex;
        justify-content: flex-start;
    }

    .question-image-wrapper {
        width: 80%;
        right: 0;
    }

    .product-details .product-details-section-title:nth-child(n + 2) {
        margin-top: 37px;
    }

    .product-details-section p,
    .product-details-section-list-item {
        font-size: 12px;
    }

    .product-details-section p {
        margin-top: 10px;
        max-width: 100%;
        line-height: 175%;
    }

    .product-details-section {
        margin-top: 30px;
        font-size: 12px;
        line-height: 170%;
    }

    .product-details-section-list {
        padding-left: 20px;
    }

    .product-details-section-button-wrapper {
        flex-direction: column;
        margin-top: 28px;
        gap: 28px;
    }

    .product-details-section-button {
        height: 35px;
        border-radius: 5px;
        width: 100%;
        justify-content: center;
        font-size: 12px;
        white-space: nowrap;
    }

    .product-videos-main-slider {
        height: 180px !important;
        margin: 0 auto 23px;
    }

    .product-videos-slider-container {
        height: 97px;
        margin: 0;
    }

    .product-videos-slider-container .swiper-button-prev,
    .product-videos-slider-container .swiper-button-next {
        display: none;
    }

    .product-videos-slide iframe {
        width: 100%;
        height: 100%;
        min-height: 90px;
    }

    .product-hero-slider-wrapper .swiper-button-prev,
    .product-hero-slider-wrapper .swiper-button-next {
        display: none;
    }

    .product-videos-main-slider iframe {
        height: 100%;
    }

    .product-details-image-wrapper {
        flex-direction: column;
    }
}