:root {
    --primaryBlue: #141459;
    --secondaryBlue: #00CEC3;
    --greyDark: #646464;
    --greyMedium: #EBEBEB;
    --greyLight: #f0f0f0;
}

/**--- ELEMENT STYLES ---**/

body {
    font-family: "Montserrat", sans-serif;
}

b {
    font-weight: 600;
}

p {
    font-weight: 300;
}

.hide {
    display: none;
}

li {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-inline-start: 2px !important;
}

/**--- BACKGROUND COLOURS ---**/

.bg-PBlue {
    background: var(--primaryBlue);
}

.bg-SBlue {
    background: var(--secondaryBlue);
}

.bg-White {
    background: #FFF;
}

/**--- BORDERS ---**/

.bdr-left {
    border-left-width: 1px;
    border-left-style: solid;
}

.bdr-top {
    border-top-width: 1px;
    border-top-style: solid;
}

.bdr-right {
    border-right-width: 1px;
    border-right-style: solid;
}

.bdr-bottom {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.bdr-PBlue {
    border-color: var(--primaryBlue); 
}

.bdr-SBlue {
    border-color: var(--secondaryBlue);
}

.bdr-MGrey {
    border-color: var(--greyMedium);
}

.bdr-White {
    border-color: #FFF; 
}

.bdr-AllPBlue {
    border: 1px solid var(--primaryBlue); 
}

.bdr-AllSBlue {
    border: 1px solid var(--secondaryBlue); 
}

.bdr-AllWhite {
    border: 1px solid #FFF; 
}

/**--- FONTS ---**/

.txt-Heavy {
    font-weight: 600;
}

.txt-Medium {
    font-weight: 300;
}

.txt-Light {
    font-weight: 100;
}

.txt-PBlue {
    color: var(--primaryBlue);
}

.txt-SBlue {
    color: var(--secondaryBlue);
}

.txt-White {
    color: #FFF;
}

.txt-DGrey {
    color: var(--greyDark);
}

.txt-LGrey {
    color: var(--greyMedium);
}

.head1 {
    font-size: 1.2em;
}

.head2 {
    font-size: 1.5em;
}

.head3 {
    font-size: 2em;
}

.head4 {
    font-size: 2.5em;
}

.head5 {
    font-size: 3em;
}

/**--- STATUS ---**/

.status {
    padding: 0.2em 0.5em;
    border-radius: 3px;
    color: #FFF;
}

.active {
    background: #25d366;
}

.complete {
    background: #838383;
}

/**--- BUTTONS ---**/

.btn-Tsap {
    background: #42b276;
    color: #FFF;
    border-radius: 5px;
}

.btn-Tsap:hover {
    background: var(--secondaryBlue);
    color: #FFF;
    cursor: pointer;
}

.btn-PBlue {
    background: var(--primaryBlue);
    color: #FFF;
    border-radius: 5px;
}

.btn-PBlue:hover {
    background: var(--secondaryBlue);
    color: #FFF;
    cursor: pointer;
}

.btn-SBlue {
    background: var(--secondaryBlue);
    color: var(--primaryBlue);
    border-radius: 5px;
}

.btn-White {
    background: #FFF;
    color: var(--primaryBlue);
    border-radius: 5px;
}

/**--- MODALS ---**/

.modal {
    backdrop-filter: blur(5px);
    background: rgba(20, 20, 89, 0.5)!important;
}

.modal-content {
    border: 1px solid var(--primaryBlue);
    border-radius: 10px;
}

.Failure {
    border: 1px solid #980000;
    border-radius: 10px;
    background: #fff9f9;
    color: #980000!important;
}

/**--- AMINATIONS ---**/

.scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
.scroll-fade-up.delay1.animate {
    transition-delay: 200ms;
}

.scroll-fade-up.delay2.animate {
    transition-delay: 400ms;
}

.scroll-fade-up.delay3.animate {
    transition-delay: 600ms;
}

/* Spline Animation */

.spline-container {
    width: 100%;
    height: 460px;
    overflow: hidden;
    position: absolute;
    margin-top: 7em;
}

.spline-wave {
    width: 200%;
    height: 100%;
    position: absolute;
    animation: slideLeft 30s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Loading Animation */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141459;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #0e0e48;
  border-right-color: var(--secondaryBlue);
  animation: l2 1s infinite linear;
}

@keyframes l2 {to{transform: rotate(1turn)}}

/**---CAROUSEL ---*/

.testimonial-item { flex: 0 0 100%; }
.dot { 
    display: inline-block; 
    width: 10px; 
    height: 10px; 
    background: #ccc; 
    border-radius: 50%; 
    margin: 0 5px; 
    cursor: pointer; 
}
.dot.active { background: var(--secondaryBlue); }

.testimonial-carousel {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.dot {
    background: var(--greyMedium);
}

/**--- CUSTOM CLASSES ---**/

/* SECTION - NAVBAR */

.navbar {
    padding: 0px;
}

.nav-item {
    padding: 0em 1em;
}

.nav-link {
    padding: 0.75em;
}

.navActive {
    color: #FFF !important;
    border-bottom: 2px solid var(--secondaryBlue);
}

.navDivider {
    border-bottom: 1px solid #FFF;
}

/* SECTION - WELCOME */

.welcCont {
    position: relative;
    overflow: visible;
    min-height: 450px;
    margin-top: 49px;
    margin-bottom: 100px;
}

.welcCont::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(media/images/webp/splashImage.webp);
    background-size: cover;
    background-position: center;
    background-color: var(--primaryBlue);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 40%);
    z-index: -1;
}

.welcText {
    margin-top: 3em;
    border-left: 1px solid var(--secondaryBlue);
    color: #FFF;
}

.welcImage {
    
}

.welcImage img {
    width: 130%;
    margin-top: 0px;
    bottom: 0;
}

.salesItem {
    padding: 20px 20px;
    height: 100%;
    border: 1px solid var(--primaryBlue);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px 0px, rgba(0, 0, 0, 0.12) 0px 0px 0px 0.1px;
}

.salesItem:hover {
    cursor: pointer;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 24px 0px, rgba(0, 0, 0, 0.15) 0px 0px 0px 0.1px; !important;
}

.salesItem:hover > .itemIcon{
    color: var(--secondaryBlue);
}


.sItemActive {
    box-shadow: rgba(0, 206, 195, 0.3) 0px 0px 15px 0px, rgba(0, 206, 195, 0.3) 0px 0px 0px 0.1px !important;
}

.itemIcon {
    height: 40px;
    width: auto;
    margin-right: 15px;
    margin-left: 5px;
    /*background: var(--primaryBlue);*/
    font-size: 1.5em;
    text-align: center;
    border-radius: 5px;
}

.quote {
    text-align: center;
    margin: 4em 0em;
}

/* SECTION LAYOUT */



.screenshot {
    
}

.screenshot img {
    width: 750px;
    margin-bottom: -200px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 24px 0px, rgba(0, 0, 0, 0.25) 0px 0px 0px 0.1px; !important;
}

.imgGrad {
    position: relative;
}

.imgGrad::after {
    content: "";
    position: absolute;
    bottom: 10;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    height: 150px;
    width: 750px;
}

.cnt-1 {
    position: relative;
    overflow: visible;
    min-height: 650px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    background-color: var(--primaryBlue);
    clip-path: polygon(0 0, 100% 10%, 100% 80%, 0% 100%);
}

.cnt-2 {
    position: relative;
    overflow: visible;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.cnt-3 {
    position: relative;
    overflow: visible;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--primaryBlue);
    clip-path: polygon(0 0, 100% 15%, 100% 80%, 0% 90%);
}

.cnt-4 {
    position: relative;
    margin-top: 80px;
    padding-bottom: 8em;
    display: flex;
    align-items: center;
    background-color: var(--primaryBlue);
    clip-path: polygon(0 0, 100% 5%, 100% 93%, 0% 100%);
}

/* SECTION - ABOUT */

.aboutCont {
    position: relative;
    overflow: visible;
    min-height: 550px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    background-color: var(--primaryBlue);
    clip-path: polygon(0 0, 100% 10%, 100% 80%, 0% 100%);
}

.profileIcon img{
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.salesManImgMob {
    display: none;
}

.salesManImg {
    right: 0;
}

.salesManImg img {
    width: 750px;
    margin-bottom: -12em;
}



/* SECTION - PROJECTS */

.testimonial {
    padding: 20px 20px 20px 20px;
    margin: 10px;
    max-width: 60%;
    border-radius: 10px;
    border: 1px solid var(--greyMedium);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px 0px, rgba(0, 0, 0, 0.12) 0px 0px 0px 0.1px;
}

.testQuote {
    font-size: 1.1em;
    font-weight: 400;
    padding: 15px 18px; 
    background: #e5ecf7;
    border-radius: 5px;
    margin-top: 20px;
    color: var(--primaryBlue);
}

.testQuote::before {
    content: "";
    position: absolute;
    margin-top: -22px;
    margin-left: 22px;
    transform: rotate(45deg);
    height: 15px;
    width: 15px;
    background: #e5ecf7;
}

.projects {
    display: flex;
    margin-bottom: 5em;
    align-content: center;
    justify-content: center;
}

.proContainer {
    display: flex;
    width: 90%;
    padding: 0.9em;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px 0px, rgba(0, 0, 0, 0.12) 0px 0px 0px 0.1px;
}

.proInfo {
    position: relative;
    flex: 0 0 30%;
}

.proInfo table {
    width: 100%;
}

.proInfo tr {
    padding: 1.5em;
    font-size: 0.8em;
    white-space: nowrap;
}

.proInfo td {
    padding: 0.5em 0.6em;
}

.proImage {
    margin-left: 1em;
}

.proImage img {
    width: 100%;
    border-radius: 5px;
}

/* SECTION - PAYMENT */

.deskHide {
    display: none!important;
}

.payments-overlay {
    width: 100%;
    margin: 5em;
}

.graphBox {
    position: relative;
    height: 548px;
    margin: 0em 0em 0em 0em;
    padding-top: 15px; 
    background: #FFF;
    width: 100%;
    border-radius: 10px 0px 0px 10px;
    --rows: 8;
}

.graphBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    padding-top: 40px;
    background-image: 
        linear-gradient(rgb(214, 214, 214) 1px, transparent 1px);
    background-size: 100% calc(100% / var(--rows));
    pointer-events: none;
}

.feeStructure {
    display: flex;
    margin-top: 2em;
}

.payBox {
    position: relative;
    background: #FFF;
    z-index: 300;
    width: 50%;
    margin-top: -1em;
    margin-Bottom: -1em;
    border-radius: 10px 10px 10px 10px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.20);
}

.priceBox {
    background: #22ce92;
    border-radius: 5px;
    padding: 15px 20px;
}

.subsBox {
    background: #FF7157;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 1.6em;
    color: #FFF;
}

.feesBox {
    font-size: 1.6em;
    line-height: 1.1em;
    color: #FFF;
}

.proSalVal {
    font-size: 1.8em;
    line-height: 1.18em;
}

/* SECTION - CONTACT */

.contactDetails {
    display: flex;
    flex-direction: column;
    text-align: right;
    border-right: 1px solid var(--primaryBlue);
    padding-right: 3em;
}

.contactForm {
    padding-left: 3em;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #1bbf87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: #128c7e;
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: translateX(10px);
    animation: slideIn 0.5s ease forwards 2s, fadeOut 0.5s ease forwards 8s;
    border: 1px solid #25d366;
}

.bubble-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #25d366;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.bubble-arrow::after {
    content: '';
    position: absolute;
    right: 1px;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid #25d366;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(10px);
    }
}

/* Show bubble on hover */
.whatsapp-float:hover .whatsapp-bubble {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
}

/* SECTION - SITEMAP */

.sitemap-footer {
    font-size: 0.8em;
    margin-top: 5em;
    padding: 5em 0em 5em 0em;
    background: var(--primaryBlue);
    color: #FFF;
}

.sitemap-section li {
    padding: 0em 0em 0.6em 0.8em;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sitemap-section li a{
    color: #FFF!important;
    font-weight: 200;
}


/* Mobile responsive */

@media (max-width: 1200px) {
    
    /**--- FONTS ---**/

    .head1 {
        font-size: 1.2em;
    }

    .head2 {
        font-size: 1.2em;
    }

    .head3 {
        font-size: 1.5em;
    }

    .head4 {
        font-size: 1.5em;
    }

    .head5 {
        font-size: 3em;
    }
    
    .mobHide {
        display: none!important;
    }
    
    .deskHide {
        display: block!important;
    }
    
    .payBox {
        
    }
    
    .welcImage {
        
    }
    
    .feeStructure {
        display: flex;
        margin-top: 2em;
        justify-content: center;
    }
    
    .welcText {
        margin-top: 2em;
    }
    
    .welcImage img {
        width: 140%;
        bottom: 0;
    }
    
    .welcCont::before {
        background-image: url(media/images/webp/splashImage_mob.webp);
        background-size: contain;
        background-position: top;
        clip-path: polygon(0 0, 100% 0, 100% 32%, 0% 38%);
    }
    
}


@media (max-width: 992px) {
    
    
    /**--- GENERAL ---**/
    
    .welcCont {
        margin-top: 39px;
    }
    
    .welcCont::before {
        background-image: url(media/images/webp/splashImage_mob.webp);
        background-size: contain;
        background-position: top;
        clip-path: polygon(0 0, 100% 0, 100% 26%, 0% 30%);
    }
    
    .welcText {
        margin-top: 0em;
    }
    
    .welcImage {
        
    }
    
    .welcImage img {
        width: 190%;
        margin-left: -5em;
        margin-top: 0em;
    }
    
    .quote {
        text-align: center;
        margin: 4em 0em 0.5em 0em;
    }
    
    .feeStructure {
        margin-top: 3em;
    }
    
    .payments-overlay {
        width: 100%;
        margin: 1em;
    }

    .payBox {
        width: 100%;
    }
    
    .feesBox {
        font-size: 1.4em;
    }
    
    .proSalVal {
        font-size: 1.49em;
        line-height: 1.18em;
    }
    
    .salesItem {
        padding: 1em;
    }
    
    .itemIcon {
        font-size: 1.2em;
    }
    
    .featuresMob {
        display: flex;
        flex-direction: column;
    }
    
    .mob-4 {
        margin-top: 1em;
        width: 100%!important;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .imgGrad {
        border-right: 1px solid var(--secondaryBlue);
        width: 100%;
    }
    
    .imgGrad::after {
        content: "";
        position: absolute;
        margin-bottom: -5em;
        bottom: 0;
        background: #000000;
        background: linear-gradient(0deg,rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
        height: 60px;
        width: 350%;
    }
    
    .screenshot {
        
    }
    
    .screenshot img {
        width: 415%;
        margin-bottom: -80px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 24px 0px, rgba(0, 0, 0, 0.25) 0px 0px 0px 0.1px; !important;
    }
    
    .salesManImg img {
        width: 185%;
        margin-bottom: -80px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 24px 0px, rgba(0, 0, 0, 0.25) 0px 0px 0px 0.1px; !important;
    }
    
    .cnt-1 {
        position: relative;
        overflow: visible;
        min-height: 450px;
        margin-top: 0px;
        padding-top: 3em;
        display: flex;
        align-items: center;
        background-color: var(--primaryBlue);
        clip-path: polygon(0 0, 100% 3%, 100% 96%, 0% 100%);
    }

    .cnt-2 {
        position: relative;
        overflow: visible;
        min-height: 300px;
        display: flex;
        align-items: center;
    }

    .cnt-3 {
        position: relative;
        overflow: visible;
        min-height: 650px;
        padding-top: 3em;
        display: flex;
        align-items: center;
        background-color: var(--primaryBlue);
        clip-path: polygon(0 0, 100% 3%, 100% 94%, 0% 98%);
    }

    .cnt-4 {
        position: relative;
        margin-top: 80px;
        padding-bottom: 8em;
        display: flex;
        align-items: center;
        background-color: var(--primaryBlue);
        clip-path: polygon(0 0, 100% 2%, 100% 98%, 0% 100%);
    }
    
    .testMob {
        margin-top: 2em;
        padding-left: 0em !important;
        padding-right: 0em !important;
    }
    
    .testimonial-item {
        padding: 0 0px;
    }
    
    .contactDetails {
        display: flex;
        flex-direction: column;
        text-align: left;
        border-right: none;
        padding: 0em 2em 0em 2em;
    }

    .contactForm {
        padding: 0em 2em 2em 2em;
    }
    
    .projects {
        display: flex;
        margin-bottom: 5em;
        align-content: center;
        justify-content: center;
    }

    .proContainer {
        display: flex;
        flex-direction: column;
        width: 90%;
        padding: 0.9em;
        border: 1px solid #EBEBEB;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px 0px, rgba(0, 0, 0, 0.12) 0px 0px 0px 0.1px;
    }

    .proInfo {
        position: relative;
        flex: 0 0 30%;
    }

    .proInfo table {
        width: 100%;
    }

    .proInfo tr {
        padding: 1.5em;
        font-size: 0.8em;
        white-space: nowrap;
    }

    .proInfo td {
        padding: 0.5em 0.6em;
    }

    .proImage {
        margin-left: 0em;
        margin-top: 1em;
    }

    .proImage img {
        width: 100%;
        border-radius: 5px;
    }
    
}


@media (max-width: 768px) {
    
    /* SECTION - NAVBAR */
    
    .mobileNav-Backdrop {
        display: none;
        position: fixed;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(20, 20, 89, 0.5)!important;
        z-index: 1000;
    }
    
    .navbar-brand {
        padding-left: 0.5em !important;
    }

    .navbar {
        padding: 0.5em;
    }
    
    .navbar-toggler {
        border: none;
    }

    .nav-item {
        padding: 0em 0.5em;
        text-align: right;
    }

    .nav-item:not(:first-child) .nav-link {
        padding: 0.75em;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .navActive {
        color: #FFF !important;
        border-bottom: 2px solid var(--secondaryBlue);
    }
    
    .salesManImg {
        display: none;
    }
    
    .salesManImgMob {
        display: block;
    }
    
    .imgGrad {
        border-right: 1px solid var(--secondaryBlue);
        width: 100%;
    }
    
    .imgGrad::after {
        content: "";
        position: absolute;
        margin-bottom: -3em;
        bottom: 0;
        background: #000000;
        background: linear-gradient(0deg,rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
        height: 60px;
        width: 100%;
    }
    
    .screenshot {
        
    }
    
    .screenshot img {
        width: 115%;
        margin-bottom: -80px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 24px 0px, rgba(0, 0, 0, 0.25) 0px 0px 0px 0.1px; !important;
    }
    
    /* SECTION - BODY */
    
    .welcCont::before {
        background-image: url(media/images/webp/splashImage_mob.webp);
        background-size: contain;
        background-position: top;
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0% 28%);
    }
    
    .welcImage {
        display: none;
    }
    
    .welcText {
        border: none;
        margin-top: 0em;
    }
    
    .mobWidth {
        width: 100%!important;
        flex: 0 0 100%!important;
        max-width: 100%!important;
    }
    
    .quote {
        margin-top: 7em;
    }
    
    
    /* SECTION - WHATSAPP */
    
    .whatsapp-float {
        right: 20px;
    }
    
    .whatsapp-button {
        font-size: 30px;
    }
    
    .whatsapp-bubble {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .integration-images {
        display: none!important;
    }
}

@media (max-width: 576px) {

}
