/*+++++++++++++++++++++++++++++++++++++++++++++++
        Home Styles | Tech Section
************************************************/
.econotec-home__tech-section {
    padding: 0;
    border-bottom: 1px solid #222222;
}

.econotec-home__tech-container {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}

.econotec-home__tech-button {
    outline: none;
    border: none;
    margin-top: 80px;
    background-color: var(--primary-color-mode2);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 8px 16px;
}

.econotec-home__tech-button:hover {
    background-color: var(--primary-color-mode1);
}

.econotec-home__tech-item {
    display: flex;
    justify-content: center;
}

.econotec-home__tech-card {
    width: 250px;
    min-height: 500px;
    background-color: white;
    border: 1px solid #212121;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.econotec-home__tech-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 15px;
    border: 1px solid #222222;
}

.econotec-home__tech-card-text {
    font-size: 14px;
    color: #212121;
    line-clamp: 3;
    margin-bottom: 15px;
    flex: 1;
}

.econotec-home__tech-card-button {
    background-color: var(--primary-color-mode2);
    color: white;
    border-radius: 0.25rem;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
    max-width: max-content;
    align-self: center;
    margin-bottom: 10px;
}

.econotec-home__tech-card-button:hover {
    background-color: var(--primary-color-mode1);
    color: white;
}

.econotec-home__tech-card-button i {
    margin-left: 5px;
}

.econotec-home__tech-section {
    background-color: var(--background1-color);
    padding: 0;
    display: flex;
    justify-content: center;
}