/*
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; */
    overflow-x: hidden;
}

nav.navbar {
    position: relative;
    background: linear-gradient(270deg, #FF653F -1.35%, #FF993F 122.12%);
}

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;
    position: relative;
}

nav.navbar ul.navbar-nav a.nav-link.active::before {
    content: '';
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    bottom: -20px;
    background: #ffffff;
    height: 2px;
}

.btn.btn-primary {
    background: linear-gradient(90deg, #5AC8E5 0%, #004053 100%);
    background-size: 100% 1%;
    font-weight: 500;
    border: 1px solid #242424;
    box-shadow: 2px 2px 0px 0px #242424;
    padding: 12px 24px;
    transition: all 0.4s ease-in-out;
}

.btn.btn-primary:hover {
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s 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.3s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.btn.btn-secondary:hover {
    box-shadow: 3px 3px 0 0 #242424;
    color: #f06012;
    border-color: #fff;
}

.btn.btn-secondary::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn.btn-secondary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.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;
    }
}

.banner {
    padding: 40px 0;
    position: relative;
}

.banner .pattern-img {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    z-index: -1;
    animation: spin 25s linear infinite;
}

.banner .image-box {
    position: relative;
    max-width: 568px;
}

.banner .image-box img {
    will-change: transform;
}

/* Up & Down */
.banner .image-box .banner-element-1 {
    position: absolute;
    left: 0;
    top: 40px;
    animation: floatY 4s ease-in-out infinite;
}

.banner .image-box .banner-element-2 {
    position: absolute;
    top: 0;
    left: 60px;
    animation: floatY 3.5s ease-in-out infinite reverse;
}

/* Left & Right */
.banner .image-box .banner-element-3 {
    position: absolute;
    right: 0;
    top: 180px;
    animation: floatX 5s ease-in-out infinite;
}

.banner .image-box .banner-element-4 {
    position: absolute;
    bottom: 80px;
    left: 20px;
    animation: floatX 4s ease-in-out infinite reverse;
}

/* Diagonal */
.banner .image-box .banner-element-5 {
    position: absolute;
    left: 60px;
    bottom: 0;
    animation: floatDiagonal 6s ease-in-out infinite;
}

/* Camera Bounce */
.banner .image-box .banner-camera {
    position: absolute;
    bottom: 0;
    right: 42px;
    z-index: 1;
    animation: cameraFloat 3s ease-in-out infinite;
}

/* Animations */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatX {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

@keyframes floatDiagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(20px, 0);
    }
    75% {
        transform: translate(10px, 10px);
    }
}

@keyframes cameraFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}


.banner-element-2 { animation-delay: .5s; }
.banner-element-3 { animation-delay: 1s; }
.banner-element-4 { animation-delay: 1.5s; }
.banner-element-5 { animation-delay: 2s; }
.banner-camera   { animation-delay: .8s; }


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.banner .grid-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    z-index: -1;
}

.banner h1 {
    text-transform: uppercase;
    font-size: 53px;
    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;
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 36px;
        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,
            3px 5px 0 rgba(0, 0, 0, 0.35);
    }
}

.banner h1 span {
    color: #7BE3FF;
}

.banner h1 span:last-child {
    color: #FF6919;
}

.how-it-work {
    padding: 124px 0 80px;
}

@media (max-width: 560px) {
    .how-it-work {
        padding: 64px 0 80px;
    }
}

.how-it-work .box {
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    background: url(../image/home/how-it-work-pattern.svg) #7BE3FF no-repeat center;
    background-size: cover;
}

@media (max-width: 560px) {
    .how-it-work .box {
        padding: 80px 20px 40px;
    }
}

.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 h2 {
    z-index: 3;
    padding: 0 4px;
    font-size: 24px;
    font-family: "Bricolage Grotesque", sans-serif;
    -webkit-transition-property: background;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-out;
    color: #FF6919;
    z-index: 3;
    font-weight: 800;
    background: #242424;
    -webkit-text-stroke: 6px rgb(255 255 255 / 0%);
    -webkit-background-clip: text;
    margin: 0;
}

.heading {
    margin: 0 auto 40px;
    max-width: 769px;
    position: relative;
    z-index: 1;
}

.heading .title {
    margin: 20px auto 0;
    font-weight: 600;
    font-size: 40px;
    line-height: normal;
}

.heading p {
    font-size: 24px;
}



@media (max-width: 560px) {

    .heading .subheading h2 {
        font-size: 18px;
    }

    .heading .title {
        font-size: 28px;
    }

    .heading p {
        font-size: 16px;
    }

}

@media (max-width: 820px) {
    .heading .title {
        font-size: 32px;
    }

    .heading p {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .heading .title {
        font-size: 28px;
    }

    .heading p {
        font-size: 20px;
    }
}

.heading:hover .subheading {
    transform: none;
}

.how-it-work .grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

@media (max-width: 820px) {
    .how-it-work .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.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;
}

.how-it-work .grid-box .card .icon {
    position: absolute;
    right: -20px;
    top: -38px;
    width: 95px;
    transition: all 0.3s ease;
}

.how-it-work .grid-box .card:hover .icon {
    transform: scale(1.2);
}

.how-it-work .grid-box .card span {
    font-size: 30px;
    font-weight: 300;
    line-height: normal;
}

.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;
    }
}

@media (max-width: 560px) {
    .business-impact .points .box h4 {
        font-size: 22px;
    }
}

.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;
}

.nav-link-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle-split {
    padding-left: 0.2rem;
    padding-right: 0.4rem;
}
.navbar-nav .nav-item.dropdown .dropdown-toggle-split::after 
{
    vertical-align: 2px;
    content: "";
    border-top: .4em solid;
    border-right: .4em solid transparent;
    border-bottom: 0;
    border-left: .4em solid transparent;
}
.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;
    pointer-events: none;
}

.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%;
    background: #e8e8e8;
}

.product-preview .stamp-wrapper .stamp-card {
    background-color: #ffffff;
}

.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: 3px 3px 0 0 #000;
    border-color: #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-use-case {
    background: url(../image/use-case-pattern.svg) no-repeat center;
    background-size: cover;
    background-position: top;
    padding: 190px 0;
}

@media (max-width: 1024px) {
    .home-use-case {
        background: #0b5469;
        padding: 80px 0;
    }
}

@media (max-width: 820px) {
    .home-use-case {
        padding: 60px 0;
    }
}

.use-case .flex-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1024px) {
    .use-case .flex-box {
        flex-direction: column;
        gap: 80px;
    }
}

.use-case .flex-box .image-section {
    max-width: 515px;
    width: 100%;
}

.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) {

    .use-case .flex-box .content-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {

    .use-case .flex-box .content-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.use-case .flex-box .content-box li.Weddings h4 {
    color: #FFC700;
}

.use-case .flex-box .content-box li.Cafes-Restaurants h4 {
    color: #FD93FF;
}

.use-case .flex-box .content-box li.College-Fests h4 {
    color: #FAA590;
}

.use-case .flex-box .content-box li.Campuses-Hangout-Spaces h4 {
    color: #A9A5FF;
}

.use-case .flex-box .content-box li.Breweries-Lounges h4 {
    color: #4AAEFF;
}

.use-case .flex-box .content-box li.Malls-Public-Spaces h4 {
    color: #5AE588;
}

.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;
}

.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) {
    .use-case .flex-box .content-box li img {
        display: none;
    }
}

.use-case .flex-box .image-section {
    height: 512px;
    width: 100%;
    position: relative;
}

@media (max-width: 560px) {
    .use-case .flex-box .image-section {
        max-width: 325px;
        height: 398px;
    }

    .use-case .flex-box .image-section img {
        width: 100%;
    }
}

.use-case .flex-box .image-section img.wedding {
    z-index: 6;
}

.use-case .flex-box .image-section img.cafe-restaurant {
    z-index: 5;
}

.use-case .flex-box .image-section img.college-fests {
    z-index: 4;
}

.use-case .flex-box .image-section img.wedding,
.use-case .flex-box .image-section img.hangout-spaces {
    transform: rotate(-4deg);
}

.use-case .flex-box .image-section img.cafe-restaurant,
.use-case .flex-box .image-section img.breweries-lounges {
    transform: rotate(3deg);
    top: 20px;
    right: 72px;
}

@media (max-width: 1024px) {

    .use-case .flex-box .image-section img.cafe-restaurant,
    .use-case .flex-box .image-section img.breweries-lounges {
        right: -60px;
    }
}

.use-case .flex-box .image-section img.college-fests,
.use-case .flex-box .image-section img.public-spaces {
    transform: rotate(-6deg);
    left: -45px;
    top: 40px;
}

.use-case .flex-box .image-section img.hangout-spaces {
    z-index: 3;
}

.use-case .flex-box .image-section img.breweries-lounges {
    z-index: 2;
}

.use-case .flex-box .image-section img.public-spaces {
    z-index: 1;
}









.use-case .flex-box .image-section img {
    position: absolute;
    top: 0;
    opacity: 0.2;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .use-case .flex-box .image-section img {
        left: 0;
        right: 0;
        margin: auto;
    }
}

.use-case .flex-box .content-box li img {
    opacity: 0;
    transition: all 0.3s ease;
}

/* Default active arrow */
.use-case .flex-box .content-box li.Weddings img {
    opacity: 1;
}

/* Reset all arrows when hovering any item */
.use-case .flex-box .content-box:hover li img {
    opacity: 0;
}

/* Show hovered item arrow */
.use-case .flex-box .content-box li:hover img {
    opacity: 1;
}

/* Default active image */
.use-case .flex-box .image-section img.wedding {
    opacity: 1;
}

/* When hovering any item, make all images 0.2 */
.use-case .flex-box .content-box:has(li:hover)+.image-section img {
    opacity: 0.2;
}

/* Active hovered image */
.use-case .flex-box .content-box:has(.Weddings:hover)+.image-section .wedding,
.use-case .flex-box .content-box:has(.Cafes-Restaurants:hover)+.image-section .cafe-restaurant,
.use-case .flex-box .content-box:has(.College-Fests:hover)+.image-section .college-fests,
.use-case .flex-box .content-box:has(.Campuses-Hangout-Spaces:hover)+.image-section .hangout-spaces,
.use-case .flex-box .content-box:has(.Breweries-Lounges:hover)+.image-section .breweries-lounges,
.use-case .flex-box .content-box:has(.Malls-Public-Spaces:hover)+.image-section .public-spaces {
    opacity: 1;
    z-index: 6;
}


.how-it-works .box {
    background: url('../image/home/how-it-work-img.svg');
    max-width: 1257px;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .how-it-works .box {
        background: url(../image/home/how-it-work-img-mobile.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
    }

    .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) {

    .how-it-works .box::after {
        width: calc(100% - 15px);
        height: calc(100% - 32px);
        top: 32px;
    }

}


.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) {
    .how-it-works .box ul {
        max-width: 100%;
        margin: 0;
        padding: 0 50px 40px;
    }
}

@media (max-width: 560px) {
    .how-it-works .box ul {
        gap: 25px;
        padding: 0 40px 40px;
    }
}

.how-it-works .box ul li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 560px) {
    .how-it-works .box ul li img {
        display: none;
    }
}

.how-it-works .box ul li span {
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
    color: #FFCEAE;
    position: relative;
    top: -2px;
}

.how-it-works .box ul li .content h4 {
    font-size: 28px;
}

@media (max-width: 1024px) {
    .how-it-works .box ul li .content h4 {
        font-size: 25px;
    }
}

.how-it-works .box ul li .content p {
    font-size: 18px;
}

.how-it-works .box ul li .content {
    padding-right: 55px;
}

@media (max-width: 560px) {

    .how-it-works .box ul li .content h4 {
        font-size: 22px;
    }

    .how-it-works .box ul li .content p {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .how-it-works .box ul li .content {
        padding-right: 0;
    }
}









.video-testimonial {
    background: url(../image/home/video-testimonial-pattern.svg) no-repeat;
    background-size: cover;
}

.video-testimonial .inner-box {
    max-width: 1045px;
    margin: 0 auto;
}

.video-testimonial .inner-box .box {
    max-width: 424px;
    margin: 40px auto 0;
    position: relative;
}

@media (max-width: 1024px) {
    .video-testimonial .inner-box .box {
        margin-top: 0;
    }
}

.video-testimonial .inner-box .box>img {
    width: 160px;
    position: absolute;
    right: -90px;
    top: -40px;
}

@media (max-width: 1024px) {
    .video-testimonial .inner-box .box>img {
        display: none;
    }
}

.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;
}

.video-testimonial .inner-box .col-md-6:first-child .box .content {
    background: #8CE8C2;
}

.video-testimonial .inner-box .col-md-6:last-child .box .content {
    background: #FAA590;
}

.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;
}

.video-testimonial .inner-box .video-card img,
.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;
}

.gallery-preview {
    background: #004053;
    position: relative;
}

.gallery-preview .gallery-slider {
    overflow: hidden;
}

.gallery-slider::after,
.gallery-slider::before {
    width: 250px;
    height: 100%;
    content: '';
    z-index: 4;
    position: absolute;
}

.gallery-slider::before {
    background: linear-gradient(90deg, rgba(0, 64, 83, 1) 0%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 0;
}

.gallery-slider::after {
    background: linear-gradient(-90deg, rgba(0, 64, 83, 1) 0%, rgba(0, 0, 0, 0) 100%);
    right: 0;
    top: 0;
}

.gallery-preview .slick-track {
    background: #242424;
    padding: 40px 0;
}

.gallery-preview .slick-track .slick-slide>div>div {
    border-radius: 22px;
    overflow: hidden;
}

.gallery-preview .slick-track .slick-slide>div {
    display: flex;
    padding: 0px 5px;
    background: #242424;
}

.gallery-preview .slick-list::after,
.gallery-preview .slick-list::before {
    content: '';
    width: 100%;
    height: 40px;
    background: url(../image/gallery-slider/reel-bg.svg);
    background-size: contain;
    position: absolute;
    z-index: 1;
}

.gallery-preview .slick-list::after {
    top: 0;
    left: 0;
}

.gallery-preview .slick-list::before {
    bottom: 0;
    left: 0;
}

.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) {
    .gallery-preview .slick-track .slick-slide>div>div {
        border-radius: 12px;
    }

    .gallery-preview .slick-list::after, .gallery-preview .slick-list::before {
        height: 20px;
    }

    .gallery-preview .slick-track {
        padding: 20px 0;
    }
}




.pricing-teaser .flex-box {
    display: flex;
    gap: 48px;
    position: relative;
    padding: 0 34px;
    background: url(../image/home/teaser-bg-shape.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing-teaser .flex-box .box {
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    bottom: -220px;
    cursor: pointer;
}

.pricing-teaser .flex-box .box>img {
    width: 100%;
}

.pricing-teaser .flex-box .box .content {
    position: absolute;
    top: 0;
    padding: 30px 50px;
    width: 100%;
    padding-right: 40px;
}

.pricing-teaser .flex-box .box .content span {
    font-size: 24px;
}

.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; */
}

.pricing-teaser .flex-box .box .content h3 div {
    color: #FF6919;
    display: inline-block;
}

.pricing-teaser .flex-box .box:last-child {
    transform: rotate(5deg);
}

.pricing-teaser .flex-box .box:nth-child(2) {
    transform: rotate(-10deg);
}


.pricing-teaser .para {
    background: #359CEF;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    z-index: 1;
    position: relative;
}

.pricing-teaser .para p {
    width: 90%;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.pricing-teaser .para p strong {
    font-weight: 500;
    color: #242424;
}

/* .pricing-teaser .flex-box .box:first-child {
    position: relative;
    bottom: -50px;
} */

/* .pricing-teaser .flex-box .box:hover {
    position: relative;
    bottom: -50px;
} */

/* Hide all paragraphs */
.pricing-teaser .para p {
    display: none;
}

/* Show active paragraph */
.pricing-teaser .para p.active {
    display: block;
}

/* Keep selected card raised */
.pricing-teaser .flex-box .box.active {
    bottom: -50px;
}

@media (max-width: 560px) {
    .pricing-teaser .flex-box .box.active {
        bottom: -8px;
    }

    .pricing-teaser .flex-box .box .content {
        padding: 8px 13px;
        padding-right: 10px;
    }

    .pricing-teaser .flex-box .box .content span {
        font-size: 13px;
    }

    .pricing-teaser .flex-box .box {
        bottom: -30px
    }
}

/* .pricing-teaser .flex-box .box.active h3 {
    font-size: 40px;
} */









.book-call-demo .inner-box {
    background: url(../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: 3px 3px 0 0 #000;
}

/* .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;
}

.homepage-book-demo .book-demo-img
{
    bottom: -48px;
}
@media (max-width: 1119px) {
    .book-demo-img {
        min-height: auto;
    }
}

@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;
    }

    .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;
    transition: all 0.3s ease;
}

footer ul.nav.flex-column li a:hover {
    color: #242424;
    font-weight: 600;
}

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 a {
    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;
    transition: all 0.3s ease-in-out 0s;
}
footer ul.social-icons li a:hover 
{
    box-shadow: 1px 1px 0px 0px #242424;
}

footer ul.social-icons li img {
    width: 24px;
}



.product-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-banner {
    padding: 80px 0 120px;
    background: url(../image/product/product-banner.svg) no-repeat center;
    background-size: cover;
}

.product-banner h1 span {
    color: #7BE3FF;
}

.product-banner h1 span:last-child {
    color: #FF6919;
}

.product-banner p {
    max-width: 728px;
    margin: auto
}


.product-banner img.search-icon {
    position: absolute;
    top: 6px;
    left: 0;
    right: 362px;
    margin: auto;
}

.product-banner img.arrow-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.product-banner img.star-icon {
    position: absolute;
    right: -30px;
    z-index: -1;
    bottom: -22px;
}

.product-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-banner .line span {
    position: relative;
}

.product-banner .line span img {
    position: absolute;
    right: -80px;
    top: 27px;
}

.choose-setup {
    background: #003342
}

.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;
}

.choose-setup .box h4 {
    max-width: 215px;
    font-weight: 600;
}

.choose-setup .col-lg-4:first-child .box {
    background: #FFC700;
}

.choose-setup .col-lg-4:last-child .box {
    background: #FDA3FF;
}

.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;
}

.choose-setup .box ul li {
    background: #242424;
    width: 42px;
    height: 7px;
    border-radius: 50px;
}

@media (max-width: 768px) {

    .choose-setup .box ul {
        left: 0;
        right: 0;
        margin: auto;
        height: auto;
        width: 100%;
        bottom: unset;
        top: -34px;
        flex-direction: row;
    }

    .choose-setup .box ul li {
        height: 42px;
        width: 7px;
    }
}

.compare-models {
    padding: 124px 0 80px;
}

.compare-models .box {
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    background: #7BE3FF;
}

.compare-models .box .heading {
    margin: -106px auto 80px;
}







.compare-models .pricing-wrapper {
    display: flex;
    overflow: auto;
    padding-top: 52px
}

.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;
}

.compare-models .pricing-wrapper .pricing-section {
    background: #79d7f3;
    padding: 40px 0;
}

.compare-models .pricing-wrapper .pricing-wrapper {
    display: flex;
    align-items: stretch;
    gap: 6px;
    overflow-x: auto;
}

/* .compare-models .pricing-wrapper .pricing-col{
    min-width:210px;
} */

.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 */

.compare-models .pricing-wrapper .price-col {
    position: relative;
    transition: all 0.3s ease;
}

.compare-models .pricing-wrapper .price-col .head,
.compare-models .pricing-wrapper .price-col .body {
    background: #5AE588;
    color: #111;
}

.compare-models .pricing-wrapper .sun {
    position: absolute;
    top: -60px;
    left: 20px;
    z-index: 10;
    font-size: 48px;
}

.compare-models .pricing-wrapper .sun img {
    max-height: 80px;
    max-width: 110px;
    transition: all 0.3s ease;
}

.compare-models .pricing-wrapper .sun img.sun-sit {
    display: none;
}

.compare-models .pricing-wrapper .price-col:hover .sun .sun-sleep {
    display: none;
}

.compare-models .pricing-wrapper .price-col:hover .sun .sun-sit {
    display: block;
}

.compare-models .pricing-wrapper .price-col:hover .sun {
    top: -48px;
}

/* CONNECTOR */

.compare-models .pricing-wrapper .type-col {
    position: relative;
}

.compare-models .pricing-wrapper .connector-line {
    position: absolute;
    left: -4px;
    top: 18px;
    bottom: 20px;
    width: 4px;
    background: #7BE3FF;
}

.compare-models .pricing-wrapper .connector-line span {
    position: absolute;
    left: -15px;
    width: 32px;
    height: 7px;
    background: #7BE3FF;
    border-radius: 14px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(1) {
    top: 3px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(2) {
    top: 85px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(3) {
    top: 140px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(4) {
    top: 204px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(5) {
    top: 265px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(6) {
    top: 325px;
}

.compare-models .pricing-wrapper .connector-line span:nth-child(7) {
    top: 385px;
}


/* MOBILE */

@media(max-width:991px) {

    .compare-models .pricing-wrapper .pricing-wrapper {
        min-width: 1200px;
    }

}

.compare-models .pricing-wrapper .pricing-col:first-child .body {
    border-radius: 14px;
    text-align: center;
}

.compare-models .pricing-wrapper .pricing-col:first-child {
    margin-right: 4px
}

.compare-models .pricing-wrapper .pricing-col:first-child .head {
    border-radius: 14px
}

.compare-models .pricing-wrapper .body p {
    margin: 0;
    min-height: 50px;
}

.compare-models .pricing-wrapper .body p:last-child {
    min-height: auto;
}

.compare-models .pricing-wrapper .pricing-col:nth-child(2) .body {
    border-radius: 14px 0 0 14px;
}

.compare-models .pricing-wrapper .pricing-col:nth-child(2) .head {
    border-radius: 14px 0 0 14px
}

.compare-models .pricing-wrapper .pricing-col:last-child .body {
    border-radius: 0 14px 14px 0
}

.compare-models .pricing-wrapper .pricing-col:last-child .head {
    border-radius: 0 14px 14px 0
}

.compare-models .pricing-wrapper .pricing-col:first-child .body {
    border-radius: 14px;
    text-align: center;
}

.compare-models .pricing-wrapper .body p {
    margin: 0;
    min-height: 50px;
    white-space: nowrap;
}

/* .compare-models .pricing-wrapper .feature-col .body p {
    white-space: normal;
} */

.compare-models .pricing-wrapper .price-col .head {
    margin: 0;
    padding-bottom: 16px
}

.individual-card .heading {
    max-width: 912px;
}

img.pattern-1 {
    transform: translateY(-40%);
    z-index: -1;
}

.solution-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;
}

.solution-banner {
    padding: 80px 0 120px;
    background: url(../image/solution/banner.svg) no-repeat center;
    background-size: cover;
    min-height: 650px;
    max-width: 1920px;
    margin: auto;
}

@media (max-width: 576px) {
    .solution-banner h1 {
        font-size: 28px;
        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-banner {
        padding: 50px 0 80px;
        min-height: 510px;
    }
}

.solution-banner h1 span {
    color: #7BE3FF;
}

.solution-banner h1 {
    max-width: 722px;
    margin: auto;
}

.solution-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 !important;
    border: 1px solid #242424 !important;
    color: white;
    box-shadow: 3px 3px 0 0 #000;
}

.solution-banner .content {
    max-width: 464px;
    margin: auto;
    transform: translateY(100%);
}

.solution-banner .content p {
    font-size: 24px;
}

.solution-banner .line {
    position: absolute;
    bottom: 0;
    background: #fff;
    padding: 15px;
    width: 100%;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .solution-banner .content {
        transform: translateY(88%);
    }
}

@media (max-width: 560px) {

    .solution-banner .line,
    .solution-banner .content p {
        font-size: 16px;
    }

    .solution-banner .content {
        padding: 0 40px;
    }

    .solution-banner .content {
        transform: translateY(120%);
    }
}

img.dot-pattern {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    top: 0;
}

.problem {
    background: #004053;
}

.solution {
    background: #003342;
}

.solution .content h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.solution .content span {
    margin: 15px 0 10px;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 560px) {
    .solution .content h5 {
        font-size: 22px;
    }

    .solution .content span {
        font-size: 16px;
        font-weight: 500;
    }
}

.solution .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution .content ul li {
    padding-left: 40px;
    position: relative;
}

.solution .content ul li img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
}

.use-case .icon {
    background: #004053;
    padding: 15px;
    border: 6px solid #004D65;
    border-radius: 15px;
    box-shadow: 0 0 17px #032B37;
    max-width: 142px;
    margin: auto;
}

.use-case .icon img {
    width: 100%;
    border-radius: 8px;
}

.use-case h5 {
    font-size: 24px;
    font-weight: 600;
}

.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;
}

.features .inner-box .box h4 {
    font-size: 26px;
    font-weight: 600;
}

.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;
}

.features .inner-box .box:hover span {
    left: -90px;
    z-index: 0;
    opacity: 24%
}

.features .inner-box .box:nth-child(2) {
    transform: rotate(-4deg) translateX(-60px);
}

.features .inner-box .box:nth-child(3) {
    transform: rotate(2deg) translateX(50px);
}

.features .inner-box .box:nth-child(4) {
    transform: rotate(4deg) translateX(-50px) translateY(-3px);
}

.features .inner-box .box:nth-child(5) {
    transform: rotate(-2deg) translateX(120px) translateY(-15px);
}

@media (max-width: 820px) {
    .features .inner-box .box:nth-child(2) {
        transform: rotate(-4deg) translateX(0);
    }

    .features .inner-box .box:nth-child(3) {
        transform: rotate(2deg) translateX(0);
    }

    .features .inner-box .box:nth-child(4) {
        transform: rotate(-4deg) translateX(0) translateY(0);
    }

    .features .inner-box .box:nth-child(5) {
        transform: rotate(4deg) translateX(0) translateY(0);
    }
}

.features .inner-box .box p {
    font-size: 18px;
}

.features .inner-box {
    padding: 120px 0 80px;
    background: url(../image/solution/features-bg-pattern.svg) no-repeat top center;
    background-size: cover;
    position: relative;
}


@media (max-width: 560px) {
    .features .inner-box {
        padding: 120px 50px 80px;
    }

    .features .inner-box .box {
        padding: 30px 20px;
    }

    .features .inner-box .box h4 {
        font-size: 20px;
    }

    .features .inner-box .box span {
        display: none;
    }
}

.features .feature-grid-pattern {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
}

.features .inner-box .box:first-child img {
    position: absolute;
    left: -25px;
    top: -26px;
    width: 46px;
}

.features .inner-box .box:nth-child(2) img {
    position: absolute;
    right: -40px;
    bottom: 20px;
    width: 46px;
}

.features .inner-box .box:nth-child(4) img {
    position: absolute;
    top: -24px;
    left: 72px;
    width: 38px;
    transform: rotate(-8deg);
}

.features .inner-box .box:last-child img {
    position: absolute;
    right: 40px;
    bottom: -31px;
    width: 50px;
}

.why-snapx .grid-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

@media (max-width: 820px) {
    .why-snapx .grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .why-snapx .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.why-snapx .grid-box .box {
    text-align: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.why-snapx .grid-box .box img {
    max-width: 140px;
    margin: auto;
}

.why-snapx .grid-box .box h5 {
    font-weight: 300;
    margin: 0;
}

@media (max-width: 560px) {
    .why-snapx .grid-box .box h5 {
        font-size: 1rem;
    }
}

.case-study {
    background: #242424;
}

.case-study .box {
    background: #FAA590;
    border-radius: 16px;
    box-shadow: 6px 6px 0px 0px #E6E6E6;
    border: 3px solid #E6E6E6;
    color: #242424;
    padding: 25px;
    height: 100%;
    position: relative;
}

.case-study .col-xl-7 .box {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    gap: 30px;
}

.case-study .box .content h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 18px;
}

.case-study .box .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-study .box .content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.case-study .col-xl-5 .box {
    background: #8CE8C2;
}

.case-study .col-xl-5 .box img {
    margin: 0 auto 10px;
    display: block;
}

@media (max-width: 1024px) {
    .case-study .col-xl-5 .box {
        text-align: center;
    }
}

.case-study .box p {
    margin: 0;
}

.case-study .col-xl-12 .box {
    background: #EAB3EB;
    padding: 35px 0;
    font-size: 22px;
    font-weight: 500;
    padding-right: 16%;
    padding-left: 12%;
}

.case-study .col-xl-12 .box img:first-child {
    position: absolute;
    left: 30px;
    top: -30px;
}

.case-study .col-xl-12 .box img:last-child {
    position: absolute;
    right: 30px;
    bottom: 0;
}

.case-study .col-xl-12 {
    margin-top: 35px;
}



@media (max-width: 560px) {
    .case-study .col-xl-7 .box {
        flex-direction: column;
        padding: 25px;
    }

    .case-study .box .content h3 {
        font-size: 22px;
    }

    .case-study .col-xl-12 .box img:last-child {
        display: none;
    }

    .case-study .col-xl-12 .box {
        font-size: 18px;
    }
}

.result {
    background: url('../image/solution/result-grid-pattern.svg') no-repeat center;
    background-size: auto;
}

.result .grid-box {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
}

.result .grid-box .box {
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 340px;
}

.result .grid-box .box:nth-child(2) {
    max-width: 484px;
}

.result .grid-box .box:last-child .feature-item:first-child img {
    position: absolute;
    left: -50px;
    top: -10px;
    bottom: 0;
    margin: auto;
}

.result .grid-box .box:last-child .feature-item:last-child img {
    position: absolute;
    left: -80px;
    bottom: 0;
}

.result .grid-box .box:first-child .feature-item:first-child img {
    position: absolute;
    bottom: -12px;
    left: 80px;
}

.result .grid-box .box:first-child .feature-item:last-child img {
    position: absolute;
    left: 200px;
    bottom: -30px;
}

.result .grid-box .box .feature-item img {
    opacity: 0;
    transition: all 0.3s ease;
}

.result .grid-box .box .feature-item.active img {
    opacity: 1;
}

.result .feature-item {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.result .center-image {
    text-align: center;
}

.result .center-image img {
    width: 100%;
    max-width: 484px;
    height: auto;
    transition: all 0.3s ease;
}

/* Tablet */
@media (max-width:991px) {

    .result.center-image {
        margin-bottom: 40px;
    }

    .result.center-image img {
        max-width: 350px;
    }

    .result .grid-box {
        flex-direction: column;
    }

    .result .grid-box .box {
        gap: 25px;
    }

    .result .grid-box .box .feature-item img {
        display: none;
    }

    .result .grid-box .box {
        max-width: 100%;
        width: 100%;
    }

    .result {
        background-size: cover;
    }
}

/* Mobile */
@media (max-width:767px) {

    .result .feature-item {
        font-size: 16px;
    }
    nav.navbar ul.navbar-nav .dropdown-menu
    {
        width: 100%;
    }
}

.how-it-work-banner {
    padding: 56px 0;
    position: relative;
}

.how-it-work-banner h1 {
    text-transform: uppercase;
    font-size: 53px;
    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;
}

@media (max-width: 576px) {
    .how-it-work-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);
    }
}

.how-it-work-banner h1 span {
    color: #FF6919;
}

.how-it-work-banner h1 span:last-child {
    color: #7BE3FF;
}

.how-it-work-banner .banner-pattern-1 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.how-it-work-banner .banner-pattern-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.how-it-work-banner .banner-light {
    position: absolute;
    right: -180px;
    z-index: -1;
    top: -150px;
}

.setup-configration {
    background-color: #003342;
}

.setup-configration h4 {
    margin: 0;
    font-size: 34px;
}

.setup-configration p.line {
    margin: 0;
    font-size: 18px;
}

.setup-configration .box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 24px;
    height: 100%;
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.setup-configration .box span {
    font-size: 28px;
    font-weight: 300;
    display: block;
}

.setup-configration .box h3 {
    margin: 14px 0;
    font-weight: 600;
}

.setup-configration .box p {
    margin: 0;
}

.setup-configration .col-lg-3:first-child .box {
    background: #FFF8DC;
}

.setup-configration .col-lg-3:last-child .box {
    background: #FFBFAF;
}

.setup-configration .col-lg-3:nth-child(2) .box {
    background: #C3C0FF;
}

.setup-configration .col-lg-3:nth-child(3) .box {
    background: #A5F8D6;
}

.setup-configration .box img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.setup-configration .col-lg-3:nth-child(3) .box img {
    top: 0;
    bottom: unset;
    max-width: 140px;
}

.setup-configration .col-lg-3:last-child .box img {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%;
}

.delivery-sharing .box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    /* height: 100%; */
    box-shadow: 8px 8px 0px 0px #242424;
    border: 2px solid #242424;
    position: relative;
    z-index: 1;
}

.delivery-sharing .col-lg-8 .box {
    padding-left: 250px;
    font-size: 20px;
    margin-top: 40px;
    width: 90%;
    margin-left: auto;
}

.delivery-sharing .col-lg-8 .box img.printer {
    position: absolute;
    left: -75px;
    top: -50px;
    max-width: 300px;
}

.delivery-sharing .flex-box .box:first-child img {
    position: absolute;
    right: 0;
    bottom: -50px;
}

.delivery-sharing .flex-box .box:last-child img {
    position: absolute;
    right: 20px;
    bottom: -30px;
}

.delivery-sharing .flex-box {
    row-gap: 70px;
    display: flex;
    flex-direction: column;
}

.delivery-sharing .flex-box .box {
    max-width: 340px;
}

.delivery-sharing .flex-box .box:last-child {
    margin-left: auto;
}

@media (max-width:820px) {
    .delivery-sharing .col-lg-8 .box {
        width: 100%;
        padding: 24px;
        padding-top: 230px;
    }

    .delivery-sharing .col-lg-8 .box img.printer {
        left: 0;
        right: 0;
        margin: auto;
        max-width: 240px;
    }

    .delivery-sharing .flex-box {
        max-width: 540px;
        margin: 0 auto;
    }
}

.analytics-tracking {
    background: url(../image/use-case-pattern.svg) no-repeat center;
    background-size: cover;
    background-position: top;
    padding: 156px 0 80px;
}

.analytics-tracking .flex-box .content-box {
    gap: 45px;
    flex-direction: row;
    position: relative;
}

.analytics-tracking .flex-box .content-box::after {
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    top: 0;
    margin: auto;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.29);
    left: 0;
    content: '';
    z-index: 0;
    opacity: 0;
    transition: all 0.8s ease;
}

.analytics-tracking .flex-box .content-box:hover::after {
    width: 100%;
    opacity: 1;
}

.analytics-tracking .flex-box .content-box li {
    width: 100%;
    cursor: unset;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.analytics-tracking .flex-box .content-box li:first-child {
    transform: rotate(-3deg);
}

.analytics-tracking .flex-box .content-box li:last-child {
    transform: rotate(-3deg);
}

.analytics-tracking .flex-box .content-box li:nth-child(2) {
    transform: rotate(-4deg);
}

.analytics-tracking .flex-box .content-box li:nth-child(3) {
    transform: rotate(4deg);
}

.analytics-tracking .flex-box .content-box li:first-child h4 {
    color: #FFC700;
}

.analytics-tracking .flex-box .content-box li:nth-child(2) h4 {
    color: #FD93FF;
}

.analytics-tracking .flex-box .content-box li:nth-child(3) h4 {
    color: #5AE588;
}

.analytics-tracking .flex-box .content-box li:last-child h4 {
    color: #6CCEFF;
}

.analytics-tracking .flex-box .content-box:hover li {
    transform: unset;
}

@media (max-width:1024px) {
    .analytics-tracking {
        padding: 80px 0;
    }

    .analytics-tracking .flex-box .content-box li {
        transform: unset !important;
    }

    .analytics-tracking .flex-box .content-box {
        gap: 35px;
        width: calc(100% - 20px);
    }

    .analytics-tracking .flex-box .content-box::after {
        position: absolute;
        bottom: unset;
        right: 0;
        left: 0;
        height: 0%;
        width: 2px;
        top: 0;
        border-left: 2px dashed rgba(255, 255, 255, 0.29);
        border-bottom: 0;
    }

    .analytics-tracking .flex-box .content-box:hover::after {
        height: 100%;
        opacity: 1;
        width: 2px;
    }
}



@media (max-width:560px) {
    .analytics-tracking {
        padding: 60px 0;
    }
}

.management-scale .box {
    border-radius: 8px;
    background-color: #004053;
    padding: 15px;
    box-shadow: 0 0 0 6px #004D65;
    transition: all 0.3s ease;
}

.management-scale .box .inner-box {
    background: #FFF8DC;
    border-radius: 8px;
    padding: 40px 48px;
    position: relative;
}

.management-scale .box .inner-box h3 {
    font-size: 24px;
    font-weight: 500;
}

.management-scale .box .inner-box .smile-sleep {
    position: absolute;
    right: 0;
    max-width: 290px;
}

.management-scale .box .inner-box .smile-sit {
    position: absolute;
    right: 60px;
    max-height: 240px;
    transform: rotate(-90deg);
    opacity: 0;
}

.management-scale .box:hover img.smile-sleep {
    transform: rotate(55deg);
    opacity: 0;
}

.management-scale .box:hover img.smile-sit {
    transform: rotate(0deg);
    opacity: 1;
    top: -142px;
}

.management-scale .box .inner-box img {
    transition: all 0.3s ease;
    position: absolute;
    top: -145px;
}

.management-scale .col-lg-8 {
    margin-top: 170px;
}

@media (max-width:820px) {
    .management-scale .box:hover img.smile-sleep {
        transform: unset;
        opacity: 1;
    }

    .management-scale .box .inner-box .smile-sleep {
        max-width: 210px;
    }

    .management-scale .box .inner-box img {
        top: -106px;
    }

    .management-scale .col-lg-8 {
        margin-top: 120px;
    }
}

section.snap-work {
    background: #000;
}

section.snap-work .col-lg-4:first-child .box {
    background-color: #EAB3EB;
}

section.snap-work .col-lg-4:last-child .box {
    background: #B0ACF9;
}

section.snap-work .col-lg-4:nth-child(2) .box {
    background: #FAA590;
}

section.snap-work .col-lg-4:nth-child(3) .box {
    background: #8CE8C2;
}

section.snap-work .col-lg-4:nth-child(4) .box {
    background: #9CD8EA;
}

section.snap-work .col-lg-4:nth-child(5) .box {
    background: #EFE5BB;
}

section.snap-work .box {
    padding: 31px 25px;
    border-radius: 16px;
    box-shadow: 8px 8px 0px 0px #E6E6E6;
    border: 2px solid #E6E6E6;
    transition: all 0.3s ease-in-out 0s;
    background: #c486ff;
}
section.snap-work .box:hover 
{
    box-shadow: none;
}

section.snap-work .box h4 {
    font-size: 25px;
    font-weight: 600;
}

.about-us-banner {
    position: relative;
}

.about-us-banner h1 {
    text-transform: uppercase;
    font-size: 53px;
    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;
}

@media (max-width: 576px) {
    .about-us-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);
    }
}

.about-us-banner h1 span {
    color: #FF6919;
}

.about-us-banner h1 span:last-child {
    color: #7BE3FF;
}

.about-us-banner .banner-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 30%;
}

.about-us-banner .inner-box {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding: 56px 0;
}

.about-us-banner .inner-box .banner-pattern-1 {
    position: absolute;
    left: -30px;
    top: -20px;
    animation: pattern1 3s ease-in-out infinite;
}

@keyframes pattern1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}


.about-us-banner .inner-box .banner-pattern-2 {
    position: absolute;
    right: -30px;
    top: -20px;
    animation: pattern1 6s ease-in-out infinite;
}

.about-us-banner .inner-box .banner-pattern-3 {
    position: absolute;
    left: 30px;
    bottom: -30px;
    animation: pattern3 6s ease-in-out infinite;
}

@keyframes pattern3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(20px, 0);
    }
    75% {
        transform: translate(10px, 10px);
    }
}

.about-us-banner .inner-box .banner-pattern-4 {
    position: absolute;
    right: -45px;
    bottom: -80px;
    animation: pattern4 6s ease-in-out infinite;
}

@keyframes pattern4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(-20px, 0);
    }
    75% {
        transform: translate(-10px, -10px);
    }
}

.attention-drop {
    background-color: #003342;
}

.attention-drop .arrow-pattern {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1;
}

.attention-drop .orbit-wrapper {
    position: relative;
    text-align: center;
}

.attention-drop .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.attention-drop .center-logo span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.attention-drop .orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 8s linear infinite;
}

.attention-drop .orbit-item {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0e7490;
    animation: counter-spin 8s linear infinite;
}

/* Position each item at N, E, S, W of the ring */
.attention-drop .orbit-item:nth-child(1) {
    top: -29px;
    left: calc(50% - 29px);
}

.attention-drop .orbit-item:nth-child(2) {
    top: calc(50% - 29px);
    right: -29px;
}

.attention-drop .orbit-item:nth-child(3) {
    bottom: -29px;
    left: calc(50% - 29px);
}

.attention-drop .orbit-item:nth-child(4) {
    top: calc(50% - 29px);
    left: -29px;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counter-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


.snapx-difference .flex-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 35px;
}

.snapx-difference .flex-box .box {
    background: #ffffff;
    width: calc(33.3% - 31px);
    padding: 0 15px;
    margin: 0 12px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 6px 6px 0px 0px #242424;
    border: 2px solid #242424;
    text-align: center;
    transition: all 0.3s ease;
}

.snapx-difference .flex-box .box span {
    overflow: hidden;
    width: 100%;
    display: block;
    height: 230px;
}

.snapx-difference .flex-box .box .box-title {
    padding: 16px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: normal;
}

.snapx-difference .flex-box .box:first-child span {
    background: #FFF8DC;
    border-radius: 12px;
    border: 2px solid #EFE5BB;
    position: relative;
}

.snapx-difference .flex-box .box:first-child span img.box-1-circle-pattern {
    width: 93%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -193px;
}

.snapx-difference .flex-box .box:first-child span img.box-1-product {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -198px;
}

.snapx-difference .flex-box .box:first-child span img.box-1-photo-1 {
    position: absolute;
    left: 40px;
    bottom: -30px;
}

.snapx-difference .flex-box .box:first-child span img.box-1-photo-2 {
    position: absolute;
    right: 60px;
    bottom: 20px;
}

.snapx-difference .flex-box .box span img {
    transition: all 0.3s ease;
}

.snapx-difference .flex-box .box:first-child:hover img.box-1-circle-pattern {
    transform: scale(2);
}

.snapx-difference .flex-box .box:first-child:hover img.box-1-product {
    bottom: -140px;
}

.snapx-difference .flex-box .box:first-child:hover img.box-1-photo-1 {
    left: -10px;
    bottom: -6px;
    transform: scale(1.2);
}

.snapx-difference .flex-box .box:nth-child(2):hover span img.box-2-circle {
    transform: scale(1.2);
}

.snapx-difference .flex-box .box:first-child:hover img.box-1-photo-2 {
    right: 0px;
    bottom: 110px;
    transform: scale(1.2);
}

.snapx-difference .flex-box .box:nth-child(2) span {
    background: #C3C0FF;
    border-radius: 12px;
    border: 2px solid #B0ACF9;
    position: relative;
}

.snapx-difference .flex-box .box:nth-child(2) span img.box-2-circle {
    width: 93%;
    position: absolute;
    right: 0;
    margin: auto;
    top: 0;
}

.snapx-difference .flex-box .box:nth-child(2) span img.box-2-photo-1 {
    position: absolute;
    left: 65px;
    top: 0;
}

.snapx-difference .flex-box .box:nth-child(2) span img.box-2-photo-2 {
    position: absolute;
    right: 65px;
    bottom: 0;
}

.snapx-difference .flex-box .box:nth-child(2):hover img.box-2-circle {
    transform: scale(2.5);
}

.snapx-difference .flex-box .box:hover:nth-child(2) span img.box-2-circle {
    transform: scale(2.5);
}

.snapx-difference .flex-box .box:hover:nth-child(2) span img.box-2-photo-2 {
    transform: translateY(200px);
}

.snapx-difference .flex-box .box:hover:nth-child(2) span img.box-2-photo-1 {
    transform: scale(2);
    left: 130px;
    margin: auto;
    top: -60px;
}

.snapx-difference .flex-box .box:nth-child(3) span {
    background: #F8D0F9;
    border-radius: 12px;
    border: 2px solid #EAB3EB;
    position: relative;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-circle {
    width: 93%;
    position: absolute;
    right: 0;
    margin: auto;
    top: 0;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-photo-1 {
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-photo-2 {
    position: absolute;
    right: -10px;
    top: -10px;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-star {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-logo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.snapx-difference .flex-box .box:nth-child(3) span img.box-3-photo-3 {
    position: absolute;
    bottom: -20px;
    right: -15px;
}

.snapx-difference .flex-box .box:nth-child(3):hover img.box-3-star {
    transform: scale(3.5) rotate(25deg);
}

.snapx-difference .flex-box .box:nth-child(3):hover img.box-3-logo {
    transform: scale(1.3) rotate(-15deg);
}

.snapx-difference .flex-box .box:hover:nth-child(3) span img.box-3-photo-1 {
    left: 20px;
    top: -80px;
}

.snapx-difference .flex-box .box:hover:nth-child(3) span img.box-3-photo-2 {
    right: 15px;
}

.snapx-difference .flex-box .box:hover:nth-child(3) span img.box-3-photo-3 {
    right: 25px;
}

.snapx-difference .flex-box .box:nth-child(4) span {
    background: #FFBFAF;
    border-radius: 12px;
    border: 2px solid #FAA590;
    position: relative;
}

.snapx-difference .flex-box .box:nth-child(4) span img.box-1-product {
    position: absolute;
    left: 20px;
    right: 0;
    margin: auto;
    top: 20px;
    z-index: 1;
}

.snapx-difference .flex-box .box:nth-child(4) span img.box-4-people {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 100%;
    transform: scale(1.3);
    z-index: 1;
}

.snapx-difference .flex-box .box:nth-child(4) span img.box-4-arrow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: auto;
    z-index: 0;
}

.snapx-difference .flex-box .box:nth-child(4):hover img.box-1-product {
    top: 0;
    transform: scale(0.8);
}

.snapx-difference .flex-box .box:nth-child(4):hover img.box-4-arrow {
    bottom: 0;
    top: 0;
    transform: scale(4) rotate(3deg);
}

.snapx-difference .flex-box .box:nth-child(4):hover img.box-4-people {
    transform: scale(1);
    bottom: -30px;
}




.snapx-difference .flex-box .box:nth-child(5) span {
    background: #C7EAF5;
    border-radius: 12px;
    border: 2px solid #9CD8EA;
    position: relative;
}

.snapx-difference .flex-box .box:nth-child(5) span img.box-5-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -70%;
    margin: auto;
    min-width: 316px;
}

.snapx-difference .flex-box .box:nth-child(5) span img.box-5-product-1 {
    position: absolute;
    left: 20px;
    bottom: -50px;
    z-index: 1;
    min-width: 160px;
}

.snapx-difference .flex-box .box:nth-child(5) span img.box-5-product-2 {
    position: absolute;
    left: 10px;
    right: 0;
    margin: auto;
    z-index: 1;
    bottom: -80px;
    min-width: 230px;
}

.snapx-difference .flex-box .box:nth-child(5) span img.box-5-product-3 {
    position: absolute;
    right: 0px;
    bottom: -100px;
    z-index: 1;
    min-width: 170px;
}

.snapx-difference .flex-box .box:nth-child(5):hover img.box-5-shape {
    transform: scale(2);
}

.snapx-difference .flex-box .box:nth-child(5):hover img.box-5-product-1 {
    transform: rotate(-15deg);
    left: 0;
}

.snapx-difference .flex-box .box:nth-child(5):hover img.box-5-product-2 {
    bottom: -50px;
}

.snapx-difference .flex-box .box:nth-child(5):hover img.box-5-product-3 {
    transform: rotate(15deg);
    right: 0;
}

.ready-setup {
    background-color: #003342;
}

.snapx-difference .arrow-pattern {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1;
    transform: rotate(-180deg);
}

.ready-setup .clothesline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: -70px auto 0;
}

.ready-setup .rope-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.ready-setup .polaroids {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 1;
    padding: 60px 10px 0;
    max-width: 1500px;
    margin: 0 auto;
}

.ready-setup .polaroid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.ready-setup .polaroid-item:nth-child(1) {
    margin-top: -26px;
}

.ready-setup .polaroid-item:nth-child(2) {
    margin-top: 0;
}

.ready-setup .polaroid-item:nth-child(3) {
    margin-top: 14px;
}

.ready-setup .polaroid-item:nth-child(4) {
    margin-top: 16px;
}

.ready-setup .polaroid-item:nth-child(5) {
    margin-top: 0;
}

.ready-setup .polaroid-item:nth-child(6) {
    margin-top: -30px;
}

.ready-setup .polaroid {
    background: #fff;
    padding: 10px 10px 0 10px;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    width: 100%;
}

.ready-setup .polaroid-item:nth-child(1) {
    transform: rotate(7deg);
}

.ready-setup .polaroid-item:nth-child(2) {
    transform: rotate(5deg);
}

.ready-setup .polaroid-item:nth-child(3) {
    transform: rotate(2deg);
}

.ready-setup .polaroid-item:nth-child(4) {
    transform: rotate(-2deg);
}

.ready-setup .polaroid-item:nth-child(5) {
    transform: rotate(-5deg);
}

.ready-setup .polaroid-item:nth-child(6) {
    transform: rotate(-8deg);
}

.ready-setup .polaroid:hover {
    transform: translateY(-6px) rotate(0deg) !important;
    box-shadow: 4px 10px 24px rgba(0, 0, 0, 0.5);
}

.ready-setup .photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.ready-setup .blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
}

.ready-setup .photo-yellow {
    background: #f5f0d8;
}

.ready-setup .photo-yellow .blob-1 {
    width: 55%;
    height: 55%;
    background: #c8c499;
    top: 10%;
    left: 5%;
    border-radius: 60% 40% 55% 45%;
}

.ready-setup .photo-yellow .blob-2 {
    width: 40%;
    height: 40%;
    background: #d4cc88;
    bottom: 8%;
    right: 10%;
    border-radius: 45% 55% 40% 60%;
}

.ready-setup .photo-purple {
    background: #d4ccf0;
}

.ready-setup .photo-purple .blob-1 {
    width: 60%;
    height: 60%;
    background: #9b8dd4;
    top: 20%;
    left: 15%;
    border-radius: 55% 45% 60% 40%;
}

.ready-setup .photo-purple .blob-2 {
    width: 35%;
    height: 35%;
    background: #b8aadc;
    bottom: 5%;
    right: 5%;
    border-radius: 40% 60% 45% 55%;
}

.ready-setup .photo-pink {
    background: #f0d4e8;
}

.ready-setup .photo-pink .blob-1 {
    width: 65%;
    height: 50%;
    background: #d48ab8;
    top: 15%;
    left: 10%;
    border-radius: 60% 40% 55% 45%;
}

.ready-setup .photo-pink .blob-2 {
    width: 45%;
    height: 45%;
    background: #e0a8cc;
    bottom: 10%;
    right: 8%;
    border-radius: 45% 55% 40% 60%;
}

.ready-setup .photo-peach {
    background: #f5cfc0;
}

.ready-setup .photo-peach .blob-1 {
    width: 70%;
    height: 60%;
    background: #e89070;
    top: 5%;
    left: 5%;
    border-radius: 55% 45% 60% 40%;
}

.ready-setup .photo-peach .blob-2 {
    width: 45%;
    height: 45%;
    background: #f0a888;
    bottom: 5%;
    right: 10%;
    border-radius: 40% 60% 45% 55%;
}

.ready-setup .photo-blue {
    background: #cce4f0;
}

.ready-setup .photo-blue .blob-1 {
    width: 55%;
    height: 55%;
    background: #80b8d8;
    top: 10%;
    left: 10%;
    border-radius: 60% 40% 55% 45%;
}

.ready-setup .photo-blue .blob-2 {
    width: 50%;
    height: 45%;
    background: #a0ccdc;
    bottom: 5%;
    right: 5%;
    border-radius: 45% 55% 40% 60%;
}

.ready-setup .photo-mint {
    background: #c8efe4;
}

.ready-setup .photo-mint .blob-1 {
    width: 55%;
    height: 50%;
    background: #70c4a8;
    top: 8%;
    left: 8%;
    border-radius: 55% 45% 60% 40%;
}

.ready-setup .photo-mint .blob-2 {
    width: 50%;
    height: 50%;
    background: #90d4bc;
    bottom: 5%;
    right: 5%;
    border-radius: 40% 60% 45% 55%;
}

.ready-setup .label {
    padding: 10px 0;
    /* font-size: clamp(0.55rem, 1.1vw, 0.7rem); */
    font-weight: 500;
    display: block;
    /* color: #444; */
    letter-spacing: 0.01em;
    text-align: center;
}



@media (max-width: 1024px) {
    .ready-setup .polaroids {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 60px 60px 0px;
        max-width: 890px;
    }

    .ready-setup .polaroid-item {
        transform: none !important;
        margin: 0 !important;
    }

    .snapx-difference .flex-box .box {
        width: calc(50.3% - 31px);
    }

    .attention-drop .arrow-pattern,
    .snapx-difference .arrow-pattern {
        display: none;
    }
}

@media (max-width: 560px) {
    .ready-setup .polaroids {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 20px 0px;
        gap: 20px;
    }

    .snapx-difference .flex-box .box {
        width: 100%;
        margin: 0;
    }

    .attention-drop .orbit-wrapper {
        overflow: hidden;
    }

    .attention-drop .orbit-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .attention-drop .orbit-ring {
        width: 300px;
        height: 300px;

    }
}

.letter-main {
    background: #003342;
}

.letter-main .attention-drop {
    background: transparent;
    z-index: 2;
}

.letter-pattern {
    mix-blend-mode: overlay;
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
}

.letter .card {
    position: absolute;
    top: 170px;
    width: 100%;
    max-width: 520px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 auto;
    left: -30px;
    right: 0;
    transform: rotate(-2deg);
    gap: 15px;
    font-size: 18px;
    z-index: 2;
}

.letter .card .btn-group .btn.btn-secondary:hover {
    box-shadow: 3px 3px 0 0 #f06012;
    color: #f06012;
    border-color: #f06012;
}

.letter .letter-img {
    position: relative;
    z-index: 2;
    margin-bottom: -390px;
}

@media (max-width: 1024px) {
    .letter .letter-img {
        display: none;
    }

    .letter .card {
        background: #fff;
        padding: 30px 30px 80px;
        transform: none;
        position: relative;
        margin-bottom: -50px;
        top: unset;
        border-radius: 16px;
        max-width: 600px;
        left: 0;
    }
}

.main-product-banner {
    background-color: #003342;
}

.main-product-banner h1 span {
    color: #FF6919;
}

.main-product-banner h1 span:last-child {
    color: #7BE3FF;
}

.key-feature {
    padding: 80px 0;
}

.key-feature .card .badge {
    background: #FF993F;
    position: absolute;
    right: 20px;
    top: -17px;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid #242424;
    color: #242424;
    display: flex;
    gap: 8px;
    align-items: center;
}


@media (max-width: 560px) {
    .key-feature {
        padding: 60px 0;
    }
}

.key-feature .card {
    height: 100%;
    border-radius: 24px;
    border: 2px solid #242424;
    padding: 15px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    font-size: 18px;
}

.key-feature .card span {
    font-size: 65px;
    color: #D0D0D0;
    font-weight: 600;
}

.key-feature .box {
    background: url(../image/product/snapx-k100/key-feature-pattern.svg) #A5F8D6 no-repeat center;
    background-size: cover;
}

.pricing-package .flex-box .box {
    transform: none !important;
    bottom: -30px;
    position: relative;
}

.pricing-package .flex-box .box .content {
    padding: 30px 35px;
}

.pricing-package .flex-box .box .content span {
    font-size: 1rem;
    border-bottom: 1px solid #808080;
    display: block;
    padding: 5px 0;
    margin-bottom: 5px;
}

.pricing-package .flex-box .box .content p {
    margin: 0;
}

.pricing-package .flex-box {
    gap: 20px;
    align-items: flex-end;
    margin-top: -170px;
}

.pricing-package .flex-box .box:last-child {
    transform: rotate(6deg) !important;
}

.pricing-package .flex-box .box:last-child img {
    max-width: 230px;
}

.pricing-package .para p {
    font-size: 34px;
    color: #242424;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .pricing-package .flex-box {
        margin: 0;
    }

    .pricing-teaser .flex-box .box .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 860px) {
    .pricing-package .flex-box .box .content span {
        position: absolute;
        left: 35px;
        right: unset;
        top: -10px;
        background-color: #004053;
        font-size: 12px;
        padding: 0 11px;
        border-radius: 50px;
        border: 1px solid #dfd8c8;
        color: #fff;
        margin: 0;
    }

    .pricing-package .flex-box .box .content p {
        font-size: 14px;
    }

    .pricing-package .flex-box .box {
        bottom: 0;
    }

    .pricing-package .flex-box {
        padding-top: 35px;
    }

    .pricing-package .para p {
        font-size: 20px;
    }

    .pricing-package .para {
        padding: 20px 40px;
    }

    .key-feature .card span {
        font-size: 45px;
    }
}

@media (max-width: 560px) {
    .pricing-package .para p {
        font-size: 20px;
    }

    .pricing-package .flex-box .box .content h3 {
        font-size: 26px;
    }

    .pricing-package .flex-box {
        flex-direction: column;
        padding: 30px 15px 0;
        gap: 30px;
    }

    .pricing-package .flex-box .box>img {
        display: none;
    }

    .pricing-package .flex-box .box {
        width: 100%;
    }

    .pricing-package .flex-box .box .content {
        position: unset;
        background: #fff;
        padding: 30px 15px 20px;
        border-radius: 6px;
    }

    .pricing-package .flex-box .box .content span {
        left: 15px;
    }

    .pricing-package .flex-box .box:nth-child(3) .content {
        border-radius: 6px 6px 0 0;
    }

    .pricing-package .flex-box .box .content p {
        font-size: 1rem;
    }

    .pricing-package .flex-box .box .content span {
        font-size: 14px;
    }

    .key-feature .card {
        font-size: 1rem;
    }

    .key-feature .card span {
        font-size: 25px;
    }
}

.best-for {
    background: linear-gradient(180deg, #004053 0%, #003342 100%);
}

.best-for .flex-box {
    position: relative;
    width: 100%;
    min-height: 290px;
    max-width: 1142px;
    margin: auto;
}

.best-for .flex-box .box {
    background: #fff;
    font-weight: 600;
    font-size: 24px;
    color: #242424;
    padding: 22px 18px;
    padding-right: 35px;
    line-height: 1.4;
    display: inline-block;
    position: absolute;
    max-width: 400px;
    width: 100%;
    text-align: left;
    border-radius: 14px;
    box-shadow: 6px 6px 0px 0px #242424;
    border: 2px solid #242424;
}

.best-for .flex-box .box.box-1 {
    top: 0;
    left: 0;
    transform: rotate(5deg);
}

.best-for .flex-box .box.box-2 {
    top: 0;
    right: 0;
    transform: rotate(-5deg);
}

.best-for .flex-box .box.box-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.best-for .flex-box .box.box-4 {
    bottom: 0;
    left: 60px;
    transform: rotate(3deg);
}

.best-for .flex-box .box.box-5 {
    bottom: 10px;
    right: 80px;
    transform: rotate(-5deg);
}

.best-for .flex-box .box.box-1 img {
    position: absolute;
    width: 35px;
    top: -19px;
    left: 27px;
}

.best-for .flex-box .box.box-2 img {
    position: absolute;
    right: 30px;
    bottom: -17px;
    width: 35px;
    transform: rotate(9deg);
}

.best-for .flex-box .box.box-3 img {
    position: absolute;
    right: 50px;
    transform: rotate(-8deg);
    width: 40px;
    top: -23px;
}

.best-for .flex-box .box.box-4 img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -16px;
    width: 35px;
    transform: rotate(-18deg);
}

.best-for .flex-box .box.box-5 img {
    position: absolute;
    right: 70px;
    bottom: -16px;
    width: 30px;
    transform: rotate(15deg);
}


@media (max-width: 1199px) {
    .best-for .flex-box {
        min-height: 320px;
    }

    .best-for .flex-box .box {
        max-width: 340px;
    }
}

@media (max-width: 991px) {
    .best-for .flex-box {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .best-for .flex-box .box {
        max-width: 100%;
        transform: none !important;
        position: relative;
        left: 0 !important;
        font-size: 18px;
    }
}


section.marque-line {
    background: #FF993F;
    overflow: hidden;
}

section.marque-line ul {
    padding: 15px 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

section.marque-line ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
}

.branding-options {
    padding-bottom: 120px;
}

.branding-options .box .title {
    font-size: 26px;
    font-weight: 600;
    margin: 8px 0 5px;
}

.branding-options .box {
    padding: 0 25px;
}


.setup-requirements {
    background-color: #01566E;
    padding: 60px 0;
}

.setup-requirement-pattern-1 {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1920px;
    width: 100%;
    top: -58px;
    z-index: 1;
    margin: auto;
    height: 59px;
    object-fit: cover;
}

.setup-requirement-pattern-2 {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1920px;
    width: 100%;
    bottom: -58px;
    z-index: 1;
    margin: auto;
    transform: rotate(180deg);
    height: 59px;
    object-fit: cover;
}

/* @media (max-width: 991px) {
    .setup-requirement-pattern-1 {
        top: -30px;
    }
    .setup-requirement-pattern-2 {
        bottom: -30px;
    }
} */

.setup-requirements .flex-box {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin: auto;
}

.setup-requirements .flex-box .box.box-1 {
    top: 5px;
    left: 20%;
    max-width: 230px;
}

.setup-requirements .flex-box .box.box-2 {
    top: 0;
    right: 33%;
    max-width: 200px;
}

.setup-requirements .flex-box .box.box-3 {
    bottom: 30%;
    left: 0;
    max-width: 210px;
}

.setup-requirements .flex-box .box.box-4 {
    bottom: 0;
    left: 25%;
    max-width: 48%;
    min-height: 394px;
}

.setup-requirements .flex-box .box img {
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease;
}

.setup-requirements .flex-box .box:hover img {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-1 img {
    bottom: -14px;
    left: 44px;
}

.setup-requirements .flex-box .box.box-2 img {
    bottom: -30px;
    left: 88px;
}

.setup-requirements .flex-box .box.box-3 img {
    top: 25px;
    left: -40px;
    height: 100px;
}

.setup-requirements .flex-box .box.box-5 img {
    bottom: -30px;
    left: -40px;
}

.setup-requirements .flex-box .box.box-4 img.tool-default {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-4 img.tool-img {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.setup-requirements .flex-box .box.box-4 img.tool-img {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.setup-requirements .flex-box .box.box-4 img.tool-default {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-1:hover~.box-4 .tool-1 {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-2:hover~.box-4 .tool-2 {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-3:hover~.box-4 .tool-3 {
    opacity: 1;
}

.setup-requirements .flex-box .box.box-5:hover~.box-4 .tool-5 {
    opacity: 1;
}


.setup-requirements .flex-box .box.box-5 {
    top: 40%;
    right: 0;
}

.setup-requirements .flex-box .box {
    display: inline-block;
    position: absolute;
    max-width: 300px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.setup-requirements .flex-box .box .title {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
}

.setup-requirements .flex-box .box p {
    font-size: 20px;
}
.gallery-banner {
    background: #003342;
    padding: 64px 0;
    text-align: center;
    color: #fff;
}
.snap-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Outfit';
    margin-bottom: 10px;
}
.gallery-banner h2 {
    text-transform: uppercase;
    font-size: 50px;
    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;
    margin: 0 auto;
    max-width: 450px;
}
.gallery-banner h2 span 
{
    color: #FF6919;
}
.gallery-images {
    padding: 50px 0;
}
.privacy-policy-content {
    padding: 50px 0;
    color: #fff;
}
.privacy-policy-content b, .privacy-policy-content strong {
    font-weight: 500;
}
.privacy-policy-content a 
{
    color: #fff;
}
.privacy-policy-content h3.wp-block-heading:first-child 
{
    margin-top: 0;
}
.privacy-policy-content h3.wp-block-heading {
    margin-top: 40px;
}
span.date-badge {
    background: #fff;
    color: #242424;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
}
.date-badges
{
    gap: 16px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}


section.error-404 {
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
.error-404  a.btn {
    border-color: white;
    color: #fff;
}

 
@media (max-width: 1199px) {
    .setup-requirements .flex-box {
        min-height: 360px;
    }

    .setup-requirements .flex-box .box.box-1 {
        left: 10%;
    }

    .setup-requirements .flex-box .box.box-2 {
        right: 25%;
        max-width: 200px;
    }

    .setup-requirements .flex-box .box.box-3 {
        bottom: 20%;
        max-width: 260px;
    }

    .setup-requirements .flex-box .box.box-4 {
        left: 30%;
        max-width: 42%;
        min-height: 260px;
    }

    .setup-requirements .flex-box .box.box-5 {
        top: 40%;
        max-width: 250px;
    }
}

@media (min-width: 992px) {
    .setup-requirements .flex-box .box span {
        display: none;
    }
}


@media (max-width: 991px) {

    .setup-requirements .flex-box .box img {
        display: none;
    }

    .setup-requirements .flex-box {
        min-height: auto;
        display: grid;
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }

    .setup-requirements .flex-box .box {
        position: unset;
        max-width: 100% !important;
    }

    .setup-requirements .flex-box .box.box-4 {
        display: none;
    }


    .setup-requirements .flex-box .box span {
        display: block;
        position: absolute;
        left: 0;
        font-size: 32px;
        color: #056886;
        font-weight: 700;
    }

    .setup-requirements .flex-box .box {
        padding-left: 60px;
        position: relative;
        left: 0 !important;
        top: 0 !important;
    }

    .setup-requirements .flex-box .box p {
        font-size: 16px;
    }
}


@media (max-width: 480px) {
    .setup-requirements .flex-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-gallery {
    padding-top: 120px;
}

.experience-output .box {
    border-radius: 14px;
    box-shadow: 6px 6px 0px 0px #242424;
    border: 2px solid #242424;
    background: #fff;
    text-align: center;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.experience-output .box .top {
    background: #e7e7e7;
    padding: 20px;
    position: relative;
}

.experience-output .box .top img {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
}

.experience-output .box .top p {
    max-width: 354px;
    margin: 0 auto;
    display: block;
}

.experience-output .box .top .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}

.experience-output .box .bottom {
    margin-top: auto;
    padding: 0;
}

.experience-output .col-lg-6:nth-child(3) .box .bottom img {
    width: 100%;
}

.experience-output .col-lg-6:nth-child(3) .box .bottom {
    padding: 45px 0 25px;
}

.experience-output .col-lg-6:first-child .box {
    background: #FFF8DC;
}

.experience-output .col-lg-6:first-child .box .top {
    background: #EFE5BB;
}

.experience-output .col-lg-6:nth-child(2) .box {
    background: #C3C0FF;
}

.experience-output .col-lg-6:nth-child(2) .box .top {
    background: #B0ACF9;
}

.experience-output .col-lg-6:nth-child(3) .box {
    background: #F8D0F9;
}

.experience-output .col-lg-6:nth-child(3) .box .top {
    background: #EAB3EB;
}

.experience-output .col-lg-6:last-child .box {
    background: #FFBFAF;
}

.experience-output .col-lg-6:last-child .box .top {
    background: #FAA590;
}
.contact-banner
{
    background-color: #003342;
}
.talk-to-us {
    padding: 40px 0;
}
.talk-box {
    padding: 32px;
    border: 4px solid #000000;
    border-radius: 16px;
    box-shadow: 4px 4px 0px 0px #000000;
    background-color: #fff; 
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
    color: #242424;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease-in-out 0s;
} 
.talk-box:hover 
{
    box-shadow: 1px 1px 0px 0px #000000;
}
.talk-box img {
    max-width: 56px;
}
.talk-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../image/Pattern.png"); 
    background-position: center;
    opacity: 0.05; /* Adjust opacity */
    z-index: -1;
}
.contact-section {
    padding: 80px 0;
    background: #003342; 
}
span.req-tag {
    border: 1px solid #242424;
    background: #FF653F;
    padding: 2px 16px;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit';
}
.contact-form {
    box-shadow: 4px 4px 0px 0px #000000;
    border: 4px solid #000000;
    background: #fff;
    padding: 56px;
    position: relative;
    border-radius: 16px;
    z-index: 1;
}
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../image/Pattern.png"); 
    background-position: center;
    opacity: 0.05; /* Adjust opacity */
    z-index: -1;
}
.snapx-form-row label {
    font-size: 14px;
    color: #242424;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 6px;
}
.snapx-form-row input , .snapx-form-row select {
    width: 100%;
    height: 48px;
    border: 2px solid var(--Nero, #242424);
    padding: 0 16px;
    border-radius: 4px;
    color: #797775;
}
.snapx-form-row select
{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../image/arrow_back_ios.svg");
    background-repeat: no-repeat;
    background-position: right 15px center; 
}
.snapx-form-row textarea 
{
    width: 100%;
    border: 2px solid var(--Nero, #242424);
    padding: 16px;
    border-radius: 4px;
    color: #797775;
    height: 150px;
}
.snap-btn input {
    border: 2px solid #242424;
    height: 48px;
    border-radius: 30px;
    background: #FF6919;
    padding: 6px 50px 6px 16px;
    box-shadow: 2px 2px 0px 0px #242424;
    color: #242424;
    font-weight: 600;
    font-size: 16px;
    background-image: url("../image/send.svg"); 
    background-repeat: no-repeat;
    background-position: 96%;
    transition: all 0.3s ease-in-out 0s;
}
.snap-btn input:hover {
    background-position: 6%;
    padding: 6px 16px 6px 50px;
    box-shadow: 1px 1px 0px 0px #242424;
}
.snap-btn p {
    margin: 0;
}

@media screen and (max-width: 1200px)
{
    .contact-form
    {
        padding: 25px;
    }
    .snapx-form-row label
    {
        letter-spacing: 1px;
    }
    .talk-box
    {
        padding: 20px;
        gap: 16px;
    }
    .contact-section
    {
        padding: 50px 0;
    }
}
@media (min-width: 768px) {
  .position-md-sticky {
    position: sticky;
  }
  .snap-btn {
        margin-top: 20px;
    }
}
