/* Start Variables */
:root {
    --main-color: #F58E07;
    --secondary-color: #2E2E2E;
    --third-color: #9E9E9E;
    --fourth-color: #F9EAB0;
    --button-color-light: #F6931E;
    --button-color-bold: #FB7717;
    --main-duration: 0.3s;
}

/* End Variables */
/* Start Global Rules */
@font-face {
    font-family: "font_main";
    src: url('../fonts/Tajawal-Light.ttf');
}

@font-face {
    font-family: "font_bold";
    src: url('../fonts/Tajawal-Bold.ttf');
}

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

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

@font-face {
    font-family: "font_light";
    src: url('../fonts/Tajawal-Light.ttf');
}


* {
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow-x: none;
}


html {
    --scrollbarBG: #FEF3F5;
    --thumbBG: #17726A;
}

html,
body {
    height: 100%;
}

*:focus {
    outline: none;
}

button:focus,
a {
    outline: none;
}

a {
    color: #3B3B3B;
    text-decoration: none !important;
}

ul {
    margin: auto;
    padding: 0;
}

img {
    max-width: 100%;
}

input,
button {
    font-family: "font_main";
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 18px;
    font-family: "font_medium";
    margin: 0;
}

h3 {
    font-size: 16px;
    margin: 0;
    font-family: "font_medium";

}

h4 {
    font-size: 15px;
}

p {
    font-size: 15px;
    margin: 0;
    color: #a8a7a7;
    line-height: 30px;
    font-family: "font_light";
}

a,
button,
img,
.form-control {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

::selection {
    color: #fff !important;
    background-color: #00A59C !important;
}

body {
    background: #fff;
    font-family: "font_main";
    font-weight: 400;
    padding: 0;
    margin: auto;
    position: relative;
    z-index: 1;
    color: #17726A;
    overflow-x: hidden;

}

.pg_none {
    padding: 0;
    margin: 0;
}

main.app {
    overflow-x: hidden;
}

/* End Global Rules */

/* Start landing Css */
/* Start Header */
.main-container {
    width: 90%;
    margin: auto;
}

.top_bar {
    padding-top: 15px;
}

.header {
    position: relative;
    text-align: center;
    height: 740px;
}

.header::before {
    content: "";
    position: absolute;
    background-image: url("../img/MaskGroup.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.times {
    display: none;
}

.submit_action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar {
    padding-top: 15px;
}

.logo_1 {
    display: none;
}

.header .links_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .links_top ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 45px;
    position: relative;
    scroll-behavior: smooth;
}

.links_top ul li a {
    color: #fff;
    position: relative;
    transition: all .3s linear;
    font-family: "font_medium";
}

.links_top ul li a::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 2px;
    opacity: 0;
    top: 30px;
    margin: auto;
    right: 0px;
    left: 0px;
    transform: translateX(10px);
    transition: all .3s linear;
}

.links_top ul li a:hover {
    transition: all .3s linear;
}

.links_top ul li a:hover::after {
    opacity: 1;
    transform: translateX(0px);
    transition: all .3s linear;
}

.try_top {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.try_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, transparent 50%, #fff 50%);
    background-size: 200% 100.5%;
    background-position: right bottom;
    width: 100%;
    height: 52px;
    font-size: 14px;
    color: #FA8019;
    font-family: "font_medium";
    border-radius: 30px;
    border-left: 0.20em solid #fff;
    border: none;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
    transition: all .5s linear;
}

.try_top a:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    background-position: left bottom;
    transition: all .5s linear;
}

.sub_header {
    margin-top: 120px;
}

.text_top {
    display: flex;
    justify-content: center;
    text-align: right;
    flex-wrap: wrap;
}

.text_top h2 {
    width: 65%;
    font-size: 30px;
    margin-bottom: 35px;
    text-align: right;
    line-height: 50px;
    font-family: "font_regular";
}

.text_top p {
    font-size: 15px;
    line-height: 30px;
    width: 65%;
}

.download_sub {
    display: flex;
    justify-content: center;
    text-align: right;
    width: 65%;
    gap: 20px;
    margin-top: 70px;
}

.download_sub a {
    color: #fff;
    width: 100%;
    height: 60px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    border: 1px solid #fff;
    border-radius: 35px;
}

.download_sub a:hover {
    content: "";
    background-color: rgba(255, 255, 255, 0.199);
    border: 1px solid #fff;
    color: #fff;
    transition: 1s;
    border-radius: 10px;
}

.download_sub a span {
    font-size: 13px;
}

.download_sub a img,
.load-act a img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.download_sub a i {
    font-size: 25px;
}

.text_top p,
.text_top h2 {
    color: #fff;
}

.sub_img1 {
    margin-top: -115px;
}

/* End Header */
/* Start First Section */
.first_sec {
    margin-top: 160px;
}

.about_app {
    text-align: center;
    margin-bottom: 60px;
}


.about_app h2 {
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--secondary-color);
}

.about_app h2 span,
.screen_title h2 span,
.contact_us h2 span {
    color: #F58E07;
}

.about_app p {
    color: var(--secondary-color);
    font-size: 20px;
}

.about_option {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    background-color: #fff;
    box-shadow: 0px 10px 15px 2px #0000002b;
    box-sizing: border-box;
    border-radius: 5px;
    height: 440px;
    padding: 20px;
    gap: 40px;
    border: 1px solid transparent;
    width: 100%;
    transition: all .4s linear;
}

.about_option:hover {
    border-color: #FA8019;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .4s linear !important;
}

.about_option img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.about_option h3 {
    color: #FB7717;
    width: 100%;
    font-size: 25px;
}

.about_option p {
    height: 100px;
}

.special_op {
    margin-top: 120px;
    background-image: url("../img/MaskGroup2.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 760px;
    width: 100%;
    z-index: -1;
}

.option_txt {
    margin-top: 50px;
    width: 100%;
}

.option_txt ul {
    list-style: none;
    display: flex;
    justify-content: right;
    text-align: right;
    flex-wrap: wrap;
    width: 100%;
}

.special_img img {
    width: 100%;
    margin-top: 60px;
    object-fit: contain;
}

.circle_img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100px;
    height: 100px;
}

.option_txt ul img {
    object-fit: contain;
    width: 100px;
    height: 100px;
}

.option_txt ul li {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 20px;
    gap: 25px;
}

.option_txt ul li h3 {
    font-size: 22px;
    font-family: "font_regular";
}

.option_txt ul li h3,
.option_txt ul li p {
    color: #fff;

}

.option_txt ul li p {
    font-family: "font_light";
    font-size: 13px;
}

.screen_title {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.contact_us {
    margin-bottom: 80px;
}

.screen_title h2,
.contact_us h2 {
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--secondary-color);
}

.screen_title p,
.contact_us p,
.title_contact_us p {
    color: var(--secondary-color);
    font-size: 20px;
}

.clients_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients_img img {
    width: 100%;
}

.txt_op {
    width: 100%;
}

.txt_op h3 {
    line-height: 50px;
}

.title_contact_us {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 80px;
}

.title_contact_us h2 {
    color: #2E2E2E;
    font-size: 30px;
    margin-bottom: 30px;
}

.title_contact_us h2 span {
    color: #F58E07;
}

.title_contact_us p {
    font-size: 20px;
}

.contact_us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.contact_us::before {
    content: "";
    position: absolute;
    background-image: url("../img/dotsmap.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 580px;
    right: -25px;
    object-fit: contain;
    top: -50px;
    z-index: -1;
}

.contact_input {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    gap: 10px;
}

.contact_input input {
    width: 40%;
    height: 60px;
    padding: 30px;
    margin-bottom: 10px;
    margin-left: 0px;
    border-radius: 0px 50px 50px 0px !important;
    border: 1px solid #9e9e9ecc;
}

.contact_input .input-form:nth-of-type(2) input{
    border-radius: 50px 0px 0px 50px !important;
}
.contact_us span {
    width: 79%;
}
.contact_input textarea {
    max-width: 80%;
    height: 200px;
    padding: 30px;
    resize: none;
    margin-bottom: 10px;
    border-radius: 35px;
    border: 1px solid #9e9e9ecc;
}

.form-control::placeholder {
    color: #AAAAAA;
    font-size: 14px;
    word-spacing: 1px;
    margin-right: 20px;
    transition: all 0.3s linear;
}

.form-control:hover::placeholder {
    font-size: 16px;
    transition: all 0.3s linear;
}

.form-control:focus {
    color: #3B3B3B;
    font-size: 14px;
    background-color: #fff;
    border-color: #FA8019;
    outline: 0;
    box-shadow: 0 0 0 0.1rem #fa7e1990;
}

.form-control:focus-within {
    color: #2E2E2E;
}

.btn {
    display: block;
    background: linear-gradient(to right, #fff 50%, #F58E07 50%);
    background-size: 200% 100.5%;
    background-position: right bottom;
    width: 215px;
    height: 60px;
    color: #fff;
    font-family: "font_medium";
    border-radius: 50px;
    border-left: 0.20em solid #fff;
    border: 1px solid #FA8019;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
    transition: all .5s linear;
}

.btn:hover {
    border: 1px solid #FA8019;
    background-color: #fff;
    color: #FA8019;
    background-position: left bottom;
    transition: all .5s linear;
}

.last_sec {
    background-image: url("../img/download.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    overflow: hidden;
    margin-top: 50px;
}

.dload_app {
    margin-top: 80px;
}

.dload_app h2 {
    font-size: 30px;
    margin-bottom: 35px;
}


.dload_app p {
    font-size: 21px;
}

.dload_img img {
    margin-right: 20px;
}

.dload_app h2,
.dload_app p {
    color: #fff;
}

.load-act {
    display: flex;
    justify-content: right;
    text-align: right;
    width: 100%;
    gap: 40px;
    margin-top: 45px;
}

.load-act a {
    color: #fff;
    width: 180px;
    height: 60px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    border-radius: 35px;
    border: 1px solid #fff;
}

.load-act a:hover {
    content: "";
    background-color: rgba(255, 255, 255, 0.199);
    color: #fff;
    transition: 1s;
    border-radius: 10px;
}

.load-act a i {
    font-size: 25px;
}

.foot {
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/Rectangle\ 29379.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.copyright p {
    font-family: "font_medium";
    font-size: 13px;
    color: #F6931E;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.icons i {
    font-size: 16px;
    color: #9E9E9E;
    border: 1px solid #9E9E9E;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s linear;
}

.icons a {
    transition: all .3s linear;
}

.icons a:hover i {
    background-color: #F58E07;
    color: #fff;
    border-radius: 50%;
    border: none;
    transition: all .3s linear;
}

.last_foot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.last_foot p {
    font-family: "font_medium";
    font-size: 13px;
}

.last_foot p i {
    color: red;
}



/* End First Section */

/* End landing Css */

#captchaBackground {
    height: 220px;
    width: 250px;
    background-color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#captchaHeading {
    color: white;
}

#captcha {
    height: 80%;
    width: 80%;
    font-size: 30px;
    letter-spacing: 3px;
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#submitButton {
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
}

#refreshButton {
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
}

#textBox {
    height: 25px;
}

.incorrectCaptcha {
    color: #FF0000;
}

.correctCaptcha {
    color: #7FFF00;
}


#captchaBackground {
    height: 263px;
    width: 50%;
    padding: 20px;
    background-color: transparent;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input#textBox {
    width: 56%;
    border-radius: 6px !important;
    margin: 20px auto;
    border: 1px solid #2e2e2e65;
}


#refreshButton {
    color: #fff;
    background-color: #000;
    border: 0px;
    font-weight: bold;
    height: 50px;
    padding: 7px 25px;
    border-radius: 5px;
}


.input-form {
    width: 39%;
}
.input-form input {
    width: 100% ;
}
