.bannerImg {
	width:100%;
}


.slideshowCont {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slideshowCont picture {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bannerImg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bannerImg.active {
    opacity: 1;
}

.ctaCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50vw;
    gap: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom:-41px;
    background-color: #f7f7f7;
    padding: 1.25rem;
    border: 3px solid black;
}

.ctaPDesk{
    font-size: 2.2rem;
    /*color:#d3140a;*/
    font-weight: 100;
    text-align: center;
    display: block;
}

.ctaPMob {
    display: none;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 100;
}

.ctaImg{
    width: 50px;
}



@media (max-width: 1200px) {
    .ctaP{
        font-size:1.25rem;
    }
}

@media (max-width: 768px) {
    .ctaP{
        font-size:1.5rem;
    }
}


@media (max-width: 500px) {
    .ctaPDesk{
        display: none;
    }
    .ctaPMob {
        display: block;
        font
    }
}