.details-gallery {
    position: relative
}

.details-label-group {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.details-label {
    font-size: 14px;
    padding: 6px 10px;
    margin-bottom: 6px;
    line-height: 13px;
    border-radius: 3px;
    text-transform: capitalize;
    text-align: center;
    color: var(--white)
}

.details-label:last-child {
    margin-bottom: 0px
}

.details-label.off {
    background: var(--red)
}

.details-label.new {
    background: var(--green)
}

.details-label.sale {
    background: var(--orange)
}

.details-label.feat {
    background: var(--purple)
}

.details-label.rate {
    background: var(--yellow)
}

.details-preview {
    margin-bottom: 16px
}

.details-preview li img {
    width: 100%;
    border-radius: 8px;
    border: 1px dotted #6c757d;
}
.details-preview li img:hover {
    border: 1px solid var(--primary);
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 6px 17px 3px rgba(0, 0, 0, 0.1);
}

.details-thumb li {
    margin: 0px 8px;
    cursor: pointer
}

.details-thumb li img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--white)
}

.details-thumb .slick-current img {
    border: 1px solid var(--primary)
}

.product-navigation {
    margin-bottom: 25px;
    padding: 20px 25px;
    border-radius: 8px;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.product-navigation li a {
    color: var(--text);
    text-transform: capitalize;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.product-navigation li a:hover {
    color: var(--primary)
}

.product-navigation li a:hover .product-nav-popup {
    visibility: visible;
    opacity: 1
}

.product-nav-popup {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 3;
    width: 100px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    border-radius: 8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.product-nav-popup::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -3px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border)
}

.product-nav-popup img {
    width: 100%
}

.product-nav-popup small {
    font-size: 14px;
    line-height: 18px;
    display: inline-block
}

.details-content {
    padding: 22px 22px;
    border-radius: 8px;
    border-style: none;
    box-shadow: 0px 5px 10px 2px rgba(255, 255, 255, 0.5);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.details-content:hover {
    border: 1px solid #7E7CF7;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 6px 17px 3px rgba(0, 0, 0, 0.1);
}

.details-name {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
    color: white;
}

.details-name a {
    color: var(--bloom3);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.details-name a:hover {
    color: var(--bloom);
}

.details-meta {
    margin-top: 30px;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-direction: column;
}

.details-meta p {
    font-size: 13px;
    margin-right: 20px;
    white-space: nowrap;
    color: var(--placeholder)
}

.details-meta span,
.details-meta a {
    margin-left: 5px;
    color: var(--placeholder)
}

.details-meta a:hover {
    text-decoration: underline;
    color: var(--primary)
}

.details-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px
}

.details-rating i,
.details-rating a {
    font-size: 15px;
    margin-right: 3px;
    color: var(--gray)
}

.details-rating a {
    margin-left: 8px;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.details-rating a:hover {
    color: var(--primary);
    text-decoration: underline
}

.details-rating .active {
    color: var(--yellow)
}

.details-price {
    margin-bottom: 20px
}

.details-price del {
    color: var(--red);
    margin-right: 25px
}

.details-price span {
    color: #ffffff;
    white-space: nowrap
}

.details-price span small {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.details-desc {
    margin-bottom: 25px;
    color: #AFB6D2;
}

.details-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px
}

.details-list-group:last-child {
    margin-bottom: 0px
}

.details-list-title {
    font-weight: 500;
    margin-right: 15px;
    color: var(--heading);
    text-transform: capitalize
}

.details-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.details-tag-list li {
    margin-right: 8px
}

.details-tag-list li a {
    font-size: 14px;
    line-height: 12px;
    padding: 8px 10px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    color: var(--text);
    background: var(--chalk);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.details-tag-list li a:hover {
    color: var(--white);
    background: var(--primary)
}

.details-share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.details-share-list li {
    margin-right: 8px
}

.details-share-list li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--text);
    background: var(--chalk);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.details-share-list li a:hover {
    color: var(--white);
    background: var(--primary)
}

.details-add-group {
    margin: 45px 0px 15px
}

.details-add-group .product-add,
.details-add-group .action-input {
    padding: 10px 0px;
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase
}

.details-add-group .action-minus i,
.details-add-group .action-plus i {
    background: var(--chalk)
}

.details-action-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative
}

.details-action-group a {
    padding: 10px 0px;
    border-radius: 8px;
    color: var(--text);
    background: var(--chalk);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.details-action-group a:hover {
    color: var(--primary)
}

.details-action-group a i {
    font-size: 16px;
    margin-right: 8px
}

.details-action-group a span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase
}

.details-wish.active {
    color: var(--white);
    background: var(--primary)
}

.details-wish.active:hover {
    color: var(--white);
    background: var(--primary)
}

.product-details-frame {
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #FFFFFF33;
    background: var(--bloom-solido);
    color: var(--bloom);
}

.product-details-frame:last-child {
    margin-bottom: 0px
}

.frame-title {
    margin-bottom: 30px;
    text-transform: capitalize
}

.tab-descrip {
    position: relative
}

.tab-descrip ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 25px
}

.tab-descrip ul li {
    margin-bottom: 8px
}

.tab-descrip ul li:last-child {
    margin-bottom: 0px
}

.tab-descrip img {
    width: 100%;
    border-radius: 8px
}

.tab-descrip a {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 80px;
    height: 80px;
    font-size: 22px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: rgba(15, 199, 86, 0.8);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    text-shadow: var(--primary-tshadow)
}

.table-bordered {
    margin-bottom: 0px
}

.table-bordered th,
.table-bordered td {
    padding: 12px 25px;
    text-align: left
}

.table-bordered th {
    font-weight: 500
}

.table-bordered td:last-child {
    border-right: 1px solid var(--border)
}

.review-item {
    padding: 45px 45px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: var(--chalk);
    border: 1px solid var(--border)
}

.review-item:last-child {
    margin-bottom: 0px
}

.review-media {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.review-avatar {
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary)
}

.review-avatar img {
    width: 65px;
    border-radius: 50%;
    border: 2px solid var(--white)
}

.review-meta {
    text-transform: capitalize
}

.review-meta a {
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.review-meta a:hover {
    color: var(--primary)
}

.review-meta span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text)
}

.review-meta span b {
    font-weight: 500;
    color: var(--primary)
}

.review-rating {
    margin-bottom: 10px
}

.review-rating li {
    font-size: 16px;
    margin-right: 5px;
    color: var(--yellow);
    display: inline-block
}

.review-desc {
    margin-bottom: 20px
}

.review-reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.review-reply input {
    width: 100%;
    padding: 7px 18px;
    border-radius: 6px;
    margin-right: 20px;
    background: var(--white)
}

.review-reply button {
    font-size: 15px;
    padding: 6px 15px;
    border-radius: 6px;
    color: var(--white);
    background: var(--primary);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.review-reply button:hover {
    background: var(--heading)
}

.review-reply button i {
    margin-right: 5px
}

.review-reply-list {
    margin-left: 80px;
    margin-top: 35px;
    border-top: 1px solid var(--border)
}

.review-reply-item {
    padding: 30px 0px;
    border-bottom: 1px solid var(--border)
}

.review-reply-item:last-child {
    padding-bottom: 0px;
    border-bottom: none
}

.review-form .btn {
    width: 100%;
    padding: 12px 30px
}

@media (max-width: 991px) {
    .product-navigation {
        margin: 25px 0px
    }
}

@media (max-width: 575px) {
    .details-content {
        padding: 20px
    }

    .details-name {
        font-size: 22px;
        line-height: 30px
    }

    .product-details-frame {
        padding: 20px
    }

    .review-item {
        padding: 20px 15px
    }

    .review-reply {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .review-reply input {
        margin: 0px 0px 15px
    }

    .review-reply-list {
        margin-left: 25px
    }

    .star-rating label {
        margin: 0px 6px
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .review-reply-list {
        margin-left: 30px
    }
}
ul {
    list-style-type: none;
  }
  
.details-list-group {
    display: none;
}
.product-details-frame ul li {
    color: white;
}

.details-meta i {
    text-align: center;
    width: 25px;
}

.instruction-order p {
    color: #ebe6e6;
}

.garantia-order ul {
    margin-left: 20px;  
}

.garantia-order ul li {
   list-style-type: disclosure-closed; 
}

.seguridad-order  ul {
    margin-left: 20px;  
}

.seguridad-order  ul li {
   list-style-type: disclosure-closed; 
}



/*Nuevo css*/


.header-table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-table h1 {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-neon {
    font-size: 3em;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px #00ff88;
    font-style: italic;
    letter-spacing: -2px;
}

        /* Features List */
        .features {
            margin-bottom: 30px;
        }

        .features ul {
            list-style: none;
        }

        .features li {
            font-size: 1.1em;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .features li::before {
            content: "• ";
            color: #00ff88;
            font-size: 1.5em;
            margin-right: 10px;
        }

        /* Pricing Table */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .pricing-table thead tr {
            background: linear-gradient(135deg, #7c7cff 0%, #a5a5ff 100%);
        }

        .pricing-table thead th {
            padding: 20px;
            text-transform: uppercase;
            font-size: 1.8em;
            font-weight: bold;
            text-align: center;
        }

        .pricing-table thead th:first-child {
            text-align: left;
            font-size: 2.2em;
            letter-spacing: 3px;
        }

        .pricing-table tbody tr {
            background-color: #0a1628;
            border-bottom: 3px solid #000;
        }

        .pricing-table tbody tr:hover {
            background-color: #112240;
        }

        .pricing-table tbody td {
            padding: 25px 20px;
            text-align: center;
            font-size: 1.3em;
            font-weight: bold;
            border-left: 2px solid #1a2842;
        }

        .pricing-table tbody td:first-child {
            background-color: #1d233c;
            text-align: left;
            text-transform: uppercase;
            font-size: 1.4em;
            letter-spacing: 1px;
            border-left: none;
        }

        .contactar {
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
        }

        .n-limit {
            color: #00ff88;
            font-size: 1.5em;
            text-shadow: 0 0 10px #00ff88;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
      
            .header-table {
                flex-direction: column;
                text-align: center;
            }

            .header-table h1 {
                font-size: 1.8em;
            }

            .logo-neon {
                font-size: 2.2em;
            }

            .features li {
                font-size: 0.95em;
            }

            /* Convert table to card layout on mobile */
            .pricing-table,
            .pricing-table thead,
            .pricing-table tbody,
            .pricing-table tr,
            .pricing-table td,
            .pricing-table th {
                display: block;
            }

            .pricing-table thead {
                display: none;
            }

            .pricing-table tbody tr {
                margin-bottom: 30px;
                border: 3px solid #7e7cf7;
                border-radius: 10px;
                overflow: hidden;
            }

            .pricing-table tbody td {
                position: relative;
                padding: 15px 20px;
                text-align: left;
                border: none;
                border-bottom: 1px solid #1a2842;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .pricing-table tbody td:first-child {
                font-size: 1.6em;
                padding: 20px;
                text-align: center;
                justify-content: center;
                background-color: #7e7cf7;
                color: #ffffff;
            }

            .pricing-table tbody td:last-child {
                border-bottom: none;
            }

            .pricing-table tbody td::before {
                content: attr(data-label);
                font-weight: bold;
                text-transform: uppercase;
                color: #7c7cff;
                margin-right: 15px;
            }

            .pricing-table tbody td:first-child::before {
                content: "";
            }
        }

        @media (max-width: 480px) {
            .header-table h1 {
                font-size: 1.5em;
            }

            .logo-neon {
                font-size: 1.8em;
            }

            .features li {
                font-size: 0.85em;
            }

            .pricing-table tbody td {
                font-size: 1.1em;
            }

            .pricing-table tbody td:first-child {
                font-size: 1.3em;
            }
        }



/*Nuevo Diseño*/
.flex-apart {
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}
.flex-apart.gap-32 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}
.flex-apart.down {
    justify-content: space-between;
    align-items: flex-start;
}
.max-width-809 {
    width: 100%;
    max-width: 50.563rem;
}
.heading-64 {
    letter-spacing: -.08rem;
    font-size: 2rem;
}
.max-width-646 {
    width: 100%;
    max-width: 40.375rem;
}
.padding-bottom-11 {
    padding-bottom: .688rem;
}
.margin-bottom-32 {
    margin-bottom: 2rem;
}
.text-color-gray-300 {
    color: #d0d5dd;
}
.text-weight-medium {
    font-weight: 500;
}
.button-flex-block {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}
.primary-button {
    border: .063rem solid #7c7cff;
    background-color: #7c7cff;
    text-align: center;
    border-radius: .5rem;
    padding: 1rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
    box-shadow: 0 1px 2px #1018280d;
}

.infrastracture-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}
.infrastracture-block {
    flex: 1;
    width: 100%;
}
.margin-bottom-88 {
    margin-bottom: 4.5rem;
}

.text-color-gray-200 {
    color: #eaecf0;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
.infrastracture-box {
    color: #eaecf0;
    transition: transform .5s ease-in-out, opacity .5s, color .2s ease-in-out;
    display: block;
    position: relative;
}

.ad-bg-box {
    opacity: 0;
    background-color: #d5283a;
    border-radius: 1.125rem;
    width: 7rem;
    height: 6.875rem;
    transition: opacity .2s ease-in-out;
    position: absolute;
    inset: -.25rem auto auto -.313rem;
}
.infra-box {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-image: linear-gradient(#1d2939, #101828);
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    display: flex;
    position: relative;
    overflow: hidden;
}
.max-width-455 {
    width: 100%;
    max-width: 28.438rem;
}
.max-width-232 {
    width: 100%;
    max-width: 14.5rem;
}
.margin-bottom-8 {
    margin-bottom: .5rem;
}

.infrastracture-list-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
}


.display-inline-block {
    display: inline-block;
}
.position-relative.z-2 {
    z-index: 2;
}
.margin-bottom-280 {
    margin-bottom: 3rem;
}
.max-width-485 {
    width: 100%;
    max-width: 30.313rem;
}
.header-section {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}
.header-tag {
    background-color: #1d2939;
    border-radius: .25rem;
    padding: .25rem .5rem;
}

.text-color-gray-200 {
    color: #eaecf0;
}
.scale-component {
    z-index: 2;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    position: relative;
}
.scale-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: var(--gray-200);
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}
.scale-line {
    border: .25rem solid #07f3f3;
    border-radius: .25rem;
    height: 2.75rem;
}
.max-width-208 {
    width: 100%;
    max-width: 13rem;
}
.margin-bottom-16 {
    margin-bottom: 1rem;
}

.heading-36 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.4;
}



.margin-bottom-48 {
    margin-bottom: 3rem;
}

.solutions-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-bottom: .188rem solid #fa06fa;
    border-radius: 1rem;
    display: flex;
    overflow: hidden;
}
.solutions-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
}
.solutions-box.expand-hover {
    color: #eaecf0;
    transition: transform .2s ease-in-out;
}
.solutions-box-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #10182866;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
    overflow: hidden;
}
.margin-bottom-80 {
    margin-bottom: 80px;
}


.hide {
    display: none !important;
}



@media screen and (max-width: 991px) {
    .solutions-component {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }
}


@media screen and (max-width: 479px) {
    .solutions-component {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .solutions-box {
        border-radius: 1rem;
        overflow: hidden;
    }
}
@media screen and (max-width: 479px) {
    .solutions-box {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .solutions-box-wrapper {
        border-radius: 1rem;
        overflow: hidden;
    }
}




@media screen and (max-width: 767px) {
    .infra-box {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 479px) {
    .infra-box {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media screen and (max-width: 479px) {
    .infra-box.rev {
        flex-flow: column-reverse wrap;
    }
}

@media screen and (max-width: 991px) {
    .infrastracture-component {
        flex-flow: column;
    }
}

@media screen and (max-width: 767px) {
    .set-margin-bottom-64 {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 991px) {
    .flex-apart.down {
        flex-flow: column;
        justify-content: space-between;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .heading-64 {
        letter-spacing: -.04rem;
        font-size: 1.875rem;
    }
}
@media screen and (max-width: 991px) {
    .padding-bottom-11 {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .set-text-weight-regular {
        font-weight: 400;
    }
}
@media screen and (max-width: 767px) {
    .set-text-size-18 {
        font-size: 1.125rem;
    }
}



