/*Quitar barra horizontal*/
::-webkit-scrollbar {
    display: none;
}

/*La grilla de proyectos rally*/
.grid-rally{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    text-align: justify;
}

/*Menu fijo y transparente*/
header {
    width: 100%;
    position: fixed;
    z-index: 100;
    box-shadow: 0px 5px 100px rgba(0, 0, 0, 10) !important;
  }

/*jumbotron transparente*/
.jumbotron{
    padding-top: 15%;
    background:transparent !important;
    height: 45em;
}

/*Texto del jumbotron*/
.banner-text{
    padding-top: 45px;
    animation-name: rotate360;
    animation-duration: 3s;
}

/*banner pequeño*/
.banner-small{
    text-align: center;
    padding: 100px;
}

/*Imagenes*/
img.small-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    border-radius: 60%;
    animation-name: rotate360;
    animation-duration: 4s;
}

img.medium-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 10px;
    width: 100%;
    height: auto;
    border-radius: 10%;
    animation-name: rotate360;
    animation-duration: 3s;
}

img.square{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/*ESTILO PRINCIPAL*/
.primary-color{
    color: #ffffff;
    background-color: #14213D;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 10) !important;
}

/*ESTILO PARA TEXTO LARGO*/
.complementary-color{
    color:#14213D !important;
    background-color: #E5E5E5;
    margin-top: -35px;
    margin-bottom: -40px;
    padding: 60px 20px 100px 20px;
    font-size: 1.1rem;
    text-align: justify;
}

h3, h6{
    text-align: center;
}

/*Litas alineadas con el texto*/
.nobullets, .nobullets-nohover{
    list-style-type: none;
    font-size: 1.2rem;
    padding-left: 0px;
}

.nobullets{
    transition: 0.4s;
}

/*ESTILO DEL FOOTER*/
.footer{
    text-align: center;
    font-size: 2rem;
    background-color: #14213D;
}

/*Controles del carrusel*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 50px;
  width: 50px;
  border-radius: 70%;
}

/*Tamaños de carrusel*/
.container-fluid {
    height: 90%;
    width: 100%;
  }
  
  .carousel-inner img {
    height: 500px;
  }


/*Estilo de la CARD de contacto*/
.contact-info{
    height: 15rem !important;
    width: 25rem !important;
    padding: 0 !important;
    color: #ffffff;
    background-color: #14213D;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 1) !important;
}

.panel-body{
    background-color: #ffffff;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
    padding: 15px 15px 15px 15px;
}

.panel-body div{
    border-top: groove;
    border-bottom: groove;
    padding: 15px 0px 15px 0px;
}

/*Enlaces*/
.link{
    padding-left: 1em;
    padding-right: 1em;
}

a:link, a:visited{
    color: #ffffff !important;
    text-decoration: none;
}

a:hover{
    color: rgba(0, 0, 0, 1) !important;
    background-color: rgba(252, 163, 17, 1);
}

a:link:active, a:visited:active {
    color: auto;
}

/*Botones*/
.button{
    color: #ffffff;
    background-color: #14213D;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 10) !important;
}

.button:hover{
    color: rgba(0, 0, 0, 1);
    background-color: rgba(252, 163, 17, 1);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 10) !important;
}

/*Submenu*/
.submenu-content{
    display: none;
    list-style-type: none;
    padding: 0;
}

.submenu:hover .submenu-content{
    display: block;
}

/*Animaciones*/
@keyframes rotate360 {
    from {transform: rotateZ(360deg);}
    to {transform: rotateZ(0deg);}
}

/*Transiciones*/
.div-emphasis{
    transition: 0.2s;
}

.div-emphasis:hover{
    transform: scale(1.04, 1.04);
    background-color: rgba(255, 255, 255, .4);
}

.nobullets:hover{
    list-style-type: square;
    background-color: rgba(252, 163, 17, 1);
    color: rgba(0, 0, 0, 1);
    font-size: 1.2em;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
    
}

/*TEXTO QUE CAMBIA*/
.box{
    opacity: 0;
    position: absolute;
}

.text1{
    animation: next1 15s infinite;
}

.text2{
    animation: next2 15s infinite;
}

.text3{
    animation: next3 15s infinite;
}

.text4{
    animation: next4 15s infinite;
}

.text5{
    animation: next5 15s infinite;
}

@keyframes next1{
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    20%{
        opacity: 0;
    }
}

@keyframes next2{
    20%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
}

@keyframes next3{
    40%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    60%{
        opacity: 0;
    }
}

@keyframes next4{
    60%{
        opacity: 0;
    }
    70%{
        opacity: 1;
    }
    80%{
        opacity: 0;
    }
}

@keyframes next5{
    80%{
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}