body {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: hsl(228, 15%, 20%);
    color: hsl(228, 8%, 65%);
}

:root {
    --greenColor: #00cc8f;
    --two-color: #278b6d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* start header  */

.navbar .navbar-toggler {
    color: #777;
    font-size: 25px;
    border-color: #777;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .dropdown_style {
        color: #fff;
        border-radius: 5px;
    }
}

/* end header  */

/* start slider */

.slide {
    height: calc(100vh - 60px);
    margin-top: 60px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;

}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* end slider */

/* start Definition of ERP  */
.definition {
    /* padding-top: 60px;
    padding-bottom: 60px; */
    background-color: hsl(228, 15%, 15%)
}

.definition .definition_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.definition .definition_container .text {
    width: 48%;
}

@media (max-width:767px) {
    .definition .definition_container .text {
        width: 100%;
        /* margin: 15px; */
    }
}

.definition .definition_container .text h6 {
    margin-bottom: 15px;
    color: var(--greenColor);
    letter-spacing: 2px;
}

.definition .definition_container .text h3 {
    color: #1e73be;
    margin-bottom: 20px;
}

.definition .definition_container .text h5 {
    max-width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.6;
}

@media (max-width:1230px) {
    .definition .definition_container .text h5 {
        font-size: 16px;
    }
}

.definition .definition_container .text p {}

.definition .definition_container .video {
    width: 48%;
}

@media (max-width:767px) {
    .definition .definition_container .video {
        width: 100%;
    }
}

.definition .definition_container .video iframe {
    width: 100%;
}

@media (max-width:678px) {
    .definition .definition_container .video iframe {
        width: 100%;
        height: 220px;
    }
}

/* end Definition of ERP  */

/* start services */

.section {
    padding-block: 5rem 2rem;
}

@media (min-width: 1023px) {

    .section {
        padding-block: 7rem 2rem;
    }

}

@media (min-width: 1023px) {
    .section__subtitle {
        font-size: var(--normal-font-size);
    }
}


.section__subtitle {
    font-size: .875rem;
    margin-bottom: 0.25rem;
    text-align: center;
    color: hsl(228, 8%, 95%);
    font-weight: 600;
}

.section__subtitle span {
    color: #00cc8f;
}

@media (min-width: 1023px) {
    .section__subtitle {
        font-size: 1rem;
    }
}


.section__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: hsl(228, 8%, 95%);
    font-weight: 600;
}

.services__container {
    row-gap: 2rem;
    padding-block: 1rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .services__container {
        grid-template-columns: 360px;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .services__container {
        grid-template-columns: repeat(2, 352px);
    }
}


@media (min-width: 1152px) {
    .services__container {
        grid-template-columns: repeat(3, 352px);
        padding-block: 2.5rem 4rem;
        justify-content: center;
        margin-inline: auto;
    }
}

.services__card {
    background-color: hsl(228, 15%, 15%);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 2px solid hsl(228, 15%, 15%);
    transition: border 0.4s;
    /*اضافهمنعنديعلشانتظبطفيالنصف*/
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-transition: border 0.4s;
    -moz-transition: border 0.4s;
    -ms-transition: border 0.4s;
    -o-transition: border 0.4s;
}

@media (min-width: 1152px) {
    .services__card {
        padding: 3.5rem 2rem;
        text-align: center;
    }
}

.services__icon {
    display: block;
    font-size: 4rem;
    color: var(--greenColor);
    margin-bottom: 0.75rem;
}

.services__title {
    font-size: 24px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: hsl(228, 8%, 95%);
}

.services__card:hover {
    border: 2px solid var(--greenColor);
}

.services__card .services__description {
    line-height: 1.7;
    text-align: center;
    color: hsl(228, 8%, 65%);
}

/* end services */

/* start our clients  */

.our_clients {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-color: darkgray;
}

.our_clients .container {
    height: 350px;
    margin: auto;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.our_clients .slide_container {
    display: flex;
    width: calc(250px * 18);
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 9));
        -webkit-transform: translateX(calc(-250px * 9));
        -moz-transform: translateX(calc(-250px * 9));
        -ms-transform: translateX(calc(-250px * 9));
        -o-transform: translateX(calc(-250px * 9));
    }
}

.our_clients .slide_container .slide_image {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;

}

.our_clients .slide_container .slide_image img {
    width: 100%;
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
}

.our_clients .slide_container .slide_image img:hover {
    transform: translateZ(20px);
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
}

/* end our clients  */




/* start cards  */

.color_frist {
    color: var(--greenColor);
}

.cards .card {
    background-color: hsl(228, 15%, 15%);
    color: hsl(228, 8%, 65%);
}

/* @media (max-width:768px) {
    .cards .card {
        width: 45%;
    }
} */

/* @media (max-width:600px) {
    .cards .card {
        width: 100%;
    }
} */

.cards .card .card-title {
    color: #71a7b1;
    font-size: 24px;
}

/* end cards  */

/* start slider Swiper  */

.slider_clients {
    background-color: hsl(228, 15%, 15%);
    padding-bottom: 80px;
}

#my-swiper {
    height: 400px;
    width: 100%;
    /* padding: 50px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0px;
}

.divider {
    width: 30%;
    max-width: 25rem;
    height: 2.5px;
    border-radius: 20px;
    background: #f1f1f1;
    margin: 10px auto;
    margin-bottom: 50px;
}


.swiper-heading {
    color: #4d4d4d;
    margin-bottom: 20px;
    text-align: center;
}

.swiper-slide {
    position: relative;
    max-width: 400px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* .swiper-slide-active {
    transform: scale(1.05);
} */

.swiper-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 40%);
    z-index: 5;
}

.swiper-textbox {
    position: absolute;
    z-index: 10;
    bottom: 0px;
    left: 0px;
    padding: 20px;
}

.swiper-text-large {
    font-size: 32px;
    margin-bottom: 12px;
}

.swiper-text-small {
    font-size: 20px;
    margin-bottom: 15px;
}

.card_img {
    height: 300px;
    /* width: 100%; */
    object-fit: cover;
    -o-object-fit: cover;
}

/* .swiper-button-prev,
.swiper-button-next {
    margin: 50px;
    color: #333;
    background: #f2efea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
} */

/* .swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
} */

/* end slider Swiper  */


/* start footer  */
footer {
    background-image: url(../image/footer.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #1c2c4d;
    padding: 40px 0;
}

footer .about {}

footer .box_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0;
}

@media (max-width:767px) {
    footer .box_container {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}

footer .about .box {
    width: 31.333%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .about .box h4 {
    color: #4c8fca;
}

footer .about .box p {
    color: #fff;
}

@media (max-width:767px) {
    footer .about .box {
        width: 100%;
    }

    footer .about .box p {
        width: 70%;
    }
}

footer .about .box img {
    width: 150px;
    animation: width 1s both infinite alternate;
    /*width: 50%;
     */

    -webkit-animation: width 1s both infinite alternate;
}

footer .about .box .logo {
    animation: width 1s both infinite alternate;
    -webkit-animation: width 1s both infinite alternate;
}

@keyframes width {
    0% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}

footer .about .box ul {}

footer .about .box ul li {
    color: #fff;
}

footer .copyrights {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* border-top-color: rgba(255,255,255,0.1); */
}

.footer .copyrights_container {
    padding-top: 30px;
    margin-bottom: 20px;
}

footer .copyrights p {
    color: #fff;
    text-align: center;
    font-size: 17px;
}

@media (max-width:760px) {
    footer .copyrights p {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    footer .copyrights p {
        font-size: 13px;
        width: 100%;
    }
}

footer .copyrights .meada {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
}

@media (max-width:768px) {
    footer .copyrights .meada {
        margin-bottom: 20px;
    }
}

footer .copyrights .meada a {
    width: 46px;
    height: 46px;
    display: flex;
    place-content: center;
    background-color: var(--two-color);
    padding: 12px;
    color: hsl(228, 8%, 95%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

footer .copyrights .meada a svg {
    font-size: 22px;
}

footer .copyrights .meada a:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}


/* end footer  */

/* arow  */
.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 60px;
    bottom: -50%;
    background-color: #0dcaf0;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: .25rem;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px hsla(228, 15%, 8%, .4);
    z-index: 100;
    transition: bottom .4s, transform .4s;
    -webkit-transition: bottom .4s, transform .4s;
    -moz-transition: bottom .4s, transform .4s;
    -ms-transition: bottom .4s, transform .4s;
    -o-transition: bottom .4s, transform .4s;
}

.scrollup:hover {
    transform: translateY(-.25rem);
    -webkit-transform: translateY(-.25rem);
    -moz-transform: translateY(-.25rem);
    -ms-transform: translateY(-.25rem);
    -o-transform: translateY(-.25rem);
}

.show-scroll {
    bottom: 40px;
}

/* arow  */



/* start whatsapp_massenger   */
.whatsapp {
    position: fixed;
    bottom: 100px;
    right: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
}


.whatsapp a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.whatsapp p {
    margin: 0;
    width: 200px;
    background-color: #fff;
    text-align: start;
    padding: 5px 10px;
    border-radius: 5px;
}

.whatsapp a p strong {}

/* end whatsapp_massenger   */


/* text header  */

.header {
    background-color: hsl(228, 15%, 15%);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 60px;
}

/* تم اضافته من جافا سكريبت عندما اعمل scroll لكي يجعل الخلفيه شفافه */

.blur__header {
    background-color: transparent;
}

.blur__header::after {
    content: "";
    position: absolute;
    width: 1000%;
    height: 100%;
    background-color: hsla(0, 0%, 10, .3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    top: 0;
    left: 0;
    z-index: -1;
}

@media (min-width: 1023px) {
    .blur__header::after {
        -webkit-backdrop-filter: blur(25px);
        backdrop-filter: blur(25px);
        --webkit-backdrop-filter: blur(25px);
    }
}

.nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.nav__logo {
    color: hsl(228, 8%, 95%);
    font-weight: 500;
    padding: 10px 15px;
}

.nav__logo span {
    color: var(--greenColor);
    letter-spacing: 2px;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.25rem;
    color: hsl(228, 8%, 95%);
    cursor: pointer;
    padding: 10px 20px;
}

.nav__list {
    display: flex;
    row-gap: 3rem;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    /* column-gap: 20px; */
}

@media (max-width:768px) {
    .nav__list {
        row-gap: 1rem;
    }
}

@media (min-width: 1023px) {

    .nav__menu {
        width: initial;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3rem;
        margin-bottom: 0;
    }

}

@media (min-width: 768px) {
    /* .nav__menu {
        width: 55%;
    } */
}

.nav__item,
.nav-item {
    padding: 10px 15px;
}

/* mobile */

@media screen and (max-width: 1032px) {

    /* .nav {
        margin: 0 20px;
    } */

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: hsl(0, 0%, 10%, .3);
        width: 75%;
        height: 100%;
        padding: 4.5rem 0 0 3rem;
        backdrop-filter: blur(24px);
        --webkit-backdrop-filter: blur(24px);
        transition: right .4s;
        -webkit-transition: right .4s;
        -moz-transition: right .4s;
        -ms-transition: right .4s;
        -o-transition: right .4s;
    }

    .nav__toggle,
    .nav__close {
        display: flex;
    }

    .nav__list {
        flex-direction: column;
        align-items: start;
    }

}

/* .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
} */

.nav__link {
    color: hsl(228, 8%, 95%);
    font-weight: 500;
    transition: color .4s;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -ms-transition: color .4s;
    -o-transition: color .4s;
}


.nav__link:hover,
.link__active {
    color: var(--greenColor);
}

.nav__close {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

/* text header  */





/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
    width: .6rem;
    border-radius: .5rem;
    background-color: hsl(228, 12%, 25%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(228, 8%, 35%);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(228, 8%, 45%);
}