/* Start Variables */
:root {
    --main-color: #3CD732;
    --secondary-color: #D8D8D8;
    --background-color: #505050;
    --paragraph-color: #AAAAAA;
    --third-color: #828282;
    --main-duration: 0.3s;
}

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

@font-face {
    font-family: "font_bold";
    src: url('../fonts/GESSTwoBold.otf');
}

@font-face {
    font-family: "font_book";
    src: url('../fonts/ExpoArabic-Book.ttf');
}

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


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_bold";
    margin: 0;
}

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

}

h4 {
    font-size: 15px;
}

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

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;
}


body {
    overflow-x: hidden;
}

/* End Global Rules */
/* Start Landing CSS */

/* Start Header */
.header {
    position: relative;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
;
}

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

.top-bar {
    padding-top: 15px;
    height: 90px;
    background-color: #fff;

}

.top-bar .main-container .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-container {
    width: 90%;
    margin: auto;
}

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

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

.header .links-top ul li:last-of-type {
    display: none;
    font-family: 'font_main';
}

.links_drop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    scroll-behavior: smooth;
}

.links_drop i {
    font-size: 20px;
}

.lg-change {
    width: 60px;
    display: flex;
    justify-content: center;
}

.lg-change>a {
    background-color: #fff;
    width: 100%;
    height: 45px;
    gap: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    color: #3CD732;
    font-family: 'font_book';
}

.lg-change a:hover {
    border: 1px solid #3CD732;
    background-color: #3CD732;
    color: #fff;
}



.last-top {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.last-top>span,
.links-top ul a {
    color: #fff;
}

.lang_menu {
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: none;
}


.last-top>a,
.drop-list>a {
    color: #3CD732;
    background-color: #fff;
    width: 50%;
    height: 45px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
}

.top-bar .drop-list>a {
    background-color: #3CD732;
    color: #fff;
    border: 1px solid #3CD732;
    transition: all 0.3s linear;

}
.top-bar .drop-list>a:hover {
    background-color: #fff;
    color: #3CD732;
    border: 1px solid #3CD732;
    transition: all 0.3s linear;
}

.drop-list {
    width: 150px;
    position: relative;
}

.drop-list>a {
    width: 100%;
}

.main-drop-list {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    display: none;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 2px 9px #0000002b;
}

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

.main-drop-list ul li a {
    padding: 10px 20px;
    border-bottom: 1px solid #D8D8D8;
    text-align: center;
    font-size: 14px;
    color: #3CD732;
    font-family: 'font_main';
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-drop-list ul li a:hover {
    background-color: #3CD732;
    color: #fff;
}

.main-drop-list ul li:last-of-type {
    border-bottom: none;
}

.last-top>a:hover,
.drop-list>a:hover {
    content: "";
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: 1s;
}

.last-top span img {
    margin-left: 3px;
}

#times-ican {
    display: none;
}

.sub-header {
    margin-top: 120px;
}

.text-top {
    display: flex;
    justify-content: right;
    text-align: right;
    flex-wrap: wrap;
    margin-right: 40px;
}

.text-top h2 {
    width: 90%;
    font-size: 22px;
    margin-bottom: 15px;
}

.text-top p {
    font-size: 17px;
    line-height: 31px;
    width: 100%;
}

.text-top p,
.text-top h2 {
    color: #fff;
}

.sub-img1 {
    width: 100%;
    margin-top: 70px;
    margin-right: -50px;
}


/* End Header */
/* Start Section */
.special-op {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}


.special-op h2 {
    color: #3CD732;
    margin: 30px;
    font-size: 22px;
}

.special-op p {
    width: 40%;
    margin: auto;
}

.sub_second_bar {
    margin-top: 20px;
    margin-bottom: 60px;
}

.option_bar {
    border: solid 1px #D8D8D8;
    border-radius: 5px;
    text-align: center;
    gap: 20px;
    background-color: #fff;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 280px;
    padding: 20px;
    transition: all .4s linear;
}

.option_bar:hover {
    border: 1px solid #3CD732;
    box-shadow: 0px 2px 9px #0000002b;
    box-sizing: border-box;
    transition: all .4s linear;
}

.option_bar h3 {
    color: #3CD732;
    font-family: "font_main";
    width: 100%;
}

.option_bar p {
    height: 100px;
}

.third_second_bar {
    width: 100%;
    margin-top: 100px;
    background-image: url('../img/Rectangle.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 20px;
    z-index: -1;
}

.third_second_bar::before {
    content: "";
    position: absolute;
    background-image: url("../img/MaskGroup1.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 180px;
    height: 285px;
    right: -30px;
    top: -200px;
    z-index: -1;
}

.third_second_bar::after {
    content: "";
    position: absolute;
    background-image: url("../img/MaskGroup1.png");
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(-1);
    width: 180px;
    height: 280px;
    left: -25px;
    bottom: 0px;
    z-index: -1;
}

.op_bar ul li {
    display: block;
    width: 100%;
    position: relative;
    padding-right: 30px;
    line-height: 25px;
    margin-top: 35px;
    color: #828282;
}

.op_bar ul li::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../img/question-mark.png);
    background-size: contain;
    right: 0px;
    top: 2px;
    background-repeat: no-repeat;
}

.op_bar h2 {
    color: #3CD732;
    margin-bottom: 20px;
    font-size: 22px;
}

.img_op_bar {
    text-align: left;
}

.title_third_bar {
    width: 100%;
    margin-top: 80px;
    text-align: center;
}

.title_third_bar h2 {
    color: #3CD732;
    margin-bottom: 20px;
    font-size: 22px;
}

.title_third_bar p {
    width: 40%;
    margin: auto;
}

.sub_third {
    margin-top: 65px;
    position: relative;
}

.sub_third:nth-of-type(3)::before {
    right: auto;
    left: 0px;
    transform: scaleX(-1);
}

.sub_third::before {
    content: "";
    position: absolute;
    background-image: url("../img/question-mark\ \(1\).png");
    background-size: cover;
    width: 120px;
    height: 180px;
    right: 0;
    top: -100px;
}

.sub_third::before:nth-child(2) {
    content: "";
    position: absolute;
    background-image: url("../img/question-mark\ \(1\).png");
    background-size: cover;
    width: 120px;
    height: 180px;
    right: 0;
    top: -100px;
}

.one_article {
    text-align: right;
}


.one_article h3 {
    color: #3CD732;
    margin-bottom: 20px;
}

.one_article p {
    width: 100%;
}

.one_article img {
    margin-bottom: 15px;
}

.clients_img {
    width: 100%;
    height: 100px;
}

.clients_img img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.clients {
    margin-top: 50px;
    background-image: url("../img/Group23126.png");

    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

form .cont_msg {
    width: 100%;
}

.form-control::placeholder {
    color: #AAAAAA;
    font-size: 14px;
    word-spacing: 1px;
}

input.form-control.aos-init.aos-animate {
    color: #828282;
}

.btn {
    display: block;
    height: 45px;
    width: 160px;
    border: 1px solid #3CD732;
    color: #3CD732;
    background-color: #fff;
    transition: all 0.3s linear;
}

.btn:hover {
    background-color: #3CD732;
    color: #fff;
    transition: all 0.3s linear;
}

.submit_action {
    text-align: -webkit-left;
}

.icon_links a i {
    font-size: 30px;
    color: #fff;
    margin-left: 10px;
    text-align: center;
}

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

.footer .links_foot {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer .links_foot ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer .links_foot ul li a {
    color: #fff;
}

.footer .last_foot {
    width: 100%;
    background: #3CD732;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    min-height: 80px;
    z-index: -1;
}

.last2_foot {
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last_logo,
.sec_logo {
    display: flex;
    gap: 10px;
}

.last_logo {
    display: flex;
    justify-content: right;
}

.sec_logo {
    display: flex;
    justify-content: left;
}


main.app {
    overflow-x: hidden;
    margin-top: 10%;
}

.logo_1 {
    display: none;
}


/* .logo1{
    position: absolute;
     right: 0;
      top: 0;
      width:260px
} */

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

.img_foot {
    padding-bottom: 10px;
}


/* End Section */
/* Start Navbar & FooterNav hover */
.links-top ul li a,
.links_foot ul li a {
    position: relative;
    transition: all .3s linear;
}

.links-top ul li a::after,
.links_foot ul li a::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 5px;
    height: 5px;
    opacity: 0;
    top: 25px;
    margin: auto;
    right: 0;
    left: 0px;
    border-radius: 100%;
    transform: translateY(20px);
    transition: all .3s linear;
}




.links-top ul li a:hover::after,
.links_foot ul li a:hover::after {
    opacity: 1;
    transform: translateY(0px);
    transition: all .3s linear;
}



.links-top ul li a::after{
    width: 8px;
    height: 8px;
    left: auto;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
/* End Navbar & FooterNav hover */

/* End Landing CSS */
.modal-header {
    border: none;
}

.input-form .form-control {
    height: 50px;
}

.form-control:focus {

    box-shadow: none;
}

.input-form {
    margin: 10px 0;
}

.modal-body form {
    margin: 50px;
}

.ctm-btn {
    width: 70%;
    height: 55px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: auto;
}

.ctm-btn:hover {
    color: #176911;
    color: #fff;
}

.input-form {
    position: relative;
}

.input-form .form-control {

    -webkit-appearance: none !important;
    appearance: none !important;
}

.arrow-select::after {
    content: "";
    width: 17px;
    height: 17px;
    background-image: url(../img/arrow2.png);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: 20px;
    left: 31px;
}


.sand-message img {
    max-width: 300px;
}

.sand-message {
    margin: 0px 0px 100px;
}

.sand-message h2 {
    margin: 18px 0;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.sand-message p {
    color: var(--main-color);
    font-size: 22px;
}

.success {
    height: 130px !important;
}


.header-content{
    width: auto;
    height: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content-container{
    width: 700px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: bold;

}

.header-content h1 span{
    color: #3CFF03;
}

.header-content p{
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.header-content a{
    color: #42C63A;
    font-size: 16px;
    text-decoration: underline;
    width: 150px;
    height: 45px;
    align-content: center;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
}
.header-content a:hover{
    background-color: #42C63A;
    color: #fff;
    border: 1px solid #42C63A;
}
