/*
Theme Name: A101 Custom
Theme URI: https://adoracion101.com
Author: A101
Author URI: https://adoracion101.com
Description: Theme global custom para A101
Version: 1.0
Text Domain: a101-custom
*/

body {
	margin: 0;
	background: #f5f5f5;
	font-family: 'Outfit', sans-serif !important;
}

body * {
	font-family: 'Outfit', sans-serif !important;
	box-sizing: border-box;
}

#page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.a101-site-main {
	flex: 1;
}

/* HEADER */
.a101-header {
	background: #000;
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
}


.a101-header-left,
.a101-header-right {
	display: flex;
	align-items: center;
}

.a101-header-left img {
	height: 42px;
	width: auto;
	display: block;
	max-width: 220px;
}

/* BURGER */
.a101-menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	width: 34px;
	height: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.a101-menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 99px;
	transition: all .2s ease;
}

.a101-menu-toggle:hover span {
	background: #ffc859;
}

/* FULLSCREEN MENU */
.a101-fullscreen-menu {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	background: #ffc859;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .25s ease;
	display: flex;
	flex-direction: column;
}

.a101-fullscreen-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.a101-fullscreen-top {
	display: flex;
	justify-content: flex-end;
	padding: 20px 24px;
}

.a101-menu-close {
	background: transparent;
	border: 0;
	color: #000;
	font-size: 38px;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease;
	padding: 0;
}

.a101-menu-close:hover {
	color: #fff;
}

.a101-fullscreen-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.a101-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 900px;
	text-align: center;
}

.a101-menu-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.a101-menu-list li a {
	display: block;
	padding: 14px 0;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.15;
	transition: color .2s ease;
}

.a101-menu-list li a:hover {
	color: #000;
}

/* CONTENT */
.a101-main-wrap {
	padding: 50px 20px;
}

.a101-content-container {
	max-width: 1100px;
	margin: 0 auto;
	background: #fff;
	padding: 40px;
}

.a101-content-container .tutor-wrap,
.a101-content-container .tutor-page-wrap {
	max-width: 100% !important;
}

.a101-content-container img {
	max-width: 100%;
	height: auto;
}

/* FOOTER */
.a101-footer {
	background: #000;
	padding: 16px 24px;
	margin-top: auto;
}

.a101-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.a101-footer-left {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	text-align: left;
}

.a101-footer-right {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}

.a101-footer-right a {
	color: #ffc859;
	text-decoration: none;
	transition: color .2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.a101-footer-right a:hover {
	color: #fff;
}

.a101-footer-right svg {
	width: 18px;
	height: 18px;
	display: block;
}

body.a101-menu-open {
	overflow: hidden;
}

/* MOBILE */
@media (max-width: 767px) {
	.a101-header {
		min-height: 72px;
		padding: 0 18px;
	}

	.a101-header-right img {
		height: 36px;
		max-width: 170px;
	}

	.a101-main-wrap {
		padding: 30px 14px;
	}

	.a101-content-container {
		padding: 24px;
	}

	.a101-menu-list li a {
		font-size: 26px;
	}

	.a101-footer-inner {
		flex-direction: row;
		align-items: center;
	}

	.a101-footer-left {
		max-width: 70%;
	}
}

.a101-fullscreen-nav ul,
.a101-fullscreen-nav .menu {
	display: block !important;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.a101-fullscreen-nav li {
	display: block !important;
	width: 100%;
}

.a101-fullscreen-nav a {
	display: block !important;
	width: 100%;
}