/* ******************************* */
/* *                             * */
/* *       ESTILOS GENERALES     * */
/* *                             * */
/* ******************************* */

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 40px; /* Margin bottom by footer height */
  background: #1e4a02;
}

.cont-logo {
  margin-top: 40px;
}

.brand_logo_container {
      /*position: absolute;*/
      height: 160px;
      width: 160px;
      border-radius: 50%;
      /*background: #590202;*/
      padding: 10px;
      text-align: center;

      animation-name: spinning-circle;
      animation-duration: 10s;
      animation-iteration-count: infinite;
}

@-webkit-keyframes spinning-circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.brand_logo {
      height: 150px;
      width: 150px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid white;
}

#bottomline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    height: 40px;
    visibility: visible;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    color: #fff;
}



.bg-page {
  background: #0075c8;
}

.footer {
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.contenedor-botones-insc {
  padding-bottom: 5px;
  
}

.separator-bar {
   height: 80px;
   padding: 15px; 
}

.banner-top {
   height: 120px;
}

/* ******************************* */
/* *                             * */
/* *    ESTILOS PARA IMAGENES    * */
/* *                             * */
/* ******************************* */


.p5 {
  padding: 5px;
}

.p25 {
  padding: 25px;
}

/* ******************************* */
/* *                             * */
/* *    ESTILOS PARA LOGIN      * */
/* *                             * */
/* ******************************* */

.logo-izq {
   float:left;
   width: 50px;
   height: 50px;
   vertical-align:middle;
}

.logo-medio {
  width: 50px;
  height: 50px;
  margin:0 auto;
}

.logo-der {
   width: 50px;
   height: 50px;
   float: right;
}

.logo-login-img {
  width: 50px;
  height: 50px;
}


.fa-beat {
  -webkit-animation: fa-beat 4s infinite linear;
  animation: fa-beat 4s infinite linear;
}
@-webkit-keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fa-beat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}








.social ul {
  display: flex;
  bottom: 0;
  padding-inline-start: 0;
}

.social ul li {
  list-style: none;
  
}

.social ul li a {
  width: 50px;
  height: 50px;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

.social ul li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

.social ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

.social ul li a:hover:before {
  top: 0;
}

.social ul li:nth-child(1) a:before{
  background: #E00000;
}

.social ul li:nth-child(2) a:before{
  background: #00A404;
}

.social ul li:nth-child(3) a:before {
  background: #E4599E;
}


.bg-arg {
    color: #fff;
    background: -webkit-linear-gradient(180deg, #0099ff 33%, rgba(0, 0, 0, 0) 33%), -webkit-linear-gradient(180deg, #fff 66%, #0099ff 66%);
    background: -o-linear-gradient(180deg, #0099ff 33%, rgba(0, 0, 0, 0) 33%), -o-linear-gradient(180deg, #fff 66%, #0099ff 66%);
    background: -moz-linear-gradient(180deg, #0099ff 33%, rgba(0, 0, 0, 0) 33%), -moz-linear-gradient(180deg, #fff 66%, #0099ff 66%);
    background: linear-gradient(180deg, #0099ff 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(180deg, #fff 66%, #0099ff 66%);
}
