.aa3d-simple-home,
.aa3d-simple-home *{
  box-sizing:border-box;
}

.aa3d-simple-home{
  --aa3d-black:#050505;
  --aa3d-black-soft:#0b0b0b;
  --aa3d-white:#ffffff;
  --aa3d-cream:#f4f1ea;
  --aa3d-gold:#c89223;
  --aa3d-line:rgba(255,255,255,.13);
  --aa3d-muted:rgba(255,255,255,.60);
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
  background:var(--aa3d-black);
  color:var(--aa3d-white);
  font-family:'Manrope',Arial,sans-serif;
}

.aa3d-simple-container,
.aa3d-home-section-inner{
  width:min(1460px,calc(100% - 80px));
  margin:0 auto;
}

.aa3d-visually-hidden{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* HERO */
.aa3d-simple-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#050505;
}

.aa3d-simple-slide{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  opacity:0;
  transform:scale(1.035);
  transition:opacity 1.2s ease,transform 6s ease;
}

.aa3d-simple-slide.active{
  opacity:1;
  transform:scale(1.09);
}

.aa3d-simple-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.77) 0%,rgba(0,0,0,.50) 38%,rgba(0,0,0,.17) 73%,rgba(0,0,0,.28) 100%),
    linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.72));
}

.aa3d-simple-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:138px 0 102px;
  transform:translateY(-24px);
}

.aa3d-simple-hero h1{
  max-width:650px;
  margin:0;
  font-size:clamp(42px,4.35vw,62px);
  line-height:1.01;
  letter-spacing:-.047em;
  font-weight:700;
  text-wrap:balance;
}

.aa3d-simple-hero p{
  max-width:560px;
  margin:22px 0 0;
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.7;
}

.aa3d-simple-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.aa3d-simple-btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 21px;
  border:1px solid rgba(255,255,255,.40);
  background:transparent;
  color:#fff!important;
  text-decoration:none!important;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .22s ease,border-color .22s ease,background .22s ease,color .22s ease;
}

.aa3d-simple-btn.is-light{
  border-color:#fff;
  background:#fff;
  color:#111!important;
}

.aa3d-simple-btn:hover,
.aa3d-simple-btn:focus-visible{
  transform:translateY(-2px);
  border-color:var(--aa3d-gold);
  background:var(--aa3d-gold);
  color:#111!important;
}

/* STATISTICS */
.aa3d-stats{
  width:100%;
  padding:92px 40px 88px;
  background:#050505;
  border-top:1px solid var(--aa3d-line);
  border-bottom:1px solid var(--aa3d-line);
}

.aa3d-stats-inner{
  width:min(1460px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.aa3d-stat-item{
  min-height:210px;
  padding:28px 7%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-right:1px solid var(--aa3d-line);
}

.aa3d-stat-item:last-child{
  border-right:0;
}

.aa3d-stat-value{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.aa3d-stat-number{
  color:#fff;
  font-size:clamp(64px,7vw,108px);
  line-height:.88;
  letter-spacing:-.065em;
  font-weight:800;
}

.aa3d-stat-plus{
  margin:1px 0 0 6px;
  color:var(--aa3d-gold);
  font-size:clamp(24px,2.4vw,42px);
  line-height:1;
  font-weight:700;
}

.aa3d-stat-label{
  margin:24px 0 0;
  color:rgba(255,255,255,.68);
  font-size:12px;
  line-height:1.5;
  letter-spacing:.11em;
  text-transform:uppercase;
  font-weight:700;
}

.aa3d-stat-subtitle{
  margin:8px 0 0;
  color:rgba(255,255,255,.42);
  font-size:12px;
  line-height:1.55;
}

/* SHARED SECTION TYPOGRAPHY */
.aa3d-section-eyebrow{
  display:block;
  margin-bottom:20px;
  color:var(--aa3d-gold);
  font-size:11px;
  line-height:1.4;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}

.aa3d-section-heading-row h2{
  max-width:780px;
  margin:0;
  color:#fff;
  font-size:clamp(31px,3.2vw,48px);
  line-height:1.08;
  letter-spacing:-.042em;
  font-weight:650;
  text-wrap:balance;
}

/* SHORT ABOUT */
.aa3d-home-about{
  padding:126px 0 132px;
  background:var(--aa3d-cream);
  color:#111;
}

.aa3d-home-about .aa3d-section-eyebrow{
  color:#8d6416;
}

.aa3d-home-about h2{
  max-width:1120px;
  margin:0;
  color:#111;
  font-size:clamp(35px,4.15vw,61px);
  line-height:1.08;
  letter-spacing:-.048em;
  font-weight:480;
  text-wrap:balance;
}

.aa3d-text-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:42px;
  padding-bottom:6px;
  border-bottom:1px solid rgba(0,0,0,.28);
  color:#111;
  text-decoration:none;
  font-size:13px;
  font-weight:750;
}

.aa3d-text-link span{
  transition:transform .2s ease;
}

.aa3d-text-link:hover span{
  transform:translateX(4px);
}

/* CLIENTS */
.aa3d-home-clients{
  padding:112px 0 120px;
  background:#090909;
  border-top:1px solid var(--aa3d-line);
}

.aa3d-home-logo-grid{
  margin-top:72px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:30px;
}

.aa3d-home-logo-item{
  min-height:155px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.018);
}

.aa3d-home-logo-item img{
  width:100%;
  max-width:220px;
  max-height:82px;
  display:block;
  object-fit:contain;
  filter:grayscale(1) brightness(0) invert(1);
  opacity:.58;
  transition:opacity .25s ease,transform .25s ease;
}

.aa3d-home-logo-item:hover img{
  opacity:1;
  transform:scale(1.025);
}

/* TESTIMONIALS */
.aa3d-home-testimonials{
  padding:112px 0 130px;
  background:#050505;
  border-top:1px solid var(--aa3d-line);
}

.aa3d-home-testimonial-grid{
  margin-top:68px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.aa3d-home-testimonial-card{
  min-height:340px;
  padding:34px 31px 31px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--aa3d-line);
  background:rgba(255,255,255,.018);
}

.aa3d-home-quote{
  color:var(--aa3d-gold);
  font-family:Georgia,serif;
  font-size:58px;
  line-height:.75;
}

.aa3d-home-testimonial-card > p{
  flex:1;
  margin:38px 0 48px;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.78;
}

.aa3d-home-testimonial-author strong{
  display:block;
  color:#fff;
  font-size:14px;
  font-weight:750;
}

.aa3d-home-testimonial-author span{
  display:block;
  margin-top:7px;
  color:rgba(255,255,255,.43);
  font-size:12px;
  line-height:1.5;
}

/* TABLET */
@media(max-width:1024px){
  .aa3d-simple-container,
  .aa3d-home-section-inner{
    width:min(100% - 56px,1200px);
  }

  .aa3d-simple-hero-inner{
    transform:translateY(-14px);
  }

  .aa3d-stats{
    padding-left:28px;
    padding-right:28px;
  }

  .aa3d-stat-item{
    min-height:190px;
    padding-left:5%;
    padding-right:5%;
  }

  .aa3d-home-logo-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .aa3d-home-testimonial-grid{
    grid-template-columns:1fr;
  }

  .aa3d-home-testimonial-card{
    min-height:270px;
  }
}

/* MOBILE */
@media(max-width:700px){
  .aa3d-simple-container,
  .aa3d-home-section-inner{
    width:calc(100% - 40px);
  }

  .aa3d-simple-hero{
    min-height:100svh;
  }

  .aa3d-simple-hero-inner{
    padding:126px 0 66px;
    transform:translateY(-8px);
  }

  .aa3d-simple-hero h1{
    max-width:520px;
    font-size:clamp(38px,11vw,48px);
    line-height:1.02;
  }

  .aa3d-simple-hero p{
    max-width:480px;
    font-size:15px;
    line-height:1.68;
  }

  .aa3d-simple-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .aa3d-simple-btn{
    min-width:175px;
  }

  .aa3d-stats{
    padding:56px 20px;
  }

  .aa3d-stats-inner{
    grid-template-columns:1fr;
  }

  .aa3d-stat-item{
    min-height:160px;
    padding:35px 12px;
    border-right:0;
    border-bottom:1px solid var(--aa3d-line);
  }

  .aa3d-stat-item:last-child{
    border-bottom:0;
  }

  .aa3d-stat-number{
    font-size:70px;
  }

  .aa3d-home-about{
    padding:84px 0 90px;
  }

  .aa3d-home-about h2{
    font-size:34px;
    line-height:1.12;
  }

  .aa3d-home-clients,
  .aa3d-home-testimonials{
    padding:82px 0 92px;
  }

  .aa3d-section-heading-row h2{
    font-size:32px;
  }

  .aa3d-home-logo-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:48px;
  }

  .aa3d-home-logo-item{
    min-height:112px;
    padding:18px;
  }

  .aa3d-home-testimonial-grid{
    margin-top:48px;
  }

  .aa3d-home-testimonial-card{
    min-height:auto;
    padding:28px 24px;
  }
}

@media(max-width:420px){
  .aa3d-home-logo-grid{
    grid-template-columns:1fr;
  }

  .aa3d-home-logo-item{
    min-height:120px;
  }
}

@media(prefers-reduced-motion:reduce){
  .aa3d-simple-slide,
  .aa3d-simple-btn,
  .aa3d-home-logo-item img,
  .aa3d-text-link span{
    transition-duration:.01ms!important;
  }
}


/* v1.7.0 — final Home refinements */

/* More breathing room and a slightly larger visual logo relationship */
.aa3d-simple-container{
  width:min(1460px,calc(100% - 112px));
}

/* Hero content higher and slightly farther from the left edge */
.aa3d-simple-hero-inner{
  padding-top:122px;
  padding-bottom:92px;
  transform:translateY(-38px);
}

.aa3d-simple-hero h1{
  max-width:640px;
  font-size:clamp(40px,4.1vw,59px);
}

/* Approved rotating statements */
.aa3d-rotating-statements{
  position:relative;
  width:min(100%,650px);
  min-height:58px;
  margin-top:22px;
}

.aa3d-rotating-statement{
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  display:block;
  color:#ffffff;
  font-size:clamp(17px,1.45vw,21px);
  line-height:1.45;
  font-weight:550;
  opacity:0;
  transform:translateY(12px);
  transition:opacity .55s ease,transform .55s ease;
  pointer-events:none;
}

.aa3d-rotating-statement.is-active{
  opacity:1;
  transform:translateY(0);
}

.aa3d-simple-hero p{
  margin-top:15px;
}

/* More compact premium statistics section */
.aa3d-stats{
  padding-top:54px;
  padding-bottom:52px;
}

.aa3d-stat-item{
  min-height:142px;
  padding-top:18px;
  padding-bottom:18px;
}

.aa3d-stat-number{
  font-size:clamp(50px,5.2vw,78px);
}

.aa3d-stat-plus{
  font-size:clamp(20px,1.9vw,31px);
}

.aa3d-stat-label{
  margin-top:14px;
  font-size:11px;
}

.aa3d-stat-subtitle{
  margin-top:5px;
  max-width:260px;
  font-size:11px;
}

/* Up to 20 logos: 5 per row on desktop */
.aa3d-home-logo-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
}

.aa3d-home-logo-item{
  min-height:132px;
  padding:22px;
}

.aa3d-home-logo-item img{
  max-width:190px;
  max-height:70px;
}

@media(max-width:1200px){
  .aa3d-home-logo-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media(max-width:1024px){
  .aa3d-simple-container{
    width:min(100% - 72px,1200px);
  }

  .aa3d-simple-hero-inner{
    transform:translateY(-24px);
  }

  .aa3d-home-logo-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .aa3d-simple-container{
    width:calc(100% - 44px);
  }

  .aa3d-simple-hero-inner{
    padding-top:118px;
    padding-bottom:62px;
    transform:translateY(-16px);
  }

  .aa3d-rotating-statements{
    min-height:76px;
    margin-top:18px;
  }

  .aa3d-rotating-statement{
    font-size:17px;
  }

  .aa3d-stats{
    padding-top:34px;
    padding-bottom:34px;
  }

  .aa3d-stat-item{
    min-height:128px;
    padding-top:26px;
    padding-bottom:26px;
  }

  .aa3d-home-logo-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
}

@media(max-width:420px){
  .aa3d-home-logo-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* v1.7.2 — final international-standard typography pass */
.aa3d-simple-hero h1{
  max-width:660px;
  font-size:clamp(42px,4.15vw,60px);
  line-height:1.04;
  letter-spacing:-0.043em;
  font-weight:700;
}

.aa3d-rotating-statement{
  max-width:650px;
  font-size:clamp(17px,1.35vw,20px);
  line-height:1.5;
  font-weight:550;
}

.aa3d-simple-hero p{
  max-width:570px;
  font-size:16px;
  line-height:1.72;
  color:rgba(255,255,255,.78);
}

.aa3d-simple-btn{
  min-height:50px;
  padding-left:23px;
  padding-right:23px;
  font-size:11px;
  letter-spacing:.085em;
}

.aa3d-stat-label{
  max-width:260px;
  line-height:1.45;
}

.aa3d-home-about h2{
  max-width:1100px;
  font-size:clamp(36px,4vw,58px);
  line-height:1.11;
  letter-spacing:-.043em;
}

.aa3d-section-heading-row h2{
  max-width:820px;
  font-size:clamp(32px,3.05vw,46px);
  line-height:1.12;
}

.aa3d-home-testimonial-card > p{
  font-size:16px;
  line-height:1.75;
}

@media(max-width:1024px){
  .aa3d-simple-hero h1{
    max-width:620px;
    font-size:clamp(40px,5.4vw,54px);
  }

  .aa3d-rotating-statement{
    max-width:600px;
  }
}

@media(max-width:700px){
  .aa3d-simple-hero h1{
    font-size:clamp(36px,10.5vw,46px);
    line-height:1.06;
  }

  .aa3d-rotating-statement{
    font-size:16px;
    line-height:1.5;
  }

  .aa3d-simple-hero p{
    font-size:15px;
    line-height:1.68;
  }

  .aa3d-home-about h2{
    font-size:32px;
    line-height:1.15;
  }

  .aa3d-section-heading-row h2{
    font-size:30px;
    line-height:1.16;
  }
}


/* v1.9.2 — Home About uses the same editorial format as About Us */
.aa3d-home-about{
	padding:100px 0 112px;
	background:#050505;
	color:#fff;
	border-top:1px solid rgba(255,255,255,.13);
	border-bottom:1px solid rgba(255,255,255,.13);
}

.aa3d-home-about-grid{
	display:grid;
	grid-template-columns:minmax(170px,1fr) minmax(0,2.35fr);
	gap:clamp(70px,8vw,150px);
	align-items:start;
}

.aa3d-home-about-label{
	padding-top:7px;
	color:#fff;
	font-size:16px;
	line-height:1.35;
	font-weight:700;
}

.aa3d-home-about-content{
	max-width:980px;
	margin-left:auto;
	margin-right:auto;
}

.aa3d-home-about h2{
	max-width:950px;
	margin:0;
	color:#fff;
	font-size:clamp(30px,3.05vw,45px);
	line-height:1.16;
	letter-spacing:-.035em;
	font-weight:450;
	text-wrap:balance;
}

.aa3d-home-about .aa3d-text-link{
	margin-top:34px;
	border-bottom-color:rgba(255,255,255,.28);
	color:#fff;
}

@media(max-width:1100px){
	.aa3d-home-about-grid{
		grid-template-columns:minmax(120px,.65fr) minmax(0,2fr);
		gap:52px;
	}

	.aa3d-home-about-content{
		margin-left:0;
	}
}

@media(max-width:760px){
	.aa3d-home-about{
		padding:76px 0 82px;
	}

	.aa3d-home-about-grid{
		grid-template-columns:1fr;
		gap:28px;
	}

	.aa3d-home-about-label{
		font-size:15px;
	}

	.aa3d-home-about h2{
		font-size:29px;
		line-height:1.17;
	}

	.aa3d-home-about .aa3d-text-link{
		margin-top:28px;
	}
}


/* v1.9.3 — smaller Home collaboration and feedback headings */
.aa3d-home-clients .aa3d-section-eyebrow,
.aa3d-home-testimonials .aa3d-section-eyebrow{
	margin-bottom:14px;
	font-size:10px;
	letter-spacing:.145em;
}

.aa3d-home-clients .aa3d-section-heading-row h2,
.aa3d-home-testimonials .aa3d-section-heading-row h2{
	max-width:720px;
	font-size:clamp(27px,2.45vw,38px);
	line-height:1.14;
	letter-spacing:-.035em;
	font-weight:600;
}

@media(max-width:700px){
	.aa3d-home-clients .aa3d-section-heading-row h2,
	.aa3d-home-testimonials .aa3d-section-heading-row h2{
		font-size:27px;
		line-height:1.16;
	}
}

/* v2.0.0 — premium Swiss/grotesk statistics typography */
.aa3d-stat-number,.aa3d-stat-plus{font-family:"Helvetica Neue","Neue Haas Grotesk Text","Arial Nova",Arial,sans-serif;font-weight:700;letter-spacing:-.055em}
.aa3d-stat-label,.aa3d-stat-subtitle{font-family:"Helvetica Neue","Arial Nova",Arial,sans-serif}.aa3d-stat-label{font-weight:650}


/* v2.1.4 Home clients, testimonials and footer integration */
.aa3d-home-clients{padding-top:68px}
.aa3d-home-clients .aa3d-section-heading-row{display:none!important}
.aa3d-testimonial-heading-row{display:flex!important;align-items:flex-end;justify-content:space-between;gap:30px}
.aa3d-testimonial-heading-row h2{margin:0;color:#fff!important;font-size:clamp(28px,2.5vw,40px)!important}
.aa3d-testimonial-controls{display:flex;gap:8px}
.aa3d-testimonial-controls button{width:42px;height:42px;padding:0!important;border:1px solid rgba(255,255,255,.22)!important;border-radius:50%!important;background:transparent!important;color:#fff!important;display:grid;place-items:center;font-size:18px;cursor:pointer}
.aa3d-testimonial-viewport{overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none}.aa3d-testimonial-viewport::-webkit-scrollbar{display:none}
.aa3d-home-testimonial-grid{display:flex!important;gap:14px!important;width:max-content;grid-template-columns:none!important}
.aa3d-home-testimonial-card{width:clamp(300px,31vw,470px);min-height:255px;display:flex;flex-direction:column;justify-content:space-between;scroll-snap-align:start}
@media(max-width:760px){.aa3d-testimonial-heading-row{align-items:center}.aa3d-testimonial-controls button{width:38px;height:38px}.aa3d-home-testimonial-card{width:82vw;min-height:245px}}


/* v2.1.5 — desktop section alignment: approximately 1.8 inches from each screen edge */
@media(min-width:1201px){
  .aa3d-simple-container,
  .aa3d-home-section-inner{
    width:calc(100% - 346px) !important;
    max-width:none !important;
    margin-left:173px !important;
    margin-right:173px !important;
  }

  .aa3d-home-about-content{
    margin-left:0 !important;
    margin-right:0 !important;
  }
}

@media(min-width:761px) and (max-width:1200px){
  .aa3d-simple-container,
  .aa3d-home-section-inner{
    width:calc(100% - 96px) !important;
    margin-left:48px !important;
    margin-right:48px !important;
  }
}


/* v2.1.6 — premium grayscale client logo wall */
.aa3d-home-clients{
  padding-top:78px;
  padding-bottom:86px;
  background:#050505;
}

.aa3d-home-logo-grid{
  display:grid !important;
  grid-template-columns:repeat(8,minmax(0,1fr)) !important;
  gap:52px 44px !important;
  align-items:center;
  width:100%;
}

.aa3d-home-logo-item{
  min-height:74px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
}

.aa3d-home-logo-item img{
  width:auto !important;
  height:auto !important;
  max-width:150px !important;
  max-height:58px !important;
  object-fit:contain;
  filter:grayscale(1) brightness(.72) contrast(1.08) !important;
  opacity:.9;
  transform:none !important;
  transition:opacity .28s ease,filter .28s ease,transform .28s ease !important;
}

.aa3d-home-logo-item:hover img{
  opacity:1;
  filter:grayscale(1) brightness(.95) contrast(1.08) !important;
  transform:translateY(-2px) !important;
}

/* Simple testimonial heading */
.aa3d-home-testimonials .aa3d-testimonial-heading-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  margin-bottom:30px !important;
}

.aa3d-home-testimonials .aa3d-testimonial-heading-row > div:first-child{
  display:block !important;
}

.aa3d-home-testimonials .aa3d-testimonial-heading-row h2{
  margin:0 !important;
  color:#fff !important;
  font-size:clamp(24px,2vw,32px) !important;
  line-height:1.15 !important;
  letter-spacing:-.025em !important;
  font-weight:600 !important;
}

.aa3d-home-testimonials .aa3d-section-eyebrow{
  display:none !important;
}

@media(max-width:1280px){
  .aa3d-home-logo-grid{grid-template-columns:repeat(6,minmax(0,1fr)) !important;}
}

@media(max-width:900px){
  .aa3d-home-logo-grid{grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:38px 28px !important;}
}

@media(max-width:620px){
  .aa3d-home-clients{padding-top:58px;padding-bottom:66px;}
  .aa3d-home-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:34px 22px !important;}
  .aa3d-home-logo-item{min-height:62px !important;}
  .aa3d-home-logo-item img{max-width:125px !important;max-height:48px !important;}
  .aa3d-home-testimonials .aa3d-testimonial-heading-row h2{font-size:25px !important;}
}


/* v2.1.7 — ensure black transparent logos remain visible on black */
.aa3d-home-logo-item img,
.aa3d-about-logo-item img{
  filter:brightness(0) saturate(100%) invert(66%) !important;
  opacity:.92 !important;
}

.aa3d-home-logo-item:hover img,
.aa3d-about-logo-item:hover img{
  filter:brightness(0) saturate(100%) invert(88%) !important;
  opacity:1 !important;
}


/* v2.1.8 — simple logo wall heading */
.aa3d-logo-wall-heading{
  margin:0 0 54px;
}

.aa3d-logo-wall-heading h2{
  margin:0;
  color:#fff;
  font-size:clamp(26px,2.25vw,36px);
  line-height:1.15;
  letter-spacing:-.035em;
  font-weight:600;
}

@media(max-width:760px){
  .aa3d-logo-wall-heading{margin-bottom:36px;}
  .aa3d-logo-wall-heading h2{font-size:27px;}
}
