
#hero{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* background: linear-gradient(180deg, #f9f9f9 0%, #f9f9f9 50%, #ffffff 100%); */
}

#hero::after{
    content: url(../resources/images/homepage/top-hero.png);
    position: absolute;
    top: 0;
    right: 0;
    max-width: 30%;
    overflow-x: hidden;
    }
#hero span img{
    width: clamp(4rem, 2.96vw, 2.96vw );
}


.button-primary{
    padding: 2rem 4rem;
    border: .2rem solid var(--grey);
    border-radius: 2rem;
    transition: .3s all;
}
.button-red:hover{
    background: var(--red);
    border-color: var(--red);
}
.button-green:hover{
    background: var(--green);
    border-color: var(--green);

}
.button-primary:hover h5{
    color: white;
}
.button-red:hover svg, .button-green:hover svg{
    fill: white;
}
#benefits{
    position: relative;
}
.benefits{
    border: .1rem solid var(--grey);
    background:white;
    z-index: 4;
    position: relative;
}
.benefit-group{
    background: white;
}
.benefit-group .tag{
    background: var(--lightgrey);
}
.single-benefit{
 display: flex;
 gap: 1rem;
 align-items: center;   
}
#benefits::after{
    content: url(../resources/images/homepage/benefit-bottom-right.png);
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 30%;
    overflow-x: hidden;
}
.wrapper{
    position: relative;
    background: linear-gradient(to bottom,#ffffff00 0%, #ffffff00 40%,  #ffffff 50%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 0.8) 100%), url(../resources/images/homepage/body-center.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: 0 50%;
}
#offers{
    text-align: center;
}
#vertical,#offers{
    background: #F9F9F9;
}

#vertical .tag{
    background: var(--yellow);
    color: white;
}
#vertical .grid-two{
    border: .1rem solid var(--grey);
    background: white;
    align-items: center;
}
#vertical .grid-two img{
    width: 100%;
    max-width: 58.9rem;
    height: unset;
}
#why{
    background: linear-gradient(180deg, #f9f9f9 30%, white 100%);
    text-align: center;
}

#why .card{
    background: transparent;
}
#who{
    text-align: center;
    background: #f9f9f9;
    position: relative;
}
#who::before{
    content: '';
    top: 40%;
    left: 0;
    position: absolute;
    max-width: 15rem;
    background: url(../resources/images/homepage/who-red.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;

}
#who::after{
    content: '';
    top: 40%;
    right: 0;
    position: absolute;
    max-width: 15rem;
    background: url(../resources/images/homepage/who-yellow.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;

}
@media screen and (max-width:1200px) {

    #who::after, #who::before{
       
        display: none;
    }
    
}