/* Colores principales */
:root {
  --color1: #ce1569; /*magenta*/
  --color2: #eab1c2; /*rosa claro*/
  --color3: #878787; /*gris*/
  --color4: #059cd9;
  --color5: #000000;
  --color6: #000000;
}
/********************************************/
/* Font Face  *******************************/
/********************************************/
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-Regular.otf);
   font-weight: 400;
}
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-Italic.otf);
   font-weight: 400;
   font-style: italic;
}
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-Bold.otf);
   font-weight: 700;
}
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-BoldItalic.otf);
   font-weight: 700;
   font-style: italic;
}
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-Black.otf);
   font-weight: 900;
}
@font-face {
   font-family: Montserrat;
   src: url(fonts/Montserrat-BlackItalic.otf);
   font-weight: 900;
   font-style: italic;
}

*{font-family: 'Montserrat', sans-serif;}
h1{font-weight: 900; font-size: 2em;}
div.g-recaptcha {margin: 0 auto;width: 304px;}
.ancla:before {display: block;content: " ";margin-top: -130px;height: 130px;visibility: hidden;}

/* PARA CAMBIAR LA FORMA DE PASAR LOS SLIDES */
.carousel-indicators li {width:10px;height:10px;border-radius:50%;background-color:#CE2172;border: 2px solid #fff;}

/*BARRA MENU*/
#menubarra{
  position: fixed;
  z-index: 99;
  transition: 0.5s;
  background-color: var(--color1);
  color: white;
  font-weight: 900;
  padding: 15px 0px;
  font-size: 25px;
  /*cursor:pointer;*/
  top: 0;
  width: 100%;
  display: block;
  text-align: center;
}
/* MENU DE COSTADO */
.lateral {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--color1);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align:center;
}
.lateral a {padding: 8px 8px 8px 8px;text-decoration: none;font-size: 22px;color: white;display: block;transition: 0.3s;}
.lateral a:hover{color: white;}
.lateral .closebtn {position: absolute;top: 0;right: 25px;font-size: 36px;}
/*laptop*/
@media only screen and (min-width: 992px){.lateral a {font-size: 30px;}}

/********************************************/
/* Menú *************************************/
/********************************************/
.navbar{box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08); background-color: white;}
.nav-link{font-size: 0.8rem;font-weight: 600;color:#2C3487;}
.nav-item a{position: relative;}
/* Animacion linea debajo de palabra*/
.nav-item a:after {
	content: "";
	display: block;
	height: 2px;
	width: 0px;
	background: #2C3487;
	transition: all .3s;
}
.nav-item a:hover:after {width: 0%;}

.dropdown-menu{	
	border: none;
	min-width: 200px;
	border: 0px solid #bfc1c3;
	border-top: none;
	padding: 20px 10px;
	border-radius: 10px 10px 10px 10px;
	margin-left:0px;
	margin-top: 0px;
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
	background-color: #2B2F72;
}

.dropdown-menu a{
	padding: 0px 20px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color:white;
}
.dropdown-menu a:hover{
	color:#9a9eec;
}
.dropdown-menu a:hover:after{width: 0px;}
.dropdown:hover>.dropdown-menu{display:block;}
.dropdown-divider{border-top: 1px solid #B24D9D;}

/********************************************/
/* Texto y colores **************************/
/********************************************/
.text-400{font-weight: 400;} /*Normal*/
.text-700{font-weight: 700;} /*Bold*/
.text-900{font-weight: 900;} /*Black*/
.color1{color:var(--color1);}
.fcolor1{background-color:var(--color1);}
.color2{color:var(--color2);}
.fcolor2{background-color:var(--color2);}
.color3{color:var(--color3);}
.fcolor3{background-color:var(--color3);}
.color4{color:var(--color4);}
.fcolor4{background-color:var(--color4);}
/********************************************/
/* Video Youtube ****************************/
/********************************************/
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-bottom:15px;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/********************************************/
/* Efecto para foto**************************/
/********************************************/
figure {
  border-radius: 50%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
/* Zoom In #1 */
.hoverzoom figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.hoverzoom figure:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* Gray Scale */
.hovercolor img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
.hovercolor:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
/********************************************/
/* Custom Checkbox **************************/
/********************************************/
.pre {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: -10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pre input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}
.checkmarkcuadrado {
  position: absolute;
  top: 5px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}
.pre:hover input ~ .checkmark, .pre:hover input ~ .checkmarkcuadrado {
  background-color: #ccc;
}
.pre input:checked ~ .checkmark, .pre input:checked ~ .checkmarkcuadrado {
  background-color: var(--color1);
}
.custom-select {
    width: auto;
    background-color: #00FFFF;
    color:#081e3f;
}

/********************************************/
/* boton top ********************************/
/********************************************/
#boton_top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 90px; /* Place the button at the bottom of the page */
  right: 23px; /* Place the button 30px from the right */
  width: 60px;
  height:60px;
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--color1); /* Set a background color */
  color: white; /* Text color */
  padding: 0;
  transition: .3s;
  cursor: pointer; /* Add a mouse pointer on hover */
  border-radius: 10px; /* Rounded corners */
  font-size: 40px; /* Increase font size */
  vertical-align: middle;
}
#boton_top:hover {background-color: var(--color1);}
/********************************************/
/* Botón WhatsApp ***************************/
/********************************************/
#boton_whatsapp, #boton_email{
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 23px; /* Place the button at the bottom of the page */
  right: 23px; /* Place the button 30px from the right */
  width: 60px;
  height:60px;
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  color: white; /* Text color */
  padding: 0px;
  transition: .3s;
  cursor: pointer; /* Add a mouse pointer on hover */
  border-radius: 10px; /* Rounded corners */
  font-size: 32px; /* Increase font size */
  vertical-align: middle;
}

#boton_whatsapp {background-color: #4CAF50;}
#boton_email {background-color: #1c3d7a;}
#boton_whatsapp:hover {background-color: #4CAF50;}
#boton_email:hover {background-color: #1c3d7a;}
/********************************************/
/* modal WhatsApp ***************************/
/********************************************/
.modal{
  display: none;
  background-color: rgba(52, 114, 238, 0.9);
}
.modal-header,.modal-header-email {
  padding: 10px 14px;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 12px;
}

.modal-header {background-color: #4CAF50;}
.modal-header-email {background-color: #1c3d7a;}

.modal-body {padding: 16px 16px;}

.modal-content {
  top:100px;
  border-radius: 10px;  
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.4s
}
/* The Close Button */
.cerrar {
  color: #fff;
  float: right;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

.cerrarw{
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top:0px;
  right: 10px;
}

.cerrar:hover,.cerrarw:hover
.cerrar:focus,.cerrarw:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.w-form-control {
    border-radius: 0px;
    border: 0px;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-bottom: 1px solid #1c3d7a;
    margin: 10px 0px 10px 0px;
    width: 100%;
    }
#err_wnombre,#err_wemail,#err_wapellido,#err_wmensaje{
  color:red;
  margin-top: 0px;
}
/* Add Animation */
@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 100px; opacity: 1}
} 
.btn_enviar{
border: none;
border-radius: 5px;
display: inline-block;
padding: 8px 16px;
text-align: center;
cursor: pointer;
vertical-align: middle;
overflow: hidden;
text-decoration: none;
margin-top: 10px;
}
@media only screen and (min-width: 992px)
 {/*laptop*/
  .modal-content {width: 20%;}
}

/********************************************/
/* popup ************************************/
/********************************************/
.popup,.popup-cv {
  position: fixed;
  display: none;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
}
.popup-cv .popup-container {
  position: relative;
  font-size: 16px;
  width: 90%;
  max-width: 700px;
  top:80px;
  margin: 0 auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation-name: popup_animatetop;
  animation-duration: 0.4s;
}
.popup-container {
  position: relative;
  font-size: 16px;
  width: 90%;
  max-width: 400px;
  top:80px;
  margin: 0 auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation-name: popup_animatetop;
  animation-duration: 0.4s;
}
@keyframes popup_animatetop {
  from {top: -300px; opacity: 0}
  to {top: 80px; opacity: 1}
}
.popup-container p {
  padding: 0.5em 1em 0em 1em;
}
.popup-close {
  margin: 1em auto;
  cursor: pointer;
  padding: 0.5em 1em 0.5em 1em;
}
.popup-close-cv {
  margin: 1em 1em;
  cursor: pointer;
  padding: 0.5em 1em 0.5em 1em;
}
@media only screen and (max-width: 992px)
 {/*celular*/
  .popup-cv .popup-container {
    font-size: 12px;}
}

/********************************************/
/* animaciones ********************************/
/********************************************/
.zoomin{-webkit-animation-name:zoomin;animation-name:zoomin;animation-duration:1s;animation-fill-mode:both;}
@keyframes zoomin{
  from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
  to{opacity:1}}

.time2{animation-delay: 0.2s;}
.time4{animation-delay: 0.4s;}

.slideinleft{-webkit-animation-name:slideinleft;animation-name:slideinleft;animation-duration:1s;animation-fill-mode:both;}
 @keyframes slideinleft{
  from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
  to{-webkit-transform:translateZ(0);transform:translateZ(0)}}

.slideinright{-webkit-animation-name:slideinright;animation-name:slideinright;animation-duration:1s;animation-fill-mode:both;}
 @keyframes slideinright{
  from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
  to{-webkit-transform:translateZ(0);transform:translateZ(0)}}
 
.slideinup{-webkit-animation-name:slideinup;animation-name:slideinup;animation-duration:1s;animation-fill-mode:both;}
@keyframes slideinup{
  from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
  to{-webkit-transform:translateZ(0);transform:translateZ(0)}}
 