:root {
    --primary-blue: #00568f;
    --dark-blue: #00305a;
    --light-blue: #0098f8;
    --yellow: #ffd12a;
    --gray: #454545;
    --light-gray: #f2f2f2;
    --text-gray: #9f9f9f;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--gray);
    overflow-x: hidden;
    margin-top: 140px;
    font-size: 18px;
}

.font-16 {
    font-size: 16px;
}

.headline-medium {
    font-size: 43px;
}

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

.bg-medium-blue {
    background-color: var(--primary-blue) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

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

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

.btn-rounded {
    border-radius: 50px;
    padding: 12px 25px;
    max-width: 100%;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 20px;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--dark-blue);
    border: none;
	padding: 11px 25px;
	border:1px solid var(--yellow);
}

.btn-yellow:hover {
    background-color: #fff;
    color: var(--dark-blue);
}

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

.btn-primary-blue:hover {
    background-color: #fff;
    color: #004575;
}

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

.btn-white:hover {
    background-color: #f5f5f5;
}

.header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: transform 0.3s ease-in-out;
}

.header{
	
}

.admin-bar .header {
    top: 32px;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    font-size: 20px;
}

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

.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: top;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    /* Increased opacity to see the image better */
    z-index: 0;
}

.hero-title {
    font-weight: 700;
    color: var(--gray);
    line-height: 1.2;
    margin-bottom: 30px;
}

.navbar-nav li a.btn-yellow:hover,
.community-section a.btn-yellow:hover{
	border:1px solid #ffd12a;
}

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

.reviewer-name {
    color: var(--light-blue);
    font-weight: 800;
    font-size: 24px;
}

.review-text {
    color: var(--gray);
    font-size: 24px;
    width: 360px;
    max-width: 100%;
}

.info-cards-container {
    margin-top: -68px;
    position: relative;
    z-index: 10;
	margin-right:-23px;
}

.info-card {
    padding: 40px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.info-card-light {
    background-color: var(--light-blue);
}

.info-card-dark {
    background-color: var(--dark-blue);
}

.info-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1;
}

.info-text {
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray);
}

.result-circle {
    width: 150px;
    height: 150px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-amount {
    color: white;
    font-size: 36px;
    font-weight: 700;
}

.result-text {
    font-size: 20px;
    margin-top: 20px;
}

.lead-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
}

.home .lead-text{
    font-size: 18px;
    font-weight: 400;
}

.review-card-gray {
    background-color: var(--light-gray);
    padding: 20px 20px 4px;
    border-radius: 10px;
}

.review-text-gray {
    color: var(--gray);
    font-size: 18px;
    font-size: 20px;
    font-weight: 500;
}

.service-tabs .nav-tabs {
    gap: 10px;
}

.service-tabs .nav-link {
    background-color: transparent;
    border: none;
    color: var(--gray) !important;
    font-weight: 500;
    font-size: 17px;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    min-width: 150px;
}

.service-tabs .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.service-tabs .nav-link.active {
    background-color: var(--light-gray);
    color: var(--light-blue) !important;
    font-weight: 700;
    text-decoration: underline;
}

.tab-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.2;
    margin-bottom: 25px;
}

.tab-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.5;
}

.location-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 30px;
}

.case-card {
    padding: 40px 30px 24px;
    display: flex;
    flex-direction: column;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-case-headline {
    margin-top: 90px;
    padding-top: 20px;
    border-top: 3px solid #fff;
}

.case-title {
    margin-bottom: 20px;
}


.case-date {
    font-size: 20px;
    margin-bottom: 20px;
}

.case-text {
    font-size: 20px;
    line-height: 1.5;
}

.about-section {
    background-color: white;
}

.about-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #0078C7;
}

.about-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    padding-top: 6px;
}

.cta-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 125px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    opacity: 0.85;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
}


.cta-subtitle {
    font-size: 24px;
    font-weight: 700;
}

.review-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item {
    padding: 19px 25px;
    background-color: #eee;
    border-radius: 15px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
}

.filter-item.active {
    background-color: var(--light-blue);
    color: white;
}

.filter-item:hover:not(.active) {
    background-color: #e0e0e0;
}

.review-content {
    position: relative;
}

.quote-mark {
    font-size: 120px;
    color: var(--light-blue);
    font-family: Georgia, serif;
    line-height: 0.5;
    position: absolute;
}

.quote-open {
    top: 0;
    left: 48px;
}

.quote-close {
    bottom: 0;
    right: 0;
}

.review-body {
    padding: 50px 140px 5px 125px;
}


.review-text-large {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 15px;
}

.resource-card {
    padding: 10px 0;
}

.resource-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.3;
}

.resource-title a{
	display:inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.3;
	text-decoration:none;
}

.resource-title a:hover{
	color:#0098F8;
}

.resource-desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 15px;
}

.resource-link {
    text-decoration: none;
    font-size: 16px;
}

.resource-link:hover {
    text-decoration: underline;
}

.arrow,
.arrow-dark,
.arrow-blue {
    font-size: 18px;
    font-weight: bold;
}

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

.footer-heading {
    color: var(--yellow);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 41px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* 1-1-2026 */
.review-card .review-outer {
    margin-bottom: 16px;
}

.info-card a {
    font-size: 20px;
    background-color: #fff;
    display: inline-block;
    width: 151px;
    border-radius: 50px;
    padding: 11px 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border: 1px solid #fff;
    color: #0098F8;
}

.info-card a:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.info-card-dark.info-card a {
    color: #00305A;
}

.info-card a:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.review-text p {
    font-weight: 500;
}

.home-two-image-container {
    margin-top: -135px;
}

.primary-headline {
    font-size: 48px;
    font-weight: 700;
}

.statement-section {
    padding: 120px 0 100px;
}

.statement-section h2 br {
    display: none;
}

.statement-section-right {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}

.text-warning {
    font-size: 20px;
}

.statement-right-button {
    margin-top: 35px;
}

.statement-button-btn {
    margin-left: 30px;
}

.statement-button-btn span {
    color: #FFD12A;
    font-size: 25px;
}

.results-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 75px;
}

.home-counter-bottom {
    padding-top: 32px;
    font-size: 20px;
    line-height: 1.3;
}

.home-counter-row {
    width: 1070px;
    max-width: 100%;
    margin: auto;
}

.service-section {
    padding: 120px 0;
}

.service-section h2 {
    margin-bottom: 35px;
}

.review-card-gray-inner {
    margin-bottom: 30px;
}

.review-card-gray-inner .stars {
    margin-right: 10px;
}

.service-section-row {
    margin-bottom: 90px;
}

.home-tab-image img {
    border-radius: 27px;
}

.home-tab-content h3 {
    margin-bottom: 35px;
}

.tab-content {
    padding: 20px 40px;
}

.home-tab-btn {
    font-weight: 500;
    font-size: 20px;
    margin-left: 30px;
}

.home-tab-btn span {
    color: #00568F;
    margin-left: 5px;
    font-size: 21px;
}

.service-section-row h2 span,
.location-right-content h2 span,
.reviews-section-headline h2 span,
.resources-section h2 span {
    color: #0098f8;
}

h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: #0098f8;
}

.location-right-content h2 {
    font-size: 64px;
    margin-bottom: 35px;
    line-height: 1;
}

.location-right-content {
    padding-left: 34px;
}

.location-section {
    padding: 125px 0;
}

.results-section {
    padding-top: 50px;
}

.case-footer-btn {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px;
}

.home-about-content h2 {
    margin-bottom: 20px;
}

.home-about-content-btn a {
    font-weight: 700;
    font-size: 32px;
    color: #AAAAAA;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.home-about-content-btn svg {
    margin-left: 30px;
}

.home-about-content {
    height: 100%;
    position: relative;
}

.about-section {
    padding: 100px 0 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section-content {
    position: relative;
    z-index: 1;
}

.cta-section-content h2 {
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 56px;
    color: #fff;
}

.cta-section-btn {
    padding-top: 19px;
}

.reviews-section {
    padding: 125px 0;
}

.reviews-section-row {
    padding-bottom: 80px;
}

.reviews-section-row h2 {
    margin-bottom: 0;
}

.reviews-section-row a {
    font-size: 24px;
}

.review-body h4 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.review-body .review-job {
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    color: #0098F8;
    margin-bottom: 20px;
}

.review-content {
    padding-left: 70px;
}
.single-practice_area .resources-section{
	padding: 0 0 120px;
}
.resources-section {
    padding: 120px 0;
}

.resources-section h2 {
    margin-bottom: 60px;
}

.footer-container-row {
    border-top: 1px solid #FFFFFF;
    padding: 50px 0 53px;
}

.footer-container {
    padding-top: 70px;
}

.copyright-row {
    border-top: 1px solid #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.copyright-row a,
.copyright-row p {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.copyright-right {
    text-align: right;
	text-transform:uppercase;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.single-post-container.common-page-content{
	width: 100%;
}
.header .navbar-nav > li{
	position:relative;
}
.header .navbar-nav > li > a{
	padding: 26px 8px;
}

.header .navbar-nav > li.menu-item-has-children > a {
    background-image: url(../images/header-icon-white.svg);
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 25px;
}

.header .sub-menu{
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    padding: 0;
    top: 100%;
    margin: 0;
    list-style: none;
    background-color: #fff;
    min-width: 300px;
    padding: 15px 15px 10px;
    border-radius: 5px;
	box-shadow: var(--bs-box-shadow-sm) !important
}

.header .navbar-nav li:hover > ul.sub-menu {
    display: block;
}

.header .navbar-nav li:hover > ul.sub-menu li{
	margin-bottom:5px;
}
.header .btn-rounded{
    padding: 11px 25px !important;	
}
.home-tab-content{
	padding-right:30px;
}
.desktop-service-tabs{
	display:block;
}
.mobile-service-tabs{
	display:none;
}

.mobile-service-tabs .pa-accordion-item{
	background-color: #f2f2f2;
	padding: 15px 20px;
	border-radius: 15px;
	margin-bottom: 20px;
}
.mobile-service-tabs .pa-accordion-item h3.pa-accordion-title {
	margin-bottom:0;
	font-size:24px;
}
.mobile-service-tabs .home-tab-content {
    padding-right: 0;
	padding-top:0;
}
.mobile-service-tabs .home-tab-image{
	padding-bottom:25px;	
}
/* .mobile-service-tabs .home-tab-btn {
	margin-top: 15px;
} */
.mobile-service-tabs .pa-accordion-item.active .pa-accordion-header{
	position:relative;
/* 	background-image: url(../images/accordion-down-arrow.svg);
    background-position: calc(100% - 0px) center;
    background-repeat: no-repeat; */
	background-image: none;
}
.mobile-service-tabs .pa-accordion-item.active .pa-accordion-header:before{
	position: absolute;
	top: 1px;
	right: 0;
	background-image: url(../images/accordion-down-arrow.svg);
	background-repeat: no-repeat;
	content: "";
	height: 15px;
	width: 15px;
	transform: rotate(180deg);
}
.mobile-service-tabs .pa-accordion-item .pa-accordion-header{ 
    background-image: url(../images/accordion-down-arrow.svg);
    background-position: calc(100% - 0px) center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.mobile-service-tabs .home-tab-image-outer{
	order: -1;
	padding-top:30px;
}
@media (max-width: 1399px) {
	.home-about-content-btn a {
		font-size: 26px;
	}
	.location-right-content h2 {
		font-size: 56px;
	}
	.header .nav-link,
	.header .btn-rounded{
		font-size:17px;
	}
    .primary-headline {
        font-size: 35px;
    }
}
@media (max-width: 1199px){
	.cta-section-btn {
		padding-top: 0;
	}
	.cta-section {
		padding: 80px 0;
	}
	.resources-section h2 {
		margin-bottom: 30px;
	}
	.resources-section {
		padding: 10px 0 80px;
	}
	.reviews-section {
		padding: 80px 0;
	}
	.review-body {
		padding: 50px 85px 5px 75px;
	}
	.quote-mark svg{
		width:80px;
	}
	.home-about-content-btn a svg{
	    width: 30px;
		margin-left: 20px;
	}
	.home-about-content-btn a {
        font-size: 23px;
    }
	.location-right-content h2 {
        font-size: 45px;
    }
	.hero-title {
		font-size: 38px;
	}	
	.review-text {
		font-size: 22px;
	}
	.info-cards-container {
		margin-top: 0;
	}
	.info-title{
		font-size: 22px;
	}
	.info-text{
		font-size: 17px;		
	}
	.hero-section {
		padding-top: 100px;
	}
	.tab-text {
		font-size: 18px;
	}
	.location-text {
		font-size: 20px;
	}
	.case-text {
		font-size: 18px;
	}
	.about-subtitle {
		font-size: 26px;
	}
	.about-text {
		font-size: 20px;
	}
	.cta-section-content h2 {
		font-size: 45px;
	}
	.reviews-section-row a {
		font-size: 20px;
	}
    .desktop-service-tabs{
		display:none;
	}
	.mobile-service-tabs{
		display:block;
	}
}
@media (max-width: 991px){
	.info-card a {
		font-size: 18px;
		width: 135px;
		padding: 5px 10px;
	}
	.home-two-image-container {
		margin-top: -80px;
	}
	.service-tabs .nav-link {
		font-size: 17px;
		padding: 15px 17px;
		min-width: auto;
	}
	.footer-container-row .footer-img{
		text-align:center;
	}
	
	.footer-container-row {
		padding: 20px 0 53px;
	}
	.community-text{
		padding-top:40px;
	}
	.copyright-right {
		text-align: center;
	}
	.copyright-row{
		text-align:center;
		justify-content:center;
	}
	.reviews-section {
        padding: 80px 0 50px;
    }
	.review-content {
		padding-top: 40px;
	}
	.reviews-section-row {
		padding-bottom: 40px;
	}
	.home-about-content-btn a {
		position:relative;
		margin-top:30px;
    }
	.about-section {
		padding: 80px 0 60px;
	}
	.case-footer-btn {
		margin-bottom: 7px;
	}
	.case-footer-btn br{
		display:none;
	}
	.location-right-content h2 {
		margin-bottom: 20px;
    }
	.location-right-content {
		padding-left: 0;
		padding-top:40px;
	}
	.location-section {
		padding: 80px 0;
	}
	.service-section {
		padding: 80px 0;
	}
	.tab-content {
		padding: 40px 30px;
	}
	.review-card{
		padding-top:40px !important;
	}
	.review-text {
		width: 100%;
	}
	.hero-section {
        padding-top: 40px;
    }
	.quote-open{
		left: 0;
	}
	.quote-mark {
		font-size: 80px;
	}

	.review-body {
        padding: 30px 80px 30px 20px;
    }
	.info-cards-container {
        margin-top: 0;
        padding: 0;
		margin-right: 0;
    }
	.statement-section {
		padding: 80px 0 60px;
	}
    .desktop-service-tabs{
		display:none;
	}
	.mobile-service-tabs{
		display:block;
	}
}
@media (max-width: 767px){
	.logo-img {
		height: 60px;
	}
	
	.footer-heading {
		margin-bottom: 15px;
		margin-top: 20px;
	}
	.review-body h4 {
		font-size: 28px;
		margin-bottom: 10px;
	}
	.review-body .review-job {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.review-body {
        padding: 30px 0 0 0;
    }
	.review-content {
		padding-left: 0;
	}
	.quote-mark{
		display:none;
	}
	.cta-section-content h2 {
        font-size: 35px;
    }
	.case-card {
		padding: 40px 20px 24px;
	}
	.home-case-headline {
		margin-top: 30px;
	}
	.location-right-content h2 {
        font-size: 35px;
    }
	.tab-content {
        padding: 30px 20px;
    }
	.home-tab-content h3 {
		margin-bottom: 15px;
	}
	.primary-headline {
        font-size: 30px;
    }
	.home-tab-btn {
		margin-top:15px;
        margin-bottom:15px;
	}
	.home-counter-bottom {
		padding-top: 0;
	}
	.results-section h3 {
		font-size: 28px;
		margin-bottom: 25px;
	}
	.results-section {
		padding-top: 0;
	}
	.statement-button-btn {
		margin-left: 0;
		margin-top: 20px;
	}
	.home-two-upper{
		margin-bottom:30px;
	}
	.home-two-image-container {
		margin-top: 0;
	}
	.hero-section {
        padding-top: 0;
		padding-bottom:80px;
    }
	.info-card a {
		padding: 6px 10px;
	}
	.info-card {
    	padding: 30px 20px;
	}
	.info-card-outer{
		margin-bottom:20px;
	}
	body {
		margin-top: 105px;
	}
	
	
	.section-title,
    .section-title-large {
        font-size: 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .tab-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .info-cards-container {
        margin-top: 0;
    }

    .hero-img {
        height: 250px;
    }
}
@media (max-width: 576px){	
}
@media (min-width: 768px){
	.result-amount {
		font-size: 42px;
	}

	.result-circle {
        width: 180px;
        height: 180px;
    }
	.hero-img {
		height: auto;
	}
	
	body {
		margin-top: 105px;
	}
}
@media (min-width: 992px){
	body {
		margin-top: 128px;
	}
	
	
	.navbar-nav{
		gap:0 !important;	
	}
	
	.cta-title {
        font-size: 52px;
    }
	.case-title {
        font-size: 36px;
    }
	.tab-title {
		font-size: 42px;
	}
	.section-title-large {
        font-size: 55px;
    }
	.section-title {
		font-size: 48px;
	}
	
/* 	.hero-title {
		font-size: 44px;
	}	
	.review-text {
		font-size: 22px;
	}
	.info-cards-container {
		margin-top: 0;
	}
	.info-title{
		font-size: 22px;
	}
	.info-text{
		font-size: 17px;		
	}
	.hero-section {
		padding-top: 100px;
	}
	.tab-text {
		font-size: 18px;
	}
	.location-text {
		font-size: 20px;
	}
	.case-text {
		font-size: 18px;
	}
	.about-subtitle {
		font-size: 26px;
	}
	.about-text {
		font-size: 20px;
	}
	.cta-section-content h2 {
		font-size: 45px;
	}
	.reviews-section-row a {
		font-size: 20px;
	} */
}
@media (min-width: 1200px){
	body {
		margin-top: 140px;
	}
	.reviews-section-row a {
		font-size: 24px;
	}
	.cta-section-content h2 {
		font-size: 56px;
	}
	.about-text {
		font-size: 24px;
	}
	.about-subtitle {
		font-size: 32px;
	}
	.case-text {
		font-size: 20px;
	}
	.location-text {
		font-size: 24px;
	}
	.tab-text {
		font-size: 24px;
	}
	.hero-section {
		padding-top: 100px;
	}
	.info-text {
		font-size: 17px;
	}
	.info-title{
		font-size: 24px;	
	}
	.info-cards-container {
		margin-top: -68px;
	}
	.review-text {
		font-size: 24px;
	}
	.hero-title {
		font-size: 42px;
	}
	
	
	.navbar-nav{
		gap:24px !important;	
	}
}

/* 1-1-2026 */