.cbf-siteintro{
    min-height: 72vh;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cbf-siteintro .cbf-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
}
.cbf-siteintro img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    top:0;
    transition: transform 4s;
}
.cbf-siteintro:hover img{
    transform: scale(1.1);
    transition: 8s;
}
.cbf-siteintro:before{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    content:"";
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #000000 60%);
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}
.cbf-siteintro .cbf-content{
    position: relative;
    z-index: 1;
    padding-bottom: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cbf-siteintro .cbf-row1{
    text-align: center;
}
.cbf-siteintro .cbf-svg{
    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: 3;
    width: 100%;
    background: none;
}