/*
Theme Name: Snapx Theme
Theme URI: http://localhost/snapx
Author: Your Name
Version: 1.0.0
Description: Custom theme for SnapX Photobooth
*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --stamp-hole-radius: 6px;
    --stamp-hole-gap: 6px;
    --stamp-hole-size: calc(2 * (var(--stamp-hole-radius) + var(--stamp-hole-gap)));
}

body {
    font-family: "Outfit", sans-serif;
    background: #004053;
    /* font-family: "Bricolage Grotesque", sans-serif; */
}

nav.navbar {
    position: relative;
    /* overflow:hidden; */
    background: linear-gradient(270deg, #FF653F -1.35%, #FF993F 122.12%);
    /* background-size:6px 6px, 100% 100%; */
    /* box-shadow: 0px 4px 4px 0px #003140; */
}

/* nav.navbar::after {
    content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      height:36px;

      background:
        linear-gradient(-45deg, transparent 18px, #d3d3d3 0),
        linear-gradient(45deg, transparent 18px, #d3d3d3 0);

      background-position:left bottom;
      background-repeat:repeat-x;
      background-size:36px 36px;
} */

nav.navbar ul.navbar-nav .dropdown-menu {
    border: 2px solid #242424;
}

nav.navbar ul.navbar-nav .dropdown-menu {
    border: 2px solid #242424;
    padding: 0;
    overflow: hidden;
    box-shadow: 5px 5px 0 #242424;
}

nav.navbar ul.navbar-nav .dropdown-menu li a.dropdown-item {
    padding: 9px 20px;
    color: #004053;
}

nav.navbar ul.navbar-nav .dropdown-menu li {
    border-bottom: 2px solid #242424;
}

nav.navbar ul.navbar-nav .dropdown-menu li:last-child {
    border: none;
}

nav.navbar ul.navbar-nav .nav-link {
    color: #fff;
}

.btn.btn-primary {
    background: linear-gradient(90deg, #5AC8E5 0%, #004053 100%);
    font-weight: 500;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    padding: 12px 24px;
    transition: all 0.2s ease-in-out;
}

.btn.btn-secondary {
    --bs-btn-bg: #FF6919;
    --bs-btn-hover-bg: #f06012;
    font-weight: 500;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    padding: 11px 24px;
    transition: all 0.2s ease-in-out;
}

.btn.btn-primary:hover {
    box-shadow: 3px 3px 0px 0px #242424;
}

.spacing-80 {
    padding: 80px 0;
}

@media (max-width: 560px) {
    .spacing-80 {
        padding: 60px 0;
    }
}

.home-page .banner {
    padding: 40px 0;
    position: relative;
}

.home-page .banner .pattern-img {
    position: absolute;
    left: -50px;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    z-index: -1;
    animation: spin 25s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.home-page .banner .grid-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    z-index: -1;
}

.home-page .banner h1 {
    text-transform: uppercase;
    font-size: 53px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
    /* text-shadow:
        0px 4px 0 #242424,
        0px 8px 0 #242424,
        -4px -4px 0 #242424,
        4px -4px 0 #242424,
        -4px  4px 0 #242424,
        4px  4px 0 #242424,
        6px 10px 0 rgba(0,0,0,0.35); */
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ffffff;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 11px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 0 4px;
}

@media (max-width: 576px) {
    .home-page .banner h1 {
        font-size: 45px;
        text-shadow:
            0px 2px 0 #242424,
            0px 4px 0 #242424,
            -2px -2px 0 #242424,
            2px -2px 0 #242424,
            -2px 2px 0 #242424,
            2px 2px 0 #242424,
            /* bottom-right deep shadow */
            3px 5px 0 rgba(0, 0, 0, 0.35);
    }
}

.home-page .banner h1 span {
    color: #7BE3FF;
}

.home-page .banner h1 span:last-child {
    color: #FF6919;
}

.home-page .how-it-work {
    padding: 124px 0 80px;
}

@media (max-width: 560px) {
    .home-page .how-it-work {
        padding: 64px 0 80px;
    }
}

.home-page .how-it-work .box {
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    background: url(/wp-content/themes/snapx-theme/assets/image/home/how-it-work-pattern.svg) #7BE3FF no-repeat center;
    background-size: cover;
}

@media (max-width: 560px) {
    .home-page .how-it-work .box {
        padding: 80px 20px 40px;
    }
}

.home-page .how-it-work .box .heading {
    margin: -106px auto 80px;
}

.heading .subheading {
    background: #fff;
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    border: 2px solid #242424;
    border-radius: 50px;
    padding: 6px 16px;
    font-weight: 800;
    letter-spacing: -1px;
    transform: rotate(-5deg);
    box-shadow: 2px 2px 0 1px #242424;
    transition: all 0.3s ease;
}

.heading .subheading span {
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ff6919;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 3px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 0 4px;
    font-size: 24px;
}

.heading {
    margin: 0 auto 40px;
    max-width: 769px;
    position: relative;
    z-index: 1;
}

.heading h3 {
    margin: 30px auto 0;
    font-weight: 600;
    font-size: 40px;
}

.heading p {
    font-size: 24px;
}



@media (max-width: 560px) {

    .heading .subheading span {
        font-size: 18px;
    }

    .heading h3 {
        font-size: 28px;
    }

    .heading p {
        font-size: 16px;
    }

}

@media (max-width: 820px) {
    .heading h3 {
        font-size: 32px;
    }

    .heading p {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .heading h3 {
        font-size: 28px;
    }

    .heading p {
        font-size: 20px;
    }
}

.heading:hover .subheading {
    transform: none;
}

.home-page .how-it-work .grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

@media (max-width: 820px) {
    .home-page .how-it-work .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.home-page .how-it-work .grid-box .card {
    border: none;
    box-shadow: none;
    padding: 40px 24px;
    border-radius: 24px;
    background: #353535;
    color: #fff;
    gap: 15px;
    position: relative;
}

.home-page .how-it-work .grid-box .card .icon {
    position: absolute;
    right: -20px;
    top: -38px;
    width: 95px;
    transition: all 0.3s ease;
}

.home-page .how-it-work .grid-box .card:hover .icon {
    transform: scale(1.2);
}

.home-page .how-it-work .grid-box .card span {
    font-size: 24px;
    font-weight: 300;
}

.business-impact {
    background-color: #003342;
}

.business-impact .quest {
    border-radius: 8px;
    background-color: #004053;
    padding: 15px;
    box-shadow: 0 0 0 6px #004D65;
}

.business-impact .quest .inner-box {
    background: #FEE2FF;
    border-radius: 8px;
    padding: 24px 48px;
    position: relative;
}

@media (max-width: 560px) {
    .business-impact .quest .inner-box {
        padding: 24px 28px;
    }
}

.business-impact .quest .inner-box span {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 5px;
    display: block;
}

.business-impact .quest .inner-box h3 {
    font-size: 24px;
    font-weight: 400;
}

.business-impact .quest .inner-box .marketing-brand-sticker {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 100px;
    animation: spinBrand 15s linear infinite;
}

@keyframes spinBrand {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.business-impact .points .box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative;
    padding: 0 59px;
}

@media (max-width: 1024px) {
    .business-impact .points .box {
        padding: 0;
    }
}

@media (max-width: 820px) {
    .business-impact .points .box {
        align-items: flex-start;
    }
}

.business-impact .points .box span {
    background: #07576E;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid #242424;
    box-shadow: 3px 4px 0 #242424;
    margin: 0 0 12px;
    font-size: 18px;
}

.business-impact .points .box h4 {
    max-width: 268px;
    margin: auto;
    font-size: 28px;
    line-height: 40px;
}

@media (max-width: 820px) {
    .business-impact .points .box h4 {
        max-width: none;
        margin: 0;
    }
}

.business-impact .points .box::after {
    border-top: 2px dashed #fff;
    content: '';
    width: 50%;
    right: -25%;
    top: 30px;
    position: absolute;
}

@media (max-width: 820px) {
    .business-impact .points .box::after {
        left: 0;
        right: unset;
        width: 100%;
        bottom: -26px;
        top: unset;
        border-top: 2px dashed rgba(255, 255, 255, 0.31);
    }
}

.business-impact .points .col-lg-4:last-child .box::after {
    display: none;
}

.business-impact .points .col-lg-4:first-child .box h4 {
    color: #FFC700;
}

.business-impact .points .col-lg-4:last-child .box h4 {
    color: #5AE588;
}

.business-impact .points .col-lg-4:nth-child(2) .box h4 {
    color: #7BE3FF;
}

.product-preview .burst {
    position: absolute;
    left: 0;
    top: -630px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: spinPattern 25s linear infinite;
}

@keyframes spinPattern {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.product-preview .stamp-wrapper {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, filter;
    height: 100%;
}

.product-preview .stamp-wrapper .product-name {
    position: absolute;
    font-size: 4rem;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    text-align: center;
    z-index: 10;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-preview .stamp-wrapper .image-box:hover + .product-name {
    opacity: 1;
}

.product-preview .stamp-wrapper .stamp-card .content span {
    font-weight: 600;
}

.product-preview .stamp-wrapper .stamp-card .content ul {
    padding: 0;
    list-style: none;
    margin: 10px 0 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.product-preview .stamp-wrapper .stamp-card .content ul li {
    padding-left: 35px;
    position: relative;
}

.product-preview .stamp-wrapper .stamp-card .content ul li img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.product-preview .stamp-wrapper.SnapX-K100 .stamp-card {
    background-color: #FFF8DC;
}

.product-preview .stamp-wrapper.SnapX-K100 .stamp-card .content {
    background: #EFE5BB;
}

.product-preview .stamp-wrapper.SnapX-P100 .stamp-card {
    background-color: #C3C0FF;
}

.product-preview .stamp-wrapper.SnapX-P100 .stamp-card .content {
    background: #B0ACF9;
}

.product-preview .stamp-wrapper.SnapX-EC100 .stamp-card {
    background-color: #F8D0F9;
}

.product-preview .stamp-wrapper.SnapX-EC100 .stamp-card .content {
    background: #EAB3EB;
}

.product-preview .stamp-wrapper.SnapX-MM32 .stamp-card {
    background-color: #FFBFAF;
}

.product-preview .stamp-wrapper.SnapX-MM32 .stamp-card .content {
    background: #FAA590;
}

.product-preview .stamp-wrapper.SnapX-MM65 .stamp-card {
    background-color: #C7EAF5;
}

.product-preview .stamp-wrapper.SnapX-MM65 .stamp-card .content {
    background: #9CD8EA;
}

.product-preview .stamp-wrapper.SnapX-MM55 .stamp-card {
    background-color: #A5F8D6;
}

.product-preview .stamp-wrapper.SnapX-MM55 .stamp-card .content {
    background: #8CE8C2;
}

.product-preview .stamp-wrapper.SnapX-K100 .stamp-card .product-name {
    color: #E4D8A9;
}

.product-preview .stamp-wrapper.SnapX-P100 .stamp-card .product-name {
    color: #A5A2ED;
}

.product-preview .stamp-wrapper.SnapX-EC100 .stamp-card .product-name {
    color: #EAB3EB;
}

.product-preview .stamp-wrapper.SnapX-MM32 .stamp-card .product-name {
    color: #F3967F;
}

.product-preview .stamp-wrapper.SnapX-MM65 .stamp-card .product-name {
    color: #86C8DB;
}

.product-preview .stamp-wrapper.SnapX-MM55 .stamp-card .product-name {
    color: #73D4AC;
}

.product-preview .stamp-wrapper .stamp-card {
    /* padding: calc(var(--stamp-hole-radius) + var(--stamp-hole-gap) + 16px); */
    width: 100%;
    position: relative;
    padding-top: 20px;
    height: 100%;
    -webkit-mask:
        linear-gradient(#000 0 0) no-repeat center / linear-gradient(#000 0 0) no-repeat center / calc(100% - var(--stamp-hole-size) + 2px) calc(100% - var(--stamp-hole-size) + 6px),
        radial-gradient(circle, #0000 45%, #000 48%) round calc(-1 * (var(--stamp-hole-radius) + var(--stamp-hole-gap))) calc(-1 * (var(--stamp-hole-radius) + var(--stamp-hole-gap))) / var(--stamp-hole-size) var(--stamp-hole-size);

    mask:
        linear-gradient(#000 0 0) no-repeat center / calc(100% - var(--stamp-hole-size) + 2px) calc(100% - var(--stamp-hole-size) + 6px),
        radial-gradient(circle, #0000 45%, #000 48%) round calc(-1 * (var(--stamp-hole-radius) + var(--stamp-hole-gap))) calc(-1 * (var(--stamp-hole-radius) + var(--stamp-hole-gap))) / var(--stamp-hole-size) var(--stamp-hole-size)
}


.product-preview .stamp-wrapper .stamp-card .content {
    padding: 20px 40px 30px;
    margin-top: -32px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: #242424;
    height: 100%;
}

.product-preview .stamp-wrapper .stamp-card img {
    max-height: 400px;
    transition: all 0.3s ease;
    margin: auto;
    display: block;
}

.product-preview .stamp-wrapper .stamp-card .content h4 {
    font-size: 28px;
    font-weight: 600;
}

.product-preview .stamp-wrapper .stamp-card .content .btn {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    transition: all 0.3s ease;
    font-weight: 500;
}

.product-preview .stamp-wrapper .stamp-card .content .btn:hover {
    background-color: #242424;
    color: white;
    box-shadow: 0 0 0 0 #242424;
}

.product-preview .stamp-wrapper .stamp-card .image-box:hover + .content,
.product-preview .stamp-wrapper .stamp-card .image-box:hover + .product-name + .content {
    opacity: 0;
}

.product-preview .stamp-wrapper .stamp-card .image-box {
    max-height: 325px;
    height: 100%;
    transition: all 0.3s ease;
}

.product-preview .stamp-wrapper .stamp-card .image-box:hover {
    transform: scale(1.2);
    transform-origin: top center;
}

.individual-card .stamp-wrapper .stamp-card .image-box:hover {
    transform: scale(1.60);
    transform-origin: top center;
}

.individual-card .stamp-wrapper.SnapX-MM65 .stamp-card .image-box:hover,
.individual-card .stamp-wrapper.SnapX-MM55 .stamp-card .image-box:hover,
.individual-card .stamp-wrapper.SnapX-EC100 .stamp-card .image-box:hover {
    transform-origin: top left;
}

.product-preview .stamp-wrapper .stamp-card .stamp {
    position: absolute;
}

/* .product-preview .burst {
    position: relative;
    width: auto;
    height: 500px;
} */

.product-preview .burst .ray {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform-origin: center bottom;
}

/* generate rotations */
.product-preview .burst .ray:nth-child(1) {
    transform: translate(-50%, -100%) rotate(0deg);
}

.product-preview .burst .ray:nth-child(2) {
    transform: translate(-50%, -100%) rotate(22.5deg);
}

.product-preview .burst .ray:nth-child(4) {
    transform: translate(-50%, -100%) rotate(67.5deg);
}

.product-preview .burst .ray:nth-child(3) {
    transform: translate(-50%, -100%) rotate(45deg);
}

.product-preview .burst .ray:nth-child(5) {
    transform: translate(-50%, -100%) rotate(90deg);
}

.product-preview .burst .ray:nth-child(6) {
    transform: translate(-50%, -100%) rotate(112.5deg);
}

.product-preview .burst .ray:nth-child(7) {
    transform: translate(-50%, -100%) rotate(135deg);
}

.product-preview .burst .ray:nth-child(8) {
    transform: translate(-50%, -100%) rotate(157.5deg);
}

.product-preview .burst .ray:nth-child(9) {
    transform: translate(-50%, -100%) rotate(180deg);
}

.product-preview .burst .ray:nth-child(10) {
    transform: translate(-50%, -100%) rotate(202.5deg);
}

.product-preview .burst .ray:nth-child(11) {
    transform: translate(-50%, -100%) rotate(225deg);
}

.product-preview .burst .ray:nth-child(12) {
    transform: translate(-50%, -100%) rotate(247.5deg);
}

.product-preview .burst .ray:nth-child(13) {
    transform: translate(-50%, -100%) rotate(270deg);
}

.product-preview .burst .ray:nth-child(14) {
    transform: translate(-50%, -100%) rotate(292.5deg);
}

.product-preview .burst .ray:nth-child(15) {
    transform: translate(-50%, -100%) rotate(315deg);
}

.product-preview .burst .ray:nth-child(16) {
    transform: translate(-50%, -100%) rotate(337.5deg);
}


.home-page .use-case {
    background: url(/wp-content/themes/snapx-theme/assets/image/use-case-pattern.svg) no-repeat center;
    background-size: cover;
    background-position: top;
    padding: 190px 0;
}

@media (max-width: 1024px) {
    .home-page .use-case {
        background: #0b5469;
        padding: 80px 0;
    }
}

@media (max-width: 820px) {
    .home-page .use-case {
        padding: 60px 0;
    }
}

.home-page .use-case .flex-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1024px) {
    .home-page .use-case .flex-box {
        flex-direction: column;
        gap: 80px;
    }
}

.home-page .use-case .flex-box .image-section {
    max-width: 515px;
    width: 100%;
}

.home-page .use-case .flex-box .content-box {
    flex: 1;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
}

@media (max-width: 1024px) {

    .home-page .use-case .flex-box .content-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {

    .home-page .use-case .flex-box .content-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.home-page .use-case .flex-box .content-box li {
    background: #004053;
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-page .use-case .flex-box .content-box li img {
    position: absolute;
    width: 61px;
    top: 0;
    left: -74px;
    transition: all 0.3s ease;
    bottom: 0;
    margin: auto;
}

@media (max-width: 1024px) {
    .home-page .use-case .flex-box .content-box li img {
        display: none;
    }
}

.home-page .use-case .flex-box .image-section {
    height: 512px;
    width: 100%;
    position: relative;
}

@media (max-width: 560px) {
    .home-page .use-case .flex-box .image-section {
        max-width: 325px;
        height: 398px;
    }

    .home-page .use-case .flex-box .image-section img {
        width: 100%;
    }
}

.home-page .use-case .flex-box .image-section img.wedding {
    z-index: 6;
}

.home-page .use-case .flex-box .image-section img.cafe-restaurant {
    z-index: 5;
}

.home-page .use-case .flex-box .image-section img.college-fests {
    z-index: 4;
}

.home-page .use-case .flex-box .image-section img.wedding,
.home-page .use-case .flex-box .image-section img.hangout-spaces {
    transform: rotate(-4deg);
}

.home-page .use-case .flex-box .image-section img.cafe-restaurant,
.home-page .use-case .flex-box .image-section img.breweries-lounges {
    transform: rotate(3deg);
    top: 20px;
    right: 72px;
}

@media (max-width: 1024px) {

    .home-page .use-case .flex-box .image-section img.cafe-restaurant,
    .home-page .use-case .flex-box .image-section img.breweries-lounges {
        right: -60px;
    }
}

.home-page .use-case .flex-box .image-section img.college-fests,
.home-page .use-case .flex-box .image-section img.public-spaces {
    transform: rotate(-6deg);
    left: -45px;
    top: 40px;
}

.home-page .use-case .flex-box .image-section img.hangout-spaces {
    z-index: 3;
}

.home-page .use-case .flex-box .image-section img.breweries-lounges {
    z-index: 2;
}

.home-page .use-case .flex-box .image-section img.public-spaces {
    z-index: 1;
}









.home-page .use-case .flex-box .image-section img {
    position: absolute;
    top: 0;
    opacity: 0.2;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .home-page .use-case .flex-box .image-section img {
        left: 0;
        right: 0;
        margin: auto;
    }
}

.home-page .use-case .flex-box .content-box li img {
    opacity: 0;
    transition: all 0.3s ease;
}

/* Default active arrow */
.home-page .use-case .flex-box .content-box li.Weddings img {
    opacity: 1;
}

/* Reset all arrows when hovering any item */
.home-page .use-case .flex-box .content-box:hover li img {
    opacity: 0;
}

/* Show hovered item arrow */
.home-page .use-case .flex-box .content-box li:hover img {
    opacity: 1;
}

/* Default active image */
.home-page .use-case .flex-box .image-section img.wedding {
    opacity: 1;
}

/* When hovering any item, make all images 0.2 */
.home-page .use-case .flex-box .content-box:has(li:hover)+.image-section img {
    opacity: 0.2;
}

/* Active hovered image */
.home-page .use-case .flex-box .content-box:has(.Weddings:hover)+.image-section .wedding,
.home-page .use-case .flex-box .content-box:has(.Cafes-Restaurants:hover)+.image-section .cafe-restaurant,
.home-page .use-case .flex-box .content-box:has(.College-Fests:hover)+.image-section .college-fests,
.home-page .use-case .flex-box .content-box:has(.Campuses-Hangout-Spaces:hover)+.image-section .hangout-spaces,
.home-page .use-case .flex-box .content-box:has(.Breweries-Lounges:hover)+.image-section .breweries-lounges,
.home-page .use-case .flex-box .content-box:has(.Malls-Public-Spaces:hover)+.image-section .public-spaces {
    opacity: 1;
    z-index: 6;
}


.home-page .how-it-works .box {
    background: url(/wp-content/themes/snapx-theme/assets/image/home/how-it-work-img.svg);
    max-width: 1257px;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .home-page .how-it-works .box {
        background: url(/wp-content/themes/snapx-theme/assets/image/home/how-it-work-img-mobile.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
    }

    .home-page .how-it-works .box::after {
        background: #FFF8DC;
        content: '';
        width: calc(100% - 27px);
        height: calc(100% - 54px);
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        z-index: -1;
        margin: auto;
        border-radius: 0 0 12px 12px;
    }

}

@media (max-width: 560px) {

    .home-page .how-it-works .box::after {
        width: calc(100% - 15px);
        height: calc(100% - 32px);
        top: 32px;
    }

}


.home-page .how-it-works .box ul {
    margin: 0;
    list-style: none;
    padding: 0;
    max-width: 664px;
    margin-left: 29%;
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding-bottom: 120px;
}

@media (max-width: 1024px) {
    .home-page .how-it-works .box ul {
        max-width: 100%;
        margin: 0;
        padding: 0 50px 40px;
    }
}

@media (max-width: 560px) {
    .home-page .how-it-works .box ul {
        gap: 25px;
        padding: 0 40px 40px;
    }
}

.home-page .how-it-works .box ul li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 560px) {
    .home-page .how-it-works .box ul li img {
        display: none;
    }
}

.home-page .how-it-works .box ul li span {
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
    color: #FFCEAE;
    position: relative;
    top: -2px;
}

.home-page .how-it-works .box ul li .content h4 {
    font-size: 28px;
}

@media (max-width: 1024px) {
    .home-page .how-it-works .box ul li .content h4 {
        font-size: 25px;
    }
}

.home-page .how-it-works .box ul li .content p {
    font-size: 18px;
}

.home-page .how-it-works .box ul li .content {
    padding-right: 55px;
}

@media (max-width: 560px) {

    .home-page .how-it-works .box ul li .content h4 {
        font-size: 22px;
    }

    .home-page .how-it-works .box ul li .content p {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .home-page .how-it-works .box ul li .content {
        padding-right: 0;
    }
}









.home-page .video-testimonial {
    background: url(/wp-content/themes/snapx-theme/assets/image/home/video-testimonial-pattern.svg) no-repeat;
    background-size: cover;
}

.home-page .video-testimonial .inner-box {
    max-width: 1045px;
    margin: 0 auto;
}

.home-page .video-testimonial .inner-box .box {
    max-width: 424px;
    margin: 40px auto 0;
    position: relative;
}

@media (max-width: 1024px) {
    .home-page .video-testimonial .inner-box .box {
        margin-top: 0;
    }
}

.home-page .video-testimonial .inner-box .box>img {
    width: 160px;
    position: absolute;
    right: -90px;
    top: -40px;
}

@media (max-width: 1024px) {
    .home-page .video-testimonial .inner-box .box>img {
        display: none;
    }
}

.home-page .video-testimonial .inner-box .box .content {
    margin: 0 40px;
    border-radius: 24px;
    height: 100%;
    padding: 25px;
    min-height: 122px;
    box-shadow: 6px 6px 0px 0px #E6E6E6;
    border: 2px solid #E6E6E6;
    color: #242424;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.home-page .video-testimonial .inner-box .col-md-6:first-child .box .content {
    background: #8CE8C2;
}

.home-page .video-testimonial .inner-box .col-md-6:last-child .box .content {
    background: #FAA590;
}

.home-page .video-testimonial .inner-box .video-card {
    position: relative;
    overflow: visible;
    border-radius: 24px;
    height: 545px;
    box-shadow: 6px 6px 0px 0px #E6E6E6;
    border: 2px solid #E6E6E6;
}

.home-page .video-testimonial .inner-box .video-card img,
.home-page .video-testimonial .inner-box .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.video-card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.video-card video {
    position: relative;
    z-index: 1;
}

.video-card.playing img {
    opacity: 0;
    pointer-events: none;
}

.video-card:not(.playing) video {
    opacity: 0;
}

.play-pause-btns {
    position: absolute;
    bottom: 0;
    z-index: 5;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 80px;
    height: 80px;
    transition: 0.3s ease;
}

.video-card {
    position: relative;
    overflow: hidden;
}

/* Button default hidden while playing */
.video-card.playing .play-pause-btns {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Show button on hover */
.video-card.playing:hover .play-pause-btns {
    opacity: 1;
    visibility: visible;
}

.play-pause-btns button {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.439);
}

.play-pause-btns button i {
    font-size: 28px;
}

.home-page .gallery-preview {
    background: #004053;
    position: relative;
}

.home-page .gallery-preview .gallery-slider {
    overflow: hidden;
}

.home-page .gallery-slider::after,
.home-page .gallery-slider::before {
    width: 250px;
    height: 100%;
    content: '';
    z-index: 4;
    position: absolute;
}

.home-page .gallery-slider::before {
    background: linear-gradient(90deg, rgba(0, 64, 83, 1) 0%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 0;
}

.home-page .gallery-slider::after {
    background: linear-gradient(-90deg, rgba(0, 64, 83, 1) 0%, rgba(0, 0, 0, 0) 100%);
    right: 0;
    top: 0;
}

.home-page .gallery-preview .slick-track {
    background: #242424;
    padding: 40px 0;
}

.home-page .gallery-preview .slick-track .slick-slide>div>div {
    border-radius: 22px;
    overflow: hidden;
}

.home-page .gallery-preview .slick-track .slick-slide>div {
    display: flex;
    padding: 0px 5px;
    background: #242424;
}

.home-page .gallery-preview .slick-list::after,
.home-page .gallery-preview .slick-list::before {
    content: '';
    width: 100%;
    height: 40px;
    background: url(/wp-content/themes/snapx-theme/assets/image/gallery-slider/reel-bg.svg);
    background-size: contain;
    position: absolute;
    z-index: 1;
}

.home-page .gallery-preview .slick-list::after {
    top: 0;
    left: 0;
}

.home-page .gallery-preview .slick-list::before {
    bottom: 0;
    left: 0;
}

.home-page .gallery-preview span.circle-pattern {
    height: 100%;
    display: inline-block;
    max-width: 876px;
    background: #0B7596;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100%;
    top: 0;
    height: 362px;
    bottom: 0;
    z-index: 0;
    filter: blur(30px);
}

@media (max-width: 768px) {
    .home-page .gallery-preview .slick-track .slick-slide>div>div {
        border-radius: 12px;
    }

    .home-page .gallery-slider::after,
    .home-page .gallery-slider::before {
        height: 20px;
    }

    .home-page .gallery-preview .slick-track {
        padding: 20px 0;
    }
}




.home-page .pricing-teaser .flex-box {
    display: flex;
    gap: 48px;
    position: relative;
    padding: 0 34px;
    background: url(/wp-content/themes/snapx-theme/assets/image/home/teaser-bg-shape.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.home-page .pricing-teaser .flex-box .box {
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    bottom: -220px;
}

.home-page .pricing-teaser .flex-box .box>img {
    width: 100%;
}

.home-page .pricing-teaser .flex-box .box .content {
    position: absolute;
    top: 0;
    padding: 30px 50px;
    width: 100%;
    padding-right: 40px;
}

.home-page .pricing-teaser .flex-box .box .content span {
    font-size: 24px;
}

.home-page .pricing-teaser .flex-box .box .content h3 {
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ffffff;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 11px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 0 7px 6px;
    text-transform: uppercase;
    font-size: 37px;
    margin: 0;
    /* letter-spacing: -3px; */
}

.home-page .pricing-teaser .flex-box .box .content h3 div {
    color: #FF6919;
    display: inline-block;
}

.home-page .pricing-teaser .flex-box .box:last-child {
    transform: rotate(5deg);
}

.home-page .pricing-teaser .flex-box .box:nth-child(2) {
    transform: rotate(-10deg);
}


.home-page .pricing-teaser .para {
    background: #359CEF;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    z-index: 1;
    position: relative;
}

.home-page .pricing-teaser .para p {
    width: 90%;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.home-page .pricing-teaser .para p strong {
    font-weight: 500;
    color: #242424;
}

/* .home-page .pricing-teaser .flex-box .box:first-child {
    position: relative;
    bottom: -50px;
} */

/* .home-page .pricing-teaser .flex-box .box:hover {
    position: relative;
    bottom: -50px;
} */

/* Hide all paragraphs */
.home-page .pricing-teaser .para p {
    display: none;
}

/* Show active paragraph */
.home-page .pricing-teaser .para p.active {
    display: block;
}

/* Keep selected card raised */
.home-page .pricing-teaser .flex-box .box.active {
    bottom: -50px;
}

@media (max-width: 560px) {
    .home-page .pricing-teaser .flex-box .box.active {
        bottom: -8px;
    }

    .home-page .pricing-teaser .flex-box .box .content {
        padding: 8px 13px;
        padding-right: 10px;
    }

    .home-page .pricing-teaser .flex-box .box .content span {
        font-size: 13px;
    }

    .home-page .pricing-teaser .flex-box .box {
        bottom: -30px
    }
}

/* .home-page .pricing-teaser .flex-box .box.active h3 {
    font-size: 40px;
} */









.book-call-demo .inner-box {
    background: url(/wp-content/themes/snapx-theme/assets/image/home/book-call-pattern.png) no-repeat center #fff;
    padding: 50px 50px;
    background-size: cover;
    border-radius: 24px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    min-height: 482px;
    display: flex;
    align-items: center;
    width: 100%;
}

section.book-call-demo .inner-box .content h3 {
    text-transform: uppercase;
    font-size: 44px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ffffff;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 11px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 0 4px;
}

section.book-call-demo .inner-box .content h3 span {
    color: #FF6919;
}

section.book-call-demo .inner-box .content h3 span:last-child {
    color: #7BE3FF;
}

section.book-call-demo .inner-box .content p {
    font-size: 18px;
    margin: 0 0 30px
}

section.book-call-demo .inner-box .content .btn {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    transition: all 0.3s ease;
    font-weight: 500;
}

section.book-call-demo .inner-box .content .btn:hover {
    background-color: #242424;
    color: white;
    box-shadow: 0 0 0 0 #242424;
}

/* .book-demo-img {
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%
} */

.book-demo-img {
    position: absolute;
    bottom: -1px;
    margin: auto;
    min-height: 542px;
}

@media (max-width: 820px) {

    .book-call-demo .inner-box {
        min-height: auto;
        padding: 50px 20px;
    }

    section.book-call-demo .inner-box .content h3 {
        font-size: 32px;
    }
}

@media (max-width: 560px) {

    section.book-call-demo .inner-box .content h3 {
        font-size: 28px;
    }

    .home-page .pricing-teaser .para p {
        font-size: 18px;
    }
}


footer {
    color: #fff;
    background: linear-gradient(90deg, #FF653F 0%, #FF993F 145.8%);
}

footer .bottom {
    background: #242424;
    padding: 16px 0;
}

footer .bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

footer .bottom ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

footer .bottom ul li {
    position: relative;
}

footer .bottom ul li:last-child::after {
    display: none;
}

footer .bottom ul li::after {
    content: '';
    width: 1px;
    height: 16px;
    background: #fff;
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

footer .bottom ul li a {
    color: #fff;
    font-weight: 400;
}

footer ul.nav.flex-column li a {
    color: #fff;
}

footer ul.nav.flex-column {
    font-weight: 400;
}

footer h5 {
    margin: 0 0 20px;
}

footer .info-footer li span {
    background: #DD562F;
    width: 30px;
    height: 30px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
    min-width: 30px;
}

footer .info-footer li span:before,
footer .info-footer li span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background: #DD562F;
    border-radius: 4px;
}

footer .info-footer li span:before {
    transform: rotate(30deg);
}

footer .info-footer li span:after {
    transform: rotate(60deg);
}

footer .info-footer li span i {
    position: relative;
    z-index: 1;
}

footer ul.nav.flex-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer ul.nav.flex-column li {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
}


footer ul.social-icons {
    margin: 40px 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

footer ul.social-icons li {
    background: #ffffff;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 4px 4px 0px 0px #242424;
    border: 1px solid #242424;
}

footer ul.social-icons li img {
    width: 24px;
}



.product-page .banner h1 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
    /* text-shadow:
        0px 4px 0 #242424,
        0px 8px 0 #242424,
        -4px -4px 0 #242424,
        4px -4px 0 #242424,
        -4px  4px 0 #242424,
        4px  4px 0 #242424,
        6px 10px 0 rgba(0,0,0,0.35); */
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ffffff;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 11px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 40px 4px 10px;
}

@media (max-width: 576px) {
    .hproductome-page .banner h1 {
        font-size: 45px;
        text-shadow:
            0px 2px 0 #242424,
            0px 4px 0 #242424,
            -2px -2px 0 #242424,
            2px -2px 0 #242424,
            -2px 2px 0 #242424,
            2px 2px 0 #242424,
            /* bottom-right deep shadow */
            3px 5px 0 rgba(0, 0, 0, 0.35);
    }
}

.product-page .banner {
    padding: 80px 0 120px;
    background: url(/wp-content/themes/snapx-theme/assets/image/product/product-banner.svg) no-repeat center;
    background-size: cover;
}

.product-page .banner h1 span {
    color: #7BE3FF;
}

.product-page .banner h1 span:last-child {
    color: #FF6919;
}

.product-page .banner p {
    max-width: 728px;
    margin: auto
}


.product-page .banner img.search-icon {
    position: absolute;
    top: 6px;
    left: 0;
    right: 362px;
    margin: auto;
}

.product-page .banner img.arrow-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.product-page .banner img.star-icon {
    position: absolute;
    right: -30px;
    z-index: -1;
    bottom: -22px;
}

.product-page .banner .line {
    background: #7BE3FF;
    width: 120%;
    display: block;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    transform: rotate(-3deg);
    position: relative;
    left: -10%;
    margin-top: 20px;
    font-weight: 500;
}

.product-page .banner .line span {
    position: relative;
}

.product-page .banner .line span img {
    position: absolute;
    right: -80px;
    top: 27px;
}

.product-page .choose-setup {
    background: #003342
}

.product-page .choose-setup .box {
    background: #A9A6FF;
    border-radius: 14px;
    box-shadow: 4px 4px 0px 0px #242424;
    border: 2px solid #242424;
    padding: 38px 45px;
    height: 100%;
    position: relative;
}

.product-page .choose-setup .box h4 {
    max-width: 215px;
    font-weight: 600;
}

.product-page .choose-setup .col-lg-4:first-child .box {
    background: #FFC700;
}

.product-page .choose-setup .col-lg-4:last-child .box {
    background: #FDA3FF;
}

.product-page .choose-setup .box ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 47px;
    list-style: none;
    position: absolute;
    left: -33px;
    height: 100%;
    align-items: center;
    justify-content: center;
    top: 0;
}

.product-page .choose-setup .box ul li {
    background: #242424;
    width: 42px;
    height: 7px;
    border-radius: 50px;
}

@media (max-width: 768px) {

    .product-page .choose-setup .box ul {
        left: 0;
        right: 0;
        margin: auto;
        height: auto;
        width: 100%;
        bottom: unset;
        top: -34px;
        flex-direction: row;
    }

    .product-page .choose-setup .box ul li {
        height: 42px;
        width: 7px;
    }
}

.product-page .compare-models {
    padding: 124px 0 80px;
}

.product-page .compare-models .box {
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    background: #7BE3FF;
}

.product-page .compare-models .box .heading {
    margin: -106px auto 80px;
}







.product-page .compare-models .pricing-wrapper {
    display: flex;
    overflow: auto;
    padding-top: 52px
}

.product-page .compare-models .pricing-wrapper .body {
    background: #242424;
    color: #fff;
    /* border-radius: 0 0 18px 18px; */
    padding: 25px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-page .compare-models .pricing-wrapper .pricing-section {
    background: #79d7f3;
    padding: 40px 0;
}

.product-page .compare-models .pricing-wrapper .pricing-wrapper {
    display: flex;
    align-items: stretch;
    gap: 6px;
    overflow-x: auto;
}

/* .product-page .compare-models .pricing-wrapper .pricing-col{
    min-width:210px;
} */

.product-page .compare-models .pricing-wrapper .head {
    background: #242424;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 22px;
    /* border-radius:16px; */
    margin-bottom: 4px;
    white-space: nowrap;
}

/* PRICE COLUMN */

.product-page .compare-models .pricing-wrapper .price-col {
    position: relative;
    transition: all 0.3s ease;
}

.product-page .compare-models .pricing-wrapper .price-col .head,
.product-page .compare-models .pricing-wrapper .price-col .body {
    background: #5AE588;
    color: #111;
}

.product-page .compare-models .pricing-wrapper .sun {
    position: absolute;
    top: -60px;
    left: 20px;
    z-index: 10;
    font-size: 48px;
}

.product-page .compare-models .pricing-wrapper .sun img {
    max-height: 80px;
    max-width: 110px;
    transition: all 0.3s ease;
}

.product-page .compare-models .pricing-wrapper .sun img.sun-sit {
    display: none;
}

.product-page .compare-models .pricing-wrapper .price-col:hover .sun .sun-sleep {
    display: none;
}

.product-page .compare-models .pricing-wrapper .price-col:hover .sun .sun-sit {
    display: block;
}

.product-page .compare-models .pricing-wrapper .price-col:hover .sun {
    top: -48px;
}

/* CONNECTOR */

.product-page .compare-models .pricing-wrapper .type-col {
    position: relative;
}

.product-page .compare-models .pricing-wrapper .connector-line {
    position: absolute;
    left: -4px;
    top: 18px;
    bottom: 20px;
    width: 4px;
    background: #7BE3FF;
}

.product-page .compare-models .pricing-wrapper .connector-line span {
    position: absolute;
    left: -15px;
    width: 32px;
    height: 7px;
    background: #7BE3FF;
    border-radius: 14px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(1) {
    top: 3px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(2) {
    top: 85px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(3) {
    top: 140px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(4) {
    top: 204px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(5) {
    top: 265px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(6) {
    top: 325px;
}

.product-page .compare-models .pricing-wrapper .connector-line span:nth-child(7) {
    top: 385px;
}


/* MOBILE */

@media(max-width:991px) {

    .product-page .compare-models .pricing-wrapper .pricing-wrapper {
        min-width: 1200px;
    }

}

.product-page .compare-models .pricing-wrapper .pricing-col:first-child .body {
    border-radius: 14px;
    text-align: center;
}

.product-page .compare-models .pricing-wrapper .pricing-col:first-child {
    margin-right: 4px
}

.product-page .compare-models .pricing-wrapper .pricing-col:first-child .head {
    border-radius: 14px
}

.product-page .compare-models .pricing-wrapper .body p {
    margin: 0;
    min-height: 50px;
}

.product-page .compare-models .pricing-wrapper .body p:last-child {
    min-height: auto;
}

.product-page .compare-models .pricing-wrapper .pricing-col:nth-child(2) .body {
    border-radius: 14px 0 0 14px;
}
.product-page .compare-models .pricing-wrapper .pricing-col:nth-child(2) .head {
    border-radius: 14px 0 0 14px
}

.product-page .compare-models .pricing-wrapper .pricing-col:last-child .body {
    border-radius: 0 14px 14px 0
}
.product-page .compare-models .pricing-wrapper .pricing-col:last-child .head {
    border-radius: 0 14px 14px 0
}

.product-page .compare-models .pricing-wrapper .pricing-col:first-child .body {
    border-radius: 14px;
    text-align: center;
}

.product-page .compare-models .pricing-wrapper .body p {
    margin: 0;
    min-height: 50px;
    white-space: nowrap;
}

/* .product-page .compare-models .pricing-wrapper .feature-col .body p {
    white-space: normal;
} */

.product-page .compare-models .pricing-wrapper .price-col .head {
    margin: 0;
    padding-bottom: 16px
}

.product-page .individual-card .heading {
    max-width: 912px;
}

.product-page img.pattern-1 {
    transform: translateY(-40%);
    z-index: -1;
}

.solution-page .banner h1 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
    /* text-shadow:
        0px 4px 0 #242424,
        0px 8px 0 #242424,
        -4px -4px 0 #242424,
        4px -4px 0 #242424,
        -4px  4px 0 #242424,
        4px  4px 0 #242424,
        6px 10px 0 rgba(0,0,0,0.35); */
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #ffffff;
    z-index: 3;
    background: #242424;
    -webkit-text-stroke: 11px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    padding: 0 4px 10px;
}

@media (max-width: 576px) {
    .solution-page .banner h1 {
        font-size: 45px;
        text-shadow:
            0px 2px 0 #242424,
            0px 4px 0 #242424,
            -2px -2px 0 #242424,
            2px -2px 0 #242424,
            -2px 2px 0 #242424,
            2px 2px 0 #242424,
            /* bottom-right deep shadow */
            3px 5px 0 rgba(0, 0, 0, 0.35);
    }
}

.solution-page .banner {
    padding: 80px 0 120px;
    background: url(/wp-content/themes/snapx-theme/assets/image/solution/banner.svg) no-repeat center;
    background-size: cover;
    min-height: 650px;
    max-width: 1920px;
    margin: auto;
}

.solution-page .banner h1 span {
    color: #7BE3FF;
}

.solution-page .banner h1 {
    max-width: 722px;
    margin: auto;
}

.solution-page .banner h1 span:last-child {
    color: #FF6919;
}

.btn-white {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-white:hover {
    background-color: #242424;
    color: white;
    box-shadow: 0 0 0 0 #242424;
}

.solution-page .banner .content {
    max-width: 464px;
    margin: auto;
    transform: translateY(100%);
}

.solution-page .banner .content p {
    font-size: 24px;
}

.solution-page .banner .line {
    position: absolute;
    bottom: 0;
    background: #fff;
    padding: 15px;
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.solution-page img.dot-pattern {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    top: 0;
}

.solution-page .problem {
    background: #004053;
}

.solution-page .solution {
    background: #003342;
}

.solution-page .solution .content h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.solution-page .solution .content span {
    margin: 15px 0 10px;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.solution-page .solution .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-page .solution .content ul li {
    padding-left: 40px;
    position: relative;
}

.solution-page .solution .content ul li img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
}

.solution-page .use-case .icon {
    background: #004053;
    padding: 15px;
    border: 6px solid #004D65;
    border-radius: 15px;
    box-shadow: 0 0 17px #032B37;
}

.solution-page .use-case .icon img {
    width: 100%;
    border-radius: 8px;
}

.solution-page .use-case h5 {
    font-size: 24px;
    font-weight: 600;
}

.solution-page .features .inner-box .box {
    max-width: 590px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 4px solid #242424;
    border-radius: 16px;
    text-align: left;
    padding: 40px 25px;
    color: #242424;
    position: relative;
    transition: all 0.3s ease;
}

.solution-page .features .inner-box .box h4 {
    font-size: 26px;
    font-weight: 600;
}

.solution-page .features .inner-box .box span {
    color: #242424;
    font-size: 60px;
    font-weight: 700;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    z-index: -1;
    transition: all 0.3s ease;
}

.solution-page .features .inner-box .box:hover span {
    left: -90px;
    z-index: 0;
    opacity: 24%
}

.solution-page .features .inner-box .box:nth-child(2) {
    transform: rotate(-4deg) translateX(-60px);
}

.solution-page .features .inner-box .box:nth-child(3) {
    transform: rotate(2deg) translateX(50px);
}

.solution-page .features .inner-box .box:nth-child(4) {
    transform: rotate(4deg) translateX(-50px) translateY(-3px);
}

.solution-page .features .inner-box .box:nth-child(5) {
    transform: rotate(-2deg) translateX(120px) translateY(-15px);
}

.solution-page .features .inner-box .box p {
    font-size: 18px;
}

.solution-page .features .inner-box {
    padding: 120px 0 80px;
    background: url(/wp-content/themes/snapx-theme/assets/image/solution/features-bg-pattern.svg) no-repeat top center;
    background-size: cover;
    position: relative;
}

.solution-page .features .feature-grid-pattern {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.solution-page .features .inner-box .box:first-child img {
    position: absolute;
    left: -25px;
    top: -26px;
    width: 46px;
}

.solution-page .features .inner-box .box:nth-child(2) img {
    position: absolute;
    right: -40px;
    bottom: 20px;
    width: 46px;
}

.solution-page .features .inner-box .box:nth-child(4) img {
    position: absolute;
    top: -24px;
    left: 72px;
    width: 38px;
    transform: rotate(-8deg);
}

.solution-page .features .inner-box .box:last-child img {
    position: absolute;
    right: 40px;
    bottom: -31px;
    width: 50px;
}
