body {
    background: #FAFAFA;
}

.sect-product {
    margin-top: 45px;
}

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 25em;
      width: 100%;
      margin-left: 0;
      border: 1px solid #DEDEDE;
      margin-bottom: 20px;
    }

    .mySwiper2 .swiper-slide {
        padding: 1em;
        margin: 0;
    }

    .mySwiper {
      height: 6em;
      width: 100%;
      margin-left: 0;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 100%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
      border: 4px solid var(--accent-red);
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .overview-content {
        display: flex;
        align-items: start;
        justify-content: space-between;
    }

    .overview-slider {
        width: 50%;
    }

    .chars {
        margin: 0 auto;
        margin-top: 3em;
        width: 30%;
    }

    .chars-title {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.2;
        color: #151515;
        padding-bottom: 3px;
        border-bottom: 1px solid #DEDEDE;
        width: fit-content;
        margin-bottom: 35px;
    }

    .chars-list-item {
        margin-bottom: 10px;
    }

    .chars-list-item-title {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.2;
        color: #949494;
        margin-bottom: 5px;
    }

    .chars-list-item-value {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.2;
        color: #151515;
    }

    .product-title {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.3;
        color: #151515;
        padding-bottom: 15px;
        border-bottom: 1px solid #dadada;
        margin-bottom: 35px;
    }

    .product-overview {
        margin-bottom: 50px;
    }

    .product-description-title {
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 1.3;
        color: #151515;
        padding-bottom: 15px;
        border-bottom: 1px solid #dadada;
        margin-bottom: 30px;
    }

    .product-description-text {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.4;
        color: #555555;
    }

    .product-description {
        margin-bottom: 35px;
    }

    .product-form {
        display: flex;
        flex-direction: column;
    }

    .product-form-input {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.2;
        color: #555555;
        padding: 15px 3%;
        border: 1px solid #DEDEDE;
        margin-bottom: 16px;
    }

    .product-form-input::placeholder {
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.2;
        color: #555555;
    }

    textarea.product-form-input {
        margin-bottom: 34px;
        min-height: 7em;
    }

    .product-form-button {
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.2;
        color: white;
        background: var(--accent-red);
        padding: 16px 0;
        width: 100%;
        margin-bottom: 10px;
        transition: all .2s ease-in;
    }

    .product-form-button:hover {
        background: var(--dark-red);
    }

    .product-form-button:active {
        background: #151515;
    }

    .price-button {
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.2;
        color: white;
        background: #B7B7B7;
        padding: 16px 0;
        width: 100%;
        transition: all .2s ease-in;
    }

    .price-button:hover {
        background: var(--accent-red);
    }

    .price-button:active {
        background: var(--dark-red);
    }

    .sect-product .container {
        display: flex;
        align-items: start;
        justify-content: space-between;
    }

    .product-container {
        width: 75%;
        background: white;
    }

    .product-form-container {
        width: 23%;
        background: white;
    }

    .product-form-title {
        font-weight: 700;
        font-size: 1.375rem;
        line-height: 1.2;
        color: #151515;
        padding-bottom: 15px;
        border-bottom: 1px solid #DEDEDE;
        margin-bottom: 25px;
    }

    .inner-container {
        padding: 2em 1em;
    }

    @media (max-width: 1024px) {
        .sect-product .container {
            flex-direction: column;
        }

        .product-container {
            width: 100%;
            margin-bottom: 25px;
        }

        .product-form-container {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .overview-slider {
            width: 65%;
        }
    }

    @media (max-width: 525px) {
        .overview-content {
            flex-direction: column;
        }

        .overview-slider {
            width: 100%;
            margin-bottom: 25px;
        }

        .chars {
            width: 100%;
        }
    }