/* Start Global Variablse */
:root {
    --min-color: #2ca46c;
    --header-color: #ffffff;
    --paragraph-color: #323641;
    --sec-color: #ecfbf8;
    --btn-color: #1f8654;
    --third-color: #33a36e;
    --trans-duration: 0.3s;
    --min-padding: 60px 0;
}
::selection {
    background-color: var(--min-color);
    color: white;
}
  /* End Global Variablse */
  /* Start Global Rulse */
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: -4;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
  /* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
.container {
    width: 730px;
}
}
  /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.container {
    width: 950px;
}
}
  /* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.container {
    width: 1070px;
}
}
  /* End Global Rulse */
  /* Start Main Components */
.main-component h2,
.main-component .right {
    font-size: 25px;
    font-weight: 700;
    color: var(--paragraph-color);
    line-height: 1.8;
    position: relative;
    width: fit-content;
}
.main-component h2 {
    margin: auto;
}
.main-component h2 span {
    color: var(--min-color);
}
.main-component p {
    font-size: 14px;
    font-weight: 300;
    color: #787878;
    line-height: 1.8;
    position: relative;
    width: fit-content;
    margin: auto;
    margin-bottom: 75px;
}
.main-component .p-right {
    margin: 0;
}
.main-component .right {
    padding: 10px 0;
    margin: 0;
    margin-bottom: 40px
}
.main-component .right span {
    color: var(--min-color);
}
button {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--btn-color);
    border: 1px solid var(--sec-color);
    color: var(--header-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--trans-duration);
    display: flex;
    align-items: center;
    transition: var(--trans-duration);
}
  /* End Main Components */
  /* Start Header Section */
.header {
    background-color: var(--header-color);
    position: relative;
    height: 125px;
    padding: 10px 0;
    z-index: 999;
}
@media (max-width: 767px) {
    .header {
        height: 60px;
        margin-bottom: 0;
    }
}
.header .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.header .nav-bar .logo {
    max-width: 100%;
    cursor: pointer;
}
.header .nav-bar .logo img {
    width: 120px;
}
.header .nav-bar .list-items .menu {
    color: var(--min-color);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    display: none;
}
@media (max-width: 767px) {
    .header .nav-bar .list-items .menu {
        display: block;
        font-size: 20px;
    }
    .header .nav-bar .list-items .menu:hover + ul {
        display: flex;
        flex-direction: column;
        padding: 20px;
        width: 100%;
        height: 300px;
        background-color: var(--min-color);
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 4;
    }
    .header .nav-bar .list-items .menu:hover + ul::after {
        content: "";
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent var(--min-color) transparent;
        position: absolute;
        left: 12px;
        top: -19px;
    }
    .header .nav-bar .list-items .menu:hover + ul li {
        padding: 10px;
        text-align: center;
        background-color: var(--sec-color);
        margin-bottom: 5px;
    }
}
.header .nav-bar .list-items ul {
    padding: 10px;
    margin-right: -50px;
}
@media (max-width: 767px) {
    .header .nav-bar .list-items ul {
        display: none;
    }
}
.header .nav-bar .list-items ul li {
    display: inline-block;
    padding: 12px 5px;
    margin-left: 15px;
    position: relative;
}
.header .nav-bar .list-items ul li a {
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: 400;
    word-spacing: 2px;
    transition: var(--trans-duration);
}
.header .nav-bar .list-items ul .activ a {
    color: var(--min-color);
}
.header .nav-bar .list-items ul li .togel {
    color: var(--min-color);
    cursor: pointer;
}
@media (max-width: 767.2px) {
    .header .nav-bar .list-items ul .activ a,
    .header .nav-bar .list-items ul li .togel  {
        color: var(--paragraph-color);
    }
}
.header .nav-bar .list-items ul li::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--btn-color);
    position: absolute;
    right: 5px;
    bottom: -5px;
    transition: var(--trans-duration);
}
.header .nav-bar .list-items ul li:hover::after {
    width: calc(100% - 5px);
}
.header .nav-bar .left-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: -50px;
}
@media (max-width: 992px) {
    .header .nav-bar .left-nav {
        display: none;
    }
}
.header .nav-bar .left-nav button:hover {
    background-color: var(--third-color);
    border: 1px solid var(--third-color);
    color: var(--sec-color);
}
.header .nav-bar .left-nav button a {
    color: var(--header-color);
}
.header .nav-bar .left-nav .lang {
    margin-right: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--min-color);
    cursor: pointer;
}
.header .nav-bar .left-nav .lang span,
.header .nav-bar .left-nav .lang i {
    padding: 2.5px;
}
/* End Header Section */
/* Start Landing Section */
.landing {
    background-color: var(--header-color);
    padding: var(--min-padding);
}
.landing .contents {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 992px) {
    .landing .contents {
        flex-direction: column;
        align-items: center;
    }
}
.landing .contents .content {
    width: 450px;
}
@media (max-width: 992px) {
    .landing .contents .content  {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .landing .contents .content {
        max-width: 100%;
    }
}
.landing .contents .content h1 {
    font-size: 33px;
    line-height: 1.6;
    padding-top: 25px;
    margin: 0;
}
@media (max-width: 992px) {
    .landing .contents .content h1 {
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    .landing .contents .content h1 {
        font-size: 25px;
    }
}
.landing .contents .content p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #787878;
    margin: 35px 0;
}
.landing .contents .content .btn-landing {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 992px) {
    .landing .contents .content .btn-landing {
        justify-content: center;
    }
}
.landing .contents .content .btn-landing button {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 12px;
    background-color: var(--third-color);
    border: 1px solid var(--hird-color);
}
.landing .contents .content .btn-landing .n-activ {
    background-color: var(--header-color);
    border: 1px solid var(--third-color);
    color: var(--third-color);
}
.landing .contents .imgs {
    flex: 1;
}
@media (max-width: 767px) {
    .landing .contents .imgs {
        max-width: 100%;
    }
}
.landing .contents .imgs img {
    max-width: 500px;
}
@media (max-width: 767px) {
    .landing .contents .imgs img {
        max-width: 100%;
    }
}
/* End Landing Section */
/* Start Numbers Section */
.numbers {
    background-color: var(--header-color);
    padding: var(--min-padding);
}
.numbers .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    padding-bottom: 30px;
}
.numbers .boxes .box {
    background-color: #fff;
    box-shadow: 0 8px 12px rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .numbers .boxes .box .icon {
        width: 50%;
        text-align: center;
    }
}
.numbers .boxes .box .icon i {
    background-color: var(--sec-color);
    padding: 20px;
    border-radius: 50%;
    font-size: 25px;
    color: var(--third-color);
}
@media (max-width: 767px) {
    .numbers .boxes .box .text {
        width: 50%;
        text-align: center;
    }
}
.numbers .boxes .box .text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #787878;
}
.numbers .boxes .box .text span {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
}
.numbers .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 992px) {
    .numbers .content {
        flex-direction: column;
        align-items: center;
    }
}
.numbers .content .imgs {
    flex: 1;
}
.numbers .content .imgs-mob {
    display: none;
}
@media (max-width: 767px) {
    .numbers .content .imgs  {
        display: none;
    }
}
@media (max-width: 767px) {
    .numbers .content .imgs-mob  {
        display: block;
        max-width: 100%;
    }
}
.numbers .content .imgs img {
    max-width: 400px;
}
@media (max-width: 767px) {
    .numbers .content .imgs-mob img {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .numbers .content .imgs img {
        display: none;
    }
}
.numbers .content .section {
    width: 500px;
    max-width: 100%;
}
@media (max-width: 992px) {
    .numbers .content .section .main-component .right {
        margin:  20px auto;
    }
}
.numbers .content .section .boxes-sec .box-sec {
    display: flex;
    gap: 30px;
    padding: 20px;
    margin-bottom: 50px;
}
.numbers .content .section .boxes-sec .box-sec:hover {
    box-shadow: 0 8px 12px rgb(0 0 0 / 10%);
}
@media (max-width: 992px) {
    .numbers .content .section .boxes-sec .box-sec{
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
.numbers .content .section .boxes-sec .box-sec .icon i {
    font-size: 25px;
    color: var(--third-color);
}
.numbers .content .section .boxes-sec .box-sec .text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.numbers .content .section .boxes-sec .box-sec .text p {
    font-size: 14px;
    color: #787878;
    line-height: 1.8;
    margin: 0;
    margin-top: 15px;
}
/* End Numbers Section */
/* Start Works Section */
.works {
    background-color: var(--header-color);
}
.works .section {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 992px) {
    .works .section  {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 992px) {
    .works .section .content .main-component .right {
        margin:  20px auto;
    }
}
.works .section .content .boxes-sec {
    padding: 15px;
}
.works .section .content .boxes-sec .box-sec {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.works .section .content .boxes-sec .box-sec:hover {
    box-shadow: 0 8px 12px rgb(0 0 0 / 10%);
}
@media (max-width: 992px) {
    .works .section .content .boxes-sec .box-sec {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
.works .section .content .boxes-sec .box-sec .icon i {
    font-size: 25px;
    color: var(--third-color);
}
.works .section .content .boxes-sec .box-sec .text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.works .section .content .boxes-sec .box-sec .text p {
    font-size: 14px;
    color: #787878;
    line-height: 1.8;
    margin: 0;
    margin-top: 15px;
}
.works .section .imgs {
    flex: 1;
}
@media (max-width: 767px) {
    .works .section .imgs {
        max-width: 100%;
    }
}
.works .section .imgs img {
    width: 550px;
}
@media (max-width: 767px) {
    .works .section .imgs img {
        max-width: 100%;
    }
}
/* End Works Section */
/* Start Services Section */
.services {
    background-color: var(--header-color);
    padding: var(--min-padding);
}
.services .section {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 992px) {
    .services .section  {
        flex-direction: column;
        align-items: center;
    }
}
.services .section .content .main-component .right {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .services .section .content .main-component .right {
        margin:  20px auto;
    }
}
@media (max-width: 992px) {
    .services .section .content .main-component .p-right {
        margin: auto;
    }
}
@media (max-width: 767px) {
    .services .section .content .main-component .p-right {
        margin: auto;
    }
}
.services .section .content .boxes-sec {
    padding: 15px;
}
.services .section .content .boxes-sec .box-sec {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.services .section .content .boxes-sec .box-sec:hover {
    box-shadow: 0 8px 12px rgb(0 0 0 / 10%);
}
@media (max-width: 992px) {
    .services .section .content .boxes-sec .box-sec {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
.services .section .content .boxes-sec .box-sec .icon i {
    font-size: 25px;
    color: var(--third-color);
}
.services .section .content .boxes-sec .box-sec .text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.services .section .content .boxes-sec .box-sec .text p {
    font-size: 14px;
    color: #787878;
    line-height: 1.8;
    margin: 0;
    margin-top: 15px;
}
.services .section .content button {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: var(--third-color);
}
.services .section .imgs {
    flex: 1;
}
.services .section .imgs-mob {
    display: none;
}
@media (max-width: 992px) {
    .services .section .imgs-mob {
        display: block;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .services .section .imgs-mob {
        display: block;
        max-width: 100%;
    }
}
@media (max-width: 992px) {
    .services .section .imgs {
        display: none;
    }
}
@media (max-width: 767px) {
    .services .section .imgs {
        display: none;
    }
}
.services .section .imgs img {
    width: 500px;
}
@media (max-width: 992px) {
    .services .section .imgs-mob img {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .services .section .imgs-mob img {
        max-width: 100%;
    }
}
/* End Services Section */
/* Start Projects Section */
.projects {
    background-color: var(--header-color);
}
.projects .section {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 992px) {
    .projects .section  {
        flex-direction: column;
        align-items: center;
    }
}
.projects .section .content .main-component .right {
    margin-bottom: 10px;
}
@media (max-width: 992px) {
    .projects .section .content .main-component .right {
        margin:  20px auto;
    }
}
.projects .section .content {
    flex: 1;
}
.projects .section .content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}
@media (max-width: 992px) {
    .projects .section .content h3 {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .projects .section .content h3 {
        text-align: center;
    }
}
.projects .section .content p {
    font-size: 14px;
    color: #787878;
    line-height: 1.8;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .projects .section .content p {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .projects .section .content p {
        text-align: center;
    }
}
.projects .section .content .boxes {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (max-width: 992px) {
    .projects .section .content .boxes {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .projects .section .content .boxes {
        justify-content: center;
    }
}
.projects .section .content .boxes .box i {
    font-size: 25px;
    padding: 15px 30px;
    background-color: var(--sec-color);
    color: var(--min-color);
    border-radius: 15px;
}
.projects .section .content .boxes .box p {
    padding: 15px;
    margin: 0;
    width: fit-content;
}
.projects .section .imgs {
    flex: 1;
}
@media (max-width: 767px) {
    .projects .section .imgs {
        max-width: 100%;
    }
}
.projects .section .imgs img {
    width: 500px;
}
@media (max-width: 767px) {
    .projects .section .imgs img {
        max-width: 100%;
    }
}
/* End Projects Section */
/* Start Partners Section */
.partners {
    background-color: var(--header-color);
    padding: var(--min-padding);
}
.partners .main-component p {
    margin-bottom: 30px;
}
.partners .imgs {
    padding: 10px;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    align-items: center;
}
.partners .imgs img {
    max-width: 100%;
    padding: 10px;
}
.partners .imgs img:hover {
    box-shadow: 0 8px 12px rgb(0 0 0 / 10%);
    border-radius: 10px;
}
/* End Partners Section */
/* Start Blog Section */
.blog {
    background-color: var(--header-color);
}
.blog .content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
}
.blog .content .box .imgs{
    max-width: 100%;
}
.blog .content .box .imgs img {
    width: 100%;
}
.blog .content .box .text {
    padding: 10px;
}
.blog .content .box .text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #787878;
}
.blog .content .box .text h4 {
    font-size: 14px;
    line-height: 1.8;
}
.blog button {
    font-size: 14px;
    font-weight: 400;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background-color: var(--third-color);
}
@media (max-width: 767px) {
    .blog button {
        width: 100%;
    }
}
/* End Blog Section */
/* Start Question Section */
.question {
    background-color: var(--header-color);
    padding: var(--min-padding);
}
.question .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30;
}
@media (max-width: 992px) {
    .question .content {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .question .content {
        flex-direction: column;
    }
}
.question .content .contact {
    width: 500px;
}
@media (max-width: 992px) {
    .question .content .contact {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .question .content .contact {
        max-width: 100%;
    }
}
.question .content .contact .main-component .right {
    margin-bottom: 10px;
}
@media (max-width: 992px) {
    .question .content .contact .main-component .right {
        margin: 0 auto 10px;
    }
}
@media (max-width: 767px) {
    .question .content .contact .main-component .right {
        margin: 0 auto 10px;
    }
}
.question .content .contact .main-component .p-right {
    margin-bottom: 10px;
    line-height: 1.8;
}
@media (max-width: 992px) {
    .question .content .contact .main-component .p-right  {
        margin: 0 auto 10px;
    }
}
@media (max-width: 767px) {
    .question .content .contact .main-component .p-right  {
        margin: 0 auto 10px;
    }
}
.question .content .contact .main-component .que {
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    color: #787878;
}
@media (max-width: 992px) {
    .question .content .contact .main-component .que  {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .question .content .contact .main-component .que  {
        text-align: center;
    }
}
.question .content .contact button {
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 12px;
    background-color: var(--third-color);
    border: 1px solid var(--hird-color);
}
@media (max-width: 992px) {
    .question .content .contact button  {
        margin: 20px auto;
    }
}
@media (max-width: 767px) {
    .question .content .contact button  {
        margin: 20px auto;
    }
}
.question .content .text {
    flex: 1;
}
@media (max-width: 992px) {
    .question .content .text {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .question .content .text {
        width: 100%;
        max-width: 100%;
    }
}
.question .content .text .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f4f4f4;
}
.question .content .text .box p {
    font-size: 14px;
}
.question .content .text .box i {
    color: var(--third-color);
}
/* End Question Section */
/* Start contact Section */
.contacte {
    background-color: #f9fafc;
    padding: 10px;
}
.contacte p {
    font-size: 12px;
    font-weight: 300;
    color: #787878;
    word-spacing: 2px;
    text-align: center;
    line-height: 1.8;
}
/* End contact Section */
/* Start Footer Section */
.footer {
    padding: 30px 0 0;
    background-color: var(--header-color);
    position: relative;
}
.footer .content {
    display: grid;
    grid-template-columns: 400px repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: var(--thrd-color);
    line-height: 1.6;
}
@media (max-width: 767px) {
    .footer .content {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}
.footer .content .box ul li {
    cursor: pointer;
    padding: 8px 12px;
    transition: var(--trans-duration);
    color: #787878;
    text-align: right;
}
.footer .content .box ul li:hover {
    background-color: var(--sec-color);
}
@media (max-width: 767px) {
    .footer .content .box ul li  {
        text-align: center;
    }
}
.footer .content .box ul .min-color {
    color: var(--third-color);
    font-weight: bold;
    text-align: right;
}
@media (max-width: 767px) {
    .footer .content .box ul .min-color {
        text-align: center;
    }
}
.footer .content .box .min-color {
    color: var(--third-color);
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}
@media (max-width: 767px) {
    .footer .content .box .min-color {
        text-align: center;
    }
}
.footer .content .box p {
    color: #787878;
    font-size: 14px;
    line-height: 1.8;
    text-align: right;
}
@media (max-width: 767px) {
    .footer .content .box p {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .footer .content .box h4 {
        text-align: center;
    }
}
.footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1200px) {
    .footer .social-media {
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
    .footer .social-media {
        justify-content: center;
    }
}
.footer .social-media i {
    margin-left: 15px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--paragraph-color);
    color: var(--header-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans-duration);
}
.footer .social-media i:hover {
    background-color: var(--third-color);
}
.footer .copyright {
    font-size: 18px;
    padding: 20px;
    margin: 0;
    color: var(--paragraph-color);
    background-color: #f9fafc;
    margin-top: 15px;
    text-align: center;
    word-spacing: 2px;
    line-height: 1.8;
    font-weight: 400;
    border-top: 1px solid #f4f4f4;
}
@media (max-width: 767px) {
    .footer .copyright {
        font-size: 11px;
    }
}
.footer .copyright span {
    color: var(--third-color);
    font-weight: 800;
}
/* End Footer Section */
