/*=========================
	CARDS INFO BLOCK
=========================*/

.block-cards-info .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block-cards-info .content .title {
    text-align: center;
}

.block-cards-info .cards {
    display: flex;
    gap: var(--space-3);
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.block-cards-info .cards a {
    flex: 1 1 350px;
    max-width: 475px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.block-cards-info .cards .card {
    height: 100%;
    border: 0;
    background: transparent;
    transition: background 1s ease;
}

.block-cards-info .cards .card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    min-height: 155px;
    padding: 25px 50px 50px 50px;
}

.block-cards-info .cards .card .icon {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 2;
    width: 50px;
    min-height: 50px;
    border-radius: 50%;
    padding: 12px;
}

.block-cards-info .cards a:hover .info {
    background-color: transparent !important;
}

.block-cards-info .cards a:hover .icon {
    background-color: #FFF !important;
}

.block-cards-info .cards .card img.background-image {
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-cards-info #typewriter {
    color: var(--color-p-60) !important;
}

.typed-cursor {
    font-weight: 100;
    font-size: 1.1em;
    opacity: 1;
    animation: typedjs-blink 0.7s infinite;
    -webkit-animation: typedjs-blink 0.7s infinite;
    animation: typedjs-blink 0.7s infinite;
    color: var(--color-p-60) !important;
}

@keyframes typedjs-blink {
    50% {
        opacity: 0.0;
    }
}

@-webkit-keyframes typedjs-blink {
    50% {
        opacity: 0.0;
    }
}

@media only screen and (max-width: 1500px) {
    .block-cards-info .cards .card .info {
        padding: 25px;
        min-height: 130px;
    }
    .block-cards-info .cards .card .icon {
        top: 30px;
        left: 30px;
        width: 40px;
        min-height: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .block-cards-info .cards {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    .block-cards-info .cards a {
        flex-basis: auto;
        width: 100%;
        max-width: 450px;
    }
}