* {
    padding: 0;
    margin: 0;
}

img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    outline: none;
    color: #000;
    transition: all 0.5s ease 0s;
}

a:hover {
    color: #999;
    transition: all 0.5s ease 0s;
}

@font-face {
    font-family: ibmb;
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/ArbFONTS-IBMPlexSansArabic-Bold.ttf") format('truetype')
}

@font-face {
    font-family: ibm;
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/ArbFONTS-IBMPlexSansArabic-Regular.ttf") format('truetype')
}

body {
    text-align: right;
    padding: 0;
    margin: 0;
    color: #000;
    direction: rtl;
    font-size: 20px;
    font-family: sans-serif;
    background: #fff;
    position: relative;
}

body::after {
    content: "";
    position: absolute;
    bottom: 50px;
    right: 0;
    height: 50px;
    width: 10px;
    background: #335ACF;
    z-index: 10;
}

header {
    padding: 10px 20px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}

header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    align-items: center;
}

header .container::after,
header .container::before {
    display: none;
}

header .container img {
    height: 60px;
    width: auto;
}

header .container .mnue {
    display: flex;
    padding: 0;
    width: auto;
    flex-wrap: wrap;
    align-items: center;
}

header .container .mnue ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header .container .mnue ul li {
    display: block;
    padding: 5px 10px;
}

header .container .mnue ul li a {
    color: #434444;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    display: block;
    padding: 10px 15px;
}

@media (max-width: 769px) {
    header .container .mnue ul {
        list-style: none;
        padding: 0;
        transition: all 0.5s ease 0s;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        position: fixed;
        background: #ffffff;
        padding: 50px 30px;
        top: 75px;
        right: -110%;
        width: 100%;
        height: 100vh;
        z-index: 999;
        align-items: flex-start;
        flex-direction: column;
    }
    header .container .mnue ul.open {
        transition: all 0.5s ease 0s;
        right: 0 !important;
    }
    header .container .mnue ul li {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    header .container .mnue ul li a {
        color: #434444;
        text-decoration: none;
        outline: none;
        font-size: 18px;
        width: 100%;
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #00000021;
    }
}

header .container .mnue ul li a:hover {
    color: #36788D;
}

header .container .mnue .bar {
    width: 36px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 15px;
}

header .container .mnue .bar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    margin-top: -4px;
    transition: all 0.5s ease 0s;
    height: 3px;
    background: #1A3C62;
}

header .container .mnue .bar::before {
    content: "";
    position: absolute;
    top: 50%;
    transition: all 0.5s ease 0s;
    right: 0;
    width: 100%;
    margin-top: 4px;
    height: 3px;
    background: #1A3C62;
}

@media (max-width: 769px) {
    header .container .mnue .bar.on::after {
        transition: all 0.5s ease 0s;
        transform: rotate(45deg);
        top: 50%;
        margin: 0;
    }
    header .container .mnue .bar.on::before {
        transition: all 0.5s ease 0s;
        transform: rotate(-45deg);
        top: 50%;
        margin: 0;
    }
}


/* ////////////////////// */

.hero {
    min-height: 100vh;
    padding: 50px 10px 20px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: center;
}

.hero .container .block {
    padding: 20px 30px;
    height: 100%;
}

.hero .container .block img {
    width: auto;
    height: auto;
    max-height: 75vh;
    margin: 0 auto;
    display: flex;
    float: left;
}

@media (max-width: 769px) {
    .hero .container .block {
        padding: 20px;
    }
    .hero .container .block img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
        display: flex;
        float: none;
    }
}

.hero .container .block h1 {
    display: flex;
    flex-direction: column;
    color: #36788D;
    font-size: 130px;
    font-weight: bolder;
    line-height: 1.3;
}

.hero .container .block h1 span {
    color: #1F2020;
    padding-right: 240px;
}

.hero .container .block p {
    font-size: 24px;
    font-weight: bold;
    color: #1F2020;
}

@media (max-width: 769px) {
    .hero .container .block h1 {
        font-size: 60px;
        width: 100%;
        text-align: right;
    }
    .hero .container .block h1 span {
        color: #1F2020;
        padding-right: 110px;
    }
    .hero .container .block p {
        font-size: 15px;
        font-weight: bold;
        text-align: right;
        width: 100%;
    }
}


/* about */

.about {
    padding: 50px 10px 0;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
}

.about .container {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.about .container .block {
    padding: 10px 20px 0;
    height: 100%;
}

.about .container .block img {
    width: auto;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.about .container .block h1 {
    color: #1F2020;
    position: relative;
    width: 100%;
    padding: 5px 0 20px;
    margin: 0;
    text-align: center;
    font-size: 33px;
}

@media (max-width: 769px) {
    .about .container .block h1 {
        margin: 0 0 25px;
        font-size: 22px;
    }
}

.about .container .block h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10%;
    height: 3px;
    width: 60px;
    background: #1A3C62;
}

.about .container .block h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    height: 3px;
    width: 60px;
    background: #1A3C62;
}

@media (max-width: 769px) {}


/*

transition: all 0.5s ease 0s;
transform: scale(1.2);


display: flex;
flex-direction: column;
justify-content: center;


*/