body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  /* background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('./images/bg.jpg');
  background-position:	center;
  background-size:		cover;
  background-repeat:		no-repeat;
  z-index: 1; */

  /* display: block;
	position: absolute; */
}

body {
  font-family: 'Source Sans Pro';
  font-weight: 100;
}

h1, h2, h3, h4, h5 {
  margin: 0; 
}

header, nav, footer, section, article, div {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* Nav */
.nav ul {
	width: 100%;
  margin-left:auto;
  margin-right:auto;
}

.nav li {
  display: inline-block;
  font-size: 12px;
  width: 100px;
  text-align:center;
  letter-spacing: 2px;
}

.nav {
  text-align: center;
}

.nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

.nav__item a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.nav__item a:hover {
  border-bottom: solid 2px white;
  background-color: #111;
  font-weight: bold;
  padding-bottom: 12px;
}

/* Header */
header {
  text-align: center;
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('./images/bg1400.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 700px;
}

.header__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  letter-spacing: 3px;
}

.header__title {
  letter-spacing: 8px;
  font-size: 36px;
  color: white;
}

.header__desc {
  color: white;
}

.uppercase {
  text-transform: uppercase;
}

/* Main sections */
/* .all {
  text-align: center;
} */

.description {
  width: 95%;
  margin-top: 30px;
}

.box {
  float: left;
  width: 42.5%;
  margin-left: 5%;
  margin-top: 30px;
}

.full-width {
  width: 100%;
}

.clear {
	clear: both;
}

.separator {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-11.png) repeat-x 0 0;
  border: 0;
  width: 250px;
}

h2 {
  text-align: center;
  font-size: 28px;
}

/* Contact */
.contactme {
	height: 250px;
	background-color: #202020;
  padding-top: 20px;
  color: white;
  text-align: center;
}

.contact-info {
	color: white;
	font-size: 13px;
	margin-top: 20px;
}

.contact-link {
	color: white;
	font-weight: bold;
	font-size: 13px;
}

.fas, .fab {
  color: white;
  text-decoration: none;
  font-size: 30px;
}

.fas:hover, .fab:hover {
  color: white;
  font-size: 35px;
  transition: all .1s ease;
}

/* Media queries */
@media screen and (max-width: 900px) {
  .box {
    float: none;
    display: block;
    width: 95%;
  }

  .img__hidemobile {
    display: none;
  }

  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
}

@media screen and (min-width: 901px) {
  .img__hidedesktop {
    display: none;
  }
}