/*!
Theme Name: dkamman
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dkamman
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

dkamman is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Lora:wght@400;600;700&display=swap");
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 500;
	background-color: #FAF1E5;
}
@media (min-width: 1024px) {
	.header {
		background-color: transparent;
		transition: background-color 0.3s ease;
	}
}
.header__inner {
	height: 85px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 1024px) {
	.header__inner {
		height: 15vh;
		width: 80%;
		margin: 0 auto;
		transition: height 0.3s ease;
	}
}
.header__logo {
	height: 100%;
	transform: translateX(-10px);
	display: flex;
	align-items: center;
}
@media (min-width: 1024px) {
	.header__logo {
		transform: translateX(-25px);
	}
}
.header__image {
	height: 140px;
	width: 140px;
}
.header__image rect {
	fill: none;
	stroke: none;
}
.header__image g {
	fill: black;
	stroke: black;
}
.header__image path {
	fill: black;
	stroke: black;
}
@media (min-width: 1024px) {
	.header__image {
		height: 200px;
		width: 200px;
		transition: height 0.3s ease;
	}
	.header__image g {
		fill: white;
		stroke: white;
	}
	.header__image path {
		fill: white;
		stroke: white;
	}
}
.header__nav {
	height: calc(100vh - 85px);
	width: 100%;
	position: absolute;
	top: 85px;
	left: 0;
	padding-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	background-color: #FAF1E5;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.header__nav--open {
	transform: translateX(0%);
	transition: transform 0.5s ease;
}
@media (min-width: 1024px) {
	.header__nav {
		display: none;
	}
}
.header__nav-desktop {
	display: none;
}
.header__nav-desktop .header__item {
	display: none;
}
@media (min-width: 1024px) {
	.header__nav-desktop .header__item {
		display: inline-block;
	}
}
@media (min-width: 1024px) {
	.header__nav-desktop {
		display: block;
	}

	.header__nav-desktop .menu {
		display: flex;
		align-items: center;
		gap: 16px;
	}
}
.header__item {
	opacity: 0;
}
.header__item-link {
	font-size: 14px;
	color: rgb(34, 34, 34);
	transition: color 0.2s ease;
}
.header__item-link--tel {
	font-size: 14px;
}
.header__item-link:hover {
	color: #E7D3B6;
}
@media (min-width: 1024px) {
	.header__item-link {
		color: white;
		padding: 10px 8px;
	}
}
.header__item--tel {
	border: solid 1px;
	border-color: rgb(34, 34, 34);
	border-radius: 5px;
	padding: 10px 18px;
	font-family: "DM Sans", sans-serif;
	margin-top: 8px;
	transition: all 0.25s ease;
}
.header__item--tel:hover {
	border-color: #E7D3B6;
	border-radius: 0px;
}
.header__item--tel:hover .header__item-link--tel {
	color: #E7D3B6;
}
@media (min-width: 1024px) {
	.header__item--tel {
		margin-top: 0;
		margin-left: 16px;
		border-color: white;
	}
}
.header__item--tel:after {
	display: none !important;
}
@media (min-width: 1024px) {
	.header__item {
		opacity: 1;
	}
}
.header__hamburger {
	margin-right: 20px;
}
.header__hamburger-line {
	width: 20px;
	height: 1px;
	margin: 6px 0;
	background-color: black;
	transition: all 0.3s ease;
}
.header__hamburger-line-1 {
	transform: rotate(0deg);
}
.header__hamburger-line-2 {
	transform: translateX(0px);
	opacity: 1;
}
.header__hamburger-line-3 {
	transform: rotate(0deg);
}
.header__hamburger--toggled .header__hamburger-line-1 {
	transform: rotate(-45deg) translate(-5px, 5px);
}
.header__hamburger--toggled .header__hamburger-line-2 {
	transform: translateX(50px);
	opacity: 0;
}
.header__hamburger--toggled .header__hamburger-line-3 {
	transform: rotate(45deg) translate(-5px, -5px);
}
@media (min-width: 1024px) {
	.header__hamburger {
		display: none;
	}
}
@media (min-width: 1024px) {
	.header--scrolled {
		background-color: #FAF1E5;
		box-shadow: -3px -3px 3px 3px rgba(0, 0, 0, 0.25);
	}
}
@media (min-width: 1024px) {
	.header--scrolled .header__inner {
		height: 85px;
	}
}
@media (min-width: 1024px) {
	.header--scrolled .header__image {
		height: 120px;
	}
	.header--scrolled .header__image path {
		stroke: black;
		fill: black;
	}
	.header--scrolled .header__image g {
		stroke: black;
		fill: black;
	}
}
@media (min-width: 1024px) {
	.header--scrolled .header__item-link {
		color: rgb(34, 34, 34);
	}
}
.header--scrolled .header__item-link:hover {
	color: #A55435;
}
@media (min-width: 1024px) {
	.header--scrolled .header__item--tel {
		color: rgb(34, 34, 34);
		border-color: rgb(34, 34, 34);
	}
}
.header--scrolled .header__item--tel:hover {
	border-color: #A55435;
}
.header--scrolled .header__item--tel:hover .header__item-link--tel {
	color: #A55435;
}
.header__dropdown {
	position: relative;
}
.header__dropdown-menu {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #E7D3B6;
	padding: 12px;
	border-radius: 5px;
	box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.1s ease;
}
.header__dropdown-menu::before {
	content: "";
	width: 15px;
	height: 15px;
	background: #E7D3B6;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -10%) rotate(45deg);
}
.header__dropdown-menu--open {
	display: block;
}
.header__dropdown:hover .header__dropdown-menu {
	pointer-events: all;
	top: 30px;
	opacity: 1;
}
.header .dropdown-link {
	color: rgb(34, 34, 34);
}
.header .dropdown-link:hover {
	color: #A55435;
}

.header-alternative {
	position: fixed;
	width: 100%;
	z-index: 500;
	background-color: #FAF1E5;
}
@media (min-width: 1024px) {
	.header-alternative {
		background-color: transparent;
		transition: background-color 0.3s ease;
	}
}
.header-alternative__inner {
	height: 85px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 1024px) {
	.header-alternative__inner {
		width: 80%;
		margin: 0 auto;
		transition: height 0.3s ease;
	}
}
.header-alternative__logo {
	height: 100%;
	transform: translateX(-10px);
	display: flex;
	align-items: center;
}
@media (min-width: 1024px) {
	.header-alternative__logo {
		transform: translateX(-25px);
	}
}
.header-alternative__image {
	height: 140px;
	width: 140px;
}
.header-alternative__image rect {
	fill: none;
	stroke: none;
}
.header-alternative__image g {
	fill: black;
	stroke: black;
}
.header-alternative__image path {
	fill: black;
	stroke: black;
}
@media (min-width: 1024px) {
	.header-alternative__image {
		height: 120px;
		width: 120px;
		transition: height 0.3s ease;
	}
}
.header-alternative__nav {
	height: calc(100vh - 85px);
	width: 100%;
	position: absolute;
	top: 85px;
	left: 0;
	padding-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	background-color: #FAF1E5;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.header-alternative__nav--open {
	transform: translateX(0%);
	transition: transform 0.5s ease;
}
@media (min-width: 1024px) {
	.header-alternative__nav {
		display: none;
	}
}
.header-alternative__nav-desktop {
	display: none;
}
.header-alternative__nav-desktop .header__item {
	display: none;
}
@media (min-width: 1024px) {
	.header-alternative__nav-desktop .header__item {
		display: inline-block;
	}
}
@media (min-width: 1024px) {
	.header-alternative__nav-desktop {
		display: flex;
		align-items: center;
		gap: 16px;
	}
}
.header-alternative__item {
	opacity: 0;
}
.header-alternative__item-link {
	font-size: 14px;
	color: rgb(34, 34, 34);
	transition: color 0.2s ease;
}
.header-alternative__item-link--tel {
	font-size: 14px;
}
.header-alternative__item-link:hover {
	color: #A55435;
}
@media (min-width: 1024px) {
	.header-alternative__item-link {
		color: black;
		padding: 10px 8px;
	}
}
.header-alternative__item--tel {
	border: solid 1px;
	border-color: rgb(34, 34, 34);
	border-radius: 5px;
	padding: 10px 18px;
	font-family: "DM Sans", sans-serif;
	margin-top: 8px;
	transition: all 0.25s ease;
}
.header-alternative__item--tel:hover {
	border-color: #A55435;
	border-radius: 0px;
}
.header-alternative__item--tel:hover .header__item-link--tel {
	color: #A55435;
}
@media (min-width: 1024px) {
	.header-alternative__item--tel {
		margin-top: 0;
		margin-left: 16px;
		border-color: black;
	}
}
.header-alternative__item--tel:after {
	display: none !important;
}
@media (min-width: 1024px) {
	.header-alternative__item {
		opacity: 1;
	}
}
.header-alternative__hamburger {
	margin-right: 20px;
}
.header-alternative__hamburger-line {
	width: 20px;
	height: 1px;
	margin: 6px 0;
	background-color: black;
	transition: all 0.3s ease;
}
.header-alternative__hamburger-line-1 {
	transform: rotate(0deg);
}
.header-alternative__hamburger-line-2 {
	transform: translateX(0px);
	opacity: 1;
}
.header-alternative__hamburger-line-3 {
	transform: rotate(0deg);
}
.header-alternative__hamburger--toggled .header__hamburger-line-1 {
	transform: rotate(-45deg) translate(-5px, 5px);
}
.header-alternative__hamburger--toggled .header__hamburger-line-2 {
	transform: translateX(50px);
	opacity: 0;
}
.header-alternative__hamburger--toggled .header__hamburger-line-3 {
	transform: rotate(45deg) translate(-5px, -5px);
}
@media (min-width: 1024px) {
	.header-alternative__hamburger {
		display: none;
	}
}
@media (min-width: 1024px) {
	.header-alternative--scrolled {
		background-color: #FAF1E5;
		box-shadow: -3px -3px 3px 3px rgba(0, 0, 0, 0.25);
	}
}
.header-alternative__dropdown {
	position: relative;
}
.header-alternative__dropdown-menu {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #E7D3B6;
	padding: 12px;
	border-radius: 5px;
	box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.1s ease;
}
.header-alternative__dropdown-menu::before {
	content: "";
	width: 15px;
	height: 15px;
	background: #E7D3B6;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -10%) rotate(45deg);
}
.header-alternative__dropdown-menu--open {
	display: block;
}
.header-alternative__dropdown:hover .header-alternative__dropdown-menu {
	pointer-events: all;
	top: 30px;
	opacity: 1;
}
.header-alternative .dropdown-link {
	color: rgb(34, 34, 34);
}
.header-alternative .dropdown-link:hover {
	color: #A55435;
}

.hero {
	height: 100vh;
	position: relative;
}
.hero__background {
	background-repeat: no-repeat;
	background-position: 40% 50%;
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 0;
	filter: brightness(60%);
}
@media (min-width: 1024px) {
	.hero__background {
		background-position: 50% 50%;
	}
}
.hero__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: white;
	position: relative;
}
.hero__text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	padding: 0 16px;
	text-align: center;
}
.hero__title {
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	font-size: 48px;
	margin-bottom: 0;
}
@media (min-width: 1024px) {
	.hero__title {
		font-size: 68px;
	}
}
.hero__subtitle {
	font-family: "DM Sans", sans-serif;
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	font-size: 26px;
}

.conditions__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}
.conditions__item {
	width: calc(25% - 16px);
	position: relative;
	overflow: hidden;
}
.conditions__item:hover .conditions__image {
	filter: brightness(75%);
}
.conditions__item:hover .conditions__item-title {
	transform: translateY(0);
}
.conditions__item:hover .conditions__item-description {
	transform: translateY(0);
	opacity: 1;
}
.conditions__item-title {
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	margin: 0;
	transform: translateY(24px);
	transition: transform 0.6s ease;
}
.conditions__item-description {
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	margin: 0;
	transform: translateY(24px);
	opacity: 0;
	transition: all 0.6s ease;
}
.conditions__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	filter: brightness(90%);
	transition: filter 0.6s ease;
}
.conditions__image-wrapper {
	height: 308px;
}
.conditions__content {
	position: absolute;
	bottom: 0;
	color: white;
	padding: 12px;
}

.condition-card {
	position: relative;
	width: 100%;
	aspect-ratio: 10/10;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: solid 2px white;
	box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}
.condition-card:hover {
	box-shadow: -6px 6px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
	.condition-card:hover .condition-card__image-wrapper:after {
		opacity: 1;
	}
}
@media (min-width: 1024px) {
	.condition-card:hover .condition-card__content {
		transform: translateY(0);
	}
}
.condition-card__image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.condition-card__image-wrapper {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	transition: all 0.4s ease;
}
.condition-card__image-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1024px) {
	.condition-card__image-wrapper:after {
		opacity: 0;
		transition: all 0.4s ease;
	}
}
.condition-card__content {
	position: absolute;
	bottom: 0;
	padding: 10px;
	transition: transform 0.4s ease;
	z-index: 1;
	width: 100%;
}
@media (min-width: 1024px) {
	.condition-card__content {
		transform: translateY(100%);
		transition: all 0.4s ease;
	}
}
.condition-card__title {
	margin: 0;
	color: white;
	width: 100%;
	overflow-wrap: break-word;
}
.condition-card__title span {
	font-size: 15px;
}

.conditions__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}
.conditions__item {
	width: calc(25% - 16px);
	position: relative;
	overflow: hidden;
}
.conditions__item:hover .conditions__image {
	filter: brightness(75%);
}
.conditions__item:hover .conditions__item-title {
	transform: translateY(0);
}
.conditions__item:hover .conditions__item-description {
	transform: translateY(0);
	opacity: 1;
}
.conditions__item-title {
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	margin: 0;
	transform: translateY(24px);
	transition: transform 0.6s ease;
}
.conditions__item-description {
	text-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
	margin: 0;
	transform: translateY(24px);
	opacity: 0;
	transition: all 0.6s ease;
}
.conditions__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	filter: brightness(90%);
	transition: filter 0.6s ease;
}
.conditions__image-wrapper {
	height: 308px;
}
.conditions__content {
	position: absolute;
	bottom: 0;
	color: white;
	padding: 12px;
}

.plan-card {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: solid 2px white;
	box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
	.plan-card {
		aspect-ratio: 8/10;
	}
}
.plan-card__image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.plan-card__image-wrapper {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	transition: all 0.4s ease;
}
.plan-card__image-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.plan-card__content {
	position: absolute;
	bottom: 0;
	padding: 10px;
	transition: transform 0.4s ease;
	z-index: 1;
}
.plan-card__title {
	margin: 0;
	color: white;
}
.plan-card__title span {
	font-size: 15px;
}

.treatments__inner {
	display: flex;
	flex-direction: column;
	gap: 38px;
}
@media (min-width: 1024px) {
	.treatments__inner {
		gap: 48px;
	}
}
.treatments__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}
.treatments__title {
	font-weight: 600;
}

.treatment-card {
	display: flex;
	flex-direction: column-reverse;
	gap: 16px;
}
@media (min-width: 1024px) {
	.treatment-card {
		flex-direction: row;
		gap: 24px;
	}
}
.treatment-card__left {
	padding: 0 12px 12px;
}
@media (min-width: 1024px) {
	.treatment-card__left {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.treatment-card__content {
	display: flex;
	flex-direction: column;
	align-items: baseline;
}
@media (min-width: 1024px) {
	.treatment-card__content {
		width: 85%;
	}
}
.treatment-card__description {
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 0;
}
.treatment-card__right {
	width: 100%;
	aspect-ratio: 16/9;
}
@media (min-width: 1024px) {
	.treatment-card__right {
		width: 50%;
	}
}
.treatment-card__image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.treatment-card__image-wrapper {
	border: 2px solid white;
	box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
	height: 250px;
	margin: 0;
}
@media (min-width: 1024px) {
	.treatment-card__image-wrapper {
		height: 100%;
	}
}
.treatment-card__link {
	margin-top: 16px;
	margin-bottom: 16px;
	color: rgb(34, 34, 34);
}
.treatment-card__link:hover {
	border-radius: 0px;
	border-color: #A55435;
	color: #A55435;
}
.treatment-card__divider {
	background-color: #A55435 !important;
}
@media (min-width: 1024px) {
	.treatment-card__divider {
		display: none;
	}
}
.treatment-card:nth-child(even) {
	flex-direction: column-reverse;
}
@media (min-width: 1024px) {
	.treatment-card:nth-child(even) {
		flex-direction: row-reverse;
	}
}

.about-me {
	background: rgb(255, 255, 255);
	background: linear-gradient(0deg, rgb(231, 211, 182) 0%, rgb(255, 255, 255) 75%);
}
.about-me__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 32px;
}
.about-me__title {
	font-weight: 600;
	text-align: center;
}
.about-me__figure {
	margin: 0;
	border: 2px solid white;
	aspect-ratio: 1;
}
@media (min-width: 1024px) {
	.about-me__figure {
		aspect-ratio: 9/10;
	}
}
@media (min-width: 1440px) {
	.about-me__figure {
		aspect-ratio: 10/9;
	}
}
.about-me__image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.about-me__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	margin-top: 12px;
}
@media (min-width: 1024px) {
	.about-me__content {
		margin-top: 0;
	}
}
.about-me__content-inner {
	background-color: white;
	border-radius: 5px;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
	padding: 12px 24px;
}
@media (min-width: 1024px) {
	.about-me__content-inner {
		position: relative;
		left: -50px;
	}
}
.about-me__content--text {
	font-size: 14px;
}
.about-me__button {
	margin-bottom: 10px;
	color: rgb(34, 34, 34);
	display: inline-block;
}
.about-me__button:hover {
	border-radius: 0;
	color: #A55435;
	border-color: #A55435;
}

.footer {
	min-height: 85px;
	display: flex;
	flex-direction: column;
}
.footer__top {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
	gap: 24px;
}
@media (min-width: 1024px) {
	.footer__top {
		align-items: center;
		flex-direction: row;
		max-width: 1300px;
		margin: 0 auto;
		gap: 12px;
	}
}
.footer__column {
	width: 100%;
	border-top: #E7D3B6 solid 1px;
	padding-top: 24px;
}
@media (min-width: 1024px) {
	.footer__column {
		border-left: #E7D3B6 solid 1px;
		border-top: none;
		padding-left: 12px;
		padding-top: 0;
	}
}
.footer__column-one {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	border: none;
}
@media (min-width: 1024px) {
	.footer__column-two {
		display: flex;
	}
}
.footer__bottom {
	background-color: #FAF1E5;
	width: 100%;
	padding: 24px;
}
@media (min-width: 1024px) {
	.footer__bottom {
		display: flex;
		justify-content: center;
	}
}
@media (min-width: 1024px) {
	.footer__address {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.footer__address--text {
	margin-bottom: 0;
	font-size: 14px;
}
.footer__contact {
	color: rgb(34, 34, 34);
	border-bottom: 1px solid rgb(34, 34, 34);
	transition: all 0.2s ease;
	font-size: 14px;
}
.footer__contact:hover {
	color: #A55435;
	border-color: #A55435;
}
.footer__copyright {
	margin: 0;
	font-size: 14px;
}
.footer__social-media {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer__social-media svg {
	transition: all 0.2s ease;
}
.footer__social-media a:hover svg {
	fill: #E7D3B6;
}
.footer .divider {
	width: 100%;
}
@media (min-width: 1024px) {
	.footer .divider {
		width: 300px;
	}
}

.page-conditions {
	padding-top: 125px;
}
@media (min-height: 1024px) {
	.page-conditions {
		padding-top: 150px;
		min-height: calc(100vh - 225px);
	}
}
.page-conditions h1.h1 {
	font-size: 28px;
	font-family: "Lora", serif;
	font-weight: 600;
}
@media (min-width: 1024px) {
	.page-conditions h1.h1 {
		font-size: 32px;
	}
}
.page-conditions p.p {
	font-size: 15px;
	margin-bottom: 24px;
}
.page-conditions ul {
	margin: -18px 0 24px;
}
.page-conditions ul li {
	font-size: 15px;
}
.page-conditions__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}
.page-conditions__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
@media (min-width: 1024px) {
	.page-conditions__content {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
	.page-conditions__left {
		width: 50%;
	}
}
@media (min-width: 1024px) {
	.page-conditions__right {
		width: 50%;
	}
}
.page-conditions__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.page-conditions__image-container {
	margin: 0;
	border: 2px solid white;
	box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
	width: 100%;
	top: 100px;
}
@media (min-width: 1024px) {
	.page-conditions__image-container {
		position: sticky;
		top: 100px;
	}
}

.page-treatments {
	padding-top: 125px;
}
@media (min-width: 1024px) {
	.page-treatments {
		padding-top: 150px;
		padding-bottom: 50px;
		min-height: calc(100vh - 225px);
	}
}
.page-treatments h1.h1 {
	font-size: 28px;
	font-family: "Lora", serif;
	font-weight: 600;
}
@media (min-width: 1024px) {
	.page-treatments h1.h1 {
		font-size: 32px;
	}
}
.page-treatments p.p {
	font-size: 15px;
	margin-bottom: 24px;
}
.page-treatments ul {
	margin: -18px 0 24px;
}
.page-treatments ul li {
	font-size: 15px;
}
.page-treatments__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}
.page-treatments__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
@media (min-width: 1024px) {
	.page-treatments__content {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
	.page-treatments__left {
		width: 50%;
	}
}
@media (min-width: 1024px) {
	.page-treatments__right {
		width: 50%;
	}
}
.page-treatments__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.page-treatments__image-container {
	margin: 0;
	border: 2px solid white;
	box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
	width: 100%;
	top: 100px;
}
@media (min-width: 1024px) {
	.page-treatments__image-container {
		position: sticky;
		top: 100px;
	}
}
.page-treatments__video {
	width: 100%;
	margin-bottom: 24px;
}

.logos {
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 1024px) {
	.logos {
		flex-direction: row;
		margin-bottom: 24px;
	}
}
.logos__container {
	width: 300px;
}
.logos__image {
	width: 100%;
}

.costs-container {
	display: flex;
	margin-bottom: 24px;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.d-none {
	display: none;
}

body {
	font-family: "Lora", serif;
	color: rgb(34, 34, 34);
	overflow-x: hidden;
}

.section {
	padding: 35px 0;
}
@media (min-width: 1024px) {
	.section {
		padding: 90px 0;
	}
}
.section--primary {
	background-color: #fffaf3;
}

h1.h1 {
	font-size: 60px;
	font-weight: 700;
}

h2.h2 {
	font-size: 28px;
	font-family: "Lora", serif;
	font-weight: 600;
}

h3.h3 {
	font-size: 24px;
	font-family: "Lora", serif;
}

h4.h4 {
	font-family: "DM Sans", sans-serif;
}

p {
	font-family: "DM Sans", sans-serif;
}

ul li {
	font-family: "DM Sans", sans-serif;
}

a.link {
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
}

.button {
	border: solid 1px rgb(34, 34, 34);
	border-radius: 5px;
	padding: 10px 18px;
	font-family: "DM Sans", sans-serif;
	transition: all 0.25s ease;
	color: rgb(34, 34, 34);
}
.button:hover {
	border-color: #A55435;
	color: #A55435;
	border-radius: 0;
}

.divider {
	height: 2px;
	border-radius: 5px;
	background-color: #E7D3B6;
	margin: 6px 0;
}
.divider__xs {
	width: 50px;
}
.divider__sm {
	width: 150px;
}
.divider__md {
	width: 250px;
}
.divider__lg {
	width: 350px;
}

.position-bottom {
	-o-object-position: bottom;
	object-position: bottom;
}

@keyframes navLinkFadeIn {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
@keyframes navLinkFadeOut {
	from {
		opacity: 1;
		transform: translateX(0px);
	}
	to {
		opacity: 0;
		transform: translateX(50px);
	}
}
@keyframes navOpen {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0%);
	}
}
@keyframes navClose {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(100%);
	}
}/*# sourceMappingURL=style.css.map */

/* Custom CSS */

.row {
	display: flex;
	flex-wrap: wrap;
}

.entry-header,
.post-thumbnail {
	display: none;
}

.header__nav .menu {
	display: flex;
	flex-direction: column;
	gap: 32px;	
	align-items: center;
}

.menu {
	list-style: none;
}

.menu .sub-menu {
	display: none;
}

.menu-item {
	position: relative;
}
.menu-item a {
	font-size: 14px;
	color: rgb(34, 34, 34);
	text-decoration: none;
}

.menu-item.contact-button a {
	border: solid 1px;
	border-color: rgb(34, 34, 34);
	border-radius: 5px;
	padding: 10px 18px;
	font-family: "DM Sans", sans-serif;
	margin-top: 8px;

	transition: all 0.25s ease;
}
.menu-item.contact-button a:hover {
	border-radius: 0;
}

.header--scrolled .header__nav-desktop .menu a {
	color: rgb(34, 34, 34);
}
.header--scrolled .header__nav-desktop .menu a:hover {
	color: #A55435;
}
.header--scrolled .header__nav-desktop .menu .menu-item.contact-button a {	
	color: rgb(34, 34, 34);
	border-color: rgb(34, 34, 34);
}
.header--scrolled .header__nav-desktop .menu .menu-item.contact-button a:hover {
	color: #A55435;
	border-color: #A55435;
}

.header__logo {
	opacity: 0;
	transform: translateY(-4px);
}

.animating {
	transition: unset;
}

body:not(.home) .header__nav-desktop .menu > .menu-item > a {
	color: rgb(34, 34, 34);
}
body:not(.home) .header__nav-desktop .menu > .menu-item:hover > a {
	color: #A55435;
}

body:not(.home) .menu-item.contact-button a {
	border-color: rgb(34, 34, 34);
}
body:not(.home) .menu-item.contact-button a:hover {
	border-color: #A55435;
}

body:not(.home) .header__image g,
body:not(.home) .header__image path {
	stroke: rgb(34, 34, 34);
	fill: rgb(34, 34, 34);
}

@media screen and (min-width: 1024px) {
	.header__nav-desktop .menu > .menu-item {
		opacity: 0;
		transform: translateY(-4px);
	}

	.menu-item a {
		color: white;
		padding: 10px 8px;

		transition: all .2s ease;
	}
	.menu-item a:hover {
		color: #E7D3B6;
	}

	.menu-item.contact-button a {
		border-color: white;
	}

	.menu-item.contact-button a:hover {
		border-color: #E7D3B6;
	}

	.menu .sub-menu {
		display: block;
		padding: 24px 0 0 0;
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		list-style: none;

		opacity: 0;
		pointer-events: none;

		transition: all 0.2s ease;
	}

	.menu-item:hover .sub-menu {
		opacity: 1;
		pointer-events: all;
	}

	.menu .sub-menu:before {
		content: '';
		width: 15px;
		height: 15px;
		background: #E7D3B6;
		position: absolute;
		left: 50%;
		top: 0%;
		transform: translate(-50%, 60%) rotate(45deg);
	}

	.menu .sub-menu:after {
		content: '';
		position: absolute;

		top: 12px;
		left: -12px;
		right: -12px;
		bottom: -12px;
		background-color: #E7D3B6;
		padding: 12px;
		border-radius: 5px;
		box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.1);
		z-index: 2;
	}

	.menu .sub-menu .menu-item {
		padding: 3px 0px;
	}

	.menu .sub-menu a {
		padding: 10px 8px;
		color: rgb(34, 34, 34);
		white-space: nowrap;
		position: relative;
		z-index: 3;
	}
	.menu .sub-menu a:hover {
		color: #A55435;
	}
}
