body {
    overflow-x: hidden;
}

/* Fuente letra */
.index--title--main {
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    font-size: 50px;
}


header {
    position: sticky;
    top: 0;
    padding: 15px;
    background-color: white;
    z-index: 9999;
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.justify {
    text-align: justify;
}
.container--wave {
    position: relative;
    overflow-x: clip;
    margin-bottom: 80px;
    padding: 100px 20vw;
    min-height: 400px;
    background: linear-gradient(
        to top,
        #6697e6 50%,
        rgb(189, 209, 241),
        #ffffff 100%
    );
}

.wave--curve {
    position: absolute;
    height: 225px;
    width: 100%;
    bottom: 0;
    animation: waveMove 10s ease-in-out infinite;
}

.wave--curve::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    background-color: #ffffff;
    transform: translate(85%, 60%);
}

.wave--curve::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    background-color: #6697e6;
    transform: translate(-4%, 40%);
    z-index: -1;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2%);
    }
    100% {
        transform: translateX(0);
    }
}

.index--icon--wifi {
    font-size: 20rem;
    position: absolute;
    margin-top: -345px;
    margin-left: 80px;
    color: #ffffff33;
}

.solutions--cards {
    border: 1px solid rgb(170, 168, 168);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    width: 23%;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.578);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24rem;
}

.solutions--cards:hover {
    box-shadow: 3px 3px 2px 3px rgb(134, 132, 132);
    transition: 0.5s;
}

.index--card--title {
    box-shadow: inset 5em 1em #25316d;
    border-radius: 20px;
    display: flex;
}

.index--cont--button {
    border-top: 1px solid rgb(214, 212, 212) !important;
    padding-top: 20px;
}

.index--icon--house {
    position: absolute;
    color: #ffffff43;
    display: inline;
    width: 300px;
    font-size: 40em;
    margin-top: -100px !important;
    margin-left: 15px;
}

.index--button {
    text-shadow: 1px 1px 1px rgb(177, 175, 175);
    background-image: linear-gradient(
        to right,
        #051937,
        #25316d,
        #2a3a8b,
        #435acd,
        #39aeb8
    );
    position: relative;
    overflow: hidden;
}

.index--button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(89, 103, 230, 0.41);
    transition: left 0.3s ease;
}

.index--button:hover::before {
    left: 0;
}

.index--button i {
    transition: transform 0.3s ease;
}

.index--button:hover i {
    transform: translateX(5px);
}

.icon {
    font-size: 3rem;
}

.solutions--cards:hover .icon {
    transform: rotate(360deg);
    transition: 0.8s;
}

.index--values--content {
    padding: 4%;
    margin-right: 3%;
}

@media (max-width: 1300px) {
    .solutions--cards {
        width: 50%;
    }

    .index-container-text-value-content {
        display: flex !important;
        flex-direction: column;
    }

    .index--icon--house {
        width: 200px;
        display: flex;
        justify-content: center;
        margin-top: -300px;
    }

    .hr--deg {
        rotate: 0deg !important;
    }

    .index--values--content {
        width: fit-content !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding: 4%;
        margin-right: 6%;
    }

    body {
        overflow-x: hidden;
    }

    .index--icon--wifi {
        margin-left: 0px;
    }

    .index--card--title > h1 {
        margin: auto !important;
        text-align: center !important;
        color: #435acd;
    }
}

@media (max-width: 630px) {
    .index--title--main {
        font-size: 30px !important;
    }

    .index-container-title-values {
        width: 200px;
    }

    .index-h1-values-title {
        width: 200px;
    }

    .index-h1-values-title > strong {
        color: #051937;
    }

    .index--values--content {
        width: fit-content !important;
        margin-left: 0px !important;
        text-align: start;
    }

    .index--values--content div {
        width: 100%;
        font-size: calc(1.275rem + 0.3vw) !important;
        padding-right: 1.1rem !important;
        padding-bottom: 1.1rem !important;
    }

    .index--icon--house {
        display: none !important;
    }

    .hr--deg {
        display: none;
    }
}

@media (max-width: 500px) {
    .container-titles .display-4 .index--title--main {
        /* Propiedades que deseas anular o sobrescribir */
        font-size: inherit;
        font-weight: inherit;
        /* O cualquier otra propiedad que desees sobrescribir */
        max-width: 500px;
        font-size: 30px !important;
    }

    .solutions--cards {
        width: 100%;
        height: 25rem;
    }

    .index--values--content {
        width: fit-content !important;
        text-align: start;
    }

    .index--values--content div {
        width: 100%;
        font-size: calc(1.175rem + 0.2vw) !important;
        padding-right: 1.1rem !important;
        padding-bottom: 1.1rem !important;
    }
}
