
:root{
    --color-background : #0e1016;
    --color-h1:#fff2b9;
    --principal-blue-2-color: #1F3C8A;
    --principal-button: #C89A36;
}


.banner-container{
    /* background-image: linear-gradient(120deg, var(--principal-blue-2-color) 0%, var(--principal-green-color) 100%); */
    background-color: #0e1016;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    border-left: #383838 0.5px solid;
    border-right: #383838 0.5px solid;
    border-bottom: #383838 0.5px solid;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-top: #383838 0.5px solid;
    overflow: hidden;
    position: relative;
   

}


.banner-info{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 90%;
    transform: translateY(40px);
    
    
}

.banner-info h2{
    margin: 0;
    /* text-shadow: -1px 2px 4px rgba(0,0,0,0.6); */
}

.banner-info span{
    color: var(--principal-blue-color);
    /* text-shadow: -1px 2px 4px rgba(0,0,0,0.6); */
    margin-top: 0;
    margin-bottom: 0;
}

.banner-info .first-text{
    
   

}

.banner-info a{
    background-color: var(--principal-button);
    padding: 1rem;
    border-radius: 10px;
    color: aliceblue;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: 50%;
    margin-top: 1rem;
}

.banner-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
    transform: translateY(3rem);
    position: relative;
    
}

.banner-blob{
    width: 200%;
    position: absolute;
    animation: rotate 10s linear infinite alternate;
    
}

.banner-image{
    width: 100%;
    max-width: 800px;
    position: absolute;
    transform: translateY(50px);
    /* -webkit-filter: drop-shadow(2px 2px 2px rgb(59, 59, 59));
    filter: drop-shadow(2px 2px 2px rgb(45, 45, 45)); */
}

.logo-fondo{
    width: 100%;
    max-width: 600px;
}

.banner-svg-blob{
    position: absolute;
    z-index: 0;
    top: -50%;
}

@keyframes rotate {
    0%{
        transform: rotate(360deg);
        transform: rotate3d(1, 1, 1, 45deg);
       
    }
    100%{
        transform: rotate(0deg);
        transform: rotate3d(1, 0, 1,90deg);
    }
    
  }


@media (max-width:992px) {

    .banner-container{
        grid-template-columns: 100%;
        /* grid-template-rows: 40% 60%; */
        margin-top: 4rem;
    }

   
    .banner-info .first-text{
        font-size:34px;
        text-align: center;
    }
    .banner-info h2{
        font-size: 20px !important;
    }
    .banner-info a{
        width: 90%;
    }

    .banner-blob{
        display: none;
    }

    .banner-image{
        width: 100%;
        max-width: 500px;
        min-width: 380px;
       
    }
    
    
}

@media (max-width:992px) and (max-height: 1180px) {
    
    .banner-image{
        width: 100%;
        max-width: 200px;
        transform: translateY(-50px);
       
    }
}

@media (max-height: 741px) and (max-width: 992px) {
    
    .banner-image{
        width: 100%;
        max-width: 200px;
        transform: translateY(-50px);
       
    }
}

@media (max-height: 680px) and (max-width:992px ) {
    
    .banner-image{
        width: 100%;
        max-width: 200px;
        transform: translateY(-50px);
       
    }

    
}