.product-section {
    z-index: 20;
    height: 100%;
    background: white;
    background: radial-gradient(ellipse at bottom right, #c0e6ff 0%, rgb(255 255 255) 30%);
}

.product-section-wrapper {
    height: 100%;
    min-height: 100vh;
    padding: 80px 0;
    justify-content: space-between;
}

.height-100vh {
    height: 100vh;
}

.product-title {
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 8px;
}

.product-title .h4-styling {
    margin: 0;
    line-height: 1.2em;
}

.product-image-width {
    width: 65vw;
}

.product-info-container-layout {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
    position: relative;
    gap: 64px;
    padding: 40px 0px;
    border-top: 1px solid #ccc;
}

.product-info-title .h3-styling {
    width: 120px;
}

.product-info-container-layout-last {
    border-bottom: 1px solid #ccc;
}

.border-radius {
    border-radius: 4px;
}

.border-solid-black {
    border: 1px solid var(--900);
    flex: none;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.background-900 {
    background: var(--900);
}

.width-100 {
    width: 100%;
}

.max-width-1440 {
    max-width: 1440px;
}

.padding-sections {
    padding-right: var(--paddingwrappersides);
    padding-left: var(--paddingwrappersides);
}

.product-hero-padding {
    padding-top: 180px;
    padding-bottom: 120px;
}

.product-specs-title {
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 16px 24px;
    display: flex
;
}

.text-white {
    color: white;
}

.z-20 {
    z-index: 20;
}

.section-header-container-layout {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
    gap: 64px;
}

.text-left {
    text-align: left;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.item {
    flex: 1 1 calc(25% - 8px);
    box-sizing: border-box;
    min-width: 220px;
    height: 150px;
    padding: 0px 24px;
    gap: 8px;
}

.border-bottom {
    border-bottom: 1px solid var(--900);
}

@media (max-width: 767px) {

    .product-image-width {
        width: 100vw;
        padding: 0 30px;
    }

    .product-hero-padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .product-info-container-layout {
        flex-flow: column;
    }

    .section-header-container-layout {
        flex-flow: column-reverse;
        gap: 24px;
    }

    .product-info-container-layout {
        gap: 16px;
    }

    .item {
        height: 100px;
    }

    .product-info-container-layout-even .product-title {
        order: 1;
    }

    .product-info-container-layout-even .width-100 {
        order: 2;
    }

    .product-section-wrapper {
        height: 100%!important;
    }
}

