﻿

/* HomePage Styles
----------------------------------------*/

p {
	margin-bottom: 0px;
	font-size: 22px;
}

html {
	scroll-behavior: smooth;
}

body {
	scroll-behavior: smooth;
	font-family: "Nunito", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	text-decoration: none !important;
	color: #008d96;
}

	a:hover {
		color: orange;
	}

.section-green {
	background-color: #008d96;
	padding: 0px;
	margin: 0px;
}

.home-title {
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.2;
	margin: 0px 0px 1.5rem;
}

.home-text {
	line-height: 2rem;
}

.span-style {
	font-weight: 400;
	line-height: 2rem;
	font-size: 18px;
}

.services-card {
	border: 1px solid #DDF0F1;
	transition: all .15s ease-in-out;
}

	.services-card:hover {
		background-color: #DDF0F1;
		transform: scale(1.05);
	}

#hero {
	min-height: 100vh;
	align-content: center;
	text-align: center;
	justify-content: center;
}

.text-container {
	max-width: 650px;
}

.hero-title-text {
	color: white;
	font-size: 52px;
	letter-spacing: 1.5px;
	font-weight: 450;
	line-height: 1.5em;
}

.hero-sub-text {
	color: white;
	font-size: 28px;
	letter-spacing: 1.5px;
	font-weight: 350;
	margin-top: 1rem;
}

.hero-blurb {
	color: white;
	font-size: 16px;
	letter-spacing: 1.5px;
	font-weight: 350;
	margin-top: 1rem;
}

@media (min-width: 800px) {
	.hero-title-text {
		font-size: 56px;
	}

	.hero-sub-text {
		font-size: 32px;
	}

	.hero-blurb {
		font-size: 18px;
	}
}


@media (min-width: 1000px) {
	.hero-title-text {
		font-size: 60px;
	}

	.hero-sub-text {
		font-size: 36px;
	}

	.hero-blurb {
		font-size: 20px;
	}
}

@media (min-width: 1200px) {
	.hero-title-text {
		font-size: 64px;
	}

	.hero-sub-text {
		font-size: 40px;
	}

	.hero-blurb {
		font-size: 22px;
	}
}

@media (min-width: 1400px) {
	.text-container {
		max-width: 700px;
	}

	.hero-title-text {
		font-size: 68px;
	}

	.hero-sub-text {
		font-size: 44px;
	}

	.hero-blurb {
		font-size: 24px;
	}
}

.type-header-leader {
	font-size: 44px;
	letter-spacing: 2px;
	font-weight: 400;
	color: white;
}

.type-header-follower {
	font-size: 44px;
	font-weight: 600;
	color: #008d96;
}

.summaryText {
	font-size: 20px;
	max-width: 1800px;
}

@media (min-width: 800px) {
	.type-header-leader {
		font-size: 48px;
	}

	.type-header-follower {
		font-size: 48px;
	}

	.summaryText {
		font-size: 22px;
	}
}

@media (min-width: 1000px) {
	.type-header-leader {
		font-size: 52px;
	}

	.type-header-follower {
		font-size: 52px;
	}

	.summaryText {
		font-size: 24px;
	}
}

@media (min-width: 1200px) {
	.type-header-leader {
		font-size: 56px;
	}

	.type-header-follower {
		font-size: 56px;
	}

	.summaryText {
		font-size: 26px;
	}
}

@media (min-width: 1400px) {
	.type-header-leader {
		font-size: 60px;
	}

	.type-header-follower {
		font-size: 60px;
	}

	.summaryText {
		font-size: 28px;
	}
}

.pricingCategoryTitle {
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
}

@media (min-width: 768px) {
	.pricingCategoryTitle {
		margin-bottom: 0.75em;
	}
}

.pricingExampleTitle {
	text-decoration: underline;
	font-weight: 500;
	margin-bottom: 1em;
}

.pricingExampleText {
	margin-top: 1em;
	margin-bottom: 1em;
	text-align: left;
}

.pricingInfoElement {
	margin-bottom: 0.5em;
	text-align: left;
}

.pricingInfoElementHeader {
	font-weight: 600;
	margin-right: 0.25em;
}

.downArrowLinkWhite {
	letter-spacing: 2.5px;
	color: white;
	font-size: 2.5em;
	font-weight: 100;
	margin-bottom: 0.5em;
}

	.downArrowLinkWhite > svg {
		transition: 0.2s all ease;
		animation: bouncer 1s normal infinite;
		color: #FFFFFF;
	}

	.downArrowLinkWhite:hover > svg {
		color: orange;
	}

.downArrowLinkGreen {
	letter-spacing: 2.5px;
	color: orange;
	font-size: 2.5em;
	font-weight: 100;
	margin-bottom: 0.5em;
}

	.downArrowLinkGreen > svg {
		margin-top: 1em;
		color: #008d96;
		transition: 0.2s all ease;
		animation: bouncer 1s normal infinite;
	}

	.downArrowLinkGreen:hover > svg {
		color: orange;
	}


@media (min-width: 1400px) {
	.downArrowLinkWhite {
		font-size: 3em;
	}

	downArrowLinkGreen {
		font-size: 3em;
	}
}

#ContactUsDiv {
	position: relative;
}

	#ContactUsDiv span {
		position: absolute;
	}



.type-parent {
	padding: 1em;
	backdrop-filter: blur(2.5px);
	border-radius: 50px;
}

@keyframes bouncer {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(0);
	}
}

video {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

.anchor-offset {
	display: block;
	position: relative;
	top: -65px; /* Adjust this value to match the height of your fixed header */
	visibility: hidden;
}

.bg-jatech {
	background-color: #008d96;
	background-size: cover;
	background-attachment: fixed;
}

.bg-services {
	padding-top: 5em;
	padding-bottom: 5em;
}

.bg-about-us {
	background-color: #DDF0F1;
	padding-top: 5em;
	padding-bottom: 5em;
}

.bg-testimonials {
	padding-top: 5em;
	padding-bottom: 5em;
}

.bg-pricing {
	background-color: #DDF0F1;
	padding-top: 5em;
	padding-bottom: 5em;
}

.bg-buyer-guide {
	padding-top: 5em;
	padding-bottom: 5em;
}

.bg-faq {
	background-color: #DDF0F1;
	padding-top: 5em;
	padding-bottom: 5em;
}

.sectionMaxWidth {
	max-width: 1200px;
}

.body-text {
	font-weight: 100;
	letter-spacing: 2px;
	line-height: 32px;
}

.header-object {
	margin-bottom: 2.5rem;
}

.fade-in {
	transition: 1s ease;
	opacity: 0;
}

	.fade-in.visible {
		opacity: 1;
	}

.nav.nav-pills {
	justify-content: space-around;
	padding: 2em 0 2em 0;
}

.custom-pill {
	color: #008d96;
}

	.custom-pill:hover {
		color: #008d96;
	}

	.custom-pill > svg {
		transition: 0.25s ease;
	}

	.custom-pill:hover > svg {
		transform: scale(1.25);
		color: orange;
	}

	.custom-pill.active > svg {
		animation: flipper 1s normal infinite;
	}

@keyframes flipper {
	0% {
		transform: scaleX(1);
		color: orange;
	}

	50% {
		transform: scaleX(-1);
		color: navy;
	}

	100% {
		transform: scaleX(1);
		color: orange;
	}
}

#mobileServicesCarousel {
	padding: 0 2em 0 2em;
	margin-top: 2em;
}

.carousel-indicators {
	bottom: unset;
	top: 100%;
}

	.carousel-indicators li {
		background-color: black !important;
		opacity: 0.2;
	}

.body-text > h6 {
	margin-top: 1.5rem;
}

bordered-object {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}



.power-text {
	color: #008d96;
	font-weight: 800;
}

@media screen and (max-width: 992px) {
	.type-container {
		margin-top: 100px;
		height: 376px;
	}
}

.accordion-button {
	font-size: 1.4rem !important;
	background-color: #DDF0F1 !important;
	color: #000000 !important;
}

.accordion-button-white {
	font-size: 1.4rem !important;
	background-color: #FFFFFF !important;
	color: #000000 !important;
}

/*.accordion-button.collapsed {
		background: white;
	}

	.accordion-button:not(.collapsed)::after {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e")
	}

	.accordion-button.collapsed::after {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	}*/


.accordion-body {
	font-size: 1.2rem !important;
	text-align: left !important;
}

.jatechText {
	color: #008d96;
}

.contact-box {
	max-width: 750px;
	border-radius: 15px;
	box-shadow: 0px 35px 75px -30px rgba(50,50,93,0.25);
	background-color: #fff;
	border: 1px;
	border-color: black;
	border-style: solid;
}

	.contact-box > h1 {
		font-weight: 800;
		margin: 0.5em;
		-webkit-text-stroke: 1px black;
	}

#contactInputForm > .form-group > label {
	font-size: 13px;
	color: #008d96;
	font-weight: 600;
	line-height: 1.5;
	padding-left: 5px;
	letter-spacing: 1.5px;
}

#contactInputForm > .form-group > .form-control {
	outline: none;
	border: none;
	display: block;
	width: 100%;
	background: 0 0;
	font-size: 18px;
	font-weight: 200;
	letter-spacing: 1.5px;
	color: #333;
	line-height: 1.2;
	padding: 0 5px;
}

	#contactInputForm > .form-group > .form-control:focus {
		border-color: transparent !important;
		box-shadow: none;
	}

	#contactInputForm > .form-group > .form-control + .focus-input::before {
		width: 0;
	}


	#contactInputForm > .form-group > .form-control:focus + .focus-input::before {
		width: 100%;
	}

#submitButton {
	border: 2px #008d96 solid;
	color: #008d96;
	border-radius: 10px;
}

	#submitButton:hover {
		background: #008d96;
		color: #ffffff;
		transition: background 0.2s ease, color 0.2s ease;
	}

.focus-input {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

	.focus-input::before {
		content: "";
		display: block;
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 0;
		height: 2px;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		-moz-transition: all .4s;
		transition: all .4s;
		background: #7f7f7f;
	}

#contactInputForm > .form-group {
	width: 100%;
	position: relative;
	border-bottom: 2px solid #d9d9d9;
	padding-bottom: 13px;
	margin-bottom: 27px;
}

.about-us-text > h1, h2, p {
	font-weight: 100;
}

#OurPartners {
	background-color: grey;
	width: 100%;
}

.DivParent {
	height: 600px;
	width: 100%;
	overflow: hidden;
}

.DivChild {
	width: 100%;
	height: 100%;
	background-image: url("../img/Software/group-conversation.jpg");
	background-color: white;
	background-position: center;
	background-size: cover;
	transition: all .5s;
}

#MiDoS {
	background-image: url("../img/Software/hero-app-screens-1600.png")
}

#SALUS {
	background-image: url("../img/Software/c2 salus award.jfif");
}

#Antics {
	background-image: url("../img/Software/antics shop.jpg");
}

#HBCaravans {
	background-image: url("../img/Software/highbridge.jpg");
}

#Auwell {
	background-image: url('../img/Software/auwell circuit board.png');
}

#Empty {
	background-image: url("../img/1636557718206.jpg");
}

.centered {
	max-width: 1250px;
	margin: auto;
}

.DivParent:hover .DivChild,
.DivParent:focus .DivChild {
	transform: scale(1.2);
}

.DivChild::after {
	content: "";
	background: black;
	opacity: 0.4;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	height: 100%;
	width: 100%;
}

.DivChildText {
	position: absolute;
	bottom: 0;
	color: white;
	padding: 2.5rem;
	-webkit-text-stroke: 1px black;
}

	.DivChildText > h3, h4 {
		font-weight: 900;
	}

#EmptyText {
	width: 100% !important;
}

a.inline-link {
	color: #008d96;
	font-weight: 200;
	letter-spacing: 1.5px;
	display: inline-block;
	position: relative;
}

	a.inline-link:hover {
		color: #008d96;
	}

	a.inline-link::after {
		content: '';
		position: absolute;
		width: 100%;
		transform: scaleX(0);
		height: 2px;
		bottom: 0;
		left: 0;
		background-color: #008d96;
		transform-origin: bottom right;
		transition: transform 0.25s ease-out;
	}

	a.inline-link:hover::after {
		transform: scaleX(1);
		transform-origin: bottom left;
	}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background-color: #008d96;
	border-color: #008d96;
}

.picture-container {
	margin: 0px auto;
	max-width: 90%;
}

.hidden {
	display: none;
}

/*Our Team*/

.employee-container {
	border: 2px solid #008d96;
	background: black;
	position: relative;
	margin: 5px;
	min-height: 300px;
	cursor: pointer;
}

.employeePicture {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 600px;
}

.employee-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(0,141,150,0.7483368347338936) 80%);
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .75s ease;
	padding: 0em 0.25em;
}


.employee-container:hover .employee-overlay {
	height: 100%;
}

.employee-container:hover .employeePicture {
	filter: blur(8px) grayscale(50%);
}

.employee-container:hover .employee-name-nohover {
	opacity: 0;
	transition: opacity 0s ease; /* Instantly change opacity on hover */
}

.employee-container:not(:hover) .employee-name-nohover {
	opacity: 1;
	transition: opacity 0.5s ease; /* Fade back in when leaving the div */
	transition-delay: 0.5s;
}

.employee-overlay-text {
	color: white;
	font-size: 20px;
	position: absolute;
	overflow: hidden;
	bottom: 0;
	font-size: 16px;
	padding: 0em 0.25em;
}

.employee-name {
	font-size: 40px;
}

.employee-name-nohover {
	padding-left: 0.25em;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 40px;
	color: white;
	background: linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(0,141,150,0.7483368347338936) 80%);
}

/*testimonials*/
#testimonials-top-container {
	max-width: 1400px;
	margin: auto;
}

.card-padder {
	padding: 1em;
}

.testimonials-card {
	padding: 1em;
	height: 100%;
	width: 100%;
	max-width: 650px;
	margin: auto;
	border-radius: 5px;
	color: #454545;
	border: 1px solid #ccc;
	transition: all 0.15s ease-in-out;
}

@media (min-width:768px) {
	.card-padder {
		padding: 1.5em;
	}

	.testimonials-card {
		padding: 2em;
	}
}

@media (min-width:992px) {
	.card-padder {
		padding: 2.5em;
	}

	.testimonials-card {
		padding: 2.5em;
	}
}

@media (min-width:1200px) {
	.card-padder {
		padding: 4em;
	}

	.testimonials-card {
		padding: 3em;
	}
}

.testimonials-card:hover {
	transform: scale(1.05);
	background-color: #DDF0F1;
}

.testimonials-card > .top-section {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #008d96;
}

.testimonials-logo {
	height: 50px;
}

.testimonials-quote {
	padding: 25px 0px;
	font-size: 20px;
	font-style: italic;
	/*min-height: 16em;*/
	font-weight: 200;
}

.testimonials-name {
	margin-top: 10px;
	text-align: right;
	font-weight: 600;
}

.testimonials-company {
	text-align: right;
	font-weight: 300;
}

.testimonial-footer {
	border: none;
	background-color: white;
	transition: all 0.15s ease-in-out;
}

.testimonials-card:hover > .testimonial-footer {
	background-color: #DDF0F1;
}

/*scroll bar*/
/* width */
::-webkit-scrollbar {
	width: 0.9rem;
}

/* Track */
::-webkit-scrollbar-track {
	background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #008d96;
	border-radius: 0px;
}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: #015257;
	}


.ErrorElement {
	display: flex;
	justify-content: center;
	align-content: center;
	min-height: 50vh;
	align-items: center;
}

.ErrorTextHeading {
	color: #008d96;
	font-weight: 800;
	font-size: 100px;
}

.ErrorTextSubHeading {
	color: #008d96;
	font-weight: 700;
	font-size: 50px;
}

.GetInTouchButton {
	background-color: #008d96;
	color: white;
	max-width: 200px;
	font-size: 20px;
}

	.GetInTouchButton:is(:hover) {
		background-color: #DDF0F1;
		border: 1px solid #008d96;
	}

.GetInTouchButtonInverse {
	background-color: #FFFFFF;
	color: black;
	max-width: 200px;
	font-size: 20px;
	border-radius: 10px;
}

	.GetInTouchButtonInverse:is(:hover) {
		background-color: orange;
		border: 1px solid #008d96;
	}

.DownloadButton {
	background-color: #008d96;
	color: white;
	max-width: 300px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: baseline;
}
	.DownloadButton:is(:hover) {
		background-color: #DDF0F1;
		border: 1px solid #008d96;
	}

.contactUsTopSection {
	background-color: #DDF0F1;
}

.contactUsBottomSection {
	background-color: white;
}

.calendly-inline-widget {
	min-width: 500px;
	width: 500px;
	height: 700px;
}

@media (min-width:768px) {
	.calendly-inline-widget {
		min-width: 600px;
	}
}

@media (min-width:992px) {
	.calendly-inline-widget {
		min-width: 700px;
	}
}

@media (min-width:1200px) {
	.calendly-inline-widget {
		min-width: 800px;
	}
}

.contactUsInfo {
	margin-top: 2em;
	text-align: center;
}

@media (min-width:992px) {
	.contactUsInfo {
		text-align: start;
	}
}

.caroselImage {
	width: 325px;
}

@media (min-width:768px) {
	.caroselImage {
		width: 275px;
	}
}

@media (min-width:992px) {
	.caroselImage {
		width: 300px;
	}
}

@media (min-width:1200px) {
	.caroselImage {
		width: 325px;
	}
}

.caseStudyPageContainer {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 5rem;
	margin-bottom: 4rem;
}

.caseStudyPageTitle {
	font-weight: 700;
}

.caseStudies {
	margin-top: 2rem;
}

.caseStudyCard {
	/*width: 40rem;*/
	height: 56rem;
	border: 1px solid black;
	padding-right: 0px;
	padding-left: 0px;
}

.caseStudyCardImages {
	position: relative;
	margin-bottom: 4rem;
	height: 26rem;
}

.caseStudyCardLogoImage {
	position: absolute;
	bottom: 0;
	left: 20px;
	max-width: 250px;
	width: auto;
	height: 100px;
	-o-object-fit: contain;
	object-fit: contain;
	z-index: 10;
	background-color: #fff;
	padding: 10px;
	transform: translateY(50%);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
	display: flex;
}

	.caseStudyCardLogoImage img {
		align-self: center;
		max-width: 230px;
		max-height: 80px;
		height: auto;
	}

.caseStudySummary {
	font-size: 16px;
	font-weight: 300;
}

@media (min-width: 400px) {
	.caseStudyCard {
		height: 48rem;
	}

	.caseStudySummary {
		font-size: 15px;
	}
}

@media (min-width: 576px) {
	.caseStudyCard {
		height: 46rem;
	}

	.caseStudySummary {
		font-size: 15px;
	}
}

@media (min-width: 768px) {
	.caseStudyCard {
		height: 44rem;
	}

	.caseStudySummary {
		font-size: 15px;
	}	
}

@media (min-width: 992px) {
	.caseStudyCard {
		height: 48rem;
	}

	.caseStudySummary {
		font-size: 15px;
	}
}

@media (min-width: 1200px) {
	.caseStudyCard {
		height: 48rem;
	}

	.caseStudySummary {
		font-size: 16px;
	}
}

@media (min-width: 1400px) {
	.caseStudyCard {
		height: 48rem;
	}

	.caseStudySummary {
		font-size: 18px;
	}
}

.caseStudyCardBody {
	padding: 1rem;
	height: 17rem;
}

.caseStudyGoToArea {
	margin-top: 0.5rem;
	font-weight: 600;
}

	.caseStudyGoToArea a {
		color: #008d96;
		padding: 0 !important;
		margin: 0 !important;
	}

		.caseStudyGoToArea a:hover {
			color: #008d96;
		}

#caseStudyPage {
	/*margin-top: 2rem;*/
}

.caseStudyPageImagesSection {
	width: 100%;
	background-color: #DDF0F1;
}

.caseStudyPageImages {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
}

.caseStudyPageLogoImage {
	position: absolute;
	bottom: 0;
	left: 28px;
	width: 225px;
	height: 100px;
	-o-object-fit: contain;
	object-fit: contain;
	z-index: 10;
	background-color: #fff;
	padding: 20px;
	transform: translateY(-15%);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
	display: flex;
}

	.caseStudyPageLogoImage img {
		align-self: center;
	}

.caseStudyPageTitleSection {
	padding: 3rem 0.5rem;
}

	.caseStudyPageTitleSection .logoImage {
		max-width: 300px;
		max-height: 125px;
		height: auto;
		width: auto;
	}



.caseStudySectionTitle {
	color: black;
	font-weight: 500;
	font-size: 2.5rem;
	text-align: center;
}

.caseStudyTechnologiesSection {
	padding: 3rem 0.5rem;
	background-color: #DDF0F1;
}

.technologiesList {
	list-style: none;
	text-align: center;
	margin-top: 2rem;
	margin-left: 0px !important;
	padding-left: 0px !important;
}

	.technologiesList li {
		display: inline-block;
		background: #fff;
		text-align: center;
		margin: 10px 5px;
		padding: 5px 15px;
		border-bottom: 2px solid orange;
		font-size: 1.5rem;
	}

		.technologiesList li:nth-child(2n) {
			border-color: #008d96 !important;
		}

.caseStudyChallengeSection {
	padding: 3rem 0.5rem;
	background-color: #FFFFFF;
}

	.caseStudyChallengeSection .challengeText {
		margin-top: 2rem;
		font-size: 20px;
		font-weight: 300;
	}

.caseStudySolutionSection {
	padding: 3rem 0.5rem;
	background-color: #DDF0F1;
}

	.caseStudySolutionSection .solutionText {
		margin-top: 2rem;
		font-size: 20px;
		font-weight: 300;
	}

.caseStudyResultsSection {
	padding: 3rem 0.5rem;
	background-color: #FFFFFF;
}

	.caseStudyResultsSection .resultsText {
		margin-top: 2rem;
		font-size: 20px;
		font-weight: 300;
	}

.caseStudyConclusionSection {
	padding: 3rem 0.5rem;
	background-color: #DDF0F1;
}

	.caseStudyConclusionSection .conclusionText {
		margin-top: 2rem;
		font-size: 20px;
		font-weight: 300;
	}

@media (min-width: 576px) {
	.caseStudyPageTitleSection {
		padding: 3rem 1rem;
	}

	.caseStudyTechnologiesSection {
		padding: 3rem 1rem;
	}

	.caseStudyChallengeSection {
		padding: 3rem 1rem;
	}

	.caseStudySolutionSection {
		padding: 3rem 1rem;
	}

	.caseStudyResultsSection {
		padding: 3rem 1rem;
	}

	.caseStudyConclusionSection {
		padding: 3rem 1rem;
	}

	.caseStudyPageTitleSection .logoImage {
		max-width: 350px;
	}
}

@media (min-width: 768px) {
	.caseStudyPageTitleSection {
		padding: 3rem 1.5rem;
	}

	.caseStudyTechnologiesSection {
		padding: 3rem 1.5rem;
	}

	.caseStudyChallengeSection {
		padding: 3rem 1.5rem;
	}

	.caseStudySolutionSection {
		padding: 3rem 1.5rem;
	}

	.caseStudyResultsSection {
		padding: 3rem 1.5rem;
	}

	.caseStudyConclusionSection {
		padding: 3rem 1.5rem;
	}

	.caseStudyPageTitleSection .logoImage {
		max-width: 400px;
	}
}

@media (min-width: 992px) {
	.caseStudyPageTitleSection {
		padding: 3rem 2rem;
	}

	.caseStudyTechnologiesSection {
		padding: 3rem 2rem;
	}

	.caseStudyChallengeSection {
		padding: 3rem 2rem;
	}

	.caseStudySolutionSection {
		padding: 3rem 2rem;
	}

	.caseStudyResultsSection {
		padding: 3rem 2rem;
	}

	.caseStudyConclusionSection {
		padding: 3rem 2rem;
	}

	.caseStudyPageTitleSection .logoImage {
		max-width: 425px;
	}
}

@media (min-width: 1200px) {
	.caseStudyPageTitleSection {
		padding: 3rem 2.5rem;
	}

	.caseStudyTechnologiesSection {
		padding: 3rem 2.5rem;
	}

	.caseStudyChallengeSection {
		padding: 3rem 2.5rem;
	}

	.caseStudySolutionSection {
		padding: 3rem 2.5rem;
	}

	.caseStudyResultsSection {
		padding: 3rem 2.5rem;
	}

	.caseStudyConclusionSection {
		padding: 3rem 2.5rem;
	}

	.caseStudyPageTitleSection .logoImage {
		max-width: 450px;
	}
}

@media (min-width: 1400px) {
	.caseStudyPageTitleSection {
		padding: 3rem;
	}

	.caseStudyTechnologiesSection {
		padding: 3rem;
	}

	.caseStudyChallengeSection {
		padding: 3rem;
	}

	.caseStudySolutionSection {
		padding: 3rem;
	}

	.caseStudyResultsSection {
		padding: 3rem;
	}

	.caseStudyConclusionSection {
		padding: 3rem;
	}

	.caseStudyPageTitleSection .logoImage {
		max-width: 475px;
	}
}	

.caseStudyGoBackSection {
	padding: 3rem;
	background-color: #FFFFFF;
}

.caseStudyBackButton {
	background-color: #DDF0F1;
	color: black;
	max-width: 200px;
	font-size: 20px;
	border-radius: 10px;
	border: 1px solid black;
}

	.caseStudyBackButton:is(:hover) {
		background-color: orange;
		border: 1px solid #008d96;
	}

.blogPageContainer {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
}

.blogPageTitleSection {
	height: 8rem;
}

.blogPageTitle {
	font-weight: 700;
}

.blogPagePosts {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 3rem;
}

.blogPostCard {
	width: 100%;
	word-wrap: break-word;
	border: 1px solid black;
	border-radius: 6px;
	margin-right: 0px !important;
	margin-left: 0px !important;
}

.blogPostImageSection {
	padding-right: 0px !important;
	padding-left: 0px !important;
}

.blogPostCardBody {
	display: flex;
	padding: 1rem;
	background-color: #DDF0F1;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-evenly;
	border-radius: 6px;
}

.blogPostCardTitle {
	font-size: 18px;
	margin-bottom: 0px !important;
}

.blogPostCardSummary {
	margin: 1rem 0rem;
	font-size: 14px;
}

@media (min-width:460px) {
	.blogPostCardTitle {
		font-size: 20px;
	}

	.blogPostCardSummary {
		font-size: 16px;
	}
}

@media (min-width:576px) {
	.blogPostCardTitle {
		font-size: 22px;
	}

	.blogPostCardSummary {
		font-size: 18px;
	}

	.blogPostButton {
		max-width: 200px;
		font-size: 20px;
	}
}

@media (min-width:768px) {
	.blogPostCardTitle {
		font-size: 24px;
	}

	.blogPostCardSummary {
		font-size: 20px;
	}
}

@media (min-width:992px) {
	.blogPostCard {
		height: 20rem;
	}

	.blogPostImageSection {
		height: 100%;
	}

	.blogPostCardBody {
		height: 100%;
		padding: 1rem 1.5rem;
	}

	.blogPostCardTitle {
		font-size: 24px;
	}

	.blogPostCardSummary {
		margin: 0.5rem 0rem;
		font-size: 20px;
	}
}

@media (min-width:1200px) {
	.blogPostCardBody {
		height: 100%;
		padding: 1rem 2rem;
	}
}

.blogPostCardDate {
	font-size: 15px;
}

.blogPostButton {
	background-color: #FFFFFF;
	color: black;
	max-width: 150px;
	font-size: 18px;
	border-radius: 10px;
}

	.blogPostButton:is(:hover) {
		background-color: orange;
		border: 1px solid #008d96;
	}

#blogPostPage {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

	#blogPostPage h1, #blogPostPage h2, #blogPostPage h3, #blogPostPage h4, #blogPostPage h5, #blogPostPage h6 {
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	#blogPostPage p {
		font-weight: 250;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}

	#blogPostPage ul, #blogPostPage ol {
		font-weight: 250;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}

	#blogPostPage li {
		font-size: 18px;
		font-weight: 250;
		margin-top: 0.75rem;
		margin-bottom: 0.75rem;
	}

.blogPostBackButton {
	margin-top: 2rem;
	background-color: #DDF0F1;
	color: black;
	max-width: 200px;
	font-size: 20px;
	border-radius: 10px;
}

	.blogPostBackButton:is(:hover) {
		background-color: orange;
		border: 1px solid #008d96;
	}
