body {
    direction: rtl;
    margin: 0;
    /*overflow: hidden;*/
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color: white;
    position: absolute;
    z-index: 100;
    width: -webkit-fill-available;
    font-size: 20px;
}

.headerlogo {
    display: flex;
    align-items: center;
    padding: 1em 0 0 0;
}

    .headerlogo img {
        width: 4.5em;
    }

.headerbody {
}

    .headerbody ul {
        display: flex;
        flex-direction: row;
        margin: 0;
    }

        .headerbody ul a:first-child {
            border-top: 6px solid rgb(0, 153, 109);
        }

        .headerbody ul a {
            text-decoration-line: none;
            padding: 2em 0.8em 0.8em 0.8em;
            border-top: 6px solid rgb(0 153 109 / 0%);
            transition: .5s ease;
        }

            .headerbody ul a:hover {
                border-top: 6px solid rgb(0, 153, 109);
            }

        .headerbody ul li {
            color: white;
            text-decoration-line: none;
            list-style: none;
            font-size: 20px;
        }

.headercall {
    display: flex;
    background-color: rgb(0, 153, 109);
    padding: 0 3em 0 3em;
    border-radius: 10em;
    height: fit-content;
    align-items: center;
    font-size: 15px;
    position: relative;
    top: 5;
    margin: 2em 0 0 0;
    cursor: pointer;
}
    .headercall a {
        text-decoration: none;
        color: white;
    }
.slidetext {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: flex-start;
    margin: 0 12em 0 0;
    width: 30em;
}

    .slidetext h2 {
        font-size: xx-large;
    }

    .slidetext p {
        font-size: 20px;
    }

    .slidetext button {
        padding: 0.5em 2em 0.5em 2em;
        background-color: #faebd700;
        color: white;
        border: 1px solid white;
        border-radius: 2em;
        font-size: 18px;
        margin: 1em 0 0 0;
        transition: .5s ease;
    }

        .slidetext button:hover {
            background-color: rgb(0, 153, 109);
            border: 0px;
            cursor: pointer;
        }

.slide {
    display: flex;
    background: url(../../Img/More/slidehome.webp);
    width: 100%;
    height: 880px;
    background-position: center;
    background-size: cover;
    background-attachment: local;
    align-items: center;
}

.slidetext img {
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
    position: absolute;
    left: 0;
    width: 53em;
}

@media only screen and (max-width: 806px) {
    .headerbody {
        margin-top: 5em;
        position: absolute;
    }

        .headerbody ul a {
            text-decoration-line: none;
            padding: 0.5em 0.8em 0.8em 0.8em;
            border-top: 6px solid rgb(0 153 109 / 0%);
            transition: .5s ease;
        }

    .header {
        justify-content: space-around;
    }
}

@media only screen and (max-width: 1400px) {
    .slidetext img {
        width: 33em;
    }
}

@media only screen and (max-width: 1110px) {
    .slidetext img {
        width: 29em;
    }
}

@media only screen and (max-width: 1090px) {
    .slidetext img {
        width: 25em;
        bottom: -2em;
    }
}

@media only screen and (max-width: 1021px) {
    .slidetext img {
        width: 21em;
        bottom: -2em;
    }
}



@media only screen and (max-width: 946px) {
    .slidetext {
        display: flex;
        flex-direction: column;
        color: white;
        align-items: flex-start;
        margin: 0 12em 0 0;
    }

        .slidetext img {
            width: 23em;
            bottom: -8em;
            margin-left: 3em;
        }
}

@media only screen and (max-width: 746px) {
    .slidetext {
        display: flex;
        flex-direction: column;
        color: white;
        margin: -15em 2em 0 0;
        text-align: -webkit-center;
        align-items: center;
    }
}

@media only screen and (max-width:500px) {

    .headerbody ul li {
        font-size: 10px;
    }

    .slidetext p {
        font-size: 20px;
        padding-left: 0em;
    }
}


@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}
.Error {
    display: flex;
    justify-content: center;
    background-color: azure;
}

