/*CSS by */
:root{
    --blanco: #ffffff;
    --negro: #000000;
    --azul1: #162d3a;
    --azul2: #4791b1;
    --azul3: #68c3d9;
    --amarillo: #ffc621;
    --geometriaM: "Geometria-Medium";
    --geometriaL: "Geometria-Light";
    --geometria: "Geometria";
    --geometriaI: "Geometria-Italic";
    --geometriaB: "Geometria-Bold";
    --geometriaEB: "Geometria-ExtraBold";
}

/*Let's Start*/
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap'); */
@font-face{
  font-family: "Geometria-Medium";
  src: url('../fonts/Geometria-Medium.ttf');
}
@font-face{
  font-family: "Geometria-Light";
  src: url('../fonts/Geometria-Light.ttf');
}
@font-face{
  font-family: "Geometria";
  src: url('../fonts/Geometria.ttf');
}
@font-face{
  font-family: "Geometria-Italic";
  src: url('../fonts/Geometria-Italic.ttf');
}
@font-face{
  font-family: "Geometria-Bold";
  src: url('../fonts/Geometria-Bold.ttf');
}
@font-face{
  font-family: "Geometria-ExtraBold";
  src: url('../fonts/Geometria-ExtraBold.ttf');
}

/*** 

====================================================================
  Globals
====================================================================

***/
body{
  margin: 0;
  padding: 0;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}
body, h1, h2, h3, h4, h5, h6{
  font-family: 'Open Sans', sans-serif;
}
.relative{
  position: relative;
}
a:hover{
  text-decoration: none!important;
}
*:focus{
	outline: none;
}
.headerCont{
  padding: 15px 0;
  transform: translateY(28px);
  background: rgba(0,0,0,0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.navbar-nav{
  margin: 0 0 0 auto;
}
#navbarContent{
  justify-content: center;
}
.navbar-toggler{
  background: #fff;
}
.navbar-light .navbar-toggler{
  color: #fff;
}
.container-header{
  position: relative;
  z-index: 9999;
  width: 100%;
  padding: 0px 30px;
}
@media screen and (max-width: 1200px){
  .container-header {
    padding: 0 15px;
  }
}
#home .container-header{
  position: relative;
}
.navbar .nav-item:not(:last-child) {
  margin-right: 14px;
}
@media screen and (max-width: 1200px){
  .navbar .nav-item {
    border-top: 1px solid var(--gris1);
  }
}
.dropdown-toggle::after {
   transition: transform 0.15s linear; 
}
.show.dropdown .dropdown-toggle::after {
  transform: translateY(3px);
}
.navbar{
  padding: 0;
}
/* .navbar-nav{
  margin: 0 30px 0 auto;
} */
.navbar-light .navbar-nav .nav-link{
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: .5s ease-in-out;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  margin-left: 70px;
}
@media screen and (max-width: 764px) {
  .navbar-light .navbar-nav .nav-link{
    margin-left: 5px;
  }
}
.navbar-light .navbar-nav .nav-link:hover{
  color: var(--amarillo);
}
.navbar-light .navbar-nav .nav-link:focus{
  color: var(--amarillo);
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
  color: var(--amarillo);
}
.navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link{
  padding-right: 0;
}
.navbar-toggler:focus{
  box-shadow: none;
}
.box-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-header img{
  width: 250px;
}
@media screen and (max-width: 640px) {
  .logo-header img{
    width: 180px;
  }
}
.f-nav{
  background: rgba(0,0,0,1);
  position: fixed!important;
  transform: translateY(0);
  animation-name: scroll-down;
  animation-duration: 1.5s;
  max-width: 100%;
  width: 100%;
  top: 0;
  z-index: 9;
}
@keyframes scroll-down {
  from {transform: translate(0,-100%);}
  to {transfrom: translate(0,0);}
}
.f-nav .navbar-nav a{
  color: var(--azul3);
}

.spaceWhite{
  width: 100%;
  height: 50px;
  background: #fff;
  top: -20px;
  z-index: 9;
  position: absolute;
}
.mb-15{
  margin-bottom: 15px;
}
.mb-50{
  margin-bottom: 50px;
}

.languageSelection{
	/* position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 0px; */
  z-index: 99999;
  margin-left: 15px;
}
.languageSelection a{
	display: block;
	margin: 0;
}
.languageSelection a img{
	width: 30px;
	height: auto;
}
.pr-md-4{
  padding-right: 20px;
}
@media screen and (max-width: 720px) {
  .pr-sm-0{
    padding-right: 0px;
  }
}

/*** 
====================================================================
  Main
====================================================================
***/
.main{
  position: relative;
}
@media screen and (max-width: 640px){
  .main{
    overflow-x: hidden;
  }
}

/*** 
====================================================================
  Home
====================================================================
***/
#inicio{
  position: relative;
  background: url('../archivos/02-Seminario-IPA.jpg');
  min-height: calc(100vh);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#inicio .flexRowBanner{
  display: flex;
  align-items: center;
  height: calc(100vh);

}
#inicio .contentText{
  padding: 0 80px;
  text-align: left;
  max-width: 65%;
}
@media screen and (max-width: 764px) {
  #inicio .contentText{
    padding: 0 15px;
    max-width: 100%;
  }
}
#inicio .content{
  width: 100%;
  display: flex;
  margin-top: 70px;
}
@media screen and (max-width: 764px) {
  #inicio .content{
    flex-direction: column;
  }
}
#inicio .content p{
  margin-bottom: 0px;
  line-height: normal;
}
#inicio .contentText p:nth-child(1){
  color: var(--amarillo);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 764px) {
  #inicio .contentText p:nth-child(1){
    font-size: 35px;
  }
}
#inicio .contentText p:nth-child(2){
  color: var(--azul2);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 764px) {
  #inicio .contentText p:nth-child(2){
    font-size: 30px;
  }
}
#inicio .contentText p:nth-child(3){
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}
@media screen and (max-width: 764px) {
  #inicio .contentText p:nth-child(3){
    font-size: 30px;
  }
}
#inicio .content img{
  display: block;
  margin: 0 auto;
  max-width: 200px;
}
@media screen and (max-width: 764px) {
  #inicio .content img{
    max-width: 145px;
    margin-bottom: 35px;
  }
}
/*** 

====================================================================
  Call to action
====================================================================

***/
#callToAction{
  padding: 96px 0;
  background: url('../archivos/03-Seminario-IPA.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#callToAction p{
  font-weight: 800;
  font-size: 54px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
#callToAction p span{
  color: var(--amarillo);
}

/***
====================================================================
  Promotor
====================================================================

***/
#promotor{
  padding: 96px 0;
  background: #fff;
}
#promotor p{
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 72px;
  color: var(--azul1);
  text-align: center;
}
#promotor img{
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

/***
====================================================================
  Beneficios
====================================================================

***/
#beneficios{
  position: relative;
}
#beneficios .bandTitle{
  background: var(--azul1);
  padding: 10px;
}
#beneficios .bandTitle h2{
  color: #fff;
  font-weight: 800;
  line-height: normal;
  font-size: 42px;
}
#beneficios .content{
  padding: 72px 0;
  background: var(--azul2);
}
@media screen and (min-width: 1919px) {
  #beneficios .content .block{
    position: absolute;
    width: 15%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--amarillo);
  }
}
#beneficios ul{
  list-style: none;
}
#beneficios ul li{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#beneficios ul li p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
#beneficios img{
  max-width: 80px;
  margin-right: 30px;
  
}

/***
====================================================================
  Target
====================================================================

***/
#target{
  position: relative;
  padding: 96px 0;
}
#target h2{
  color: var(--azul1);
  font-weight: 800;
  line-height: normal;
  font-size: 42px;
  margin-bottom: 72px;
}
#target .iconBlock{
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
#target p{
  color: var(--azul2);
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
#target img{
  max-width: 80px;
  margin-right: 30px;
}

/***
====================================================================
  Temario
====================================================================

***/
#temario{
  position: relative;
}
#temario .content{
  background: linear-gradient(90deg, var(--amarillo) 35%, var(--azul2) 35%);
}
@media screen and (min-width: 1919px) {
  #temario .content{
    background: linear-gradient(90deg, var(--amarillo) 38%, var(--azul2) 38%);
  }
}
@media screen and (max-width: 764px) {
  #temario .content{
    background: var(--azul2);
  }
}
#temario .bandTitle{
  background: var(--azul1);
  padding: 10px;
}
#temario .bandTitle h2{
  color: #fff;
  font-weight: 800;
  line-height: normal;
  font-size: 42px;
}
#temario .content{
  padding: 72px 0;
}
#temario .content .color1{
  color: var(--azul1);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: normal;
  text-align: justify;
}
@media screen and (max-width: 764px) {
  #temario .content .color1{
    margin-bottom: 35px;
    color: #fff;
  }
}
#temario ul{
  list-style: disc;
}
#temario ul li{
  margin-bottom: 30px;
}
#temario ul li:last-child{
  margin-bottom: 0px;
}
#temario ul li::marker {
  color: var(--amarillo);
  font-size: 1.2em;
}
#temario ul li p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 500;
}

/***
====================================================================
  Conferencistas
====================================================================

***/
#conferencistas{
  position: relative;
  padding: 96px 0;
}
#conferencistas h2{
  color: var(--azul1);
  font-weight: 800;
  line-height: normal;
  font-size: 42px;
  margin-bottom: 72px;
}
#conferencistas h3{
  color: var(--azul1);
  font-weight: 700;
  line-height: normal;
  font-size: 24px;
  margin-bottom: 25px;
}
#conferencistas p{
  color: var(--azul2);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: justify;
}
#conferencistas .imgRounded{
  max-width: 350px;
  padding-right: 30px;
}
#conferencistas .order-2 .imgRounded{
  padding-left: 30px;
}

/*** 
====================================================================
  Location
====================================================================
***/
#location{
  /* padding: 96px 0; */
  position: relative;
  background: linear-gradient(180deg, var(--amarillo) 130px, var(--azul2) 130px);
}
#location .contentTitle h2{
  font-size: 42px;
  color: var(--azul1);
  font-weight: 800;
  padding: 40px 0;
}
#location .contentTitle.left{
  text-align: right;
  padding-right: 35px;
}
#location .contentTitle.right{
  padding-left: 35px;
}
#location .contentText{
  padding: 35px;
}
#location .contentText.left{
  text-align: right;
}
#location .contentText .date{
  font-weight: 500;
  font-size: 34px;
  color: #fff;
}
#location .contentText .sede{
  font-size: 26px;
  color: #fff;
}
#location .contentText .sede span{
  font-weight: 700;
  color: var(--azul1);
}
#location .contentText .address{
  font-size: 26px;
  color: #fff;
  white-space: pre-line;
}
#location .contentText .address span{
  font-weight: 700;
  color: var(--azul1);
}
#location .contentText .time{
  font-size: 26px;
  white-space: pre-line;
  color: #fff;
}
#location .contentText .time span{
  font-weight: 700;
  color: var(--azul1);
}


/*** 
====================================================================
  Call to Action 2
====================================================================
***/
#callToAction2{
  padding: 50px 0;
}
#callToAction2 .title{
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--azul2);
  text-align: center;
  white-space: pre-line;
  line-height: normal
}
@media screen and (max-width: 764px) {
  #callToAction2 .title{
    font-size: 25px;
    white-space: normal;
  }
}
#callToAction2 a{
  color: var(--azul1);
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin: 0 auto;
  display: table;
  text-decoration: none;
}
@media screen and (max-width: 764px) {
  #callToAction2 a{
    font-size: 20px;
  }
}
#callToAction2 a:hover{
  text-decoration: none;
  transition: .5s ease-in-out;
  color: var(--azul2);
}
/*** 
====================================================================
  Footer
====================================================================
***/
footer{
  background: var(--azul3);
  padding: 20px 0;
}
footer p{
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

/*** 
====================================================================
  Contacto
====================================================================
***/
#contacto{
  padding: 96px 0;
  background: url('../archivos/22-Seminario-IPA.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#contacto .headBox h2{
  color: #fff;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: normal;
  white-space: pre-line;
}
#contacto .headBox .subtitle{
  color: var(--amarillo);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 50px;
  line-height: normal;
}

#contacto .formFooter .align-end{
  align-items: flex-end;
}
#contacto .formFooter label{
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
#contacto .formFooter label.color4{
  color: var(--amarillo);
}
#contacto .formFooter input,
#contacto .formFooter select{
  border-radius: 25px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  color: var(--azul1);
  appearance: auto;
}
@media screen and (max-width: 764px) {
  #contacto .formFooter input,
  #contacto .formFooter select{
    margin-bottom: 35px;
  }
}
#contacto .formFooter .row .col{
  margin-bottom: 30px;
}
#contacto .formFooter .form-control::placeholder{
  color: var(--azul1);
}
#contacto .formFooter .form-control:focus{
  outline: none;
  box-shadow: none;
}
#contacto .formFooter .btn-form{
  display: block;
  width: 100%;
  background-color: var(--amarillo);
  color: var(--azul1);
  border: 1px solid var(--amarillo);
  transition: .5s ease-in-out;
  border-radius: 25px;
  font-weight: 700;
  font-size: 17px;
  max-width: 70%;
  margin: 0 0 0 auto;
}
#contacto .formFooter .btn-form:hover{
  background: transparent;
  color: #fff;
}
.form-control.error {
	border-color: #a94442;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-control.error:focus {
	border-color: #843534;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
label.error {
	color: #c10000;
	font-size: 0.9em;
	line-height: 18px;
	padding: 5px 0 0;
}

label.error#captcha-error {
	margin-top: 15px;
}

.form-errors-light .form-control.error {
	border-color: #FFF;
}

.form-errors-light label.error {
	color: #FFF;
}





/*Redes Desktop*/

/*Animation*/
.wow{visibility: hidden;}

@keyframes move{
  0%{transform: translateX(-10px);}
  50%{transform: translateX(10px);}
  100%{transform: translateX(-10px);}
}
