/*
font-family: 'Oswald', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
*/html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code, del, 
dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; }

*
{
	box-sizing: border-box;
}

html{
  height: 100%;
}
body{ 
	min-height: 100%;
	color: #000;
  font-family: 'Roboto Condensed', sans-serif;
}
#page{
  overflow-x:hidden;
}

ul 
{
  list-style: none;
}

h1,
h2,
h3
{
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  display: inline;
}

p
{
font-size: 14px;
line-height:22px;
font-weight:400;
color:#838383;
}

a{
text-decoration:none;
color:inherit;
}

a:hover,
a:focus,
a:active,
a:visited{
text-decoration:none;
}
p a
{/**/
  font-weight:600;
}

::-webkit-input-placeholder {
color: rgba(128, 128, 128, 0.5);
font-family: 'Raleway', sans-serif;
 font-size:14px;
}
::-moz-placeholder {
color:rgba(128, 128, 128, 0.5);
font-family: 'Raleway', sans-serif;
 font-size:14px;
}
:-ms-input-placeholder {
color:rgba(128, 128, 128, 0.5);
font-family: 'Raleway', sans-serif;
 font-size:14px;
}


#main
{
	overflow: hidden;
}


.clear
{
	clear: both;
}

img
{
	max-width: 100%;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

/*******************************************************************/


.container {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.flex-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.bt
{
    display: inline-block;
    border: 1.5px solid #fff;
    border-radius: 30px;
    color: #fff;
    padding: 9px 30px 12px 30px;
    font-size: 13px;
    font-weight: 500;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.bt:hover
{
    color: #000;
    background-color: #fff;
}




textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;

    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}


input, 
textarea {
    border: 0;
    border: 1px solid rgba(112, 112, 112, 0.35);
    background: #fff;
    font-size: 14px;
    padding: 7px 10px;
    display: inline-block;
    width: 100%;
    color: #000;
    vertical-align: top;
 }

textarea {
    min-height: 113px;
    max-height: 113px;
    resize: none;
    border: 1px solid rgba(112, 112, 112, 0.35);
}

.slick-slide
{
  height: auto;
}

.slick-dots {
    bottom: -35px;
}

.slick-dots li {
  width: 11px;
}

.slick-dots li button
{
  position: relative;
  background-color: #fff;
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  z-index: 2;
  
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slick-dots li button:hover,
.slick-dots .slick-active button
{
  background-color: #a4a4a2;
}


.slick-arrow
{
  background-color: rgba(255,255,255,0.69);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  z-index: 9;
  opacity: 1;

  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slick-arrow:focus,
.slick-arrow:active,
.slick-arrow:hover
{
  background-color: rgba(255,255,255,1);
  border-color: transparent;
}

.slick-prev
{
    left: 30px;
}
.slick-next
{
    right: 30px;
}

.slick-prev:before, 
.slick-next:before
{
    content: '';
    position: absolute;
    width: 11px;
    height: 6px;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slick-prev:before
{
  background-image: url(../images/arrow-left.svg);
}
.slick-next:before
{
  background-image: url(../images/arrow-right.svg);
}



/************FORMULARIO************/




@-webkit-keyframes fadeInWV {
    0%   { opacity: 0; visibility: visible; }
    1%   { visibility: hidden; }
    100% { opacity: 1; }
  }
  @-moz-keyframes fadeInWV {
    0%   { opacity: 0; visibility: visible; }
    1%   { visibility: hidden; }
    100% { opacity: 1; }
  }
  @-o-keyframes fadeInWV {
    0%   { opacity: 0; visibility: visible; }
    1%   { visibility: hidden; }
    100% { opacity: 1; }
  }
  @keyframes fadeInWV {
    0%   { opacity: 0; }
    1%   { visibility: visible; }
    100% { opacity: 1; }
  }
  
  
  @-webkit-keyframes fadeOutWV {
    0%   { opacity: 1; }
    99%   { visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
  }
  @-moz-keyframes fadeOutWV {
    0%   { opacity: 1; }
    99%   { visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
  }
  @-o-keyframes fadeOutWV {
    0%   { opacity: 1; }
    99%   { visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
  }
  @keyframes fadeOutWV {
    0%   { opacity: 1; }
    99%   { visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
  }
  
  .popup
  {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
  
    -webkit-animation: fadeOutWV 0.5s ease; /* Safari 4+ */
    -moz-animation:    fadeOutWV 0.5s ease; /* Fx 5+ */
    -o-animation:      fadeOutWV 0.5s ease; /* Opera 12+ */
    animation:         fadeOutWV 0.5s ease; /* IE 10+, Fx 29+ */
  
    animation-fill-mode: forwards; /* or: backwards, both, none */
  }
  
  .popup.loaded
  {
    opacity: 0; 
    visibility: hidden;
  
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation:    none; /* Fx 5+ */
    -o-animation:      none; /* Opera 12+ */
    animation:         none; /* IE 10+, Fx 29+ */
  }
  
  .popup.opened
  {
    -webkit-animation: fadeInWV 0.5s ease; /* Safari 4+ */
    -moz-animation:    fadeInWV 0.5s ease; /* Fx 5+ */
    -o-animation:      fadeInWV 0.5s ease; /* Opera 12+ */
    animation:         fadeInWV 0.5s ease; /* IE 10+, Fx 29+ */
    animation-fill-mode: forwards; /* or: backwards, both, none */
  }
  
  .popup .bg
  {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.51);
  
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .popup.opened .bg
  {
    opacity: 1;
  }
  
  .popup .content-wrapper
  {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
  
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .popup.opened .content-wrapper
  {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }


  .doNotAnim
  {
    -webkit-transition: none!important;
    -moz-transition: none!important;
    -ms-transition: none!important;
    -o-transition: none!important;
    transition: none!important;
  }

  #popupTerminos
  {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    z-index: 99999;
  }

  #popupTerminos .wrapper
  {
    display: block;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
  }

  #popupTerminos p
  {
    color: #fff;
    font-weight: 300;
  }

  #popupTerminos p a
  {
    font-weight: 600;
  }

  #btAceptarTerminos
  {
    margin-left: 20px;
    outline: none;
    border: 0;
    background-color: #fff;
    color: #000;
    border-radius: 11px;
    padding: 7px 12px;
    cursor: pointer;
  }

   
@media only screen and (min-width : 800px) {
  #popupTerminos .wrapper
  {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
  
@media only screen and (max-width : 799px) {
  #btAceptarTerminos
  {
    margin-left: 0;
    margin-top: 20px;
  }
}/*TABLET VERTICAL*/
@media only screen and (min-width : 768px) {
	
  .container {
    padding: 0 35px;
  }


  .web-content
  {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .web-content.expanded
  {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
  }

}

@media only screen and (min-width : 768px) and (max-width : 1024px) {

}

@media only screen and (min-width : 768px) and (max-width : 1366px) {
 
}/*TABLET HORIZONTAL O MONITOR CUADRADO*/
@media only screen and (min-width : 1024px) {
  .parallax {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }
}

@media only screen and (min-width : 1024px) and (max-width : 1366px){


}
/*NOTEBOOK*/
@media only screen and (min-width : 1280px) {
        
  .container {
    /*padding: 0;
    width: 1320px;*/
    margin: 0 auto;
  }

  .parallax {
    background-attachment: fixed;
  }
     
}/*GRANDE*/
@media only screen and (min-width : 1600px) {
    
    .container {

    }

}
@-webkit-keyframes rightToLeft {
  0%   { opacity: 0;  }
  100% { opacity: 1; }
}
@-moz-keyframes rightToLeft {
  0%   { opacity: 0;  }
  100% { opacity: 1; transform: translate(0, 0%);}
}
@-o-keyframes rightToLeft {
  0%   { opacity: 0;  }
  100% { opacity: 1; transform: translate(0, 0%);}
}
@keyframes rightToLeft {
  0%   { opacity: 0;  }
  100% { opacity: 1; transform: translate(0, 0%);}
}



@-webkit-keyframes leftToRight {
  0%   { opacity: 1;  }
  100% { opacity: 0; }
}
@-moz-keyframes leftToRight {
  0%   { opacity: 1;  }
  100% { opacity: 0; }
}
@-o-keyframes leftToRight {
  0%   { opacity: 1;  }
  100% { opacity: 0; }
}
@keyframes leftToRight {
  0%   { opacity: 1;  }
  100% { opacity: 0; }
}



@-webkit-keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


@-webkit-keyframes fadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@-moz-keyframes fadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@-o-keyframes fadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

