.bannerWebsite
{
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.banner01 .innerBanner {
    position: relative;
    z-index: 1;
	min-height: 500px;
    display: flex;
    align-items: end;
}

.bannerWebsite .overlayImage 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* Adjust the opacity as needed */
    z-index: 2;
    transition: background-color 0.3s ease;
}
.bannerWebsite:hover .overlayImage 
{
    background-color: rgba(0, 0, 0, 0.15); /* Adjust the opacity as needed */
    transition: background-color 0.3s ease;
}

.bannerWebsite img.cropimage
{
    transition: transform 0.3s ease;
    transform: scale(1.0);
}
.bannerWebsite:hover img.cropimage
{
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.banner01 .innerBanner .contentBanner {
	position: relative;
	z-index: 3;
    padding: 20px 20px 40px 20px;
    text-align: left;
}

.banner01 .innerBanner .contentBanner .titolo,
.banner01 .innerBanner .contentBanner .testo
{
	color:#FFF;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.banner01 .innerBanner .contentBanner .testo p
{
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}
.bannerWebsite.banner01:hover .innerBanner .contentBanner .testo p
{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.banner01 .innerBanner .contentBanner .infoTag
{
	color:#FFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    line-height: 15px;
    padding: 3px 10px;
    /* box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15); */
}


.bannerWebsite.banner02
{
    width: 100%;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.banner02 .innerImage
{
    aspect-ratio: 16 / 9;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: end;
    overflow: hidden;
}

.banner02 .innerImage img
{
    top: 0;
    left: 0;
}

.banner02 .innerImage .titolo
{
    z-index: 3;
    color:#FFF;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.banner02 .innerImage .titolo p
{
   margin: 0;
}

.banner02.bannerWebsite .overlayImage
{
    background-color: rgba(0, 0, 0, 0.10); /* Adjust the opacity as needed */
}

.banner02.bannerWebsite .contentBanner
{
    padding: 15px;
}



.banner02.bannerWebsite .mainButtonWebsite.simple
{
    background-color:  transparent;
    border: 0;
    padding: 0;
    text-align: left;
    color: var(--primary-website-color);
}
.banner02.bannerWebsite .mainButtonWebsite.simple svg path
{
   fill: var(--primary-website-color);
}

.banner02.bannerWebsite .mainButtonWebsite.simple:hover
{
    color: var(--accent-website-color);
}
.banner02.bannerWebsite .mainButtonWebsite.simple:hover svg path
{
   fill: var(--accent-website-color);
}