/*
Orange color: #e67e22
Identity color: #475460 R = 71 , G = 84 , B = 96
                #DABD45 R = 218 G = 189 , B = 69
*/


/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
    background-color: #fff;
    color: #555;
    /*font-family: 'Lato', 'Arial', sans-serif;*/
    /* font-family: 'Scheherazade', 'Arial' serif;*/
    font-family: 'Cairo', 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 24px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    background-image: url(triangle-mosaic.png)
}

/* @font-face {
font-family: myFirstFont;
src: url(/resources/fonts/Scheherazade-Bold.ttf);
src: url(/resources/fonts/Scheherazade-Regular.ttf);
} */

/* arabic */
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    src: local('Cairo Light'), local('Cairo-Light'), url(https://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6HkvalqKbI6O59ZMaA.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC;
}


.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ----------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ----------------------------------------------- */



/* ----- LINKS ----- */

a:link,
a:visited {
    color: #475460;
    text-decoration: none;
    padding-bottom: 1px;
    margin-bottom: 2px;
    border-bottom: 1px solid #475460;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}

/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    width: 100%;
    font-weight: 350;
    text-decoration: none;
    padding: 10px 50px;
    /*border-radius: 200px;*/
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #475460;
    border: 1px solid #475460;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #475460;
    color: #475460;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #cf6d17;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #cf6d17;
    color: #fff;
}


/* ----------------------------------------------- */
/* HEADER */
/* ----------------------------------------------- */

header {
    /*
    background-image: linear-gradient(rgba(0, 0, 0,  1), rgba(218, 189, 69,  0.8)), url(img/hero-min.jpg);
*/
    /*background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 250,  0.2)), to(rgba(218, 189, 69,  0.2))), url(img/hero3.jpg);
    background-image: linear-gradient(rgba(250, 250, 250,  1), rgba(0, 0, 0,  0.3)), url(img/hero3.jpg);*/
    /*
    background-size: cover;
    background-position: center;
*/
    /*
    height: 100vh;
*/
    background-attachment: fixed;
    text-align: center;
    /* 218 G = 189 , B = 69  R = 71 , G = 84 , B = 96*/
}

.hero-text-box {
    text-align: center;
}

.hero-text-box h1 {
    font-size: 30px;
    font-weight: 500;
}

.hero-text-box .maintext {
    font-size: 20px;
    margin: 20px auto;
    line-height: 40px;
    text-align: center;
    direction: rtl;
}


.maintext .sum {
    margin: 20px auto;
    text-align: center;
}
ol{
    list-style: none;
}
ul{
    list-style: none;
}

.pdf{
    width: 33%;
    font-size: 80%;
    margin: 0 auto;
}



/* ----------------------------------------------- */
/* Animations */
/* ----------------------------------------------- */

.js--wp-1,
.js--wp-2,
.js--wp-3 {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
    opacity: 1;
}