html {
  overflow: -moz-scrollbars-vertical;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}

/* ========= Theme preview ========== */

.wrapper {
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.container h2 {
  position: relative;
  color: #ffffff;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  top: 50%;
  margin-top: -30px;
  display: none;
  animation-name: fadeInDown;
  animation-duration: 0.9s;
}

.container:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.container:hover h2 {
  display: block;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}

.background-overlay:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.container img {
  width: 100%;
  -webkit-transition: 0.9s ease;
  transition: 0.9s ease;
}

@media (max-width: 767px) {
  body {
    overflow-y: scroll;
    height: auto;
  }
  .container {
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-bottom: 1px solid #373737;
  }
}

/* ======== End theme preview ========= */

/* ========= Preloader =========== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  z-index: 99999999999;
  overflow: hidden;
}

.loader-cont {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
}

.sk-three-bounce {
  margin: 90px 0;
  text-align: center;
}

.sk-three-bounce .sk-child {
  width: 21px;
  height: 21px;
  margin: 0 4px;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ========= End preloader =========== */