/* Basic CSS Reset */

html {
    /* Color */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #757575;
    --color-primary: #f08821;
    --color-secondary: #44beed;
    --color-light-gray: #E1DFF4;
    /* Fonts */
    --font-primary: Tajawal;
    --font-secondary: Tajawal-Medium;
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

a {
    text-decoration: unset !important;
}

.ptb-65 {
    padding-top: 65px;
    padding-bottom: 65px;
}

.top-right {
    position: absolute;
    top: 19px;
    right: 19px;
}


/* Insert font*/

@font-face {
    font-family: Tajawal;
    src: url(../fonts/Tajawal-Regular.ttf);
}

@font-face {
    font-family: Tajawal-Medium;
    src: url(../fonts/Tajawal-Medium.ttf);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--color-gray);
    font-weight: 300;
}

 ::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--color-gray);
    font-weight: 300;
}

 :-ms-input-placeholder {
    /* IE 10+ */
    color: var(--color-gray);
    font-weight: 300;
}

 :-moz-placeholder {
    /* Firefox 18- */
    color: var(--color-gray);
    font-weight: 300;
}


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Start Loader Style */

.hidden_loader {
    display: none !important;
}

.overlay_loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.837);
    transition: opacity 500ms;
    z-index: 1000;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.loader-demo-box {
    border-radius: 0.25rem !important;
}

.loader-demo-box {
    width: 100%;
    height: 200px;
}

.jumping-dots-loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.jumping-dots-loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--color-primary);
    margin: 35px 5px;
}

.jumping-dots-loader span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.jumping-dots-loader span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.jumping-dots-loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {
    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}


/* End  Loader Style */


/* Start Popup Style */

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.close {
    opacity: unset;
}

.popup {
    margin: 100px auto;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: fit-content;
    position: relative;
    z-index: 9999 !important;
}

.popup .otp-tittle {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-purple);
    font-family: var(--font-primary);
    text-align: center;
}

.popup .phone-number-text {
    font-family: var(--font-secondary);
    color: var(--color-gray);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.popup .close {
    width: 50px;
    height: 50px;
    position: absolute;
    text-align: center;
    line-height: 1;
    top: -20px;
    right: -20px;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 3s;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-secondary);
}

.popup .otp-div {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.popup .otp-div input {
    margin: 0.2rem;
}

.popup .otp-number {
    width: 68px;
    height: 67px;
    border-radius: 10px;
    outline: none;
    background-color: var(--color-light-gray);
    color: var(--color-dark-primary);
    text-align: center;
}

.popup .otp-number:focus {
    border: 2px solid var( --color-primary);
}

.popup .but-otp {
    display: block;
    text-align: center;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    width: 230px;
    border-radius: 30px;
    height: 55px;
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--color-white);
    background-color: var(--color-secondary);
    border: none;
    outline: none;
    line-height: 1.5;
    font-size: 1.3rem;
    cursor: pointer;
}

.popup .not-received {
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--color-purple);
    font-size: 1rem;
    text-align: center;
}

.popup .resend {
    color: var( --color-secondary) !important;
}


/* End Popup Style */

.warning_icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 8px auto;
}


/* start  Back to Top style*/

#back_to_top i:before {
    margin: 0;
    font-size: 14px;
    color: var(--color-white);
}

#back_to_top {
    text-align: center;
    display: none;
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 30px;
    left: 30px;
    background: var(--color-primary);
    border: 0;
    color: var(--color-white);
    outline: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    z-index: 5;
}

#back_to_top i {
    line-height: 40px;
}

#back_to_top:hover {
    background: var(--color-min);
    color: var(--color-primary);
}

.btnEntrance {
    -webkit-animation: 2000ms ease-in-out 0s normal none 1 running bounceInUp;
    animation: 2000ms ease-in-out 0s normal none 1 running bounceInUp;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


/* End  Back to Top style*/


/* Start Header Style */

header {
    position: fixed;
    height: 70px;
    width: 100%;
    background-color: var(--color-white);
    direction: rtl;
    padding: 1.5rem 2rem;
    z-index: 99;
}

nav {
    display: block;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    direction: rtl;
    margin: 0;
    padding: 0;
}

nav img {
    width: 118px;
    height: 40px;
}

nav ul a {
    color: var(--color-primary);
    font-weight: 800;
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    text-decoration: unset !important;
}

ul li a.active {
    color: var(--color-secondary);
}

ul li a:hover {
    color: var(--color-secondary);
}

#ham-menu {
    display: none;
}

nav ul.active {
    left: 0;
}


/* End Header Style */

.hero {
    background-color: #ffffff;
    direction: rtl;
    background-image: url(/img/background_main.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.main_title {
    color: #f5ad1b;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    align-items: center;
    font-size: 4.5em;
    margin: 0;
    line-height: 1.2;
}

.main_title_span {
    color: #44beed;
    font-size: 0.85em;
}

.discraption_text {
    font-size: 0.85em;
    font-weight: 500;
    text-align: right;
    color: #44beed;
    line-height: 1.5;
    max-width: 300px;
    font-family: var(--font-secondary);
}

.Lingo_main {
    height: 500px;
    width: 323px;
    display: block;
    margin-right: -15px
}

.Lingo_main_phone {
    display: none;
    margin-left: auto;
    margin-right: auto;
}

.phone_number {
    width: 300px;
    display: block;
    height: 50px;
    margin: 0.4rem 0;
    padding: 0.8rem;
    border-radius: 30px;
    border: solid 2px #d7dde2;
    color: #000;
    font-size: 1.3rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    outline: none !important;
}

.sectigo_seal {
    width: 300px;
    display: block;
    height: 50px;
    text-align: right;
    margin: 0.2rem 6rem;
    padding: 0.8rem;
}

.title_cost {
    color: #868788;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    margin: 0.2rem 4rem;
}

.reg_but {
    width: 265px;
    height: 48px;
    display: block;
    text-align: center;
    margin: 0.4rem 1rem;
    padding: 0.5rem;
    color: #fff;
    background-color: #f08821;
    border: 2px solid #f08821;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 500;
    outline: none !important;
    line-height: 1.5;
    font-family: 'Tajawal', sans-serif;
}

.sup_title_rules {
    font-size: 0.7rem;
    color: #f5ad1b;
    margin: 0.3rem;
    text-align: right;
    padding-right: 22px;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.sup_title_rules a {
    text-decoration: underline;
    color: #f5ad1b;
}

.footer_keyword {
    display: contents;
    text-align: center;
    justify-content: center;
    margin: 0;
    line-height: 1.3;
}

.footer_keyword li {
    padding: 0.2rem;
    display: inline-grid;
}

.footer_keyword li a h2 {
    font-family: 'Tajawal', sans-serif;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1em;
    margin: 0 auto;
}

ul li a h2:hover {
    color: #44beed;
    text-decoration: none !important;
    font-weight: 700;
}

ul li a.active {
    color: #44beed;
    font-weight: 700;
    border-bottom: 3px solid #44beed;
}

.footer_social {
    display: flex;
    justify-content: center;
}

.footer_social li {
    padding: 0.2rem 0.4rem;
}

.social_icon {
    width: 22px;
    height: 22px;
    margin: 0.4rem 0;
}

.ul_operater {
    display: flex;
    text-align: right;
    margin: 0.2rem 8rem;
}

.operater_icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    margin: 0.2rem;
}

.position_relative {
    position: relative;
}

.ul_social_icon {
    display: none;
    position: absolute;
    top: 150px;
    left: 10px;
}

@media only screen and (min-width:1260px) and (max-width: 1370px) {
    .ul_social_icon {
        display: block;
    }
}

@media only screen and (max-width: 550px) {
    .Lingo_main {
        display: none;
    }
    .footer_keyword {
        display: inline-block;
    }
}

@media only screen and (min-width: 0px) and (max-width:550px) {
    .Lingo_main_phone {
        margin-top: 10px;
        display: block;
        height: 200px;
        width: 130px;
    }
    .main_title {
        font-size: 2.5em;
    }
}

@media only screen and (min-width: 551px) and (max-width:950px) {
    .Lingo_main_phone {
        display: block;
        height: 350px;
        width: 227px;
    }
    .main_title {
        font-size: 3em;
    }
}

@media only screen and (max-width: 950px) {
    .main_title {
        text-align: center;
        line-height: 1.2;
    }
    .discraption_text {
        max-width: unset;
        text-align: center;
        padding: 0 2rem;
        line-height: 1.2;
        margin: 0.2rem auto;
    }
    .Lingo_main {
        display: none;
    }
    .phone_number {
        width: 275px;
        display: block;
        margin: 5px auto;
    }
    .sectigo_seal {
        width: 275px;
        display: block;
        margin: 5px auto;
        text-align: center;
    }
    .reg_but {
        width: 220px;
        display: block;
        margin: 7px auto 5px;
    }
    .sup_title_rules {
        text-align: center;
        padding-right: 0px;
    }
    .title_cost {
        text-align: center;
    }
    .ul_operater {
        margin: 0.2rem auto;
        display: block;
        text-align: center;
        width: unset;
    }
}


/* content_and_features */

.content_and_features {
    background-color: #f15b30;
    text-align: center;
    margin: 0px;
    display: block;
}

.container_features {
    background-image: url(/img/bg_features.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.content_and_features_title {
    font-family: 'Tajawal', sans-serif;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.content_and_features_description {
    max-width: 450px;
    font-weight: 500;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    margin: 10px auto;
    color: #fff;
    direction: rtl;
    line-height: 1.4;
    padding: 0.5rem;
}

.box_features_pulper {
    background-color: #6e3d73;
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    color: #ffffff;
}

.box_features_light_orange {
    background-color: #f5ad1b;
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    color: #ffffff;
}

.box_features_blue {
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    background-color: #29b4c1;
    color: #ffffff;
}

.box_features_sky_blue {
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    background-color: #44beed;
    color: #ffffff;
}

.box_features_white {
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #f15b30;
}

.box_features_orange {
    width: -webkit-fill-available;
    height: 360px;
    margin: 0.5rem;
    padding: 20px 24px 24px 25px;
    border-radius: 50px;
    background-color: #f08821;
    color: #ffffff;
}

.features_icon {
    width: 185px;
    height: 185px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.box_features_title {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    margin: 0.5rem 0;
}

.box_features_paragraph {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

@media screen and (max-width:550px) {
    .box_features_pulper,
    .box_features_light_orange,
    .box_features_blue,
    .box_features_sky_blue,
    .box_features_white,
    .box_features_orange {
        width: -webkit-fill-available;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
}


/* How to*/

.how_to {
    background-color: #ffffff;
    text-align: center;
    margin: 0px;
    display: block;
    direction: rtl;
}

.how_to_bg {
    background-image: url(/img/how_to_bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.how_to_subscription_image {
    width: 369px;
    height: 560px;
    margin-top: 4rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:450px) {
    .how_to_subscription_image {
        margin-top: 0;
        width: 165px;
        height: 250px;
        margin-bottom: 1rem;
    }
}

.how_to_subscription_text {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
}

.how_to_subscription_title {
    font-size: 3.6rem;
    text-align: right;
    color: #3c3f42;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    margin: 0 0 2rem 0;
}

.check_mark {
    width: 24px;
    height: 24px;
    display: inline-flex;
    margin: 0.5rem;
}

.sub_title_p {
    margin: 0;
    text-align: right;
    color: #f5ad1b;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
}

.ul_how_to {
    text-align: right;
}

.li_how_to {
    display: inline-flex;
    line-height: 0.3;
    color: #3c3f42;
    font-size: 1.2rem;
    font-weight: 600;
}

.p_how_to {
    line-height: 2.2;
    margin: 0;
}

.App_store_icon {
    width: 204px;
    height: 70px;
    float: left;
    margin: 1.5rem auto;
}

.Google_play_icon {
    width: 204px;
    height: 70px;
    float: right;
    margin: 1.5rem auto;
}

.download_app {
    font-size: 2.3rem;
    color: #3c3f42;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
}

@media screen and (max-width:950px) {
    .how_to_subscription_title {
        font-size: 2rem;
        text-align: center;
    }
    .App_store_icon,
    .Google_play_icon {
        display: block;
        margin-left: auto;
        margin-right: auto;
        float: unset;
        margin: 0.5rem auto;
    }
}

@media screen and (max-width:991px) {
    .sub_title_p {
        padding: 0 0.5rem;
        color: #f15b30;
    }
}


/* Learn English*/

.learn_english {
    background-color: #6e3d73;
    text-align: center;
    margin: 0px;
    display: block;
    direction: rtl;
}

.learn_english_bg {
    background-image: url(/img/learn_english_bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.learn_english_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width:1200px) {
    .learn_english_image {
        width: 621px;
        height: 600px;
    }
}

@media screen and (max-width:450px) {
    .learn_english_image {
        width: 320px;
        height: 309px;
    }
}

.learn_english_title {
    margin-top: 0;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

.learn_english_par {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

@media screen and (max-width:600px) {
    .learn_english_title {
        font-size: 2.8rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    .learn_english_par {
        padding: 0 0.8rem;
    }
}


/*Start FAQs Section*/

.faq {
    background-color: #ffffff;
    text-align: center;
    margin: 0px;
    display: block;
}

.container_faq {
    background-image: url(/img/bg_faq.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
}

.faq_title {
    font-family: 'Tajawal', sans-serif;
    margin: 0 auto;
    text-align: center;
    color: #3c3f42;
    font-size: 2.5rem;
    font-weight: 700;
}

.faq_description {
    max-width: 450px;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    margin: 10px auto;
    color: #3c3f42;
    direction: rtl;
    line-height: 1.4;
    padding: 0.5rem;
}

main {
    margin: 10px auto;
}

.center-faq {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.tap_box_button {
    border: 4px solid #44beed;
    border-radius: 20px;
    display: block;
    padding: 0.5rem;
    margin: 0.2rem;
    background-color: transparent;
    outline: none !important;
    font-family: var(--font-primary);
}

.w3-theme-dark {
    color: #2c3e50;
    border: 4px solid var(--color-primary);
    z-index: 1;
    outline: none !important;
}

.accordion__item {
    margin-bottom: 10px
}

.accordion__item__header {
    cursor: pointer;
    position: relative;
    background-color: #44beed;
    border-radius: 30px;
    padding: 1.3rem 1.5rem;
    color: #fff;
    font-size: 1.2rem;
    text-align: right;
    font-weight: 600;
    margin: 0.5rem auto;
    z-index: 1;
    border: 1px solid #44beed;
    direction: rtl;
    font-family: var(--font-primary);
}

.accordion__item__header::before {
    height: 15px;
    width: 15px;
    content: "";
    position: absolute;
    left: 40px;
    top: 25px;
    transition: .5s all;
    transform: rotate(45deg);
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.accordion__item__header.active {
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    transition: .5s
}

.accordion__item__header.active::before {
    transform: rotate(-135deg);
    top: 30px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff
}

.accordion__item__content {
    display: none;
    color: #3c3f42;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    background-color: #fff;
    margin-top: -35px;
    padding-top: 35px;
    z-index: 0;
    text-align: right;
    direction: rtl;
    font-family: var(--font-primary);
}


/* End FAQs Section */


/* footer links */

.footer_links {
    background-color: #f5ad1b;
    text-align: center;
    margin: 0px;
    display: block;
    direction: rtl;
    min-height: 60vh;
}

.first_col_title {
    text-align: right;
    font-size: 2rem;
    margin: 0.5rem 0;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
}

.how_are_we {
    text-align: right;
    font-size: 0.95rem;
    margin: 0;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.ul_secrion {
    margin: 0;
    text-align: right;
}

.text_section_name h2 {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.text_section_name h2:hover {
    color: #44beed;
    text-decoration: none !important;
}

.text_section_name {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.footer_image {
    display: block;
    margin: 10px auto;
}

.last_col_title {
    text-align: center;
    font-size: 2rem;
    margin: 0.5rem 0;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
}

@media only screen and (max-width: 992px) {
    .footer_links {
        min-height: unset;
    }
    .how_are_we {
        text-align: center;
        padding: 0.5rem;
    }
    .ul_secrion,
    .first_col_title {
        text-align: center;
    }
}


/* start footer style */

footer {
    padding: 20px 30px;
    display: block;
    direction: rtl;
    text-align: center;
    justify-content: space-around;
    background-color: #ffffff;
    color: #bcb7b7;
}

.privacy_text {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    color: var(--color-primary);
    padding-right: 0.5rem;
}

.rule_text {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    color: var(--color-primary);
}

.privacy_text:hover,
.rule_text:hover {
    color: #44beed;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

@media screen and (max-width:950px) {
    .rule_text {
        border-left: unset;
        padding-left: 0;
    }
    .privacy_text {
        padding-right: 0;
    }
    .text_right {
        text-align: unset;
    }
    .text_left {
        text-align: unset;
    }
}

.footer_text_right {
    float: right;
    text-align: justify;
}

.footer_text_right p {
    margin: 0;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 100;
    font-family: var(--font-secondary);
}

.footer_text_right_app h4 {
    margin: 0;
    padding: 0.5rem 0;
    text-align: right;
    font-size: 1rem;
    font-weight: 100;
    font-family: var(--font-secondary);
}

.footer_text_right_app a {
    text-decoration: none !important;
    float: right;
    padding: 0.5rem;
}

.line {
    border-top: 1px solid var(--color-secondary);
    margin-top: 3rem;
}

.copy_right_footer {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-primary) !important;
    font-size: 1rem;
}

.copy_right_footer:hover {
    color: var(--color-secondary);
    text-decoration: none !important;
}


/* Start Contact US Page */

.contact_section {
    background-color: #ffffff;
    color: #000000;
    text-align: right;
    font-family: CairoRegular;
    padding: 115px 0 25px 0;
    line-height: 2;
}

.rule_title {
    font-size: 2.2em;
    color: #44beed;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin: 0.5rem;
    text-align: right;
}

.contact_us_image {
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 450px;
    width: 431px;
}

.box_contact_us {
    color: #868788;
    font-size: 1em;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    text-align: center;
    max-width: 900px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.label_title {
    display: block;
    text-align: right;
    font-size: 0.9em;
    direction: rtl;
    font-weight: 600;
    padding: 0.4rem;
}

.contact_input {
    width: -webkit-fill-available;
    height: 50px;
    float: right;
    padding: 0.4rem 1rem;
    margin: 0.2rem;
    text-align: right;
    direction: rtl;
    font-size: 1em;
    color: #000000;
    font-family: 'Cairo', sans-serif;
    border-radius: 28px;
    outline: none;
    border: none;
    border: 2px solid #f08821;
}

.text-danger {
    display: block;
    text-align: right;
    color: red !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Cairo', sans-serif !important;
    justify-items: stretch;
    padding-right: 10px;
}

.contact_textarea {
    width: -webkit-fill-available;
    float: right;
    padding: 1rem 1.5rem;
    margin: 0.2rem;
    text-align: right;
    direction: rtl;
    font-size: 1em;
    color: #000000;
    font-family: 'Cairo', sans-serif;
    border-radius: 28px;
    outline: none;
    border: 2px solid #f08821;
}

.send_but {
    width: 100%;
    height: 45px;
    text-align: center;
    margin: 0.4rem auto;
    padding: 0.5rem;
    color: #fff;
    background-color: #f08821;
    border: 2px solid #f08821;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    outline: none !important;
    font-family: 'Cairo', sans-serif;
    line-height: 1.5;
}

.bottom-left {
    position: absolute;
    margin-top: -5rem;
    left: 16px;
}

.rule_section .social_icon {
    filter: invert(45%) sepia(89%) saturate(1012%) hue-rotate(344deg) brightness(97%) contrast(97%);
    width: 22px;
    height: 22px;
    margin: 0.4rem 0;
}


/* End Contact Us Style Page */