@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: Poppins;
    src: url(fonts/Poppins-Medium.ttf)
}
@font-face {
    font-display: swap;
    font-family: Poppins;
    font-weight: 500;
    src: url(fonts/Poppins-SemiBold.ttf)
}

@font-face {
    font-display: swap;
    font-family: Poppins;
    font-weight: bold;
    src: url(fonts/Poppins-Bold.ttf)
}
@font-face {
    font-display: swap;
    font-family: Poppins;
    font-weight: 900;
    src: url(fonts/Poppins-ExtraBold.ttf)
}
@font-face {
    font-display: swap;
    font-family: Dela;
    src: url(fonts/DelaGothicOne-Regular.ttf)
}
/*  
Theme Name: EP
Author: EP
Version: 1.0
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
p {
	margin: 10px 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	font: 14px 'Poppins', sans-serif;
	color: #000;
	background: #FFF;
	margin: 0;
	font-weight: 400;
}
* {
    padding: 0;
	margin: 0;
	outline: none;
	list-style: none;
	border: 0 none;
}
*, 
*::before, 
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
a {
	text-decoration: none;
	color: #000;
}
ul, li, h1, h2, h3, h4, h5, h6 {
	list-style: none;
	margin: 0;
	padding: 0;
}
b, strong, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
img {
	max-width: 100%;
	height: auto;
}
table {
    border-spacing: 0;
    width: 100%;
    border-collapse: separate;
}
table caption {
    padding: 1em 0;
    font-weight: 600;
}
table td, table th {
    padding: 1em 1.41575em;
    text-align: left;
    vertical-align: top;
}
table th {
    font-weight: 600;
}
table thead th {
    padding: 1.41575em;
    vertical-align: middle;
}
fieldset {
    padding: 1.618em;
    padding-top: 1em;
    border: 0;
    margin: 0;
    margin-bottom: 1.618em;
    margin-top: 1.618em;
}
fieldset legend {
    font-weight: 600;
    padding: .6180469716em 1em;
    margin-left: -1em;
	border: 0;
}
label {
	line-height: 28px;
}

.container {
    width: 1100px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    margin: auto;
}

#main-header {
	padding: 20px 0;
	background: rgb(255,255,255);
	/* 	background: linear-gradient(193deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 40%, rgba(248,248,248,1) 65%, rgba(193,193,193,1) 100%); */
	background: url(images/bghome.png) no-repeat top;
	background-size: cover;
}
#main-header .logo {
	flex: none;
}

.home #main-header {
	padding: 20px 0 170px;
	height: 100vh;
	min-height: 650px;
	max-height: 900px;
}

#main-header .container {
	display: flex;
	align-items: center;
	z-index: 99;
}

#main-header .container:nth-child(2) {
	height: 100%;
	padding-top: 100px;
	z-index: 9;
}

#logo img {
	height: 60px;
}

#menu {
	color: #FFF;
	margin-left: auto;
	position: fixed;
	right: 0;
	background: #000;
	width: 420px;
	z-index: 999;
	height: 100%;
	transform: translateX(450px);
	transition: all ease .15s;
}
#menu.active {
	transform: translateX(0);
}
#menu .close {
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 40px;
	cursor: pointer;
}
#menu .close:hover {
	color: #e74138;
}
#menu ul {
	padding: 70px 120px;
}
#menu ul li {
	display: block;
	margin: 10px 0;
}
#menu ul li a {
    text-transform: uppercase;
    color: #FFF;
    display: block;
    padding: 8px 15px;
    text-align: right;
	transition: all ease .25s;
}
#menu ul li.current-menu-item a,
#menu ul li a:hover {
	background: #e74138;
}
#menu ul li a.wsp:hover {
	background: #12bf12;
}
#menu ul li {
	text-align: right;
}
#menu ul li a.wsp {
	border: 1px solid #FFF;
	display: inline-block;
	margin-right: 15px;
	font-size: 20px;
	padding: 2px 9px 3px;
}
#menu-responsive {
    position: absolute;
    right: 15px;
    font-size: 23px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
}
#menu-responsive:hover {
	color: #000;
}
#main-header .a {
	width: 45%;
}
#main-header .b {
	width: 55%;
}
#main-header .b img {
	position: relative;
	right: -40px;
	transform: scale(1.2);
}
#main-header h1,
#main-header .att {
	font-size: 45px;
	line-height: 55px;
	font-weight: 900;
}
#main-header h1 strong,
#main-header .att strong {
	color: #e74138;
}
#main-header .att {
	margin-bottom: 17px;
	min-height: 46px;
}
#main-header .a {
	font-size: 20px;
}
#main-header .a a {
	background: #000;
	padding: 10px 20px;
	display: inline-block;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 20px;
}
#main-header .a a:hover {
	background: #e74138;
}

.arrd {
	position: absolute;
	bottom: -80px;
	left: 0;
	right: 0;
	margin: auto;
	width: 20px;
	text-align: center;
	color: #e74138;
	font-size: 20px;
}

#sobremi {
	background: url(images/bg2.png) center no-repeat;
	background-size: cover;
	color: #FFF;
	padding: 100px 0;
}
#sobremi .a {
	display: flex;
	align-items: center;
	text-align: justify;
}
#sobremi .a > div:nth-child(1) {
	width: 300px;
	flex: none;
	margin-right: 50px;
}
#sobremi .t {
	font-weight: 900;
	font-size: 40px;
	color: #e74138;
}
#sobremi .l {
	background: #FFF;
	font-family: 'Dela';
	font-size: 15px;
	padding: 10px 25px;
	display: inline-block;
	margin-top: 30px;
}
#sobremi .l:hover {
	background: #e74138;
	color: #FFF;
}
#sobremi .sociales {
	text-align: center;
}
#sobremi .sociales li {
	margin: 10px 20px;
}
#sobremi .sociales a {
	color: #FFF;
	font-size: 25px;
}
.page-template-template-sobremi #sobremi strong {
	color: #e74138;
}

.owl-carousel .owl-dots {
	text-align:  center;
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
}
.owl-carousel .owl-dots button.owl-dot span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #CCC;
	display:  inline-block;
	margin: 0px 20px;
}
.owl-carousel .owl-dots button.owl-dot.active span {
	background: #000;
}
.nue-carousel.owl-carousel {
	padding: 0px 90px;
	margin-top: 80px;
}
#main .owl-carousel .owl-nav > button.owl-prev,
#main .owl-carousel .owl-nav > button.owl-next {
	position: absolute;
	top: 50%;
	color: #000;
	font-size: 25px;
	left: 0px;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 35px;
	height: 35px;
	line-height: 35px;
}
#main .owl-carousel .owl-nav > button.owl-prev i {
	position: relative;
	left: -2px;
} 
#main .owl-carousel .owl-nav > button.owl-next i {
	position: relative;
	right: -2px;
}
#main .owl-carousel .owl-nav > button.owl-prev span,
#main .owl-carousel .owl-nav > button.owl-next span {display:  block;}
#main .owl-carousel .owl-nav > button.owl-next {
	right: 0;
	left: initial;
}
#main .owl-carousel .item img {
	height: auto;
	width: auto;
	margin: auto;
}
.nue-carousel .item {
	padding: 0 20px;
	/* text-align: center; */
}
.nue-carousel.owl-carousel .owl-wrapper {
  display: table !important;
}

.nue-carousel.owl-carousel .owl-item {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
#main owl-carousel .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0px 30px;
}

#mqcmt {
	padding: 100px 0;
	background: url(images/lines.png) center no-repeat;
}
#mqcmt .tt {
	color: #000;
}
.tt {
	font-weight: 900;
	font-size: 45px;
	text-align: center;
	line-height: 55px;
}
.tt strong {
	color: #e74138;
}

#mqhss {
	padding: 100px 0;
	background: url(images/lines.png) center no-repeat;
}
#mqhss .container {
	display: flex;
	align-items: center;
}
#mqhss .tt {
	text-align: left;
	margin-bottom: 30px;
	color: #000;
}
#mqhss .container > div:nth-child(1) {
	text-align: justify;
	margin-right: 50px;
}
#mqhss .container > div:nth-child(1) strong {
	color: #e74138;
	font-weight: 900;
}
#mqhss .container > div:nth-child(2) {
	width: 350px;
	flex: none;
}
#mqhss .container > div:nth-child(2) img {
	transform: scale(1.2);
	position: relative;
	right: -30px;
}

#opinan {
	background: url(images/bg2.png) center no-repeat;
	background-size: cover;
	color: #FFF;
	padding-top: 100px;
}

#opinan .tt {
	color: #e74138;
	margin-bottom: 30px;
}
#opinan .a {
	display: flex;
}
#opinan .a img {
	display: block;
}
#opinan .a > div:nth-child(1) {
	width: 200px;
	flex: none;
	margin-top: auto;
}
#opinan .a > div:nth-child(2) {
	padding: 50px 50px 0;
	width: 100%;
	flex: 1;
	min-width: 0;
}
#opinan .a .item img {
	height: 35px;
	margin: 0 0 25px;
}

.opiniones.owl-carousel {
	padding: 0px 90px;
}
.opiniones.owl-carousel img {
	margin-bottom: 50px;
}
.opiniones.owl-carousel .ita {
	font-weight: 900;
	font-style: italic;
	margin-top: 40px;
	font-size: 15px;
}
.opiniones .item {
    font-size: 13px;
    line-height: 17px;
}
.opiniones .item > div:nth-last-of-type(2) {
	text-align: justify;
}
#main .opiniones.owl-carousel .owl-nav > button.owl-prev, 
#main .opiniones.owl-carousel .owl-nav > button.owl-next {
	color: #FFF;
}

#bblog {
	padding: 50px 0;
	background: url(images/bgblog.png) center no-repeat;
	text-align: left;
	background-size: cover;
}
#bblog .tt {
	text-align: left;
	margin-bottom: 40px;
}
#blog {
	padding: 100px 0;
	background: url(images/lines.png) center no-repeat;
}
#blog .tt {
	text-align: left;
	margin-bottom: 40px;
	color: #000;
}
#blog .container {
	display: flex;
}
#blog .container > div {
	width: 50%;
}
#blog .container > div:nth-child(1) {
	margin-right: 30px;
	width: 60%;
}
#blog .container > div:nth-child(2) {
	margin-left: 30px;
}
.post {
	padding-bottom: 300px;
	position: relative;
	background-size: cover;
	background-position: center;
	margin-bottom: 50px;
}
.post .p-date {
	position: absolute;
	right: 0;
	background: #000;
	color: #FFF;
	text-align: center;
	padding: 10px;
}
.pd-d {
	font-size: 23px;
	line-height: 23px;
}
.pd-m {
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
}
.post .p-t {
	bottom: 0;
	width: 100%;
	background: #000;
	color: #FFF;
	padding: 20px;
	font-weight: bold;
	font-size: 21px;
	display: flex;
	align-items: center;
	margin-top: auto;
	position: absolute;
}
.post .p-t span:nth-child(1) {
	line-height: 25px;
	margin-right: 20px;
}
.post .p-t span:nth-child(2) {
	flex: none;
}
.post .p-t a {
	background: #FFF;
	font-family: 'Dela';
	font-weight: normal;
	font-size: 13px;
	display: block;
	padding: 10px 20px;
}
.post .p-t a:hover {
	background: #e74138;
	color: #FFF;
}
#blog .container > div:nth-child(2) .post {
	padding-bottom: 250px;
}
#blog .container > div:nth-child(2) .post .p-t span:nth-child(1) {
	font-size: 15px;
	line-height: 20px;
}
#blog .container > div:nth-child(2) .post .p-t a {
	font-size: 10px;
}
.allposts {
	background: #e74138;
	display: inline-block;
	color: #FFF;
	padding: 12px 25px;
	font-family: 'Dela';
	
}

#pago {
	background: #f6f6f6;
	padding: 100px 0;
	background: url(images/bgmetodos.png) center no-repeat;
}
#pago .tt {
	color: #000;
}

#main-footer {
}
.mf-top {
	background: url(images/bgfooter.png?v2);
	padding: 80px 0;
	color: #FFF;
	background-color: #1e1e1e;
}
.mf-top a {
	color: #FFF;
}
.mf-bottom {
	padding: 15px 0;
}
#main-footer .container {
    display: flex;
}
.page-template-template-consultor-seo-lima #main-footer .container {
	align-items: center;
}
.mf-top .container > div {
    width: 33.3333%;
}
.mf-bottom .container {
	justify-content: space-between;
}
.mf-top .container > div:nth-child(1) {
	font-size: 13px;
	text-align: justify;
}
.mf-top .container > div:nth-child(2) {
	padding: 0px 80px;
}
#main-footer .menu li {
	margin-bottom: 20px;
	text-transform: uppercase;
}
#main-footer .menu li.current-menu-item a {
	color: #e74138;
}
.sociales {
	margin-top: 30px;
}
.sociales li {
    display: inline-block;
}
.sociales a {
	font-size: 20px;
	margin-right: 15px;
}
.page-template-template-consultor-seo-lima .sociales {
	margin-top: 0;
}
.page-template-template-consultor-seo-lima .sociales a {
	font-size: 22px;
}
.mf-top a:hover {
	color: #e74138;
}
.tt {
	color: #e74138;
}
#serv_es, #sobr {
	background: url(images/bgservicios.png) top no-repeat;
	background-size: cover;
	padding: 80px 0;
}
#serv_es .tt, #sobr .tt {
	text-align: left;
}
#sobr {
	background: url(images/bgsobremi.png) center no-repeat;
	background-size: cover;
}

#serv_2 {
	padding: 100px 0;
	background: url(images/bg2.png) center no-repeat;
	background-size: cover;
	color: #FFF;
}
.servlist > div {
	display: flex;
	width: 50%;
	align-items: center;
}
.servlist img {
	width: 180px;
	height: 180px;
	flex: none;
}
.servlist > div:nth-child(2n+1) > div{
	margin-left: 30px;
}
.servlist > div:nth-child(2n) {
	margin-left: auto;
}
.servlist .tt {
	color: #e74138;
	text-align: left;
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 20px;
}
.servlist > div:nth-child(2n) > div{
	margin-right: 30px;
}
.servlist > div:nth-child(2n) img {
	order: 2;
}

#contacta {
	padding: 100px 0;
	text-align: center;
	font-size: 16px;
}
#contacta .tt {
	color: #e74138;
}
#contacta form {
	width: 900px;
	max-width: 100%;
	margin: 50px auto;
	font-size: 15px;
}
#contacta form .group {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px;
}
#contacta form .group > div {
	width: 50%;	
	padding: 10px;
}
#contacta form input,
#contacta form textarea {
	background: #ebebeb;
	display: block;
	width: 100%;
	padding: 15px;
	text-align: center;
}
#contacta form textarea {
	height: 150px;
	margin-top: 10px;
	margin-bottom: 30px;
	font-family: inherit;
}
.page-template-template-consultor-seo-lima #contacta form input[type="text"],
.page-template-template-consultor-seo-lima #contacta form textarea {
	background: #FFF;
}
#contacta form input::placeholder,
#contacta form textarea::placeholder {
	color: #000;
	font-family: 'Dela';
}
#contacta form input[type="checkbox"] {
	display: inline-block;
	width: auto;
	margin-right: 5px;
	vertical-align: middle;
}
#contacta form input[type="submit"] {
	background: #e74138;
	color: #FFF;
	font-family: 'Dela';
	font-size: 18px;
	padding: 15px 30px;
	width: 400px;
	margin: auto;
	text-align: center;
	cursor: pointer;
	max-width: 100%;
}
#contacta form input[type="submit"]:hover {
	background: #000;
}
#contacta form input[type="submit"][disabled] {
	background: #CCC;
	cursor: no-drop;
}
#sm_1 {
	padding: 50px 0;
}
#sm_1 .container {
	width: 700px;
	text-align: justify;
}
#sm_1 strong {
	color: #e74138;
}
#sm_1 img {
	display: block;
	margin: 70px auto 0;
	max-height: 80px;
}
.page-template-template-sobremi #contacta,
.page-template-template-contacto #contacta {
	background: url(images/bg2.png) center no-repeat;
	color: #FFF;
	background-size: cover;
	margin-bottom: 30px;
}
.page-template-template-sobremi #contacta a,
.page-template-template-contacto #contacta a {
	color: #FFF;
}
.page-template-template-sobremi #contacta input,
.page-template-template-sobremi #contacta textarea,
.page-template-template-contacto #contacta input,
.page-template-template-contacto #contacta textarea {
	background: #FFF;
}
#guia_a {
	background: url(images/bg2.png) center no-repeat;
	color: #FFF;
	padding: 100px 0;
	background-size: cover;
}
#guia_a .tt {
	color: #FFF;
}
#guia_a .a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 0;
}
#guia_a .a img {
	width: 100px;
	margin-right: 20px;
}
#guia_a .b {
	background: #FFF;
	display: flex;
	color: #000;
	font-weight: 900;
	max-width: 660px;
	padding: 15px 25px;
	font-size: 18px;
	line-height: 22px;
	margin: auto;
	align-items: center;
}
#guia_a .b a {
	font-family: 'Dela';
	background: #e74138;
	padding: 10px 15px;
	color: #FFF;
	font-weight: normal;
	flex: none;
	margin-left: 20px;
	font-size: 15px;
	height: 44px;
}
#guia_a .b a:hover {
	background: #000;
}

#guia_c {
	padding: 80px 0;
}
#guia_c .container {
	text-align: justify;
	width: 700px;
}
#guia_c strong {
	color: #e74138;
}
#guia_c h2 {
	color: #e74138;
	font-size: 30px;
	margin: 30px 0;
	text-align: left;
}

#page {
	margin: 40px 0;
}
#page h1 {
	font-size: 40px;
	color: #e74138;
}
#page h2 {
	font-size: 30px;
	margin: 30px 0;
	text-align: left;
}

#contact {
	background: url(images/bgcontacto.png) center no-repeat;
	background-size: cover;
	padding: 90px 0;
	color: #FFF;
}
#contact .tt {
	text-align: left;
}
#faq {
	padding: 100px 0;
}
#faq .tt {
	text-align: left;
	font-size: 30px;
}
#faq .a {
	display: flex;
	margin-top: 50px;
	margin-left: -15px;
	margin-right: -15px;
}
#faq .a > div {
	width: 50%;
	padding: 0px 15px;
}
#faq ul li {
	position: relative;
}
.faq_list li[data-tab] {
	background: #f4f4f4;
	padding: 15px 45px 15px 30px;
	margin: 5px 0;
	cursor: pointer;
}
.faq_list li.active {
	color: #e74138;
	font-weight: bold;
}
.faq_list li[data-tab]:hover {
	background: #e3e3e3;
}
.faq_list li[data-tab]::after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #969696;
}
.faq_list li.active::after {
	color: #e74138;
}
#faq .c {
	display: flex;
	align-items: center;
	width: 330px;
	margin: auto;
	max-width: 100%;
}
#faq .c img {
	width: 180px;
	margin-right: 10px;
}
#faq .fb {
	background: #e74138;
	color: #FFF;
	padding: 40px 40px;
	position: relative;
	margin-top: 5px;
}
#faq .fb > div:nth-child(1) {
	display: block;
}
#faq .fb > div {
	display: none;
}
#faq .fb > div a {
	color: #FFF;
	text-decoration: underline;
}
#faq .fb .close {
	position: absolute;
	right: 0;
	top: 0;
	background: #f4f4f4;
	width: 27px;
	height: 27px;
	line-height: 30px;
	text-align: center;
	font-size: 25px;
}
#blog_list {
	padding: 70px 0;
}
.bl {
	display: flex;
}
.bl .a {
	width: 100%;
	margin-right: 40px;
	display: flex;
	flex-wrap: wrap;
}
#sidebar {
	width: 350px;
	flex: none;
	margin-left: auto;
}
#sidebar .w.mostp {
	background: #f4f4f4;
	padding: 25px;
	position: sticky;
	top: 20px;
}
#sidebar .w,
.widget {
	margin-bottom: 30px;
}
#sidebar .tw {
	color: #e74138;
	font-weight: bold;
	line-height: 20px;
	font-size: 16px;
}
#sidebar .cw li {
	margin: 10px 0;
}
#sidebar .cw li a:hover {
	color: #e74138;
}
#blog-content article h2 {
	font-size: 28px;
	margin: 20px 0;
}
#blog-content article h3 {
	font-size: 25px;
	margin: 20px 0;
}
#blog-content article h4 {
	font-size: 20px;
	margin: 20px 0;
}
.bl .post {
	padding-bottom: 400px;
	width: 100%;
	border: 20px solid #FFF;
	border-top: none;
	border-bottom: 0;
}
.bl .post .p-t a {
	padding: 0;
	background: none;
	color: #FFF;
	font-size: 28px;
	font-family: 'Poppins';
	font-weight: bold;
}
.bl .post:nth-child(2) {
	width: 50%;
}
.bl .post:nth-child(3) {
	width: 50%;
}
.bl .post:nth-child(2),
.bl .post:nth-child(3) {
	padding-bottom: 350px;
}
.bl .post:nth-child(2) .p-t a,
.bl .post:nth-child(3) .p-t a {
	font-size: 20px;
}
.w .bl .a {
	margin: 0;
}
.w .bl .post {
	border: 0;
	padding-top: 240px;
	padding-bottom: 0;
	margin-bottom: 0;
}
.w .post .p-t a {
	font-size: 20px;
}
.w .post .p-date {
	top: 0
}
#paginador {
	list-style:none;
	margin: 20px 0px;
	padding:0;
	clear:both;
	text-align: center;
	font-size: 18px;
	text-align: center;
	width: 100%;
}
#paginador li {
	display:inline-block;
	margin: 0;
	padding: 0;
}
#paginador a, #paginador .current {
	padding: 9px 12px 9px 12px;
}
#paginador a:hover, 
#paginador .current {
	color: #e74138;
}
#paginador li.mas {
	padding: 0px 5px;
}
#paginador .current {
	font-weight: bold;
}

#blog-post-title {
	background: url(images/bgblog-s.png) center no-repeat;
	background-size: cover;
	padding: 70px 0;
}
#blog-post-title .tt {
	color: #FFF;
	text-align: left;
	width: 70%;
	word-break: break-word;
}
#blog-content {
	padding: 70px 0;
}
#blog-content .container {
	display: flex;
}
#sidebar {
	width: 330px;
	flex: none;
	margin-left: 40px;
}
#blog-content #ez-toc-container {
	width: 100%;
	border: none;
	padding: 25px 30px;
	margin: 40px 0;
}
#blog-content .ez-toc-title {
	color: #e74138;
	text-transform: uppercase;
}
#blog-content #ez-toc-container a {
	color: #000;
	font-size: 14px;
}
#sidebar .wp-block-search__input {
	background: #f4f4f4;
	border: 0;
}
#sidebar .wp-block-search__button.has-icon {
	background: #e74138;
	color: #FFF;
	border: 0;
}
#c404, #cty {
	background: url(images/bg2.png) center no-repeat #000;
	background-size: cover;
	color: #FFF;
	padding: 130px 0;
	height: 100vh;
	min-height: 780px;
	text-align: center;
	font-weight: bold;
	font-size: 22px;
}
#cty {
	background: url(images/bggracias.png) center no-repeat;
	background-size: cover;
	padding: 400px 0 0;
}
#c404 .a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
}
#c404 h1, #cty h1 {
	font-size: 70px;
	margin-right: 50px;
}
#c404 h1 strong {
	font-size: 50px;
}
#c404 a,
#cty a {
	background: #e74138;
	color: #FFF;
	font-family: 'Dela';
	font-weight: normal;
	padding: 15px 40px;
	display: inline-block;
	margin-top: 20px;
	font-size: 17px;
}
#pp {
	padding: 100px 0;
}
#pp .tt {
	color: #000;
}
#pp .a {
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 70px;
}
#pp .a > div {
	width: 33.3333%;
	padding: 0px 20px;
}
#pp .a a {
	background: transparent;
	color: #FFF;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Poppins';
	line-height: 25px;
}
#cty img {
	width: 400px;
}
#cty h1 {
	line-height: 40px;
	margin-right: 0;
	margin-bottom: 30px;
}
#cty h1 strong {
	font-size: 35px;
	color: #e74138;
}
.g-recaptcha > div {
	margin: auto;
}

#backtop {
	position:fixed;
	bottom: 15px;
	right:15px;
	z-index:999;
	display: none;
}
#backtop a {
	background: #e74138;
	color:#FFF;
	font-size: 27px;
	line-height: 45px;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	transition:all ease 0.25s;
}

.text-js{
	opacity: 0;
}
.cursor{
	display: block;
	position: absolute;
	height: 100%;
	top: 0;
	right: -5px;
	width: 2px;
	background-color: #000;
	z-index: 1;
	animation: flash 0.5s none infinite alternate;
}
@keyframes flash{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
}

div#dialog {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: rgba(0,0,0,0.8);
    top: 0;
    padding: 20px;
    display: none;
}
a.d-close {
    position: absolute;
    color: #FFF;
    left: 0px;
    font-weight: bold;
    font-size: 30px;
}
.d-content {
    width: 460px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    padding: 0 30px;
    transform: translateY(-50%);
    max-width: 100%;
}

.d-box {
    background: white;
    text-align: center;
    padding-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.db-title {
    font-size: 30px;
    width: 230px;
    margin: 20px auto;
    line-height: 35px;
}

.db-entry {
    border: 2px solid red;
    margin: 20px;
    border-radius: 20px;
    font-size: 16px;
    padding: 10px;
}
.db-rs ul {
    display: flex;
    justify-content: center;
}

.db-rs ul li {
    padding: 0px 15px;
}
.db-rs ul li a {
    font-size: 33px;
    line-height: 33px;
    background: red;
    color: #FFF;
    padding: 15px;
    display: block;
    border-radius: 10px;
    width: 60px;
    height: 60px;
}

.cta {
    border: 3px solid #545454;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 20px;
    text-align: justify;
    margin: 20px 0;
}
.cta-title {
    color: #e74138;
    font-size: 26px;
    font-weight: 500;
}
.cta-t2 {
    font-weight: 500;
    font-size: 18px;
    margin: 20px 0;
}
.cta-b {
    width: 340px;
    max-width: 100%;
    margin: auto;
}
.cta-b a {
    display: block;
    background: #e74138;
    color: #FFF;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 30px;
}
.cta-b a:hover {
    background: #000;
}
#contacto {
    background: #000;
    color: #FFF;
    text-align: center;
    padding: 60px 0;
}

#contacto .container {
    display: block;
}

.c-title {
    color: #ff5c53;
    font-size: 30px;
    font-weight: bold;
    line-height: 35px;
    margin-bottom: 40px;
}

.c-form input[type=text],
.c-form input[type=email],
.c-form textarea,
.c-form input[type=submit] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
}
.c-form p {
    text-align: left;
}
.c-form textarea {
    height: 150px;
    border-radius: 20px;
}
.c-form input[type=submit] {
    background: #e74138;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
.c-form input[type=submit]:hover {
    background: red;
}
#contacto a {
    color: #FFF;
}

.htitle {
	font-size: 39px;
	font-weight: bold;
	line-height: 40px;
}
.htitle strong {
	color: #e74138;
}
.hdesc {
	margin-top: 20px;
	width: 400px;
	max-width: 100%;
	font-size: 16px;
}
.hdesc strong {
	color: #e74138;
}
.imgsc {
	width: 500px;
	height: 170px;
	background: url(images/form-img.png) center no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 25px;
	right: -79px;
	max-width: 100%;
}
#hformc {
	width: 310px;
	max-width: 100%;
	background: url(images/textura.png) center no-repeat;
	padding: 25px 25px 50px;
	color: #FFF;
	background-color: #171717;
	margin-left: auto;
}
.chfd {
	padding-bottom: 100px;
}
.chfd > div:nth-child(2) {
	margin-left: auto;
}
.hft {
	color: #e74138;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
#hformc a {
	color: #FFF;
}
#hformc input[type="text"],
#hformc textarea {
	width: 100%;
	color: #000;
	font-family: 'Dela';
	padding: 10px;
	margin: 5px 0;
	text-align: center;
}
#hformc textarea {
	height: 100px;
}
#hformc input[type="text"]::placeholder,
#hformc textarea::placeholder {
	color: #000;
}
#hformc .g-recaptcha {
	zoom: .85;
}
.rsubmit {
	background: #e74138;
	color: #FFF;
	width: 100%;
	padding: 10px;
	font-family: 'Dela';
	display: block;
	cursor: pointer;
	font-size: 15px;
	position: relative;
	z-index: 9999;
}
.page-template-template-consultor-seo-lima .rsubmit {
	width: auto;
	margin: auto;
	font-size: 19px;
	padding: 15px 30px;
}
.bsxas {
	background: #00be21;
	color: #FFF;
	font-family: 'Dela';
	padding: 7px 20px;
	display: block;
	font-size: 16px;
	display: flex;
}
.bsxas i {
	font-size: 25px;
	margin-right: 7px;
}
.page-template-template-consultor-seo-lima #mqhss .container {
	width: 1200px;
}
.page-template-template-consultor-seo-lima #mqhss .container > div {
	width: 50%;
}
.page-template-template-consultor-seo-lima #mqhss .container > div:nth-child(1) {
	margin-right: 100px;
}
.page-template-template-consultor-seo-lima #mqhss .container > div:nth-child(2) {
	margin-left: 100px;
}
.page-template-template-consultor-seo-lima #main-header .container {
	justify-content: space-between;
}
.page-template-template-consultor-seo-lima .owl-carousel .owl-dots {
	position: relative;
	bottom: initial;
	margin-top: 30px;
}
.page-template-template-consultor-seo-lima #sobremi .container {
	width: 900px;
}
.page-template-template-consultor-seo-lima #sobremi {
	background-color: #1e1e1e;
}
.page-template-template-consultor-seo-lima #sobremi strong {
	color: #e74138;
}
#svcqtf {
	background: url(images/ssqof.png) top no-repeat;
	background-size: cover;
	color: #FFFF;
	padding: 130px 0;
	background-color: #141414;
}
.svcqtf-t {
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 50px;
}
.svcqtfc ul {
	display: flex;
	flex-wrap: wrap;
	width: 800px;
	margin: auto;
	max-width: 100%;
}
.svcqtfc ul li {
	width: 33.333%;
	text-align: center;
	padding: 30px 0;
}
.ssci {
	width: 170px;
	height: 170px;
	background-size: cover;
	margin: auto;
	margin-bottom: 15px;
	border: 4px solid #373737;
	border-radius: 16px;
	box-shadow: 0px 0px 5px 2px rgba(255,255,255,.6);
}
.ssct {
	font-weight: bold;
	color: #e74138;
	font-size: 16px;
}
#atrtes {
	padding: 100px 0;
	background: #e4e4e4;
}
.sjsbx {
	display: flex;
	margin: 60px auto 0;
	font-size: 18px;
	max-width: 850px;
}
.sjsbx li {
	width: 210px;
	position: relative;
	padding-left: 25px;
	padding-bottom: 20px;
}
.sjsbx li:before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: -16px;
	top: -4px;
	color: #e74138;
	font-size: 15px;
	border: 8px solid #e4e4e4;
	border-radius: 50%;
	background: #FFF;
}
.sjsbx > div {
	flex: 1;
}
.sjsbx > div:nth-child(1) > ul > li:nth-child(1) {
	margin-top: 0px;
	border-left: 1px solid #8c8b8b;
	border-bottom: 1px solid #8c8b8b;
}
.sjsbx > div:nth-child(1) > ul > li:nth-child(2) {
	margin-top: 190px;
	border-left: 1px solid #8c8b8b;
	border-bottom: 1px solid #8c8b8b;
}
.sjsbx > div:nth-child(2) {
	width: 280px;
	flex: none;
}
.sjsbx > div:nth-child(3) > ul > li {
	margin-left: auto;
	padding-right: 25px;
	padding-left: 0;
}
.sjsbx > div:nth-child(3) > ul > li::before {
	left: initial;
	right: 0;
	top: -3px;
}
.sjsbx > div:nth-child(3) > ul > li:nth-child(1) {
	margin-top: 60px;
	border-right: 1px solid #8c8b8b;
	border-bottom: 1px solid #8c8b8b;
}
.sjsbx > div:nth-child(3) > ul > li:nth-child(2) {
	margin-top: 210px;
	border-right: 1px solid #8c8b8b;
	border-bottom: 1px solid #8c8b8b;
}

.page-template-template-consultor-seo-lima #contacta {
	background: url(images/textura.png) center no-repeat #131313;
	background-size: cover;
	color: #FFF;
	margin-bottom: 10px;
}
.page-template-template-consultor-seo-lima #contacta a {
	color: #FFF;
}
.page-template-template-consultor-seo-lima #main-header .container:nth-child(2) > div {
	width: 100%;
}

@media (max-width: 1200px) {
	#main-header .b img,
	#mqhss .container > div:nth-child(2) img {
		right: 0;
		transform: none;
	}
	.page-template-template-consultor-seo-lima #main-header .container {
		overflow: hidden;
		/* width: 100%; */
	}
}

@media (max-width: 800px) {
	#main-header .container:nth-child(2),
	#sobremi .a,
	#mqhss .container,
	#blog .container,
	#opinan .a,
	#blog-content .container,
	#main-footer .container {
		flex-direction: column;
		justify-content: center;
		padding-top: 50px;
	}
	.home #main-header {
		height: inherit;
	}
	.arrd {
		bottom: 0px;
	}
	.mf-top .container > div {
		width: 500px;
		max-width: 100%;
		text-align: center;
		margin: 20px auto;
	}
	.mf-top .container > div:nth-child(1) {
		text-align: center;
	}
	#mqhss .container > div:nth-child(1) {
		margin-right: 0;
	}
	.page-template-template-consultor-seo-lima #mqhss .container > div:nth-child(1) {
		margin-right: 0;
		width: 300px;
	}
	.page-template-template-consultor-seo-lima #mqhss .container > div:nth-child(2) {
		margin-top: 30px;
		margin-left: 0;
		width: 100%;
	}
	#sobremi .a > div:nth-child(1) {
		margin-right: 0;
	}
	#sobremi .a {
		text-align: center;
	}
	#main-footer .container {
		text-align: center;
	}
	#blog .container > div {
		width: 500px !important;
		margin: auto !important;
		max-width: 100%;
	}
	#opinan .a > div:nth-child(1) {
		display: none;
	}
	#opinan .a > div:nth-child(2) {
		padding: 50px;
	}
	#main-header .a {
		width: 100%;
		text-align: center;
	}
	#main-header .b {
		width: 500px;
		margin: 50px 0;
		max-width: 100%;
	}
	.opiniones.owl-carousel {
		padding: 0 50px;
	}
	.servlist > div {
		margin: 50px auto !important;
		width: 100%;
	}
	.bl {
		flex-direction: column;
	}
	.bl .a {
		margin-right: 0;
	}
	#pp .tt {
		margin-bottom: 30px;
	}
	#pp .a {
		flex-direction: column;
		width: 600px;
		max-width: 100%;
		margin: auto;
	}
	#pp .a > div {
		width: 100%;
	}
	#sidebar {
		margin: 30px auto;
	}
	#c404 {
		padding: 50px 0;
	}
	#faq .a {
		flex-direction: column;
	}
	#faq .a > div {
		width: 100%;
	}
	#guia_c {
		padding: 50px 0;
	}
	.page-template-template-consultor-seo-lima #main-header .container:nth-child(2) 
	> div:nth-child(2) {
		margin: 40px auto 0;
	}
	#hformc {
		width: 400px;
		margin: auto;
	}
	.imgsc {
		right: 0;
		left: 0;
		margin: auto;
	}
	.svcqtfc ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	.svcqtfc ul li {
		width: 250px;
	}
	.sjsbx li:before {
		left: -16px !important;
		right: initial !important;
		top: 20px !important;
	}
}

@media (max-width: 730px) {
	.sjsbx {
		display: block;
	}
	.sjsbx li {
		margin: auto !important;
		padding-top: 20px !important;
		width: 300px !important;
	}
	.sjsbx > div:nth-child(2) {
		display: none;
	}
	.sjsbx > div:nth-child(1) > ul > li:nth-child(2) {
		margin-top: 0;
	}
	.sjsbx > div:nth-child(3) > ul > li:nth-child(2) {
		margin-top: 0;
	}
	.sjsbx > div:nth-child(3) > ul > li:nth-child(1),
	.sjsbx > div:nth-child(3) > ul > li:nth-child(2) {
		border-left: 1px solid #8c8b8b;
		border-bottom: 1px solid #8c8b8b;
		border-right: 0;
		padding-left: 25px;
		padding-right: 0;
	}
}

@media (max-width: 540px) {
	.servlist > div,
	#guia_a .b {
		flex-direction: column;
	}
	.servlist > div:nth-child(2n) > div {
		order: 2;
		margin: 20px 0;
		text-align: center;
	}
	.servlist > div:nth-child(2n+1) > div {
		margin: 20px 0;
		text-align: center;
	}
	.servlist > div .tt {
		text-align: center;
	}
	#guia_a .b {
		text-align: center;
	}
	#guia_a .b a {
		margin-top: 15px;
	}
	.bl .post:nth-child(2),
	.bl .post:nth-child(3) {
		width: 100%;
	}
	.bl .post .p-t a {
		font-size: 21px;
	}
	#blog-post-title .tt {
		font-size: 35px;
		width: 100%;
	}
	#cty h1 strong {
		font-size: 28px;
	}
	#c404, #cty {
		font-size: 17px;
	}
	#c404 h1, #cty h1 {
		font-size: 50px;
		margin: 0 0 50px 0;
	}
	#menu {
		margin-top: 83px;
	}
	#mqcmt {
		padding: 50px 0;
	}
	#blog {
		padding: 40px 0 0;
	}
	.imgsc {
		background-size: 680px;
	}

	#svcqtf {
		padding: 50px 0;
	}
	.svcqtfc ul li {
		width: 50%;
		padding: 20px;
	}
	.ssci {
		width: 100%;
		height: 0;
		padding-bottom: 100%;
		background-position: center;
	}
	#mqcmt .tt {
		font-size: 35px;
		line-height: 40px;
	}
	.nue-carousel.owl-carousel {
		padding: 0 40px;
	}
	.owl-carousel .owl-dots button.owl-dot span {
		margin: 0 5px;
	}
	#main .owl-carousel .owl-nav > button.owl-prev, 
	#main .owl-carousel .owl-nav > button.owl-next {
		transform: translateY(-100%);
	}
	.page-template-template-consultor-seo-lima .owl-carousel .owl-dots {
		margin-top: 10px;
	}
	.page-template-template-consultor-seo-lima .rsubmit {
		font-size: 15px;
		padding: 15px 20px;
	}
	.page-template-template-consultor-seo-lima #main-header > .container:nth-child(1) {
		/* justify-content: center; */
		/* flex-direction: column; */
		align-items: center;
	}
	.bsxas {
		font-size: 12px;
		padding: 7px 15px;
	}
	.bsxas i {
		font-size: 17px;
	}
	#main-header .logo {
		/* margin-bottom: 15px; */
		width: 200px;
	}
	#main-header .logo img {
		height: auto !important;
		display: block;
	}
}
@media (max-width: 420px) {
	.home #main-header {
		padding-bottom: 50px;
	}
	#opinan .a > div:nth-child(2) {
		padding-left: 0;
		padding-right: 0;
	}
	#contacta form input[type="submit"] {
		font-size: 13px;
		display: block;
	}
	#hformc {
		width: 100%;
	} 
}
