@charset "UTF-8";
/* --------------------------------------------------------------------------------------
+
+   AUTHOR:
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ BASIC STYLES
+
-------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* --------------------------------------------------------------------------------------
+
+ VARIABLES
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ MIXINS
+
-------------------------------------------------------------------------------------- */
/* Borders */
/* hover opacity */
/* hover color */
/* TRIANGLES */
/* LINE-HIGH */
/* BOX SIZING */
/* HIDE TEXT*/
/* Breakpoints */
/* SPRITES
$icon-spacing: 10px;
$icon-layout: horizontal; //vertical is default, smart(third option)
@import "icon/*.png";
@include all-icon-sprites(true);
 */
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
html {
  background-image: url("../images/background1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #8d929c;
  font-family: "Droid Arabic Kufi", sans-serif;
  font-size: 0.875em;
  line-height: 21px;
  overflow-y: scroll;
  font-weight: 400;
  position: relative;
  min-height: 100%;
  direction: rtl;
  unicode-bidi: bidi-override;
}

body {
  min-width: 720px;
  -webkit-font-smoothing: antialiased;
}
body #preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background: url("../images/ajax_loader_gray_64.gif") 50% 50% no-repeat #fff;
}

a {
  outline: none;
  /* removing outline in Mozilla */
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #8d929c;
}
a:active {
  background-color: transparent;
}
a:hover {
  color: #666c76;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
}

p {
  margin-bottom: 20px;
  clear: both;
}

img {
  vertical-align: top;
}

table {
  width: 100%;
}

strong {
  font-weight: bold;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

::-moz-selection {
  background: #666;
  color: #666;
  text-shadow: none;
}

::selection {
  background: #666;
  color: #666;
  text-shadow: none;
}

.hide {
  display: none !important;
}

.image-wrap{
  padding: 36px;
  border:1px solid  rgba(255,255,255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

button:hover,
input[type="submit"]:hover,
label {
  cursor: pointer;
}

textarea {
  margin: 0;
  /* removing margin in Mozilla */
  overflow: auto;
  /* for IE and older browsers */
}

/* align checkboxes, radios, text inputs with their label */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------------------
+
+ LAYOUT
+
-------------------------------------------------------------------------------------- */
main {
  display: block;
  /* this is important for some browsers (opera, ...) who recognize <main> as inline element */
}

.container {
  margin: 0 auto;
  width: 720px;
  min-width: 720px;
}

.container--large {
  margin: 0 auto;
  width: 960px;
  min-width: 960px;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* --------------------------------------------------------------------------------------
+
+ STARTERIZED GRID INDEX
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID VARIABLES (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID MIXINS (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID BASE (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
.grid {
  font-size: 0;
  list-style: none;
  /* Allow the grid system to be used on lists */
  margin: 0;
  margin-left: -25px;
  /* Apply a negative `margin-left` to negate the columnsΓÇÖ gutters */
  padding: 0;
}
.grid .grid:last-child {
  margin-bottom: -25px;
  /* remove bottom space for nested grid */
}
.grid.grid--flush--bottom {
  margin-bottom: -25px !important;
}

.grid__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Required to combine fluid widths and fixed gutters */
  display: inline-block;
  font-size: 14px;
  font-size: px-rem(14px);
  margin-bottom: 25px;
  padding-left: 30px;
  vertical-align: top;
}

.grid--narrowest {
  margin-left: -8px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--narrowest:last-child {
  margin-bottom: -8px;
  /* remove bottom space for nested grid */
}
.grid--narrowest > .grid__item {
  margin-bottom: 8px;
  padding-left: 8px;
}
.grid--narrowest.grid--flush--bottom {
  margin-bottom: -8px !important;
}

.grid--narrow {
  margin-left: -13px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--narrow:last-child {
  margin-bottom: -13px;
  /* remove bottom space for nested grid */
}
.grid--narrow > .grid__item {
  margin-bottom: 13px;
  padding-left: 13px;
}
.grid--narrow.grid--flush--bottom {
  margin-bottom: -13px !important;
}

.grid--wide {
  margin-left: -30px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--wide:last-child {
  margin-bottom: -30px;
  /* remove bottom space for nested grid */
}
.grid--wide > .grid__item {
  margin-bottom: 30px;
  padding-left: 30px;
}
.grid--wide.grid--flush--bottom {
  margin-bottom: -30px !important;
}

.grid--widest {
  margin-left: -75px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--widest:last-child {
  margin-bottom: -75px;
  /* remove bottom space for nested grid */
}
.grid--widest > .grid__item {
  margin-bottom: 75px;
  padding-left: 75px;
}
.grid--widest.grid--flush--bottom {
  margin-bottom: -75px !important;
}

.grid--nowrap {
  white-space: nowrap;
}
.grid--nowrap > .grid__item {
  white-space: normal;
}

.grid--reversed {
  direction: rtl;
  text-align: left;
}
.grid--reversed > .grid__item {
  direction: ltr;
  text-align: left;
}

.grid--gutterless {
  margin-left: 0;
  margin-bottom: 25px;
  /* since there's no gutter on .grid__items we have to compensate with margin bottom on .grid--gutterless */
}
.grid--gutterless > .grid__item {
  margin-bottom: 0;
  padding-left: 0;
}
.grid .grid--gutterless:last-child {
  margin-bottom: 0;
  /* when nested .grid--gutterless:last-child should have no bottom margin */
}
.grid--gutterless.grid--flush--bottom {
  margin-bottom: 0 !important;
}

.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}

.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}

.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/* --------------------------------------------------------------------------------------
+
+ GRID GENERATOR (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
.one-whole {
  width: 100%;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.one-half {
  width: 50%;
}

.one-third {
  width: 33.333%;
}

.two-thirds {
  width: 66.666%;
}

.one-quarter {
  width: 25%;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

.one-sixth {
  width: 16.666%;
}

.two-sixths {
  width: 33.333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.666%;
}

.five-sixths {
  width: 83.333%;
}

.one-seventh {
  width: 14.28571428571429%;
}

.two-sevenths {
  width: 28.57143%;
}

.three-sevenths {
  width: 42.85714%;
}

.four-sevenths {
  width: 57.14286%;
}

.five-sevenths {
  width: 71.42857%;
}

.six-sevenths {
  width: 85.71429%;
}

.one-eighth {
  width: 12.5%;
}

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

.one-tenth {
  width: 10%;
}

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

.one-twelfth {
  width: 8.333%;
}

.two-twelfths {
  width: 16.666%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.333%;
}

.five-twelfths {
  width: 41.666%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.333%;
}

.eight-twelfths {
  width: 66.666%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

@media (max-width: 480px) {
  .S--one-whole {
    width: 100%;
  }

  .S--hide {
    display: none;
  }

  .S--show {
    display: block;
  }

  .S--one-half {
    width: 50%;
  }

  .S--one-third {
    width: 33.333%;
  }

  .S--two-thirds {
    width: 66.666%;
  }

  .S--one-quarter {
    width: 25%;
  }

  .S--two-quarters {
    width: 50%;
  }

  .S--three-quarters {
    width: 75%;
  }

  .S--one-fifth {
    width: 20%;
  }

  .S--two-fifths {
    width: 40%;
  }

  .S--three-fifths {
    width: 60%;
  }

  .S--four-fifths {
    width: 80%;
  }

  .S--one-sixth {
    width: 16.666%;
  }

  .S--two-sixths {
    width: 33.333%;
  }

  .S--three-sixths {
    width: 50%;
  }

  .S--four-sixths {
    width: 66.666%;
  }

  .S--five-sixths {
    width: 83.333%;
  }

  .S--one-seventh {
    width: 14.28571428571429%;
  }

  .S--two-sevenths {
    width: 28.57143%;
  }

  .S--three-sevenths {
    width: 42.85714%;
  }

  .S--four-sevenths {
    width: 57.14286%;
  }

  .S--five-sevenths {
    width: 71.42857%;
  }

  .S--six-sevenths {
    width: 85.71429%;
  }

  .S--one-eighth {
    width: 12.5%;
  }

  .S--two-eighths {
    width: 25%;
  }

  .S--three-eighths {
    width: 37.5%;
  }

  .S--four-eighths {
    width: 50%;
  }

  .S--five-eighths {
    width: 62.5%;
  }

  .S--six-eighths {
    width: 75%;
  }

  .S--seven-eighths {
    width: 87.5%;
  }

  .S--one-tenth {
    width: 10%;
  }

  .S--two-tenths {
    width: 20%;
  }

  .S--three-tenths {
    width: 30%;
  }

  .S--four-tenths {
    width: 40%;
  }

  .S--five-tenths {
    width: 50%;
  }

  .S--six-tenths {
    width: 60%;
  }

  .S--seven-tenths {
    width: 70%;
  }

  .S--eight-tenths {
    width: 80%;
  }

  .S--nine-tenths {
    width: 90%;
  }

  .S--one-twelfth {
    width: 8.333%;
  }

  .S--two-twelfths {
    width: 16.666%;
  }

  .S--three-twelfths {
    width: 25%;
  }

  .S--four-twelfths {
    width: 33.333%;
  }

  .S--five-twelfths {
    width: 41.666%;
  }

  .S--six-twelfths {
    width: 50%;
  }

  .S--seven-twelfths {
    width: 58.333%;
  }

  .S--eight-twelfths {
    width: 66.666%;
  }

  .S--nine-twelfths {
    width: 75%;
  }

  .S--ten-twelfths {
    width: 83.333%;
  }

  .S--eleven-twelfths {
    width: 91.666%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .M--one-whole {
    width: 100%;
  }

  .M--hide {
    display: none;
  }

  .M--show {
    display: block;
  }

  .M--one-half {
    width: 50%;
  }

  .M--one-third {
    width: 33.333%;
  }

  .M--two-thirds {
    width: 66.666%;
  }

  .M--one-quarter {
    width: 25%;
  }

  .M--two-quarters {
    width: 50%;
  }

  .M--three-quarters {
    width: 75%;
  }

  .M--one-fifth {
    width: 20%;
  }

  .M--two-fifths {
    width: 40%;
  }

  .M--three-fifths {
    width: 60%;
  }

  .M--four-fifths {
    width: 80%;
  }

  .M--one-sixth {
    width: 16.666%;
  }

  .M--two-sixths {
    width: 33.333%;
  }

  .M--three-sixths {
    width: 50%;
  }

  .M--four-sixths {
    width: 66.666%;
  }

  .M--five-sixths {
    width: 83.333%;
  }

  .M--one-seventh {
    width: 14.28571428571429%;
  }

  .M--two-sevenths {
    width: 28.57143%;
  }

  .M--three-sevenths {
    width: 42.85714%;
  }

  .M--four-sevenths {
    width: 57.14286%;
  }

  .M--five-sevenths {
    width: 71.42857%;
  }

  .M--six-sevenths {
    width: 85.71429%;
  }

  .M--one-eighth {
    width: 12.5%;
  }

  .M--two-eighths {
    width: 25%;
  }

  .M--three-eighths {
    width: 37.5%;
  }

  .M--four-eighths {
    width: 50%;
  }

  .M--five-eighths {
    width: 62.5%;
  }

  .M--six-eighths {
    width: 75%;
  }

  .M--seven-eighths {
    width: 87.5%;
  }

  .M--one-tenth {
    width: 10%;
  }

  .M--two-tenths {
    width: 20%;
  }

  .M--three-tenths {
    width: 30%;
  }

  .M--four-tenths {
    width: 40%;
  }

  .M--five-tenths {
    width: 50%;
  }

  .M--six-tenths {
    width: 60%;
  }

  .M--seven-tenths {
    width: 70%;
  }

  .M--eight-tenths {
    width: 80%;
  }

  .M--nine-tenths {
    width: 90%;
  }

  .M--one-twelfth {
    width: 8.333%;
  }

  .M--two-twelfths {
    width: 16.666%;
  }

  .M--three-twelfths {
    width: 25%;
  }

  .M--four-twelfths {
    width: 33.333%;
  }

  .M--five-twelfths {
    width: 41.666%;
  }

  .M--six-twelfths {
    width: 50%;
  }

  .M--seven-twelfths {
    width: 58.333%;
  }

  .M--eight-twelfths {
    width: 66.666%;
  }

  .M--nine-twelfths {
    width: 75%;
  }

  .M--ten-twelfths {
    width: 83.333%;
  }

  .M--eleven-twelfths {
    width: 91.666%;
  }
}
@media (min-width: 769px) {
  .L--one-whole {
    width: 100%;
  }

  .L--hide {
    display: none;
  }

  .L--show {
    display: block;
  }

  .L--one-half {
    width: 50%;
  }

  .L--one-third {
    width: 33.333%;
  }

  .L--two-thirds {
    width: 66.666%;
  }

  .L--one-quarter {
    width: 25%;
  }

  .L--two-quarters {
    width: 50%;
  }

  .L--three-quarters {
    width: 75%;
  }

  .L--one-fifth {
    width: 20%;
  }

  .L--two-fifths {
    width: 40%;
  }

  .L--three-fifths {
    width: 60%;
  }

  .L--four-fifths {
    width: 80%;
  }

  .L--one-sixth {
    width: 16.666%;
  }

  .L--two-sixths {
    width: 33.333%;
  }

  .L--three-sixths {
    width: 50%;
  }

  .L--four-sixths {
    width: 66.666%;
  }

  .L--five-sixths {
    width: 83.333%;
  }

  .L--one-seventh {
    width: 14.28571428571429%;
  }

  .L--two-sevenths {
    width: 28.57143%;
  }

  .L--three-sevenths {
    width: 42.85714%;
  }

  .L--four-sevenths {
    width: 57.14286%;
  }

  .L--five-sevenths {
    width: 71.42857%;
  }

  .L--six-sevenths {
    width: 85.71429%;
  }

  .L--one-eighth {
    width: 12.5%;
  }

  .L--two-eighths {
    width: 25%;
  }

  .L--three-eighths {
    width: 37.5%;
  }

  .L--four-eighths {
    width: 50%;
  }

  .L--five-eighths {
    width: 62.5%;
  }

  .L--six-eighths {
    width: 75%;
  }

  .L--seven-eighths {
    width: 87.5%;
  }

  .L--one-tenth {
    width: 10%;
  }

  .L--two-tenths {
    width: 20%;
  }

  .L--three-tenths {
    width: 30%;
  }

  .L--four-tenths {
    width: 40%;
  }

  .L--five-tenths {
    width: 50%;
  }

  .L--six-tenths {
    width: 60%;
  }

  .L--seven-tenths {
    width: 70%;
  }

  .L--eight-tenths {
    width: 80%;
  }

  .L--nine-tenths {
    width: 90%;
  }

  .L--one-twelfth {
    width: 8.333%;
  }

  .L--two-twelfths {
    width: 16.666%;
  }

  .L--three-twelfths {
    width: 25%;
  }

  .L--four-twelfths {
    width: 33.333%;
  }

  .L--five-twelfths {
    width: 41.666%;
  }

  .L--six-twelfths {
    width: 50%;
  }

  .L--seven-twelfths {
    width: 58.333%;
  }

  .L--eight-twelfths {
    width: 66.666%;
  }

  .L--nine-twelfths {
    width: 75%;
  }

  .L--ten-twelfths {
    width: 83.333%;
  }

  .L--eleven-twelfths {
    width: 91.666%;
  }
}
/* --------------------------------------------------------------------------------------
+
+ INDEX FOR COMMON
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ TYPE
+
-------------------------------------------------------------------------------------- */
@font-face {
  font-family: 'NexaLight';
  src: url("../fonts/NexaLight.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaLight.otf") format("opentype"), url("../fonts/NexaLight.woff") format("woff"), url("../fonts/NexaLight.ttf") format("truetype"), url("../fonts/NexaLight.svg#NexaLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NexaBold';
  src: url("../fonts/NexaBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaBold.otf") format("opentype"), url("../fonts/NexaBold.woff") format("woff"), url("../fonts/NexaBold.ttf") format("truetype"), url("../fonts/NexaBold.svg#NexaBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
.type--light {
  font-weight: 300 !important;
}

.type--normal {
  font-weight: 400 !important;
}

.type--semibold {
  font-weight: 600 !important;
}

.type--bold {
  font-weight: 700 !important;
}

.type--extrabold {
  font-weight: 800 !important;
}

.type--uppercase {
  text-transform: uppercase !important;
}

.type--lowercase {
  text-transform: lowercase !important;
}

.type--capitalize {
  text-transform: capitalize !important;
}

.type--no-transfrom {
  text-transform: none !important;
}

.type--color-mute {
  color: #fff;
}

.type--color-white > * {
  color: #fff;
}

.text--20 {
  font-size: 20px;
  font-size: px-rem(20px);
}

/* --------------------------------------------------------------------------------------
+
+ ICONS FONT
+
-------------------------------------------------------------------------------------- */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-family: 'icomoon';
  font-size: 16px !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: normal !important;
  /* make sure font weight is ok if it's in .btn parent */
  line-height: 1 !important;
  speak: none;
  text-transform: none !important;
  vertical-align: middle;
}
.icon:hover {
  text-decoration: none;
}

.icon--small {
  font-size: 12px !important;
}

.icon--medium {
  font-size: 22px !important;
}

.icon--large {
  font-size: 32px !important;
}

.icon--huge {
  font-size: 48px !important;
}

.icon--facebook:before {
  content: "\e600";
}

.icon--linkedin:before {
  content: "\e601";
}

.icon--twitter:before {
  content: "\e602";
}

.icon--google-plus:before {
  content: "\e606";
}

/* --------------------------------------------------------------------------------------
+
+ Animations
+
-------------------------------------------------------------------------------------- */
@-moz-keyframes move {
  0% {
    left: 10px;
  }
  50% {
    left: 20px;
  }
  80% {
    left: 10px;
  }
}
@-webkit-keyframes move {
  0% {
    left: 10px;
  }
  50% {
    left: 20px;
  }
  80% {
    left: 10px;
  }
}
@-o-keyframes move {
  0% {
    left: 10px;
  }
  50% {
    left: 20px;
  }
  80% {
    left: 10px;
  }
}
@keyframes move {
  0% {
    left: 10px;
  }
  50% {
    left: 20px;
  }
  80% {
    left: 10px;
  }
}
/* animation call into style of element*/
/* --------------------------------------------------------------------------------------
+
+ HEADINGS
+
-------------------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Droid Arabic Naskh", serif;
  color: #fff;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  color: inherit;
}
h1.heading--uppercase,
h2.heading--uppercase,
h3.heading--uppercase,
h4.heading--uppercase,
h5.heading--uppercase,
h6.heading--uppercase,
.heading.heading--uppercase {
  text-transform: uppercase;
}

h1,
.heading--alpha {
  font-size: 40px;
  font-size: px-rem(40px);
  font-weight: normal;
  font-family: 'Droid Sans', sans-serif;
}

h2,
.heading--beta {
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 15px;
}

h3,
.heading--gamma {
  font-size: 26px;
  font-size: px-rem(26px);
}

h4,
.heading--delta {
  font-size: 22px;
  font-size: px-rem(22px);
}

h5,
.heading--epsilon {
  font-size: 12px;
  font-size: px-rem(12px);
  color: #c7a060;
}

h6,
.heading--zeta {
  font-size: 14px;
  font-size: px-rem(14px);
  color: #1c1d1f;
}

/* --------------------------------------------------------------------------------------
+
+ BUTTONS
+
-------------------------------------------------------------------------------------- */
.btn {
  font-family: "Droid Arabic Kufi", sans-serif;
  font-size: 14px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-decoration: none !important;
  text-shadow: none !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  display: inline-block;
  text-align: center;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  margin: 0;
  /* remove margin for some browsers */
  color: #fff;
  background: #fff;
  border: none;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  cursor: pointer !important;
  text-decoration: none !important;
  background: #d43842;
}
.btn--gold {
  background-color: #b70a15;
}
.btn--gold:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------------------
+
+ JUSTIFIZE
+
-------------------------------------------------------------------------------------- */
/*
    http://www.css-101.org/articles/responsive-boxes/magic-boxes.php

    <div class="justifize">
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
    </div>
*/
.justifize {
  font-size: 1px;
  /* IE 9, 10, 11 FIX */
  text-align: justify;
  line-height: 1;
}
.justifize:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.justifize__box {
  font-size: 14px;
  font-size: px-rem(14px);
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}
.justifize--top
.justifize__box {
  vertical-align: top;
}
.justifize--bottom
.justifize__box {
  vertical-align: bottom;
}

/* --------------------------------------------------------------------------------------
+
+ VERTICALIZE
+
-------------------------------------------------------------------------------------- */
/*
    <div class="verticalize">
      <div class="verticalize__box">
        Content that needs to be vertically and horizontally centered
      </div>
    </div>
*/
.verticalize {
  text-align: center;
}
.verticalize:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  /* Adjusts for spacing */
  vertical-align: middle;
}

.verticalize--full {
  height: 100%;
}

.verticalize__box {
  display: inline-block;
  max-width: 99%;
  /* Prevent verticalize box to go to next line and break layout if window is too narrow */
  text-align: left;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------------------
+
+ TABLEIZE
+
-------------------------------------------------------------------------------------- */
/*
    The .tableize__content serves as container for cell content. If you need width or padding set on a cell, make sure you set it to .tableize__content since that is what makes the whole thing work.

    <div class="tableize">
      <div class="tableize__cell">
        <div class="tableize__content">
          cell content
        </div>
      </div>
      <div class="tableize__cell">
        <div class="tableize__content">
          cell content
        </div>
      </div>
    </div>
*/
.tableize {
  display: table;
  width: 100%;
}

.tableize--full {
  height: 100%;
}
.tableize--full .tableize__cell,
.tableize--full .tableize__content {
  height: inherit;
}

.tabeleize--720-width {
  width: 720px;
  margin: 0 auto;
}

.tableize__cell {
  display: table-cell;
  vertical-align: top;
}
.tableize--middle .tableize__cell {
  vertical-align: middle;
}
.tableize--bottom .tableize__cell {
  vertical-align: bottom;
}

.tableize__cell--filler {
  width: 100%;
  /* fills the rest of the row when one or more cells have fixed width */
}

/*
    Tableize row and tableize row flexible are needed only for sticky header/footer combination.
*/
.tableize__row {
  display: table-row;
  height: 1px;
}

.tableize__row--flexible {
  height: auto;
}

/* --------------------------------------------------------------------------------------
+
+ HELPERS
+
-------------------------------------------------------------------------------------- */
/**
 * Add/remove margins
 */
.push {
  margin: 25px !important;
}

.push--top {
  margin-top: 25px !important;
}

.push--right {
  margin-right: 25px !important;
}

.push--bottom {
  margin-bottom: 25px !important;
}

.push--left {
  margin-left: 25px !important;
}

.push--ends {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.push--sides {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

.push-half {
  margin: 13px !important;
}

.push-half--top {
  margin-top: 13px !important;
}

.push-half--right {
  margin-right: 13px !important;
}

.push-half--bottom {
  margin-bottom: 13px !important;
}

.push-half--left {
  margin-left: 13px !important;
}

.push-half--ends {
  margin-top: 13px !important;
  margin-bottom: 13px !important;
}

.push-half--sides {
  margin-right: 13px !important;
  margin-left: 13px !important;
}

.push-double {
  margin: 50px !important;
}

.push-double--top {
  margin-top: 50px !important;
}

.push-double--right {
  margin-right: 50px !important;
}

.push-double--bottom {
  margin-bottom: 50px !important;
}

.push-double--left {
  margin-left: 50px !important;
}

.push-double--ends {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.push-double--sides {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.push-triple {
  margin: 75px !important;
}

.push-triple--top {
  margin-top: 75px !important;
}

.push-triple--right {
  margin-right: 75px !important;
}

.push-triple--bottom {
  margin-bottom: 75px !important;
}

.push-triple--left {
  margin-left: 75px !important;
}

.push-triple--ends {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.push-triple--sides {
  margin-right: 75px !important;
  margin-left: 75px !important;
}

.push-quadruple {
  margin: 100px !important;
}

.push-quadruple--top {
  margin-top: 100px !important;
}

.push-quadruple--right {
  margin-right: 100px !important;
}

.push-quadruple--bottom {
  margin-bottom: 100px !important;
}

.push-quadruple--left {
  margin-left: 100px !important;
}

.push-quadruple--ends {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.push-quadruple--sides {
  margin-right: 100px !important;
  margin-left: 100px !important;
}

.push-fivefold {
  margin: 125px !important;
}

.push-fivefold--top {
  margin-top: 125px !important;
}

.push-fivefold--right {
  margin-right: 125px !important;
}

.push-fivefold--bottom {
  margin-bottom: 125px !important;
}

.push-fivefold--left {
  margin-left: 125px !important;
}

.push-fivefold--ends {
  margin-top: 125px !important;
  margin-bottom: 125px !important;
}

.push-fivefold--sides {
  margin-right: 125px !important;
  margin-left: 125px !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.text-center {
  text-align: center;
}

.nexa {
  font-family: 'NexaLight', serif;
  text-transform: uppercase;
}

.albunyan {
  font-size: 35px;
  text-align: center;

}

.droid {
  font-family: 'Droid Sans', sans-serif;

}

.kufi {
  font-family: 'Droid Arabic Kufi', sans-serif;
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.shadow {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(1, 1, 1, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(1, 1, 1, 0.2);
  box-shadow: 0 1px 2px rgba(1, 1, 1, 0.2);
}

.box {
  padding: 30px 10px;
  min-height: 180px;
}

.pv35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pl50 {
  padding-left: 50px;
}

/* --------------------------------------------------------------------------------------
+
+ HEADER
+
-------------------------------------------------------------------------------------- */
.site-logo {
  display: inline-block;
  vertical-align: middle;
}
.site-logo > img {
  height: auto;
  vertical-align: middle;
  margin: 50px 0 40px 0;
}
.site-logo:hover {
  text-decoration: none;
}

.company-desc {
  position: relative;
  color: #c7a060;
  font-size: 12px;
  font-family: "Droid Arabic Kufi", sans-serif;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.company-desc:before {
  content: '';
  width: 54px;
  height: 1px;
  display: block;
  background-color: #c7a060;
  position: absolute;
  top: -20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* --------------------------------------------------------------------------------------
+
+ FOOTER
+
-------------------------------------------------------------------------------------- */
.footer-main {
  background-color: #080e11;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  clear: both;
}

/* --------------------------------------------------------------------------------------
+
+ FORMS
+
-------------------------------------------------------------------------------------- */
input[type="text"], input[type="password"], textarea {
  vertical-align: middle;
  background-color: #fff;
  font-family: "Droid Arabic Kufi", sans-serif;
  font-size: 14px;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  padding: 0 10px;
  border: 1px solid #fff;
  color: #8d929c;
  height: 30px;
  line-height: 30px;
}
input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus, textarea:hover, textarea:focus {
  border: 1px solid #fff;
  background-color: #fff;
}
input[type="text"]:invalid, input[type="password"]:invalid, textarea:invalid {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* fixes mozilla red outline (shadow) */
}
input[type="text"].input--placeholder, input[type="password"].input--placeholder, textarea.input--placeholder {
  color: #fff;
}
input[type="text"].input--primary, input[type="password"].input--primary, textarea.input--primary {
  width: 155px;
  margin-left: 5px;
}

textarea {
  padding: 5px 10px;
  line-height: 21px;
  resize: none;
  min-height: 150px;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

.form {
  position: relative;
}

label[for=user] {
  position: absolute;
  top: 8px;
  left: -105px;
  color: #fff;
  cursor: default;
}
label[for=user]:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 87px;
  top: -8px;
  height: 30px;
  width: 1px;
  background-color: #d8d8d8;
}

/*------------------------------------*\
    #PACK
\*------------------------------------*/
/**
 * The pack object simply causes any number of elements pack up horizontally to
 * automatically fill an equal, fluid width of their parent.
 */
/**
 * 1. Fill all available space.
 * 2. Cause children to be automatically equally sized.
 */
.pack {
  width: 100%;
  /* [1] */
  display: table;
  table-layout: fixed;
  /* [2] */
}

/**
 * Cause children to adopt table-like structure.
 */
.pack__item {
  display: table-cell;
  /**
   * All items are aligned to the middles of each other.
   */
  /**
   * All items are aligned to the bottoms of each other.
   */
}
.pack--middle > .pack__item {
  vertical-align: middle;
}
.pack--bottom > .pack__item {
  vertical-align: bottom;
}

/**
 * Cause children to pack up into available space, but not equally sized.
 */
.pack--auto {
  table-layout: auto;
}

/**
 * Tiny gutters between items.
 */
.pack--tiny {
  border-spacing: quarter(42px);
}

/**
 * Small gutters between items.
 */
.pack--small {
  border-spacing: halve(42px);
}

/**
 * Large gutters between items.
 */
.pack--large {
  border-spacing: double(42px);
}

/**
 * Huge gutters between items.
 */
.pack--huge {
  border-spacing: quadruple(42px);
}

/**
 * Reversed order packs.
 */
.pack--rev {
  direction: rtl;
}
.pack--rev > .pack__item {
  direction: ltr;
}

/* --------------------------------------------------------------------------------------
+
+ INDEX FOR CUSTOM
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ MAIN CONTENT
+
-------------------------------------------------------------------------------------- */
.text_centar{
  font-size: 18px;
  margin-top: 46px;
  margin-right: 335px;
  padding-bottom: 10px;
  color: white;

}
.contact {
  color: #fff;
  margin-bottom: 160px;
}

.contact table {
  table-layout: fixed;
  vertical-align: top;
}
.contact a {
  color: #000;
}
.contact a:hover {
  color: #cccccc;
}

.contact__address ul, .contact__phone ul {
  padding-top: 30px;
  padding-bottom: 30px;
  color: black;

}

.contact__address {
  background-color: #e8eaee;
}

.contact__phone {
  background-color: #f5fafa;
}
.contact__address ul {
  padding-left: 55px;
}

.contact__address li {
  background-repeat: no-repeat;
  background-position: 5px 2px;
  padding-left: 25px;
  padding-bottom: 7px;

}
/*.contact__address li:nth-child(3) {
  direction: ltr;
  padding:  10px;
}
.text_m{
  margin-left: 10px;
}*/


[data-type="marker"] {
  background-image: url("../images/position.png");
  margin-left: 0px;



}

[data-type="email"] {
  background-image: url("../images/mail1.png");
  padding: 10px;
  font-size: 16px;


}

.contact__phone li {
  background-repeat: no-repeat;
  background-position: 0px center;
  padding-left: 25px;
  margin-left: 50px;
  text-align: left;
  direction: ltr;

}
.contact__phone li:nth-child(3) {
  padding-bottom: 20px;
}

[data-type="mob"] {
  background-image: url("../images/mobile1.png");
  padding: 10px;
  font-size: 16px;
}

[data-type="fix"] {
  background-image: url("../images/phone1.png");
  padding: 18px;
  padding-top: 10px;
  font-size: 16px;
}

.contact__right,
.contact__left {
  padding: 30px 0;
  background-color: rgba(0, 0, 0, 0.4);
}

svg {
  fill: currentColor;
}

.social {
  text-align: left;
}

.social1-icons {
  height: 36px;
  width: 36px;
  display: inline-block;
  color: #e8eaee;
  margin-bottom: 15px;
}
.social2-icons {
  height: 36px;
  width: 36px;
  display: inline-block;
  color: #e8eaee;
  margin-bottom: 15px;
}

.social1-icons:first-child {
  margin-left: 20px;
}
.social2-icons:first-child {
  margin-left: 20px;
}
.social1-icons:hover {
  color: #00abf0;
}
.social2-icons:hover {
  color: #3b5998;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: none;
  outline: none;
  color: transparent;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  overflow: visible !important;
  z-index: 10;
}

.slick-prev {
  right: 60px;
  background: rgba(39, 44, 45, 0.7) url("../images/arrow-right.png") no-repeat center center;
}

.slick-next {
  left: 60px;
  background: rgba(39, 44, 45, 0.7) url("../images/arrow-left.png") no-repeat center center;
}

.slider-main {
  margin-top: 50px;
  margin-bottom: 50px;
}
