@charset "UTF-8";

html {
    margin: 0;
    padding: 0;
    line-height: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    font-style: normal;
    line-height: normal;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    display: inline-block;
}

button,
input[type=submit] {
    cursor: pointer;
    outline: transparent;
}

input:focus {
    outline: 0;
}

li,
a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    outline: 0;
}

li {
    transition: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    direction: rtl;
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: right;
    overflow-x: hidden;
    height: 100%;
    background: #fff;
}

body div {
    outline: transparent;
}

body .width {
    width: 85%;
}

@media screen and (max-width: 1800px) {
    body .width {
        width: 85%;
    }
}

@media screen and (max-width: 1600px) {
    body .width {
        width: 90%;
    }
}

@media screen and (max-width: 1400px) {
    body .width {
        width: 98%;
    }
}

.headerIndex{
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 1rem;
    align-items: center;
    margin: auto;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    background: white;
    position: relative;
}
.headerIndex:before{
    content: "";
    position: absolute;
    left: -3px;
    bottom: -3px;
    background: orange;
    border-radius: 10px;
    width: 2rem;
    height: 2rem;
    z-index: -5;
}
.headerIndex:after{
    content: "";
    position: absolute;
    right: -3px;
    top: -3px;
    background: orange;
    border-radius: 10px;
    width: 2rem;
    height: 2rem;
    z-index: -5;
}
.logo img{
    width: 5rem;
    height: 3rem;
    object-fit: contain;
}
.headerIndex nav ul{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 3rem;
}
.headerIndex nav ul li a{
    font-size: 1.2rem;
    font-weight: 500;
    color: black;
}
.headerIndex .buy a{
    display: grid;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    background: forestgreen;
    color: white;
}
.container1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    margin: 2rem auto;
}
.container1 .left{
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    border-radius: 5px;
}
.container1 h1{
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    color: red;
}
.container1 h1 span{
    font-size: 1rem;
    background: red;
    color: white;
    padding: .3rem .5rem;
    border-radius: 5px;
}
.container1 h2{
    font-size: 2rem;
    font-weight: 900;
    color: black;
}
.container1 p{
    font-size: 1.2rem;
    font-weight: 900;
    color: black;
    opacity: .7;
    margin-top: 1rem;
}
.container1 .buttons{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.container1 .buttons a{
    font-size: 1rem;
    font-weight: 300;
    color: white;
    background: orange;
    border-radius: 5rem;
    padding: .5rem 1rem;
    box-shadow: 0 10px 10px rgba(0,0,0,.3);
}
.container1 .buttons a:first-child{
    background: green;
}
.countIndex{
    text-align: center;
    background: #282828;
    padding: 2rem;
}
.countIndex h3{
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}
.countIndex h4{
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin: 2rem 0;
}
.countIndex .buttons{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(1px,1fr));
    justify-content: center;
    gap: 1rem;
}
.countIndex .buttons .button{
    background: #202020;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 2rem 0;
    border-radius: 5px;
}
.demos{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 3rem;
    margin-top: 3rem;
}
.dis1{
    grid-template-columns: repeat(2,1fr);
}
.demos .demo .pic{
    height: 17rem;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.demos .demo .showData{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    display: none;
    align-content: flex-end;
}
.demos .demo .showData .address{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 1rem;
    padding: 1rem;
}
.demos .demo .showData .address a{
    background: green;
    color: white;
    font-size: .9rem;
    font-weight: 300;
    padding: .3rem;
    display: block;
    margin-top: 0;
    border-radius: 5px;
}
.demos .demo .showData h5{
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: white;
}
.demos .demo .pic img{
    transition: all 2s ease-in-out;
}
.demos .demo:hover .showData{
    display: grid;
}
.demos .demo:hover img{
    transform: translateY(calc(-100% + 17rem));
}
.demos .demo h5{
    font-size: 1rem;
    font-weight: 500;
    display: grid;
    color: white;
    margin-top: 1rem;
}
.countIndex p{
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-align: center;
    margin: 1rem 0;
}
.features{
    margin: auto;
    margin-top: 4rem;
}
.features h4{
    font-size: 4rem;
    text-align: center;
    font-weight: 900;
    color: #282828;
}
.features p{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #282828;
    margin-top: 1rem;
}
.features ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1rem;
    margin-top: 2rem;
}
.features ul li{
    font-size: 1rem;
    font-weight: 700;
    color: #282828;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: .5rem;
}
.features ul li:before{
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: #282828;
    border-radius: 5rem;
    transition: all .3s ease-in-out;
}
.features ul li:hover:before{
    background: forestgreen;
}
.startDemo{
    margin: auto;
    margin-top: 6rem;
    text-align: center;
}
.startDemo h4{
    font-size: 3rem;
    text-align: center;
    font-weight: 900;
    color: forestgreen;
}
.startDemo p{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #282828;
    margin-top: 1rem;
}
.startDemo .buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.startDemo .buttons a{
    font-size: 1rem;
    font-weight: 300;
    color: white;
    background: orange;
    border-radius: 5rem;
    padding: .5rem 1rem;
    box-shadow: 0 10px 10px rgba(0,0,0,.3);
}
.startDemo .buttons a:first-child{
    background: green;
}
.supports{
    background: #282828;
    padding: 2rem;
    display: grid;
    margin-top: 4rem;
    grid-template-columns: repeat(3,1fr);
}
.supports a{
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: white;
    border-left: 1px solid white;
}
.supports h5{
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: .5rem;
}
.supports p{
    font-size: 1rem;
    font-weight: 300;
    color: white;
    opacity: .7;
}
.supports a:last-child{
    border-left: 0;
}
.gates h4{
    font-size: 3rem;
    text-align: center;
    font-weight: 900;
    color: forestgreen;
}
.gates p{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #282828;
    margin-top: 1rem;
}
.gates{
    margin-top: 10rem;
    padding: 5rem 0;
}
.gates ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.gates ul li{
    width: 7rem;
    height: 7rem;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 5px;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-content: center;
}
.gates ul li img{
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}
.payment{
    margin-top: 5rem;
    background: #f5f5f5;
    padding: 5rem 0;
}
.payment ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.payment ul li{
    width: 7rem;
    height: 7rem;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: black;
}
.payment h4{
    font-size: 3rem;
    text-align: center;
    font-weight: 900;
    color: black;
}
.payment p{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #282828;
    margin-top: 1rem;
}
