﻿.bb-banner-swiper {
    width: 100%;
    height: 800px;
    margin-bottom: -300px;
}

@media screen and (min-width: 1500px) {
    .bb-banner-swiper {
        height: 900px;
    }
}

.bb-banner-swiper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    width: 100%;
    height: 700px;
    gap: 20px;
    padding: 0 clamp(20px, 12vw, 320px) 0;
}

.bb-banner-swiper-overlay-content {
    width: max(80%, 480px);
    margin-inline: auto;
}

.bb-banner-swiper-overlay-image {
    width: clamp(180px, 100%, 450px);
}

.bb-banner-swiper-overlay-title {
    font-size: clamp(25px,3vw,50px);
    color: var(--light-blue);
}

.bb-banner-swiper-overlay-description {
    font-size: clamp(18px,1.5vw,25px);
    color: var(--dark-blue);
    margin: 0 50px 20px 0;
}

.bb-swiper-slide-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .bb-swiper-slide-footer .bb-swiper-pagination-bullet {
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: #03103D80;
        margin: 5px;
        cursor: pointer;
        border-radius: 50%;
    }

    .bb-swiper-slide-footer .bb-swiper-pagination-bullet-active {
        background-color: var(--fuschia);
    }

.bb-services-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 clamp(20px,12vw,320px) 40px;
}

.bb-services-title {
    width: 100%;
    max-width: 50%;
    text-align: center;
    color: var(--light-blue);
    font-size: clamp(20px,2vw,35px);
    margin-inline: auto;
}

.bb-services-secondary-title {
    font-family: Nunito Sans;
    font-size: 35px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    color: var(--fuschia);
    margin: 10px 0 10px 0;
}

.bb-services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, clamp(260px, 20vw, 440px));
    gap: 40px max(15px, 3vw);
    width: 100%;
    justify-content: center;
    padding: 20px;
    grid-auto-rows: minmax(330px, auto);
}

.bb-service-card {
    box-shadow: 0px 4px 4px 0px rgba(168, 168, 168, 0.25);
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    position: relative;
    order: 0;
}

.bb-service-hoverable-card {
    border: 4px solid transparent;
    transition: transform ease .4s, border-color ease .4s;
}

    .bb-service-hoverable-card:hover,
    .bb-service-hoverable-card:active {
        transform: scale(1.02) translate(4px, 4px);
        border: 4px solid var(--fuschia-darker);
    }

.bb-service-card-image {
    width: 100%;
    height: clamp(220px,17vw,360px);
    border-radius: 10px;
    overflow: hidden;
}

.bb-service-hoverable-card .bb-service-card-image {
    width: calc(100% + 8px);
    height: calc(clamp(220px,17vw,360px) + 4px);
    transform: translate(-4px, -4px);
}

.bb-service-card-content {
    position: relative;
    z-index: 0;
    padding: 40px 20px 0 20px;
    text-align: center;
}

.bb-service-card-icon {
    position: absolute;
    z-index: 1;
    top: -25px;
    left: calc(50% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--light-grey);
    background-color: var(--white)
}

    .bb-service-card-icon img {
        width: 100%;
    }

.bb-service-card-title {
    margin-top: unset;
    color: var(--dark-blue);
    font-size: 22px;
    margin-top: 10px;
}

.bb-service-card-description {
    color: var(--grey);
    line-height: 25px;
    min-height: 120px;
}

.bb-service-card-cta {
    font-size: 16px;
    font-weight: var(--bold-font-weight);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.bb-video-wrapper {
    position: relative;
    padding-top: max(50px,8vw);
    padding-bottom: max(25px,2vw);
    width: 100%;
    height: clamp(300px,60vw,900px);
}


.bb-services-main-container {
    background-color: white;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 clamp(20px,12vw,320px) 40px;
}

.bb-inner-services {
    margin-top: clamp(75px, 15vw, 120px);
    padding: 20px clamp(20px,12vw,320px) 40px clamp(20px,12vw,320px);
}


.bb-service-full-card > .bb-service-card-image > img {
    width: unset !important;
}

.bb-service-full-card {
    display: flex;
}

.default-topics-container {
    /*    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1;
}

.explore-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.default-topic-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.robot-image {
    height: 200px;
}

.text-container {
    flex: 2;
    padding-left: 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .text-container > .bb-service-card-icon {
        top: unset !important;
        left: unset !important;
        position: relative !important;
    }

    .text-container > p {
        min-height: unset !important;
    }

    .text-container > .bb-service-card-cta {
        left: 70%;
        transform: translate(-70%);
    }

    .text-container h2 {
        margin: 0;
        font-size: 24px;
        color: #232743;
    }

.start-button {
    background-color: #6c00fa;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

    .start-button:hover {
        background-color: #5200c7;
    }

/* Style The Dropdown Button */
.dropbtn {
    background-color: var(--dark-blue);
    color: white;
    padding: 15px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    padding-block: clamp(10px, 1vw, 20px);
    text-align: center;
    border-radius: 100%;
}

    .dropbtn img {
        transition: all ease .4s;
        margin: 0 3px;
        margin-bottom: 1px;
    }

    .dropbtn.open img {
        transform: rotate(-180deg);
    }

    .dropbtn .bb-arrow-icon.active {
        display: none;
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100px;
    cursor: pointer;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    top: calc(100% - 10px);
    left: -10px;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 18px;
        text-decoration: none;
        display: block;
        font-size: 17px;
    }

        .dropdown-content a.active {
            color: var(--fuschia);
            font-weight: var(--bold-font-weight);
        }

.bb-about-us-container {
    /*padding: 10% clamp(20px,20vw,320px) 40px;*/
    margin-top: 115px;
    padding-top: 35px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bb-about-us-message {
    font-family: Nunito Sans;
    font-size: clamp(18px, 1.5vw, 30px);
    font-weight: 400;
    line-height: 40px;
    text-align: justify;
}

.bb-wink-img {
    width: 227px;
}

.bb-left-align {
    text-align: left;
}

.bb-extra-padding {
    padding-left: 5%;
}

.bb-sub-title {
    font-size: clamp(22px, 2vw, 30px);
}

.bb-features-section {
    grid-template-columns: repeat(auto-fill, clamp(420px, 25vw, 550px)) !important;
}

.bb-features-image {
    width: 300px;
    height: 300px;
    margin: auto;
}

.bb-name-meaning-features-image {
    width: 222px;
    height: 251px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.bb-image-container {
    width: 100%;
    text-align: center;
}

.bb-less-top-margin {
    margin-top: -35px;
}

.bb-bullets {
    width: 85%;
}

.outer-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--fuschia);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--fuschia);
    border: 5px solid white;
}

.bb-bullets-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* space between multiple items */
}

.bb-bullets-text {
    font-family: Nunito Sans;
    font-size: clamp(18px, 1vw, 25px);
    line-height: 36px;
}

.bb-contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 44px;
}

.bb-contact-info {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

    .bb-contact-info p {
        margin: 0;
    }

.bb-contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: min(750px, 95%);
}

.bb-contact-btn {
    margin: auto;
    padding: 16px 32px;
    min-width: 190px;
    margin-top: 26px;
}

.bb-contact-us-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

    .bb-contact-us-input label {
        font-size: clamp(16px, 2vw, 22px);
    }

    .bb-contact-us-input input,
    .bb-contact-us-input textarea {
        background: #F7FBFF;
        border: 1px solid #FFFFFF;
        border-radius: 12px;
        padding: 14px 24px;
        outline: none;
        resize: none;
    }

        .bb-contact-us-input input::placeholder,
        .bb-contact-us-input textarea::placeholder {
            font-size: clamp(14px, 1.8vw, 20px);
            color: #8897AD;
        }

    .bb-contact-us-input textarea {
        min-height: 250px;
    }

.bb-bullets-text-container {
    width: 100%;
    margin: 0px 15px;
}

.bb-our-vision-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-about-us-title {
    margin-bottom: 0;
}

.bb-get-started-btn {
    padding: 16px 32px 16px 32px;
}

.bb-btn-press-effect {
    transition: all ease .3s;
}

    .bb-btn-press-effect:active {
        transform: scale(0.96);
        box-shadow: 0px 3.86px 3.86px 0px #00000040 inset;
    }

.bb-banner-image-background {
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100vh;
}

.bb-my-space-nav-tab {
    display: none;
}

.bb-store-btn {
    font-family: "Rubik", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    padding-inline-start: 8px;
    border-radius: 12px;
    font-weight: 500;
}

    .bb-store-btn img {
        width: clamp(24px, 2vw, 32px);
    }

    .bb-store-btn.google img {
        width: clamp(28px, 3vw, 41px);
    }

    .bb-store-btn p {
        margin: 0;
        font-size: clamp(15px, 1.5vw, 22px);
    }

    .bb-store-btn span {
        font-size: 10px;
    }

    .bb-store-btn.google {
        background: var(--black);
        color: var(--white);
    }

    .bb-store-btn.apple {
        background: var(--white);
        color: var(--black);
        border: 1px solid var(--black);
    }

@media screen and (max-width: 1550px) {
    .bb-banner-swiper-overlay-image {
        width: clamp(160px, 100%, 400px);
        padding-bottom: 20px;
    }

    .bb-banner-swiper-overlay {
        height: 600px;
    }
}

@media screen and (max-width: 1400px) {
    .explore-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px 20px 20px;
    }

    .robot-image {
        height: 150px;
    }

    .explore-section .text-container {
        padding-left: 0;
    }

        .explore-section .text-container > .bb-service-card-cta {
            left: 50%;
            transform: translateX(-50%);
        }

        .explore-section .text-container .bb-service-card-title {
            font-size: 22px;
            margin-top: 15px !important;
            text-align: center;
        }

        .explore-section .text-container .bb-service-card-description {
            text-align: center;
        }
}

@media screen and (max-width: 1100px) {
    .bb-inner-services {
        padding: 20px 0 20px 0;
    }

    .bb-get-started-btn {
        padding: 12px 22px 12px 22px;
    }

    .bb-banner-swiper-overlay-title {
        margin: 0 80px 8px 0;
    }
}

@media screen and (max-width: 950px) {
    .bb-services-wrapper {
        gap: 40px max(15px, 3vw);
    }

    .bb-features-section {
        grid-template-columns: unset !important;
    }

    .bb-about-us-title, .bb-services-secondary-title {
        font-size: 25px;
        margin: unset;
    }

    .bb-left-align > img {
        width: 30px;
        height: 30px;
    }

    .bb-bullets {
        width: 100%;
    }

    .outer-circle {
        width: 36px;
        height: 30px;
    }

    .inner-circle {
        width: 15px;
        height: 15px;
        border: 2px solid white;
    }
}

/*@media screen and (max-width: 800px){
.default-topics-container{
    display: none;
}
}*/

@media screen and (max-width: 1171px) and (min-width: 768px) {
    .default-topics-container {
        order: 1;
    }

    .bb-service-card:nth-last-child(-n+2) {
        order: 2;
    }
}

@media screen and (max-width:768px) {
    .bb-inner-services {
        margin-top: 70px;
    }

    .bb-my-space-nav-tab {
        display: block;
    }

    .bb-about-us-container .bb-services-title {
        margin-bottom: 5px;
    }

    .bb-banner-swiper {
        margin-bottom: clamp(-200px,-10vw,-100px);
    }

    .bb-banner-image-background, .bb-banner-swiper {
        height: 700px;
    }

    .bb-banner-swiper-overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-block: 70px 100px;
        gap: unset;
    }

    .bb-banner-swiper-overlay-content {
        order: 2;
    }

    .bb-banner-swiper-overlay-image {
        order: 1;
        margin-inline: auto;
        width: clamp(250px,40%,360px)
    }

    .bb-banner-swiper-overlay-title {
        font-size: 20px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-right: 0;
    }

    .bb-banner-swiper-overlay-description {
        font-size: 16px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        margin: 0 0 20px 0;
    }

    .bb-about-us-message {
        line-height: 25px;
    }

    .bb-features-image {
        width: 200px;
        height: 200px;
    }

    .bb-name-meaning-features-image {
        width: 142px;
        height: 171px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .bb-about-us-container {
        margin-top: 75px;
        padding: 15px 20px 20px 20px;
    }

    header > .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
    }

    .dropbtn {
        border-radius: unset !important;
        background-color: transparent;
        color: var(--fuschia);
        padding: 0;
        font-weight: var(--bold-font-weight);
        display: flex;
        align-items: center;
    }

    .invert-nav-colors .dropbtn {
        color: white;
    }

    .dropdown-content {
        top: calc(100% + 8px);
        left: unset;
        margin-right: 20px;
    }

    .dropbtn img {
        margin-left: 5px;
        margin-right: unset;
        margin-top: 2px;
    }

    .dropbtn .bb-arrow-icon {
        display: none;
    }

        .dropbtn .bb-arrow-icon.active {
            display: block;
        }

    .invert-nav-colors .dropbtn .bb-arrow-icon.active {
        display: none;
    }

    .invert-nav-colors .dropbtn .bb-arrow-icon {
        display: block;
    }
}

@media screen and (max-width:600px) {
    .bb-banner-swiper-overlay-content {
        width: 100%;
    }

    .bb-banner-swiper-overlay {
        padding: 0 25px 0;
    }

    .bb-services-container {
        padding: 50px clamp(10px, 2vw, 40px) 40px;
        margin-top: 20px;
    }

    .bb-services-wrapper {
        grid-template-columns: unset;
        padding: 6%;
    }

    .bb-banner-image-background, .bb-banner-swiper {
        height: 600px;
    }
}

@media screen and (max-width: 480px) {
    .bb-banner-swiper-overlay-image {
        width: clamp(220px,35%,330px);
        padding-bottom: 0;
    }

    .bb-get-started-btn {
        padding: 10px 20px 10px 20px;
    }

    .bb-banner-image-background, .bb-banner-swiper {
        height: 560px;
    }
}

@media screen and (max-width: 368px) {
    .bb-swiper-slide-footer {
        gap: 10px;
    }

    .bb-store-btn p {
        font-size: 13px;
    }

    .bb-store-btn span {
        font-size: 8px;
    }
}
