
section {
    padding: var(--f0);

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.tf {
    margin-top: var(--up);
}
.ft {
    font-size: var(--f3);
    line-height: 1;
    margin: var(--f1);
    animation: spa 1s ease-in-out;
}

section #secc {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;

    background-image: url("../img/bg.jpg");
    animation: spa 1s ease-in-out;
    border-radius: var(--f0d5);
    height: var(--hs);

    & p {
        width: 75%;
        text-align: center;
        font-size: var(--f2d5);
        animation: spa 1s ease-in-out;
        text-shadow: #30c 0 0 1dvw;
    }
    & #bbau {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;

        position: absolute;
        padding: var(--f0d5);
        border-radius: var(--f0d5);
        cursor: pointer;
        font-size: var(--f0);
        opacity: 0;
        animation: spa 1s 1s ease-in-out forwards;
        transform: translateY(var(--bbau)) scale(1);

        & a {
            padding: var(--f0d5);

            & img {
                width: var(--f4s);
            }

            &:hover {
                transform: scale(1.1);
            }
        }
    }
}

#parjb {
    background-image: url("../img/bg2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--f0d5);
    text-align: center;
}
.t {
    opacity: 0;
    animation: spa 1s 2s ease-in-out forwards;
}

.hoz {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;

    & img {
        width: var(--f30);
    }
    & p {
        width: 50%;
        font-size: var(--f2);
    }
}



/* FAQ */

.accordion {
    max-width: fit-content;
    opacity: 0;
    animation: spa 1s 1s ease-in-out forwards;
}

.accordion-item {
    margin: var(--f0d5);
    border-radius: var(--f0d5);
    color: var(--c3);
}

.accordion-item-header {
    padding: var(--f1);
    min-height: 2.5dvw;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: var(--f2);
    background-color: var(--c2);
}

.accordion-item-header::after {
    content: "\002B";
    position: absolute;
    line-height: 1;
    right: 1.5dvw;
}
  
.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    background-color: var(--c4);
}

.accordion-item-body-content ul {
    padding-left: var(--f1);
}

.afaq {
    font-size: var(--f0);
    padding: var(--f1);
}

.afaq p {
    font-size: var(--f0);
}

.qfaq {
    margin-right: 3dvw;
}

@media screen and (max-width: 1200px) {
    .hoz {
        flex-direction: column;
        & p {
            width: 75%;
        }
    }
}
@media screen and (max-width: 700px) {
    section #secc {
        & p {
            width: 80%;
        }
    }
}
@media screen and (max-width: 500px) {
    .hoz {
        flex-direction: column;
        & p {
            width: 95%;
        }
    }
    section #secc {
        & p {
            width: 95%;
        }
    }
}
@media (height: 600px) and (width: 1024px) {
    .hoz {
        flex-direction: row;
        & p {
            width: 50%;
        }
    }
}