/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*font family*/
* {
	font-family: 'Montserrat', sans-serif;
}
/*colors*/
:root {
  --primario: #003139;
  --secundario: #008DA3; 
  --transversal: #00FFFF; 
  --complementario: #72A4B6; 
  --blanco: #FDFDFA; 
  --lightGray: #B0BCB8; 
  --mediumGray: #798181; 
  --darkGray: #636363; 
  --black: #000000; 
}
/*Global*/
body {
}
a,
a img {
	transition: ease 0.4s;
	text-decoration: none;
	color: var(--white);
}

/*CTA*/
.cta,
.cta-small {
	background: var(--secundario);
	color: var(--white);
	border-radius: 100px;
	padding: 15px 30px;
	display: table;
	margin: 45px auto 30px;
	transform: translateY(0);
}
.cta:hover,
.cta-small:hover {
	text-decoration: none;
	color: var(--transversal);
	background: var(--primario);
	transform: translateY(-3px);
}
.cta-small {
	font-size: 16px;
	font-weight: 400;
}
.btn {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	border: none;
	outline: none;
	border-radius: 100px;
	padding: 15px 25px;
}

/*Titling and fonts*/
h2 {
	color: var(--secundario);
	font-size: 48px;
	font-weight: 300;
	font-style: italic;
}
h4 {
	color: var(--secundario);
	font-size: 24px;
	font-weight: 800;
	font-style: italic;
}
p {
	font-size: 18px;
	color: var(--primario);
	font-weight: 400;
}
p span {
	font-weight: 500;
}
/*Header*/
header {
	padding: 20px 0;
	background: var(--primario);
	z-index: 9999999;
}
header img {
	height: 48px;
}
header img.microsoft {
/*	height: 36px;*/
}

/*Jumbotron*/
.jumbotron {
	padding-top: 100px !important;
	padding-bottom: 250px !important;
	background: linear-gradient(180deg, var(--primario) 0%, var(--secundario) 100%);
	position: relative;
}
.jumbotron img.jumbo-img {
	width: 490px;
	height: 600px;
	position: absolute;
	top: 115px;
	right: 0;
	object-fit: cover;
	z-index: 9;
}
/*
.jumbotron:after {
	content:" ";
	width: 100%;
	height: 187px;
	background: url(../img/jumbo-bottom.svg) top left;
	position: absolute;
	bottom: -180px;
	left: 0;
}
*/
.jumbotron img.bottom-alt {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: -2px;
	left: 0;
	object-fit: cover;
}
.jumbotron h1.display-4 {
	font-size: 44px;
	color: var(--white);
	font-weight: 800;
	font-style: italic;
	margin: 30px 0 15px;
}
.jumbotron h1.display-4 span {
	font-weight: 300;
}
.jumbotron p.lead {
	font-size: 21px;
	line-height: 36px;
	color: var(--white);
	font-weight: 300;
	margin-bottom: 30px;
}
.jumbotron .btn.btn-primary {
	background: var(--white);
	color: var(--primario);
}
.jumbotron .btn.btn-primary:hover,
.jumbotron .btn.btn-primary:focus,
.jumbotron .btn.btn-primary:active,
.jumbotron .btn.btn-primary:active {
	outline: none;
	border: none;
	color: var(--white);
	background-color: var(--primario);
	border-color: var(--primario);
	box-shadow: none;
}
/*Beneficios*/
.beneficios {
	margin-top: 100px;
}
.beneficios h2 {
	font-size: 36px;
	margin-bottom: 45px;
	padding-top: 45px;
}
.beneficios .item {
	text-align: center;
	padding: 15px;
	margin-bottom: 30px;
}
.beneficios .item img {
	border: solid 2px var(--secundario);
	width: 120px;
	height: 120px;
	border-radius: 200px;
	object-fit: scale-down;
}
.beneficios .item h6 {
	font-size: 14px;
	color: var(--primario);
	margin-top: 20px;
}
/*Intro*/
.intro {
	background: url(../img/bg-secondary.svg) bottom left no-repeat;
	background-size: 600px;
	padding-top: 60px;
	padding-bottom: 180px;
	animation: updown 5s forwards infinite;
}
.intro .info {
	text-align: center;
}
.intro .info p {
}
.intro .info p span {
}
.intro .info img {
	display: table;
	margin: 30px auto;
}

@keyframes updown {
	0% {
		background-position: 0 110%;
	}
	50% {
		background-position: 0 95%;
	}
	100% {
		background-position: 0 110%;
	}
}
@keyframes updownTablet {
	0% {
		background-position: 0 75%;
	}
	50% {
		background-position: 0 60%;
	}
	100% {
		background-position: 0 75%;
	}
}
@keyframes updownMobile {
	0% {
		background-position: 0 100%;
	}
	50% {
		background-position: 0 97%;
	}
	100% {
		background-position: 0 100%;
	}
}

/*Servicios*/
.servicios {
	margin-top: 60px;
	padding-top: 0;
	padding-bottom: 60px;
}
.servicios h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--primario);
	margin-top: 15px;
	margin-bottom: 45px;
}
.servicios .item {
	text-align: center;
	cursor: pointer;
	padding: 15px;
	border-radius: 15px;
}
.servicios .item:hover {
	background: rgba(226, 226, 226, 0.25);
}
.servicios .item .img-border,
.servicios-details .img-border {
	border: solid 3px var(--secundario);
	width: 140px;
	height: 140px;
	border-radius: 200px;    
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.servicios .item .img-border img,
.servicios-details .img-border img {
	width: 90px;
	height: 90px;
}
.servicios .item h5 {
	color: var(--secundario);
	font-weight: 800;
	font-style: italic;
	font-size: 16px;
	letter-spacing: 1px;
	margin-top: 30px;
}
.servicios-details {}
.servicios-details h4 {
	font-size: 36px;
	font-weight: 300;
	font-style: italic;
	color: var(--secundario);
}
.servicios-details p {
	color: var(--primario);
	line-height: 36px;
	font-size: 18px;
}
.servicios-details .mps-details {
}
.servicios-details .mps-details img {
	height: 80px;
	width: 80px;
	margin-bottom: 15px;
}
.servicios-details .mps-details img[alt="mps-3.svg"]{
	padding: 10px;
}
.servicios-details .mps-details h6 {
	font-size: 15px;
	color: var(--primario);
	font-weight: 500;
	margin-bottom: 45px;
}
/*VENTAJAS*/
.ventajas {
	margin-top: 60px;
}
.ventajas h2 {
	font-size: 48px;
}
.ventajas h4 {
	font-size: 18px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}
.ventajas h4 img {
	margin-right: 15px;
}
.ventajas h4:before {
/*
	content: " ";
	width: 40px;
	height: 40px;
	background: red;
*/
}
/*ASESORIA*/
.asesoria {
	position: relative;
	background: var(--primario) url(../img/sonda-alfa.svg) -10% 20% no-repeat;
	background-size: 700px;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 60px;
	margin-top: 45px;
}
.asesoria p {
	font-size: 16px;
	color: var(--white);
}
.asesoria p strong {
	font-weight: 800;
}
.asesoria a.btn {
	background: var(--transversal);
	font-size: 16px;
	color: var(--primario);
	margin-top: 15px;
	transition: ease 0.4s;
	transform: translateX(0px);
}
.asesoria a.btn:hover {
	transform: translateX(10px);
	box-shadow: 0 0 10px 0px var(--primario);
	outline: none;
	background: var(--white);
	font-size: 16px;
	color: var(--primario);
}
.asesoria a.btn-primary:not(:disabled):not(.disabled).active, 
.asesoria a.btn-primary:not(:disabled):not(.disabled):active, .show> .asesoria a.btn-primary.dropdown-toggle ,
.asesoria a.btn:active ,
.asesoria a.btn:focus {
	transform: translateX(10px);
	box-shadow: 0 0 15px 5px #006979;
	outline: none;
	background: var(--white);
	font-size: 16px;
	color: var(--primario);
}
.asesoria:after {
	content: " ";
	width: 130px;
	height: 100%;
	top: 0;
	right: 0;
	background: url(../img/asesoria-after.svg) center center no-repeat;
	background-size: cover;
	position: absolute;
	display: none;
}
/*CONTACTO*/
.contacto {
	margin-top: 190px;
	padding-top: 0;
	padding-bottom: 60px;
	position: relative;
	background: rgba(114, 164, 182, 0.25);
}
.contacto h2 {
	padding-top: 45px;
}
.contacto h5 {
	color: var(--primario);
}

.contacto:before {
	position: absolute;
	height: 190px;
	width: 100%;
	top: -150px;
	left: 0;
	background: url(../img/before.svg) left bottom no-repeat;
	background-size: 100%;
	content: " ";
}
.contacto form { 
	background: var(--white);
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 30px;
}
.contacto form .form-group {}
.contacto form .form-group label {
	font-size: 16px;
	color: var(--secundario);
}
.contacto form .form-group .form-control {
	font-size: 16px;
	font-weight: 500;
	color: var(--primario);
}
.contacto form .btnAction {
	background: var(--secundario);
	color: var(--white);
	font-size: 16px;
	border-radius: 100px;
	padding: 12px 50px;
	display: table;
	margin: 30px auto;
	transform: translateY(0);
}
.contacto form .btnAction:hover {
	text-decoration: none;
	color: var(--transversal);
	background: var(--primario);
	transform: translateY(-3px);
}
.contacto form #sent-notification {
	background: #05a99a;
	color: var(--blanco);
	padding: 10px;
	border-radius: 10px;
	display: none;
}
.contacto .info-card {}
.contacto .info-card iframe{
	border-radius: 10px 10px 0 0;
}
.contacto .info-card ul {
	padding: 0;
	margin: 0;
	background: var(--white);
	padding: 15px;
	border-radius: 0 0 10px 10px;
}
.contacto .info-card ul li {
	list-style: none;
	display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
	padding: 10px 0;
}
.contacto .info-card ul li img {
	width: 26px;
	margin-right: 10px;
}
.contacto .info-card ul li p {
	font-size: 16px;
	color: var(--primario);
	font-weight: 500;
	margin: 0;
	line-height: 16px;
}
.contacto .info-card ul li a {
	font-size: 16px;
	color: var(--primario);
	font-weight: 500;
}
.contacto .info-card ul li a:hover {
	font-size: 16px;
	color: var(--primario);
	font-weight: 500;
	text-decoration: underline;
}
.contacto form .info {
	color: #FF0000;
}
.contacto form #mail-status p {
	text-align: center;
	font-size: 16px;
	padding: 10px;
	border-radius: 100px;
	margin: 0;
}
.contacto form #mail-status p.success {
	background: var(--transversal);
	color: var(--primario);
}
/*CONTACTO END*/
/*FOOTER*/
footer {
	background: var(--primario);
	padding: 30px 0;
}
footer .social a {
	display: inline-block;
}
footer .social a img {
	height: 40px;
	margin-left: 10px;
}
footer .social a:hover img {
	transform: scale(1.1);
}
footer small {
	color: var(--white);
	font-size: 13px;
	font-weight: 300;
}

/*responsive*/
@media screen and (max-width:1400px){
	body {
/*		background: red;*/
	}
}
@media screen and (max-width:1200px){
	body {
/*		background: cyan;*/
	}
}
@media screen and (max-width:1024px){
	body {
/*		background: blue;*/
	}
}
@media screen and (max-width:991px){
	body {
/*		background: yellow;*/
	}
	.jumbotron img.jumbo-img {
    width: 280px;
    height: 340px;
    position: absolute;
    top: auto;
    right: 0;
    object-fit: cover;
    z-index: 0;
    bottom: 2px;
}
	.beneficios {
		margin-top: 30px;
	}
}
@media screen and (max-width:768px){
	body {
/*		background: orange;*/
	}
	h2 {
		font-size: 40px;
	}
	h4 {
		font-size: 21px;
	}
	.jumbotron img.bottom-alt {
		bottom: -3px;
	}
	.jumbotron img.jumbo-img {
        width: 280px;
    height: 340px;
    position: absolute;
    top: auto;
    right: 0;
    object-fit: cover;
    z-index: 0;
    bottom: 0;
}
	.beneficios {
		margin-top: 30px;
	}
	.servicios-details h4 {
		margin-top: 30px;
	}
	
	.servicios:before {
		height: 100px;
		top: -98px;
		background-size: cover;
	}
	.servicios:after {
		height: 80px;
		bottom: -75px;
		background-size: cover;
	}
	.desafios .desafio-item:after ,
	.managed .item:after {
		content: "…";
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-content: center;
    align-items: flex-end;
    justify-content: center;
    font-size: 36px;
    color: var(--secundario);
		transform: rotate(90deg);
	}
	.desafios .desafio-item .hidden-content,
	.managed .item .hidden-content {
		width: 100%;
		min-height: auto;
	}
	.desafios .desafio-item,
	.managed .item {
		margin: 45px 30px;
	}
	.managed .item .hidden-content h5 img {
		width: 48px;
		height: 48px;
	}
	.contacto:before {
		top: -180px;
	}
	.contacto .info-card {
		margin-top: 45px;
	}
	footer small {
		margin-top: 30px;
		display: block;
	}
	footer img {
		margin: 0 auto 30px;
		display: block;
	}
	footer .social {
    text-align: center !important;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
	}
	footer .social a img {
		margin: 0;
	}
}
@media screen and (max-width:576px){
	body {
/*		background: pink;*/
	}
	.jumbotron {
		padding-bottom: 400px !important
	}
	.jumbotron img.jumbo-img {
       width: 270px;
    height: 340px;
    position: absolute;
    top: auto;
    right: 0px;
    object-fit: cover;
    z-index: 0;
    bottom: 30px;
}
	.jumbotron img.bottom-alt {
		height: 70px;
		bottom: -2px;
	}
	.jumbotron h1.display-4 {
		font-size: 36px;
	}
	.jumbotron p.lead {
		font-size: 18px;
	}
	h2 {
		font-size: 32px;
	}
	h4 {
		font-size: 18px;
	}
	.beneficios {
		margin-top: 30px;
	}
	.beneficios h2 {
		padding-top: 30px;
		font-size: 24px;
	}
	.asesoria a.btn,
	.asesoria a.btn-primary:not(:disabled):not(.disabled).active, .asesoria a.btn-primary:not(:disabled):not(.disabled):active, .show> .asesoria a.btn-primary.dropdown-toggle, .asesoria a.btn:active, .asesoria a.btn:focus {
		font-size: 15px;
	}
	section.asesoria:after {
		width: 0px;
	}
	.desafios {
		padding-bottom: 50px;
		padding-top: 90px;
		background-attachment: fixed;
	}
	.desafios h2 {
		margin-bottom: 15px;
	}
	.desafios h4 {
		font-size: 16px;
	}
	.desafios .desafio-item:hover .hidden-content {
		transform: scale(1)translateY(0px);
	}
	.servicios {
		padding-bottom: 15px;
		padding-top: 30px;
	}
	.servicios:before {
		height: 50px;
		top: -48px;
		background-size: cover;
	}
	.servicios .service-card .card-top {
		min-height: auto;
	}
	.servicios .service-card .card-top img {
		width: 72px;
		height: 72px;
	}
	.servicios .card-bottom {
		min-height: auto;
		padding: 20px 10px;
	}
	.servicios:after {
		height: 60px;
		bottom: -60px;
		background-size: cover;
	}
	.servicios .item .img-border {
		width: 100px;
		height: 100px;
	}
	.servicios .item .img-border img, .servicios-details .img-border img {
		width: 60px;
		height: 60px;
	}
	.servicios-details h4 {
		font-size: 28px;
		margin-top: 15px;
	}
	.ventajas h2 {
		font-size: 32px;
	}
	.contacto {
		padding-top: 30px;
		margin-top: 50px;
	}
	.contacto:before {
		height: 70px;
		top: -68px;
		background-size: cover;
	}
}
@media screen and (max-width:375px){
	body {
/*		background: navy;*/
	}
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

