.logo img.custom-logo {
    max-height: 54.3px;
    display: block;
}
.menu-overlay {
    overflow: auto;
    padding: 40px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}
.menu-overlay::-webkit-scrollbar {
    width: 4px;
}
.menu-overlay::-webkit-scrollbar-track {
    background: transparent;
}
.menu-overlay::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.menu-overlay.is-scrolling::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
}
.menu-items > li {
    line-height: 1.3;
}

.contact-content .contact-text {
/*     margin: 0 auto 40px auto; */
	margin: 0 auto 0 auto;
}
.contact-content .contact-text p {
    font-size: 1.35rem;
}


.contact-content a.btn.btn-primary {
    display: none;
}


.w-75 {
    width: 75%;
}

/*--- HOME HERO SECTION ---*/
.hero-overlay{
	display: none;
}
.custom-new-hero {
    height: 115vh;
    min-height: 900px;
}

/* .hero-title p, .hero-title strong {
    font-size: 7.20rem;
    margin-bottom: 30px;
} */
.hero-title p, .hero-title strong {
    font-size: 7rem;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title h6 {
    font-family: "Space Grotesk", sans-serif;
	font-size: 1.35rem;
	line-height: normal;
}

.hero-title ul {
    list-style: none;
    display: flex;
    grid-gap: 50px;
    font-size: 24px;
	letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 35px;
}
.hero-title ul li {
    display: flex;
    align-items: center;
}
.hero-title ul li:before {
    content: "";
    background-color: #00BFFF;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 15px;
}

.aftertext {
    margin-top: 30px;
}

/*---- HOME ABOUT SECTION ----*/
.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
/*     padding: 0 10px; */
}

.about-image {
    flex: 1;
}
.about-cont {
    flex: 1.5;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-cont .subtitle {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.about-cont h3{
	line-height: 1.2;
}

.about-cont .big-para {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 20px;
}
.about-cont .btn {
    margin-top: 24px;
}
/*---- HOME ABOUT SECTION ENDS ----*/

.logo-section {
    background: #212121;
}



/*---- HOME SERVICE SECTION CSS STARTS ----*/
.services-content {
    grid-template-columns: 1fr 1.3fr;
}
.service-item {
    border-radius: 20px;
    background: #212121;
    padding: 40px 40px;
	gap: 15px;
	overflow: hidden;
}
.service-item::after {
    content: "";
    width: 179px;
    height: 179px;
    background-color: #00BFFF;
	filter: blur(100px);
    position: absolute;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}
.service-outer:nth-child(even) .service-item::after {
    content: "";
    position: absolute;
    bottom: -90px;
	right: -50px;
    left: unset;
    border-radius: 50%;
}

.services-icons {
    counter-reset: serviceNumber;
}
.services-icons .service-outer {
    position: relative;
    counter-increment: serviceNumber;
}
.services-icons .service-outer::before {
    content: counter(serviceNumber, decimal-leading-zero);
    position: absolute;
    background-color: #00BFFF;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    left: -75px;
    top: 0;
    align-items: center;
    justify-content: center;
}

.service-content-col h4 a {
    font-weight: 400;
}
.services-text p {
    width: auto;
}

.services-icons {
    position: relative;
}
.services-icons:before {
    content: "";
    border-left: 1px solid white;
    opacity: 0.63;
    position: absolute;
    left: -50px;
    width: 1px;
    height: 100%;
}

/*---- HOME SERVICE SECTION CSS ENDS ----*/


/*--- HOME WORK SECTION CSS STARTS ----*/
section#work {
    padding-top: 100px;
}
.work-title-container {
    justify-content: space-between;
	align-items: self-start;
}
.work-subtitle {
    width: auto;
    flex-basis: 45%;
}


.team-content {
    display: block;
}
.team-text {
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}
.team-text p {
    flex-basis: 35%;
}

.team-slider-wrapper {
    width: 100%;
	position: relative;
}
.team-slide {
    height: auto;
}

.team-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}
.team-card:hover {
    transform: translateY(0.);
}
.team-card-inner {
    position: relative;
    width: 100%;
    min-height: 385px;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.team-card-front {
    position: relative;
    z-index: 2;
}

.team-card .team-img {
    filter: none;
}

.team-card .member-info {
    padding: 0;
    padding-top: 25px;
	text-align: left;
}
.team-card .member-position {
    margin-bottom: 0;
}
.team-card .member-info h4.slide-title {
    font-weight: 400;
}

.team-card-back {
    position: absolute;
    inset: 0;
    background: #43bdf2;
	padding: 35px 20px;
    transform: rotateY(180deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.team-card-back::-webkit-scrollbar {
    display: none;
}
.team-content-inner p {
    margin-bottom: 0;
    text-align: center;
    line-height: 30px;
}


.team-slider-wrapper .slider-controls {
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}
.slider-prev, .slider-next {
    border-radius: 7px;
    border: 1px solid #FFF;
    background: #FFF;
    width: 50px;
    height: 50px;
}
.slider-prev img, .slider-next img {
    filter: invert(1);
}

/*--- HOME WORK SECTION CSS ENDS ----*/

section.cta-banner {
    background: url(https://millennagenstg.wpenginepowered.com/wp-content/uploads/2026/07/CTABanner-Image.png);
    background-size: cover;
    background-position: center;
}
.contact-section {
    background: none;
    padding: 100px 0;
}


/*---- B180 PAGE CSS STARTS -----*/
.b180-sect {
    padding: 0 0 150px;
}
.b180-sect .about-cont p {
    padding: 40px 0;
}
.b180-sect .about-cont h4 {
    font-size: 1.95rem;
}
/*---- B180 PAGE CSS ENDS ----*/


/*--- ABOUT PAGE CSS STARTS ---*/

.about-sect {
    padding: 0 0 100px;
}
.about-page .hero-title h6 {
    max-width: 75%;
}
.about-sect h4 {
    margin-top: 50px;
}


.difference-section {
    padding: 100px 0;
    overflow: hidden;
    background-size: cover;
}
.difference-title {
    margin: 0 0 50px;
    text-transform: uppercase;
}
.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.difference-item {
    position: relative;
    min-height: 170px;
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.difference-item h4 {
    line-height: 35.1px;
    text-transform: uppercase;
}

/* Bottom border base */
.difference-item:nth-child(-n + 3)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    opacity: 0.36;
    pointer-events: none;
}

/* Item 1 bottom: left fade, right solid */
.difference-item:nth-child(1)::before {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 18%,
        #fff 100%
    );
}

/* Item 2 bottom: full solid */
.difference-item:nth-child(2)::before {
    background: #fff;
}

/* Item 3 bottom: left solid, right fade */
.difference-item:nth-child(3)::before {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 82%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Right border base */
.difference-item:nth-child(1)::after,
.difference-item:nth-child(2)::after,
.difference-item:nth-child(4)::after,
.difference-item:nth-child(5)::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    opacity: 0.36;
    pointer-events: none;
}

/* Top row right borders: transparent top to solid bottom */
.difference-item:nth-child(1)::after,
.difference-item:nth-child(2)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 28%,
        #fff 100%
    );
}

/* Bottom row right borders: solid top to transparent bottom */
.difference-item:nth-child(4)::after,
.difference-item:nth-child(5)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 72%,
        rgba(255, 255, 255, 0) 100%
    );
}

/*--- ABOUT PAGE CSS STARTS ---*/

/*---- BRANDING PAGE CSS STARTS ----*/
section#overview {
    padding-top: 0;
}
.overview-content .overview-text p:first-child {
    display: flex;
    align-items: center;
    gap: 43px;
}



.complex-brands {
    padding: 90px 0;
    background-size: cover;
}

.complex-brands h3 {
    text-transform: uppercase;
    margin-bottom: 32px;
}

.complex-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.complex-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: url(../images/iccons/ComplexItem-BG.png) no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 100px 40px 30px;
    position: relative;
    min-height: 245px;
}
.complex-item img.sidee {
    position: absolute;
    right: 0;
    bottom: 0;
}
.complex-icon {
    flex-shrink: 0;
}
.complex-item p {
    font-family: "Anton", sans-serif;
    font-size: 1.625rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .complex-items {
        grid-template-columns: 1fr;
    }
}


.sub-services-section > p {
    font-family: Anton;
    font-size: 30px;
    text-transform: uppercase;
}
.sub-services-grid {
    gap: 0;
}
.sub-service {
    padding: 35px;
	position: relative;
}
.sub-service h4 {
    line-height: normal;
}
.sub-service:nth-child(-n + 3)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    opacity: 0.36;
    pointer-events: none;
}

.sub-service:nth-child(1)::before {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 18%,
        #fff 100%
    );
}
.sub-service:nth-child(2)::before {
    background: #fff;
}
.sub-service:nth-child(3)::before {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 82%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Right border base */
.sub-service:nth-child(1)::after,
.sub-service:nth-child(2)::after,
.sub-service:nth-child(4)::after,
.sub-service:nth-child(5)::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    opacity: 0.36;
    pointer-events: none;
}

.sub-service:nth-child(1)::after,
.sub-service:nth-child(2)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 28%,
        #fff 100%
    );
}
.sub-service:nth-child(4)::after,
.sub-service:nth-child(5)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 72%,
        rgba(255, 255, 255, 0) 100%
    );
}


/*---- BRANDING PAGE CSS ENDS ----*/


/*---- RESOURCES PAGE CSS STARTS ----*/
nav.resources-nav {
    padding: var(--spacing-xl) 0;
}
.blogs-scrolls {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.blogs-scrolls .scroll-item .imagee img {
    width: 100%;
}
.scroll-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-image-full img {
    height: 486px;
    object-fit: cover;
    object-position: center;
}


/*---- RESOURCES PAGE CSS ENDS ----*/

/*--- SERVICES PAGE CSS STARTS ---*/


.services-hero-section {
    top: 0;
    padding-top: 7rem;
    min-height: auto;
}
.service-hero-image {
    width: 100%;
}

.services-page .agency-logo {
    width: auto;
}

.our-services-section {
    padding-top: 7rem;
}
.our-services-section .section-title {
    padding: 0;
}

.service-row {
    gap: 60px;
}
.service-image {
  flex: 0 0 50%;
  max-width: 50%;
}
.service-info {
    padding: 0;
}
.servicework-title{
	text-transform: uppercase;
}

.services-page .subwork-section {
    padding-top: 40px !important;
    padding-bottom: 100px !important;
}

/*--- SERVICES PAGE CSS ENDS ---*/

/*----- SERVICES INNER PAGES CSS STARTS ----*/
.custom-service-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    height: auto;
    align-items: self-start;
    min-height: 90vh;
}
.branding-image-grid .grid-row {
    gap: 1rem;
}
.branding-image-grid img {
    margin-bottom: 0;
}
.branding-image-grid p {
    font-size: 1.625rem;
    color: white !important;
}

.testimonials-slider {
    padding-bottom: 40px !important;
}
.testimonial-slide, .testimonial-quote-text {
    padding: 0;
}
.testimonial-quote-text {
    padding-top: 20px;
}

footer.testimonial-quote-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 45%;
}
.user-meta span {
    font-family: Anton;
    font-size: 18px;
    display: block;
}
.user-meta span.testimonial-company {
    font-family: "Space Grotesk";
    font-size: 16px;
}

/*----- SERVICES INNER PAGES CSS ENDS ----*/


/*---- LEADERSHIP PAGE CSS STARTS ----*/
.leadership-hero-desc p strong {
    margin-top: 15px;
    display: inline-block;
    text-transform: uppercase;
}
.work-hero-section {
    padding: 7rem 0 2rem 0;
}
.work-portfolio-wrapper {
    padding-bottom: 100px;
}

/*---- LEADERSHIP PAGE CSS ENDS ----*/


/*---- CAREERS PAGE CSS STARTS  ----*/
.careers-page .agency-logo {
  z-index: 1;
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 25%;
  height: auto;
}
.careers-page .agency-logo {
    width: auto;
}

section.careers-why-section {
    margin-top: -16%;
}
.careers-why-title {
    font-size: 3.125rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.careers-benefits-grid {
    gap: 0;
}
.careers-benefit {
    padding: 35px;
	position: relative;
}
.careers-benefit h4 {
    line-height: normal;
}
.careers-benefit:nth-child(-n + 3)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    opacity: 0.36;
    pointer-events: none;
}

.careers-benefit:nth-child(1)::before {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 18%,
        #fff 100%
    );
}
.careers-benefit:nth-child(2)::before {
    background: #fff;
}
.careers-benefit:nth-child(3)::before {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 82%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Right border base */
.careers-benefit:nth-child(1)::after,
.careers-benefit:nth-child(2)::after,
.careers-benefit:nth-child(4)::after,
.careers-benefit:nth-child(5)::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    opacity: 0.36;
    pointer-events: none;
}

.careers-benefit:nth-child(1)::after,
.careers-benefit:nth-child(2)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #fff 28%,
        #fff 100%
    );
}
.careers-benefit:nth-child(4)::after,
.careers-benefit:nth-child(5)::after {
    top: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 72%,
        rgba(255, 255, 255, 0) 100%
    );
}

.careers-positions-section {
    padding: var(--spacing-side);
}

.positions-desc {
    font-weight: 500;
    color: #ffffff;
}

/*---- CAREERS PAGE CSS ENDS ----*/


/*--- CONTACT US PAGE CSS STARTS ----*/

.contact-page-content .logo-section {
    background: #000000;
}

.contact-location {
    padding: 80px 0 0;
}
.contact-location h2 {
    margin-bottom: 50px;
}
.contact-page-content .page-body {
    padding-bottom: 0;
}

.contact-location .location-card h5 {
    font-size: 40px;
    margin-top: 20px;
}

/*--- CONTACT US PAGE CSS ENDS ----*/


.post-hero-section .hero-overlay,
.ebook-hero-section .hero-overlay {
    display: block;
}


/*----- B180 LANDING PAGE CSS STARTS -----*/

body.page-id-18241 button.menu-toggle {
    display: none;
}

.b180-landing h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-image {
    position: relative;
}
.image-text {
    position: absolute;
    bottom: 20px;
    z-index: 9999;
    background-color: rgb(0 0 0 / 65%);
    width: 90%;
    left: 5%;
    padding: 20px 20px;
}
.image-text p.blue-text {
    text-transform: uppercase;
    color: #00BFFF;
    font-size: 0.85rem;
}
.image-text p {
    margin: 0;
    font-size: 1rem;
}


section.brand-system-section {
    padding-top: 90px;
    padding-bottom: 90px;
}
.brand-system-header {
    margin-bottom: 40px;
}
h3.brand-system-title {
    text-transform: uppercase;
    line-height: 1.2;
}
.brand-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}
.brand-system-item{
	position: relative;
}
.brand-system-item:not(:last-child):before {
    content: "";
    opacity: 0.36;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 7.04%, #FFF 92.79%, rgba(255, 255, 255, 0.00) 100%);
    width: 1px;
    height: 100%;
    position: absolute;
    right: -20px;
}
h4.brand-system-item-title {
    text-transform: uppercase;
    margin-bottom: 25px;
}
p.brand-system-item-text {
    color: #A1A1A1;
}
.brand-system-icon {
    margin-bottom: 15px;
}


section.engineered-section {
    background-size: cover;
    padding: 100px 0;
}
.heading-col h2 {
    text-transform: uppercase;
}

.engineered-row {
    display: flex;
    grid-gap: 40px;
}
.eng-item h4 {
    margin-bottom: 12px;
    text-transform: uppercase;
}
.eng-item p {
    color: #A1A1A1;
}
.eng-item:not(:last-child) {
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}


section.brand-audit {
    padding: 90px 0;
}
.audit-row {
    display: flex;
    gap: 90px;
}
.audit-text-col, .audit-price-col {
    flex: 1;
}

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

.audit-price-col {display: flex;flex-direction: column;nter;justify-content: center;padding: 0 40px;border-radius: 20px;background: #212121;}
.audit-row p:not(.subtitle) {
    color: #A1A1A1;
}
.audit-row h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

h3.price {
    color: #00BFFF;
}
.audit-price-col ul {
    list-style: none;
    font-size: 1.125rem;
    font-family: 'Space Grotesk';
    color: #A1A1A1;
    margin-bottom: 30px;
}
.audit-price-col ul li:before {
    content: "✦";
    color: #00BFFF;
    margin-right: 14px;
}


.trackColumn {
    display: flex;
    align-items: flex-end;
    gap: 100px;
    margin-top: -60px;
}
.trackBox {
    width: 55%;
}
.track-items-col {
    width: 45%;
}

.trackBox .complex-item {
    min-height: auto;
}
.complex-cont p {
    font-family: "Space Grotesk", sans-serif;
    text-transform: unset;
    font-size: 1.125rem;
    color: #A1A1A1;
}

.complex-cont h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
}
.track-items-col .eng-item h4 {
    margin-bottom: 7px;
}


section.complex-built {
    padding: 100px 0;
    background: #212121;
}
.companies-col {
    text-align: center;
}
.companies-col h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
}
.companies-col p {
    color: #A1A1A1;
}
.companies-col p strong {
    color: white;
}
.companies-col ul {
    list-style: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.companies-col ul li {
    border-radius: 4px;
    border: 1px solid #FFF;
    padding: 7px 22px;
}





/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 100px 0;
}

.faq-row {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
    gap: 100px;
    align-items: start;
}

/* Left content */

.faq-title {
    text-transform: uppercase;
    line-height: 1.1;
}

.faq-intro {
    max-width: 250px;
    margin: 28px 0 0;
    color: #A1A1A1;
}

/* Accordion column */

.faq-items-col {
    border-top: 1px solid #202020;
}
.faq-item {
    border-bottom: 1px solid #202020;
}

/* Question button */

.faq-question {
    width: 100%;
    min-height: 78px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
	text-align: left;
    gap: 30px;
    cursor: pointer;
}

.faq-question > span:first-child {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.faq-question:hover > span:first-child {
    color: #c4c4c4;
}

/* Plus/minus icon */

.faq-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    font-size: 0;
	transition: all 0.4s ease-in;
}
span.faq-icon:before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Answer */

.faq-answer {
    display: none;
    padding: 0 50px 30px 0;
}
.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #A1A1A1;
    font-weight: 400;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .faq-section {
        padding: 85px 0;
    }

    .faq-row {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
        gap: 30px;
    }

    .faq-question > span:first-child {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 65px 0;
    }


    .faq-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-heading-col {
        position: static;
    }

    .faq-intro {
        max-width: 100%;
        margin-top: 20px;
        font-size: 16px;
    }

    .faq-question {
        min-height: 70px;
        padding: 20px 0;
        gap: 20px;
    }

    .faq-question > span:first-child {
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 25px 24px 0;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.55;
    }
}


.program-section {
    padding: 40px 0 100px;
}

.program-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.95fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}

.program-heading h3 {
    text-transform: uppercase;
    line-height: 1.1;
}
.program-intro p {
    margin: 0;
    line-height: 1.25;
}

.program-tabs {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.program-tab-buttons {
    border: 1px solid #2d2d2d;
}

.program-tab-button {
    position: relative;
    width: 100%;
    min-height: 118px;
    padding: 28px 6px 28px 10px;
    border: 0;
    border-bottom: 1px solid #2d2d2d;
    background: transparent;
    color: #666;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.program-tab-button:last-child {
    border-bottom: 0;
}

.program-tab-button::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -1px;
    width: 4px;
    height: 50%;
    background: #00bfff;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
}

.program-tab-button:hover,
.program-tab-button.active {
    color: #fff;
    background: #050505;
}

.program-tab-button.active::after {
    opacity: 1;
    transform: scaleY(1);
}

.program-tab-number {
    flex: 0 0 24px;
    font-size: 16px;
    color: currentColor;
}

.program-tab-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-tab-text small {
    color: currentColor;
    font-size: 15px;
    line-height: 1;
}

.program-tab-button.active .program-tab-text small {
    color: #00bfff;
}

.program-tab-text strong {
    color: currentColor;
    font-family: 'Anton';
    font-weight: 400;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
}

.program-tab-content {
    min-width: 0;
}

.program-tab-panel {
    display: none;
    grid-template-columns: 1fr 1.15fr;
    gap: 25px;
    align-items: stretch;
}

.program-tab-panel.active {
    display: grid;
    animation: programFade 0.45s ease;
}

.program-image {
    min-height: 440px;
    overflow: hidden;
}

.program-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.program-details h3 {
    margin: 0 0 22px;
    font-size: 2.25rem;
    text-transform: uppercase;
}

.program-description {
    margin: 0;
    color: #A1A1A1;
    line-height: 1.4;
}

.program-deliverable {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #00bfff;
}

.program-deliverable span {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.program-deliverable strong {
	display: block;
    color: #00bfff;
}

@keyframes programFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@media (max-width: 1024px) {
    .program-section {
        padding: 20px 0 80px;
    }
	.program-tab-text strong {
		font-size: 20px;
	}
	.program-tab-text small {
		font-size: 14px;
	}
	.program-details h3 {
		font-size: 2rem;
	}
	
    .program-header {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .program-tabs {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .program-tab-panel {
        grid-template-columns: 1fr;
    }

    .program-image {
        min-height: 360px;
    }

    .program-details {
        padding: 10px 0 20px;
    }
}

@media (max-width: 767px) {
	.program-section {
        padding: 0 0 65px;
    }
	
    .program-header {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 45px;
    }


    .program-tabs {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-tab-buttons {
        display: flex;
        overflow-x: auto;
        border: 0;
        scrollbar-width: none;
    }

    .program-tab-buttons::-webkit-scrollbar {
        display: none;
    }

    .program-tab-button {
        flex: 0 0 230px;
        min-height: 100px;
        border: 1px solid #2d2d2d;
        border-right: 0;
    }

    .program-tab-button:last-child {
        border-right: 1px solid #2d2d2d;
        border-bottom: 1px solid #2d2d2d;
    }

    .program-tab-button::after {
        top: auto;
        right: 20%;
        bottom: -1px;
        left: 20%;
        width: 60%;
        height: 3px;
        transform: scaleX(0);
    }

    .program-tab-button.active::after {
        transform: scaleX(1);
    }

    .program-tab-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .program-image {
        min-height: 320px;
    }

    .program-details h3 {
        font-size: 30px;
    }

    .program-description,
    .program-deliverable strong {
        font-size: 16px;
    }
}


/*----- B180 LANDING PAGE CSS ENDS -----*/

/*---- FOOTER CSS STARTS ----*/

.footer-inner {
    margin-bottom: 50px;
    padding: 0 45px;
    padding-top: 80px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255 255 255 / 41%);
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.footer-logonew img {
    width: 288px;
    height: 65px;
    aspect-ratio: 288/65;
}
.footer-contact {
    color: #FFF;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: 1px;
    display: flex;
    grid-gap: 30px;
}
.footer-contact a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}


.footer-main {
    display: flex;
    justify-content: space-between;
}
.footer-links ul.footer-menu-items {
    display: block;
    padding: 0;
}
.footer-links ul.footer-menu-items li {
    margin-bottom: 10px;
}

h4.footer-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.location-grid {
    display: flex;
    grid-gap: 25px;
}
.footer-locations {
    width: 45%;
}
.location-card, .location-card img {
    width: 100%;
}
.location-card h5 {
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}


.social-icons {
    flex-direction: column;
}
.social-icons a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.footer-copyright {
    width: 50%;
    margin-top: -40px;
    z-index: 1;
}

.footer-section {
    overflow: hidden;
}
.footer-big-text {
    text-align: center;
    /* text-shadow: 0 0 20px rgba(0, 191, 255, 0.30); */
    font-size: 16vw;
    font-weight: 400;
    line-height: 16vw;
    text-transform: uppercase;
    opacity: 0.33;
    background: linear-gradient(180deg, #FFF 0%, #000 87.95%);
    /* background-clip: text; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -7vw;
    position: relative;
    z-index: -1;
}
/*---- FOOTER CSS ENDS ----*/


/*----- MEDIA QUEIRES CSS STARTS -----*/

@media only screen and (max-width:1024px){
	
	
:root {
  --font-size-h1: 6.25rem;
  --font-size-h2: 5.875rem;
  --font-size-h3: 2.125rem;
  --font-size-h4: 1.325rem;
}
	

.custom-new-hero {
    height: 100vh;
}
.hero-title p, .hero-title strong {
    font-size: 6.25rem;
}
.hero-title h6 {
    font-size: 1.125rem;
}
.hero-title ul {
    grid-gap: 35px;
    font-size: 20px;
    letter-spacing: 1px;
}
	
	
.about-content {
    gap: 20px;
    padding: 0 20px;
	flex-direction: column;
}
.about-image {
    width: 100%;
}

.services-content{
	gap: 70px;
}
.services-icons:before {
    left: -35px;
}
.services-icons .service-outer::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
    left: -55px;
}
	
.about-cont .subtitle {
    margin-bottom: 15px;
    font-size: 1rem;
}
.about-cont .big-para {
    font-size: 1.15rem;
    margin-top: 10px;
}
p {
    margin-bottom: 10px;
    font-size: 1rem;
}
.btn {
    font-size: 1rem;
    letter-spacing: 1.6px;
    padding-right: 45px;
}
	
.services-text h3 {
    font-size: 2.125rem;
}
.service-item {
    border-radius: 15px;
    padding: 30px 20px;
}
	
.work-title-container {
    gap: 2em;
}
.work-title {
    font-size: 2.125rem;
}
.team-text .h3 p {
    font-size: 2.125rem;
}

.contact-content h2 {
    font-size: 5.875rem;
}
.contact-content .contact-text p {
    font-size: 1.15rem;
}
	
	
.footer-inner {
    padding: 0 40px;
    padding-top: 50px;
}
.footer-top {
    display: block;
}
.footer-logonew {
    margin-bottom: 15px;
}

.location-grid {
    grid-gap: 20px;
}
	
h4.footer-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-menu-items a {
    font-size: 0.9rem;
}
	
.location-card h5 {
    font-size: 18px;
}
	
.footer-copyright {
    width: 100%;
    margin-top: 20px;
}
	
.footer-big-text {
    font-size: 23vw;
    line-height: 23vw;
    margin-bottom: -8vw;
}
	
.about-page .hero-title h6 {
    max-width: 90%;
}
.difference-item {
    padding: 35px 20px;
}

	
.services-hero-section {
    height: auto;
}
.theme-np-container {
    padding-inline: 0 20px;
}
.our-services-section {
    padding-top: 3rem;
}
.service-image {
    flex: 0 0 100%;
    max-width: 100%;
	width: 100%;
}
	
.service-row {
    flex-direction: column;
	gap: 30px;
}

.our-services-section .section-title {
    font-size: 5.875rem;
}
.service-row:nth-child(even) {
    flex-direction: column-reverse;
}
.leadership-hero-desc p {
    margin-bottom: 0;
    font-size: 1.325rem;
}
.different-title p {
    font-size: 5.875rem;
}
.different-desc {
    font-size: 1.325rem;
}
	
.leadership-hero-section {
    align-items: flex-start;
	height: auto;
}
.different-right {
    flex: initial;
}
.work-hero-section {
	min-height: auto;
}
	
.custom-service-hero {
    min-height: auto;
}
	
section.careers-why-section {
    margin-top: 0;
}

.careers-benefits-grid{
  grid-template-columns: repeat(3, 1fr);
}
.careers-benefit {
    padding: 20px;
}
	
.sub-services-grid {
	grid-template-columns: repeat(3, 1fr);
}
.sub-service {
    padding: 20px;
    position: relative;
}
	
.branding-image-grid p {
    font-size: 1.125rem;
}
.overview-content p, .branding-image-grid p {
    font-size: 1.125rem;
}
	
.careers-hero-section .container,
.careers-why-section,
.openings-apply-section,
.careers-positions-section {
    padding: 60px 0;
}
.careers-positions-section {
    padding: var(--spacing-side) 0;
}
	
	
.audit-row {
    gap: 30px;
}
.audit-price-col ul {
    font-size: 1rem;
}
.audit-price-col ul li:before {
    margin-right: 8px;
}
p.subtitle {
    font-size: 1rem;
}
.audit-price-col {
    padding: 30px 15px;
    border-radius: 15px;
}
	
.program-tab-buttons {
    height: fit-content;
}
	
.trackColumn {
    gap: 50px;
}
.complex-cont p {
    font-size: 1rem;
}
section.complex-built {
    padding: 70px 0;
}
.companies-col ul {
    margin-top: 20px;
    font-size: 0.875rem;
}

.w-75 {
    width: 95%;
}
	
}


@media only screen and (max-width:767px){
	
:root {
  --font-size-h1: 3.75rem;
  --font-size-h2: 2.875rem;
  --font-size-h3: 2.125rem;
  --font-size-h4: 1.325rem;
}
	
.custom-new-hero {
    height: auto;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
}
	
.hero-title p, .hero-title strong {
    font-size: 3.75rem;
}
.hero-title h6 {
    font-size: 1rem;
}
	
.hero-title ul {
    display: block;
}
.hero-title ul li:before {
    width: 15px;
    height: 15px;
}
	
.btn {
	max-width: max-content;
}
.hero-buttons {
    align-items: flex-start;
    gap: 15px;
}
	
	
.services-content {
    grid-template-columns: 1fr;
}
.services-icons .service-outer::before, .services-icons:before {
    display: none;
}
	
.services-section {
    padding: 70px 0 70px 0;
}
.logo-section {
	padding: 20px 0 0 0;
}
	
.work-subtitle {
    text-align: left;
}
	
	
.team-section {
    padding-top: 0;
}
.team-text {
    display: block;
}
.team-text .h3 p {
    margin-bottom: 10px;
}
.team-card:hover .team-card-inner {
    transform: none;
}
.team-card-front, .team-card-back {
    height: auto;
}
.team-card-back {
    position: relative;
    transform: none;
    padding: 0;
    background: none;
    margin-top: 20px;
}
	
	
.contact-section {
    padding: 70px 0;
}
	
	
.footer-contact {
    flex-direction: column;
    gap: 10px;
}
	
.footer-main {
    display: block;
}
.footer-locations {
    width: 100%;
}
.footer-links {
    margin: 40px 0;
}
.location-grid {
    grid-gap: 10px;
}
.footer-copyright {
    margin-top: 50px;
}
	
	
.about-page .hero-title h6 {
    max-width: 100%;
}
.contact-content h2 {
    font-size: 3.275rem;
}
.contact-content .contact-text p {
    font-size: 1rem;
}


.difference-section {
    padding: 70px 0;
}
.difference-grid {
	grid-template-columns: 1fr;
}
.difference-item {
    padding: 20px 20px;
    min-height: auto;
}
.difference-item:not(:last-child) {
    border-bottom: 1px solid rgb(255 255 255 / 36%);
}
.difference-item::before, .difference-item::after {
	display:none;
}
	
.about-page .team-section {
    padding-top: 70px;
    padding-bottom: 50px;
}
.about-sect h4 {
    margin-top: 30px;
}

	
.careers-benefits-grid{
  grid-template-columns: repeat(1, 1fr);
}
.careers-benefit::before, .careers-benefit::after {
    display: none;
}
.careers-benefit:not(:last-child) {
    border-bottom: 1px solid rgb(255 255 255 / 36%);
}
	
.services-hero-section {
    padding-top: 5rem;
}
.service-hero .hero-subtitle {
    font-size: 2.125rem;
    line-height: 60px;
}
.our-services-section .section-title {
    font-size: 2.875rem;
}
	
  .our-services-section,
  .brands-section {
    padding: 40px 20px;
  }
	
.work-header {
    margin-bottom: 40px;
}
.leadership-hero-section {
    padding: 5rem 0 var(--spacing-md) 0;
}
.leadership-hero-desc p {
        font-size: 1rem;
    }
.different-title p {
        font-size: 2.875rem;
    }
	
.work-hero-section {
    padding: 5rem 0 2rem 0;
}
.work-hero-description p {
    font-size: 1rem;
}
	
.blogs-scrolls {
    grid-template-columns: repeat(1, 1fr);
}
	
.contact-hero-section {
    padding: 5rem 0 0 0;
}
.contact-location .location-card h5 {
    font-size: 20px;
    margin-top: 10px;
}
	
.branding-image-grid h3 {
    font-size: 2.125rem;
}
.branding-image-grid p {
    font-size: 1rem;
}
.sub-services-section h3 {
    font-size: 2.125rem;
}
	
.sub-services-grid{
  grid-template-columns: repeat(1, 1fr);
}
.sub-service::before, .sub-service::after {
    display: none;
}
.sub-service:not(:last-child) {
    border-bottom: 1px solid rgb(255 255 255 / 36%);
}
	
.services-page .work-title {
	width: auto;
    text-align: left;
}
	
footer.testimonial-quote-footer {
    width: 100%;
}
.testimonials-section blockquote p {
    font-size: 1.625rem;
}
.overview-content .overview-text p:first-child {
    display: block;
}
.overview-content p {
    font-size: 1rem;
}
.complex-item p {
    font-size: 1rem;
}
	
.podcast-hero-title, .ebook-hero-title, .post-hero-title {
    font-size: 3rem;
}
	
.brand-system-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
h3.brand-system-title br {
    display: none;
}
section.engineered-section {
    padding: 50px 0;
}
.engineered-row {
    display: block;
}
.heading-col {
    margin-bottom: 40px;
}
	
section.brand-audit {
    padding: 50px 0;
}
.audit-row {
    display: block;
}

.audit-text-col {
    margin-bottom: 30px;
}

.trackColumn {
    display: block;
}
.trackBox, .track-items-col {
    width: 100%;
}
.trackBox {
    margin-bottom: 50px;
}
	
.companies-col ul {
    flex-direction: column;
}

.w-75 {
    width: 100%;
}
	
}