:root {
  --container-width: 1280px;
  --font-main: 'Inter', sans-serif;
  --font-size-body: 18px;
  --font-size-h1: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --text: #000000;
  --title: #545454;
  --text-on-dark: #ffffff;
  --muted: #6f6f6f;
  --button-hover: #c90b0b;
  --button-bg: #000;
  --button-color: #fff;
}

* {
  box-sizing: border-box;
}
a:hover, a:focus{
color: var(--button-hover);
text-decoration: none;
}
.reveal-up{
  opacity: 1 !important;
  transform: translateY(0) !important;

}
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-body);
  color:#505050;
  background: #fff;
	    line-height: 32px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title);
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
		font-weight: 300;
}

h3 {
  font-size:35px;
	font-weight: 300;
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  font-size: var(--font-size-body);
  margin: 0 0 25px;
}

.site-container {
  width: min(100% - 24px, var(--container-width));
  margin: 0 auto;
}
.primary-btn:hover {
    background: var(--button-hover);
    color: var(--button-color);
    border-color: var(--button-hover);
}

.site-header {
  height: 115px;
  background: #fff;
  overflow-x: clip;
}

.top-line {
    height: 14px;
    background: #000000;  
}

.header-wrap {
  display: flex;
  align-items: center;
  height: 100px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 16px;
}

.left-menu,
.right-menu {
  display: flex;
  align-items: center;
  margin-top: 0;
  max-width: 100%;
  width:100px;
}

.left-menu {
  justify-content: flex-start;
}

.right-menu {
  justify-content: flex-end;
}

.left-menu .menu,
.right-menu .menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0;
}

.left-menu .menu {
  gap: 156px;
}

.right-menu .menu {
  gap: 115px;
}

.left-menu .menu li,
.right-menu .menu li {
  margin: 0;
  padding: 0;
}

.left-menu a,
.right-menu a,
.color-link {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;  font-family: "Roboto", sans-serif;
	    opacity: 0.7;
}

.brand-mark {
  transform: translateY(54px);
  width: auto;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  padding: 25px 10px 10px 10px;
  z-index: 5;
}

.brand-logo {
    position: static;
    width: auto;
    height: 190px;
    object-fit: contain;
}
.hd-cta a:hover {
    background: #000;
    color: #fff;
    transition: 0.6s;
}
.contact-btn {
  text-decoration: none;
  color: var(--text);
  border: 2px solid var(--text);
  padding: 20px 44px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.right-menu .menu-item-cta > a,
.right-menu .menu-item:last-child > a {
  border: 1px solid var(--text);
  padding:12px 44px;

}

.right-menu .menu-item:last-child > a:hover{
	color:#fff !important; 
		opacity: 1; 
}

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

.mobile-menu-panel {
  display: none;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.tagline-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 103px;
  background: rgba(0, 0, 0, .67);
  display: flex;
  align-items: center;
}

.tagline-bar h1 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: var(--font-size-h1);
    font-weight: 400;
    letter-spacing: -1.2px;
}

.services-section {
  padding: 80px 0 118px;
}

.services-row {
  column-gap: 37px;
}

.services-row > [class*='col-'] {
  width: calc((100% - 74px) / 3);
  flex: 0 0 calc((100% - 74px) / 3);
}

.service-card {
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-image {
  width: 380px;
  max-width: 100%;
  height: 247px;
  object-fit: cover;
  display: block;
  margin: 12px auto 0;
}

.service-content {
    padding: 20px 30px 30px 30px;
}

.service-content h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #555555;
	    opacity: 0.9;
}

.service-content p {
	margin: 0 0 18px;
    color:#505050;
    font-size: 16px;
    line-height: 27.2px;
}

.small-btn,
.primary-btn {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #111;
    color: #fff;
    background: #111;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: .02em;
    border-radius: 0;
    line-height: 19.2px;
}

.small-btn {
  background: #bbbab5;
  border-color: #bbbab5;
  padding: 14px 36px;display: inline-flex;
    gap: 10px;
}

.quality-section {
  padding-bottom: 113px;
}

.quality-row {
  align-items: flex-start;
}


.quality-title {
  color: var(--title);
  font-size: var(--font-size-h2);
  font-weight: 300;
  line-height: 38.4px;
}

p{
    letter-spacing: -0.7px;}

.quality-section p {
    margin: 0 0 25px;
    font-size: 18px;

}

.primary-btn {
    margin-top: 25px;
    padding: 14px 54px 14px 54px;
}

.quality-visual {
  display: flex;
  justify-content: flex-end;
}
.small-btn:hover {
    background: #000;
    color: #fff;
}

.quality-image {
  width: 600px;
  height: 600px;
  object-fit: cover;
}

.samples-section {
  padding-bottom: 80px;
}

.samples-title {
  margin: 0;
  text-align: center;
  color: var(--title);
  font-size: var(--font-size-h2);
  font-weight: 300;
}

.samples-row {
  margin-top: 44px;
  column-gap: 29px;
}

.samples-row > [class*='col-'] {
  width: calc((100% - 87px) / 4);
  flex: 0 0 calc((100% - 87px) / 4);
}
.home .cta-section {
    height: 500px;
}
.sample-image {
  width: 100%;
  aspect-ratio: 298/297;
  object-fit: cover;
}


.footer-grid a, .footer-grid p {
font-size: 16px;
    color: #363636;
    font-weight: 600;
    letter-spacing: normal; 
    letter-spacing: -0.5px;
}


.footer-grid a:hover{
	color:#c90b0b; 
	
}

.footer-contact-col span {
    display: block;
    color: #cc0000;
}


.footer-bottom span:before {
    border-left: #ccc solid 2px;
    padding-right: 13px;
    display: inline;
    padding-left: 0;
    margin-left: 9px;
    line-height: 14px;
    content: "";
    font-size: 10px;
}

.footer-bottom span:after, .ft-link:after {
    border-right: #ccc solid 2px;
    padding-right: 13px;
    display: inline;
     margin-right: 9px;
    line-height: 14px;
    content: "";
    font-size: 10px;
}



.footer-bottom span, .ft-link{
    position: relative;
}


.view-all-wrap {
  margin-top: 38px;
}
.cta-section h2.section_title {
    font-size: 56px;
}

.primary-btn.small {
  padding: 14px 40px;
}

.cta-section {
  min-height: 300px;
  background: linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .38)), url('../images/Bitmap-13.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.cta-section2 {
	background-color: #000 !important;
    padding: 70px 0;
    background-repeat: no-repeat;
    background-size: cover !important;
}


.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6,
.cta-section p {
  color: var(--text-on-dark);
}

.cta-inner h2 {
  margin: 0 0 25px;
  color: var(--text-on-dark);
  font-size: var(--font-size-h2);
  font-weight: 500;
}

.cta-inner p {
    margin: 0 0 5px;
    color: var(--text-on-dark);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

p.ti-cta-copy {
    font-size: 24px;
    font-weight: 500;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

 
.primary-btn.dark {
  padding: 14px 25px;
}

.site-footer {
  background: #fff;
}

.footer-content {
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns:345px 264px 290px 180px 200px;
  align-items: start;
  font-family: 'roboto', sans-serif;
}
.footer-contact-col {
    width: 60%;
}
img.badge-img.footer-policy-badge {
    width: auto;
    height: auto;
    margin: 0 0 6px 10px;
}
.footer-logo {
  width: 200px;
  height: 185px;
  object-fit: cover;
}

.footer-detail,
.footer-links {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: #6f6f6f;
}

.footer-detail {
  margin-bottom: 24px;
}

.footer-detail span {
  margin-right: 6px;
}

.footer-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social-links li {
  margin: 0;
  padding: 0;
}

.footer-social-links a {
      width: 34px;
    height: 34px;
    border: 1px solid #000;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
  color: #ffffff;
  border-color: #3a3a3a;
  background: #3a3a3a;
}



.footer-social-links .icon svg {
  height: auto;
  fill: currentColor;
}

.footer-social-links .icon-font i {
  font-size: 15px;
  line-height: 1;
}

.footer-links-col {
  padding-top: 10px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.footer-menu li {
  display: block;
  margin: 0 0 4px;
  padding-left: 16px;
  position: relative;
}

.footer-menu > li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 17px;
    color: #363636;
}


.footer-menu a {
  text-decoration: none;
  line-height: 1.35;

}

.footer-menu a:hover,
.footer-menu a:focus {
    color: #cc0000;
  text-decoration: normal;
}

.footer-menu .sub-menu {
    list-style: none;
    margin: 4px 0 0;
    padding: 0 0 0 0px;
}

.footer-menu .sub-menu li {
  margin: 0 0 10px;
  padding-left: 14px;
}

.footer-menu .sub-menu li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: -2px;
    color: #5c5c5c;
    font-size: 15px;
    font-weight: 700;
}



.badge-img {
  width: 205px;
  height: 91px;
  /*object-fit: cover;*/
  margin-top: 8px;
}

.badge-img-inline {
  display: inline-block;
  margin-top: 14px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    color: #b1b1b1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.4px;
}

 
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  text-decoration: underline;
}

.footer-policy-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.inner-hero {
position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
	    background-color: #000000;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);*/ 
}

.inner-hero-title {
    position: relative;
    z-index: 1;
    color: #fff;
    margin: 0;
    /* padding: 56px 0 42px; */
    font-size: 52px;
    background: rgba(33, 33, 33, 0.64);
    display: inline-block;
    /* background: rgba(40, 40, 40, 0.75); */
    padding: 30px 40px 27px 36px;
    font-weight: 300;
 
}



.inner-section {
  padding: 70px 0;
}

.inner-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.inner-two-col h2,
.inner-section h2 {
  margin: 0 0 16px;
  font-size: var(--font-size-h2);
  color: #303030;
}

.inner-two-col h3 {
  margin: 0 0 8px;
  font-size: var(--font-size-h3);
  color: #606060;
}

.inner-two-col p,
.inner-section p, .content p {
  font-size: var(--font-size-body);
  line-height: 1.8;
    color: #484848;
}

.inner-two-col img {
  width: 100%;
  height: auto;
  border: 1px solid #dedede;
}

.inner-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px 35px;
}

.inner-card {
  padding: 20px;
}

.inner-card h3 {
  margin: 0 0 10px;
  font-size: var(--font-size-h3);
  color: #303030;
}

.inner-card h4 {
  margin: 0 0 10px;
  font-size: var(--font-size-h4);
  color: #303030;
}

.inner-card p {
  margin: 0;
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: #626262;
}

.inner-card img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.about-block {

  padding: 44px 0px 44px 0;
  position: relative;
}
.about-block--team {
 position: relative;
}
.about-block--intro .row:after, .about-block--team .row:after {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    left: -40px;
    background: #eeeeee;
    z-index: -1;
}

.ti-overview-row{position: relative;}

.ti-overview-row:after{ 
   content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    left: 0;
    background: #eeeeee;
    z-index: -1;}



.about-block--team .row:after{left: auto; right: 0; top:10px;}

.ti-overview-row--reverse:after {
    left: auto !important;
 right: -40px;
    top: 10px;
}
.ti-overview-row--reverse  {margin-top: 60px;}
.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-block-grid--reverse {
  grid-template-columns: 320px 1fr;
}


.about-content-accent {
    border-left: 3px solid #cd0000;
    padding-left: 40px;
    margin-right: -20px;
    padding-right: 25px;
}

.color-samples-intro:before, .color-samples-supplier:before {
    content: "";
    width: 40px;
    left: -40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: auto;
    background: #eeeeee;
}
.about-content h2 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 300;
    color: #525252;
}
.about-media {
    padding-left: 0px;
}
.about-content h3 {
    font-weight: 300;
  margin-bottom: 15px;
  color: #454545;
}

.about-content p {
  font-size: var(--font-size-body);
  line-height: 1.75;
}

.about-media img {
  width: 100%;
  border-radius: 10px;
  border: 0;
}


.about-highlights-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: -20px;
}


.about-highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-feature-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 10px 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap:25px;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;  
}
.about-feature-head h2.section_title {
    margin-bottom: 0;font-weight: 700;
}
.about-feature-head {
display: flex;
    align-items: stretch;
    gap: 9px;
    margin-bottom: 6px;
    flex-direction: column;

}

.about-feature-icon {
  width: 50px;
  height: auto;
  object-fit: cover;
}
.about-feature-link {
    font-size: 16px;
}
.about-feature-link svg {
 width: 18px; height: auto;
}
.about-feature-icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1;
}

.about-feature-card h4 {
  margin: 0;
  font-size: var(--font-size-h4);
  line-height: 1.05;
	    max-width: 90%;
}

.about-feature-card p {
  margin: 0 0 8px;
  font-size: var(--font-size-body);
  line-height: 1.55;
	max-width: 94%;
}

.about-feature-link {
    color: #ababab;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.2px;
}


.about-signature {
  margin-top: 10px;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.1;
  font-family: "Brush Script MT", cursive;
  font-weight: 600;
}
.about-highlights-section .site-container {
    padding: 0 50px;
}

@media (max-width:767px) {
	
	.about-highlights-section .site-container {
    padding: 0 20px; }
	
}


.samples-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


.sample-card:hover {
    transform: scale(1.07);
}

.sample-card {
    transition: 0.6s;
}

.color-samples-section {
  background: #fff;
  padding: 44px 0 56px;
}

.color-samples-intro {
  border: 0;
  margin-top: 60px;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  background: #eeeeee;
  margin-bottom: 42px;
}

.color-samples-intro-copy {
  border-left: 3px solid #cd0000;
  padding-left: 40px;

}

.color-samples-intro-copy h2 {
  margin-bottom: 12px;
}

.color-samples-intro-copy p {
  line-height: 1.85;
}

.color-samples-btn {
  display: inline-block;
  min-width: 122px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1.1;
}

.color-samples-btn:hover,
.color-samples-btn:focus {
  color: #fff;
  background: #222;
  border-color: #222;
}

.color-samples-intro-image {
  text-align: right;
}

.color-samples-intro-image img {
    height: auto;
    border: 0;
    /* transform: scale(1.2); */
    padding-right: 40px;
    margin-top: -32px;
    margin-bottom: -55px;
}


.color-samples-supplier {
  border: 0;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  background: #eeeeee;
  padding: 60px 37px 60px 0;
  margin-bottom: 42px;
}

.color-samples-supplier-copy {
  border-left: 3px solid #cd0000;
  padding-left: 40px;
}

.color-samples-supplier-copy h3 {
  margin-bottom: 12px;
  font-size: 32px;

}

.color-samples-supplier-copy p {
  /*margin-bottom: 0;
  color: #676767;
  line-height: 1.72;
  font-size: 16px;*/
}
.tmsection-one .ti-overview-row:after {
    top: 20px;
}
.color-samples-supplier-brand {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.supplier-carousel {
  width: 100%;
  max-width: 290px;
}
.ti-features-card
 {
    padding: 50px 60px;
}

.tmsection-features ul strong {
    font-size: 20px;
    margin-bottom: 5px !important;
    display: block;
}
.supplier-carousel .carousel-item {
  transition: transform .45s ease;
}

.color-samples-supplier-brand-link {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-decoration: none;
}

.color-samples-supplier-brand-link img {
    mix-blend-mode: multiply;
}


.supplier-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.supplier-logo-top {
  max-width: 260px;
}

.supplier-logo-bottom {
  max-width: 250px;
}

.supplier-carousel-next {
right: -10px;
    left: auto;
    width: 28px;
    opacity: 1;
    color: inherit;
    transform: translate(10px, 60px);
    box-shadow: none;
}

.supplier-carousel-next:hover,
.supplier-carousel-next:focus {
  opacity: 1;
}

.supplier-carousel-next-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4b4b4b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.supplier-carousel-next-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.color-samples-intro {
    margin: 60px 0;
}
.sample-card {
  padding: 10px;
}

.sample-card h4 {
    font-size: 17px;
    margin-top: 8px;
    text-align: center;
    margin: 0;
}


button.carousel-control-next.supplier-carousel-next {
    height: 30px;
    background: none;
}
.contact-list,
.feature-list {
  margin: 20px 0 0;
  padding-left: 20px;
}

.contact-list li,
.feature-list li {
  margin-bottom: 10px;
  color: #4f4f4f;
}

.contact-form-wrap {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 22px;
}

.contact-quick-info {
    background: #ebebeb;
  padding: 80px 0;
}
.wpforms-container .wpforms-field-label, .wp-core-ui div.wpforms-container .wpforms-field-label {
    font-size: 16px !important;
    line-height: normal !important;
    font-weight: 400;
}
.contact-page-head {
  background: #efefef;
  padding: 26px 0 22px;
}

.contact-page-head .section_title {
  margin-bottom: 8px;
}

.contact-page-head p {
  margin: 0;
  color: #727272;
}

.contact-quick-card {
    background: #fff;
    border-radius: 20px;
    border: 0px solid #cfcfcf;
    box-shadow: 0 2px 15px rgb(0 0 0 / 26%);
    padding: 20px 50px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 95%;
    margin: auto;
    justify-content: space-evenly;
}

.contact-quick-icon {
  display: inline-flex;
  color: #cc2626;
  margin-bottom: 8px;
}

.contact-quick-icon svg {
   /* fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;*/
    width:25px;
    height:25px;
}

.contact-quick-title,
.contact-quick-value {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.contact-quick-value a {
  color: inherit;
  text-decoration: none;
}

.contact-quick-value a:hover,
.contact-quick-value a:focus {
  text-decoration: underline;
}

.contact-social-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap:0px 16px;
  text-align: center;
}

.contact-social-list li {
  margin: 0;
}

.contact-social-list a {
  color: #2d2d2d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
 /* font-size: 16px;*/
  line-height: 1.2;
}

.contact-social-list a i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.contact-split-section {
  background: #fff;
}

.contact-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.contact-form-panel {
    max-width: 540px;
    margin-left: auto;
    padding: 44px 0 43px 24px;
    margin-right: auto;
}


.contact-form-overline {
    margin-bottom: 8px;
    color: #4c4c4c;
    font-size: 20px;
    font-weight: 400;
}



.contact-form-panel .section_title {
  margin-bottom: 0;
    font-size: 53px;
    font-weight: 300;
    letter-spacing: -1px;
}

.contact-form-panel form input,
.contact-form-panel form textarea {
  width: 100%;
  background: #e2e2e2;
  border: 1px solid #d1d1d1;
  color: #4f4f4f;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.25;
}

.contact-form-panel form textarea {
  resize: vertical;
  min-height: 106px;
}

.contact-submit-btn {
  min-width: 120px;
  padding: 12px 26px;
  font-size: 13px;
}

.contact-form-panel .wpforms-container {
  margin: 0;
}

.contact-form-panel .wpforms-field-container {
  margin-bottom: 0;
}

.contact-form-panel .wpforms-field {
  padding: 0 !important;
  margin-bottom: 12px !important;
}

.contact-form-panel .wpforms-field-label {
    margin: 0 0 6px !important;
    color: #505050 !important;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 400 !important;
    letter-spacing: -0.7px;
}


.contact-form-panel .wpforms-field-label .wpforms-required-label {
  color: #000;
}

.contact-form-panel .wpforms-layout-row {
  margin-left: -6px;
  margin-right: -6px;
}

.contact-form-panel .wpforms-layout-column {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.contact-form-panel .wpforms-field input[type="text"],
.contact-form-panel .wpforms-field input[type="email"],
.contact-form-panel .wpforms-field input[type="tel"],
.contact-form-panel .wpforms-field textarea {
    width: 100% !important;
    background: #eeeeee !important;
    border: 2px solid #e3e3e3 !important;
    color: #4f4f4f !important;
    border-radius: 5px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    box-shadow: none !important;
}

.contact-form-panel .wpforms-field input[type="text"],
.contact-form-panel .wpforms-field input[type="email"],
.contact-form-panel .wpforms-field input[type="tel"] {
  height: 50px !important;
}

.contact-form-panel .wpforms-field textarea {
  min-height: 96px !important;
  resize: vertical;
}

.contact-form-panel .wpforms-submit-container {
  padding-top: 6px !important;
}

.contact-form-panel .wpforms-submit {
  min-width: 200px;
  height: 40px;
  padding: 0 24px !important;
  background: #000 !important;
  border: 1px solid #000 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 40px;
  border-radius: 0 !important;
}

.contact-form-panel .wpforms-submit:hover,
.contact-form-panel .wpforms-submit:focus {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
}

.contact-map-wrap {
  background: #e5e5e5;
}

.contact-map-frame {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.tech-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.tech-inquiry-modal.is-open {
  display: block;
}

.tech-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.tech-inquiry-modal__dialog {
  position: relative;
  width: min(96vw, 760px);
  max-height: 90vh;
  margin: 5vh auto;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  overflow: auto;
}

.tech-inquiry-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.tech-inquiry-modal__dialog .section_title {
  margin-bottom: 14px;
  padding-right: 24px;
}

.tech-inquiry-modal__content .wpforms-container {
  margin: 0;
}

body.tech-inquiry-modal-open {
  overflow: hidden;
}

.tech-layout-section {
  background: #e8e8e8;
  padding-top: 70px;
}

.tech-list-stack {
  display: grid;
  gap: 30px;
}


.tech-detail-card {
    background: #ffffff;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: #00000036 0px 0px 15px;
}



.tech-detail-card .tech-detail-title {
  margin-bottom: 12px;
  color: #da3b30;	   
	font-weight: 400;
}


.tech-detail-card h3.section_title {
    font-weight: 600;
    font-size: 20px !important;
    letter-spacing: -1px;
}


.tech-detail-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.tech-detail-copy,
.tech-detail-block {
  margin-top: 12px;
}

.tech-detail-copy h3.section_title,
.tech-detail-block h3.section_title {
  margin: 0 0 6px;
  color: #535353;
  font-size: var(--font-size-h3);
}

.tech-detail-copy-body,
.tech-detail-copy-body p {
    margin: 0;
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: -0.7px;
}

.tech-detail-meta {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tech-detail-block + .tech-detail-block {
  margin-top: 18px;
}

.tech-detail-cta-wrap {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.tech-detail-cta {
  min-width: 130px;
 padding: 14px 30px;
 /*  font-size: 13px;*/
}

.faq-contact-box {
  margin-top: 28px;
  padding: 24px;
  background: #111;
  color: #fff;
  text-align: center;
}

.faq-contact-box p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.inner-cta-band {
  background: #f2f2f2;
  padding: 52px 0;
}

.inner-cta-band h3 {
  margin: 0 0 12px;
  font-size: var(--font-size-h3);
  color: #2f2f2f;
}

.inner-cta-band p {
  margin: 0 0 18px;
}

@media (max-width: 1399.98px) {
  .tagline-bar h1 {
    font-size: var(--font-size-h1);
  }
.brand-logo{}


  
}

@media (max-width: 1199.98px) {
  .site-header {
    height: auto;
  }

  .header-wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px 0;
    height: auto;
    gap: 10px;
    justify-content: space-between;
  }

  .left-menu,
  .right-menu {
    display: none;
  }

  .brand-mark {
	transform: translateY(54px);
    width: auto;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    padding: 25px 10px 10px 10px;
    z-index: 5;
  }
.tagline-bar .site-container {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
}
  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid #111;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
  }

  .mobile-menu-toggle__line {
    width: 20px;
    height: 2px;
    background: #111;
    display: block;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-logo {
    margin-top: 0;
    height: 110px;
  }

  .mobile-menu-panel {
    margin: 0 auto 8px;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    background: #fff;
  }

  .mobile-menu-panel.is-open {
    display: block;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list + .mobile-menu-list {
    border-top: 1px solid #e2e2e2;
  }

  .mobile-menu-list li {
    margin: 0;
    border-bottom: 1px solid #ececec;
  }

  .mobile-menu-list li:last-child {
    border-bottom: 0;
  }

  .mobile-menu-list a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    color: #111;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 14px;
    background: #f8f8f8;
  }

  .mobile-menu-list .sub-menu a {
    text-transform: none;
    letter-spacing: .01em;
    font-size: 13px;
    color: #3d3d3d;
  }
.tech-detail-card {
    background: #ffffff;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    padding: 30px 50px;
}
  .services-row,
  .samples-row {
    column-gap: 0;
  }

  .services-row > [class*='col-'],
  .samples-row > [class*='col-'] {
    width: 100%;
    flex: 1 1 auto;
  }

  .service-image {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .quality-copy {
    padding-right: 0;
  }

  .quality-image {
    width: 100%;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
.inner-cards.samples-grid {
    grid-template-columns: 1fr 1fr;
}
  .footer-bottom {
    margin-top: 32px;
  }

  .contact-form-panel {
    padding: 44px 20px;
  }
}

@media (max-width: 767.98px) {
  .site-container {
    width: min(100% - 16px, var(--container-width));
  }
.inner-cards.samples-grid {
    grid-template-columns: 1fr 1fr;
}
  .header-wrap {
    gap: 10px;
    padding: 8px 0 10px;
  }

  .brand-logo {
    height: 86px;
  }

  .hero-section {
    height: 440px;
  }

  .tagline-bar {
    height: 84px;
  }

  .services-section {
    padding: 44px 10px;
  }
    .services-row, .samples-row {
      row-gap: 20px;
    }
    .site-container {
    padding-left: 15px;
    padding-right: 15px;
}
.quality-copy {
    margin-bottom: 25px;
}
.about-block--intro .row:after, .about-block--team .row:after{width: 100%;}
.about-content-accent {
    padding-right: 0;
}

	
span.ti-faq-question {
    padding-left: 45px;
    font-weight: 400;
    letter-spacing: -0.7px;
}

  .quality-title,
  .samples-title {
    font-size: var(--font-size-h2);
  }

  .cta-section {
    height: auto;
    padding: 72px 0;
  }

  .cta-inner h2 {
    font-size: var(--font-size-h2);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .inner-section {
    padding: 46px 0;
  }

  .inner-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inner-cards,
  .samples-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-block {
    padding: 24px;
  }

  .about-block-grid,
  .about-block-grid--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-highlights-grid,
  .inner-cards {
    grid-template-columns: 1fr;
  }

  .about-feature-card h4 {
    font-size: var(--font-size-h4);
  }

  .about-signature {
    font-size: 30px;
  }

  .color-samples-hero {
    min-height: 145px;
    align-items: center;
  }

  .color-samples-hero .inner-hero-title {
    padding: 22px 0;
  }

  .color-samples-section {
    padding: 30px 0 36px;
  }

  .color-samples-intro {
    padding: 24px 18px;
    margin-bottom: 26px;
  }

  .color-samples-intro-copy {
    padding-left: 16px;
  }

  .color-samples-intro-image {
    text-align: center;
  }

  .color-samples-intro-image img {
    transform: none;
    width: min(100%, 265px);
  }

  .color-samples-supplier {
    padding: 20px 16px;
    margin-bottom: 28px;
  }

  .color-samples-supplier-copy {
    padding-left: 16px;
  }

  .color-samples-supplier-copy h3 {
    font-size: 30px;
  }

  .color-samples-supplier-brand {
    justify-content: flex-start;
  }

  .contact-quick-info {
    padding: 70px 0;
  }

  .contact-page-head {
    padding: 20px 0 16px;
  }

  .contact-quick-card {
    min-height: auto;
  }

  .contact-feature-media img {
    min-height: 280px;
  }

  .contact-form-panel {
    padding: 30px 16px 36px;
  }

  .contact-map-frame {
    height: 260px;
  }

  .supplier-carousel {
    max-width: 240px;
  }

  .color-samples-supplier-brand-link {
    align-items: flex-start;
    padding-right: 0;
  }

  .supplier-logo-top,
  .supplier-logo-bottom {
    max-width: 220px;
  }

  .supplier-carousel-next {
    right: -2px;
  }
}

/* Terrazzo Installation page layout */
.ti-install-page {
  padding: 80px 0 24px;
}

.ti-overview-row {
  margin-bottom: 34px;
  justify-content: space-between;
}



.ti-overview-copy .section_title {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.4vw, 34px);
  
}

.ti-overview-copy p {
  
  line-height: 1.7;
}

.ti-overview-btn {
  margin-top: 20px;
  padding: 12px 22px;
  min-width: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ti-overview-media img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 290px;
  border-radius: 20px;
  object-fit: cover;
}

.ti-features-wrap {
  background: #efefef url('../images/pages/services-terrazzo-installation-3/layers/04_1920x220.png') center/cover no-repeat;
  padding: 38px 0 56px;
}

.ti-features-card {
    /* border: 1px solid #d6d6d6; */
    border-radius: 20px;
    background: #ffffffb5;
    box-shadow: 0 7px 20px rgb(0 0 0 / 18%);
}


.ti-features-card .section_title {
    margin: 0;
    text-align: center;
    color: #4d4d4d;
    font-size: 56px;
    margin-bottom: 60px;
}
.ti-features-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ti-features-grid ul svg {
    width: 22px;
    height: auto;
    margin-right: 4px;
}
.ti-features-intro {
  text-align: center;
  color: #707070;
  margin: 12px auto 10px;
  max-width: 1060px;
  line-height: 1.7;
}

.cta-section .ti-features-intro p {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0;
    max-width: 100%;
}

.ti-features-grid {
  row-gap: 8px;
}

.ti-features-grid ul {
  margin: 0;
  padding-left: 20px;
}

.ti-features-grid li {   
   margin-bottom: 20px;
    /* color: #555555; */
    font-size: 17px;
    line-height: normal;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}


.ti-samples-wrap {
  background: #f7f7f7;
  padding: 60px 0 34px;
}
.accordion-button.collapsed .ti-faq-toggle {
    background: #9a9a9a;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    background: #fff;
}
.ti-center-title {
  margin: 0;

  color: #4c4c4c;

}
.tmsection-features ul svg {
    width: 40px;
    height: auto;
}
.white-bg{background-color: #fff !important;}
.tmsection-features ul svg {
    width: 40px;
    height: auto;
    margin-right: 10px;
    margin-top: 3px;
}.tmsection-features ul p {
    font-size: 16px;
}
.Tips-section {
    background: #eeeeee;
    padding: 70px 40px;
}
.ti-samples-grid {
  margin-top: 24px;
}

.ti-sample-card {
  text-align: center;
}

.ti-sample-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ti-tips-list {
    margin: 20px 0 0 0;
    list-style: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 10px;
}

.Tips-section .row.about-block {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.ti-tips-list li {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}.ti-tips-list li svg {
    width: 20px;
    height: auto;
    margin-top: 5px;
}


.ti-tips-list li p {
    font-weight: 700;
    color: #262626;
    letter-spacing: 0.1px;
}

.ti-sample-card p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #676767;
}




.ti-faq-wrap {
  background: #f7f7f7;
  padding: 70px 0 70px;
}

.ti-faq-wrap h3 {
    text-align: center;
}


.ti-faq-intro {
    text-align: center;
    color: #6f6f6f;
    /* max-width: 980px; */
    margin: 20px auto 35px;
    line-height: 1.65;
    margin-bottom: 35px;
}

.ti-faq-intro strong {
    color: #000;
}

.ti-faq-accordion .accordion-item {
  border: 1px solid #dfdfdf;
  border-radius: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.ti-faq-accordion .accordion-header {
  margin: 0;
}

.ti-faq-accordion .accordion-button {
  font-size: 15px;
  color: #4d4d4d;
  box-shadow: none;
  background: #fff;
  padding: 13px 16px; 
}
span.ti-faq-question {
    padding-left: 45px;
}
.ti-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
}



	.ti-faq-wrap {
				background: #efefef;
			}

			.ti-faq-accordion .accordion-item {
				border: 1px solid #d9d9d9;
				border-radius: 8px;
				margin-bottom: 8px;
				overflow: hidden;
			}

.ti-faq-accordion .accordion-button {
    align-items: center;
    background: #fff;
    border: 0;
    box-shadow: none;
    font-size: 20px;
    font-weight: 300;
    gap: 16px;
    padding: 0;
    letter-spacing: -0.7px;
}

			.ti-faq-accordion .accordion-button::after {
				display: none;
			}

			.ti-faq-toggle {
				align-items: center;
				background: #c8c8c8;
				color: #fff;
				display: inline-flex;
				flex: 0 0 56px;
				font-size: 30px;
				font-weight: 700;
				height: 56px;
				justify-content: center;
				line-height: 1;
				border-radius: 5px;
			}

			.ti-faq-accordion .accordion-button:not(.collapsed) .ti-faq-toggle {
				font-size: 36px;
			}

			.ti-faq-accordion .accordion-button:not(.collapsed) .ti-faq-toggle::before {
				content: "-";
			}

			.ti-faq-accordion .accordion-button.collapsed .ti-faq-toggle::before {
				content: "+";
			}

			.ti-faq-question {
				padding-right: 20px;
			}

			.ti-faq-accordion .accordion-body {
				background: #fff;
				font-size: 18px;
				padding: 16px 24px 22px 120px;
			}
.ti-faq-accordion .accordion-body {
  font-size: 15px;
  color: #5d5d5d;
  line-height: 1.7;
  background: #ffffff;
}

.ti-install-cta {
  position: relative;
  padding: 86px 0;
  background-size: cover;
  background-position: center;
}

.ti-install-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.ti-install-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ti-install-cta-inner .section_title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 58px);
}

.ti-install-cta-inner p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.ti-cta-copy {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.ti-cta-copy p:last-child,
.ti-faq-intro p:last-child,
.ti-features-intro p:last-child,
.ti-rich-text p:last-child {
  margin-bottom: 0;
}

/* Terrazzo Restoration sections */
.tr-process-wrap {
  background: #efefef;
  padding: 38px 0 50px;
}

.tr-process-intro {
  text-align: center;
  color: #6f6f6f;
  max-width: 940px;
  margin: 12px auto 24px;
  line-height: 1.65;
}

.tr-process-step {
    position: relative;
    background: #222222;
    color: #fff;
    border-radius: 20px;
    min-height: 140px;
    padding: 30px;
}

.tr-process-step h4 {
      margin: 0 0 12px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}
.after-top-space-10 .row:after {
    top: 20px;
}
.tr-process-text,
.tr-process-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
}

.tr-process-grid > [class*='col-'] {
  position: relative;
}

.tr-process-arrow {
      position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    color: #d31111;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.tr-process-grid > [class*='col-']:nth-child(4)::before{ font-size: 22px !important;}
.tr-process-wrap h3.section_title.ti-center-title {
    margin-bottom: 30px;
}
.tr-process-grid > [class*='col-'] {
    padding: 10px 20px;
}
.tr-process-grid > [class*='col-']:nth-child(3n) .tr-process-arrow,
.tr-process-grid > [class*='col-']:last-child .tr-process-arrow {
  display: none;
}

.tr-issues-list p {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.tr-process-grid > [class*='col-']:nth-child(4)::before {
  content: "\2192";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #d31111;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.tr-issues-wrap {
  background-color: #efefef;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.tr-issues-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
  padding: 34px 42px;
}

.tr-issues-intro {
  text-align: center;
  color: #6f6f6f;
  max-width: 900px;
  margin: 10px auto 20px;
  line-height: 1.65;
}

.tr-issues-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tr-issues-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 1.45;
}

.tr-issues-list li svg {
  width: 18px;
  height: auto;
  flex: 0 0 18px;
  margin-top: 4px;
}

.tr-care-wrap {
  padding-top: 12px;
}

.tr-care-wrap .about-block {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .ti-overview-media img {
    min-height: 0;
    height: auto;
  }

.brand-mark{ transform: translateY(0px);}
.tagline-bar h1{    font-size: 20px;}
  .ti-install-cta {
    padding: 64px 0;
  }

  .tr-issues-card {
    padding: 24px 22px;
  }

  .tr-process-arrow,
  .tr-process-grid > [class*='col-']:nth-child(4)::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .ti-install-page {
    padding-top: 34px;
  }

  .ti-overview-copy {
    padding: 20px;
  }

  .ti-install-cta-inner p {
    font-size: 16px;
  }

  .ti-cta-copy {
    font-size: 16px;
  }

  .tr-process-step {
    min-height: 0;
  }
}

/* Blog archive and single */
.blog-hero,
.blog-single-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, .52), rgba(0, 0, 0, .52)), #1d1d1d;
  background-position: center;
  background-size: cover;
}

.blog-hero-intro {
  max-width: 760px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}

.blog-archive-wrap {
  padding: 68px 0 80px;
  background: #f4f4f4;
}

.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.blog-chip {
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #151515;
  padding: 9px 16px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: all .25s ease;
}

.blog-chip:hover,
.blog-chip:focus,
.blog-chip.active {
  background: #e51515;
  border-color: #e51515;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .13);
}

.blog-card-media {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, #303030 0%, #737373 100%);
}

.blog-card-meta-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-category,
.blog-card-date {
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 11px;
}

.blog-card-body {
  padding: 22px 20px 24px;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.24;
}

.blog-card-title a {
  color: #161616;
  text-decoration: none;
}

.blog-card-title a:hover,
.blog-card-title a:focus {
  color: #e51515;
}

.blog-card-excerpt {
  margin: 0 0 20px;
  color: #565656;
  line-height: 1.65;
}

.blog-pagination {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.blog-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  text-decoration: none;
  color: #141414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 600;
  transition: all .2s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers:focus {
  background: #e51515;
  border-color: #e51515;
  color: #fff;
}

.blog-empty {
  background: #fff;
  padding: 42px 32px;
  text-align: center;
  border-radius: 14px;
}

.blog-single-kicker {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.blog-single-meta {
  margin: 16px 0 0;
  display: inline-flex;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}

.blog-single-wrap {
  padding: 64px 0 80px;
  background: #f4f4f4;
}

.blog-single-content {
  background: #fff;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  color: #181818;
}

.blog-single-content p,
.blog-single-content li {
  color: #4f4f4f;
  line-height: 1.75;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-single-tags {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-single-tags a {
  text-decoration: none;
  border: 1px solid #d9d9d9;
  color: #222;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
}

.blog-single-tags a:hover,
.blog-single-tags a:focus {
  background: #111;
  border-color: #111;
  color: #fff;
}

.blog-post-nav {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-nav-link {
  text-decoration: none;
  color: #161616;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  padding: 16px 18px;
  display: block;
}

.blog-nav-link span {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-nav-link strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
}

.blog-nav-link.next {
  text-align: right;
}

.blog-widget {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  margin-bottom: 18px;
}

.blog-widget h3 {
  font-size: 22px;
  margin: 0 0 16px;
}

.blog-author-box {
  display: flex;
  gap: 14px;
}

.blog-author-box p {
  margin: 6px 0 0;
  color: #555;
  line-height: 1.65;
}

.blog-recent-list,
.blog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-recent-list li + li,
.blog-category-list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ededed;
}

.blog-recent-list a {
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.blog-recent-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 68px;
}

.blog-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-recent-copy strong {
  color: #171717;
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.blog-recent-copy small {
  color: #777;
}

.blog-category-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #1d1d1d;
}

.blog-category-list a:hover,
.blog-category-list a:focus {
  color: #e51515;
}

.blog-category-list span {
  color: #7a7a7a;
}

@media (max-width: 1199.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-single-content {
    padding: 22px;
  }

  .blog-post-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-nav-link.next {
    text-align: left;
  }
}

/* Creative blog refresh */
.reveal-up {
  transition-delay: var(--reveal-delay, 0ms);
}

.blog-hero {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 21, 21, .28), transparent 42%),
    radial-gradient(circle at 12% 78%, rgba(255, 255, 255, .12), transparent 36%);
  pointer-events: none;
}

.blog-hero .site-container {
  position: relative;
  z-index: 2;
}

.blog-hero-panel {
  max-width: 920px;
  background: linear-gradient(145deg, rgba(18, 18, 18, .52), rgba(18, 18, 18, .28));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  padding: 34px clamp(20px, 4vw, 44px);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.blog-kicker {
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  opacity: .95;
}

.blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
}

.blog-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.blog-breadcrumb a:hover,
.blog-breadcrumb a:focus {
  text-decoration: underline;
}

.blog-hero .inner-hero-title.section_title {
  margin-bottom: 14px;
}

.blog-hero-stats {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
}

.blog-hero-stats strong {
  font-size: 14px;
  color: #fff;
}

.blog-hero-latest a {
  color: #fff;
  text-decoration: underline;
}

.blog-archive-wrap {
  position: relative;
  background:
    linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
}

.blog-archive-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .52) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .52) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .34;
  pointer-events: none;
}

.blog-archive-wrap .site-container {
  position: relative;
  z-index: 1;
}

.blog-section-head {
  margin-bottom: 22px;
  max-width: 760px;
}

.blog-section-head h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
}

.blog-section-head p {
  margin: 10px 0 0;
  color: #5a5a5a;
  line-height: 1.7;
}

.blog-category-row {
  margin-bottom: 34px;
}

.blog-chip {
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.blog-grid {
  gap: 30px;
}

.blog-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 20px;
  pointer-events: none;
}

.blog-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
}

.blog-card.is-featured .blog-card-media {
  height: 100%;
  min-height: 320px;
}

.blog-card.is-featured .blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-read {
  color: #5f5f5f;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-single-wrap {
  background:
    linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
}

.blog-single-content {
  border-radius: 20px;
  border: 1px solid #ececec;
}

.blog-single-content > * + * {
  margin-top: 1.15em;
}

.blog-single-content p,
.blog-single-content li {
  font-size: 17px;
}

.blog-single-content blockquote {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid #e51515;
  background: #fafafa;
  border-radius: 10px;
}

.blog-share-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #dbdbdb;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-share-row span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #666;
}

.blog-share-row a {
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
  color: #222;
  font-size: 13px;
  font-weight: 600;
}

.blog-share-row a:hover,
.blog-share-row a:focus {
  background: #111;
  border-color: #111;
  color: #fff;
}

.blog-share-stack {
  display: grid;
  gap: 10px;
}

.blog-share-stack a {
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  color: #171717;
  font-weight: 500;
}

.blog-share-stack a:hover,
.blog-share-stack a:focus {
  background: #111;
  border-color: #111;
  color: #fff;
}

.blog-single-layout aside .blog-widget:first-child {
  position: sticky;
  top: 110px;
}

@media (max-width: 1199.98px) {
  .blog-card.is-featured {
    grid-column: auto;
    display: block;
  }
}

@media (max-width: 767.98px) {
  .blog-hero {
    min-height: 360px;
  }

  .blog-hero-panel {
    padding: 24px 20px;
  }

  .blog-section-head h2 {
    font-size: 32px;
  }

  .blog-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-single-layout aside .blog-widget:first-child {
    position: static;
  }
.accordion-item:first-of-type>.accordion-header .accordion-button {
    font-size: 18px;
}
span.ti-faq-question{padding-left: 0px;}
.ti-faq-accordion .accordion-body{
padding-left: 15px;

}
.inner-hero-title {
    font-size: 33px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}



}
