/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "area-normal", sans-serif;
    background-color: #ffffff;
    color: var(--font-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .faq-container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .faq-item {
        max-width: 700px !important;
        box-shadow: none !important;
        width: 100% !important;
        background-color: var(--off-color) !important;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .faq-container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .faq-item {
        max-width: 700px !important;
        box-shadow: none !important;
        width: 100% !important;
        background-color: var(--off-color) !important;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .faq-container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .faq-item {
        max-width: 700px !important;
        box-shadow: none !important;
        width: 100% !important;
        background-color: var(--off-color) !important;
    }
}

@media(max-width: 769px) {
    .faq-container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .faq-item {
        max-width: 100% !important;
        box-shadow: none !important;
        width: 100% !important;
        background-color: var(--off-color) !important;
    }
}