/*+++++++++++++++++++++++++++++++++++++++++++++++
        Home Styles | Services Section
************************************************/
.econotec-home__service-section {
    background-color: var(--primary-color-mode1);
    border-bottom: 1px solid #222222;
    height: calc(100vh - 80px);
    min-height: 700px;
    margin-top: 50px;
}

.econotec-home__service-section .econotec-home__title {
    font-size: 30px;
    color: #FFFEF1;
}

.econotec-home__service-section .econotec-home__subtitle {
    font-size: 20px;
    color: #FFFEF1;
    font-weight: 300;
    margin: auto;
}

.econotec-home__service-section .econotec-home__main-image {
    border-radius: 20px;
}

.econotec-home__service-section .econotec-home__grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: 100%;
    gap: 1rem;
}

.econotec-home__service-section .econotec-home__grid-item {
    background-color: var(--primary-color-mode1);
    border: 1px solid white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
}

.econotec-home__service-section .econotec-home__grid-item:hover {
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
    cursor: pointer;
    background-color: var(--primary-color-mode2);
    border-color: #212121;
}

.econotec-home__service-section .econotec-home__grid-item:hover p {
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
    color: #212121;
}

.econotec-home__service-section .econotec-home__grid-item:hover path {
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
    fill: #212121;
}

.econotec-home__service-section .econotec-home__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

@media (max-width: 1200px) {
    .econotec-home__service-section {
        height: 100%;
    }

    .econotec-home__service-section .econotec-home__grid-container {
        grid-template-rows: 1fr;
    }
}

@media (min-width: 1200px) {
    .econotec-home__service-section .econotec-home__grid-container {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) and (max-width: 920px) {
    .econotec-home__service-section .econotec-home__grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 920px) and (max-width: 1200px) {
    .econotec-home__service-section .econotec-home__grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}