* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

body {
    background-color: #1d1c1b;
    min-height: 100vh;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.header {
    width: 100%;
}

header {
    min-height: 50vh;
    background-image: url('/FAQ/img/FAQ.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 180%;
    background-size: cover;
    filter: blur(3px);
}

.headInfo {
    transform: translate(0, -300px);
    color: white;
    text-align: center;
}

.headInfo h1 {
    font-size: 80px;
}

.headInfo p {
    font-size: 20px;
}

.Question {
    min-height: 100vh;
    text-align: center;
}

.cont {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.card {
    margin: 20px 0;
    background-color: #363636;
    padding: 10px;
    width: 50%;
    cursor: pointer;
    position: relative;
}

.card h2 {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card p {
    display: none;
    transition: all 0.5s ease;
}

.card i {
    position: absolute;
    left: 50px;
    top: 25px;
}

a {
    color: aqua;
}

.MoreQ {
    color: white;
    font-size: 20px;
    margin: 100px auto;
}

.alert {
    position: fixed;
    text-align: center;
    border: 1px solid;
    width: 300px;
    margin: auto;
    font-size: 30px;
    background-color: #00a3a3;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 100px;
    display: none;
}

@media only screen and (max-width: 1100px) {
    .card {
        width: 80%;
    }
}

@media only screen and (max-width: 700px) {
    .card {
        width: 90%;
    }

    .card i {
        position: absolute;
        left: 10px;
    }

    .headInfo h1 {
        font-size: 70px;
    }

    .headInfo p {
        font-size: 20px;
    }

    .card h2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 530px) {
    .card {
        width: 98%;
    }

    .card i {
        position: absolute;
        left: 5px;
    }

    .headInfo h1 {
        font-size: 60px;
    }

    .headInfo p {
        font-size: 20px;
    }
}

.footers {
    width: 100%;
    position: sticky;
    top: 100%;
}