
/* ---------------------------------------- */
/*               BANNER   AREA              */
/* ---------------------------------------- */

.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: auto;
    color: var(--title-color);
    border: solid 1px black;
    background-color: #BFFFFF;
    border-radius: 5px;
    padding: 20px;
    margin-top: 0.3rem;
}

.banner__content {
    display:inline-block;
    flex-direction: column ;
    justify-content: space-around;
    align-content: space-around;
    justify-items: center;
    align-items: center;
    flex-wrap: nowrap;
    /* width: 70%; */
    
}

.banner__title {

    /* border: #4CAF50 solid; */
    text-shadow: 1px 1px 2px white, 0 0 25px #4CAF50, 0 0 5px #4CAF50;
    
    
}



.banner__title-h3{
    text-align: justify;
    color: green;
    
}

.banner__title-h3::after{
    background: black;
    display: inline-block;
    transform: translateY(-10px);
    font-weight: 500;
    
}

.banner__title-h1 {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    /* font-size: 5rem; */
    font-size: clamp(1rem, 5rem, 7rem);
    font-weight: 700;
    /* height: 120px; */
    text-align: justify;
    height: auto;
    
}


.banner__title-h1 {

    position: relative;
    animation: myfirst 5s linear 2s noinfinite alternate;
}

@keyframes myfirst {
    10% {text-shadow: 1px 1px 2px white, 0 0 25px red, 0 0 5px #8c96a0;}
    10%   {text-shadow: 1px 1px 2px yellow, 0 0 25px #a5d0d9, 0 0 5px #8c96a0;}
    50%  {text-shadow: 1px 1px 2px green, 0 0 25px blue, 0 0 5px #4CAF50;}
    100%  {text-shadow: 1px 1px 2px blue, 0 0 25px #dfe6ee, 0 0 5px yellow;}
    
}
/* #a5d0d9
#8c96a0
#dfe6ee */

.banner__title-h4{
    color: green;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: .9rem;
    /* font-size: 1.1rem; */
    
}

.banner__image{
    display: flex;
    justify-content: center;
    margin-left: 10%;
    padding: 2rem 0;
    width: 40%;
    height: 40%;
    
}

.banner__image .banner__image-img  {
 
    display: flex;
    border: solid 1px black;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 3px 3px black;
    margin: 0;
    padding: 0;
    width: 50%;
    height: 50%;
    
}

.banner__btn {
    display: inline-flex;
    flex-direction: row;
    
    padding: 1.2rem;
    /* width: 25rem; */
    height: 7rem;
    
    
}

/*--------------------------------------------*/

.animen {
    animation-duration: 5s;
    animation-name: slidein;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    75% {
      font-size: 300%;
      margin-left: 25%;
      width: 150%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }

/* ------------ End Banner Area ---------- */


/* ----------------------------------------- */
/* -----        Meia Queroes           ----- */
/* ----------------------------------------- */

@media (max-width:800px){

    /* .animen {
        animation-duration: 5s;
        animation-name: slidein;
      }
      
      @keyframes slidein {
        from {
          margin-left: 100%;
          width: 300%;
        }
      
        35% {
          font-size: 300%;
          margin-left: 25%;
          width: 150%;
        }
      
        to {
          margin-left: 0%;
          width: 100%;
        }
      } */
    
 
}
  
  