img {
	width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
ul,
li,
a {
	font-family: 'Montserrat', sans-serif;
}

body,
html,
p {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
}

h1,
.h1 {
	font-size: 3rem;
}

h2,
.h2 {
	font-size: 1.438rem;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 30px;
}

h3,
.h3 {
	font-style: normal;
	font-weight: 500;
	font-size: 1.438rem;
	line-height: 30px;
	letter-spacing: -0.015em;
	color: #000000;
}

h5,
.h5 {
	font-style: normal;
	font-weight: 500;
	font-size: 0.938rem;
	line-height: 22px;
	letter-spacing: -0.015em;
	color: #000000;
}

h6,
.h6 {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 22px;
	letter-spacing: -0.015em;
}

a,
a:hover {
	text-decoration: none !important;
}

.container-slim {
	max-width: 930px;
	margin: 0 auto;
}

.container-lg_extra {
	max-width: 1200px;
	margin: 0 auto;
}

.return {
	color: black !important;
	display: block;
	z-index: 2;
	text-transform: uppercase;
	position: absolute !important;
	top: 50px !important;
	left: 15px !important;
	font-weight: 500;
}

.ripple {
	background-position: center;
	transition: background 0.8s;
}

.ripple:hover {
	background: #000 radial-gradient(circle, transparent 1%, #fff 1%)
		center/15000%;
	color: white;
}

.ripple:active {
	background-color: #000;
	color: white;
	background-size: 100%;
	transition: background 0s;
}

.primary-button {
	color: black;
	border: 1px solid black;
	height: 44px;
	line-height: 44px;
	display: inline-block;
	padding: 0 20px;
	border-radius: 5px;
}

.secondary-button {
	color: white;
	border: 1px solid black;
	height: 44px;
	line-height: 44px;
	padding: 0 20px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
	background: black;
}

.secondary-button.ripple:hover {
	background: #fff;
	color: black;
}

.secondary-button.ripple:active {
	background-color: white;
	color: black;
	background-size: 100%;
	transition: background 0s;
}

.primary-button i,
.secondary-button i {
	font-size: 10px;
	vertical-align: middle;
	margin-left: 5px;
}

.button-width-20 {
	width: 190px;
	min-width: 190px;
	padding: 0 15px;
}

.small-post .content-post {
	transition: all 0.2s ease;
}

.small-post .content-post:hover {
	margin-top: 0px;
	box-shadow: 5px 5px 15px -4px #909090;
	transition: all 0.5s ease;
}

.content-post {
	position: relative;
}

.content-post i {
	position: absolute;
	right: 15px;
	font-size: 20px;
	color: #838383;
	font-weight: 900;
}

.content-post:hover i {
	-webkit-animation: linear infinite;
	-webkit-animation-name: arrowright;
	-webkit-animation-duration: 2s;
}

@-webkit-keyframes arrowright {
	0% {
		right: 15px;
	}

	50% {
		right: 7%;
	}

	100% {
		right: 15px;
	}
}

/** HAMBURGER MENU **/
.hamburger-menu {
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto 0;
	height: 30px;
	cursor: pointer;
	order: 3;
	margin-left: 20px;
}

.bar,
.bar:after,
.bar:before {
	width: 25px;
	height: 2px;
}

.bar {
	position: relative;
	transform: translateY(12px);
	background: black;
	transition: all 0ms 300ms;
}

.bar.animate {
	background: rgba(255, 255, 255, 0);
}

.bar:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 8px;
	background: black;
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
		transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	background: black;
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
		transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
		transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
		transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

span.requerido {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #838383;
	font-size: 20px;
	min-height: 15px;
	max-height: 15px;
}

/** SIDENAV PANEL MOBILE**/
body.panel-opened #side-nav-panel {
	transform: translateY(0);
}

#side-nav-panel {
	position: fixed;
	height: 100%;
	width: 100%;
	padding: 160px 15px 0 15px;
	top: 0;
	bottom: 0;
	font-size: 0.9em;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 9001;
	background-color: white;
	color: #fff;
	-webkit-overflow-scrolling: touch;
	transform: translateY(-100%);
	transition: transform 0.3s;
}

.sidenav-overlay {
	display: none;
}

.sidenav-overlay.active {
	display: block;
	background: #000;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 8999;
	min-height: 100vh;
	opacity: 0.35;
	transition: opacity 0.2s ease-in-out;
}

body.panel-opened {
	overflow: hidden;
}

form.wpcf7-form select {
	background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg' class='bi bi-chevron-down'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>")
		no-repeat;
	background-position: calc(100% - 0.75rem) center !important;
	-moz-appearance: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	padding-right: 2rem !important;
	background-color: white;
}

.container-lg-absolute .content-post {
	position: relative;
}

.container-lg-absolute .content-post a.link-box {
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

h2 span {
	display: block;
	text-transform: uppercase;
	font-size: 0.938rem;
	line-height: 22px;
	font-weight: 500;
	color: #c4c4c4;
}

.banner-page .float-content {
	justify-content: center;
	width: 65% !important;
}

.banner-page .content-banner {
	width: 100%;
	position: absolute;
	left: 0;
	text-align: left;
	right: 0;
	top: 0;
	justify-content: center;
}

.banner-page p,
.banner-page h3 {
	color: white;
}

.banner-page {
	position: relative;
}

.container-lg-absolute p.category-post a {
	border-radius: 0;
	border: none;
	color: #c4c4c4 !important;
	max-width: 100%;
	width: auto;
	display: inherit;
	text-align: left;
	line-height: inherit;
	padding: 0;
	font-size: inherit;
}

.above-footer a i {
	margin-right: 5px;
}

.above-footer a {
	color: #838383;
	border: 1px solid #838383;
	border-radius: 6px;
	line-height: 44px;
	display: inline-block;
	padding: 0 25px;
	font-size: 15px;
	background: #fff;
}

.above-footer p {
	font-size: 1.438rem;
	line-height: 44px;
	margin-bottom: 0;
	text-align: right;
	display: inline-block;
	padding-right: 15px;
}

.above-footer {
	background: white;
	color: #838383;
	padding: 80px 0;
	text-align: center;
}

.bottom-fotter p {
	margin-bottom: 0;
	font-size: 12px;
	line-height: 24px;
	color: #838383;
}

.bottom-fotter {
	background: #000;
	padding: 15px 0;
	text-align: center;
}

#familia {
	padding: 250px 0;
}

#familia img {
	filter: grayscale(1);
	border-radius: 0 !important;
	transition: all 0.5s ease;
}

#familia .swiper-wrapper {
	align-items: center;
}

#familia .mmg-carousel--marcas {
	margin: 150px 0 0 0 !important;
}

#familia h2 {
	font-size: 45px;
	font-weight: 600;
	line-height: normal;
}

#familia h2 span {
	display: block;
	text-transform: initial;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

#familia .container-lg > .row:first-child {
	align-items: center;
}

#familia .container-lg > .row:last-child {
	justify-content: space-between;
	align-items: center;
}

/*.home #familia .container-lg>.row:last-child {
  margin-top: 170px !important;
}
*/
#familia .col-md-4:hover img {
	filter: grayscale(0);
	transition: all 0.5s ease;
}

#familia .col-md-2:hover img {
	filter: grayscale(0);
	transition: all 0.5s ease;
}

#familia .col-md-3:hover img {
	filter: grayscale(0);
	transition: all 0.5s ease;
}

#familia .col:hover img {
	filter: grayscale(0);
	transition: all 0.5s ease;
}

#familia .grupo {
	background-size: cover;
	padding: 80px 0;
	background-position: center;
	background-repeat: no-repeat;
}

#familia .grupo .col-md-4 {
	text-align: center;
}

#familia .grupo .col-md-4 img {
	padding: 0 70px;
	margin-bottom: 32px;
}

#familia .grupo .col-md-4 p {
	padding: 0 32px;
	/* display: flex; */
	height: 90px;
	max-height: 90px;
}

#familia .grupo .col-md-4 a {
	color: #000;
}

#familia .container-lg_extra,
#familia .container-lg {
	margin-top: 170px;
}

#familia .container-lg_extra > .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#banner-video iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#banner-video video {
	width: 100%;
}
/*#banner-video #YouTubeVideoPlayer {
	overflow: hidden;
	padding-bottom: 54.2%;
	padding-top: 30px;
	position: relative;
}*/

#banner-video .video-foreground {
	margin-top: -60px;
}

#banner-video .video-background {
	position: relative;
	overflow: hidden;
}

.page-template-template-thinking .banner-page:after {
	display: none;
}

#thinking-home .big-post .content-post {
	background: transparent;
	padding: 0;
	border: none;
}

#thinking-home .small-post .thumbnail-post {
	margin-bottom: 0;
}

#thinking-home .list-item-post.small-post .content-post {
	padding: 8px;
	transition: all 0.5s ease;
}

#thinking-home .list-item-post.small-post .content-post h3 {
	font-size: 15px;
	margin-bottom: 0;
	line-height: 22px;
	color: black;
}

#thinking-home .list-item-post.small-post:hover .content-post {
	background: black;
	transition: all 0.5s ease;
}

#thinking-home .list-item-post.small-post:hover .content-post h3,
#thinking-home .list-item-post.small-post:hover .content-post p {
	color: white;
	transition: all 0.5s ease;
}

#thinking-home .container-lg-absolute {
	left: inherit;
	position: relative;
	padding: 15px 0 15px 0;
	height: auto;
	border-bottom: 1px solid #d8d8d8;
}

#thinking-home .container-lg-absolute h3 {
	color: black;
}

#thinking-home .container-lg-absolute p {
	color: #848585;
}

#thinking-home .col-md-6 article + article {
	margin-top: 15px;
}

#nosotros .background-nosotros,
#proposito .background-nosotros {
	position: relative;
}

.background-nosotros img + a {
	color: transparent;
}

h2.title-before::after {
	content: '';
	background-color: #d8d8d8;
	height: 1px;
	width: 100%;
	display: block;
	margin-bottom: 29px;
	margin: 25px 0 50px 0;
}

.list-item-post.big-post .content-post,
#nosotros .content-post,
#proposito .content-post {
	/* width: 535px; */
	background: black;
	padding: 37px;
	border: 1px solid;
	/* height: 286px; */
}

/* .container-lg-absolute .content-post {
  height: 100%;
}*/
.container-lg-absolute .content-post p {
	color: white;
}

.content-post-sm {
	padding: 35px 20px;
	border: 1px solid #d8d8d8;
}

.content-post-sm h3 {
	margin-bottom: 0;
}

.small-post .thumbnail-post {
	margin-bottom: 0px;
}

/*.container-lg-absolute a,
.small-post a {
  border-radius: 6px;
  border: 1px solid black;
  color: black;
  max-width: 122px;
  width: 100%;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  padding: 0 15px;
  font-size: 15px;
}*/

.container-lg-absolute {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	position: absolute;
	width: 540px;
	height: 316px;
	left: calc(50% - 540px / 2 - 288px);
	top: calc(50% - 316px / 2);
	box-sizing: border-box;
}

#nosotros .container-lg-absolute {
	right: calc(50% - 570px / 2 - 288px);
	top: calc(50% - 275px / 2);
	left: inherit;
	padding: 0;
	width: 567px;
	max-height: 276px;
	/* height: 500px; */
}

#proposito .content-post {
	height: 100%;
}

#proposito .container-lg-absolute {
	left: calc(50% - 595px / 2 - 288px);
	top: calc(50% - 275px / 2);
	right: inherit;
	padding: 0;
	width: 570px;
	max-height: 276px;
	/* height: 500px; */
}

#nosotros .content-post {
	height: 276px;
}

p.category-post {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: black;
	margin-bottom: 5px;
}

.content-post h3 {
	font-size: 1.438rem;
	color: black;
}

.content-post .excerpt p {
	color: white;
}

.list-item-post {
	position: relative;
}

.list-item-post.post-6 {
	width: 50%;
	float: left;
}

.slider .owl-item .content-banner,
.content-banner {
	display: flex;
	position: absolute;
	top: 0;
	justify-content: center;
	align-items: start;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	flex-direction: column;
}

.slider .link-banner a {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}

.slider .link-banner a:hover {
	text-decoration: none;
}

@keyframes slide {
	0% {
		top: 20%;
	}

	50% {
		top: 35%;
	}

	100% {
		top: 48%;
	}
}

.slider .link-banner a::after {
	content: '\ea58';
	font-family: 'LineIcons';
	display: flex;
	width: auto;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	animation: slide 1s linear;
	animation-iteration-count: infinite;
	position: absolute;
	left: 0;
	right: 0;
	padding-top: 15px;
}

.slider .owl-item .absolute-banner,
.absolute-banner {
	/* display: flex; */
	justify-content: center;
	/*width: 70%;*/
}

.content-banner .title-banner {
	color: white;
	display: flex;
	justify-content: center;
}

.content-banner .title-banner h1 {
	line-height: 1.4em;
	font-weight: 700;
}

.content-banner .title-banner h1 span {
	background: black;
	padding: 0 15px;
	display: block;
	width: fit-content;
	margin: 0 auto;
}

.content-banner .description-banner h4 {
	font-size: 2.3rem;
	text-transform: uppercase;
}

.top-header {
	position: absolute;
	z-index: 9999;
	right: 64px;
	line-height: 60px;
}

.top-header a + a {
	margin-left: 25px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
	border-top: none;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
	content: '\ea58';
	vertical-align: middle;
	display: inline-block;
	position: absolute;
	font-family: 'LineIcons';
	font-size: 10px;
	vertical-align: middle;
	top: calc(50% - 0.4em);
	right: inherit;
	border-top: none;
	border: none;
	margin-left: 5px;
}

.top-header
	.js-wpml-ls-legacy-dropdown-click
	ul
	li.wpml-ls-item-legacy-dropdown-click
	a::before {
	content: '\ebf8';
	font-family: 'LineIcons';
	padding-right: 5px;
	vertical-align: middle;
	font-size: 13px;
}

.wpml-ls-legacy-dropdown-click a {
	display: block;
	text-decoration: none;
	color: #838383;
	border: none;
	background-color: transparent;
	font-size: 12px;
}

.wpml-ls-legacy-dropdown-click {
	width: auto;
	max-width: 100%;
	display: inline-block;
}

/*.top-header .content-right {
	display: inline-block;
	margin-left: 35px;
}*/

.top-header .content-right a {
	color: #838383;
	font-size: 12px;
}

.fixed-head {
	/*position: absolute;*/
	left: 0;
	right: 0;
	width: 100%;
	top: auto;
	z-index: 1001;
	border-top-width: 0;
}

#masthead .header-main .container-lg-lg > div {
	display: flex;
}

#masthead .header-top .container-lg-lg > div,
#masthead .header-main .container-lg-lg > div {
	display: table-cell;
	position: relative;
	vertical-align: middle;
}

#masthead .logo img {
	transform-origin: center center;
}

#masthead .header-main .header-left {
	padding: 27px 0;
}

#masthead .logo img {
	display: inline-block;
	color: transparent;
	max-width: 85px;
	transform-origin: left center;
}

#masthead .main-menu {
	text-align: left;
	background: none;
}

#masthead li.menu-item {
	margin: 0 1px 0 0;
	display: inline-block;
}

.header-row .header-left,
.header-row .header-right,
.header-row .header-center,
.header-row .header-col-wide {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.header-row .header-left {
	margin-right: 0;
	margin-left: auto;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.header-row .header-right {
	margin-right: auto;
	margin-left: 0;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-start !important;
}

#masthead .header-main .container-lg-lg {
	min-height: 68px;
	position: relative;
}

.header-row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: justify;
	justify-content: center;
	width: 100%;
}

#masthead .header-main .header-row > div {
	-ms-flex-pack: center;
	justify-content: center;
}

.header-has-center .header-row > div:not(.header-center) {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.header-row > div {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-height: 100%;
	max-width: 100%;
}

#masthead .header-row > div {
	-ms-flex-pack: center;
	justify-content: center;
}

#masthead .header-center {
	padding: 20px 15px;
	text-align: center;
	margin: 0 65px;
	flex: 0 0 120px;
}

#masthead .header-left,
#masthead .header-right {
	padding: 27px 0;
	flex: 0 0 40%;
}

#masthead .header-left {
	text-align: left;
	justify-content: flex-end !important;
}

#masthead .main-menu {
	text-align: left;
	background: none;
}

.header-col > *:not(.header-col-wide):first-child,
.header-col-wide > *:not(.header-col-wide):first-child {
	margin-left: 0;
}

#masthead li.menu-item {
	margin: 0 1px 0 0;
}

#masthead li.menu-item {
	position: relative;
}

#masthead li.menu-item {
	float: left;
}

#masthead li.menu-item,
.sidebar-menu li.menu-item {
	display: block;
	position: relative;
	margin: 0;
}

li {
	line-height: 24px;
}

#masthead li.menu-item > a {
	font-size: 15px;
	font-weight: normal;
	line-height: 20px;
	letter-spacing: -0.35px;
	color: #838383;
	padding: 20px 0 20px 0;
	text-align: left;
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 500;
	transition: all 0.5s ease;
}

#masthead li.menu-item > a:hover {
	color: #000;
	transition: all 0.5s ease;
}

.header-left ul li.menu-item + li.menu-item,
.header-right ul li.menu-item + li.menu-item {
	margin-left: 80px !important;
}

.header-right ul li.menu-item.current-menu-item a,
.header-left ul li.menu-item.current-menu-item a {
	color: #000 !important;
	transition: all 0.5s ease;
}

.header-left ul,
.header-right ul {
	margin-bottom: 0;
	padding-left: 0;
}

.header-col.visible-for-sm.header-left-mov,
.header-col.visible-for-sm.header-right-mov {
	display: none !important;
}

.header-col .navbar-menu {
	display: inline-flex;
	list-style: none;
}

.header-col .navbar-menu li + li {
	margin-left: 80px;
}

.header-col .navbar-menu li a {
	color: black;
	font-size: 15px;
	font-weight: 500;
	padding: 0;
	background: linear-gradient(to right, #f78067, #b43c77, #021864);
	background-size: 200% 200%;
	animation: rainbow 2s ease-in-out infinite;
	background-clip: text;
	-webkit-background-clip: text;
	display: block;
	text-align: center;
	transition: color 0.2s ease-in-out;
}

.header-col .navbar-menu li a:hover {
	color: rgba(0, 0, 0, 0);
}

@keyframes rainbow {
	0% {
		background-position: left;
	}

	50% {
		background-position: right;
	}

	100% {
		background-position: left;
	}
}

.main-footer {
	padding: 45px 0;
	background: #000;
}

.linkedin-ftr {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
}

.linkedin-ftr a {
	color: #000;
}

.linkedin-ftr a span {
	font-size: 15px;
	padding-left: 15px;
	display: block;
	width: 80%;
	float: left;
	line-height: normal;
	/* vertical-align: middle; */
}

.linkedin-ftr i {
	font-size: 2rem;
	display: block;
	width: 20%;
	float: left;
	text-align: center;
	vertical-align: middle;
}

.footer-logo {
	display: inline-flex;
	float: left;
}

.footer-logo img {
	width: 165px;
}

.main-footer {
	padding: 45px 0;
}

.right-footer p {
	text-align: right;
	font-size: 15px !important;
}

.right-footer .box {
	background: #ffffff;
	border-radius: 13px;
	padding: 25px 43px;
	margin-top: 15px;
}

.right-footer select {
	border: none;
	background: transparent;
	font-size: 15px;
	text-align: right;
	width: 100%;
	text-align-last: right;
	padding: 0 15px;
	font-family: 'Montserrat';
}

.right-footer option {
	direction: rtl;
}

.right-footer .col-md-5 p {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	text-align: left;
	letter-spacing: -0.015em;
}

.right-footer > .row .separator::before {
	content: '';
	background: rgb(0 0 0 / 50%);
	width: 1px;
	height: 100%;
	text-align: center;
	position: absolute;
	right: 50%;
}

h4.title-column-ftr {
	color: white;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: -0.015em;
}

.main-footer .col-md-3 p {
	color: #838383;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: -0.015em;
}

.main-footer input[type='email'] {
	height: 45px;
	border: none;
	padding: 0 15px;
	width: 100%;
	font-size: 14px;
}

.main-footer ul {
	padding-left: 0;
	list-style: none;
	color: #838383;
}

.main-footer ul li,
.main-footer ul li a {
	color: #838383;
	font-size: 12px;
	transition: all 0.5s ease;
}

.main-footer ul li a:hover {
	color: white;
	transition: all 0.5s ease;
}

.main-footer ul li + li {
	/* margin-top: 10px; */
	margin-top: 5px;
}

.main-footer select {
	word-wrap: normal;
	background: transparent;
	color: white;
	border: none;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: -0.015em;
	margin-bottom: 0.5rem;
	width: 100%;
	margin-left: -5px;
}

.main-footer .social-contact a {
	color: #838383;
	font-size: 20px;
	transition: all 0.5s ease;
}

.main-footer .social-contact a + a {
	margin-left: 10px;
}

.main-footer .social-contact {
	margin-top: 15px;
}

.main-footer a.lets-talk {
	color: #838383;
	font-size: 15px;
	transition: all 0.5s ease;
}

.main-footer a.lets-talk:hover,
.main-footer .social-contact a:hover {
	color: #fff;
	transition: all 0.5s ease;
}

.banner-page h1 {
	color: white;
	font-size: 3rem;
	margin-bottom: 15px;
}

.banner-subtitle p {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
}

.title-featured,
.text-purpose {
	max-width: 780px;
	margin: 0 auto;
}

.title-featured h2 {
	color: #838383;
}

.title-featured h2 span {
	display: inline-block;
	font-weight: 700;
	font-size: 2.25rem;
	text-transform: initial;
}

/*.title-normal:after {
  content: "";
  background-color: #d8d8d8;
  width: 100%;
  height: 1px;
  display: block;
  margin: 25px 0 50px 0;
}*/

.card-partner p {
	font-style: normal;
	font-size: 0.938rem;
	line-height: 22px;
	letter-spacing: -0.015em;
	color: #848585;
}

.card-partner a {
	border: none;
	padding: 0;
	font-size: 2rem;
	color: #838383;
}

.button-partner {
	text-align: left;
	padding-top: 0;
	border-bottom: 1px solid #a7c2aa;
	padding-bottom: 10px;
	max-width: 80%;
}

.content-partner {
	/*height: 500px;
	max-height: 190px;*/
	min-height: 245px;
	max-width: 330px;
}

.postulate-block {
	background-color: #000;
	position: relative;
}

.postulate-block .col-md-6:last-child {
	position: absolute;
	float: right;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.postulate-block .col-md-6:first-child {
	float: left;
	position: relative;
	width: 50%;
	padding-left: 0;
	padding-right: 0;
	min-width: 70%;
}

.postulate-block .col-md-6:first-child h2 {
	color: white;
	margin-bottom: 55px;
}

.postulate-block .row {
	display: inline-block;
}

.postulate-block .contennt-offers {
	min-height: 600px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.postulate-block .contennt-offers h2 {
	color: white;
	/**/
}
.postulate-block .contennt-offers p {
	color: #fff;
	margin-bottom: 55px;
}

.postulate-block .contennt-offers a {
	background-color: transparent;
	color: white;
	border: 1px solid white;
	transition: all 0.5s ease;
}

.postulate-block .contennt-offers a:hover {
	background-color: white;
	color: black;
	transition: all 0.5s ease;
}

.contennt-offers h3 {
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: -0.015em;
	color: #838383;
}
.contennt-offers label small {
	font-size: 60%;
	display: block;
}
.page.page-id-135 .above-footer {
	background: #f1f2f5;
}

.container-fit {
	max-width: 700px;
	margin: 0 auto;
}

/*.container-fit-right {
	margin: auto 0 0 0;
}*/

#infographic img {
	mix-blend-mode: multiply;
}

#infographic .container-fit {
	max-width: 600px;
}

#infographic .content h3 {
	margin-bottom: 32px;
}

#infographic .col-md-7 {
	align-items: center;
	display: flex;
}

.main-content h3 {
	margin-bottom: 45px;
}

#benefits-solution {
	border-top: 4px solid #f1f2f5;
	border-bottom: 4px solid #f1f2f5;
	margin: 120px auto;
}

#benefits-solution .col-md-4:last-child(3n) {
	margin-bottom: 32px;
}

#benefits-solution .col-md-4 h3 span {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.938rem;
	font-weight: normal;
}

.absolute-frase {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	left: 0;
	top: calc(50% - 316px / 2);
	box-shadow: 0px 3px 4px rgb(0 0 0 / 14%);
	max-width: 95%;
	z-index: 11;
}

.absolute-frase .content-frase {
	background: white;
	padding: 70px 32px;
}

.absolute-frase .content-frase h3 {
	margin-bottom: 2rem;
}

#post-grid-soluciones .content-post {
	background: white;
	padding: 37px;
	border: 1px solid #d8d8d8;
	color: black;
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
}

#post-grid-soluciones .content-post h3 {
	color: black;
	transition: all 0.5s ease;
}

#post-grid-soluciones .content-post:hover h3 {
	color: white;
	transition: all 0.5s ease;
}

#post-grid-soluciones .content-post:hover {
	background-color: black !important;
	transition: all 0.5s ease;
}

#post-grid-soluciones .col-md-4 {
	margin-bottom: 32px;
	max-height: 143px;
}

#post-grid-soluciones .col-md-4 .list-item-post,
#post-grid-soluciones .col-md-4 .list-item-post .content-post {
	height: 100%;
}

#post-grid-soluciones {
	padding: 100px 0;
}

#post-grid-soluciones .col-md-4:nth-last-child(-n + 3) {
	margin-bottom: 0;
}

#solutions {
	background-color: #f1f2f5;
}

#solutions .col-md-4 {
	margin-bottom: 25px;
}

#solutions .col-md-4:nth-child(-3n) {
	margin-bottom: 0;
}

#solutions .row {
	padding: 0 3rem 0 3rem;
}

#solutions p {
	color: #838383;
}

#solutions .row p:last-child {
	margin-bottom: 0;
}

#frase {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	position: relative;
}

#frase + #solutions {
	padding: 100px 0;
	margin-top: 50px;
}

#frase .segundo-fondo-frase {
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 95%;
	z-index: 9;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: bottom !important;
}

#frase + #solutions .col-md-4 {
	align-items: center;
	display: flex;
}

#solutions .col-md-8 p {
	width: 50%;
	flex: 0 0 50%;
	max-width: 50%;
	float: left;
}

#frase + #solutions .col-md-8 p {
	margin-bottom: 25px;
}

h5.date-post {
	color: #848585;
	opacity: 0.8;
}

.lmd-catlist > .cat-item:first-child > a.open-cat:first-child {
	display: none;
}

ul.lmd-catlist,
ul.lmd-catlist ul.children {
	list-style: none;
	padding-left: 0;
}

.cursor-pointer {
	cursor: pointer;
}

.select ul li {
	cursor: default;
}

/** PAGE THINKING **/
#options-ls ul {
	padding-left: 0;
	list-style: none;
	border-bottom: 1px solid #c4c4c4;
	margin-bottom: 0;
}

#options-ls ul li {
	display: inline-block;
}

#options-ls ul li:after {
	content: '';
	height: 3px;
	width: 100%;
	display: block;
	margin-top: 10px;
	transition: all 0.5s ease;
}

#options-ls ul li.active::after {
	background: black;
	transition: all 0.5s ease;
}

#options-ls ul li + li {
	margin-left: 25px;
}

#options-ls ul li a {
	cursor: pointer;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 22px;
	align-items: center;
	letter-spacing: -0.015em;
	color: #c4c4c4;
}

/*.page-grid .col-md-6 {
	margin-bottom: 92px;
}*/

.page-grid .container-lg-absolute {
	left: inherit;
	position: relative;
	height: auto;
	border-bottom: 1px solid #d8d8d8;
	padding: 0;
	max-width: 100%;
}

.section-result {
	margin-top: 125px !important;
}

.page-grid .big-post .content-post {
	border: 1px solid #d8d8d8;
	padding: 30px 30px 20px 30px;
	background: transparent;
	min-height: 300px;
}

/** SOLUCIONES PAGE **/
.list-empresas .brand img {
	width: 100% !important;
	max-width: 260px;
}

.list-empresas .brand {
	padding: 100px 0 !important;
}

.list-empresas .brand .row div[class^='col-lg-']:last-child p {
	font-size: 1.125rem;
}
.list-empresas:not(:first-child) .container {
	border-top: 1px solid rgb(196 196 196 / 30%);
}

/** SINGLE THINKING **/
.banner-page a {
	color: white;
	position: relative;
	top: inherit;
	left: inherit;
	display: block;
	z-index: 2;
}

.page-template-template-thinking .above-footer,
.page-template-template-contacto .above-footer,
.page-template-template-bolsa-de-trabajo .above-footer {
	display: none;
}

.single-post .content-banner,
.single-casos .content-banner {
	text-align: left;
}

.single-casos #main-content h3 {
	font-style: normal;
	font-weight: 300;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	letter-spacing: -0.015em;
	color: #838383;
	margin-bottom: 0;
}

.single-casos #main-content h3 + h3 {
	margin-top: 15px;
}

.single-casos #main-content h3 + p {
	margin-top: 32px;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*left: calc(100vw - 74vw);
	width: 31%;*/
	height: 100%;
}

@media screen and (max-width: 767px) {
	.embed-container.ratio.ratio-9x16 {
		padding-bottom: 180%;
	}

	/*.embed-container iframe,
	.embed-container object,
	.embed-container embed {
		left: 0;
		width: 100%;
	}*/
}

.mmg-us--video .embed-container {
	position: initial;
}
.mmg-us--video .embed-container iframe {
	height: 100%;
	width: 100%;
}

a.goback i {
	font-size: 10px;
	vertical-align: middle;
	margin-right: 5px;
}

.a2a_kit .a2a_svg {
	border-radius: 100% !important;
	padding: 6px;
}

.addtoany_list.a2a_kit_size_32 a {
	display: block;
}

.social-sticky {
	position: fixed;
	z-index: 99999;
	right: 0;
	top: 30%;
}

.steps-link {
	position: fixed;
	top: 25%;
	left: 0;
	z-index: 9999;
}

.steps-link a {
	display: flex;
	border: 1px solid #d8d8d8;
	background-color: white;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}

.steps-link a h5 {
	color: #838383;
}

.steps-link a.active {
	border: 1px solid #000;
	background-color: #000;
	color: white;
}

.steps-link a.active h5 {
	color: white;
}

.steps-link a + a {
	border-top: none;
}

.bajada-thumbnail {
	width: 25%;
}

/** PAGE CONTACTO **/

#contact .col-md-6.infocontact {
	justify-content: flex-start;
	align-items: center;
	padding: 100px 32px;
}

#contact .col-md-6.form {
	background: #f1f2f5;
	padding: 100px 32px;
}

#contact:after {
	content: '';
	background-color: #f1f2f5;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	z-index: -1;
	display: block;
}

#contact {
	position: relative;
}

form.wpcf7-form input[type='text'],
form.wpcf7-form input[type='email'],
form.wpcf7-form input[type='tel'],
form.wpcf7-form input[type='url'],
form.wpcf7-form textarea,
form.wpcf7-form select {
	width: 100%;
	border-radius: 5px;
	border: none;
	padding: 15px 30px;
}

form.wpcf7-form input[type='text'],
form.wpcf7-form input[type='email'],
form.wpcf7-form input[type='tel'],
form.wpcf7-form input[type='url'],
form.wpcf7-form select {
	height: 45px;
}

form.wpcf7-form .row + .row {
	margin-top: 15px;
}

#contact .accordion .card + .card {
	margin-top: 15px;
}

#contact .accordion .card-header {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border-bottom: none;
}

#contact .accordion .card-header button {
	border: none;
	padding: 0;
	margin: 0;
	background: transparent;
	font-weight: 500;
}

#contact .accordion .card-header button[aria-expanded='false'] i {
	transform: rotate(0deg);
	display: inline-block;
	transition: all 0.4s ease;
}

#contact .accordion .card-header button[aria-expanded='true'] i {
	transform: rotate(180deg);
	display: inline-block;
	transition: all 0.4s ease;
}

#contact .accordion .card-header .btn:focus {
	outline: 0;
	box-shadow: none;
}

#contact .accordion .card-header + div {
	margin-top: 25px;
}

#contact .accordion .card-body {
	padding: 0;
}

#contact .accordion .card {
	border: none;
}

#postulate form.wpcf7-form h5 {
	color: white;
}

.postulation-block {
	background-color: #f1f2f5;
	position: relative;
}

.postulation-block .col-md-6.brain {
	position: absolute;
	float: right;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.postulation-block .col-md-6.form {
	float: right;
	position: relative;
	width: 50%;
	padding-left: 35px;
	padding-right: 20px;
}

.postulation-block .contennt-offers {
	padding: 150px 50px 150px 0;
}

#bolsa {
	padding: 100px 0;
}

.switch .col-md-6:first-child {
	justify-content: center;
	align-items: flex-start;
	display: flex;
	padding: 29px;
}

.switch .col-md-6 article:after,
section.box .col-md-6 article:after {
	display: none !important;
}

.switch + .switch {
	margin-top: 32px;
}

.page-grid .switch:nth-child(even) .row {
	flex-direction: row-reverse !important;
}

#options-sl {
	border-bottom: 1px solid black;
	text-align: center;
}

select.category-menu {
	border: none;
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	margin: 0 auto 20px auto !important;
	padding-bottom: 0 !important;
	width: auto !important;
}

a:hover {
	color: #000000;
	text-decoration: underline;
}

.float-content .banner-content {
	width: 100%;
}

#intro .main-content h2 {
	margin-bottom: 45px !important;
	color: #838383;
}

#intro .container-lg:first-child > .row:first-child {
	max-width: 700px;
	margin-left: 0;
}

#procesos .row:nth-child(1) {
	border-top: 4px solid #83838330;
	border-bottom: 4px solid #83838330;
	padding: 40px 0;
	margin: 55px 0;
}

#procesos .row:nth-child(2) .col-md-3 {
	justify-content: flex-start;
	align-items: center;
	display: flex;
}

#procesos .row:nth-child(2) .col-md-3 h2 {
	margin-bottom: 0 !important;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 12px 16px;
	z-index: 1;
}

#search .nav-item.dropdown {
	margin: 0 auto;
}

#search .nav-item.dropdown > a {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	/* display: flex; */
	/* align-items: center; */
	/* text-align: center; */
	letter-spacing: -0.015em;
	text-transform: uppercase;
	color: black;
	width: 445px;
}

#search .nav-tabs {
	border-bottom: none;
}

#search .nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
	border-color: transparent !important;
}

.dropdown-menu.show {
	background-color: black;
	width: 100%;
	text-align: center;
}

.dropdown-menu.show a {
	color: white;
}

.dropdown-item:hover {
	color: black !important;
	background-color: #e2e2e2;
}

.switch .content-text {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: -0.015em;
	color: #838383;
}

.switch .content-text h2 {
	margin-bottom: 4rem;
	color: black;
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-size: 23px;
	line-height: 30px;
	letter-spacing: -0.015em;
	font-feature-settings: 'case';
}

.page-template-template-casos-de-estudios .above-footer {
	background: #f1f2f5;
	margin-top: 150px;
}

.content-post .excerpt h5 {
	color: #848585;
}

form.wpcf7-form h5 {
	color: #838383 !important;
}

#masthead {
	z-index: 9;
	position: relative;
	box-shadow: 0px 3px 4px rgb(0 0 0 / 15%);
}

.date-small,
.date-big {
	color: #848585;
}

/** PAGE NOSOTROS **/
.mmg-us--vision {
	padding: 188px 0 140px 0;
}

.mmg-us--vision .inner-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mmg-us--vision h2 span {
	font-size: 45px;
	font-weight: 500;
	color: black;
	line-height: 35px;
	text-transform: initial;
}

.mmg-us--vision h2 {
	font-size: 38px;
	font-weight: normal;
	color: black;
	line-height: normal;
	border-left: 2px solid #c4c4c4;
	padding: 0 125px 0 15px;
	margin-bottom: 0;
}

.mmg-us--vision p,
.mmg-us--cultura p {
	font-size: 20px;
	color: #838383;
	line-height: 30px;
	margin-bottom: 0;
}

.mmg-us--menciones p {
	font-weight: 400;
	font-size: 25px;
	line-height: 35px;
	letter-spacing: -0.015em;
	color: #838383;
}

.mmg-us--menciones > .container-lg:first-child {
	position: relative;
}

.mmg-us--menciones p:not(:first-child) strong {
	font-weight: 600;
}

.mmg-us--menciones p + h6 {
	font-size: 15px;
	color: #838383;
}

.mmg-us--menciones img {
	position: absolute;
	left: -40px;
	top: -25px;
	width: 90px;
	z-index: 9;
}

.mmg-us--menciones .swiper-pagination {
	text-align: left;
}

.mmg-us--menciones .swiper-pagination-bullet-active {
	background: black;
	width: 30px;
	border-radius: 60px;
}

.mmg-us--video {
	padding: 190px 0 100px 0;
}

.mmg-us--cultura {
	padding-bottom: 265px;
}

.mmg-us--cultura h2 {
	color: black;
	font-size: 36px;
}

.mmg-us--cultura p {
	position: relative;
}

.mmg-us--cultura p::after {
	content: '';
	width: 2px;
	height: 264px;
	display: block;
	background: #c4c4c4;
	position: absolute;
	left: -25px;
	top: 0;
	z-index: 99;
}

.mmg-us--cultura p::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #c4c4c4;
	display: block;
	position: absolute;
	left: -28px;
	z-index: 99;
	bottom: -195px;
	transform: rotate(45deg);
}

.mmg-us--valores {
	background: #fbfbfb;
	margin-top: -120px;
	position: relative;
}

.mmg-us--valores .inner-slider {
	display: flex;
	align-items: center;
}

.mmg-us--valores .inner-slider h4 {
	font-size: 400px;
	font-weight: 700;
	left: 0px;
	color: rgba(0, 0, 0, 0.04);
}

.mmg-us--valores .inner-slider .contenido-valores {
	padding-left: 50px;
}

.mmg-us--valores .inner-slider .contenido-valores h2 {
	font-size: 70px;
	font-weight: 600;
	line-height: initial;
}

.mmg-us--valores .inner-slider .contenido-valores p {
	color: #838383;
	font-size: 20px;
}

.mmg-us--valores .swiper-pagination-bullet-active {
	background: black;
	width: 30px;
	border-radius: 60px;
}

.mmg-us--valores .swiper-horizontal > .swiper-pagination-bullets,
.mmg-us--valores .swiper-pagination-bullets.swiper-pagination-horizontal,
.mmg-us--valores .swiper-pagination-custom,
.mmg-us--valores .swiper-pagination-fraction {
	bottom: 60px;
}

.mmg-us--valores .swiper-button-next:after,
.mmg-us--valores .swiper-button-prev:after {
	color: #838383;
	font-size: 30px;
}

.swiper-button-next_val:after,
.swiper-rtl .swiper-button-prev_val:after {
	content: 'next';
}

.swiper-button-prev_val:after,
.swiper-rtl .swiper-button-next_val:after {
	content: 'prev';
}

.swiper-button-next_val:after,
.swiper-button-prev_val:after {
	font-family: swiper-icons;
	font-size: 25px;
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
	color: #838383;
}

.swiper-button-prev_val {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
}

.swiper-button-next_val {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}

.mmg-us-newfeatured {
	padding: 190px 0 100px 0;
}

.mmg-us-newfeatured .container-lg:last-child .content-right {
	border: 2px solid #d8d8d8;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}

.mmg-us-newfeatured .container-lg:last-child .content-right h3 {
	color: #000;
}

.mmg-us-newfeatured .container-lg:last-child .content-right h3 + p {
	width: 80%;
}

.page-template-template-nosotros .banner-page .banner-img img {
	height: 100%;
}

.page-template-template-nosotros .banner-page:after {
	display: none;
}

.page-template-template-nosotros .banner-page .float-content {
	width: 100% !important;
}

.page-template-template-nosotros .banner-page .float-content {
	background: #ffffff;
	height: 140px;
	padding: 25px;
}

/*CSS JA 14-06**/

.postulation-block form.wpcf7-form input[type='text'],
.postulation-block form.wpcf7-form input[type='email'],
.postulation-block form.wpcf7-form input[type='tel'],
.postulation-block form.wpcf7-form input[type='url'],
.postulation-block form.wpcf7-form input[type='file'],
.postulation-block form.wpcf7-form textarea,
.postulation-block form.wpcf7-form select {
	width: 100%;
	padding: 8px 10px;
	background-color: #fff;
	border-radius: 0;
}

.cfile-label {
	width: 100%;
	background-color: #fff;
	padding: 2px;
	cursor: pointer;
}
.cfile-label span {
	width: 100%;
	background-color: #fff;
	padding: 2px;
	cursor: pointer;
	border: 1px dashed #d7d7d7;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
}
span.CV input,
span.optinals-files input {
	display: none;
}

::placeholder,
.cfile-label,
select {
	font-size: 15px;
	line-height: 22px;
	letter-spacing: -0.015em;
	color: #c4c4c4;
}

.back-white {
	background-color: #fff;
}

.rrss {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.rrss span {
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: -0.015em;
	color: #838383;
	margin-right: 15px;
}

.rrss a {
	padding-right: 15px;
}

.rrss a img {
	width: 22px;
	height: 22px;
}

.black-container .col-lg-5 {
	position: absolute;
	float: right;
	right: 0;
	top: 2.5%;
	width: 40%;
	height: 95%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.content-us {
	min-height: 563px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}

@media screen and (max-width: 1366px) {
	.page-template-template-nosotros .banner-page .float-content {
		max-width: 72%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	#masthead {
		height: auto !important;
	}
	.container-lg_extra {
		padding: 0 15px;
	}

	img.arrow-white {
		max-width: 7px;
	}

	#cat-post .nav-tabs {
		margin-bottom: 0px;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
	}

	.mmg-carousel--tabs {
		border-bottom: 1px solid #dee2e6;
	}

	.mmg-carousel--tabs .nav-tabs {
		border-bottom: none !important;
	}

	.mmg-carousel--tabs .nav-link {
		text-align: center;
	}

	.banner-page:after {
		display: none !important;
	}

	.banner-page:before {
		display: block;
		content: ' ';
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 55%);
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 1;
	}

	h2 {
		font-size: 0.875rem;
	}

	h2 span {
		font-size: 0.75rem;
	}

	#masthead {
		padding: 15px 0 !important;
	}

	.mmg-header--mobile {
		z-index: 999999;
		display: flex;
		justify-content: space-between !important;
		width: 100%;
	}

	#masthead .logo img {
		max-width: 80px;
	}

	#menu-mobile {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	#menu-mobile li + li {
		margin-top: 50px;
	}

	.nav-link {
		color: #838383;
		font-size: 1.563rem;
		padding: 0;
	}

	.nav-link.mini-link {
		font-size: 18px;
	}

	#masthead .logo img {
		opacity: 1;
		/*box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
		transition: opacity 1s ease;*/
	}

	#thinking-home {
		padding-bottom: 0 !important;
	}

	#thinking-home .swiper-pagination-bullet-active {
		opacity: 1;
		background: #838383;
	}

	.panel-opened #masthead .logo img {
		opacity: 0;
		transition: opacity 0s ease;
	}

	#home-carousel .owl-carousel .owl-item img {
		min-height: 680px;
	}

	#thinking-home .content-right {
		margin: 0 15px;
	}

	.content-banner .title-banner h1 {
		line-height: 45px !important;
		font-size: 1.875rem !important;
	}

	.content-banner .description-banner h4 {
		font-size: 16px;
		font-weight: normal;
	}
	.slider .link-banner {
		justify-content: center;
		width: 100% !important;
		left: 0;
	}

	.slider .link-banner a {
		left: 45% !important;
	}

	.slider .link-banner a::after {
		width: 45px !important;
		height: 45px !important;
		line-height: 40px !important;
		left: 50%;
		transform: translateX(-50%);
	}

	.content-banner {
		top: 80px !important;
	}

	.page-template-template-nosotros .content-banner {
		top: -20px !important;
	}

	.absolute-banner {
		max-width: 100% !important;
		padding: 0 15px;
	}

	.absolute-frase {
		position: relative;
		top: 0;
		max-width: 100%;
		margin-bottom: 32px;
	}

	.absolute-frase .content-frase {
		padding: 32px 32px;
	}

	.black-container :is(h1, h2, h3) {
		font-size: 1rem !important;
	}

	#clientes.clientes .col {
		flex: 0 0 calc(100% / 4) !important;
	}

	#nosotros p {
		font-size: 0.875rem !important;
		color: #ffffffcc;
	}

	.main-footer .row div[class^='col-md-']:nth-child(odd) {
		flex: 0 0 40%;
		max-width: 40%;
		padding-right: 15px;
	}

	.main-footer .row div[class^='col-md-']:nth-child(even) {
		flex: 0 0 60%;
		max-width: 60%;
	}

	h4.title-column-ftr,
	.main-footer select {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.main-footer ul li + li {
		margin-top: 2px;
	}

	/*.main-footer input[type='email'] {
		height: 20px !important;
		border-radius: 0 !important;
		padding: 15px !important;
	}*/

	.footer-logo img {
		width: 100%;
	}

	.main-footer .col-md-3:nth-child(2) p {
		color: white;
		margin-bottom: 5px;
	}

	.above-footer p {
		font-size: 1rem;
		font-weight: 500;
	}

	.above-footer a {
		line-height: 25px;
		padding: 10px 22px;
		font-size: 14px;
		/*height: 25px;*/
	}

	.above-footer .container {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.above-footer {
		padding: 45px 0;
	}

	#familia {
		padding: 150px 0 115px 0;
	}

	#familia h2 {
		font-size: 1.375rem;
	}

	#familia h2 span {
		display: inline-block;
	}

	#familia .row:last-child,
	#familia .container-lg_extra > .row {
		align-items: center;
		justify-content: center !important;
	}

	#familia .row:last-child .col-2 {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}

	#familia .row:last-child .col-2:not(:nth-child(-n + 3)) {
		margin-top: 32px;
	}

	#familia .container-lg_extra {
		margin-top: 55px;
	}

	/** BANNER RESPONSIVE **/
	/*.banner-page .content-banner {
		top: 0 !important;
	}*/

	.banner-page .float-content {
		width: 100% !important;
	}

	.banner-page h1 {
		font-size: 1.563rem !important;
		color: white !important;
	}

	.banner-subtitle p {
		font-size: 14px !important;
		color: white !important;
	}

	.banner-page:after {
		background: rgb(0 0 0 / 40%) !important;
	}

	/*CASOS DE ESTUDIO */
	#cat-post .nav-item {
		margin-right: 0 !important;
		flex: 0 0 calc(100% / 4);
	}

	#cat-post article .row {
		flex-direction: column-reverse;
	}

	#cat-post article img.img-fluid {
		max-height: 178px;
	}

	#cat-post article {
		margin-bottom: 0px !important;
		margin-top: 45px;
	}

	#cat-post article h1 {
		font-size: 14px !important;
	}

	article .content-article {
		font-size: 12px !important;
		color: #838383 !important;
	}

	#cat-post .nav-link {
		width: fit-content;
	}

	/** SOLUCIONES **/
	.list-empresas .brand .row div[class^='col-lg-']:last-child p {
		font-size: 14px;
		margin-top: 32px;
	}

	.list-empresas .brand img {
		max-width: 180px;
	}

	.list-empresas .brand {
		padding: 50px 0 !important;
	}

	.our-services .row:nth-child(2) div[class^='col-lg-'] {
		flex: 0 0 calc(100% / 2);
	}

	.our-services .row:nth-child(2) div[class^='col-lg-']:nth-child(odd) {
		padding-right: 7.5px;
	}

	.our-services .row:nth-child(2) div[class^='col-lg-']:nth-child(even) {
		padding-left: 7.5px;
	}

	.our-services .service p {
		font-size: 0.875rem !important;
		margin-bottom: 0;
	}

	#cat-post .nav-link {
		font-size: 0.875rem !important;
	}

	/** THINKING **/
	.section-result {
		margin-top: 55px !important;
	}

	/*.page-grid .col-md-6 {
		margin-bottom: 0;
		flex: 0 0 calc(100% / 2) !important;
		width: calc(100% / 2) !important;
	}*/

	.page-grid .big-post .content-post {
		padding: 15px 10px 20px 10px;
		min-height: 230px;
	}

	.content-post h3 {
		font-size: 12px;
		line-height: normal;
	}

	.content-post .excerpt h5 {
		font-size: 12px;
		line-height: 18px;
	}

	h5.date-post {
		font-size: 12px;
	}

	/*.page-grid .row:first-child div[class^='col-md-']:nth-child(odd) {
		padding-right: 7.5px;
	}

	.page-grid .row:first-child div[class^='col-md-']:nth-child(even) {
		padding-left: 7.5px;
	}*/

	#options-ls ul li a {
		font-size: 14px;
	}

	#options-ls ul li:after {
		margin-top: 0;
	}

	/** CONTACTO **/
	#contact:after {
		display: none;
	}

	#contact .col-md-6.infocontact {
		padding: 45px 15px;
	}

	.information-contact h2 {
		font-size: 12px;
		margin-bottom: 15px;
		font-weight: 500;
	}

	.information-contact p {
		font-size: 12px;
	}

	/** BOLSA **/
	#bolsa {
		padding: 45px 0 !important;
	}

	postulation-block .col-md-6.form {
		float: right;
		position: relative;
	}

	.postulation-block .col-md-6.brain {
		position: relative;
		width: 100%;
		height: 356px;
	}

	.postulation-block .contennt-offers {
		padding: 45px 0px 45px 0;
	}

	.postulation-block .col-md-6.form {
		padding-left: 15px;
		padding-right: 15px;
		width: 100% !important;
	}

	#bolsa .list-item-post {
		margin-bottom: 30px;
		/*max-width: 50%;*/
	}

	/*#bolsa .container-lg:nth-child(2) article:nth-child(odd) {
		padding-right: 7.5px;
	}

	#bolsa .container-lg:nth-child(2) article:nth-child(even) {
		padding-left: 7.5px;
	}*/

	#bolsa .content-post-sm {
		padding: 15px 22px 15px 15px;
		border: 1px solid #d8d8d8;
		position: relative;
	}

	#bolsa .content-post i {
		right: 3px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 10px;
	}

	#bolsa .thumbnail-post img {
		height: 125px;
		object-fit: cover;
		object-position: center;
	}

	/** NOSOTROS **/
	#socios .col-md-4:first-child {
		margin-right: -1px;
	}

	#socios .col-md-4:last-child {
		margin-left: -1px;
	}

	.page-template-template-nosotros .banner-page .banner-img img {
		height: 345px;
	}

	.page-template-template-nosotros .content-banner {
		padding: 0;
	}

	.page-template-template-nosotros .banner-page .float-content {
		height: 120px;
		padding: 15px;
		max-width: 100%;
		margin-top: 40px;
	}

	.page-template-template-nosotros .banner-page .float-content h1,
	.page-template-template-nosotros
		.banner-page
		.float-content
		.banner-subtitle
		p {
		color: black !important;
	}

	.mmg-us--vision {
		padding: 45px 0;
	}

	.mmg-us--vision .inner-container {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.container-slim {
		margin: 0 15px;
	}

	.mmg-us--vision h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.mmg-us--vision h2 span {
		font-size: 30px;
		margin-bottom: 0;
	}

	.mmg-us--vision p,
	.mmg-us--cultura p {
		font-size: 14px;
		line-height: 20px;
	}

	.mmg-us--menciones p + p {
		margin-bottom: 0;
	}

	.mmg-us--menciones p {
		font-size: 14px;
		line-height: 20px;
	}

	.mmg-us--menciones img {
		left: 15px;
		top: -15px;
		width: 50px;
	}

	.mmg-us--video {
		padding: 45px 0 45px 0;
	}

	.mmg-us--cultura h2 {
		font-size: 20px;
	}

	.mmg-us--cultura > .container-lg {
		padding-left: 45px;
	}

	.mmg-us--cultura {
		padding-bottom: 0;
	}

	.mmg-us--cultura p::after {
		height: 164px;
		left: -25px;
		top: -25px;
	}

	.mmg-us--cultura p::before {
		bottom: -25px;
	}

	.mmg-us--valores {
		margin-top: 80px;
	}

	.mmg-us--valores .inner-slider .contenido-valores h2 {
		font-size: 35px;
		font-weight: 600;
	}

	.mmg-us--valores .inner-slider .contenido-valores p {
		font-size: 14px;
	}

	.mmg-us--valores .inner-slider .contenido-valores {
		padding-left: 5px;
		padding-right: 35px;
	}

	.mmg-us--valores .inner-slider h4 {
		font-size: 150px;
		position: relative;
		top: -50px;
	}

	.mmg-us--valores .swiper-horizontal > .swiper-pagination-bullets,
	.mmg-us--valores .swiper-pagination-bullets.swiper-pagination-horizontal,
	.mmg-us--valores .swiper-pagination-custom,
	.mmg-us--valores .swiper-pagination-fraction {
		bottom: 0;
	}

	.mmg-us--valores .inner-slider {
		margin-top: 20px;
		margin-bottom: 50px;
		padding: 10px;
	}

	.mmg-us-newfeatured {
		padding: 45px 0 45px 0;
	}

	.mmg-us-newfeatured .container-lg:last-child .content-right {
		margin: 0 15px;
		padding: 15px;
	}

	#socios .container-lg:last-child .col-md-4 + .col-md-4 {
		margin-top: 32px;
	}

	.button-partner {
		max-width: 100%;
	}

	.postulate-block .col-md-6:first-child {
		width: 100%;
		min-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

	.postulate-block .col-md-6:last-child {
		width: 100%;
		height: 367px;
		position: relative;
		margin-bottom: -6px;
	}

	.postulate-block .contennt-offers {
		min-height: auto;
		padding: 45px 0;
	}

	.contennt-offers .col-md-6 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contennt-offers .col-md-6 + .col-md-6 {
		margin-top: 15px;
	}
	/** THINKINGS **/
	#options-ls ul li {
		width: fit-content !important;
	}

	#options-ls ul li + li {
		margin-left: 0 !important;
	}

	.black-container .col-lg-5 {
		width: 100%;
		height: 367px;
		position: relative;
		margin-bottom: -6px;
	}

	.content-us {
		min-height: auto;
		padding: 50px 15px;
	}

	.page-template-template-nosotros .swiper-pagination-bullet-active {
		background: #838383 !important;
	}

	.page-template-template-nosotros .swiper-button-next:after,
	.page-template-template-nosotros .swiper-button-prev:after {
		color: #838383 !important;
		font-size: 25px;
	}

	#banner-video video {
		width: auto;
		max-height: 600px;
		object-fit: contain;
		object-position: right;
		float: right;
	}
	#banner-video .video-foreground {
		margin-top: 50px;
	}
}

/*flats*/

.top-header .content-right {
	right: 30px; 
}

.flats {
	margin-right: 10px;
}

.flats a {
	margin: 0 5px !important;
}

.flats a img {
	width: 20px;
}

@media only screen and (max-width: 1300px) and (min-width: 1400px) {
	.top-header .content-right {
		right: 45px;
	}
}

.single-content-thinking #main-content p, .single-content-thinking #main-content li, .single-content-thinking #main-content span, .single-content-thinking #main-content a, .single-content-thinking #main-content strong {
  color: #212529;
  font-size: 15px;
}

.single-content-thinking #main-content h2 strong{
	font-size: 23.4px;
}

h3.sidebar-heading {
  font-size: 20px;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 30px; 
}

.categories {
  padding: 0; 
}
.categories li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
  list-style: none; 
}
.categories li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0; 
}
.categories li a {
  display: block;
  color: #000000; 
}
.categories li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc; 
}
.categories li.active a {
  color: #000000;
  font-style: italic; 
}

.block-21 {
  display: flex;
  flex-flow: row wrap;
	margin-bottom: 20px;
}

.block-21 .blog-img {
  display: block;
  height: 160px;
  width: 100%;
	margin-bottom: 10px;
}

.block-21 .text {
  width: 100%; 
}

.block-21 .text .heading {
  font-size: 14px;
	line-height: 14px;
}
.block-21 .text .heading a {
  color: #000000; 
}

.block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
  color: #1eafed; 
}

.block-21 .text .meta > div {
	display: inline-block;
	font-size: 12px;
	margin-right: 5px; 
}

.block-21 .text .meta > div a {
  color: gray; 
}

.blog-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.subs-wrap {
  display: block;
  width: 100%;
  color: #ffffff;
  position: relative;
  z-index: 0;
  background: #000000;
  padding: 0 25px;
}

@media (max-width: 767.98px) {
  .subs-wrap {
    padding: 20px !important; 
  } 
}

.subs-wrap .overlay {
  position: absolute;
  position: absolute;
  top: 2%;
  left: 2%;
  right: 2%;
  bottom: 2%;
  opacity: 1;
  z-index: -1;
  /*border: solid 2px #ffffff;*/
  width: 96%;
  height: 96%;
  z-index: -1; 
}

.subs-wrap h3 {
  color: #fff; 
}

.subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0; 
}

.subscribe-form .form-group input {
  width: 100%;
  padding: 0 10px !important;
  height: 45px;
  border: none;
  border-radius: 3px 0 0 3px !important;
}
.subscribe-form .form-group input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #dddddd !important; 
}

.subscribe-form .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: #dddddd !important; 
}

.subscribe-form .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: #dddddd !important; 
}

.subscribe-form .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: #dddddd !important; 
}
.subscribe-form .form-group .form-control {
  bordeR: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500; 
}

.subscribe-form .form-group .wpcf7-submit{
  border: 1px solid #fff;
  height: 45px;
  line-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 0 3px 3px 0;
  background: #000000;
  padding: 0 15px;
}

.fa-paper-plane:before {
    color: #fff;
}

.subscribe-form .form-group .wpcf7-submit:hover {
  cursor: pointer; 
}

.subscribe-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8); 
}

.meta {
    line-height: 14px;
}


.subscribe-form  .input {
    flex: 0 0 80%;
    max-width: 74%;
    padding-right: 0;
    position: relative;
    padding-left: 15px;
}

.single-casos #first-steps .col-lg-8 p img{
	width: auto;
}

/* Cambios en el header */

#masthead .site-branding .header-left, #masthead .site-branding .header-right {
    flex: 0 0 46%;
}

.wp-block-heading strong{
	line-height: 2rem;
}

.arrow {
	display: flex;
	justify-content: end;
}

.arrow-wrap{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: end;
	width: 50%;
}

.arrow-white{
	color: #000;
}

.arrow-wrap .arrow-white{
	position: static;
	display: block;
}

.arrow-wrap .arrow-text {
    color: #000;
}

.arrow-wrap:not(.disabled):hover{
	/*box-shadow: 5px 5px 5px 5px #CCCCCC;*/
	font-weight: bold;
}

/****** STYLE CASOS DE ESTUDIOS TITLE AND BUTTON */
.conten__card-videos .content-article h1 a{
	color: #000000;
	/*background: linear-gradient(to right, #f78067, #b43c77, #021864);
	background-size: 200% 200%;
	animation: rainbow 2s ease-in-out infinite;*/
}

.conten__card-videos .content-article h1 a:hover{
	/*color: #007bff;*/
	color: rgba(0, 0, 0, 0);
	background: linear-gradient(to right, #f78067, #b43c77, #021864);
	background-size: 200% 200%;
	background-clip: text;
	-webkit-background-clip: text;
	animation: rainbow 2s ease-in-out infinite;
}

@keyframes rainbow {
	0% {
		background-position: left;
	}

	50% {
		background-position: right;
	}

	100% {
		background-position: left;
	}
}

.cta-news{
	transform: translateX(-2em);
    float: left;
}

/* FOOTER */

.footer-copyright__socialIcon {
    color: #828282 !important;
    font-size: 22px !important;
}

.main-footer {
    min-height: 51vh;
    background-color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
  .goals {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
  }

  .goals img {
    transition: all ease 0.3s;
    height: 54px;
    width: auto;
    margin: 10px;
    filter: grayscale(1);
  }

  .goals img:hover {
    filter: none;
  }
  .bottom-fotter a {
    color: #838383;
  }
  @media (max-width: 767px) {
    .footer-logo {
      margin-bottom: 20px;
    }
    .main-footer {
      height: auto;
      flex-direction: column;
      flex-wrap: wrap;
    }
    .goals img {
      height: 56px;
      margin: 10px;
    }
  }