.page-title {
    font-size: 30px;
    color: #789ec3;
}

body {
    /* background-image: url("/images/bg.png"); */
    background-color: #789ec3 !important;
}

.navbar-container {
    padding: 10px 10%;
}

.navbar {
    background: rgba(120, 158, 195, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 !important;
}

.nav-logo {
    height: 70px;
    cursor: pointer;
    transition: 0.5s;
}

.nav-logo:hover {
    transform: scale(1.2);
}

.nav-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 1px #fff, 0 0 2.5px #fff, 0 0 5px #fff, 0 0 7.5px #fff
}

.nav-start-project {
    background: linear-gradient(90deg, #8eb4da 0%, #97bee4 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
}



.navbar-container {
    overflow: hidden;
}

.nav-logo,
.nav-title,
.nav-start-project {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideIn 0.5s forwards;
}

.nav-logo {
    animation-delay: 0.2s;
}

.nav-title {
    animation-delay: 0.5s;
}

.nav-start-project {
    animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ==========home=========== */
.main-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 13px 0;
    cursor: pointer;
    width: 800px;
}

/* Top & Bottom gradient borders using pseudo-elements */
.main-title::before,
.main-title::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    /* border thickness */
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.main-title::before {
    top: 0;
}

/* top border */
.main-title::after {
    bottom: 0;
}

/* bottom border */

.main-title h4 {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 1.4vw;
}

.description {
    font-size: 0.9vw;
}

.footer-glass-container {
    /* padding: 0 10%; */
    position: relative;
    /* top: -30px !important; */
    width: 100vw;
    overflow-x: hidden;
}

.body-wrapper {
    min-height: 80vh
}

.footer-glass {
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 5px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    /* important for pseudo-elements */
    padding: 30px 10% 0 10%;
    max-width: 100vw;
}

.footer-glass h3 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.footer-glass1 {
    background: linear-gradient(180deg, rgba(163, 185, 252, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
    /* backdrop-filter: blur(10px); */
    /* border-top: 1px solid rgba(255,255,255,0.2); */
}

/* =============================== */
.my-carosel {
    margin: 30px auto;
    width: 100%;
    display: flex;
    overflow: hidden;
    gap: 3em;
}

.group {
    display: flex;
    gap: 3em;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.card1 {}

.card1 img {
    height: 6vh;
    width: auto;
    display: block;
    background: none;
    cursor: pointer;
    transition: 0.5s;
}

.card1 img:hover {
    /* height: 60px; */
}

/* animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* hide scrollbar */
.my-carosel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.my-carosel::-webkit-scrollbar {
    display: none;
}


/* =============================== */
.breadcrumb-border {
    width: 80px;
    height: 20px;
    position: relative;
    top: -5px;
}

.rotate {
    transform: rotate(180deg);
    top: -7px;
}

.breadcrumb a,
.breadcrumb span {
    color: #5c67ac;
}

.breadcrumb-title {
    font-weight: bold;
    color: #2F409F;
    text-align: center;
}
























/* =====================Strategy================ */
.strategy-title {
    font-size: 35px;
    color: #f2f2f2;
}

.strategy-sub-title {
    font-size: 25px;
    color: #f2f2f2;
}

.funnel-btn {
    background: linear-gradient(to right, #789ec3, #a2c6eb);
    border: none;
    transition: transform 0.5s ease !important;
}

.funnel-btn:hover {
    transform: scale(1.1);
    transform: translateY(-10px);
}

.strategy-btn {
    background: transparent !important;
    border: 1px solid #a2c6eb !important;
    color: #f2f2f2 !important;
    transition: transform 0.5s ease !important;
}

.strategy-btn:hover {
    transform: scale(1.1);
    transform: translateY(-10px);
}


.divider-glass {
    background: rgba(255, 255, 255, 0.5);
    /* border-radius: 5px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    /* important for pseudo-elements */
    padding: 30px 10%;
}

/* ======================================= */
.hierarchy-wrapper {
    width: 100%;
    padding: 2rem 1rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-item {
    position: relative;
    text-align: center;
    flex: 1;
}


.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.step-circle.active {
    background: linear-gradient(135deg, #789ec3, #7ea7cf);
    box-shadow: 0 0 20px #789ec3;
}

.step-content {
    margin-top: 1rem;
    transition: 1s !important;
    cursor: pointer;
    /* background-color: #fff !important; */
}

.step-content:hover {
    transform: translateY(-10px);
}

.step-desc-box1 {
    width: 96%;
    margin-left: 2%;
    padding: 12px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.7) !important;
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(1px); */
}

.step-line {
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.line-active {
    background: linear-gradient(90deg, #2DACF7, #1B8ED1);
}

#fixedContent.active {
    /* position: fixed; */
    top: -50px !important;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width:768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        display: none;
    }

    .step-item {
        margin-bottom: 2rem;
    }

    #fixedContent.active {
        position: relative !important;
        /* top: -50px !important;
    left: 0;
    width: 100%;
    z-index: 1; */
    }
}



.fixed-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url('/business.jpg');
    background-size: cover;
    background-attachment: fixed;
    /* creates the parallax effect */
    background-position: center;
    padding: 50px 100px;
    border-radius: 20px;
}

.borde-right {
    border-right: 1px !important;
    border-color: #fff !important;
}

.main-val {
    font-size: 50px;
    font-weight: bolder;
}

.circle1 {
    height: 20px;
    width: 20px;
    background-color: #789ec3;
    border-radius: 50%;
}

.development-title {
    font-size: 50px;
    color: #fff;
}

.herobg {
    position: absolute;
    height: 100vh;
    width: calc(100vw - 12px);
    top: 0;
    z-index: -1;
    opacity: 0.25;
}

.boxes img {
    height: 50px;
    margin-bottom: 5px;
}

.boxes h5 {
    color: #fff;
    font-size: 15px;
}

.boxes {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    /* allow pseudo-element outside */
    padding: 5px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* triangle pointer */
.boxes::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

/* boxes on the left pointing right */
.col-md-12>.d-block:first-child .boxes::after {
    left: 100%;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.1);
}

/* boxes on the right pointing left */
.col-md-12>.d-block:last-child .boxes::after {
    right: 100%;
    border-width: 10px 15px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

/* optional: small floating animation for boxes */
@keyframes floatBox {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.boxes {
    /* animation: floatBox 3s ease-in-out infinite; */
}



/* ================ */
.box1 {
    background: linear-gradient(105deg, #3051c2, #6d8feb);
}

.box2 {
    background: linear-gradient(105deg, #3c80f5, #0e5bb9);
}

.box3 {
    background: linear-gradient(105deg, #8647b2, #2347da);
}

.box4 {
    background: linear-gradient(105deg, #a95ec4, #683794, #985eca);
}

.box5 {
    background: linear-gradient(105deg, #eb87cb, #955780, #835cdf);
}

.box6 {
    background: linear-gradient(105deg, #322e68, #6a6ee6);
}











/* ========================== */

.timeline-wrapper {
    width: 90%;
    margin: auto;
}

.timeline-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.timeline-card {
    background: #d9dce2;
    padding: 25px 10px;
    border-radius: 20px;
    text-align: center;
    width: 180px;
    position: relative;
}



.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto;
    margin-top: -55px;
}

/* icon colors */
.purple {
    background: #8c8cf5;
}

.blue {
    background: #7cd1d6;
}

.green {
    background: #a6db5f;
}

.yellow {
    background: #ffd83b;
}

.orange {
    background: #ff9c63;
}

.pink {
    background: #ff9ed1;
}

.timeline-line {
    margin-top: 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-line::before {
    content: "";
    position: absolute;
    height: 6px;
    background: linear-gradient(90deg, #8c8cf5, #7cd1d6, #a6db5f, #ffd83b, #ff9c63, #ff9ed1);
    width: 100%;
    top: 8px;
    left: 0;
    z-index: -1;
}

.timeline-line span {
    background: white;
    border-radius: 50%;
    padding: 8px 14px;
    font-weight: bold;
    margin-top: -10px;
}

.timeline-card:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #8C8CF5 transparent transparent transparent;
}

.timeline-card:nth-child(1) {
    background: linear-gradient(105deg, #5656a3, #7070ce, #8C8CF5);
}

/* ===================== */
.timeline-card:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #7CD1D6 transparent transparent transparent;
}

.timeline-card:nth-child(2) {
    background: linear-gradient(10deg, #9eeaee, #6d8feb);
}

/* ========================= */
.timeline-card:nth-child(3)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #A6DB5F transparent transparent transparent;
}

.timeline-card:nth-child(3) {
    background: linear-gradient(105deg, #a5db5fe3, #618039);
}

/* ======================== */
.timeline-card:nth-child(4)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #FED83B transparent transparent transparent;
}

.timeline-card:nth-child(4) {
    background: linear-gradient(105deg, #fed73bb2, #b6a668, #c9ab35);
}

/* ======================== */
.timeline-card:nth-child(5)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #EE9A62 transparent transparent transparent;
}

.timeline-card:nth-child(5) {
    background: linear-gradient(105deg, #80583e, #EE9A62);
}

/* ======================== */
.timeline-card:nth-child(6)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #6d8feb transparent transparent transparent;
}

.timeline-card:nth-child(6) {
    background: linear-gradient(105deg, #3051c2, #6d8feb);
}


.timeline-line {
    margin: 90px 50px !important;
}


/* ================================== */
.project-card {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.project-card-image {
    height: 200px;
    position: relative;
}

.project-card-image h5 {
    position: absolute;
    bottom: -4%;
    left: 0px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.28);
    width: 100%;
    padding: 5px 10px;
}

.project-title {
    margin: 0;
    padding: 0;
}

.project-glass {
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 5px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid #e4e3e3;
    position: relative;
    overflow: hidden;
    /* important for pseudo-elements */
    padding: 3px 20px;
    border-radius: 50px;
    font-size: 12px;
}

.btn-project {
    width: 100%;
    margin-top: 10px;
    border: none;
    background: linear-gradient(105deg, #3051c2, #6d8feb);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
}

/* =================================================== */
.robortImg1 {
    width: 30vw;
    opacity: 0;
    z-index: 9 !important;
}

.robortImg {
    width: 30vw;
    position: absolute;
    z-index: 9 !important;
    /* top: 0; */
}

.ai-project-list {
    min-height: 90vh;
    /* background: #fff; */
    height: 90vh;
    position: relative;
}

.ai-bg {
    height: 100%;
    width: 100%;
    /* opacity: 0.1; */
}

.ai-list-container {
    width: 60vw;
    position: absolute;
    left: 40vw;
    top: 0;
    padding: 5% 10vh;
}

.ai-list-container h1 {
    color: #111;
    font-size: 50px;
    width: 80%;
}

.glass-card-marketing {
    position: relative;
}

.glass-card-marketing img {
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
}

.glass-card1 {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid #e4e3e3;
    position: relative;
    overflow: hidden;
    /* important for pseudo-elements */
    padding: 3px 20px;
    border-radius: 20px;
    font-size: 12px;
}

.glass-card1 i {
    font-size: 20px;
}

.client-profile {
    height: 10vh !important;
    width: 10vh !important;
    position: absolute;
    bottom: -4vh;
    right: 15vh;
}

#fixedContent1 {
    position: sticky !important;
    top: 0 !important;
}

.my-radius {
    border-bottom-right-radius: 100% 350px;
    border-bottom-left-radius: 100% 350px;
}

@media (max-width:1236px) {
    .project-card-image {
        height: 170px;
    }
}

.menus-desktop {
    display: flex;
}

.menus-mobile1 {
    display: none;
}

.mobileNav {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* .mobileNav:nth-child(1),.mobileNav:nth-child(4){
    height: 110px !important;
}
.mobileNav:nth-child(2),.mobileNav:nth-child(3){
    height: 150px !important;
} */

.main-wrapper {
    margin-bottom: 0;
}

.bottom-nav-container {
    display: none;
}







.nav-item {

    text-align: center;
    color: #c9c8c8;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    padding: 6px 0;

    position: relative;
    transition: all 0.25s ease;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    transition: 0.25s;
}

/* Active Tab */
.nav-item.active {
    color: #fff;
    text-decoration: none !important;
}

.nav-item.active i {
    transform: scale(1.2);
}



.nav-item.active::after {
    width: 60%;
}

/* Tap effect */
.nav-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.bottom-nav-container,
.mobile-action-buttons {
    display: none !important;
}

.main-wrapper {
    /* min-height: 90vh !important; */
}

.main-content-wrapper {
    padding: 0px 10%;
}

.production-title {
    font-size: 70px;
}

.production-sub-title {
    width: 100vw;
    position: absolute;
    left: 0;
    z-index: 999;
    top: calc(100vh - 200px);
}

.production-category-list {
    margin-top: -50px;
    height: 550px;
    width: 100vw;
    background-color: #f2f2f2;
}

.category-card {
    position: absolute;
    left: 0;
    width: 100vw;
    top: -100px;
    padding: 0 10vw
}

.ai-hero-print {
    height: 80vh;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    padding-left: 10%;
}

.bubbles {
    position: relative !important;
}

.bubbles {
    position: relative !important;
    right: 20%;
    /* z-index: -1;
        width: 700px;
        margin-left: -120px;
        opacity: 0.1; */
}

.filter-tabs {
    /* background: rgba(255, 255, 255, 0.05); */
    /* padding: 0 12px; */
    backdrop-filter: blur(12px);
    width: fit-content;
    margin: auto;
    border-bottom: 1px solid #f2f2f2;
}

.tab-btn {
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #cbd5e1 !important;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 16px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    /* transform: translateY(-2px); */
}

.tab-btn.active {
    color: white !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 2px solid #fff !important;
}



@media (max-width: 1250px) {
    .production-title {
        font-size: 55px !important;
    }

    .production-description {
        font-size: 20px !important;
        position: relative;
        top: -40px !important;
    }

    .production-sub-title {
        width: 100vw;
        position: absolute;
        left: 0;
        z-index: 999;
        top: calc(100vh - 180px);
    }

    .bubbles {
        position: relative !important;
        right: 20%;
        /* z-index: -1;
        width: 700px;
        margin-left: -120px;
        opacity: 0.1; */
    }
}

@media (max-width: 1060px) {
    .production-title {
        font-size: 45px !important;
    }

    .production-description {
        font-size: 20px !important;
        position: relative;
        top: -40px !important;
    }

    .production-sub-title {
        width: 100vw;
        position: absolute;
        left: 0;
        z-index: 999;
        top: calc(100vh - 150px);
    }

    .bubbles {
        position: absolute !important;
        top: 20%;
        z-index: -1;
        width: 700px;
        margin-left: -120px;
        opacity: 0.1;
    }

    .glass-card-marketing {
        position: absolute;
        top: 50px;
        z-index: -1;
        opacity: 0.1;
    }
}

@media (max-width: 930px) {
    .production-title {
        font-size: 38px !important;
    }

    .production-description {
        font-size: 15px !important;
        position: relative;
        top: -40px !important;
    }

    .production-sub-title {
        width: 100vw;
        position: absolute;
        left: 0;
        z-index: 999;
        top: calc(100vh - 130px);
    }

}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    .menus-desktop,
    .nav-start-project,
    .team-btn,
    .breadcrumb-title,
    .strategy-sub-title {
        display: none !important;
    }

    .menus-mobile1 {
        display: block !important;
        /* padding: 10px !important; */
    }

    .main-title h1 {
        font-size: 15px !important;
    }

    .description {
        font-size: 7px !important;
    }

    .navbar {
        border: none !important;
    }

    .navbar img {
        width: 150%;
        margin-left: -25%;
    }

    .title-description {
        font-size: 9px;
    }

    .footer-glass h3 {
        font-size: 17px;
    }

    .main-wrapper {
        margin-bottom: 0px;
    }



    .body-wrapper {
        min-height: 80vh;
    }

    .fab-container,
    .whatsapp-float {
        bottom: 5px !important;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        transform: scale(0.7);

    }

    .fab-container {
        left: -10px !important;
    }

    .whatsapp-float {
        right: 0px !important;
    }

    .mobile-action-buttons {
        display: flex;
        gap: 10px;
        padding: 10px;
    }

    /* Base button */
    .btn-mbl {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        padding: 12px 10px;
        border-radius: 12px;

        font-size: 14px;
        font-weight: 500;

        text-decoration: none;
        transition: all 0.25s ease;
    }

    /* Primary (Collaboration) */
    .btn-primary-mbl {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Secondary (Team) */
    .btn-secondary-mbl {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Icon styling */
    .btn-mbl i {
        font-size: 16px;
    }

    .btn-mbl img {
        width: 18px;
        height: 18px;
    }

    /* Hover / tap */
    .btn-mbl:active {
        transform: scale(0.97);
    }

    .btn-mbl:hover {
        opacity: 0.9;
    }

    .main-content-wrapper {
        padding: 0px 1%;
    }

    .strategy-btns a {
        padding: 10px !important;
        /* height: 0px !important; */
    }

    #fixedContent1 {
        position: relative !important;
        /* top: 0 !important; */
    }

    .production-title {
        font-size: 45px;
    }

    .production-sub-title {
        position: relative !important;
        top: 0 !important;
    }

    .production-category-list {
        height: auto !important;
        margin-top: 0px !important;
        background-color: #f2f2f2 !important;
        padding-top: 40px !important;
        padding-bottom: 200px !important;
        /* display: none !important; */
    }

    .category-card {
        position: relative !important;
        top: 0px !important;
    }

    .bubbles {
        position: absolute !important;
        top: 20%;
        z-index: -1;
        width: 700px;
        margin-left: -120px;
        opacity: 0.1;
    }

}

@media (max-width: 650px) {

    .production-title {
        font-size: 35px;
    }

    .bubbles {
        width: 600px;
        /* margin-left: -120px; */
    }

    .print-title {
        font-size: 40px;
    }

    .print-subtitle {
        font-size: 18px;
        color: #fff;
    }

}

@media (max-width: 550px) {


    .bubbles {
        width: 600px;
        margin-left: -220px;
    }

    .print-title {
        font-size: 40px;
    }

    .print-subtitle {
        font-size: 18px;
        color: #fff;
    }

}

@media (max-width: 450px) {

    .body-wrapper {
        min-height: 73vh;
    }

    .strategy-btns a {
        padding: 2px 10px !important;
        /* height: 0px !important; */
    }

    .bubbles {
        width: 500px;
        margin-left: -170px;
    }

    .print-title {
        font-size: 40px;
    }

    .print-subtitle {
        font-size: 18px;
        color: #fff;
    }


}

@media (max-width: 380px) {

    .menus-mobile1 {
        top: -30px !important;
    }

    .body-wrapper {
        min-height: 75vh;
    }



    .print-title {
        font-size: 35px;
    }

    .print-subtitle {
        font-size: 15px;
        color: #fff;
    }

    .marketing-title {
        font-size: 30px;
        position: relative;
        /* top: 150px; */
    }

}
