@charset "UTF-8";
/*IMPORT GOOGLE FONTS <------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,600,700,700i,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/*
.selector-for-some-widget {
  box-sizing: content-box;
}
*/

@-ms-viewport{
  width: device-width;
}

html {scroll-behavior: smooth;}

body {
	background-color: #fff;
  	font-family: 'Quicksand', sans-serif;
  	font-weight: 500;
  	font-size:1em;
  	margin:0 auto;
  	min-height: 100%;
}

/*------------------------------------------------------------------------------------
																			ESTILOS	GENERALES
-----------------------------------------------------------------------------------------------*/
 /*
@media screen and (min-width: 1200px) {
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
}
@media screen and (max-width: 991px) and (min-width: 768px) {
}
@media screen and (max-width: 767px) and (min-width: 300px) {
}
*/

 /*
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/


/*
// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/


/* ------------------------------------------------------the given screen size or smaller
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }

// Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) { ... }

// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) { ... }

// Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { ... }

// Extra large devices (large desktops)
// No media query since the extra-large breakpoint has no upper bound on its width
*/


h1, h2, h3, h4, h5, h6 { font-weight: 500; color: #000; font-family: 'Quicksand', sans-serif !important;}
p, a { font-weight: 400; font-size: 1em;}
p { color: #000;}
	@media (max-width: 992px) {
		p, a { font-size: .9em;}
	}

	@media (max-width: 768px) {
		p, a { font-size: .8em;}
	}

h1 { font-size: 3.8em; line-height: 1.5em; }
h2 { font-size: 3.4em; line-height: 1.5em; }
h3 { font-size: 3em; line-height: 1.5em; }
h4 { font-size: 2.6em; line-height: 1.5em; }
h5 { font-size: 2.2em; line-height: 1.5em; }
h6 { font-size: 1.8em; line-height: 1.5em; }

	@media screen and (max-width: 1199px) and (min-width: 992px) {
		h1 { font-size: 3.8em; line-height: 1.3em; }
		h2 { font-size: 3.4em; line-height: 1.3em; }
		h3 { font-size: 3em; line-height: 1.3em; }
		h4 { font-size: 2.6em; line-height: 1.3em; }
		h5 { font-size: 2.2em; line-height: 1.3em; }
		h6 { font-size: 1.8em; line-height: 1.3em; }
	}

	@media screen and (max-width: 991px) and (min-width: 768px) {
		h1 { font-size: 2.5em; line-height: 1.3em; }
		h2 { font-size: 2.2em; line-height: 1.3em; }
		h3 { font-size: 1.8em; line-height: 1.3em; }
		h4 { font-size: 1.4em; line-height: 1.3em; }
		h5 { font-size: 1.3em; line-height: 1.3em; }
		h6 { font-size: 1.2em; line-height: 1.3em; }
	}

	@media screen and (max-width: 767px) and (min-width: 300px) {
		h1 { font-size: 2.3em; line-height: 1.3em; }
		h2 { font-size: 2em; line-height: 1.3em; }
		h3 { font-size: 1.5em; line-height: 1.3em; }
		h4 { font-size: 1.3em; line-height: 1.3em; }
		h5 { font-size: 1.2em; line-height: 1.3em; }
		h6 { font-size: 1.1em; line-height: 1.3em; }
	}

@keyframes img_zoom_out {
	0% { transform: scale(1);}
  	90% { transform: scale(1.1);}
  	100% { transform: scale(1.1);}
}

@keyframes img_zoom_in {
	0% { transform: scale(1.1);}
  	90% { transform: scale(1);}
  	100% { transform: scale(1);}
}

@keyframes appears_alfa {
	0% {opacity:0;}
	50% {opacity:1;}
	100% {opacity:0;}
}

@keyframes appears_up {
	0% {transform:  translate(-200px,0px);}
	20% {transform:  translate(0px,0px);}
	100% {transform:  translate(0px,0px);}
}

/* Fade */
.hvr-fade {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  /*background-color: #2098D1;*/
  /*color: white;*/
}





.inline-photo-right,
.inline-photo-left {
  display: block;
  /*border-radius: .25em;
  box-shadow: 1em 1em 2em .25em rgba(0,0,0,.1);*/
  margin: 0 auto;
  clear: both;
  opacity: 0;
}

.inline-photo-right {
  transform: translateX(20em);
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out;
  will-change: transform, opacity;
}

.inline-photo-left {
  transform: translateX(-20em);
  transition: transform 3s .20s cubic-bezier(0,1,.3,1),
              opacity .2s .20s ease-out;
  will-change: transform, opacity;
}

  .inline-photo-right.is-visible, .inline-photo-left.is-visible {
    opacity: 1;
    transform: translateX(0);
  }


.inline-photo {
  display: block;
  /*border-radius: .25em;
  box-shadow: 1em 1em 2em .25em rgba(0,0,0,.1);*/
  margin: auto;
  clear: both;
  opacity: 0;
  transform: translateY(10em);
  transition: transform 3s .20s cubic-bezier(0,1,.3,1),
              opacity .2s .20s ease-out;
  will-change: transform, opacity;
}

  .inline-photo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inline-photo-nsh {
  display: block;
  /*border-radius: .25em;*/
  margin: auto;
  clear: both;
  opacity: 0;
  transform: translateY(-10em);
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out;
  will-change: transform, opacity;
}

  .inline-photo-nsh.is-visible {
  opacity: 1;
  transform: translateY(0);
}






/* Z-INDEX */
.slider, #fullpage                                               { z-index: 1 !important;}
#top-header, #top-header-wh, #top-header-bl        				 { z-index: 2 !important;}
#productos-intro, #productos-intro img,                          { z-index: 4 !important; /*position: relative;*/}
	@media screen and (min-width: 768px) {
		#productos-intro, #productos-intro img                   { z-index: 4 !important; position: relative !important; }
	}


/* DEFINO FUENTES <------------------------------------------------------------------------
	{
	font-family: 'Quicksand', sans-serif;
	font-weight: 300;
	font-weight: 400;
	font-weight: 500;
	font-weight: 600;
	font-weight: 700;
	}	
*/

/* DEFINO COLORES <------------------------------------------------------------------------
amarillo 1: #fcb119;
amarillo 2: #ffcc00;
azul 1: #02164f;
azul 2: #3399ff;
gris 1: #4f5050;
gris 2: #cacaca;
gris bg: #fafafa;
*/


/*------------------------------------------------------------------------------------
																						MAIN
-----------------------------------------------------------------------------------------------*/

/*------- TOP SLIDER -------*/
.slider {
	height: 100% !important;
}
	/*@media screen and (max-width: 991px) and (min-width: 768px) {
		.slider { margin-top: 0; }
	}
	@media screen and (max-width: 767px) and (min-width: 300px) {
		.slider { margin-top: 0; }
	}*/

.slider .cont-slider {
	position: absolute;
  	top: 50%;
  	left: 0;
  	right: 0;
  	margin: 0 auto;
    transform: translateY(-50%);
}

.slider h2 {
    color: #fff;
    line-height: 1.1em;
    font-weight: 600;
}

.slider h2 b {
    color: #fcb119;
}

	@media (max-width: 768px) {
		.slider {
			padding-top: 75px !important;
		}
		.slider .cont-slider {
			padding: 0 40px;
		}
		.slider h2 {
			line-height: 1.1em;
			font-size: 24px;
		}
	}

.yellow_btn {
	background-color: #fcb119;
	/*border: 2px solid #fcb119;*/
	width: auto;
	height: 50px;
	color: #02164f;
	border-radius: 25px;
	font-size: 1.2em;
	text-align: center;
	padding: 15px 20px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	margin: 0 auto;
}

	@media (max-width: 768px) {
		.yellow_btn {
			padding: 7px 14px;
			font-size: 13px;
			font-weight: 700;
		}
	}

.yellow_btn:hover {
	color: #fcb119;
	background-color: #fff;
	text-decoration: none;
}


/*------- TOP HEADER -------*/
#top-header {
	overflow: hidden;
	position: fixed;
	/*top: 0;
	left: 0;
  	right: 0;*/
  	/*margin: 0 auto;
  	padding: 0;*/
  	background-color: rgba(2,22,79,.4);
  	padding: 40px;
}

	@media (max-width: 768px) {
		#top-header {
			background-color: rgba(2,22,79,1) !important;
		}
		}

#top-header-bl {
	overflow: hidden;
	position: fixed;
	/*top: 0;
	left: 0;
  	right: 0;*/
  	/*margin: 0 auto;
  	padding: 0;*/
  	background-color: rgba(2,22,79,1);
  	padding: 40px;
}

#top-header-wh {
	overflow: hidden;
	/*top: 0;
	left: 0;
  	right: 0;*/
  	/*margin: 0 auto;
  	padding: 0;*/
  	background-color: rgba(255,255,255,.8);
  	padding: 40px;
}

  @media (max-width: 768px) {
    #top-header, #top-header-bl,#top-header-wh {
      padding: 10px;
    }
  }

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

#top-header.sticky {
	padding: 10px;
	background-color: rgba(2,22,79,.95);
}

#top-header-wh.sticky {
	padding: 10px;
	background-color: rgba(255,255,255,.8);
}

#top-header-bl.sticky {
	padding: 10px;
}

/* Add some top padding to the page content to prevent sudden
quick movement (as the navigation bar gets a new position at
the top of the page (position:fixed and top:0)
.sticky + #fullpage {
  padding-top: 0;
}

#fullpage {
  padding-top: 0;
}*/

.navbar-brand img {}
	@media (max-width: 768px) {
    .navbar-brand img {
      width: 160px !important;
      height: 29px !important;
    }
  }

.menu-principal {
	margin: 0 auto;
}

.menu-principal li { margin: 0 5px; }
.navbar-collapse.collapse.show .menu-principal li { margin: 5px 0; }
.navbar-collapse.collapse.show .menu-principal li a { font-size: .8em; color: #02164f;}

.menu-principal li.active a, .nav-item:active {
	color: #fff !important;
	/*background-color: #007abc;
	border-radius: 25px;*/
	display: block;
	color: #fff !important;
	background-color: #fcb119;
	border-radius: 25px;
}

#top-header-wh .menu-principal li a {color: #02164f !important;}

.menu-principal li a {
	color: #fff !important;
	padding: 7px 20px !important;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

.menu-principal li a:hover {
	color: #fff !important;
	background-color: #fcb119;
	border-radius: 25px;
	display: block;
}

.menu-principal li.active.dropdown .dropdown-menu a {
	color: #02164f !important;
	background-color: #fcb119 !important;
	border-radius: 0;
}

.menu-principal .dropdown-menu.show a.dropdown-item {
	color: #02164f !important;
}

.menu-principal li.dropdown .dropdown-menu a:hover {
	background-color: #fcb119;
	border-radius: 0;
	color:#02164f !important; 
}

.navbar-collapse.collapse.show  {
	background-color: #02164f !important;
	padding: 20px !important;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.09), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
	border-radius: 6px;
	color: #fff;
}

.navbar-collapse.collapse.show  .menu-principal li a {
	font-size: .65em;
	text-align: center;
	padding: 5px;
	margin: 0 auto;

}

.navbar-light .navbar-toggler {
    /*color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);*/
    color: #02164f !important;
    background-color: #fcb119;
    border: none;
}

.navbar-light .navbar-toggler:hover,
.navbar-light .navbar-toggler:active {
	border:none !important;
}

.navbar-light .navbar-toggler span i { font-size: 1em; padding: .15em; }

.right_btn li {
	margin: 0 5px;
}

.right_btn li a {
	background-color: #fcb119;
	/*border: 2px solid #fcb119;*/
	width: auto;
	height: 50px;
	color: #02164f;
	border-radius: 25px;
	font-size: 1.2em;
	text-align: center;
	padding: 15px 20px 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}

.right_btn li a:hover {
	color: #fcb119;
	background-color: #fff;
}



/*------- BENEFICIOS / PRODUCTOS / LO QUIERES -------*/

.beneficios,
.confirmacion {
  background-color: #fff;
  padding: 100px 0;
}

.productos {
  background-color: #fafafa;
  padding: 100px 0;
}

.lo_quieres {
  background-color: #fff;
  padding: 100px 0;
  border-bottom: 1px solid #cacaca;
}

  @media (max-width: 992px) {
    .beneficios,
    .productos,
    .lo_quieres,
    .confirmacion {
      padding: 50px 0 70px;
    }
  }

  @media (max-width: 768px) {
    .beneficios,
    .productos,
    .lo_quieres,
    .confirmacion {
      padding: 20px 0 60px;
    }
  }

.beneficios .item {
	box-shadow: .5em .5em 1em .15em rgba(0,0,0,.1);
	background: url(../images/line_dotted1.gif) top left no-repeat, url(../images/line_dotted2.gif) bottom right no-repeat;
	height: 100% !important;
	display: block;
}

.beneficios h6 {
  font-weight: 700 !important;
  color: #003057;
  font-size: 1.5em;
  text-transform: uppercase;
}

.beneficios p,
.beneficios a  {
  font-weight: 400 !important;
  color: #4f5050;
  letter-spacing: .01em;
  line-height: 1.7em !important;
}

.beneficios p b,
.beneficios a {
	font-weight: 600;
	border-bottom: 2px solid #fcb119;
}

.beneficios a:hover {
	text-decoration: none;
	background-color: #fcb119;
}

	@media (max-width: 992px) {
	    .beneficios h6  {
	      font-size: 1.1em;
	    }
  }

  @media (max-width: 768px) {
    .beneficios h6 {
      font-size: 1.3em;
    }
  }




.productos .item {
	text-align: left !important; 
}

.productos h6 {
  font-weight: 600 !important;
  color: #4f5050;
  font-size: 1.5em;
  line-height: 1.4em !important;
}

.productos h6 b {
  color: #4f5050;
  font-weight: 600;
  border-bottom: 2px solid #fcb119;
}

  @media (max-width: 992px) {
    .productos h6 {
      font-size: 1.2em;
      font-weight: 500 !important;
    }
  }

  @media (max-width: 768px) {
    .productos h6 {
      font-size: 1.2em;
      font-weight: 500 !important;
    }
  }

.productos p,
.productos ul {
  font-weight: 400 !important;
  color: #4f5050;
  letter-spacing: .01em;
  line-height: 1.7em !important;
}


.productos .bd-r {border-right: 1px solid #e1e1e1;}

   @media (max-width: 768px) {
    .productos .bd-r {
      border-right: none;
      border-bottom: 1px solid #e1e1e1;
    }
  }




.lo_quieres h2 {
	font-size: 80px;
	color: #003057;
	font-weight: 700;
}

	@media (max-width: 992px) {
		.lo_quieres h2 {font-size: 60px;}
	}

	@media (max-width: 768px) {
		.lo_quieres h2 {font-size: 50px;}
	}

.lo_quieres h2 b {
	color: #fcb119;
	font-weight: 700;
}

.lo_quieres h6 {
	font-size: 65px;
	color: #fcb119;
	font-weight: 700;
}

.lo_quieres p {
	font-size: 1.3em;
	font-weight: 500;
	color: #003057;
}

	@media (max-width:992px) {
		.lo_quieres p {
			font-size: 1.1em;
		}
	}

	@media (max-width: 768px) {
		.lo_quieres p {
			font-size: 1em;
		}
	}


/*------- TESTIMONIOS -------*/
.testimonios {
	padding: 100px 0;
}

	@media (max-width: 992px) {
    .testimonios {
      padding: 50px 0 70px;
    }
  }

  @media (max-width: 768px) {
    .testimonios {
      padding: 20px 0 60px;
    }
  }

.testimonios h2 {
	font-size: 80px;
	color: #003057;
	font-weight: 700;
	line-height: 1em !important;
}

	@media (max-width: 992px) {
		.testimonios h2 {font-size: 60px;}
	}

	@media (max-width: 768px) {
		.testimonios h2 {font-size: 50px;}
	}

.testimonios .owl-carousel {
  overflow: hidden;
}

.testimonios .owl-carousel .item {
  padding: 30px;
}

.testimonios .owl-carousel .item p {
  color:#003057 !important;
  font-size: 1em;
  line-height: 1.8em;
}

	@media (max-width: 992px) {
		.testimonios .owl-carousel .item p {font-size: .9em;}
	}

	@media (max-width: 768px) {
		.testimonios .owl-carousel .item p {font-size: .8em;}
	}

.testimonios .owl-carousel .item p b {
  text-transform: uppercase;
  letter-spacing: .15em;
}

.testimonios .owl-carousel .item {
  display: block !important;
  transition: all .3s ease-out;
}

/*.testimonios .owl-carousel .item:hover {
  background-color: #fafafa;
  cursor: pointer !important;
  opacity: .8;
  mix-blend-mode: color-dodge;
}*/

.testimonios .owl-carousel .owl-nav {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
}

.testimonios .owl-carousel .owl-nav .owl-prev,
.testimonios .owl-carousel .owl-nav .owl-next {
    width: 25px !important;
    height: 49px !important;
    padding: 0 !important;
    background-color: #a4a4a4;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.testimonios .owl-carousel .owl-nav .owl-prev span,
.testimonios .owl-carousel .owl-nav .owl-next span { display: none !important;}

.testimonios .owl-carousel .owl-nav .owl-prev {
    -webkit-mask: url(../images/arrow_prev.svg) no-repeat 50% 50%;
    mask: url(../images/arrow_prev.svg) no-repeat 50% 50%;
    float: left;
}

.testimonios .owl-carousel .owl-nav .owl-next {
    -webkit-mask: url(../images/arrow_next.svg) no-repeat 50% 50%;
    mask: url(../images/arrow_next.svg) no-repeat 50% 50%;
    float: right;
}

.testimonios .owl-carousel .owl-dots .owl-dot span {
  background-color: #cacaca;
}

.testimonios .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #4f5050;
}

.testimonios .owl-carousel .owl-dots .owl-dot.active span {
  background-color:#4f5050 !important;
}



/*------- FOOTER -------*/
.footer {
	padding: 100px 0;
	background: url(../images/blue_bg1.gif) #02164f  top left no-repeat, url(../images/blue_bg2.gif) #02164f  bottom right no-repeat;
	background: #02164f url(../images/blue_bg1.gif) top left no-repeat;
	color: #fff;
}

	@media (max-width: 768px) {
		.footer {
			padding: 60px 0 ;
		}
	}

.footer .item-datos p,
.footer .item-datos p a { 
	color: #fff !important;
	font-size: 24px;
	font-weight: 600;
	line-height: 1em;
}

.footer .item-datos .redes {
	color: #fff !important;
	font-size: 20px;
}

.footer .item-datos p.horario {
	color: #fff !important;
	font-size: 14px;
	font-weight: 400;
}

.footer .item-listas h6 {
	color: #fff !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: uppercase;
	height: 40px !important;
}

.footer .item-listas ul {
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
}

.footer .item-listas ul li {
	margin: 0;
	padding: 0;
}

.footer .item-listas ul li a {
	color: #3399ff !important;
	font-size: 14px;
}




/*------- SOLICITUD -------*/
.interiores {
	padding: 200px 0 60px;
}

.interiores h1 {
	font-size: 50px;
	color: #003057;
	font-weight: 700;
	line-height: 1em !important;
}

	@media (max-width: 992px) {
		.interiores {padding: 180px 0 50px;}
		.interiores h1 {font-size: 30px;}
	}

	@media (max-width: 768px) {
		.interiores {padding: 100px 0 50px;}
		.interiores h1 {font-size: 30px;}
	}

.interiores h1 b {
	color: #fcb119;
}

.interiores h5 {
	color: #003057;
	font-size: 1.7em;
	font-weight: 600;
}

.interiores p {
	color: #4f5050 !important;
}

.interiores h3 {
	color: #003057 !important;
	font-size:34px !important;
	line-height: 1.2em;
	font-weight: 400;
}

.interiores h3 b {
	color: #fcb119;
	font-weight: 400;
}

#contact-form {
	color: #4f5050 !important;
	text-transform: uppercase;
	font-size: 14px;
}

#contact-form input,
#contact-form select {
	border: none !important;
	color: #4f5050 !important;
	border-bottom: 1px solid #fcb119 !important;
	border-radius: none !important;
	border-radius: 0 !important;
}

#contact-form .btn {
	background-color: #fcb119;
	/*border: 2px solid #fcb119;*/
	border: none;
	width: auto;
	height: 50px;
	color: #02164f;
	border-radius: 25px;
	font-size: 1.2em;
	text-align: center;
	padding: 15px 20px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	margin: 0 auto;
}
	/*@media screen and (max-width: 767px) and (min-width: 300px) {
		#contact-form .btn {margin: 50px auto 0;}
	}*/

#contact-form .btn:hover { 
	color: #fcb119;
	background-color: #02164f;
	text-decoration: none;
}


.hero-images {
 /* max-width: 1200px; /* native or declared width of img src (if known) */
	max-height: 400px;
	overflow: hidden;
}

img.scale {
 /* corrects small inline gap at bottom of containing div */
	display: block; 
  	width: 100%; /* corrects obscure Firefox bug */
	max-width: 100%;
	/* just in case, to force correct aspect ratio */
	height: auto !important;
  	display: block; /* corrects small inline gap at bottom of containing div */
  	width: 100% ;/* corrects obscure Firefox bug */
  	max-width: 100%;
  	/* just in case, to force correct aspect ratio */
  	height: auto !important;
  	/*width: auto\9; 
  	/* ie8+9 - use modernizr instead of this \9 hack */
  	/* lt ie8 */
  	-ms-interpolation-mode: bicubic;
	/* optionally force a minimum size if img src size is known: */
	/* min-height: 320px; /* max-height of .crop-height */
	/* min-width: 480px; /* proportional to above */
}



#gracias {
	font-size: 1.3em;
	background-color: #ffcc00;
	color: #02164f;
}

.confirmacion i {
	color: #ffcc00;
	font-size: 4em;
}

.confirmacion h6 {
	color: #02164f;
}




