.bannerHeader{
    margin-top: 3rem;
    width: 100%;
    min-height: 40vh;
    background: #f0ffff;
    padding: 2rem 3%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.bannerHeader .container{
    background:linear-gradient(0, #000, #272b41);
    height: 100%;
    min-height: 40vh;
    padding: .5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.bannerHeader .container img{
    position: absolute;
    top: 0;
    right:0;
    height: 25rem;
    width: 25rem;
    transform: translateX(10.5rem) translateY(-4rem) ;
    object-fit:cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px #000);
    border: 2px solid #555;
}



.bannerHeader .container h1{
    color: #fff;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 200;
    z-index: 3;
}

.bannerHeader .container h2{
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 3rem);
    z-index: 3;
    text-shadow: 1px 2px 2px #000;
    padding: .2rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 102, 102, 0.521);
    width: max-content;
    background: rgba(255, 255, 255, 0.1);
    margin-block: 1rem;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.521);
}
.bannerHeader .container .rrssCont{
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    background: #333;
    padding: .3rem;
    border-radius: 50px;
    z-index: 3;
    gap: 3px;
    margin-block: .5rem;
    border: 2px solid #777;
}
.bannerHeader .container .rrssCont a{
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2rem;
    color: #999;
    border: 2px solid #555;
    box-shadow: 0 3px 5px #000;
}
.bannerHeader .container .rrssCont a:hover{
    background: #cffdfd;
    box-shadow: 0 0 8px #cffdfd;
    color: #000;
    border: 2px solid #000;
}
.bannerHeader .container .call{
    z-index: 3;
    width: max-content;
    padding: .5rem 1.5rem;
    border-radius: 50px;
    color: #000;
    background: #afeb23;
    font-weight: 700;
    margin-top: auto;
    box-shadow: 0 0 8px #afeb23;
}
.bannerHeader .container .call:hover{
    background: #88ff00;
}

.bannerHeader p{
    z-index: 3;
    color: #616161;
    font-size: clamp(.7rem, 2vw, 1rem);
    font-weight: 500;
    border-radius: 1rem;
    font-style: initial;
    padding: .5rem;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0, .180);
    border: 1px solid #eee;
}