@charset "UTF-8";
.d-flex {
	display: flex;
}

.u-container {
	padding: 0 30px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.u-container {
		padding: 0;
		max-width: 900px;
	}
}

.site-header {
	position: sticky;
	top: 0;
	padding: 16px 0;
	background-color: white;
	z-index: 11;
}

.site-header--container {
	max-width: 900px;
}

.site-header--container .custom-logo {
	max-width: 80%;
}

@media (min-width: 1024px) {
	.site-header--container .custom-logo {
		max-width: 100%;
	}
}

.site-header .main-navigation {
	position: fixed;
	width: 100svw;
	height: calc(100svh - 80px);
	left: 100svw;
	bottom: 0;
	background-color: white;
	transition: all .3s ease-in-out;
}

@media (min-width: 1024px) {
	.site-header .main-navigation {
		width: 100%;
		position: relative;
		height: auto;
		left: 0;
	}
}

.site-header .main-navigation.open {
	left: 0;
}

.site-header .main-navigation .menu-main-menu-container {
	width: 100%;
}

.site-header .main-navigation .menu-main-menu-container .menu {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	margin-top: 20%;
}

@media (min-width: 1024px) {
	.site-header .main-navigation .menu-main-menu-container .menu {
		flex-direction: row;
		justify-content: end;
		gap: 56px;
		margin-top: 0;
	}
}

.site-header .main-navigation .menu-main-menu-container .menu-item {
	position: relative;
}

.site-header .main-navigation .menu-main-menu-container .menu-item a {
	font-size: 24px;
	font-weight: 400;
	word-wrap: break-word;
}

@media (min-width: 1024px) {
	.site-header .main-navigation .menu-main-menu-container .menu-item a {
		font-size: 16px;
	}
}

.site-header .main-navigation .menu-main-menu-container .menu-item:hover::before {
	content: "";
	position: absolute;
	width: 48px;
	height: 2px;
	background-color: #005e4c;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.site-header .main-navigation .menu-main-menu-container .menu-item:hover::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #005e4c;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
}

.margin-admin {
	height: 32px;
}

.c-header--menu {
	cursor: pointer;
	width: 70px;
	height: 70px;
	transform: rotate(45deg);
}

.c-header--menu.open {
	transition: 0.5s ease-in-out;
	position: relative;
}

.c-header--menu.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.c-header--menu.open span:nth-child(2) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.c-header--menu.open span:nth-child(3) {
	opacity: 0;
}

.c-header--menu > div {
	transform: rotate(-45deg);
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.c-header--menu > div span {
	display: block;
	background-color: #005e4c;
	width: 40px;
	height: 3px;
	margin: 5px 0;
	transition: 0.5s;
}

.c-footer {
	background-color: #005e4c;
	color: white;
}

.c-footer--container {
	gap: 40px;
	padding-top: 24px;
	padding-bottom: 64px;
}

@media (min-width: 1024px) {
	.c-footer--info {
		width: 40%;
	}
}

.c-footer--info p:first-child {
	font-size: 32px;
	font-weight: 600;
	word-wrap: break-word;
}

.c-footer--info p:last-child {
	font-size: 16px;
	font-weight: 400;
	word-wrap: break-word;
	text-align: left;
	margin-top: 24px;
}

.c-footer--info a {
	font-weight: 700;
	text-decoration: underline;
}

.c-footer--rrss {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-footer--rrss > div a {
	align-items: center;
	gap: 16px;
}

.c-footer--rrss > div a img {
	width: 32px;
}

.c-input,
.c-textarea {
	color: rgba(0, 94, 76, 0.5);
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	word-wrap: break-word;
	border-bottom: 2px solid #005e4c;
	padding: 8px 0;
	margin-bottom: 24px;
	outline: none;
	width: 100%;
}

@media (min-width: 1024px) {
	.c-input,
	.c-textarea {
		width: auto;
	}
}

.c-buttons {
	color: #005e4c;
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	word-wrap: break-word;
	border: 1px solid #005e4c;
	border-radius: 6px;
	padding: 12px 48px;
	cursor: pointer;
	position: relative;
	transition: all 0.5s ease-in-out;
	background-color: white !important;
}

.c-buttons:hover {
	color: white;
	background-color: #005e4c !important;
}

.c-dialog {
	position: fixed;
	top: 0;
	height: 100svh;
	width: 100svw;
	background-color: transparent;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
}

.c-dialog[open] {
	display: flex;
	justify-content: center;
}

.c-dialog--container {
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	position: absolute;
	padding: 48px 40px;
	max-width: calc(100svw - 48px);
}

@media (min-width: 1024px) {
	.c-dialog--container {
		max-width: 400px;
	}
}

.c-dialog--container p {
	font-size: 24px;
	font-weight: 400;
	color: #005e4c;
}

.c-dialog--background {
	background-color: rgba(0, 0, 0, 0.2);
	height: 100%;
	top: 0;
	position: absolute;
	width: 100%;
	left: 0;
}

.c-dialog--close {
	position: absolute;
	right: 24px;
	top: 24px;
}

.s-presentation {
	word-wrap: break-word;
	color: #000000;
	position: relative;
	margin-top: 40px;
	margin-top: 32px;
}

@media (min-width: 1024px) {
	.s-presentation {
		margin-top: 104px;
		margin-bottom: 70px;
	}
}

.s-presentation--text, .s-presentation--count {
	font-size: 24px;
	font-weight: 300;
}

@media (min-width: 1024px) {
	.s-presentation--text, .s-presentation--count {
		font-size: 32px;
	}
}

.s-presentation--text {
	font-style: italic;
	margin-left: 40px;
	/* Espacio para los números de línea */
	position: relative;
}

.s-presentation--count {
	color: #999;
	position: absolute;
	top: 0;
}

.s-image {
	margin-top: 70px;
	margin-bottom: 88px;
}

.s-image img {
	-webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	border-radius: 0px 0px 8px 8px;
}

.s-contact {
	border-top: 1px solid #005e4c;
	border-bottom: 1px solid #005e4c;
	margin-top: 88px;
	margin-bottom: 64px;
	scroll-margin-top: 100px;
}

.s-contact--container {
	margin-top: 56px;
	margin-bottom: 56px;
}

@media (min-width: 1024px) {
	.s-contact--container {
		background-image: url("https://thirteenthings.ddev.site/wp-content/uploads/2023/12/contact_bg.png");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom;
	}
}

.s-contact--container p,
.s-contact--container h2 {
	color: black;
	font-size: 24px;
	font-weight: 500;
	word-wrap: break-word;
}

.s-contact--no-margin {
	margin-bottom: 0;
}

.s-about {
	margin-top: 64px;
	margin-bottom: 104px;
}

.s-about--container {
	gap: 40px;
}

.s-about--image {
	display: flex;
	justify-content: center;
	width: 100%;
}

@media (min-width: 1024px) {
	.s-about--image {
		display: block;
		max-width: 25%;
	}
}

.s-about p {
	color: black;
	font-size: 24px;
	font-weight: 600;
	word-wrap: break-word;
	margin: 16px 0;
}

.s-about--text {
	gap: 24px;
}

@media (min-width: 1024px) {
	.s-about--text {
		gap: 40px;
	}
}

.s-about--text p {
	color: black;
	font-size: 14px;
	font-weight: 400;
	word-wrap: break-word;
}

.s-new_web {
	color: black;
	word-wrap: break-word;
	scroll-margin-top: 100px;
}

.s-new_web--container {
	text-align: center;
}

.s-new_web--container h2 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 16px;
}

.s-new_web--container > p {
	font-size: 32px;
	font-weight: 600;
}

.s-new_web--players {
	margin-top: 48px;
	margin-bottom: 88px;
	position: relative;
}

.s-new_web--player {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	cursor: pointer;
	position: relative;
}

.s-new_web--player h3 {
	color: #005e4c;
	font-size: 24px;
	font-weight: 600;
	word-wrap: break-word;
}

.s-new_web--player img {
	border-radius: 8px;
}

.s-new_web--player.active {
	display: flex;
}

@media (min-width: 1024px) {
	.s-new_web--player {
		display: flex;
	}
	.s-new_web--player:hover::before, .s-new_web--player.active::before {
		content: "";
		position: absolute;
		width: 48px;
		height: 2px;
		background-color: #005e4c;
		bottom: -8px;
	}
	.s-new_web--player:hover::after, .s-new_web--player.active::after {
		content: "";
		position: absolute;
		width: 24px;
		height: 2px;
		background-color: #005e4c;
		bottom: -16px;
	}
}

.s-new_web--statistics {
	display: none;
}

.s-new_web--statistics > div {
	margin-bottom: 16px;
}

.s-new_web--statistics > div > p {
	min-width: 30%;
	text-align: left;
	margin-right: 24px;
}

.s-new_web--statistics > div > div {
	width: 220px;
	border: 1px solid #005e4c;
	position: relative;
	min-height: 24px;
}

.s-new_web--statistics > div > div::before {
	content: "";
	width: var(--statistic-width);
	background-color: #005e4c;
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
}

.s-new_web--description {
	color: black;
	font-size: 14px;
	font-weight: 400;
	word-wrap: break-word;
	text-align: left;
	margin-bottom: 56px;
}

.s-new_web--bg_multiply {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #005e4c;
	mix-blend-mode: color;
	opacity: 0;
}

.s-new_web .swiper {
	margin: 64px 0 96px 0;
}

.s-new_web .swiper-slide > div {
	gap: 32px;
}

.s-new_web .swiper-button-next, .s-new_web .swiper-button-prev {
	color: #005e4c;
	margin-top: 0;
}

@media (min-width: 1024px) {
	.s-new_web .swiper img {
		min-width: 400px;
	}
}

.s-maintenance {
	position: relative;
	scroll-margin-top: 100px;
}

.s-maintenance::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 382px;
	background-color: #005e4c;
	z-index: -1;
}

.s-maintenance--container {
	padding-top: 48px;
	padding-bottom: 48px;
}

.s-maintenance--container h2 {
	color: white;
	font-size: 16px;
	font-weight: 400;
	word-wrap: break-word;
	text-align: center;
	margin-bottom: 16px;
}

.s-maintenance--container > p {
	color: white;
	font-size: 32px;
	font-weight: 600;
	word-wrap: break-word;
	text-align: center;
}

.s-maintenance--container .swiper-button-next, .s-maintenance--container .swiper-button-prev {
	color: #005e4c;
}

@media (min-width: 1024px) {
	.s-maintenance--container .swiper {
		overflow: visible;
	}
}

.s-maintenance--plans {
	margin-top: 56px;
}

@media (min-width: 1024px) {
	.s-maintenance--plans {
		background-color: white;
		border-radius: 16px;
		-webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
		border: 1px solid rgba(0, 0, 0, 0.2);
	}
}

.s-maintenance--plan {
	background-color: white;
	padding: 40px 0;
	width: 33.333%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #005e4c;
	border-radius: 16px;
	height: auto;
}

@media (min-width: 1024px) {
	.s-maintenance--plan {
		background-color: unset;
		border-radius: 0;
		border: unset;
	}
	.s-maintenance--plan:nth-child(2) {
		border-left: 1px solid #005e4c;
		border-right: 1px solid #005e4c;
	}
}

.s-maintenance--plan h3 {
	color: #005e4c;
	font-size: 20px;
	font-weight: 600;
	word-wrap: break-word;
	margin-bottom: 16px;
}

.s-maintenance--plan ul {
	margin: 32px 0;
	padding: 0 32px;
	height: 100%;
}

.s-maintenance--plan ul li {
	text-align: center;
	margin: 16px 0;
	position: relative;
}

.s-maintenance--plan ul li::after {
	content: '';
	width: 72px;
	border-bottom: 1px solid rgba(0, 94, 76, 0.7);
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.s-maintenance--plan ul li:last-of-type::after {
	content: none;
}

.s-article {
	width: 100%;
	max-width: 100%;
}

.s-article--header {
	padding-bottom: 56px;
}

@media (min-width: 1024px) {
	.s-article--header {
		padding: 56px 0;
	}
}

.s-article--header h1 {
	color: black;
	font-size: 36px;
	font-weight: 600;
}

.s-article--header p {
	margin-top: 16px;
	color: black;
	font-size: 14px;
	font-weight: 400;
}

@media (min-width: 1024px) {
	.s-article--header p {
		max-width: 50%;
	}
}

.s-article--container {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 56px;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.s-article--container {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.s-article {
		width: calc(33.33% - (64px / 3));
		max-width: 33.33%;
	}
}

.s-article--image {
	position: relative;
	left: 0px;
	border: 2px solid #005e40;
	transition: all 0.3s ease-in-out;
}

.s-article--content {
	border: 2px solid #005e40;
	padding: 32px 16px 24px 16px;
	margin-top: -16px;
}

.s-article--title {
	color: black;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.s-article--date, .s-article--text {
	color: black;
	font-size: 14px;
	font-weight: 400;
}

.s-article--more {
	width: 48px;
	height: 48px;
	position: relative;
	margin: auto;
}

.s-article--more .s-article--tridecagon__filled {
	width: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	transition: all 0.4s ease-in-out;
}

.s-article--more span {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	color: #005e40;
	font-size: 36px;
	font-weight: 400;
}

.s-article:hover {
	cursor: pointer;
}

.s-article:hover .s-article--image {
	left: -16px;
	width: 100%;
	-webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
}

.s-article:hover .s-article--more .s-article--tridecagon__filled {
	width: 100%;
}

.s-article:hover .s-article--more span {
	color: white;
}

.s-article .entry-footer {
	margin-top: 16px;
}

.s-single {
	padding: 0;
	padding-bottom: 56px;
}

@media (min-width: 1024px) {
	.s-single {
		padding: 56px 0;
	}
}

.s-single--content, .s-single--related,
.s-single .post-thumbnail {
	max-width: calc(100% - 48px);
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.s-single--content, .s-single--related,
	.s-single .post-thumbnail {
		margin: 0;
		max-width: 65%;
	}
}

.s-single--content img, .s-single--related img,
.s-single .post-thumbnail img {
	width: 100%;
	-webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.2);
	background: transparent;
	border-radius: 6px;
}

.s-single--content {
	padding: 24px 0;
}

@media (min-width: 1024px) {
	.s-single--content {
		padding: 56px 40px 56px 24px;
	}
}

.s-single--content .posted-on {
	color: black;
	font-size: 14px;
	font-weight: 400;
}

.s-single--content h1 {
	color: black;
	font-size: 32px;
	font-weight: 600;
	margin: 16px 0;
}

.s-single--content h2 {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 18px;
}

.s-single--content p,
.s-single--content li {
	color: black;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 16px;
}

.s-single--content figure {
	margin-bottom: 16px;
}

.s-single--content figure img {
	width: calc(100% + 24px + 40px);
	max-width: unset;
	position: relative;
	left: -24px;
	border: 2px solid #005e40;
}

.s-single--content ul {
	padding-left: 24px;
	list-style: inherit;
}

.s-single--forms {
	display: none;
}

@media (min-width: 1024px) {
	.s-single--forms {
		display: block;
		width: 35%;
		position: sticky;
		top: 88px;
		float: right;
		margin-top: 56px;
		padding-left: 24px;
	}
	.s-single--forms .wpcf7 {
		border: 2px solid #005e40;
		padding: 32px 24px 0px;
		background-color: white;
	}
	.s-single--forms .wpcf7 br {
		display: none;
	}
	.s-single--forms .wpcf7 input,
	.s-single--forms .wpcf7 textarea {
		width: 100%;
	}
	.s-single--forms img {
		width: 100%;
	}
}

.s-single--related {
	display: flex;
	flex-direction: column;
	padding: 0 24px;
	gap: 24px;
}

@media (min-width: 1024px) {
	.s-single--related {
		flex-direction: row;
		padding: 0;
	}
}

.s-single--related img {
	border-radius: unset;
}

.s-single--related .s-article {
	width: 100%;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.s-single--related .s-article {
		width: calc(50% - 24px / 2);
		max-width: 50%;
	}
}

.s-single--related .s-article--title {
	font-size: 20px;
}

.s-single--related .s-article--content {
	padding: 32px 16px 16px 16px;
}

html {
	margin-top: 0 !important;
	font-family: "Roboto", sans-serif !important;
	scroll-behavior: smooth;
}

.calendly-inline-widget {
	min-width: 320px;
	height: 1000px;
}

@media (min-width: 1024px) {
	.calendly-inline-widget {
		height: 800px;
	}
}

/*# sourceMappingURL=style.css.map */