.installation {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 30px;
    background-image: linear-gradient(var(--color-red) 0%, var(--color-red-dark) 100%);
    margin-bottom: 50px;
}

.installation > div {
    width: 50%;
    padding: 50px;
    border-radius: 30px;
}

.installation > div * {
    color: var(--color-white);
}

.installation > div i {
    font-size: 14px;
}

.installation > div .padding {
    margin: 50px 0;
    font-weight: 600;
    font-size: 16px;
}

.installation > div:nth-child(2) {
    background-image: url("image/antena.webp");
    padding: 0;
    background-size: cover;
    background-position: top left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.internet-speed {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
}

.internet-speed > span {
    width: 45%;
    overflow: hidden;
}

.internet-speed > span > video {
    border-radius: 30px;
}

.internet-speed > div {
    width: 65%;
    padding: 0 0 0 100px;
}

.internet-speed h2 {
    font-size: 26px;
    margin-bottom: 50px;
    color: var(--color-red);
}

.internet-speed p {
    margin-bottom: 30px;
    font-size: 14px;
}

.faq {
    width: 100%;
}

.faq > h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 36px;
    margin-bottom: 100px;
}

.faq > div {
    position: absolute;
    margin-bottom: 0;
}

.faq > div > h3 {
    font-size: 18px;
    padding: 0 40px 0 0;
    font-style: italic;
    cursor: pointer;
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.faq > div > div {
    overflow: hidden;
    height: 0;
    opacity: 0;
    font-size: 14px;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.faq > div > div * {
    font-size: 14px;
}

.faq > div > div a {
    color: var(--color-red);
}

.faq > div.visible > div {
    opacity: 1;
}

.faq > span {
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: 50px;
    text-align: center;
    padding: 0 0 100px 0;
    display: block;
}

.faq > span > a {
    color: var(--color-white);
    background-color: var(--color-red);
    border: 2px solid var(--color-red);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
}

.faq > div > i {
    color: var(--color-red);
    position: absolute;
    right: -20px;
    top: 20px;
    cursor: pointer;
    font-size: 18px;
}

.table {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    padding: 50px 0;
    border-radius: 30px;
    overflow: hidden;

    background-image: url("image/internet.webp");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.table::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.table > * {
    position: relative;
    z-index: 1;
}

.table table {
    -webkit-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
    box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
    padding: 10px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    border: 20px solid var(--color-white);
    background-color: var(--color-white);
    overflow: hidden;
}

.table table td, .table table th {
    padding: 20px;
    text-align: left;
    border: 1px solid var(--color-gray);
    border-right: none;
    border-bottom: none;

}

.table table tr td:nth-child(1), .table table tr th:nth-child(1) {
    border-left: none;
}

.table table tr:nth-child(1) th {
    border-top: none;
}

.table table tr:nth-child(even) > td {
    background-color: var(--color-gray-light);
}

.table table tr:nth-child(odd) > td, .table table th {
    background-color: var(--color-white);
}

.table table i {
    color: var(--color-green);
}

@media screen and (min-width: 800px) {
    .faq > span > a:hover {
        color: var(--color-red);
        background-color: var(--color-white);
    }
    .faq > div > h3:hover {
        color: var(--color-red);
    }
    .faq > div > div a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1300px) {
    .faq > div > i {
        top: 0;
        right: 20px;
    }
    .faq > div > div {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 1000px) {
    .faq > h2 {
        margin-bottom: 25px;
    }
    .internet-speed {
        flex-direction: column;
    }
    .internet-speed > span, .internet-speed > div, .internet-speed > span > video {
        width: 100%;
    }
    .internet-speed > div {
        padding: 0;
    }
    .installation > div:nth-child(2) {
        display: none;
    }
    .installation > div {
        width: 100%;
        padding: 10px;
    }
    .table table * {
        font-size: 12px;
    }
    .table {
        padding: 0;
    }
    .table table td, .table table th {
        padding: 10px;
    }
}