.bannerIntro{
    margin-top: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-direction: column;
    row-gap: .5rem;
    background: #f9f9f9;
}
.bannerIntro .bannerCont{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(0, #222, #333);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 30svh;
    padding: 1rem;
}

.bannerIntro .bannerCont img{
    position: absolute;
    right: -50%;
    top: -5rem;
    width:calc(100% - 5rem);
    z-index: 0;
}


.bannerIntro .bannerCont p,
.bannerIntro .bannerCont a{
    z-index: 5;
}

.bannerIntro .bannerCont .introText001{
    font-size: clamp(2.5rem, 4vw, 5rem);
    color: #fff;
    font-weight: bolder;
    text-shadow: 0 2px 3px #000;
}
.bannerIntro .bannerCont .introText002{
    color: #fff;
    margin-bottom: .5rem;
    font-size: clamp(1rem, 2vw, 1.7rem);
    text-shadow: 0 2px 3px #000;
}
.bannerIntro .bannerCont .glovoBtn{
    padding: .3rem;
    width: max-content;
    color: #fff;
    border-radius: .7rem;
    font-weight: 500;
    box-shadow: 0 2px 3px #000;
    border: 2px solid #ccc;
    position: relative;
    overflow: hidden;
    z-index: 3;
    margin-bottom: 3rem;
    
}
.bannerIntro .bannerCont .glovoBtn::before{
    background:linear-gradient(0, #b9003e, #ff0055);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
}


.bannerIntro .bannerCont .glovoBtn::after{
    z-index: -1;
    background: linear-gradient(0, #ff4500, #ff9900);
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    scale: 0;
    border-radius: .5rem;
    transition: .5s ease-in-out;
    opacity: 0;
}

.bannerIntro .bannerCont .glovoBtn:hover::after{
    top: 0;
    scale: 1;
    opacity: 1;
}






.bannerIntro .bannerCont .bannerCallBtn{
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.2rem);
    width: max-content;
}

.bannerIntro .bannerCont .bannerCallBtn:hover{
    color: #fff;
}


.bannerIntro .gridIntro{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: .4rem;
    width: 100%;
}

@media(max-width:1200px){
    .bannerIntro .gridIntro{
        grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    }
    
}
@media(max-width:720px){
    
    .bannerIntro .gridIntro{
        grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
    }
}

@media(max-width:500px){
    .bannerIntro .gridIntro{
        grid-template-columns: repeat(auto-fill, minmax(5.3rem, 1fr));
    }
    
}


.bannerIntro .gridIntro a{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    gap:.5rem;
    padding: .3rem;
    border-radius: .7rem;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0, .1);
    border: 1px solid #f0f0f0;
}
.bannerIntro .gridIntro a img{
    width: 100%;
    border-radius: .7rem;
}
.bannerIntro .gridIntro p{
    color: #666;
    font-size: clamp(.6rem, 2vw, 1rem);
    font-weight: 400;
}
.bannerIntro .gridIntro a:hover{
    box-shadow: 0 3px 8px rgba(0,0,0, .3);
}

.bannerIntro .gridIntro a:hover p{
    color: #000;
    font-weight: 600;
}


