/*
Theme Name: smartboost Child Theme
Version: 1.0
Description: A child theme of Understrap
Author: smartboost
Template: understrap
*/

@import url("../understrap/style.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* ********** GENERAL ********** */

:root {
    --blue: 	  #085DA8;
    --black: 	  #000000;
    --white: 	  #FFFFFF;
	--lightgrey:  #f9f9f9;
	--lightgrey2: #FAFAFB;
	--darkgrey:   #58595B;
	--lightblue:  #43B3E5;
}

html {
    margin-top: 0 !important;
}

body {
    font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.1em !important;
}

h1 {
    font-size: 40px !important;
    font-weight: 800 !important;
}

h2 {
    font-size: 32px !important;
    font-weight: 600 !important;
}

h2.h2-small {
	font-size: 28px !important;
}

h2.h2-smaller {
	font-size: 26px !important;
}

h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
}

h3.h3-large {
	font-size: 24px !important;
}

h3.h3-small {
	font-size: 18px !important;
}

h3.h3-smaller {
	font-size: 16px !important;
}

h4 {
    font-size: 18px !important;
}

h5 {
    font-size: 16px !important;
}

p {
    font-size: 18px !important;
    font-weight: 400;
}

.p-large {
	font-size: 20px !important;
}

p.p-small {
	font-size: 16px !important;
}

.subheading {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--blue);
}

.btn-cta {
    display: inline-block;
    background-color: var(--blue);
    padding: 10px 35px;
    border: 2px solid var(--blue);
    border-radius: 100px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: all .5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
    transition: all .5s;
}

.btn-dark {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}

.btn-dark:hover {
	background-color: transparent;
	color: var(--black);
	border-color: var(--black);
}

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

.btn-white:hover {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}

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

.btn-lightblue:hover {
	background-color: transparent;
	color: var(--lightblue);
	border-color: var(--lightblue);
}

/* === BRAND CONFORMANCE — 2026-04-15 === */
/* Header offset: header is fixed @ 100px tall, push Elementor first section below it */
body.home .elementor-section.elementor-top-section:first-of-type,
body.elementor-page-9 .elementor-section.elementor-top-section:first-of-type {
    padding-top: 160px !important;
}

/* Elementor button conformance — match prod .btn-cta exactly */
body.elementor-page-9 a.elementor-button,
body.elementor-page-9 .elementor-button-link,
body.elementor-page-9 .elementor-widget-button .elementor-button {
    background-color: var(--blue) !important;
    color: var(--white) !important;
    border: 2px solid var(--blue) !important;
    border-radius: 100px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all .5s ease !important;
}
body.elementor-page-9 a.elementor-button:hover,
body.elementor-page-9 .elementor-button-link:hover,
body.elementor-page-9 .elementor-widget-button .elementor-button:hover {
    background-color: transparent !important;
    color: var(--blue) !important;
    border-color: var(--blue) !important;
}

/* Match prod typography on Elementor headings/body — Inter (already body default), kill Roboto */
body.elementor-page-9 .elementor-heading-title,
body.elementor-page-9 .elementor-widget-text-editor,
body.elementor-page-9 .elementor-widget-text-editor p,
body.elementor-page-9 .elementor-button-text {
    font-family: Inter, sans-serif !important;
}

/* H3 accent color — prod uses dark body text, not blue */
body.elementor-page-9 h3.elementor-heading-title {
    color: rgb(33, 37, 41);
}
/* === END BRAND CONFORMANCE === */

.pt-6 {
	padding-top: 6rem !important;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.pb-6 {
	padding-bottom: 6rem !important;
}

.mw-paragraph {
	max-width: 630px;
	margin: 0 auto;
}

.mw-425 {
	max-width: 425px;
}

.mw-500 {
	max-width: 500px;
}

.mw-550 {
	max-width: 550px;
}

.mw-675 {
	max-width: 675px !important;
}

.mw-800 {
	max-width: 800px !important;
}

.rounded-30 {
	border-radius: 30px;
}

.text-black {
	color: var(--black);
}

.text-blue {
	color: var(--blue) !important;
}

.text-darkgrey {
	color: var(--darkgrey);
}

.text-lightblue {
	color: var(--lightblue);
}

.bg-lightgrey {
	background-color: var(--lightgrey);
}

.bg-lightgrey2 {
	background-color: var(--lightgrey2);
}

.bg-blue {
	background-color: var(--blue);
}

.tablet-mobile {
	display: none;
}

.box-shadow {
	box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.05) !important;
}




/* ********** NAVIGATION ********** */

#wpadminbar {
    display: none !important;
}

header {
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    z-index: 1000;
}

#main-nav {
	background-color: var(--white);
    padding-top: 25px;
	padding-bottom: 25px;
}

.home #main-nav {
	background-color: transparent;
}

.navbar-brand img {
    max-width: 150px;
}

/* Offcanvas: don't override visibility globally */
.offcanvas {
  background-color: var(--white) !important;
}

/* Only hide when closed */
.offcanvas:not(.show):not(.showing) {
  visibility: hidden;
}

/* Ensure it's visible when opening/open */
.offcanvas.show,
.offcanvas.showing {
  visibility: visible;
}


.offcanvas-body li {
    margin: 0 17px;
}

.offcanvas-body li a {
    color: var(--black);
    transition: all .5s;
    font-size: 15px;
    font-weight: 500;
}

.offcanvas-body li a:hover {
    color: var(--blue);
    transition: all .5s;
}

.nav-cta {
    background-color: transparent;
    padding: 11px 24px;
    border: 2px solid var(--blue);
    border-radius: 100px;
    color: var(--blue);
	font-size: 16px;
	line-height: 1em;
    text-decoration: none;
    font-weight: 500;
    transition: all .5s;
}

.nav-cta:hover {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transition: all .5s;
}

header.scrolled {
    background-color: var(--white);
    height: 90px;
    border-bottom: 1px solid #d9d9d9;
}

.offcanvas .active a {
    color: var(--blue) !important;
}

@media (min-width: 992px) {
	
	header.scrolled {
		background-color: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	
}

header.scrolled .offcanvas-body li a:hover {
    color: var(--orange);
    transition: all .5s;
}

.logo-offcanvas {
    display: none !important;
    display: block !important;
    margin-bottom: 20px !important;
    max-width: 225px;
}

.nav-link:focus, .nav-link:hover {
	color: var(--blue) !important;
}

.dropdown-item:focus, .dropdown-item:hover {
	background-color: var(--white) !important;
}

/* MEGAMENU */

.menu-item-34 .dropdown-item {
	font-size: 0 !important;
	color: var(--white) !important;
}

.menu-item-34 .megamenu-heading .dropdown-item {
	font-size: 16px !important;
	color: var(--black) !important;
}

@media (min-width: 992px) {

	.menu-item-34 .dropdown-menu {
		width: 100% !important;
		position: fixed !important;
		left: 0 !important;
		top: 88px !important;
		padding: 40px 0 40px 0 !important;
		height: 520px !important;
		background-color: #fff !important;
		border-bottom: 1px solid #0000002d !important;
	}

	.menu-item-34 .dropdown-item {
		font-size: 0 !important;
		color: var(--white) !important;
	}

	.menu-item-34 .megamenu-heading .dropdown-item {
		font-size: 16px !important;
		color: var(--black) !important;
	}

	.menu-item-34 #menu-item-13069 {
		max-width: 1000px !important;
		margin: 0 auto !important;
		height: 0 !important;
	}

	.menu-item-34 #menu-item-13069 a.dropdown-item {
		padding: 0 !important;
	}

	.menu-item-34 #menu-item-13069 .dropdown-menu {
		display: flex !important;
		width: 100% !important;
		border: none !important;
		border-radius: 0 !important;
		padding: 0 !important;
		background-color: transparent !important;
		position: initial !important;
	}

	.megamenu-heading {
		width: 50% !important;
		margin: 0 !important;
		background-color: transparent;
	}

	.megamenu-heading .dropdown-item {
		padding-left: 20px !important;
		padding-top: 20px !important;
		background-color: transparent !important;
		color: var(--blue) !important;
	}

	.menu-item-34 #menu-item-13069 .megamenu-heading .dropdown-menu {
		display: block !important;
		width: 100% !important;
		border-radius: 0 !important;
		border-top: none !important;
		padding: 20px !important;
		border: none !important;
		background-color: transparent !important;
		padding-left: 0 !important;
	}

	.megamenu-heading ul li {
		margin: 0 !important;
	}

	.megamenu-heading ul li a {
		padding-left: 0 !important;
		padding-right: 0 !important;
		background-color: transparent;
	}

	.menu-item-34 #menu-item-13069 .megamenu-heading a.dropdown-item {
		padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x) !important;
	}
	
}

@media (max-width: 991px) {
	
	#menu-item-dropdown-34 {
		padding-bottom: 0 !important;
	}
	
	#menu-item-dropdown-34 .dropdown-menu {
		padding-bottom: 0 !important;
	}
	
	.menu-item-13069 {
		margin-left: 0 !important;
	}
	
	.menu-item-13069 .dropdown-menu {
		padding-top: 0 !important;
	}
	
	li.megamenu-heading {
		margin-left: 0 !important;
	}
	
	.megamenu-heading .dropdown-item {
		padding-left: 0 !important;
	}
	
	.megamenu-heading .dropdown-menu li {
		margin-left: 0 !important;
	}
	
	.menu-item-34 .megamenu-heading .dropdown-item {
		padding-left: 10px !important;
		font-size: 14px !important;
	}
	
	.menu-item-has-children.dropdown .dropdown-menu li {
		margin-left: 0 !important;
	}
	
	.menu-item-has-children.dropdown .dropdown-menu .dropdown-item {
		padding-left: 10px !important;
	}
	
}

/* ********** HOME ********** */

.hero {
  position: relative; /* important for positioning the video */
  overflow: visible;
  background-size: cover;
  background-repeat: no-repeat;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/* Add to big sections below the fold */
.section-heavy {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px; /* prevents layout jump */
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 93, 168, 0.5); /* semi-transparent overlay */
  z-index: -1; /* between video and content */
}

.home-hero {
  position: relative;
  min-height: 600px;
  padding-top: 335px;
  padding-bottom: 80px;
  margin-bottom: -50px;
  background-color: #6a9dc4;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-hero {
    margin-bottom: 10px;
	padding-bottom:30;
  }

}


/* TICKER */

.ticker__item img {
    height: 3rem;
    margin-right: 1rem;
}

.ticker-wrap {
    display: inline-flex;
    width: 100%;
    overflow: hidden;
    height: 4rem;
    position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 1;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ticker-wrap .ticker {
    display: inline-block;
    height: 4rem;
    padding-left: 1rem;
    line-height: 4rem;
/*     white-space: nowrap;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 10s;
    animation-duration: 100s; */
}

.ticker-wrap .ticker:hover {
    animation-play-state: paused;
}

.ticker__item {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

/* REVERSE TICKER */

.ticker-wrap-reverse {
    display: inline-flex;
    width: 100%;
    overflow: hidden;
    height: 4rem;
    position: relative;
    margin-top: 2rem;
}

.ticker-wrap-reverse::before,
.ticker-wrap-reverse::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 1;
}

.ticker-wrap-reverse::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ticker-wrap-reverse::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ticker-wrap-reverse .ticker-reverse {
    display: inline-block;
    height: 4rem;
    padding-left: 1rem;
    line-height: 4rem;
    white-space: nowrap;
/*     -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker-reverse;
    animation-name: ticker-reverse;
    -webkit-animation-duration: 10s;
    animation-duration: 100s;
	*/
}

.ticker-wrap-reverse .ticker-reverse:hover {
    animation-play-state: paused;
}

.ticker-wrap-reverse .ticker__item {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
}

@-webkit-keyframes ticker-reverse {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes ticker-reverse {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* New */

.ticker-container {
    overflow: hidden;
    width: 100%;
    background: white;
    padding: 10px 0;
    margin-bottom: 20px;
}

.ticker-container.reverse .ticker {
    animation-direction: reverse;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker-reverse 30s linear infinite;
}

.ticker-reverse {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
}

.ticker-item img {
    height: 3rem;
    width: auto;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Home Row 4 */

.home-row-four .container {
	background-color: var(--white);
    position: relative;
	top: 0;
}

.home-row-four .container-bottom {
	background-color: transparent !important;
	position: relative;
	top: -75px;
}

/* Home Row Three */

.mw-col {
	max-width: 350px !important;
	margin-left: auto;
	margin-right: auto;
}

/* Home Row Two */

.home-row-two {
  background-color: #4BADF2;
  color: #fff;
  padding: 40px 60px; /* Reduce top/bottom space */
  max-width: 90%;     /* Stretch to full width */
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for boxed look */
  margin: 0 auto;
  box-sizing: border-box;
}


/* Sliding Row Animation */
/* Initial state */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(200px);
  transition: all 0.8s ease-out;
}

.animate-left {
  transform: translateX(-200px);
}

/* Visible state */
.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Counter */
.counter-box {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
  font-size: 36px;
  font-weight: 600;
  color: var(--blue);
}

/* Mobile Setup */
@media (max-width: 767px) {
  .row.row-counter > div {
    flex: 0 0 100% !important; /* Make each box full width */
    max-width: 100% !important;
    padding-left: 0rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
	
  }
	.animate-left,
  .animate-right {
    transition-duration: 0.3s !important;
	}

  .counter-box {
    padding: 1rem; /* add some padding inside boxes */
  }

  .counter-icon-img {
    max-width: 80px; /* reduce icon size a bit */
    height: auto;
  }
  
}


.counter-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: inline-block;
  background-color: transparent !important;
}

.counter-number {
	font-size: 36px;
	font-weight: 600;
	color: var(--blue);
}

.counter-text {
	font-size: 24px;
	font-weight: 600;
	color: var(--blue);
}

.img-icon {
	max-width: 35px;
}

/* Home Row Case Studies */

.home-row-cs img.img-fluid.mb-3.wp-post-image {
	width: 100%;
}

.home-row-cs ul {
	padding-left: 19px;
	margin-bottom: 2rem;
}

.home-row-cs .nav-link {
	margin-bottom: 15px;
	font-size: 18px;
    font-weight: 500;
	color: var(--black);
}

.home-row-cs .nav-link.active {
	background-color: transparent !important;
	color: var(--blue) !important;
}

.cs-count {
	background-color: var(--transparent);
	color: var(--blue);
	border: 2px solid var(--blue);
    height: 31px;
    width: 31px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
	font-size: 14px;
    line-height: 27px;
    margin-right: 10px;
}

.home-row-cs .nav-link.active .cs-count {
	background-color: var(--blue);
	color: var(--white);
	border: 2px solid var(--blue);
}

.home-row-cs .tab-content img {
	border-radius: 10px;
}

.home-row-cs .nav-link {
	border-bottom: 1px solid #e1e1e1 !important;
    border-radius: 0 !important;
    padding-bottom: 20px !important;
}


/* Testimonial Carousel */

.testimonial-content img {
	max-width: 150px;
	margin: 0 auto;
}

.case-study-testimony {
	font-size: 22px;
	font-weight: 500;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.case-study-name,
.case-study-title {
	font-size: 16px;
	font-weight: 400;
	color: #58595B;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(1);
}

.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators {
	bottom: -75px !important;
}

.carousel-indicators [data-bs-target] {
	height: 10px !important;
	width: 10px !important;
	border-radius: 50% !important;
	background-color: var(--blue) !important;
}

/* Home CTA */

.home-row-cta {
	background-image: url('/wp-content/uploads/2024/07/trinity_take_your_business_next_level.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 700px;
}

.home-row-cta a:hover {
	background-color: var(--white);
	color: var(--blue);
	border-color: var(--white);
}

nav.container.navigation.post-navigation {
	display: none;
}

/* Blog Listing */

.post-card {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	color: white;
	position: relative;
	overflow: hidden;
}

.post-card-content {
	background: rgba(0, 0, 0, 0.33);
	width: 100%;
	padding: 15px;
	text-align: left;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.post-date {
	font-size: 14px;
	margin-bottom: 5px;
}

.post-title {
	font-size: 18px !important;
	font-weight: 600 !important;
}

.row-blog-listing a:hover {
	color: var(--white);
}

/* ********** ABOUT ********** */

.hero-interior {
	background-image: url('/wp-content/uploads/2024/07/trinity_hero_bg.webp');
	padding-top: 250px;
	padding-bottom: 285px;
}

.mw-850 {
	max-width: 850px !important;
}

.about-row-three .col-md-6 {
	margin: 10px;
	width: calc(50% - 20px);
}

.col-five {
	width: calc(20% - 20px) !important;
	margin: 10px;
}

h3.team-name {
	font-size: 16px !important;
	font-weight: bold !important;
}

h4.team-title {
	font-size: 16px !important;
	color: var(--darkgrey);
}

/* ********** SOLUTIONS USE CASE ********** */

.home-row-two.hidden {
	display: none !important;
}

.single-solutions_industry .hero-interior {
	padding-bottom: 250px;
}

.single-solutions_use_case .home-row-two .container {
	top: -120px;
}

.MagicScroll-horizontal .mcs-item {
    width: 350px !important;
    max-width: 350px !important;
    padding: 0 10px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.MagicScroll .mcs-item img {
    border: 1px solid #e3e3e3 !important;
    padding: 20px 10px !important;
    border-radius: 10px !important;
}

.home-row-two .MagicScroll .mcs-item img {
    padding: 10px !important;
}

.MagicScroll-horizontal .mcs-button-arrow-prev,
.MagicScroll-horizontal .mcs-button-arrow-next {
	display: none !important;
}

.ul-solutions li {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.ul-solutions img {
    position: relative;
    top: -1px;
}

.postid-12720 .row-testimonials,
.postid-12738 .row-testimonials {
	display: none !important;
}

.postid-12988 .hero .container.mw-675 {
	max-width: 700px !important;
}

/* ********** SOLUTIONS INDUSTRIES ********** */

.single-solutions_industry .home-row-two .container {
	top: -120px;
}

.row-solutions-industry-three .col-md-6,
.row-solutions-industry-four .col-md-6 {
	margin: 10px;
	width: calc(50% - 20px);
}

.row-solutions-industry-three img {
	border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.logo-nate {
	display: none !important;
}

.postid-12988 .logo-nate {
	display: block !important;
}

.postid-12988 .logo-nate img {
	width: 200px;
}

/* .postid-13144 .row-testimonials,
.postid-13144 .home-row-cs {
	display: none !important;
} */

/* .single-solutions_industry .home-row-cs {
	display: none !important;
} */

.single-solutions_industry.postid-12778 .home-row-cs,
.single-solutions_industry.postid-12771 .home-row-cs {
	display: block !important;
}

/* ********** SERVICES ********** */

.row-services-two .col-md-6 {
	margin: 10px;
	width: calc(50% - 20px);
	padding: 140px 100px !important;
}

.row-services-two ul {
	list-style: none;
	padding-left: 0;
	font-weight: 500;
	font-size: 18px;
}

.row-services-two li {
	margin-bottom: 15px;
}

.row-services-two i {
	font-size: 24px;
	margin-right: 15px;
	position: relative;
    top: 3px;
}

.page-template-services .case-studies-listing img {
	height: initial;
	object-fit: initial;
}

.page-template-services .cs-listing.case-studies-listing .col-md-4 {
	padding-bottom: 0px !important;
}

/* ********** BLOG ********** */

.single-post #single-wrapper {
	padding-top: 0;
}

.single-post #single-wrapper > .container {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.blog-hero {
	padding-top: 100px;
}

.blog-hero img {
	height: 600px;
	object-fit: cover;
}

.blog-content .container {
	max-width: 875px;
}

.blog-listing {
	padding-top: 200px;
}

.blog-listing a {
	text-decoration: none;
}

.blog-listing img {
	min-height: 328px;
	object-fit: cover;
	object-position: center;
}

.blog-listing .post-date {
	color: var(--black);
}

.blog-listing h3.post-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--black);
}

.post-excerpt {
	color: var(--black);
}

/* ********** INTEGRATIONS ********** */
.row-integrations-two p,
.row-integrations-two hr {
	max-width: 400px;
}

.row-integrations-two .integration-logo {
	width: 85px;
	height: 85px;
	max-width: 85px;
}

.row-integrations-two hr {
	margin-top: 27px;
	margin-bottom: 27px;
}

.col-icons {
	background-color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.col-icons.p-5 {
	padding-top: 12.5% !important;
    padding-bottom: 12.5% !important;
}

.integration-logo {
	max-width: 85px;
}

.icon-plus {
	max-width: 30px;
}

.number {
	font-size: 24px;
	font-weight: 600;
}

.featured-integration-logo {
	max-width: 50px;
}

.integration-container {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-featured-integrations {
	display: flex;
	margin: 20px 10px;
	width: calc(33.333% - 20px) !important;
    flex-direction: row;
    align-items: center;
    text-align: left !important;
	text-decoration: none;
	transition: all .5s;
}

.col-featured-integrations:hover {
	background-color: var(--lightgrey);
	transition: all .5s;
}

.row-integrations-three .col-lg-4.col-md-6 {
	margin: 10px;
	width: calc(33.333% - 20px);
}

/* Integrations */

@media (min-width: 767px) {
	
	#integrationSearch {
		width: 530px;
	}
	
}

.fa-magnifying-glass {
	position: relative;
    left: -35px;
    color: #c1c1c1;
}

.search-results {
    width: 530px;
    margin: 0 auto;
    background: white;
    max-height: 300px;
    overflow-y: auto;
	border: 1px solid #D1D5DA;
	border: none;
    border-top: none;
    border-radius: 10px;
    background-color: #f3f3f3;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
	font-size: 15px;
	color: var(--black);
	text-decoration: none;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f0f0f0;
}

.integration-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: contain;
}

.selected-integration {
    margin-top: 20px;
}

.integration-comparison {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.integration-comparison .integration-logo {
    width: 60px;
    height: 60px;
}

.plus-symbol {
    font-size: 24px;
    font-weight: bold;
}

.quickbase-side, .selected-integration-side {
    text-align: center;
}

#integrationSearch {
	border: 1px solid #D1D5DA;
    border-radius: 10px;
    padding: 5px 15px;
    outline: none !important;
}

.integration-search-container {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.row-integrations-three .col-md-4 {
	margin: 10px;
	width: calc(33.333% - 20px);
}

/* ********** TESTIMONIALS ********** */

.cs-listing {
	padding-top: 250px !important;
    padding-bottom: 150px !important;
}

.cs-listing .col-md-4 {
	width: calc(33.33% - 20px);
	margin: 10px;
	padding-bottom: 10% !important;
}

.cs-logo {
	max-height: 30px;
}

.cs-listing p {
	font-size: 16px !important;
    font-weight: 400;
    line-height: 21px;
}

.cs-name {
	font-weight: 600;
	font-size: 14px;
	color: var(--darkgrey);
}

.cs-title {
	font-weight: 400;
	font-size: 14px;
	color: var(--darkgrey);
}
.case-study-card {
	position: relative;
/* 	height: 115%; */
}

.cs-data {
/* 	position: absolute;
	bottom: -20px; */
}

.testimonial-item.hidden {
    display: none;
}

#view-more-testimonials {
	color: var(--blue);
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
}

#view-more-testimonials:hover {
	cursor: pointer;
}

.read-more {
	display: block;
    margin-top: 10px;
    color: var(--black);
    font-size: 14px;
}

/* ********** SERVICES ********** */

.row-services-three {
	height: 550px;
}

.row-services-listing {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

.page-template-services.about-row-three .col-md-6 a {
	text-decoration: none;
	color: var(--black);
	transition: all .5s;
}

.about-row-three a.col-md-6{
	color: var(--black);
}

.page-template-services .about-row-three a:hover {
	background-color: var(--blue);
	color: var(--white);
	transition: all .5s;
}

/* ********** CASE STUDIES ********** */

.case-studies-listing img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 200px;
	object-fit: cover;
}

.cs-listing.case-studies-listing .col-md-4 {
	padding-bottom: 100px !important;
}

.case-studies-listing a {
	text-decoration: none;
}

.case-studies-listing h2,
.case-studies-listing p {
	color: var(--black);
}

.cs-card {
	padding: 35px;
}

.case-studies-listing .d-block.text-end {
	position: absolute;
    bottom: 0;
    right: 35px;
}

.case-studies-listing .btn-blue {
	display: inline-block;
}

/* ********** CASE STUDIES SINGLE ********** */

.hero-interior.hero-cs-single {
	padding-top: 250px;
	padding-bottom: 175px;
}

.row-cs-two .container {
	max-width: 1000px;
	margin: 0 auto !important;
}

.row-cs-two h2 {
	text-align: left !important;
	margin-bottom: 20px;
}

.row-cs-two h3 {
	text-align: left !important;
	margin: 25px 0 10px 0 !important;
}

.cs-blockquote {
	border-left: 10px solid var(--blue);
    margin-top: 25px;
    background-color: var(--lightgrey);
}

/* ********** VINYL ********** */

.hero-vinyl {
	background-image: url('/wp-content/uploads/2024/08/trinity_hero_vinyl_bg.webp');
	padding-top: 135px;
    padding-bottom: 180px;
}

/* ********** QUICKBASE ********** */

.hero-quickbase {
	background-image: url('/wp-content/uploads/2024/08/trinity_hero_quickbase_bg.webp');
	padding-top: 135px;
    padding-bottom: 180px;
}

.page-template-quickbase .row-col-reverse-mobile .col-lg-4 {
	margin: 10px;
	width: calc(33.333% - 20px);
}

/* FAQ */

.accordion-button {
	font-size: 16px !important;
    font-weight: 700;
    color: var(--black) !important;
	background-color: transparent !important;
}

.accordion-button,
.accordion-body {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.accordion-body p {
/* 	margin-bottom: 0 !important; */
	font-size: 16px !important;
	color: var(--darkgrey) !important;
}

.accordion-item {
	border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
	background-color: transparent !important;
}

.accordion-collapse.collapse.show .accordion-body {
	--bs-accordion-border-top: none !important;
	--bs-accordion-border-width: 0 !important;
}

.accordion-button:focus {
	box-shadow: 0 1px 4px 1px rgba(8, 93, 168, 0.75) !important;
}

/* ********** CONTACT ********** */

.contact-hero {
	padding-top: 250px !important;
    padding-bottom: 50px !important;
}

.row-contact-form .container {
	max-width: 650px !important;
}

p.gform_required_legend {
	font-size: 13px !important;
	display: none !important;
}

.gform-theme--foundation .gform_fields {
	row-gap: 20px !important;
}

.gform_wrapper input {
	background-color: #FFFFFFFF !important;
    color: #2c3345FF !important;
    border: 1px solid #ACACACFF !important;
    border-radius: 5px !important;
    padding: 8px 15px 8px 20px !important;
    box-shadow: 0px 0px 0px 0px #FFFFFF;
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 300;
    background-clip: inherit !important;
}

.gform_wrapper form {
	box-shadow: 0px 4px 4px 0px #57647e36;
    padding: 40px;
    border-radius: 30px;
}

.gform_button,
.gform_wrapper input.gform_button {
	background-color: #085DA8FF !important;
    border: 0px none #FFFFFF !important;
    border-radius: 20px !important;
    padding: 9px 50px 9px 50px !important;
    white-space: normal;
    width: 100% !important;
    box-shadow: 0px 0px 0px 0px #FFFFFF !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	
	.contact-hero {
		padding-top: 150px !important;
		padding-bottom: 0px !important;
	}
	
	.contact-hero .overlay {
		display: none !important;
	}
	
	.row-contact-form {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
	
	.gform_wrapper form {
		box-shadow: none !important;
		padding: 0 !important;
		border-radius: 0;
	}
	
}

/* ********** PRIVACY POLICY ********** */

.policy-listing .container {
	max-width: 1000px;
	margin: 0 auto;
}

/* ********** FOOTER ********** */

footer {
    background-color: var(--white);
}

footer#wrapper-footer {
	padding-top: 0 !important;
}

footer .container {
	border-top: 1px solid #d9d9d9;
}

.footer-logo {
	margin-bottom: 1.5rem !important;
}

.footer-logo img {
	max-width: 200px;
}

.footer-quickbase {
	margin-top: 3rem !important;
	margin-bottom: 1rem !important;
	border: 1px solid #cbcbcb;
	max-width: 204px;
    border-radius: 5px;
}

.footer-vinyl {
	border: 1px solid transparent;
	max-width: 204px;
}

footer p {
    font-size: 14px !important;
    font-weight: 400;
}

footer h4 {
    font-size: 20px;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer li a {
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 7px;
    color: var(--black);
    font-weight: 600;
	transition: all .5s;
}

footer li a:hover {
	color: var(--blue);
	transition: all .5s;
}

.footer-contact {
    align-items: flex-start;
}

.contact-container {
    font-size: 15px;
}

.contact-container div {
    opacity: .7;
}

.contact-container img {
    position: relative;
    top: 1.5px;
}

.contact-container i {
	color: var(--blue);
}

.contact-container a {
    color: var(--blue);
	font-size: 14px;
	font-weight: 600;
    opacity: 1;
    text-decoration: none;
	
}

footer a {
    transition: all .5s;
}

footer a:hover {
    color: var(--orange);
    transition: all .5s;
}

.subfooter {
    font-size: 12px;
    color: rgba(128, 128, 128, .7);
}

.subfooter a {
    color: #828282;
}

.col-social a {
    margin-right: 17px;
}

.col-social a i:hover {
    border-color: var(--blue);
}

.col-social i {
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 20px;
}

/* ********** MEDIA QUERIES ********** */

@media (max-width: 1199px) {
	
	/* NAVIGATION */
	header .container {
		max-width: 97% !important;
	}
	
}

@media (max-width: 1099px) {
	
	/* NAVIGATION */
	.offcanvas-body li a,
	.nav-cta {
		font-size: 14px;
	}
	
	.offcanvas-body li {
		margin: 0 15px;
	}
	
	.navbar-toggler-icon {
		filter: invert(1);
	}
	
}

/* TABLET */

@media (max-width: 991px) {
	
	/* GENERAL */
	h1 {
		font-size: 36px !important;
	}
	
	h2 {
		font-size: 26px !important;
	}
	
	h2.h2-small {
		font-size: 24px !important;
	}
	
	h2.h2-smaller {
		font-size: 22px !important;
	}
	
	h3 {
		font-size: 18px !important;
	}
	
	h3.h3-small {
		font-size: 16px !important;
	}

	h3.h3-large {
		font-size: 20px !important;
	}
	
	h4 {
		font-size: 16px !important;
	}
	
	.subheading {
		font-size: 16px;
	}
	
	p {
		font-size: 15px !important;
	}
	
	p.p-small {
		font-size: 15px !important;
	}
	
	.btn-cta {
		padding: 8px 30px;
		font-size: 15px;
	}
	
	.container {
		max-width: 90% !important;
	}
	
	.py-6 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	
	/* NAVIGATION */
	
	.offcanvas .dropdown-menu {
		display: block !important;
		border: none !important;
	}
	
	.offcanvas .tablet-mobile {
		display: block;
		margin-bottom: 15px;
	}
	
	.offcanvas .tablet-mobile img {
		max-width: 150px;
	}
	
	.nav-cta {
		display: none !important;
	}
	
	/* HOME */
	.img-icon {
		max-width: 30px;
	}
	
	.counter-number {
		font-size: 28px;
	}
	
	.counter-text {
		font-size: 20px;
	}
	
	.home .home-row-two .container-bottom {
		padding-top: 5rem !important;
	}
	
	.home-row-cs .nav-link {
		font-size: 15px !important
	}
	
	.cs-count {
		height: 25px;
		width: 25px;
		line-height: 21px;
		font-size: 15px;
	}
	
	.home-row-five .col-md-6 {
		margin: 10px;
		width: calc(50% - 20px);
	}
	
	.home-row-who-we-are .ps-5 {
		    padding-left: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.home-row-who-we-are .pe-5 {
		    padding-right: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.case-study-testimony {
		font-size: 19px;
	}
	
	.case-study-name,
	.case-study-title {
		font-size: 14px;
	}
	
	.home-hero,
	.home-row-cta {
		background-attachment: initial;
	}
	
	.post-card {
		height: 325px;
	}
	
	/* ABOUT US */
	.hero-interior {
		padding-top: 190px;
		padding-bottom: 200px;
	}
	
	.col-five {
		width: calc(33.333% - 20px) !important;
	}
	
	.team-member img {
		padding-right: 1.5rem;
	}
	
	h3.team-name,
	h4.team-title {
		font-size: 14.5px !important;
	}
	
	/* SOLUTIONS USE CASE */
	.home-row-two .container {
		top: -120px;
	}
	
	.ul-solutions li {
		font-size: 15px;
	}
	
	.ul-solutions img {
		width: 20px;
	}
	
	/* SOLUTIONS INDUSTRY */
	.single-solutions_industry .hero-interior {
		padding-bottom: 200px;
	}
	
	/* SERVICES */
	.row-services-two .row.mt-5 {
		margin-top: 1rem !important;
	}
	
	.row-services-two .col-md-6 {
		padding: 2rem !important;
	}
	
	.row-services-two i {
		font-size: 20px;
	}
	
	.row-services-two li {
		margin-bottom: 10px;
		font-size: 16px !important;
	}
	
	.row-services-three {
		height: 350px;
	}
	
	/* INTEGRATIONS */
	#integrationSearch {
		width: 100%;
	}
	
	.row-integration-three .col-md-4.p-5 {
		padding: 2rem !important;
	}
	
	.row-integration-three p.p-small {
		font-size: 14px !important;
        line-height: 1.25em;
        margin-top: 7px;
	}
	
	.row-integrations-search {
		padding-bottom: 2rem !important;
	}
	
	.row-integrations-three .col-lg-4.col-md-6 {
		width: calc(50% - 20px);
	}
	
	/* SERVICES */

	/* QUICKBASE / VINYL */
	.page-template-quickbase .home-row-two .h3-small img,
	.page-template-vinyl .home-row-two .h3-small img {
		width: 20px;
	}
	
	.page-template-quickbase .home-row-two .h3-small,
	.page-template-vinyl .home-row-two .h3-small {
		text-align: left !important;
		font-size: 15px !important;
	}
	
	.page-template-quickbase .home-row-two img.me-3,
	.page-template-vinyl .home-row-two img.me-3 {
		margin-right: 5px !important;
	}
	
	.page-template-quickbase .row-col-reverse-mobile .col-lg-4 {
		width: calc(50% - 20px);
	}
	
	.row-quickbase-two,
	.row-vinyl-two {
		position: relative;
		top: -4rem;
	}
	
	.row-quickbase-three.py-6,
	.row-vinyl-three.py-6 {
		padding-top: 0 !important;
	}
	
	.row-quickbase-three .row.pt-5,
	.row-vinyl-three .row.pt-5 {
		padding-top: 0 !important;
	}
	
	.row-quickbase-three .row.pb-5,
	.row-vinyl-three .row.pb-5 {
		padding-bottom: 0 !important;
	}
	
	.row-faq .h2-small.mb-5 {
		margin-bottom: 1rem !important;
	}
	
	/* CASE STUDIES */
	.hero-interior.hero-cs-single {
		padding-bottom: 165px;
	}
	
	.cs-listing .col-md-4 {
		width: calc(50% - 20px);
	}
	.cs-card {
		padding: 20px;
	}
	
	.cs-listing p {
		font-size: 14px;
	}
	
	/* FOOTER */
	footer .col-lg-3 {
		margin-top: 1rem;
	}
	
	footer hr {
		display: none;
	}
	
	.footer-contact {
		margin-top: 0 !important;
    	margin-bottom: 1rem !important;
	}
	
	.col-footer-logo {
		margin-bottom: 3rem !important;
	}
	
	.footer-logo {
		margin-bottom: .5rem !important;
	}
	
	.footer-quickbase {
		margin-top: 0rem !important;
		margin-bottom: .5rem !important;
	}
	
}

/* MOBILE */

@media (max-width: 767px) {
	
	/* GENERAL */
	.container {
		max-width: 95% !important;
	}
	
	h1 {
		font-size: 30px !important;
	}
	
	h2 {
		font-size: 22px !important;
	}
	
	h2.h2-small {
		font-size: 20px !important;
	}
	
	h2.h2-smaller {
		font-size: 20px !important;
	}
	
	h3 {
		font-size: 16px !important;
	}
	
	h2.h2-title {
		text-align: left;
	}
	
	.subheading {
		font-size: 15px;
		text-align: left;
	}
	
	p {
		font-size: 15px !important;
	}
	
	.p-large {
		font-size: 17px !important;
	}
	
	.btn-cta {
		font-size: 14px;
    	padding: 10px 20px;
	}
	
	.py-6 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}
	
	/* NAVIGATION */
	header {
		height: 73px !important;
	}
	
	.header-scrolled {
		height: 73px !important;
	}
	
	#main-nav {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	
	/* HOME */
	.home-hero {
  position: relative; /* important for positioning video and overlay */
  padding-top: 250px;
  padding-bottom: 250px;
  overflow: visible; /* hide overflow of the video */
}

.hero.home-hero .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0; /* behind overlay and container */
}

.hero.home-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: rgba(8, 93, 168, 0.5); /* semi-transparent overlay */
  z-index: 1; /* above video */
}

.hero.home-hero .container {
  position: relative;
  z-index: 2; /* top layer, above overlay */
}
	.home-row-three {
  background-color: #2f2f2f;
  color: #fff;
}

.home-row-three .box-shadow {
  background-color: #fff !important;
  color: #000 !important;
}


	.home-row-three .mw-col {
		max-width: 100% !important;
		margin-bottom: 20px;
	}
	
	.col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.col-md-6.pe-5 {
		padding-right: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.home-row-four .col-md-4 {
		margin-bottom: 20px;
	}
	
	.home-row-four .col-md-4:last-of-type {
		margin-bottom: 0;
	}
	
	.home-row-cs .container.p-5 {
		padding: 2rem !important;
	}
	
	.home-row-cs .nav-link {
		padding-left: 0;
	}
	
	.img-icon {
		max-width: 25px;
	}
	
	.case-study-testimony {
        font-size: 14px;
    }
	
	.case-study-name, .case-study-title {
        font-size: 13px;
    }
	
	.case-study-summary li {
		font-size: 15px;
	}
	
	.py-6 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	
	.home-row-cta {
		height: 50vh;
	}
	
	.post-card {
        height: 225px;
	}
	
	.row-testimonials .carousel-control-prev,
	.row-testimonials .carousel-control-next {
		display: none !important;
	}
	
	/* ABOUT */
	.col-five {
		margin: 10px 5px;
        width: calc(50% - 10px) !important;
	}
	
	.about-row-three .col-md-6 {
		margin: 10px 0;
		width: 100% !important;
	}
	
	h3.team-name,
	h4.team-title {
		font-size: 13.5px !important;
	}
	
	/* SERVICES */
	.row-services-two .col-md-6 {
		margin: 10px 0;
		width: 100%;
	}
	
	.cs-listing .col-md-4 {
		margin: 10px 0;
        width: 100%;
    }
	
	.single-solutions_use_case .row-solutions-uc-three .col-md-6.ps-5,
	.single-solutions_use_case .row-solutions-uc-five .col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
		margin-top: 5% !important;
	}
	
	.row-solutions-uc-six .col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
		margin-bottom: 5% !important;
	}
	
	/* INTEGRATIONS */
	.single-integration .home-hero .overlay {
		display: none !important;
	}
	
	.col-featured-integrations {
		margin: 10px 0;
		width: 100% !important;
	}
	
	.row-integrations-three .col-lg-4.col-md-6 {
		width: 100%;
		padding: 2rem !important;
	}
	
	.row-integrations-three .col-sm-12.mb-5 {
		margin-bottom: 0 !important;
	}
	
	/* QUICKBASE/VINYL */
	.page-template-quickbase .row-col-reverse-mobile .col-lg-4 {
		width: calc(100% - 20px);
	}
	
	.row-vinyl-three .row-col-reverse-mobile {
		flex-direction: column-reverse;
	}
	
	.row-vinyl-three .row.py-4 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.accordion-button, .accordion-body {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	
	.accordion-button {
		font-size: 15px !important;
	}
	
	.accordion-body p {
		font-size: 15px !important;
	}
	
	/* CASE STUDIES */
	.cs-listing p {
		font-size: 15px !important;
	}
	
	/* SOLUTIONS */
	.row-solutions-industry-three .col-md-6,
	.row-solutions-industry-four .col-md-6 {
		width: calc(100% - 20px);
	}
	
	/* TESTIMONIALS */
	.page-template-testimonials .subheading {
		text-align: center !important;
	}
	
	.testimonial-item.p-5 {
		padding: 2rem !important;
		margin-bottom: 1rem !important;
	}
	
	/* FOOTER */
	footer span.mx-2 {
		display: none !important;
	}
	
	footer .sb,
	footer .uc {
		display: block !important;
		margin-bottom: 5px;
	}
	
}

























/* ============================================================
   Gap 6 — Zero Compromise Solutions hover-reveal
   Added 2026-04-15. Matches prod .solution-box:hover behavior
   but targets Elementor Icon Box widgets tagged with the
   `trinity-solution-box` CSS class. Description collapses
   by default, expands on hover. Mobile fallback: always shown.
   ============================================================ */
.trinity-solution-box .elementor-icon-box-description {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 15px;
	transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.trinity-solution-box:hover .elementor-icon-box-description,
.trinity-solution-box:focus-within .elementor-icon-box-description {
	max-height: 350px;
	opacity: 1;
	padding: 15px;
}
@media (max-width: 768px) {
	.trinity-solution-box .elementor-icon-box-description {
		max-height: none !important;
		opacity: 1 !important;
		padding: 0 !important;
	}
}
