
@font-face {
  font-family: 'Barlow';
  src: url('./Fonts/Barlow/Barlow-Regular.ttf')  format('truetype')
}
@font-face {
  font-family: 'Barlow_Condensed';
  src: url('./Fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf')  format('truetype')
}
.Titulo{
  width: auto;
  margin: 0 auto auto 0;
  font-family: Barlow_Condensed;
  font-weight: bold;
  font-size: 52px;
  padding-right: 50px;
}
.Subitulo{
  font-family: Barlow_Condensed;
  font-weight: lighter;
  font-size: 30px;
  padding-right: 50px;
}
.InfoExtra{
  font-family: Barlow_Condensed;
  font-weight: lighter;
  font-size: 30px;
  text-align: right;
  padding-right: 50px;
}
.CuerpoTexto{
  color:white;
  font-family: Barlow_Condensed;
  font-size: 20px;
}
.HeaderCustom{
  z-index: 2;
  position: relative;
  top: 0;
  width: 100%;
}
.FondoHeader{
  position: absolute;
  width: calc(100%);
  min-height: 150px;
  top:0;
  left: 0;
  z-index: 2;
  background-size: cover;
  overflow-y: visible;
}
.HeaderCustom .ContainerCustom {
  display: flex;
  flex-direction: row;
  height: 100px;
  width: 100%;
  align-items: center;
  position: relative;
}
body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 25px);
  padding-bottom: 15px;
  background: rgb(0,149,235);
  background: linear-gradient(90deg, rgba(0,149,235,1) 0%, rgba(61,184,255,1) 15%, rgba(61,184,255,1) 85%, rgba(0,149,235,1) 100%);
}
html {
  position: relative;
}
#carouserPrincipal {
  position: absolute;
  top: 0;
  left: 0;
  max-height: calc(100% - 100px);
  width: 100%;
  z-index: -2;
}
#sobreCarourel {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  z-index:-1;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 13%, rgba(0,165,229,0.2) 100%);
}
.ImagenCarousel{
  height:100%;
  object-fit: cover;
  width:100vw;
}
a:hover {
  text-decoration: none;
  color:lightgrey;
}

@media only screen and (min-width: 700px) {
  .BotonIr{
    color: white;
    font-size: 22px;
    padding:5px 10px;
    border-radius: 3px;
    background-color: rgba(255,102,0,1);
    text-decoration: none;
    margin: 20px 20px 0px 20px;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently */
  }
  .HeaderTitulos{
    position: relative;
    z-index: 1;
    color:white;
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
  }
  .FondoRayas{
    position:absolute;
    min-height: 100px;
    height: 170px;
    width:100%;
    z-index:0;
  }
  .Todo{
    flex:1;
    z-index: 2;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    color:#5F5E63;
    font-family: "Roboto Condensed", Arial, Tahoma, sans-serif;
  }
  .Botones{
    text-align: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(auto, auto);
  }
  .logoTDF{
    flex:3;
    display:flex;
    flex-direction:row;
    justify-Content:center;
    padding:auto;
  }
}
@media only screen and (max-width: 700px) {
  .BotonIr{
    color: white;
    font-size: 28px;
    padding:5px 10px;
    border-radius: 3px;
    background-color: rgba(255,102,0,1);
    text-decoration: none;
    margin: 20px;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently */
  }
  .HeaderTitulos{
    position: relative;
    z-index: 1;
    color:white;
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    width: 100%;
  }
  .FondoRayas{
    position:absolute;
    height: 300px;
    width: 100vw;
    z-index:0;
  }
  .Todo{
    flex:1;
    z-index: 2;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: flex-start;
    color:#5F5E63;
    font-family: "Roboto Condensed", Arial, Tahoma, sans-serif;
  }
  .Botones{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .logoTDF{
    display: none;
    flex:3;
    flex-direction:row;
    justify-Content:center;
    padding:auto;
  }
}

.BotonIr[disabled="true"]{
  color: grey;
  background-color: rgba(255,102,0,1);
  cursor: not-allowed;
}
.HeaderCustom .Logo{
  margin: 20px 0 0 10px;
}
.HeaderCustom .Main{
  display: flex;
  flex-direction: row;
  margin: 10px;
  align-items: center;
}
.HeaderCustom .Opcion{
  font-size: 16px;
  color:white;
  text-decoration: none;
  margin: 0 10px;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently */
}
.HeaderCustom .Derecha{
  position: absolute;
  right: 5px;
}

.FooterContainer{
  z-index: 10;
  width: calc(100%);
  display: block;
  flex-direction: column;
  position:static;
  bottom:0;
  padding: auto;
  font-weight: bold;
  font-size: 14px;
  color:white;
  justify-content: center;
  height: 100px;
}

.FooterInfo{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: auto;
  background: rgba(247,120,56,1);
  background: -moz-linear-gradient(left, rgba(247,120,56,1) 0%, rgba(255,90,87,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(247,120,56,1)), color-stop(100%, rgba(255,90,87,1)));
  background: -webkit-linear-gradient(left, rgba(247,120,56,1) 0%, rgba(255,90,87,1) 100%);
  background: -o-linear-gradient(left, rgba(247,120,56,1) 0%, rgba(255,90,87,1) 100%);
  background: -ms-linear-gradient(left, rgba(247,120,56,1) 0%, rgba(255,90,87,1) 100%);
  background: linear-gradient(to right, rgba(247,120,56,1) 0%, rgba(255,90,87,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f77838', endColorstr='#ff5a57', GradientType=1 );
  min-height: 100px;
  max-height: 100px;
}

.FooterLeyenda{
  background-color: #00a5e5;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding:10px;
}
