.callout {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 230px;
    height: 230px;

    border-radius: 3px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: -2px 2px 10px -3px #333;
    text-decoration: none;
}

.callout:hover {
    text-decoration: none;
}

.callout {
    margin: 8px;
}

.callout > .overlay {
    position: relative;
    padding: 15px;
    border-radius: 3px;
    transition: 300ms all linear;
}

.callout > .overlay > .background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    opacity: 0.7;
    transition: 300ms all linear;
}

.callout:hover > .overlay > .background {
    opacity: 1;
}

.callout > .overlay > .title {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
    margin: 0;
}

.callout > .overlay > .content {
    position: relative;
    z-index: 10;
    margin: 0;
    color: white;
    text-align: center;
    line-height: 1.38;
    letter-spacing: 1.3px;
}

.callout > .overlay > .content * {
    margin: 0;
}

.callout > .overlay > .content > p {
    color: white;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 0;
}

.callout > .overlay > .plus-container {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.callout > .overlay > .plus-container .plus {
    z-index: 10;
    color: white;
    font-size: 32px;
    /*text-shadow: 2.5px 4.3px 5px rgba(0, 0, 0, 0.33);*/
    filter: drop-shadow(2.5px 4.3px 5px rgba(0, 0, 0, 0.4));
}

.callout:nth-child(odd) {
    justify-content: flex-start;
}

.callout:nth-child(odd) > .overlay {
    padding-top: 10px;
    padding-bottom: 20px;
}

.callout:nth-child(odd):hover > .overlay {
    padding-top: 15px;
    padding-bottom: 30px;
}

.callout:nth-child(odd) > .overlay > .plus-container {
    bottom: -16px;
}

.callout:nth-child(even) {
    justify-content: flex-end;
}

.callout:nth-child(even) > .overlay {
    padding-top: 20px;
    padding-bottom: 10px;
}

.callout:nth-child(even):hover > .overlay {
    padding-top: 25px;
    padding-bottom: 25px;
}

.callout:nth-child(even) > .overlay > .plus-container {
    top: -16px;
}