/* hero  */

.solution-hero {
    width: 100%;
    padding: 100px 64px;
    display: flex;
    background-color: var(--blue-dark);
    justify-content: center;
    color: var(--white);
}

@media (max-width: 767px) {
    .solution-hero {
        padding: 64px 16px!important;
    }
    .solution-hero .wrapper .content h1 {
        font-size: 36px!important;
    }
}

.solution-hero .wrapper {
    max-width: 900px;
    text-align: center;
    width: 100%;
}

.solution-hero .wrapper .content {
    width: 100%;
    text-align: center;
}

.solution-hero .wrapper .content h1 {
    margin: 0;
    font-size: 56px;
    font-weight: bold;
}



/* end of hero  */


/* info area  */

.info-area {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .info-area {
        padding: 32px 16px!important;
    }
}

.info-area .wrapper {
    max-width: 1400px;
    width: 100%;
}

.info-area .wrapper .content {
    width: 100%;
}

.info-area .wrapper .content .upper-content {
    width: 100%;
}

.info-area .wrapper .content .upper-content button {
    margin-top: 16px;
    margin-bottom: 16px;
    height: 40px;
    width: fit-content;
    text-decoration: none;
    background-color: var(--orange-primary);
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border: unset;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--orange-primary);
}

.info-area .wrapper .content .upper-content button:hover {
    background-color: transparent;
    color: var(--black);
}

.info-area .wrapper .content h2 {
    margin-top: 0;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.info-area .wrapper .content p {
    margin-top: 0;
}

.info-area .wrapper .content .lower-content {
    display: none;
}

.info-area .wrapper .content .lower-content.show {
    display: block;
}

/* end of info area  */


/* solution types  */

.solution-types {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .solution-types {
        padding: 32px 16px!important;
    }
}

.solution-types .wrapper {
    width: 100%;
    max-width: 1400px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .solution-types .wrapper .grid {
        grid-template-columns: repeat(2,1fr)!important;
    }
}

@media (max-width: 767px) {
    .solution-types .wrapper .grid {
        grid-template-columns: repeat(1,1fr)!important;
    }
}

.solution-types .wrapper .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: stretch;
}

.solution-types .wrapper .grid .grid-item {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--blue-dark);
    color: var(--white);
}

.solution-types .wrapper .grid .grid-item h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.solution-types .wrapper .grid .grid-item p {
    margin-top: 0;
    margin-bottom: 0;
}

/* end of solution types  */

/* solutions grid  */

.solutions-grid {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .solution-faqs-head button {
        padding: 16px 12px!important;
        font-size: 16px!important;
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        padding: 32px 16px!important;
    }
    .solutions-grid .wrapper .grid .grid-item {
        flex-direction: column;
    }
    .solutions-grid .wrapper .grid .grid-item.reverse {
        flex-direction: column!important;
    }
    .solutions-grid .wrapper .grid .grid-item .image-wrapper, .solutions-grid .wrapper .grid .grid-item .item-content {
        width: 100%!important;
    }
    .solutions-grid .wrapper .grid .grid-item .image-wrapper img {
        position: static!important;
        height: auto!important;
    }
}

.solutions-grid .wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-grid .wrapper .intro {
    width: 100%;
    text-align: center;
    max-width: 900px;
}

.solutions-grid .wrapper .intro h2 {
    margin-top: 0;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 48px;
}

.solutions-grid .wrapper .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 40px; 
}

.solutions-grid .wrapper .grid .grid-item {
    width: 100%;
    display: flex;
    gap: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.solutions-grid .wrapper .grid .grid-item a {
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: 12px;
    height: 40px;
    width: fit-content;
    text-decoration: none;
    background-color: var(--orange-primary);
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border: unset;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--orange-primary);
}

.solutions-grid .wrapper .grid .grid-item a:hover {
    background-color: transparent;
    color: var(--black);
}

.solutions-grid .wrapper .grid .grid-item.reverse {
    flex-direction: row-reverse;
}

.solutions-grid .wrapper .grid .grid-item .image-wrapper, .solutions-grid .wrapper .grid .grid-item .item-content {
    width: 50%;
}

.solutions-grid .wrapper .grid .grid-item .item-content {
    background-color: rgb(240, 240, 240);
}

.solutions-grid .wrapper .grid .grid-item .image-wrapper {
    position: relative;
}

.solutions-grid .wrapper .grid .grid-item .image-wrapper img {
    width: 100%;
    position: absolute;
    object-fit: contain;
    inset: 0;
    height: 100%;
    max-width: 100%;
}

.solution-faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.solution-faqs-item {
    width: 100%;
    background-color: rgb(240, 240, 240);
}

.solution-faqs-head {
    width: 100%;
}

.solution-faqs-head button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 24px 12px;
    border: unset;
    background-color: rgb(240, 240, 240);
    border-bottom: 1px solid var(--white);
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.solution-faqs-head button span {
    display: block;
}

.solution-faqs-head button svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    color: var(--black);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-faqs-head button svg * {
    stroke: var(--black);
}

.solution-faqs-item.active .solution-faqs-head button svg {
    transform: rotate(180deg);
}

.solution-faqs-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-faqs-item.active .solution-faqs-body {
    grid-template-rows: 1fr;
}

.solution-faqs-info {
    overflow: hidden;
    padding: 0 12px;
    min-height: 0;
    transition: padding .2s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-faqs-item.active .solution-faqs-info {
    padding: 12px 12px 0 12px;
}

.solution-faqs-content {
    width: 100%;
}

.solution-faqs-content p {
    margin-top: 0;
    font-weight: 400;
}

/* end of solution faqs */

/* end of solutions grid  */


/* need help  */

.need-help {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .need-help {
        padding: 32px 16px!important;
    }
    .need-help .wrapper {
        padding: 24px!important;
    }
}

.need-help .wrapper {
    background-color: #d0dbec6e;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    border-radius: 6px;
}

.need-help .wrapper .content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.need-help .wrapper .content h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 28px;
}

.need-help .wrapper .content p {
    margin-top: 0;
}

.need-help .wrapper .content a {
    height: 54px;
    padding: 24px 26px;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: fit-content;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: var(--orange-primary);
    color: var(--white);
    margin-top: 16px;
    text-decoration: none;
}

.need-help .wrapper .content a:hover {
    border: 2px solid var(--orange-primary);
    background-color: transparent;
    color: var(--black);
}

/* end of need help  */

/* solution questions  */

.solution-questions {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 64px 32px;
}


@media (max-width: 767px) {
    .solution-questions {
        padding: 32px 16px!important;
    }
}

.solution-questions .wrapper {
    max-width: 1400px;
    width: 100%;
}

.solution-questions .wrapper .content {
    width: 100%;
}

.solution-questions .wrapper .content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 24px;
}

.solution-questions .wrapper .content p {
    margin-top: 0;
}


/* end of solution questions */


/* not found solution */

.not-found-solution {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .not-found-solution {
        padding: 32px 16px!important;
    }
}

@media (min-width: 577px) and (max-width: 1024px) {
    .not-found-solution .wrapper .grid {
        grid-template-columns: repeat(2,1fr)!important;
    }
}

@media (max-width: 576px) {
    .not-found-solution .wrapper .grid {
        grid-template-columns: repeat(1,1fr)!important;
    }
}

.not-found-solution .wrapper {
    width: 100%;
    max-width: 1200px;
}

.not-found-solution .wrapper .intro {
    text-align: center;
    margin-bottom: 32px;
}

.not-found-solution .wrapper .intro h2 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

.not-found-solution .wrapper .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    align-items: stretch;
}

.not-found-solution .wrapper .grid .grid-item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
}

/* Background image */
.not-found-solution .wrapper .grid .grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
    z-index: -1;
}

/* Overlay */
.not-found-solution .wrapper .grid .grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

/* Zoom image only */
.not-found-solution .wrapper .grid .grid-item:hover::after {
    transform: scale(1.08);
}

.not-found-solution .wrapper .grid .grid-item.walls::after {
    background-image: url("https://newclientsitepreview.com/wp-content/uploads/2026/06/bsp-wall.png");
}

.not-found-solution .wrapper .grid .grid-item.ceilings::after {
	background-image: url("https://newclientsitepreview.com/wp-content/uploads/2026/06/bsp-ceiling.png");
}

.not-found-solution .wrapper .grid .grid-item.floors::after {
	background-image: url("https://newclientsitepreview.com/wp-content/uploads/2026/06/bsp-floor.png");
}

.not-found-solution .wrapper .grid .grid-item .content {
    position: relative;
    z-index: 1;
}

.not-found-solution .wrapper .grid .grid-item .content h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 16px;
}

.not-found-solution .wrapper .grid .grid-item .content p {
    margin-top: 0;
}

.not-found-solution .wrapper .grid .grid-item .content button {
    height: 40px;
    width: fit-content;
    background-color: var(--orange-primary);
    padding: 24px 12px;
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    border: 2px solid var(--orange-primary);
    font-size: 16px;
}

.not-found-solution .wrapper .grid .grid-item:hover .content button {
    background-color: transparent;
}

/* end of not found solution  */