#homeContent {
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: url('../Icons/backgroundHome.png') no-repeat;
    background-size: cover;
}
#mainTitle {
    width: 35%;
    font-size: 50px;
    font-family: "Arial";
    font-weight: bolder;
    background: linear-gradient(45deg, #77f398, #fff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}
#mainIllustration {
    width: 60%;
}
.point {
    width: 70vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px 15vw;
}
.point .illustration {
    height: 400px;
}
.point .text {
    width: 50%;
}
.gradientBackground {
    width: 100vw;
    height: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.gradientBackground .gradient {
    width: 75vw;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(var(--c, #009929), #fff 70%);
    position: absolute;
    z-index: -1;
}
.gradientBackground .gradient.left {
    left: calc(-37.5vw + 50px);
}
.gradientBackground .gradient.right {
    left: calc(62.5vw - 50px);
}
#services {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}
#services .gradientServices {
    width: 25vw;
    height: 800px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
#services .gradientServices.left {
    background: radial-gradient(#0059DEcc, #fff 70%);
    left: -12.5vw;
}
#services .gradientServices.right {
    background: radial-gradient(#00DE3Acc, #fff 70%);
    left: 87.5vw;
}
#textServices {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
#textServices p {
    width: 22vw;
}
#textServices #savImg {
    width: 18vw;
}
#allCards {
    margin: 10px 15vw;
    width: 70vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    width: 17vw;
    height: 10vw;
    background: #fff;
    transition: all 0.4s;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 0px  rgba(0, 0, 0, 0.3);
    font-size: 30px;
    font-weight: 900;
    overflow: hidden;
    margin: 20px;
} 
.card:hover {
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px  rgba(0, 0, 0, 0.4);
    background: #00DE3A;
} 
.first-content {
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    border-radius: 15px;
} 
.card:hover .first-content {
    height: 0px;
    opacity: 0;
} 
.second-content {
    height: 0%;
    width: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: all 0.4s;
    font-size: 0px;
    transform: rotate(90deg) scale(-1);
} 
.card:hover .second-content {
    opacity: 1;
    height: 100%;
    transform: rotate(0deg);
}
.card:hover .second-content p {
    font-size: 15px;
}
@media screen and (max-width: 1000px) {
    #homeContent {
        height: 80vh;
        flex-direction: column;
        justify-content: center;
    }
    #mainTitle {
        width: 90%;
        font-size: 35px;
    }
    .point {
        flex-direction: column;
        justify-content: center;
        width: 100vw;
        margin: 0px;
    }
    .point .illustration {
        height: 60vw;
    }
    .point .text {
        width: calc(100vw - 40px);
    }
    #savImg {
        display: none;
    }
    #textServices {
        flex-direction: column;
    }
    #textServices p {
        width: calc(100vw - 50px);
    }
    #allCards {
        margin: 10px 0px;
        width: 100vw;
    }
    .card {
        width: 40vw;
        height: 40vw;
    }
}