* {
	margin: 0px;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html, body {
	height: 100%;
}
body {
	width: 100vw;
	margin: 0 auto;
	padding: 0;
	max-width: 1440px;
	color: #0A1E53;
}
.header, .contener, .footer {
	box-sizing: border-box;
	width: 100%;
}
.contener {
	width: 100%;
	min-height: 100vh;
	padding: 10px;
	border-top: 5px solid #FD7F1D;
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		#ffffff 15%,
		#BBCAF7 60%,
		#7A99F9 85%,
		#0350F4 100%
	);
}

/* SERVICIOS */
.servicios_box {
	width: 100%;
}
.servicios_tit {
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 25px;
	padding: 20px 0 0 0;
	text-align: center;
	font-weight: 500;
	color: #2A318F;
}
.servicios_logo {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 30px;
}
.servicios_logo img {
	width: 80%;
	max-width: 180px;
	height: auto;
}
.servicios_wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}
.servicios_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 50px;
	margin-top: 30px;
	width: 100%;
	max-width: 600px;
}
.servicios_btn {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #2B4BA2;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: #0D4097;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
    cursor: pointer;
	text-decoration: none;
}
.servicios_btn img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}
.servicios_admin_btn {
	display: flex;
    align-items: center;
    background: #fff;
	border: 2px solid #FD7F1D;
    border-radius: 8px;
    padding: 12px 16px;
	margin-top: 20px;
    font-size: 16px;
    color: #0D4097;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
    cursor: pointer;
	text-decoration: none;
}
.servicios_admin_btn img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}
/* SERVICIOS */