@-webkit-keyframes slideInFromLeft {
    0% {
        overflow-y: hidden
    }

    99% {
        overflow-y: hidden
    }

    100% {
        overflow-y: auto
    }
}

@keyframes slideInFromLeft {
    0% {
        overflow-y: hidden
    }

    99% {
        overflow-y: hidden
    }

    100% {
        overflow-y: auto
    }
}

@-webkit-keyframes fade-up {
    0% {
        width: 100vw;
        opacity: 0;
        -webkit-transform: translate(0, 4rem);
        transform: translate(0, 4rem)
    }

    20% {
        opacity: 0
    }

    100% {
        width: 100vw;
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes fade-up {
    0% {
        width: 100vw;
        opacity: 0;
        -webkit-transform: translate(0, 4rem);
        transform: translate(0, 4rem)
    }

    20% {
        opacity: 0
    }

    100% {
        width: 100vw;
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fade-up {
    -webkit-animation: 1s ease-in-out 0s 1 fade-up !important;
    animation: 1s ease-in-out 0s 1 fade-up !important;
    z-index: 100
}

.fade-in {
    -webkit-animation: 1s ease-in-out 0s 1 fade-in !important;
    animation: 1s ease-in-out 0s 1 fade-in !important
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
        display: block !important
    }

    100% {
        opacity: 0;
        display: none !important
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        display: block !important
    }

    100% {
        opacity: 0;
        display: none !important
    }
}

.message-fade-out {
    -webkit-animation: 1s ease-in-out 0s 1 fade-out !important;
    animation: 1s ease-in-out 0s 1 fade-out !important;
    display: none !important
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 1px solid grey;
    padding: 2px
}

input {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    border: none
}

input:focus {
    outline: none
}

button {
    border: 1px solid blue;
    background: blue;
    color: white
}

.WRAPPER {
    background-color: white;
    height: 575px;
    width: 975px;
    background-image: url(exit-gate/exit-gate-bg.html);
    top: auto;
    margin: -8px
}

#email {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    outline: none;
    height: 30px;
    transition: height 1s;
    -webkit-transition: height 1s
}

#email:focus {
    font-size: 16px
}

#button-transparent {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #687281;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.35rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out
}

::-moz-selection {
    color: black;
    background: white
}

::selection {
    color: black;
    background: #fff
}

.text-button {
    stroke-width: 1;
    color: rgba(255, 255, 255, 0.8)
}

.text-button_light {
    stroke-width: 0.7;
    color: rgba(255, 255, 255, 0.3)
}

.text-button_bold {
    stroke-width: 1.6;
    color: rgba(255, 255, 255, 0.8)
}

.message {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #000;
    opacity: 0.9;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 1000
}

.message-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 5rem
}

.email-input {
    color: white;
    border-bottom: 1px solid white !important;
    background-color: transparent !important
}

@media only screen and (min-device-width: 120px) and (max-device-width: 480px) {
    .email-input {
        width: 80% !important
    }
}

header {
    background: #333;
    padding: 30px
}

body {
    -webkit-animation: 1.5s ease-out 0s 1 slideInFromLeft;
    animation: 1.5s ease-out 0s 1 slideInFromLeft;
    overflow-x: hidden;
    background-repeat: repeat-y;
    width: 100vw;
    background-color: #000;
    min-height: 100%
}

@-webkit-keyframes fade {
    0% {
        opacity: 1
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0.8
    }
}

@keyframes fade {
    0% {
        opacity: 1
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0.8
    }
}

.overlay {
    position: relative
}

.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    -webkit-animation: 1.5s ease-out 0s 1 fade;
    animation: 1.5s ease-out 0s 1 fade;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8
}

.bg-img-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.my-container {
    padding-right: 12% !important;
    padding-left: 12% !important;
    position: relative
}

.text-center-mobile {
    min-height: 100vh
}

.areas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.top-area {
    display: inline-block
}

.center-area {
    display: inline-block;
    padding-bottom: 1rem;
    padding-top: 1rem
}

.bottom-area {
    display: inline-block;
    margin: 0 auto;
    padding: 1rem 0
}

.df {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.mobileShow {
    display: none
}

.mobileHide {
    display: block
}

@media only screen and (min-device-width: 120px) and (max-device-width: 480px) {
    .mobileShow {
        display: inline
    }

    .text-center-mobile {
        text-align: center
    }

    .mobileHide {
        display: none
    }
}

.narrator {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 1rem
}

.hadith {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9)
}

.hadith-ar {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
    direction: rtl
}

.hadith p {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0.5rem
}

.grade {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    float: right;
    padding-right: 20px
}

.book {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    float: left
}

@media only screen and (min-device-width: 120px) and (max-device-width: 480px) {
    .narrator {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 200
    }

    .hadith {
        font-size: 20px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9)
    }

    .grade {
        font-size: 16px;
        font-weight: 200;
        color: rgba(255, 255, 255, 0.8)
    }

    .book {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 200
    }
}

.center-hadith {
    margin: auto
}

strong {
    color: white;
    font-weight: 500
}

a {
    color: white
}

a:hover {
    color: white
}

/* .a-title {
    font-family: Avenir;
    font-weight: 300;
    -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s
}

.a-title:hover {
    color: black;
    background-color: white;
    text-decoration: none;
    padding: 1px;
} */

.a-mobile:active {
    color: black;
    background-color: white;
    padding: 20px 20px
}

.logo {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 200
}

.page-header-title{
    padding-top: 6vh;
    padding-bottom: 6vh;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.flex-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}