@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
.btn {
	--inv: #112F63;
	position: relative;
	padding: 1rem 6.2rem;
	padding-right: 5.9rem;
	font-size: 1.4rem;
	color: var(--inv);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	-webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
	cursor: pointer;
	font-weight: bold;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
			user-select: none;
	border: 1px solid #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	margin-top: 19px;

}

@media (min-width: 300px) and (max-width: 599px) {

	.btn {

		--inv: #112F63;
		position: relative;
		padding: 1rem 3.2rem;
		padding-right: 2.9rem;
		font-size: 0.7rem;
		color: var(--inv);
		letter-spacing: 0.8px;
		text-transform: uppercase;
		-webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
		transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
		cursor: pointer;
		font-weight: bold;
		-webkit-user-select: none;
		   -moz-user-select: none;
			-ms-user-select: none;
				user-select: none;
		border: 1px solid #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		margin-top: 10px;

	}
}

.btn:before, .btn:after {
	content: '';
	position: absolute;
	-webkit-transition: inherit;
	transition: inherit;
	z-index: -1;
}

.btn:hover {
	color: var(--def);
	-webkit-transition-delay: .5s;
	        transition-delay: .5s;
}

.btn:hover:before {
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.btn:hover:after {
	background: var(--inv);
	-webkit-transition-delay: .35s;
	        transition-delay: .35s;
}

/* From Top */

.from-top:before,
.from-top:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-top:before {
	bottom: 0;
	border: 1px solid var(--inv);
	border-top: 0;
	border-bottom: 0;
}

.from-top:after {
	top: 0;
	height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
	height: 100%;
}

/* From Left */

.from-left:before,
.from-left:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-left:before {
	right: 0;
	border: 1px solid var(--inv);
	border-left: 0;
	border-right: 0;
}

.from-left:after {
	left: 0;
}

.from-left:hover:before,
.from-left:hover:after {
	width: 100%;
}

/* From Right */

.from-right:before,
.from-right:after {
	top: 0;
	width: 0;
	height: 100%;
}

.from-right:before {
	left: 0;
	border: 1px solid var(--inv);
	border-left: 0;
	border-right: 0;
}

.from-right:after {
	right: 0;
}

.from-right:hover:before,
.from-right:hover:after {
	width: 100%;
}

/* From center */

.from-center:before {
	top: 0;
	left: 50%;
	height: 100%;
	width: 0;
	border: 1px solid var(--inv);
	border-left: 0;
	border-right: 0;
}

.from-center:after {
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: var(--inv);
}

.from-center:hover:before {
	left: 0;
	width: 100%;
}

.from-center:hover:after {
	top: 0;
	height: 100%;
}

/* From Bottom */

.from-bottom:before,
.from-bottom:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-bottom:before {
	top: 0;
	border: 1px solid var(--inv);
	border-top: 0;
	border-bottom: 0;
}

.from-bottom:after {
	bottom: 0;
	height: 0;
}

.from-bottom:hover:before,
.from-bottom:hover:after {
	height: 100%;
}


/* ~~~~~~~~~~~~ GLOBAL SETTINGS ~~~~~~~~~~~~ */

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	--def: white;
	--inv: rgb(31, 30, 30);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	height: 106vh;
	width: 100%;
	background-size: cover;
	background-image: url("https://imagenes.fidelitytools.net/img/NTg3/207726");
	overflow-y: hidden;
	overflow-x: hidden;
	font-family: 'Montserrat', sans-serif;
}


@media (min-width: 300px) and (max-width: 599px) {

	body {
		--def: white;
		--inv: rgb(31, 30, 30);
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
				justify-content: center;
		-webkit-box-align: center;
				align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
				flex-direction: column;
		height: 81vh;
		width: 100%;
		/* background-size: inherit; */
		background-image: url("https://imagenes.fidelitytools.net/img/NTg3/207727");
		background-repeat: no-repeat;
		/* imagen responsive */
		overflow-y: hidden;
		overflow-x: hidden;
		font-family: 'Montserrat', sans-serif;;
	}

}

@media only screen
and (min-device-width: 1000px)
and (max-device-width: 1600px){

	body {
		--def: white;
		--inv: rgb(31, 30, 30);
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
				justify-content: center;
		-webkit-box-align: center;
				align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
				flex-direction: column;
		width: 100%;
		/* background-size: inherit; */
		background-image: url("https://imagenes.fidelitytools.net/img/NTg3/207726");
		background-position: center center;
		height:100vh;
		/* El fonde no se repite */
		background-repeat: no-repeat;
		/* Fijamos la imagen a la ventana para que no supere el alto de la ventana */
		background-attachment: fixed;
		/* El fonde se re-escala automáticamente */
		background-size: cover;
		/* Color de fondo si la imagen no se encuentra o mientras se está cargando */
		background-color: #FFF;
		overflow-y: hidden;
		overflow-x: hidden;
		font-family: 'Montserrat', sans-serif;
	}

	#bo{
		--def: white;
		--inv: #112F63;
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
				justify-content: center;
		-webkit-box-align: center;
				align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
				flex-direction: column;
		height: 110vh;
		width: 100%;
		background-size: inherit;
		background-image: url("https://imagenes.fidelitytools.net/img/NTg3/207726");
		overflow-y: hidden;
		overflow-x: hidden;
		font-family: 'Montserrat', sans-serif;
	}
	.btn {
		--inv: #112F63;
		position: relative;
		padding: 0.5rem 3.2rem;
		padding-right: 2.9rem;
		font-size: 0.9rem;
		color: var(--inv);
		letter-spacing: 0.8px;
		text-transform: uppercase;
		-webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
		transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
		cursor: pointer;
		font-weight: bold;
		-webkit-user-select: none;
		   -moz-user-select: none;
			-ms-user-select: none;
				user-select: none;
		border: 1px solid #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		margin-top: 10px;
	}
}


.h h1 {

	font-size: 27px;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;

}

.h h3 {

	font-size: 18px;
	text-align: center;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	opacity: 1;
	padding-top: 11px;
	font-weight: 300;
}
@media only screen
and (min-device-width: 1000px)
and (max-device-width: 1600px){
	#z {
		font-size: 15px;
		text-align: center;
		font-weight: bold;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;

	}

	.h h1 {
		font-size: 15px;
		text-align: center;
		font-weight: bold;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;

	}

	#k {
		font-size: 13px;
		text-align: center;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		opacity: 1;
		padding-top: 4px;
		font-weight: 300;
	}

	.h h3 {
		font-size: 13px;
		text-align: center;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		opacity: 1;
		padding-top: 4px;
		font-weight: 300;
	}

	#imge {

		margin-top: 10%;
		width: 80px;
	}

	#bttn{

			--inv: #112F63;
			position: relative;
			padding: 0.3rem 3.2rem;
			padding-right: 2.9rem;
			font-size: 0.9rem;
			color: var(--inv);
			letter-spacing: 0.8px;
			text-transform: uppercase;
			-webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
			transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
			cursor: pointer;
			font-weight: bold;
			-webkit-user-select: none;
			   -moz-user-select: none;
				-ms-user-select: none;
					user-select: none;
			border: 1px solid #FFFFFF;
			font-family: 'Montserrat', sans-serif;
			margin-top: 10px;

	}
}
@media (min-width: 300px) and (max-width: 599px) {
	.h h3 {

		font-size: 13px;
		text-align: center;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		opacity: 1;
		padding-top: 11px;
		font-weight: 300;
	}
}
.h img {

	margin-top: 77px;
	width: 100px;
	position:relative;
	text-align: center;

}

#img {

	margin-top: 77px;
	width: 90px;

}

@media only screen
and (min-device-width: 1000px)
and (max-device-width: 1600px){

	#img {

		margin-top: 0;
		width: 70px;

	}
}

@media (min-width: 300px) and (max-width: 599px) {
	#img {

		width: 29%;
		font-family: 'Montserrat', sans-serif;
	  }
}

@media (min-width: 300px) and (max-width: 599px) {
	#imge {

		width: 27%;
		font-family: 'Montserrat', sans-serif;
	  }
}

@media (min-width: 300px) and (max-width: 599px) {
	.h h1 {

		font-size: 17px;
		text-align: center;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;

	}
}

html {
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;

}

div {
	text-align: center;
	margin-bottom: 2rem;
}

@media (min-width: 300px) and (max-width: 599px) {
	div {
		margin-bottom: 0px;
	}
}
@media (min-width: 300px) and (max-width: 599px) {
div:last-child {margin-bottom: 0px;}
}
.pie-agencia {
	/* margin-top: 115px; */
	border-top: 1px solid #A8A8A8;
	padding-top: 26px;
	padding-bottom: 36px;
  }
  .pie-agencia ul {
	display: -webkit-box;
	display: flex;
	margin: 0 auto;
	padding: 0;
	-webkit-box-pack: center;
			justify-content: center;
  }
  .pie-agencia ul li {
	list-style: none;
	margin: 0 5px;
	max-width: 19px;
	height: 21px;
	overflow: hidden;
	-webkit-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
			align-items: center;
  }
  .pie-agencia ul li:hover {
	width: auto;
	max-width: 105px;
  }
  .pie-agencia ul li a {
	display: block;
	-webkit-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
  }
  .pie-agencia.blanco {
	border-top: 1px solid #F2F2F2;
  }
  .pie-agencia.blanco ul li a img {
	-webkit-filter: invert(100%) sepia(0%) saturate(772%) hue-rotate(339deg) brightness(175%) contrast(105%);
			filter: invert(100%) sepia(0%) saturate(772%) hue-rotate(339deg) brightness(175%) contrast(105%);
  }
  @media only screen
and (min-device-width: 1000px)
and (max-device-width: 1600px){
	.pie-agencia ul {
		display: -webkit-box;
		display: flex;
		margin: -17px auto;
		padding: 0;
		-webkit-box-pack: center;
				justify-content: center;
	  }
}

  .contenedor {
	display: flex;
	flex-direction: row;
	margin-top: 0px;
  }

  .icono-social {
	align-items: center;
	color: #FFFFFF;
	display: flex;
	height: 70px;
	justify-content: center;
	margin: 2px;
	text-decoration: none;
	transition-duration: .3s;
	width: 70px;
  }

  @media only screen
and (min-device-width: 1000px)
and (max-device-width: 1600px){
	.icono-social {
		align-items: center;
		color:#FFFFFF;
		display: flex;
		height: 0px;
		justify-content: center;
		margin: 2px;
		text-decoration: none;
		transition-duration: .3s;
		width: 70px;
	  }
}

  .redondo {
	border-radius: 50%;
  }

  .icono-social:hover {
	color:#FFFFFF;
  }

  .sombra:hover {
	box-shadow: 0 0 10px #FFFFFF;
  }

  /* #facebook:hover  {
	background-color: #3b5998;
  }

  #linkedin:hover  {
	background-color: #0177B5;
  }

  #twitter:hover  {
	background-color: #F56040;
  }

  #youtube:hover  {
	background-color: #e31010;
  } */

  .icono-social:active {
	transform: scale(.9);
  }

  /*** ESTILOS PLANTILLA ***/

  * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }

  body {
	background-color: #d7d7d7;
  }

  header {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 50px auto;
	width: 100%;
  }

  #contenedor-logo {
	border-right: 3px solid black;
	margin-right: 10px;
	padding-right: 20px;
	text-align: right;
  }

  #logo-ntln{
	max-width: 100px;
	height: auto;
  }

  #contenedor-texto {
	display:flex;
	flex-direction: column;
	height:100px;
	justify-content: space-around;
	padding-left: 10px;
  }

  #contenedor-texto h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 3em;
	text-transform: capitalize;
  }

  #contenedor-texto p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
  }

  #contenedor-texto i{
	padding: 5px;
  }

  main {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }

  .descripcion {
	align-self: flex-end;
	color: #6d5f5e;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	margin-left: 50px;
	padding-bottom: 20px;
  }

  .descripcion li {
	list-style: none;
  }

  .descripcion li::before {
	content: "- ";
  }
