﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    background-color:var(--main-color);
    margin-bottom:0;
}

* {
    font-family: "Poppins", sans-serif;
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
.main {
    padding:0px;
    display: flex;
    justify-content: space-between;
}
:root {
    --main-color: #000C1C;
    --dark-color: #000000;
    --white-color: #ffffff;
    --Hover-text: #0024ff;
    --border-color: #6666662a;
    --name-color: #0066c0;
}
header {
    background-color: var(--main-color);
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}
.logo img{
    width:15em;
    border-radius:100px;
}
.navigation a{
    color:var(--white-color);
    text-decoration:none;
    font-size:1.5em;
    font-weight:500;
    padding:0 40px;
}
.navigation a:hover{
    color:var(--Hover-text);
}
.nav-btn .mybtn{
    width:100px;
    height:40px;
    font-weight:500;
    background-color:var(--Hover-text);
    border-radius:10px;
    border:none;
    margin:10px 20px;
}
.mybtn:hover {
    background-color: #000953;
}

/*slider*/
.slide-swp {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slide-swp img{
    margin-top:110px;
    width:85%;
    border-radius:50px;
    padding-top:10px;
    margin-left:10px;
    object-position:center;


}
.mytext {

    padding:150px 50px 150px 250px;
    color:var(--white-color);
}
.mytext h2 {
   direction: ltr;
   font-size:5em;
   font-weight:500;
}
.mytext h3 {
     direction: rtl;
     font-weight:700;
}
.mytext p{
    margin:0;
    font-size:30px;
    color:#ffffff79
}
    .mytext span {
        display:inline-block;
        direction: ltr !important;
        font-size: 90px;
        color: var(--Hover-text);
        margin-bottom: 0;
        padding-bottom: 0;
        text-align:center;
    }
.main-btn{
    color:var(--white-color);
    display:inline-block;
    background-color:var(--Hover-text);
    font-size:3em;
    text-decoration:none;
    padding:5px 40px;
    border-radius:10px;
    font-weight:700;
    transition:0.7s ease;
}
    .main-btn:hover {
        background-color: #0a49f6;
        color: var(--white-color);
        transform: scale(1.1);
        
    }

/*cards*/
.cards{
    background-color:white;
    border:solid 15px  var(--main-color);
    margin:0px;
    padding:0px;
}
.title {
    display:flex;
    justify-content:center;
    font-weight: 1000;
    font-size: 3.5em;
    margin:30px 0;
    color: #000c1c;
    text-align:center;
}
.mycontent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.mycard {
    background-color: var(--main-color);
    width: 21.25em;
    margin-left: 50px;
    margin-bottom:30px;
    box-shadow:0 5px 25px rgb(1 1 1 /30%);
    transition:0.5s ease;
    border:solid;
    border-radius:10px;

}
    .mycard:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 25px rgb(1 1 1 /80%);
    }
.icon img{
    width:100%;
}
.info h3{
    color:var(--white-color);
    font-weight:600;
    display:flex;
    justify-content:center;
    text-decoration:none;
}
.info p {
    color: var(--white-color);
    direction:rtl;
    font-weight:510;
    margin-right:10px;
    display: flex;
    justify-content: center;
}
/*reviews*/
.reviews{
    width:90%;
    height:700px;
}
.reviews title{
    color:var(--white-color) !important;
}
.slider {
    margin-left:100px;
    padding-left:30px;
    width: 100%;
    height:580px;
    border: 1px solid var(--Hover-text) ;
    border-radius:20px;
    overflow:hidden;
    
}
.list {
    display: flex;
    position:relative;
}
.slider .list .item {
    width: 700px;
    margin: 10px;
  position:absolute;
  left:100%;
    animation: autoRun 10s linear infinite;
    animation-delay: calc((20s/var(--quantity))* (var(--position)));
}
    .item img {
        width: 30em;
        margin: 20px;
        transition: 0.5s ease;
        border-radius: 20px;
    }
        .item img:hover {
            transform: scale(1.1);
            
        }

@keyframes autoRun{
    from {
        left: 1800px;
    }
    to {
        left: calc(700px * -1);
        
    }
    
}
.slider:hover .item{
    animation-play-state:paused !important;
}
/*contact*/
 i {
    font-size: 260px;
    color: #efffff;
    display: flex;
    justify-content: center;
    text-decoration:none;
    margin-left:60px;
}
 /*footer*/
.myfooter {
    background: var(--main-color);
    border-top: 2px solid var(--Hover-text);
    border-left: 2px solid var(--Hover-text);
    border-right: 2px solid var(--Hover-text);
    border-radius: 20px;
    color: white;
    margin: 0;
    padding: 0;
    height: 30%;
    text-align: center;
    padding-bottom: 1.2em;
    width:100%;
}
.myfooter p{
    font-size:23px;
    font-weight:700;
}
.myfooter span{
    color:var(--Hover-text)
}
::-webkit-scrollbar{
    width:12px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent,var(--Hover-text));
    border-radius:6px;
}
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(transparent,#000953);
    }
.pricecard {
    display: flex !important;
    gap: 50px !important;
    justify-content: center !important;
    flex-wrap:wrap;
}
    .pricecard .card-header {
        font-size: 30px;
        text-align: center;
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: center;
        align-items: center;
    }
    .pricecard .input-group{
      /*  display:flex !important;*/
        flex-wrap: nowrap !important;
    }
    .pricecard .card{
        width:300px;
    }
.cash {
    display: flex;
    align-items: center;
}

    @media (max-width:1400px) {
        header{
        padding:0px 0px;
    }
    .navigation a{
        padding-left:5px;
    }
    .title{
        font-size:1.8em;
    }
    section{
        padding: 80px 20px;
    }
    .mytext {
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        width: 900px;
        font-size:5px;
    }
    .mytext a{
        margin-left:50px
    }
    .main-btn {
        display: block;
        text-align: center;
        width:auto;
    }
    .slide-swp{
        position:relative;
        height:30%;
    }
    .slider{
        margin-left:0;
        width:auto;
        height:32em;


    }
    .mytext h2 {
        font-size: 20px;
        text-align:center;
        }

    .mytext h3 {
        font-size: 20px;
        text-align: center;
    }
    .mytext p {
        font-size: 20px;
        text-align:center;
    }
    .mytext span {
        display:block;
        font-size: 50px;
        text-align: center;
    }
    .slider:hover .item {
        animation-play-state: paused !important;
    }

        
        
}
@media (max-width:1650px){
    .slide-swp {
        position: relative;
        height: 20%;
    }
    .myfooter {
        width: 100em
    }
}
@media (max-width:450px) {
    .slide-swp {
        position: relative;
        height: 20%;
    }

    .myfooter {
        width: 29em
    }
    header{
        width:400px;
    }
    .logo img {
        width: 10em;
        border-radius: 100px;
    }
    .nav-btn .mybtn {
        width: 100px;
        height: 40px;
        margin: 5px 5px;
    }
    .navigation a {
        color: var(--white-color);
        text-decoration: none;
        font-size: 1em;
        font-weight: 500;
        padding: 0 30px;
    }
    
}
.password {
    position: relative;
    border: 1px solid #000;
}

    .password input {
        border: 0;
    }

.passicon {
    position: absolute;
    width: 30px;
    top: 4px;
    right: 94%;
    cursor: pointer;
}

@media (max-width:1350px) {

    .myfooter {
        width: 100%
    }
    header {
        width: 100%;
    }

    .logo img {
        width: 15em;
        border-radius: 100px;
    }

    .nav-btn .mybtn {
        width: 100px;
        height: 40px;
        margin: 5px 5px;
    }

    .navigation a {
        color: var(--white-color);
        text-decoration: none;
        font-size: 1em;
        font-weight: 500;
        padding: 0 30px;
    }
    .mycard {
        width: 15.25em;
       
    }
    .icon i {
        font-size: 200px;
        margin-left: 35px;
    }
}
@media (max-width:933px) {
    .mycard {
        width: 12.25em;
    }
    .icon i {
        font-size: 150px;
        margin-left: 35px;
    }
    header {
        width: 860px;
    }
    .logo {
        width: 150px;
    }

}

@media (max-width:770px) {
    body {
        width: 750px;
    }
    header {
        width: 100%;
    }
    .icon i {
        font-size:100px;
        margin-left:35px;
        
    }
    
}



@media (max-width:1208px) {
    .allorders {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content:center;
       
    }
}
@media (max-width:450px) {
    .main {
        width: 750px;
    }
    .pricecard{
        width:300px;
        align-content:center;
    }
    .body {
        width: 750px;
    }

    .mycard {
       width:40%;
    }
    .icon {
        text-align: center;
        margin-right: 35px;
    }
    header{
        width:800px !important;
    }
}


