:root {
    /* Colors */
    --primary-color: #8e1699;
    --text-color: #211e38;
    --white-color: #ffffff;
    --gray-color: #959595;
    --dark-gray-color: #4d4d4d;
    --light-color: #ecf0ff;
    --danger-color: #ff3b3b;
}

* {
    --webkit-box-sizing: border-box;
    --moz-box-sizing: border-box;
    box-sizing: border-box;
}

*::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-track {
    background: #e9e9e9;
}

*::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

*::-webkit-scrollbar-corner {
    background: #e9e9e9;
}

body {
    width: 100%;
    height: 100vh;
    font-family: Almarai, serif;
    font-style: normal;
    margin: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

blockquote {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: #000000;
}

button {
    outline: none;
}

.p-section {
    padding: 0.5rem 4rem;
}

.dir-ar {
    direction: rtl;
    text-align: right;
}

.dir-en {
    direction: ltr;
    text-align: left;
}

.header,
.pragraph {
    margin-bottom: 1.5rem;
}

.awaa-btn {
    width: fit-content;
    padding: 0.75rem 1.5rem;
    border-radius: 1.25rem;
    border: thin solid transparent;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 0 10px 0 #8e16994d;
}

.primary-btn:hover,
.primary-btn:focus {
    background: var(--primary-color);
    color: var(--white-color);
}

.outline-primary-btn {
    display: flex;
    align-items: center;
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-light {
    color: var(--primary-color) !important;
    border: thin solid var(--primary-color) !important;
    background-color: var(--white-color) !important;
}

.head-sec {
    width: 90%;
    margin: 1rem auto;
    text-align: center;
}

.head-sec h3 {
    color: #1b072c;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.head-sec h3 span {
    color: var(--primary-color);
}

.head-sec .description {
    color: var(--dark-gray-color);
    width: 70%;
    margin: 0 auto;
}

.awaa {
    color: var(--primary-color);
    font-weight: 700;
}
.disabled {
    color: var(--light-color) !important;
    background-color: var(--primary-color) !important;
    opacity: 0.7 !important;
}
.form-control:focus {
    box-shadow: none;
    border: thin solid var(--primary-color);
}

/* *********************************************** */
/* ************subscription modal***************** */
/* *********************************************** */
.modal-content .modal-header .modal-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.25rem;
}
.enrollForm form {
    margin: 0rem auto;
    background-color: #fff;
    text-align: center;
    width: 100%;
    padding: 0rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
}
.enrollForm form label > strong {
    margin-bottom: 0.3rem;
    display: inline-block;
}

@media (max-width: 767.99px) {
    .awaa-btn {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    .head-sec .description {
        width: 100%;
    }
    .p-section {
        padding: 0.5rem 1rem;
    }
}
