:root {
	--bs-primary: #3cb7be;
	--bs-primary-rgb: 60, 183, 190;

	--bs-link-color: var(--bs-primary);
	--bs-link-hover-color: #33a0a7;

	--bs-primary-bg-subtle: #d5f3f4;
	--bs-primary-text-emphasis: #27777C;
}
.btn-primary {
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
}
.btn-primary:hover,
.btn-primary:focus {
	--bs-btn-hover-bg: #33a0a7;
	--bs-btn-hover-border-color: #33a0a7;
}
.btn-outline-primary {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-bg: #e4f3ef;
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	color: var(--bs-btn-color) !important;
}
a {
	color: var(--bs-link-color);
}
a:hover,
a:focus {
	color: var(--bs-link-hover-color);
}
.text-bg-primary .nav-link {
	color: #fff;
}
.text-bg-primary .nav-link:hover {
	color: #000;
}

#logo {
	width: 120px;
	height: 60px;
}
h1 {
	color: #27777C;
}

.hero {
	position: relative;
	background: url('/static/index/clinic_white_70.webp') no-repeat center/cover;
	min-height: 30vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

iframe {
	max-width: 100%;
}
/** {
	outline: 1px solid red;
}*/

.social-fixed-buttons {
	position: fixed;
	bottom: 20px;
	right: 0;
	transform: translateY(-50%);
	z-index: 1050;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 5px;
}
.social-fixed-buttons a {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 50%;
	transition: transform 0.2s ease;
}
.social-fixed-buttons a:hover {
	transform: scale(1.1);
}
.social-fixed-buttons img {
	width: 32px;
	height: 32px;
}

@media (min-width: 576px) {
	#logo {
	width: 160px;
	height: 80px;
	}
}
@media (min-width: 992px) {
	.hero {
		min-height: 50vh;
	}
}
