body {
    margin: 0px;
    padding: 0px;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header {
    height: 480px;
}

header nav {
    height: 82px;
    background: #459BF5;
}

.header-main-pic {
    width: 70%;
    height: 350px;
    background-image: url('../assets/img/Banne.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 2px;
}

.main-pic {
    width: 70%;
    height: 350px;
    background-image: url('../assets/img/dona.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 2px;
}

.main-pict {
    width: 70%;
    height: 350px;
    background-image: url('../assets/img/thanks.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 2px;
}

nav .brand-logo {
    height: 100px;
    left: 15%;
}

nav .brand-logo img {
    padding-top: 5px;
    width: 85px;
}

head nav ul {
    height: 100px;
}

header ul a {
    color: white;
}

header .mid-logo img {
    width: 120px;
}

footer.page-footer {
    height: 290px;
    background: #459BF5;
    bottom: 0;
    justify-content: last baseline;
}

#mapid { height: 500px; width: 900px; }

#container_load {
    background-color: rgba(25, 128, 212, 0.9);
    height: 100%;
    width: 100%;
    position: fixed;
    transition: all 1s ease;
    z-index: 10000;
    display: flex;
    /* align-items por defecto tiene el valor `stretch` */
    align-items: start;
    justify-content: center;
    align-items: center;
  }

  .tecnor {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 40px auto;
    /* transform: rotate(45deg); */

    animation-name: tecnor-base;
    animation-duration: 3.5s;
    animation-iteration-count: infinite; 
  }

  .tecnor-left {
    /*width: 100%;*/
    width: 55%;
    height: 40%;
    background: linear-gradient(to bottom right, #038510, #049313);
    border-radius: 20px 0 20px 0;
    box-sizing: border-box;
    position: absolute;
    margin-top: 15%;
    z-index:0;
  }

  .tecnor-right {
    width: 55%;
    height: 40%;
    background: linear-gradient(to bottom right, #038510, #049313);
    box-sizing: border-box;
    border-radius: 20px 0 20px 0;
    margin-left: 40%;
    position: absolute;
    z-index:0;
  }

  .tecnor-left2 {
    width: 40%;
    height: 55%;
    background: linear-gradient(to bottom right, #FFF516, #FFF400);
    border-radius: 20px 0 20px 0;
    box-sizing: border-box;
    position: relative;
    z-index:100;
  }

  .tecnor-right2 {
    width: 40%;
    height: 55%;
    background: linear-gradient(to bottom right, #FFF516, #FFF400);
    box-sizing: border-box;
    border-radius: 20px 0 20px 0;
    margin-left: 60%;
    z-index:100;
    position: relative;
    
  }
  @keyframes tecnor-base {
    0% {
      opacity: 0;
      transform: scale(.3) rotate(0deg) skew(10deg, 10deg);;
    }
    30% {
      opacity: 1;
      transform: scale(1) rotate(360deg);
    }
    80% {
      opacity: 1;
      transform: scale(1) rotate(360deg);
    }
    100% {
      opacity: 0;
      transform: scale(.3) rotate(0deg skew(10deg, 10deg));
    }
  }

  .project {
    border: 1px solid #b4ccfc;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    background: #fcfcfc;
     align-items: center;
  
  }

  .projectSub {
    border: 1px dotted #ecf9ff;
    border-radius: 10px;
    margin: 15px;
    padding: 20px;
    background: #f9fafc;
     align-items: center;
  
  }

  .imgset {
    padding-top: 5px;
    width: 85px;
  
  }

  .parpadea {
  
    animation-name: parpadeo;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  
    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
  }

  .opacity {
    background: #4ECCFF;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    opacity: .9;
    z-index: -10;
    font-size: 18px;
  }
  
  @-moz-keyframes parpadeo{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
  
  @-webkit-keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
     100% { opacity: 1.0; }
  }
  
  @keyframes parpadeo {  
    0% { opacity: 1.0; }
     50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }