/*
Theme Name: Twenty Twenty-Four Child
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Description: Child theme of Twenty Twenty-Four
Author: Your Name
Author URI: https://bonafide.ai
Template: twentytwentyfour
Version: 1.0.0
Text Domain: twentytwentyfour-child
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--dark-color);
    line-height: 24px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

/* ======================
   Colors
====================== */
:root {
    --primary-color: #1779ab;
    --primary-light-color: #519BC0;
    --primary-bonafied-blue: #AED0E2;
    --secondary-color: #0a6e4f;
    --ternary-color: #1779AB;
    --grey-color: #CAD8DE;
    --white: #fff;
    --black: #000;
    --green: #0D6E4F;
    --grey: #5D6163;
    --primary-text: #539ac2;
    --backgorund-color: #E8F2F7;
    --background-second-color: #103050;
    --background-third-color: #C46D5E;
    --background-fourth-color: #D4E4EC;
    --background-fifth-color: #1f4364;
    --background-sixth-color: #E9F1F5;
    --primary-bonafied-night: #4C647C;

}

/* ======================
   Typography
====================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Sans", sans-serif;
}

h1 {
    font-size: 100px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -2px;

}

h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 0.98;
    letter-spacing: 0;
}

h3 {
    font-size: 25px;
    line-height: 0.90;
    font-weight: 500;
    letter-spacing: 0;
}

h5 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

.para1 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}

.para2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* ======================
   Buttons
====================== */

.btn {
    display: inline-block;
    padding: 0 8px;
    border-radius: 28px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--secondary-buton-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ======================
   Input Fields
====================== */

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem 0 0.50rem;
    font-size: 20px;
    line-height: 20px;
    outline: none;
}

input[type="submit"] {
    font-size: 25px;
}
textarea {
    resize: none;
}


input::placeholder,
textarea::placeholder {
    color: #888;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

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

.fw-regular {
    font-weight: 400;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
}


@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}

.header {
    padding-left: 65px;
    padding-right: 65px;
}


@media (max-width: 768px) {
    nav .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: none;
    }
	nav .wp-block-navigation__responsive-container-close svg, nav .wp-block-navigation__responsive-container-open svg{
		    width: 26px;
		height: auto;
	}

    /* Hide overlay menu by default */
    .wp-block-navigation__responsive-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #eaf6f8;
        padding: 24px;
        transition: left 0.3s ease;
        z-index: 9999;
    }

    /* When menu is open */
    .wp-block-navigation__responsive-container.is-menu-open {
        left: 0;
    }

    /* Close button alignment */
    .wp-block-navigation__responsive-container-close {
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Menu items vertical */
    .wp-block-navigation__responsive-container .wp-block-navigation__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Links styling */
    .wp-block-navigation-item__content {
        font-size: 16px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
    }

    /* Demo button styling */
    .wp-block-navigation-item.btn a {
        background: #0073aa;
        color: #fff;
        padding: 10px 18px;
        border-radius: 20px;
    }

    .wp-block-navigation__responsive-close {
        background: #E8F2F7;
        position: fixed;
        inset: 0;
        padding: 0px
    }

    .wp-block-navigation__responsive-container.is-menu-open {
        width: 100%
    }

    nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__containe {
        align-items: flex-start;
    }

    nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
        align-items: flex-start;
        padding-top: 0;
    }

    nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
        align-items: flex-start;
        gap: 46px;
        padding: 20px 14px;
        width: 100%;
    }

    nav .wp-block-navigation__responsive-container-close {
        right: 14px;
        top: 20px
    }

    .mobile-menu-logo {
        display: block;
        background-color: #ffffff;
        width: 100%;
        padding: 20px 14px;
    }

    .header .wp-block-navigation-item span {
        font-size: 20px;
    }

    .header .wp-block-navigation-item.btn,
    .header .wp-block-navigation-item.btn a {
        width: 100%;
    }

    .header .wp-block-navigation-item.btn span {
        padding: 12px 30px
    }

}

/* Tablets */
/* @media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Small desktops / laptops */
/* @media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
} 
 */
/* Large desktops */
/* @media (min-width: 1400px) {
  .container {
    max-width: 1320px;
	  padding:0
  }
} */

.is-content-justification-space-between {
    justify-content: space-between;
}

.header {
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: transparent;
    left: 0;
    right: 0;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease;
    /*     padding-left: 65px;
    padding-right: 65px; */
}

.header>.alignwide {
    padding: 0
}

.header .is-responsive {
    gap: 70px;
}

.header .wp-block-navigation-item span {
    text-transform: uppercase;
	font-size:14px
}

.header .wp-block-navigation-item.btn span {
    display: inline-block;
    padding: 7px 30px;

    border-radius: 50px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
}

.header {
    padding-left: 65px;
    padding-right: 65px;
}

.header.sticky {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Home page css */
.hero-section h1 {
    color: var(--white)
}

.hero-section {
    background: url('https://www.bonafide.ai/_next/static/media/desktop_lightmode_hero_background.b71dae31.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 75px;
    background-position: bottom center
}

.hero-heading-wrap {
    width: 400px;
    margin: 0 auto;
    padding: 220px 0 80px;
    margin-bottom: 0;
}

.hero-desc {
    width: 365px;
    border-top: 2px solid var(--black);
    padding-top: 1.375rem;
    padding-bottom: 2rem;
}

.learn-more {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 0.98;
    letter-spacing: 0;
    display: inline-flex;
    margin-bottom: 2rem;
}

.learn-more svg,
.domain svg {
    height: 20px;
    width: auto;
    stroke: var(--primary-color);
}
.domain .arrow-wrap img {
  transition: transform 0.3s ease;
}
.domain.active .arrow-wrap img {
  transform: rotate(90deg); /* right → down */
}

.arrow-wrap {

    margin-top: 5px;
    margin-left: 2px;
}

.arrow-wrap.down {
    transform: rotate(90deg);
}

.product-section {
    background-color: var(--backgorund-color);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 95px 0 230px;
    margin-top: -60px;
}

.product-section .subheading {
    color: var(--primary-light-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid #000000;
    margin-bottom: 2rem;
}

.product-section h2 {
    width: 500px;
    margin-bottom: 100px;
}

.product-section .product-grid {
    justify-content: space-between;
}


.product-card .img-outer-wrap {
    width: 234px;
    height: 234px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card:nth-child(2) .img-outer-wrap {

    background-color: var(--primary-light-color);
    border-radius: 50%;
    margin: 0 auto
}

.product-card .img-wrap {
    background-color: var(--primary-color);
    padding: 72px 65px;
    border-radius: 50%;
    text-align: center;
    width: 180px;
    height: 180px;
    justify-content: center;

}

.product-card:first-child .img-wrap img {
    width: 100px;
    height: 85px;
}

.product-card:nth-child(2) .img-wrap img {
    width: 65px;
    height: 60px;
}

.product-section .description-box {
    padding-top: 2rem;
    border-top: 2px solid #000000;
    margin-top: 4rem;
}

.product-section .description-box h3 {
    font-size: 20px;
    line-height: 1.3;
}

.learn-section {
    background-color: var(--background-second-color);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 110px 0 190px;
    margin-top: -60px;
    color: var(--white);
}

.learn-section .subheading {
    color: var(--primary-bonafied-blue);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--white);
    margin-bottom: 2rem;
}

.learn-section h2 {
    width: 550px;
    color: var(--white);
    letter-spacing: 2px;
}

.learn-section .description-box {
    align-items: baseline;
    margin-top: 0px;
    gap: 80px
}

.learn-section .description-box .left-secction,
.learn-section .description-box .right-section {
    flex: 1 1 100%;
}

.learn-section .description-box .right-section img {
    width: 100%;
    object-fit: contain;
    height: 100%
}

.learn-card p {
    width: 190px;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.learn-card-wrap {
    justify-content: space-evenly;
    margin-left: 50px;
    gap: 40px;
}

.learn-section .left-section p {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.learn-section .left-section p:first-child {
    margin-bottom: 30px;
    color: var(--primary-light-color)
}

.bottom-line-section {
    background: url('https://www.bonafide.ai/_next/static/media/desktop_lightmode_motto_background.e1840847.webp');
    background-size: cover;
    padding: 115px 0 145px
}

.bottom-line-section .bottom-line-wrap {
    height: 590px;
    justify-content: space-between;

}

.bottom-line-section {
    position: relative;
}

.bottom-line-section .bottom-line-block-top {
    height: 105px;
    width: 100px;
    transform: rotate(45deg);
    left: 44px;
    top: -70px;
}

.bottom-line-section .bottom-line-block-middle {
    height: 62px;
    width: 64px;
    transform: rotate(80deg);
    left: 451px;
    top: 70px;
}

.bottom-line-section h2 {
    border-top: 2px solid var(--black);
    padding-top: 24px;
    letter-spacing: 2px;
}

.bottom-line-section p {
    margin-top: auto;
    width: 475px;
    font-size: 20px;
    color: var(--background-second-color);
    line-height: 1.3;
    letter-spacing: 0px;
    border-top: 2px solid var(--background-second-color);
    padding-top: 12px;

}

.teams-section {
    background-color: var(--backgorund-color);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 95px 0;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.team-card .video {
    width: auto;
    height: 350px;
}

.teams-section .team-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px 75px;
}

.teams-section .experience-item {
    gap: 20px
}

.teams-section .experiance-items p {
    font-size: 12px;
    font-weight: 300;
}

.teams-section .subheading {
    color: var(--primary-light-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--black);
    margin-bottom: 2rem;
}

.teams-section h2 {
    width: 665px;
    margin-bottom: 100px;
    letter-spacing: 2px;
}

.teams-section .team-card .team-card-wrap {
    gap: 20px
}

.experience-item {
    margin-top: 10px
}

.experience-item p {
    font-size: 12px;
    line-height: 16px;
    padding-left: 50px;
}

.teams-section .team-card h4,
.teams-section .team-card h3 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 1.2px;

}

.teams-section .team-card .details .domain {
    color: var(--primary-color);
    font-size: 14px;
    padding-top: 30px;
    letter-spacing: 0.5px;

}

.experience-item img {
    width: 75px;
    height: 40px;
    object-fit: contain;

}

.experience-item .logo {
    height: 40px;
    width: 40px
}

.team-experience {
    position: relative;
}

.team-experience::before {
    content: "";
    position: absolute;
    width: 1px;
    top: 0;
    left: 90px;
    height: 100%;
    background: var(--primary-color);
}

.teams-section .short-line {
    width: 315px;
}

.teams-section .investers-container {
    margin-bottom: 70px;
    margin-top: 90px
}

.get-in-touch-section {
    background-color: var(--background-third-color);
    padding: 230px 0 172px;
}

.get-in-touch-section .heading {
    color: var(--white);
    width: 978px;
    font-size: 80px;
    line-height: 0.98;
    letter-spacing: 4px;
    margin-bottom: 32px;

}

.get-in-touch-section a {
    font-size: 26px;
    text-transform: capitalize;
}

.get-in-touch-section .heading span:first-child {
    color: var(--primary-bonafied-blue);
}

.get-in-touch-section .heading span:nth-child(2) {
    color: var(--black);
}

.brand-section {
    background-color: var(--backgorund-color);
    padding: 80px 0 170px
}

.brand-section h3 {
    color: var(--primary-light-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--black);
    margin-bottom: 2rem;
}

.brand-section-wrap {
    gap: 0px;
}

.brand-section-wrap .left-section {
    flex: 1.1
}

.brand-section-wrap .right-section {
    flex: 1.2
}

.brand-section-wrap .right-section p {
    letter-spacing: -0.1px;
}



.brand-section h2 {
    width: 600px;
    margin-bottom: 100px;
}

.brand-section .brand-list {
    margin-top: 145px
}

.brand-section .brand-list.d-web {
    display: block;
}

.brand-section .brand-list li {
    gap: 40px;
    margin-bottom: 65px;
}

.brand-section .brand-list li {
    font-size: 25px;
    font-weight: 500;
}

.brand-section .brand-list li img {
    object-fit: contain;
    height: 100%
}

.testimonial-section {
    background-color: var(--backgorund-color);
    padding-top: 120px;
    padding-bottom: 95px;
    position: relative;
}

.testimonial-wrap {
    gap: 100px
}

.testimonial-section h2 {
    border-top: 2px solid var(--black);
    padding-top: 24px;
    letter-spacing: 2px;
}

.testimonial-section .left-section {
    flex: 0.6
}

.testimonial-section .right-section {
    flex: 1;
    margin-top: 270px;
}

.testimonial-card {
    border: 2px solid var(--black);
    padding: 45px 45px 55px;
    margin-bottom: 23px;
    border-radius: 20px;
}

.testimonial-card:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transition: all 0.1s ease;

}

.testimonial-card:hover .description-box .stat span {
    color: var(--white);
    transition: all 0.1s ease;
}

.testimonial-card:hover svg {
    stroke: var(--white);
    fill: var(--white);
    transition: all 0.1s ease;
}

.testimonial-card>div {
    justify-content: space-between;
}

.testimonial-card .description-box {
    align-items: end;
    margin-top: 55px
}

.testimonial-card .description-box .stat span {
    font-size: 150px;
    line-height: 1.2;
    color: var(--primary-color);
    display: block;
    font-weight: 400;
    letter-spacing: 10px;
}

.testimonial-card .description-box .stat>p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 500;
}

.testimonial-card .description-box .date {
    text-transform: uppercase;
}

.testimonial-card .heading-box a.link {
    height: 100%;
    width: 55px;
    stroke: #1779ab;
}

.testimonial-card .heading-box img {
    width: auto;
    object-fit: contain;
}

.product-card {
    position: relative;

}

.product-card:nth-child(2) p {
    width: 400px
}

.product-card:not(:last-child)::after {
    top: 117px;
    left: 190px;
    bottom: unset;
    right: 0;
    width: calc(100% + 110px);
    height: 0;
    content: '';
    position: absolute;

    border: 1.25px solid #187aab;

}

.product-card:nth-child(2):before {
    content: "";
    position: absolute;
    top: -27.5px;
    left: 0px;
    height: 290px;
    width: 290px;
    background-image: url('http://revamp.skyeglobal.ai/wp-content/uploads/2026/01/Ellipse-8.png');
    background-size: cover;
    transform: rotate(0deg);
    background-color: var(--backgorund-color);
    z-index: 1;
    right: 0px;
    margin: 0 auto;
}

.bg-block {
    background: url('https://www.bonafide.ai/_next/static/media/lightmode_block2.d07deca2.webp');
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}

.testimonials-top-big {
    height: 250px;
    width: 250px;
    right: -65px;
    top: -65px;
    transform: rotate(40deg);
}

.testimonials-top-small {
    height: 150px;
    width: 150px;
    right: -20px;
    top: 200px;
    transform: rotate(60deg);
}

.testimonials-left {
    background: url('https://www.bonafide.ai/_next/static/media/lightmode_wooden_ball_group.afbc4ecb.webp');
    background-size: contain;
    position: absolute;
    height: 250px;
    width: 250px;
    transform: rotate(30deg);
    background-repeat: no-repeat;
    top: 32%;
    left: -15px;
}

.testimonials-bottom-big {
    height: 200px;
    width: 200px;
    bottom: 225px;
}

.testimonials-bottom-small {
    height: 150px;
    width: 150px;
    left: 150px;
    bottom: 135px;
}

.product-section .description-box ul {
    padding-left: 20px
}

.product-section .description-box ul li {
    list-style: disc;

}

.footer-logo {
    width: 270px
}

.footer-menu ul li:last-child,
.footer-social .page-item {
    display: inline-block;
    padding: 7px 30px;
    border-radius: 50px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
}

.footer-menu ul {
    align-items: center;
}

.footer-top {
    justify-content: space-between;
}

.footer-menu ul {
    display: flex;
    gap: 45px;
}

.footer-logo li {
    list-style: none
}

.footer-menu ul li a {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase
}

.custom-footer {
    background-color: var(--background-second-color);
    color: var(--white);
    padding: 50px 0 42px
}

.footer-bottom {
    text-align: right;
    color: var(--primary-bonafied-blue);
    font-size: 12px;
    margin-top: 75px;
}

.footer-social {
    text-align: right;
    margin-top: 28px
}

.footer-social a {
    margin-left: 32px;
}

.section-wrap {
    overflow-x: hidden;
}

.advisor-card-outer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 35px;
    column-gap: 20px;
}

.advisor-card .details h3 {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.advisor-card .details h4 {
    font-size: 16px;
    letter-spacing: 0px;
}

.footer-social .page-item {
    display: none;
}

@media (max-width: 1300px) {
    .header .is-responsive {
        gap: 40px
    }

    .team-card .video {
        height: 350px;
    }

    .product-card:not(:last-child)::after {
        width: calc(100% + 100px);
    }

}

@media (min-width: 2100px) {
    .hero-section {
        background-position: 5% 44%;
        /* background-color: #b0c6d0; */
        /* padding-top: 200px; */
        /* max-width: 1920px; */
        height: 100vh;
    }

    .bottom-line-section {
        HEIGHT: 100VH;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1024px) {
    .team-card .video {
        height: 225px
    }

    .get-in-touch-section .heading {
        width: auto;
    }

    .brand-section h2 {
        width: 500px
    }

    .brand-section-wrap {
        gap: 0
    }

    .footer-logo {
        width: 225px;
    }

    .footer-menu ul {
        gap: 12px;
    }

    .product-card:nth-child(2):before {
        left: -24px;
    }

    .product-section .product-grid {
        gap: 90px;
    }

    .product-card:not(:last-child)::after {
        width: calc(100% + 100px);
    }

    .header .is-responsive {
        gap: 15px;
    }
}

@media(max-width: 768px) {
    .container {
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        font-size: 14px;
        padding: 0.5rem 0 0.150rem;
    }

    h1 {
        font-size: 38.5px;
        line-height: 0.98;
        font-weight: 700;
        letter-spacing: -2px;
    }

    h2 {
        font-weight: 500;
        font-size: 22px;
        line-height: 0.98;
        letter-spacing: 0;
    }

    h3 {
        font-size: 25px;
        line-height: 0.90;
        font-weight: 500;
        letter-spacing: 0;
    }

    h5 {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
    }

    .para1 {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 400;
    }

    .header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section {
        background: url('https://www.bonafide.ai/_next/static/media/mobile_lightmode_hero_background.276c1dd5.webp');
        background-size: cover;
        background-position: 0px -55px;
        padding-bottom: 0;
        background-repeat: no-repeat;
    }

    .learn-more {
        margin-bottom: 5rem;
    }

    .hero-heading-wrap {
        width: 235px;
        padding: 215px 0 115px
    }

    .hero-desc {
        width: auto;
    }

    .product-section,
    .learn-section,
    .teams-section {
        padding: 30px 0 100px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;

    }

    .product-card {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        position: relative;
    }

    .product-card:nth-child(2) p {
        width: auto
    }

    .product-card:nth-child(2):before {
        top: -12.5px;
        left: -12px;
        height: 100px;
        width: 100px;
        transform: rotate(94deg);
        margin: 0
    }

    .product-card:not(:last-child)::after {
        top: 65px;
        left: 40px;
        bottom: unset;
        right: 0;
        width: calc(100% + 190px);
        height: 0;
        content: '';
        position: absolute;
        border: 1.25px solid #187aab;
        height: 130px;
        width: 0;
    }

    .product-card:nth-child(2)::after {
        left: 35px;
        top: 72px;
    }

    .product-section h2 {
        width: 240px;
        margin-bottom: 80px;
    }

    .product-card .img-outer-wrap {
        width: 76px;
        height: 76px;
        margin: 0
    }

    .product-section .description-box {
        margin-top: 0;
        padding-top: 10px;
    }

    .product-section .description-box .desc {
        font-size: 13px;
        line-height: 1.3;
    }

    .bottom-line-section .bottom-line-block-middle {
        height: 20px;
        width: 20px;
        transform: rotate(80deg);
        left: 115px;
        top: 100px;
    }

    .bottom-line-section .bottom-line-block-top {

        height: 30px;
        width: 30px;
        transform: rotate(45deg);
        left: 14px;
        top: 7px;
    }

    .teams-section {
        margin-top: 0;
        padding-bottom: 55px;
    }

    .teams-section h2 {
        width: auto;
        letter-spacing: 0px;
        margin-bottom: 36px;
    }

    .learn-card-wrap {
        margin-left: 30px;
    }

    .learn-section .subheading,
    .product-section .subheading {
        font-size: 16px;
        border-width: 1.25px;
    }

    .learn-section .description-box .left-section p {
        display: inline;
    }

    .product-card:nth-child(2) .img-wrap img {
        width: 28px;
        height: 28px;

    }

    .product-card:nth-child(3) .img-wrap img {
        width: 56px;
        height: 56px;
    }

    .product-section .product-grid {
        gap: 70px;
    }

    .product-card:first-child .img-wrap img {
        width: auto;
        height: 35px;
    }

    .product-card .img-wrap {
        width: 76px;
        height: 76px;
        padding: 40px
    }

    .product-section .product-grid,
    .learn-section .description-box {
        flex-direction: column;
    }


    .learn-section h2 {
        letter-spacing: 0;
        width: auto;
    }

    .learn-section .description-box {
        margin-top: 0
    }

    .learn-section .description-box img {
        height: 230px;
        width: 356px;
    }

    .learn-card p {
        width: auto;
        font-size: 13px;
    }

    .learn-section .left-section p {
        font-size: 13px;
    }

    .learn-section .description-box {
        gap: 32px
    }

    .testimonials-top-big {
        width: 99px;
        height: 96px;
        right: -26px;
        transform: rotate(37deg);
    }

    .testimonials-top-small {
        width: 48px;
        height: 48px;
        top: 45px;
        right: 0;
    }

    .bottom-line-section h2 {
        letter-spacing: 0;
        width: 170px;
        padding-top: 7px;
    }

    .teams-section .team-card-wrapper {
        grid-template-columns: 1fr;
    }

    .teams-section .team-card h4,
    .teams-section .team-card h3 {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .teams-section .team-card .details .domain {
        padding-top: 10px
    }

    .get-in-touch-section {
        padding: 83px 0
    }

    .get-in-touch-section .heading {
        width: auto;
        font-size: 27px;
        letter-spacing: 1px;
    }

    .brand-section-wrap {
        flex-direction: column;
        gap: 50px
    }

    .brand-section h2 {
        width: auto;
        margin-bottom: 50px;
    }

    .brand-section-wrap .right-section p {
        font-size: 12px;
        border-top: 1.25px solid #000000;
        padding-top: 8px;
    }

    .team-card .video {
        height: 150px;
    }

    .testimonial-section {
        padding: 45px 0;
    }

    .testimonials-left {
        width: 68px;
        height: 106px;
        top: 38%
    }

    .testimonial-section h2 {
        width: 190px;
        letter-spacing: 0;
    }

    .testimonials-top-big {
        width: 99px;
        height: 96px;
        right: -26px;
        transform: rotate(37deg);
    }

    .testimonials-top-small {
        width: 48px;
        height: 48px;
        top: 45px;
        right: 0;
    }

    .testimonials-bottom-big {
        width: 99px;
        height: 84px;
        bottom: 89px;
        left: -43px;
        transform: rotate(-67deg);
    }

    .testimonials-bottom-small {
        width: 55px;
        height: 53px;
        left: 20px;
        bottom: 9px;
        transform: rotate(38deg);
    }

    .testimonial-wrap {
        flex-direction: column;
        gap: 0
    }

    .testimonial-card {
        padding: 16px;
        margin-left: 70px;
    }

    .testimonial-card .description-box {
        margin-top: 0;
    }

    .testimonial-card .description-box .stat {
        flex: 1
    }

    .testimonial-card .description-box .stat span {
        font-size: 55px;
        letter-spacing: 0;
    }

    .testimonial-card .description-box .date {
        font-size: 9px
    }

    .testimonial-card .description-box .stat>p {
        font-size: 12px;
        line-height: 14px;
    }

    .testimonial-card .heading-box a.link {
        width: 18px;
    }

    .testimonial-section .right-section {
        margin-top: 50px;
    }


    .bottom-line-section .bottom-line-wrap {
        flex-direction: column;
        height: 450px;
    }


    .bottom-line-section {
        background: url('https://www.bonafide.ai/_next/static/media/mobile_lightmode_motto_background.cd7ed0e8.webp');
        background-size: cover;
        background-repeat: no-repeat;
        padding: 55px 0;
        background-position: bottom;
    }

    .bottom-line-section p {
        width: auto;
        font-size: 14px;
        margin-bottom: 30px;

    }

    .brand-section {
        padding: 36px 0 45px
    }

    .brand-section .left-section .left-img {
        width: 115px;
        height: 107px;

    }

    .brand-section .left-section .left-wrap {
        gap: 55px
    }


    .brand-section .brand-list.d-mobile {
        display: block;
        margin-top: 0
    }

    .brand-section .brand-list li {
        font-size: 12px;
        line-height: 1.2;
        gap: 16px;
        margin-bottom: 6px;
    }

    .brand-section .brand-list li img {
        width: 17px;
        height: 100%;
    }

    .teams-section .subheading {
        margin-bottom: 16px;
        font-size: 16px;
        padding-bottom: 13px;
    }

    .investers-container img {
        width: 94px
    }

    .experience-item p {
        font-size: 16px;
        line-height: 20px;
    }

    .teams-section .team-card .team-card-wrap {
        align-items: center;
    }

    .teams-section .team-card:nth-child(even) .team-card-wrap {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .brand-section .brand-list.d-web {
        display: none;
    }

    .footer-top,
    .footer-menu ul {
        flex-direction: column;
        gap: 20px
    }

    .footer-bottom {
        text-align: left;
        margin-top: 30px;
    }

    .custom-footer {
        padding: 26px 0 16px
    }

    .footer-social {
        margin-top: 40px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-social a {
        margin-left: 0;
        margin-right: 23px;
    }

    .footer-menu ul,
    .footer-top {
        align-items: self-start;
    }

    .footer-menu .page_item:last-child {
        display: none;
    }

    .advisor-card-outer {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 25px;
        column-gap: 8px;
        margin-top: 16px;
    }

    .advisor-card .details h3 {
        font-size: 16px;
        letter-spacing: 0px;
        margin-bottom: 12px;
    }

    .advisor-card .details h4 {
        font-size: 12px;
        letter-spacing: 0px;
    }

    .footer-menu ul li:last-child {
        display: none
    }

    .footer-social .page-item {
        display: block
    }

    .footer-logo {
        width: 100%
    }

    .footer-logo img {
        width: 100%;
        height: 72px;
        border-bottom: 0.75px solid var(--primary-bonafied-night);
        padding-bottom: 16px
    }
}