.services-hero {
    position: relative;
    padding: calc(var(--nav-height) + 8rem) 0 8rem 0;
    display: flex;
    align-items: center;
}
.services-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 0.5));
    z-index: -1;
}
.services-hero .services-hero-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}
.services-hero .services-hero-text {
    width: 800px;
    max-width: 100%;
}
.services-hero .services-hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--nav-text-color);
    font-family: var(--secondary-font);
    font-weight: 800;
}
.services-hero .services-hero-text h1.hero-header {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.services-hero .services-hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nav-text-color);
}
.triple-overview {
    width: var(--container-width);
    max-width: 100%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
}
.triple-overview .text-content {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.triple-overview .text-content .block {
    width: 400px;
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.triple-overview .text-content .block h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}
.triple-overview .text-content .block p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.triple-overview .image-content {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.triple-overview .image-content img {
    width: 200px;
    max-width: 100%;
    height: 300px;
    flex-grow: 1;
    object-fit: cover;
    object-position: center;
}

.marquee {
	position: relative;
	display: flex;
    align-items: stretch;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    padding: 0;
    flex-grow: 1;
}
.marquee li {
    width: 500px;
    flex-grow: 1;
    margin: 0;
    margin-right: calc(50px + 2.5vw);
    text-align: left;
}
.marquee li img {
    max-width: 200px;
    max-height: 125px;
    object-fit: contain;

}
.marquee-content {
	flex-shrink: 0;
	display: flex;
    align-items: start;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}

@keyframes scroll {
	from {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
}
	to {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-content {
		animation-play-state: paused !important;
	}
}
.marquee-content {
	-webkit-animation: scroll 80s linear infinite;
	animation: scroll 80s linear infinite;
}

/* Reverse animation */
.marquee-reverse .marquee-content {
	animation-direction: reverse;
}
.marquee-fit-content {
	max-width: fit-content;
}
.marquee-pos-absolute .marquee-content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.marquee-pos-absolute .marquee-content:last-child {
	animation-name: scroll-abs;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}
.why-choose-us .marquee h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.steps .step-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background-color: var(--info-color);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}
.steps .step-indicator span {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: transform 0.1s ease-out;
    -moz-transition: transform 0.1s ease-out;
    -ms-transition: transform 0.1s ease-out;
    -o-transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
}
.steps .step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.steps .step img {
    width: 40%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.steps .step .text-content {
    width: 40%;
    max-width: 100%;
}
@media (max-width: 950px) {
    .steps .step-indicator {
        left: 5px;
    }
    .steps .step {
        padding-left: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .steps .step img,
    .steps .step .text-content {
        width: 500px;
        max-width: 100%;
        height: auto;
    }
}

.explore-options .accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.explore-options .accordion .accordion-button {
    background-color: var(--page-bg-color-alt);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-weight: 600;
}
.explore-options .accordion .accordion-button:not(.collapsed) {
    background-color: rgba(var(--secondary-color-rgb), 0.1);
    color: var(--secondary-color);
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    -webkit-filter: grayscale(1) invert(1) brightness(100);
    filter: grayscale(1) invert(1) brightness(100);
}
.explore-options .accordion .accordion-button:focus {
    box-shadow: none;
}
.explore-options .accordion .accordion-item {
    background-color: transparent;
    border: 0;
}
.explore-options .accordion .accordion-body {
    padding: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.explore-options .accordion .accordion-body img {
    width: 400px;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.explore-options .accordion .accordion-body .text-content {
    width: 500px;
    max-width: 100%;
    flex-grow: 1;
    padding: 0.5rem 0;
}
.explore-options .accordion .accordion-body h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--secondary-font);
    font-weight: 700;
}
.explore-options .accordion .accordion-body p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.get-started-cta {
    background-color: var(--page-text-color-alt);
    color: var(--page-bg-color-alt);
    text-align: center;
    padding: 4rem 2rem;
}
.get-started-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.get-started-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.get-started-cta a.btn {
	-webkit-border-radius: 50rem !important;
	-moz-border-radius: 50rem !important;
	-ms-border-radius: 50rem !important;
	-o-border-radius: 50rem !important;
	border-radius: 50rem !important;
	padding: 10px 30px !important;
}

.news-hero {
    position: relative;
    padding: calc(var(--nav-height) + 8rem) 0 8rem 0;
    display: flex;
    align-items: center;
}
.news-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 0.5));
    z-index: -1;
}
.news-hero .news-hero-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}
.news-hero .news-hero-text {
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}
.news-hero .news-hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--nav-text-color);
    font-family: var(--secondary-font);
    font-weight: 800;
}
.news-hero .news-hero-text h1.hero-header {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.news-hero .news-hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nav-text-color);
}
.case-studies {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 40px 0 100px 0;
    display: flex;
    flex-wrap: wrap;
}
.case-studies .story {
    background-color: var(--page-bg-color-alt);
    display: flex;
    flex-direction: column;
    column-gap: 40px;
    row-gap: 10px;
    align-items: stretch;
    width: 33.333%;
    max-width: 100%;
    padding: 1.25rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.case-studies .story a:has(img) {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 300px;
    flex-grow: 1;
}
.case-studies .story a:has(img) img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.case-studies .story-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.case-studies .story-content h5 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1.75rem + 1.5vw);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}
.case-studies .story-content h6 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1rem + 0.25vw);
    font-weight: 600;
    margin-bottom: 10px;
}
.case-studies .story-content p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.case-studies .story-content p:last-of-type {
    margin-bottom: 20px;
}
.case-studies .story-content p.date {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}
.case-studies button#loadMoreNews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    border: 2px solid var(--primary-color);
    outline: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews span {
    position: relative;
    height: 16px;
    width: 16px;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews span::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}
.case-studies button#loadMoreNews span::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews:hover {
    background-color: var(--primary-color);
    color: white;
}
.case-studies button#loadMoreNews:hover span::before,
.case-studies button#loadMoreNews:hover span::after {
    background-color: white;
}
.case-studies button#loadMoreNews:hover span {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
@media (max-width: 1200px) {
    .case-studies .story {
        width: 50%;
    }
}
@media (max-width: 850px) {
    .case-studies .story {
        width: 100%;
    }
}


.story-hero {
    width: 100%;
    padding-top: var(--nav-height);
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 1));
}
.story-hero .story-hero-container {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.story-hero .hero-content {
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content a {
    display: block;
    width: max-content;
    max-width: 100%;
    text-align: center;
    color: white;
    background-color: var(--info-hover-color);
    margin-bottom: 15px;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
}
.story-hero .hero-content h1 {
    font-family: var(--secondary-font);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content h6 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content p {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .tags {
    margin-top: 20px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.story-hero .tags span {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    column-gap: 75px;
}
.story-area.news {
    width: var(--container-width);
    position: relative;
}
.story-area .story-content {
    width: 600px;
    flex-grow: 1;
    max-width: 900px;
}
.story-area .other-stories {
    background-color: #ffffff;
    width: 500px;
    max-width: 100%;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area.news .other-stories {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
    align-self: flex-start;
    max-height: fit-content;
}
.story-area .story-content h1 {
    color: #141414;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h2 {
    color: #141414;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h3 {
    color: #141414;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.story-area .story-content h4 {
    color: #141414;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.story-area .story-content h5 {
    color: #141414;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.story-area .story-content h6 {
    color: #141414;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.story-area .story-content p {
    color: #141414;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 7px;
}
.story-area .story-content img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.story-area .other-stories h2 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.story-area .other-stories .story {
    display: flex;
    align-items: stretch;
    width: 100%;
    background-color: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.story-area .other-stories .story .image-link {
    position: relative;
    padding: 10px 0 10px 10px;
    width: 175px;
    max-width: 100%;
    flex-shrink: 0;
}
.story-area .other-stories .story img {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    bottom: 10px;
    width: calc(100% - 10px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area .other-stories .story .small-story-content {
    padding: 10px 15px;
    flex-grow: 1;
}
.story-area .other-stories .story h3 {
    color: #141414;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;    
    
}
.story-area .other-stories .story p {
    color: #141414;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0;
}
.story-area .other-stories .story a.read-more {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
}
.story-area .other-stories .story strong {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.story-area .other-stories .view-more {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--secondary-color);
    color: white;
    background-color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.story-area .other-stories .view-more:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
@media (max-width: 1400px) {
    .story-area {
        flex-direction: column;
        gap: 50px;
    }
    .story-area .story-content {
        width: 100%;
        margin: auto;
    }
    .story-area .other-stories {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .story-area .other-stories h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .story-area .other-stories .story {
        width: 20%;
        flex-grow: 1;
        max-width: 100%;
        flex-direction: column;
    }
    .story-area .other-stories .story .image-link {
        height: 200px;
        width: calc(100% - 10px);
    }
    .story-area .other-stories .story .small-story-content {
        flex-grow: 1;
        display: grid;
    }
    .story-area .other-stories .story .small-story-content a {
        margin-top: auto;
    }
}
@media (max-width: 1080px) {
    .story-area .other-stories .story {
        width: 40%;
    }
}
@media (max-width: 650px) {
    .story-area .other-stories .story {
        width: 100%;
    }
}

.about-hero {
    position: relative;
    padding: var(--nav-height) 0 0 0;
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 0.5));
}
.about-hero .about-hero-content {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}
.about-hero .about-hero-content .text-content {
    width: 800px;
    max-width: 100%;
    padding: 4rem 0 4rem 0;
}
.about-hero .about-hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--nav-text-color);
    font-family: var(--secondary-font);
    font-weight: 800;
}
.about-hero .about-hero-content h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.about-hero .marquee li {
    width: 400px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.about-hero .marquee li img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.about-us h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.about-us p:last-of-type {
    margin-bottom: 0;
}
.values h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 600;
}
.values h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.values p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.about-working {
    width: var(--container-width);
    max-width: 100%;
    margin: 4rem auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}
.about-working img {
    width: 40%;
    min-width: 500px;
    max-width: calc(100% - 40px);
    flex-grow: 1;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
@media (max-width: 1071px) {
    .about-working img {
        margin: auto;
        height: 500px;
    }
}
.about-working .content-wrapper {
    width: 40%;
    min-width: 500px;
    max-width: calc(100% - 40px);
    flex-grow: 1;
    background-color: var(--page-bg-color-alt);
    padding: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.about-working .content-wrapper h2 {
    font-family: var(--secondary-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.about-working .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.invest-cards {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.invest-cards .invest-card {
    background-color: var(--secondary-color);
    color: white;
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
    padding: 1.5rem;
    text-align: start;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
}
.invest-cards .invest-card i {
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.invest-cards .invest-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.invest-cards .invest-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}
.training-blocks {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.training-blocks .block {
    background-color: var(--page-bg-color-alt);
    width: 600px;
    max-width: 100%;
    padding: 1.5rem;
    text-align: start;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
}
.training-blocks .block i {
    background-color: rgba(var(--secondary-color-rgb), 0.2);
    color: var(--secondary-color);
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.training-blocks .block .training-intro {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}
.training-blocks .block .training-intro .info {
    width: 200px;
}
.training-blocks .block .training-intro .goal {
    width: 300px;
    background-color: rgba(var(--info-color-rgb), 0.4);
    padding: 0.5rem 1rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.training-blocks h4 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}
.training-blocks h6 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.training-blocks p, .training-blocks ul {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.training-blocks .goal p {
    margin-bottom: 0;
}
.sub-hero {
    width: 100%;
    padding: calc(var(--nav-height) + 4rem) 0 4rem 0;
    background-color: var(--nav-text-color);
    color: var(--nav-bg-color);
}
.sub-hero .sub-hero-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}
.sub-hero h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.sub-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.sub-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
}
.faqs .accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faqs .accordion .accordion-button {
    background-color: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-weight: 600;
}
.faqs .accordion .accordion-button:not(.collapsed) {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    -webkit-filter: grayscale(1) invert(1) brightness(100);
    filter: grayscale(1) invert(1) brightness(100);
}
.faqs .accordion .accordion-button:focus {
    box-shadow: none;
}
.faqs .accordion .accordion-item {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.2);
}
.faqs .accordion .accordion-item:last-of-type {
    border-bottom: none;
}
.faqs .accordion .accordion-body {
    padding: 0.5rem 1rem;
}
.faqs .accordion .accordion-body img {
    width: 400px;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.faqs .accordion .accordion-body .text-content {
    width: 500px;
    max-width: 100%;
    flex-grow: 1;
    padding: 0.5rem 0;
}
.faqs .accordion .accordion-body h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--secondary-font);
    font-weight: 700;
}
.faqs .accordion .accordion-body p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.sitemap-container {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sitemap-container .block {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
    background-color: var(--page-bg-color-alt);
    padding: 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.sitemap-container .block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sitemap-container .block:not(.pages) {
    width: 100%;
}
.sitemap-container .block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sitemap-container .block ul li {
    width: 600px;
    max-width: 100%;
    flex-grow: 1;
}
.sitemap-container .block.pages ul li {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
}
.sitemap-container .block ul li a i {
    width: 40px;
    height: 40px;
    background-color: rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
}
.sitemap-container .block ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: #141414;
    font-family: var(--primary-font);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.sitemap-container .block.pages ul li a {
    padding: 10px 15px 10px 10px;
    font-size: 1rem;
}
.sitemap-container .block ul li a:hover {
    background-color: var(--primary-color);
}
.sitemap-container .block.pages ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}
.sitemap-container .block.pages ul li a:hover i {
    background-color: white;
    color: var(--primary-color);
}

.no-current-job-listings {
    text-align: center;
    padding: 4rem 2rem;
}
.no-current-job-listings h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.no-current-job-listings p {
    font-size: 1.1rem;
    line-height: 1.6;
}


.current-job-listings {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.current-job-listings .listings {
    width: 350px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.current-job-listings .listings .listing {
    width: 100%;
    background-color: var(--page-bg-color-alt);
    padding: 1.5rem;
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    outline: 0;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.current-job-listings .listings .listing:hover {
    border: 1px solid rgba(var(--page-text-color-rgb), 0.5);
}
.current-job-listings .listings .listing.active {
    border: 1px solid rgba(var(--page-text-color-rgb), 0.3);
}
.current-job-listings .listings .listing h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}
.current-job-listings .listings .listing .listing-details {
    padding: 1rem 0 0 0;
}
.current-job-listings .listings .listing .listing-details p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(var(--page-text-color-rgb), 0.8);
}
.current-job-listings .listings .listing span {
    margin-top: 1rem;
    display: inline-block;
    background-color: rgba(var(--page-text-color-rgb), 0.1);
    color: var(--page-text-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.current-job-listings .listing-info {
    width: 700px;
    max-width: 100%;
    flex-grow: 1;
    background-color: var(--page-bg-color-alt);
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.current-job-listings .listing-info .main-info,
.current-job-listings .listing-info .job-details,
.current-job-listings .listing-info .benefits,
.current-job-listings .listing-info .job-description {
    border-bottom: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    padding: 1.5rem;
}
.current-job-listings .listing-info .job-description {
    border-bottom: 0;
}
.listing-info .main-info h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.listing-info .main-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.listing-info .application-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}
.listing-info .application-links a {
    display: block;
    width: max-content;
    max-width: 100%;
    padding: 10px 15px;
    background-color: var(--page-text-color);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
}
.listing-info .application-links a:hover {
    background-color: var(--primary-color);
}
.listing-info .application-links a:nth-child(2) {
    background-color: var(--secondary-color);
}
.listing-info .application-links a:nth-child(2):hover {
    background-color: var(--secondary-hover-color);
}
.listing-info .job-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.listing-info .job-details h5 {
    width: 100%;
}
.listing-info .job-details .detail {
    width: 250px;
    max-width: 100%;
    display: flex;
    gap: 0.5rem;
}
.listing-info .job-details .detail i {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-info .job-details .detail h6 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
}
.listing-info .job-details .detail p {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(var(--page-text-color-rgb), 0.8);
}
.listing-info .benefits h5,
.listing-info .job-details h5,
.listing-info .job-description h5.area-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
@media (max-width: 1121px) {
    .current-job-listings .listings {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .current-job-listings .listings .listing {
        width: 300px;
        max-width: 100%;
    }
}
@media (max-width: 655px) {
    .current-job-listings .listings .listing {
        width: 100%;
    }
}

.application-details {
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.application-details .application-title {
    width: 100%;
    text-align: center;
}
.application-details .application-title h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 700;
    color: white;
}
.application-details .application-title p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--page-text-color);
    font-weight: 500;
}
.application-details .application-detail {
    width: 250px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}
.application-details .application-detail i {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--page-text-color);
    margin: auto;
}
.application-details .application-detail h6 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--page-text-color);
}
.application-details .application-detail p {
    font-size: 1rem;
    margin-bottom: 0;
    color: white;
}
.sub-hero.application-hero h1,
.sub-hero.application-hero h2 {
    text-align: center;
}
.application-form {
    width: 750px;
    max-width: 100%;
    margin: auto;
}
.application-form .form-floating:has(input:required) label::after,
.application-form .form-floating:has(textarea:required) label::after,
.application-form .form-floating:has(select:required) label::after {
    content: ' *';
    color: var(--secondary-color);
    font-weight: 700;
}
.application-form .form-floating input,
.application-form .form-floating textarea,
.application-form .form-floating select {
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1) !important;
    outline: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.application-form .form-floating input:focus,
.application-form .form-floating textarea:focus,
.application-form .form-floating select:focus {
    border: 1px solid rgba(var(--page-text-color-rgb), 0.4) !important;
    box-shadow: none !important;
}
.application-form .declaration-section {
    background-color: var(--page-bg-color-alt);
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    padding: 1rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.file-uploader {
    width: 100%;
    margin-top: 0.5rem;
}
.file-uploader input[type="file"] {
    display: none;
}
.file-uploader .file-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed var(--info-color);
    background-color: var(--page-bg-color-alt);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}
.file-uploader .file-drop-zone:hover {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.05);
}
.file-uploader .file-drop-zone.dragover {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.1);
    border-style: solid;
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}
.file-uploader .file-drop-zone i {
    font-size: 3rem;
    color: var(--info-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.file-uploader .file-drop-zone:hover i,
.file-uploader .file-drop-zone.dragover i {
    color: var(--secondary-color);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.file-uploader .file-drop-zone .file-message {
    font-size: 1.1rem;
    color: var(--page-text-color);
    font-weight: 500;
    text-align: center;
}
.file-uploader .file-drop-zone .file-name {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    display: none;
}
.file-uploader .file-drop-zone .file-size {
    font-size: 0.9rem;
    color: var(--page-text-color-alt);
    font-weight: 400;
    text-align: center;
    display: none;
}
.file-uploader .file-drop-zone.has-file .file-name,
.file-uploader .file-drop-zone.has-file .file-size {
    display: block;
}
.file-uploader .file-drop-zone.has-file {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.05);
}
.file-uploader .file-drop-zone.has-file i {
    color: var(--secondary-color);
}
.captcha-border {
	width: 298px;
	height: 72px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
.application-submit {
    display: block;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    outline: 0;
}
.application-submit:hover {
    background-color: var(--secondary-color);
}
.application-submit:disabled {
    background-color: rgba(var(--page-text-color-rgb), 0.3);
    cursor: not-allowed;
}
.alert-info {
    color: var(--page-text-color);
    background-color: rgba(var(--info-color-rgb), 0.2);
    border: 0;
}
.alert-success {
    color: var(--page-text-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border: 0;
}
.text-success {
    color: var(--primary-color) !important;
}

.hiring-banner {
    width: 100%;
    padding: 10px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}
.hiring-banner .banner-content {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
.hiring-banner .banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.hiring-banner .banner-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.hiring-banner .banner-content a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    font-weight: 600;
    -webkit-border-radius: 20rem;
    -moz-border-radius: 20rem;
    -ms-border-radius: 20rem;
    -o-border-radius: 20rem;
    border-radius: 20rem;
    text-decoration: none;
}
.hiring-banner .banner-content a:hover {
    background-color: white;
    color: var(--secondary-color);
}

.home-intro {
    padding: 4rem 0;
}
.home-intro .text-content {
    width: 800px;
    max-width: 100%;
}
.home-intro .text-content h1 {
    font-family: var(--secondary-font);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.home-intro .text-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.home-intro .text-content a {
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
}
.home-intro .text-content a i {
    width: 30px;
    height: 30px;
    padding-top: 2px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    justify-content: center;
    position: absolute;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.home-intro .text-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-intro .text-content a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.home-services {
    padding: 3rem 0;
    background: linear-gradient(to top, var(--page-bg-color), var(--page-bg-color-alt));
}
.home-services h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}
.home-services a {
    position: relative;
    display: block;
    margin: auto;
    width: max-content;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--secondary-color);
}
.home-services a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-services a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.home-services .marquee-content {
    align-items: stretch;
    padding-top: 1rem;
}
.home-services .marquee li {
    width: 400px;
    max-width: 90vw;
    background-color: var(--page-bg-color-alt);
    margin-right: calc(50px + 1vw);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.home-services .marquee li img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    max-height: unset;
    object-fit: cover;
    object-position: center;
}
.home-services .marquee li .text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}
.home-services .marquee li h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.home-services .marquee li p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}


.home-why-us {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    background-color: var(--page-bg-color-alt);
}
.home-why-us .intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.home-why-us .intro-content h2 {
    margin-bottom: 0;
}
.home-why-us .reasons-controllers {
    max-width: 100%;
    display: flex;
    gap: 10px;
}
.home-why-us .reasons-controllers button {
    background-color: rgba(var(--info-color-rgb), 0.4);
    color: #131313;
    font-size: 1.4rem;
    height: 3.4rem;
    width: 3.4rem;
    border: 0;
    outline: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.home-why-us .reasons-controllers button:hover {
    background-color: var(--primary-color);
    color: white;
}
.home-why-us .reasons-slider {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 20px;
}
.home-why-us .reasons-slider .reason-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-width: 700px;
    max-width: 90vw;
    background-color: rgba(var(--info-color-rgb), 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.home-why-us .reasons-slider .reason-card img {
    width: 300px;
    object-fit: cover;
    object-position: center;
}
.home-why-us .reasons-slider .reason-card .text-content {
    width: 300px;
    flex-grow: 1;
    padding: 2rem 2.5rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-why-us .reasons-slider .reason-card .text-content h3 {
    font-family: var(--secondary-font);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}
.home-why-us .reasons-slider .reason-card .text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .home-why-us .reasons-slider .reason-card {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .home-why-us .reasons-slider .reason-card img {
        width: 100%;
        height: 200px;
    }
    .home-why-us .reasons-slider .reason-card .text-content {
        width: 100%;
        padding: 1.5rem;
    }
}
.home-careers {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    column-gap: clamp(2rem, 5vw, 7rem);
    row-gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    align-items: start;
}
.home-careers .intro-content {
    position: sticky;
    top: calc(var(--nav-height) + 4rem);
    width: 500px;
    max-width: 100%;
}
.home-careers .intro-content h2 {
    font-family: var(--secondary-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.home-careers .intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.home-careers .career-teasers {
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.home-careers .career-teasers .career-teaser i {
    background-color: rgba(var(--secondary-color-rgb), 0.2);
    color: var(--secondary-color);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.home-careers .career-teasers .career-teaser h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}
.home-careers .career-teasers .career-teaser p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
}
.home-careers .career-teasers .career-teaser a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.home-careers .career-teasers .career-teaser a:hover {
    background-color: var(--primary-color);
}
@media (max-width: 1199px) {
    .home-careers {
        justify-content: center;
    }
    .home-careers .intro-content {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    .home-careers .career-teasers {
        text-align: center;
    }
    .home-careers .career-teasers .career-teaser i {
        margin: 0 auto 15px auto;
    }
}
@media (max-width: 750px) {
    .home-careers .career-teasers .career-teaser h4 {
        font-size: 1.3rem;
    }
    .home-careers .career-teasers .career-teaser p {
        font-size: 1rem;
    }
}

/* Testimonials Carousel Styling */
.testimonials-carousel-wrapper {
    background-color: var(--nav-text-color);
    margin: 2rem 0;
}
.testimonials-carousel-wrapper .carousel {
    padding: 3rem 0;
}
.testimonials-carousel-wrapper .carousel-item {
    min-height: 400px;
    padding: 2rem 0;
}
.testimonials-carousel-wrapper .testimonial-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.testimonials-carousel-wrapper .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonials-carousel-wrapper .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.testimonials-carousel-wrapper .placeholder-image i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}
.testimonials-carousel-wrapper .testimonial-content {
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonials-carousel-wrapper .testimonial-content blockquote {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-carousel-wrapper .quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
}
.testimonials-carousel-wrapper .testimonial-text {
    width: 600px;
    max-width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--nav-bg-color);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonials-carousel-wrapper .blockquote-footer {
    padding-top: 1rem;
}
.testimonials-carousel-wrapper .testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    display: block;
    margin-bottom: 0.25rem;
}
.testimonials-carousel-wrapper .testimonial-position {
    font-size: 1rem;
    color: var(--info-color);
    font-weight: 400;
    display: block;
}
.blockquote-footer::before {
    content: unset;
}
@media (max-width: 768px) {
    .testimonials-carousel-wrapper .carousel-item {
        min-height: auto;
    }
    .testimonials-carousel-wrapper .testimonial-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    .testimonials-carousel-wrapper .testimonial-content {
        padding: 1rem;
    }
    .testimonials-carousel-wrapper .testimonial-text {
        font-size: 1rem;
    }
    .testimonials-carousel-wrapper .carousel-control-prev,
    .testimonials-carousel-wrapper .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .testimonials-carousel-wrapper .carousel-control-prev {
        left: 10px;
    }
    .testimonials-carousel-wrapper .carousel-control-next {
        right: 10px;
    }
}
.testimonial-buttons