html {
	font-size: 14px;
}

@media (min-width: 768px) {
  html {
	font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
	font-family: 'Raleway', cursive;
	font-size: 16px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
	color: var(--bs-secondary-color);
	text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
	text-align: start;
}

.main-bg-color {
	background-color: #62044a
}

.text-gray {
	color: #ababab;
}

.bg-gray {
	background-color: #ababab;
}

.logo {
	width:10em;
}

.dropdown-item:hover {
	background-color:gray;
}

.breadcrumb-section {
	height: 160px;
	background-color: #62044a;
	color:white
}

.fancy-font {
	font-family: 'Great Vibes', cursive;
}

.circle-img {
	width: 285px;
	height: 285px;
	border-radius: 50%;
	object-fit: cover;
}

.bordered-box {
	border: 3px solid #000;
	padding: 1.5rem;
	width: 600px;
	line-height: 2;
}

	.bordered-box h1 {
		margin: 0;
		font-size: 2rem;
		line-height: 1.3;
	}

/* Tablet */
@media (max-width: 992px) {
	.bordered-box {
		max-width: 90%;
		padding: 0.8rem;
	}

		.bordered-box h1 {
			font-size: 1.8rem;
		}
}

/* Mobile */
@media (max-width: 576px) {
	.bordered-box {
		padding: 0.6rem;
	}

		.bordered-box h1 {
			font-size: 1.5rem;
		}
}

.icon-circle {
	width: 50px;
	height: 50px;
	border: 2px solid #b5116d;
	border-radius: 50%;
	font-size: 1.2rem;
	color: #b5116d;
}

.bg-pink {
	background-color: #b5116d
}

.small-italic {
	font-style:italic;
	font-size:14px;
}

.box-link {
	border: 2px solid #d0cecf;
	padding: 1rem;
	margin-bottom: 1.15rem;
	text-align: center;
	cursor: pointer;
	color: gray;
}

	.box-link:hover {
		background-color: #d0cecf;
		color: white;
	}

.carousel-overlay {
	position: absolute;
	top: 0;
	right: 100px;
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	padding: 0 2rem;
	color: white;
	text-align: right;
	pointer-events: none;

}

	.carousel-overlay h1,
	.carousel-overlay p {
		text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
		transform: translateX(100%);
		opacity: 0;
		transition: transform 0.8s ease, opacity 0.8s ease;
		font-size: 3rem;
	}

.carousel-item.active .carousel-overlay h1,
.carousel-item.active .carousel-overlay p {
	transform: translateX(0);
	opacity: 1;
}

.carousel-item.active .carousel-overlay p {
	transition-delay: 0.2s;
}

.font-medium {
	font-size:20px;
}

#onlinetherapy {
	background-image: url('/images/slide_michele-renaud_online-therapy-ontario_online_therapy.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 800px;
}

.text-shadow {
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contrast-bg {
	background-color: rgba(0, 0, 0, 0.3);
}

.text-spacing {
	letter-spacing: 0.1em;
}

.text-pink {
	color: #b5116d;
}

#servicesPerAge {
	background-image: url('/images/Michele-Renaud_Online-Therapy-Ontario_low_04.jpg');
	background-size: cover;
	background-position: center 10%;
	background-repeat: no-repeat;
	width: 100%;
	height: 500px;
	position: relative;
	display: flex;
	align-items: center;
}

.service-block {
	color: white;
cursor:pointer;
}

.service-block:hover {
	background-color: white;
	color: gray;
}

.map-wrapper {
	width: 100%;
	height: 500px;
}

	.map-wrapper iframe {
		width: 100%;
		height: 100%;
		border: 0;
	}

.bg-lightgray {
	background-color:whitesmoke ;
}

#oncall strong {
	color: steelblue;
}

#imgIndividualTherapy {
	background-image: url('/images/adults1.jpg'); /* set the image */
	background-size: contain; /* scale to cover the entire div */
	background-position: top center; /* center the image */
	background-repeat: no-repeat; /* prevent tiling */
	width: 100%; /* or specific width */
	height: 400px; /* or any height you want */
}

.two-column-list {
	columns: 2; /* splits into two columns */
	-webkit-columns: 2;
	-moz-columns: 2;
	column-gap: 40px; /* spacing between columns */
}

	.two-column-list li {
		margin-bottom: 8px;
	}