body {
        font-family: "Archivo", sans-serif;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #0B0F15;
        overflow-x: hidden !important;
    }

    h1 {
        color: #40A8E0;
        font-weight: 500;
        font-size: 1rem;
        margin: 0;
    }

    h2 {
        font-size: 2.625rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
    }

    .inter {
        font-family: "Inter", sans-serif;
        font-size: 1.125rem;
        font-weight: 500;
        color: #FFF;
    }

    .archivo-black {
        font-family: "Archivo Black", sans-serif;
        font-size: 1.125rem;
        font-weight: 900;
        color: #ffffff;
    }

    /* Utility Classes */
    .transition-03 {
        transition: 0.3s;
    }

    .icon-sm {
        width: 2.5rem;
    }

    .h-3rem {
        height: 3rem;
    }

    .fs-1375 {
        font-size: 1.375rem;
    }

    .left-8 {
        left: 8rem;
    }

    .profile-pic {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
    }

    .profile-pic-offset-2 {
        left: 2rem;
    }

    .profile-pic-offset-4 {
        left: 4rem;
    }

    .gradient-blur {
        opacity: 0.5;
    }

    .gradient-blur-290 {
        filter: blur(290px);
    }

    .gradient-blur-400 {
        filter: blur(400px);
    }

    .gradient-blur-17 {
        filter: blur(17px);
    }

    .gradient-blur-5 {
        filter: blur(5px);
    }

    /* Navbar */
    .navbar-desktop {
        display: flex;
    }

    .navbar-mobile-toggle {
        display: none;
    }

    .navbar {
        height: 5rem;
        border-radius: 1.5rem;
    }

    .navbar-logo-wrapper {
        width: 3rem;
        aspect-ratio: 1/1;
    }

    .navbar-heading {
        font-size: 1.25rem;
    }

    .navbar-subtitle {
        font-size: 0.75rem;
        font-weight: 100;
    }

    .navbar-actions {
        width: max-content !important;
    }

    .navbar-actions .col {
        min-width: max-content !important;
        max-width: max-content !important;
        padding: 0 !important;
    }

    .navbar-cta {
        min-width: 7.125rem;
    }

    /* Hero */
    .hero-section {
        height: 100vh;
    }

    .hero-container {
        margin-left: 2.25rem;
        margin-right: 2.25rem;
        height: 95%;
        border-radius: 3.75rem;
    }

    .hero-gradient {
        width: 33rem;
        height: 33rem;
        top: 10rem;
        left: 1.5rem;
    }

    .hero-content {
        padding: 1.25rem;
        margin-top: 5%;
        width: 60%;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .hero-heading {
        font-size: 3.75rem;
        font-weight: 800;
    }

    .hero-description {
        margin-left: 10rem;
        margin-right: 10rem;
        font-size: 1.25rem;
    }

    .hero-divider {
        width: 20%;
        height: 0.1rem;
        background: #ffffff;
        background: linear-gradient(90deg, rgba(207, 207, 207, 0.08) 3%, rgba(17, 206, 209, 1) 50%, rgba(207, 207, 207, 0.08) 97%);
    }

    .hero-button-secondary {
        min-width: 6rem !important;
        width: 6rem !important;
        background-color: transparent;
        transition: 0.3s;
    }

    /* Logos */
    .logos-section {
        margin-bottom: 2rem;
        height: auto;
    }

    .logos-row {
        opacity: 0.4;
    }

    .logos-item {
        padding: 2rem 0;
    }

    .logos-item img {
        max-width: 100%;
        height: auto;
    }

    .logos-img-1 {
        width: 60%;
    }

    .logos-img-2 {
        width: 30%;
    }

    .logos-img-4 {
        width: 35%;
    }

    /* Services */
    .services-heading {
        width: 60%;
    }

    .service-card {
        min-width: 18rem;
        max-width: 18rem;
    }

    /* Featured */
    .featured-1-heading {
        width: 30%;
    }

    .featured-cards-wrapper {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        cursor: grab;
    }

    .featured-cards-wrapper.dragging {
        cursor: grabbing;
    }

    .featured-cards-wrapper::-webkit-scrollbar {
        display: none;
    }

    #featured-scroll.dragging {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .featured-cards-wrapper-inner {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }

    .featured-card {
        width: 20rem;
        height: 35rem;
        position: relative;
        overflow: hidden;
    }
    
    .featured-card-image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% 50%;
        z-index: 0 !important;
        display: block;
    }
    
    .featured-card-overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(211deg, rgba(11, 15, 21, 0.00) 4.53%, rgba(11, 15, 21, 0.70) 58.97%, #0B0F15 91.64%);
        z-index: 1 !important;
        pointer-events: none;
    }
    
    .featured-card > *:not(.featured-card-bg):not(.featured-card-overlay) {
        position: relative;
        z-index: 2;
    }

    .featured-slides {
        height: 40%;
    }

    .featured-slide-indicator {
        width: 22%;
        height: 0.75rem;
    }

    .featured-slide-indicator-active {
        opacity: 1;
    }

    .featured-slide-indicator-inactive {
        opacity: 1;
    }

    .featured-content {
        height: 60%;
    }

    .featured-description {
        height: 20%;
    }

    .featured-button {
        transition: background-color 0.3s ease, color 0.3s ease;
        color: black !important;
    }

    .featured-button:hover {
        cursor: pointer;
    }

    .featured-icon-svg {
        width: 50%;
        margin-top: 1rem;
    }

    /* Přechody pro cyklování karet */
    .featured-card-images-container {
        z-index: 0;
    }
    
    .featured-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 0;
    }
    
    .featured-card-image.active {
        opacity: 1;
        z-index: 1;
    }
    
    .featured-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }
    
    .featured-slide-indicator {
        background-color: rgba(200, 200, 200, 0.5);
        cursor: pointer;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .featured-slide-indicator:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }

    /* Progress bar pro slidy */
    .featured-slide-indicator-progress {
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #ffffff;
        transition: width linear;
    }
    
    .featured-slide-indicator-active .featured-slide-indicator-progress {
        width: 100%;
    }

    /* Featured 2 */
    .featured2-cards-container {
        height: fit-content;
    }

    .featured2-card {
        width: 30rem;
        min-width: 24rem !important;
        max-width: 35rem !important;
        height: fit-content;
        transition: 0.5s;
    }

    .featured2-card-technologies {
        margin-top: 3rem;
    }

    .featured2-card-rest-apis {
        margin-top: 6rem;
    }

    .featured2-icon-hover {
        right: -35rem;
        bottom: -35rem;
        transition: 0.5s;
    }

    .featured2-icon-hover-large {
        width: 50rem;
    }

    .featured2-icon-hover-medium {
        width: 30rem;
    }

    .featured-2-card-content {
        height: 35rem;
    }

    .featured2-card-heading {
        width: 75%;
    }

    .featured2-heading {
        font-size: 1.5rem !important;
    }

    .featured2-heading-hover {
        transition: 0.5s;
    }

    .featured2-button {
        width: 9rem;
        min-width: 9rem;
        height: 3rem;
        min-height: 3rem;
        transition: 0.3s;
    }

    .featured2-button:hover {
        box-shadow: 0 2px 40px 0 rgba(50, 171, 236, 0.70);
    }

    .featured2-button-icon-wrapper {
        width: 20%;
    }

    /* Reviews */
    .reviews-container {
        height: 40rem;
    }

    .reviews-clients-container {
        height: 3rem;
        width: 16.5rem;
    }

    .reviews-badges-container {
        height: 75%;
    }

    .reviews-badge {
        width: 18rem;
        height: fit-content;
        padding: 1.5rem;
    }

    .reviews-badge-technology {
        right: 8rem;
    }

    .reviews-badge-safety {
        top: 11.5rem;
        right: 3rem;
    }

    .reviews-badge-icon-wrapper {
        width: 15%;
        height: 100%;
    }

    .reviews-badge-text-wrapper {
        width: 85%;
    }

    .reviews-badge-title {
        font-size: 1.375rem;
    }

    /* Gap */
    .gap-section {
        height: 10rem;
    }

    /* Process */
    .process-container {
        height: 90.625rem;
    }
    
    .contact-banner-heading {
        width: 75%;
    }

    .process-gradient-1 {
        width: 50%;
        height: 20rem;
        margin-top: -5rem;
    }

    .process-gradient-2 {
        width: 40%;
        height: 20rem;
        margin-top: 23rem;
    }

    .process-gradient-3 {
        width: 40%;
        height: 20rem;
        margin-top: 46rem;
    }

    .process-gradient-4 {
        width: 40%;
        height: 20rem;
        margin-top: 69rem;
    }

    .process-contact-container {
        min-height: 15rem !important;
        height: 15rem;
        margin-top: -7.5rem;
    }

    .process-contact-inner {
        width: 88.235%;
    }

    .process-contact-emoji-wrapper {
        font-size: 3.25rem;
        width: 15%;
    }

    .process-contact-emoji {
        margin-left: 3rem;
    }

    .process-text-container {
        margin-top: 16rem;
    }

    .process-text-heading {
        margin-left: 10rem;
        margin-right: 10rem;
        color: #ffffff;
    }

    .process-cards-container {
        margin-top: 5rem;
        margin-bottom: 10rem;
    }

    .card-hover {
        transition: 0.5s !important;
    }

    .process-column-left {
        gap: 3.5rem;
    }

    .process-column-right {
        gap: 3.5rem;
    }

    .process-card-wrapper {
        z-index: 0;
    }

    .process-card-heading {
        font-size: 1.5rem;
    }

    .process-icon-hover {
        z-index: -1;
        opacity: 0.3;
        filter: blur(5px);
    }

    .process-icon-hover-1 {
        top: 0;
        left: 0;
        margin-top: -5rem;
        margin-left: -7.5rem;
        rotate: 0;
    }

    .process-icon-hover-2 {
        top: 0;
        left: 0;
        margin-left: -10rem;
        margin-top: -3rem;
        rotate: 0;
    }

    .process-icon-hover-3 {
        top: 0;
        left: 0;
        margin-bottom: -5rem;
        margin-left: -12rem;
        rotate: 0;
    }

    .process-icon-hover-4 {
        top: 0;
        right: 0;
        margin-top: -5rem;
        margin-right: -7.5rem;
        rotate: 5deg;
    }

    .process-icon-hover-5 {
        top: 0;
        right: 0;
        margin-bottom: -5rem;
        margin-right: -7.5rem;
        rotate: 0;
    }

    .process-icon-hover-svg-16 {
        width: 16rem;
    }

    .process-icon-hover-svg-18 {
        width: 18rem;
    }

    .process-icon-hover-svg-22 {
        width: 22rem;
    }

    .process-card-content {
        min-width: 17rem;
        padding: 1.25rem;
        z-index: 1;
    }

    .process-card-number {
        font-size: 1.125rem;
    }

    /* Our Team */
    .team-container {
        background-color: #FDFEFE;
    }

    .team-text-container {
        margin-top: 20rem;
    }

    .team-description {
        margin-left: 20%;
        margin-right: 20%;
    }

    .team-cards-container {
        height: 14rem;
    }

    .team-cards-wrapper {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        cursor: grab;
    }

    .team-cards-wrapper.dragging {
        cursor: grabbing;
    }

    .team-cards-wrapper::-webkit-scrollbar {
        display: none;
    }

    #team-scroll.dragging {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .team-cards-wrapper-inner {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }


    .team-card {
        width: 24.1875rem;
        padding: 1.25rem;
    }

    .team-card-name {
        font-size: 1.625rem;
    }

    .team-join-container {
        height: 15rem;
        border: 2px solid #F2F5F6;
        margin-top: 10rem;
        margin-bottom: -5rem;
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .team-join-emoji {
        font-size: 3.25rem;
    }

    .team-banner-description {
        width: 20rem;
    }

    /* FAQ */
    .faq-container {
        margin-bottom: 3rem;
        background: linear-gradient(180deg, #000 0%, var(--Black-matte, #0B0F15) 34.09%);
    }

    .faq-gradient {
        width: 50%;
        height: 20rem;
        background-color: #8C9FAA;
        margin-top: 14rem;
    }

    .faq-content {
        z-index: 2;
    }

    .faq-text-container {
        margin-top: 15rem;
    }

    .faq-subtitle {
        font-size: 1.25rem;
    }

    .faq-questions-container {
        margin-top: 7rem;
    }

    .faq-question-text {
        width: 97%;
    }


    .faq-answer {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0.25rem;
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }

    .faq-icon-minus {
        display: none;
    }

    .faq-item.is-open .faq-answer {
        max-height: 500px;
        opacity: 1;
    }

    .faq-item.is-open .faq-icon-plus {
        display: none;
    }

    .faq-item.is-open .faq-icon-minus {
        display: inline-block;
    }

    .faq-icon-wrapper {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .faq-item .faq-icon-plus {
        display: inline-block;
    }

    .faq-icon-minus {
        display: none;
    }

    .faq-item.is-open .faq-icon-wrapper {
        transform: rotate(180deg);
    }

    .faq-item.is-open .faq-icon-plus {
        display: none;
    }

    .faq-item.is-open .faq-icon-minus {
        display: inline-block;
    }


    .faq-question-button {
        background-color: transparent;
        border: none;
    }

    .faq-divider {
        height: 0.0625rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .faq-divider-dark {
        background-color: #0B0F15;
    }

    .faq-still-questions-container {
        margin-top: 9rem;
        height: 20rem;
        background-color: #0B0F15;
        z-index: 2;
    }

    .faq-still-questions-overlay {
        background: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        border-radius: inherit;
    }

    .faq-avatars-container {
        width: 9rem;
        height: 4rem;
    }

    .faq-avatar-main {
        width: 3.5rem;
        margin-left: 2.75rem;
        margin-right: 2.75rem;
        border: solid 1px #8C9FAA;
    }

    .faq-avatar-left {
        margin-left: 1rem;
        margin-top: 0.75rem;
        border: solid 1px #8C9FAA;
    }

    .faq-avatar-right {
        right: 1rem;
        margin-top: 0.75rem;
        border: solid 1px #8C9FAA;
    }


    .faq-new-project-container {
        width: 70%;
        height: 10rem;
        margin-top: 5rem;
    }

    .new-project-heading {
        width: 50%;
    }

    .faq-new-project-text {
        left: 8rem;
    }

    /* Footer */
    .footer-gradient {
        width: 50%;
        height: 10rem;
        background-color: #8C9FAA;
        margin-top: 3rem;
    }

    .footer-divider {
        width: 70%;
        height: 1px;
        background-color: #8C9FAA;
    }

    .footer-container {
        width: 70%;
    }

    .footer-section {
        height: 10rem;
        display: flex;
        justify-content: center;
    }

    .footer-cols-wrapper {
        min-width: 19rem;
        max-width: 19rem;
    }

    .footer-icon-instagram {
        margin-top: -8px;
    }

    .w-30 {
        width: 30%;
    }

    .w-85 {
        width: 85% !important;
    }

    .bg-dark {
        background-color: #0B0F15 !important;
    }

    .bg-light {
        background-color: #40A8E0 !important;
    }

    .bg-hero {
        background-image: url("../../assets/images/hero-bg.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .bg-card {
        background-color: #F2F5F6;
    }

    .color-light {
        color: #40A8E0 !important;
    }

    .text-grey {
        color: #8C9FAA;
    }

    .text-secondary {
        font-size: 1rem;
        font-weight: 500;
        color: #8C9FAA;
    }

    .fw-500 {
        font-weight: 500;
    }

    .primary-button {
        transition: 0.3s;
        min-width: 7.125rem !important;
        width: 7.125rem !important;
        min-height: 3rem !important;
        height: 3rem !important;
    }

    .primary-button:hover {
        box-shadow: 0 2px 40px 0 rgba(50, 171, 236, 0.70);
    }

    .outline-button {
        transition: 0.3s;
    }

    .outline-button:hover {
        background-color: #ffffff !important;
        color: #000000 !important;
    }

    .underline-hover {
        position: relative;
        display: inline-block;
        transition: color 0.3s ease;
    }

    .underline-hover::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background-color: currentColor;
        transition: width 0.3s ease;
    }

    .underline-hover:hover::after {
        width: 100%;
    }

    .arrow-hover:hover {
        background-color: #000000 !important;
        color: #ffffff !important;
    }

    .card-hover:hover {
        background-color: #0B0F15;
    }

    .card-hover:hover .h4-hover {
        color: white !important;
    }

    .card-hover:hover .bg-icon-hover {
        bottom: -9rem !important;
        right: -9rem !important;
        rotate: 0deg !important;
        opacity: 0.6;
    }

    /*
    .card-left:hover .content {
        rotate: -5deg;
    }

    .card-left:hover .icon {
        rotate: 10deg;
        transform: scale(1.3);
    }

    .card-right:hover .content {
        rotate: 5deg;
    }

    .card-right:hover .icon {
        rotate: -10deg !important;
        transform: scale(1.3);
    }
    */

    .text-glow:hover {
        color: #40A8E0 !important;
        text-shadow:
            0 0 4px  #40A8E0,
            0 0 10px #40A8E0,
            0 0 20px #40A8E0;
    }

    .icon-glow:hover {
        color: #40A8E0 !important;
        filter:
        drop-shadow(0 0 4px  #40A8E0)
        drop-shadow(0 0 12px #40A8E0);
    }

    /* Animations */
    @keyframes appear {
        from {
            opacity: 0.7;
            transform: scale(0.7);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .animation-appear {
        animation: appear 0.5s linear;
    }

    @keyframes bg-slide {
        from {
            background-position: 50% -300%; /* looks lower, but still partially visible */
        }
        to {
            background-position: 50% 50%; /* normal center-ish position */
        }
    }

    .animation-bg-slide {
        animation: bg-slide 0.5s linear;
    }

    /* Animations on scroll */
    @keyframes pop-on-scroll {
        0%   { opacity: .7; transform: scale(.7); }
        15%  { opacity: 1;  transform: scale(1); }
        85%  { opacity: 1;  transform: scale(1); }
        100% { opacity: .7; transform: scale(.7); }
    }

    .animation-pop-on-scroll {
        animation: pop-on-scroll linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    @keyframes badge-slide-left {
    0% {
        transform: translateX(-5rem);
        opacity: 0.7;
    }
    30% {
        transform: translateX(-2rem);
        opacity: 1;
    }
    70% {
        transform: translateX(2rem);
        opacity: 1;
    }
    100% {
        transform: translateX(5rem);
        opacity: 0.7;
    }
}

    .animation-badge-slide-left {
        animation: badge-slide-left linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    @keyframes badge-slide-right {
    0% {
        transform: translateX(5rem);
        opacity: 0.7;
    }
    30% {
        transform: translateX(2rem);
        opacity: 1;
    }
    70% {
        transform: translateX(-2rem);
        opacity: 1;
    }
    100% {
        transform: translateX(-5rem);
        opacity: 0.7;
    }
}

    .animation-badge-slide-right {
        animation: badge-slide-right linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    @keyframes card-slide-left {
        0%   { opacity: .7; transform: translateX(0rem); }
        20%  { opacity: 1;  transform: translateX(0); }
        80%  { opacity: 1;  transform: translateX(0); }
        100% { opacity: .7; transform: translateX(0rem); }
    }

    @keyframes card-slide-right {
        0%   { opacity: .7; transform: translateX(0rem); }
        20%  { opacity: 1;  transform: translateX(0); }
        80%  { opacity: 1;  transform: translateX(0); }
        100% { opacity: .7; transform: translateX(0rem); }
    }

    .card-left {
        animation: card-slide-left linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    .card-right {
        animation: card-slide-right linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    @keyframes icon-appear {
        0%   { opacity: 0; }
        20%  { opacity: 0.4; }
        80%  { opacity: 0.4; }
        100% { opacity: 0; }
    }

    .icon {
        animation: icon-appear linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    /* Responsivity */
    @media (max-width: 1420px) {

        /* Navbar */
        .navbar-actions {
            width: 60%;
        }

        /* Hero */
        .hero-content {
            width: 85%;
            padding-left: 0;
            padding-right: 0;
        }

        /* Services */
        .services-heading {
            width: 75%;
        }

        /* Featured 1 */
        .featured-1-heading {
            width: 50% !important;
        }

        /* Featured 2 */
        .featured2-card-rest-apis {
            margin-top: 0;
        }

        /* Reviews */
        .reviews-wrapper h2 {
            width: 100%;
        }

        /* Process */
        .contact-banner-heading {
            width: 100%;
        }

        .process-cards-container {
            margin-bottom: 12rem;
        }

        .process-text-heading {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Our team */
        .team-description {
            margin-left: 15%;
            margin-right: 15%;
        }

        /* FAQ */
        .new-project-heading {
            width: 70%;
        }
    }

    @media (max-width: 1150px) {
        
        /* Navbar ->Mobile navbar*/
        .navbar-desktop {
            display: none;
        }

        .navbar-mobile-toggle {
            display: flex;
        }

        /* Services */
        .services-heading {
            width: 80%;
        }

        /* Reviews */
        .reviews-container {
            height: 45rem;
            padding-top: 5rem;
        }

        .reviews-wrapper {
            width: 100% !important;
            flex-direction: column;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .reviews-text-wrapper {
            width: 100% !important;
            height: 50% !important;
            display: flex;
            align-items: center;
        }

        .reviews-text-wrapper h1 {
            text-align: center;
        }

        .reviews-text-wrapper h2 {
            width: 100%;
            text-align: center;
        }

        .reviews-clients-container {
            width: 16.5rem !important;
        }

        .reviews-badges-container {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            gap: 3rem;
            height: fit-content;

        }

        .reviews-badge {
            left: 0 !important;
            margin: 0 !important;
            position: static !important;
        }

        /* Process */
        .process-container {
            height: 100rem;
        }

        .process-gradient-1 {
            width: 50%;
            height: 20rem;
            margin-top: -5rem;
        }

        .process-gradient-2 {
            width: 40%;
            height: 20rem;
            margin-top: 27rem;
        }

        .process-gradient-3 {
            width: 40%;
            height: 20rem;
            margin-top: 54rem;
        }

        .process-gradient-4 {
            width: 40%;
            height: 20rem;
            margin-top: 85rem;
        }

        /* Our team */
        .team-text-container {
            margin-top: 10rem;
        }

        .team-description {
            margin-left: 5%;
            margin-right: 5%;
        }
    }

    @media (max-width: 1020px) {

        h1 {
            font-size: 0.875rem;
        }

        h2 {
            font-size: 2.25rem;
        }

        button {
            font-size: 0.875rem;
        }

        .text-secondary {
            font-size: 0.875rem;
        }

        /* Hero section */
        .hero-title {
            font-size: 1rem;
        }

        .hero-heading {
            font-size: 3.25rem;
        }

        .hero-description {
            font-size: 1.125rem;
        }

        /* Process */
        .process-contact-emoji {
            font-size: 2.75rem;
            margin-left: 2.5rem;
        }

        /* FAQ */
        .faq-subtitle {
            font-size: 1rem;
        }

        /* Footer */
        .footer-cols-wrapper {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 932px) {

        /* Featured 2 */
        .featured2-text-container {
            align-items: center !important;
            text-align: center;
        }

        .featured2-text-container h1,
        .featured2-text-container h2 {
            width: 85% !important;
        }

        .featured2-card-technologies {
            margin-top: 0 !important;
        }

        /* Team */
        .team-banner-description {
            width: 15rem;
        }

    }

    @media (max-width: 870px) {

        /* Hero */
        .hero-description {
            margin-left: 5rem;
            margin-right: 5rem;
        }

        /* Process */
        .process-container {
            height: fit-content;
        }

        .process-contact-inner {
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            width: 100% !important;
        }

        .process-banner-content-wrapper  {
            width: 100% !important;
            justify-content: center;
        }

        .process-banner-button-wrapper {
            justify-content: center !important;
            height: 4rem !important;
            margin-bottom: 3rem !important;
        }

        .process-cards-container {
            display: none !important;
        }

        .process-cards-container-mobile {
            display: flex !important;
            margin-top: 5rem;
            margin-bottom: 5rem;
        }

        .process-icon-hover-1 {
            top: 0;
            left: 0;
            margin-top: 0rem;
            margin-left: 0rem;
            rotate: 0;
        }

        /* Team */
        .team-banner-content-container {
            flex-direction: column !important;
            align-items: center !important;

        }

        .team-banner-content-wrapper .profile-pic {
            position: static !important;
            margin: 0 !important;
        }

        .team-banner-content-wrapper span {
            margin-left: 2rem;
            width: 70% !important;
            position: static !important;
            left: 0 !important;
        }

        /* FAQ */
        .faq-new-project-container {
            align-items: center;

            .new-project-heading {
                text-align: center;
            }
        }

        .project-avatar-container {
            width: 100% !important;
            height: auto !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 0.5rem;
        }

        .project-avatar-container .project-avatar-wrapper {
            justify-content: space-around;
        }

        .project-avatar-container .project-avatar-wrapper .profile-pic {
            position: static !important;
            margin: 0 !important;
        }

        .project-avatar-container span {
            left: 0 !important;
            position: static !important;
            width: 100% !important;

        }

    }

    @media (max-width: 738px) {
        /* Team */
        .team-join-container {
            padding-left: 7%;
            padding-right: 7%;
        }

        .team-join-emoji {
            display: none !important;
        }

        .team-join-container h2 {
            text-align: center !important;
        }
        .team-banner-content-wrapper {
            width: 9rem !important;
            gap: 0.25rem !important;
            margin-bottom: 0.5rem;
        }

        .team-banner-content-wrapper .profile-pic {
            position: static !important;
            margin: 0 !important;
        }

        .profile-pic-offset-2 {
            width: 2.75rem;
            height: 2.75rem;
        }

        .team-banner-content-wrapper span {
            display: none !important;
        }

        /* FAQ */
        .new-project-heading {
            width: 90%;
        }
    }

    @media (max-width: 608px) {
        /* Hero section */
        .hero-gradient {
            width: 80% !important;
        }

        /* Reviews */
        .reviews-container {
            height: fit-content !important;
        }

        .reviews-badges-container {
            min-height: 20rem;
        }
        .reviews-text-wrapper {
            height: fit-content !important;
        }

        .reviews-badges-container {
            display: flex !important;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .reviews-badge {
            position: static !important;
            margin: 0 !important;
        }

        /* Process */
        .process-contact-emoji-wrapper {
            display: none !important;
        }

        .contact-banner-heading {
            text-align: center !important;
        }

        /* Team */
        .team-text-container {
            width: 75% !important;
        }

        .team-description {
            margin: 0 !important;
        }

        /* FAQ */
        .faq-new-project-container {
            height: fit-content;
        }
    }

    @media (max-width: 576px) {
        h2 {
            font-size: 2rem;
        }

        /* Hero section */
        .hero-heading {
            font-size: 2.75rem;
        }

        .hero-description {
            font-size: 1rem;
            margin-left: 5rem;
            margin-right: 5rem;
        }

        /* Featured 2 */
        .featured2-card {
            min-width: 20rem !important;
        }

        /* FAQ */
        .faq-subtitle {
            font-size: 0.875rem;
        }

        .faq-description {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 498px) {
        /* Hero section */
        .hero-heading {
            font-size: 2.25rem;
        }

        .hero-description {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }