/*IGREJAS*/

.contentTurismo {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.contentTurismo .cardTurismo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px -14px rgba(0,0,0,.25);
    border-radius: 2px;
    padding: 20px 20px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    border: solid 1px #ddd;
}

.contentTurismo .cardTurismo .left,
.contentTurismo .cardTurismo .right {
    width: 100%;
    max-width: 500px;
    max-height: 375px;
}

.contentTurismo .cardTurismo .left {
    overflow: auto;
    padding: 10px;
}

.contentTurismo .cardTurismo .left p {
    font-size: 15px;
    line-height: 26px;
    font-family: 'Open Sans';
    margin-bottom: 26px;
}

.contentTurismo .cardTurismo .left hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

.contentTurismo .cardTurismo .left span {
    font-weight: 600;
    font-size: 20px;
}

.contentTurismo .cardTurismo .right img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* width */
.contentTurismo .cardTurismo .left::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.contentTurismo .cardTurismo .left::-webkit-scrollbar-track {
    background: #eee;
}

/* Handle */
.contentTurismo .cardTurismo .left::-webkit-scrollbar-thumb {
    background: var(--color_primary);
}

/* Handle on hover */
.contentTurismo .cardTurismo .left::-webkit-scrollbar-thumb:hover {
    background: var(--color_secondary);
}