.blue-text {
  color: #24589b;
}

.blue-bg {
  background-color: #24589b;
}

.white-text {
  color: #ffffff;
}

.black-text {
  color: #4a4a48;
}

.gray-text {
  color: rgba(113, 142, 157, 0.36);
}

.yellow-text {
  color: #b09919;
}

@font-face {
  font-family: "droid-kufi-regular";
  src: url("../fonts/DroidKufiRegular/DroidKufiRegular.eot");
  src: local("../fonts/DroidKufiRegular/DroidKufiRegular"), url("../fonts/DroidKufiRegular/DroidKufiRegular.woff") format("woff"), url("../fonts/DroidKufiRegular/DroidKufiRegular.ttf") format("truetype");
}

@font-face {
  font-family: "droid-kufi-bold";
  src: url("../fonts/DroidKufiBold/DroidKufiBold.ttf");
}

@font-face {
  font-family: "gessbold";
  src: url("../fonts/gessbold/gessbold.otf");
}

@font-face {
  font-family: "Tajawal-medium";
  src: url("../fonts/tajawal/Tajawal-Regular.ttf");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: termina, sans-serif;
}

html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] span,
html[dir="rtl"] li {
  font-family: "Tajawal-medium";
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: "gessbold";
}

.ar {
  font-family: "Tajawal-medium";
}

.ar-bold {
  font-family: "gessbold";
}

body,
p,
a,
span,
.en,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: termina, sans-serif;
}

.en {
  font-family: termina, sans-serif !important;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: bolder;
}

.justify {
  text-align: justify;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.btn-round {
  padding: 5px 10px;
  margin: 0;
  background-color: none;
  border: 1px solid rgba(113, 142, 157, 0.36);
  border-radius: 30px;
  background: none;
}

.btn-lang:hover i {
  -webkit-animation: bounceIn 1s ease;
          animation: bounceIn 1s ease;
}

.download a {
  position: relative;
}

.download a img {
  width: 200px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.download a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@-webkit-keyframes stickyhead {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes stickyhead {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.bounceIn {
  -webkit-animation: bounce 1s ease infinite;
          animation: bounce 1s ease infinite;
}

@-webkit-keyframes bounce {
  30% {
    width: 110%;
  }
}

@keyframes bounce {
  30% {
    width: 110%;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.animated {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.d2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.d2-5 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.spaceInUp {
  -webkit-animation-name: spaceInUp;
          animation-name: spaceInUp;
}

@-webkit-keyframes spaceInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(0.2) translate(0%, -200%);
            transform: scale(0.2) translate(0%, -200%);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(1) translate(0%, 0%);
            transform: scale(1) translate(0%, 0%);
  }
}

@keyframes spaceInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(0.2) translate(0%, -200%);
            transform: scale(0.2) translate(0%, -200%);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(1) translate(0%, 0%);
            transform: scale(1) translate(0%, 0%);
  }
}

.spaceOutUp {
  -webkit-animation-name: spaceOutUp;
          animation-name: spaceOutUp;
}

@-webkit-keyframes spaceOutUp {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(1) translate(0%, 0%);
            transform: scale(1) translate(0%, 0%);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(0.2) translate(0%, -200%);
            transform: scale(0.2) translate(0%, -200%);
  }
}

@keyframes spaceOutUp {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(1) translate(0%, 0%);
            transform: scale(1) translate(0%, 0%);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    -webkit-transform: scale(0.2) translate(0%, -200%);
            transform: scale(0.2) translate(0%, -200%);
  }
}

@media (max-width: 576px) {
  .download a img {
    display: block;
    margin: 10px auto;
  }
}

header {
  position: fixed;
  background: none;
  width: 100%;
  top: 0;
  z-index: 9;
}

header .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
}

header .nav .logo {
  z-index: 99;
}

header .nav .logo img {
  width: 180px;
}

header .nav .navbar {
  padding: 0;
  padding: 14px 0;
}

header .nav .navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .nav .navbar ul .navbar-item {
  padding: 0px 12px;
}

header .nav .navbar ul .navbar-item a {
  background: none;
  border-radius: 30px;
  padding: 3px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .nav .navbar ul .navbar-item a span {
  color: #4a4a48;
  font-weight: bold;
}

header .nav .navbar ul .navbar-item:hover a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .nav .navbar ul .navbar-item:hover a span {
  color: #b09919;
}

header .nav .navbar ul .navbar-item a.active span {
  color: #b09919;
}

header .nav .btn-lang {
  color: #ffffff;
  border: 1px solid #25642e;
  border-radius: 25px;
  background: #25642e;
  font-weight: bold;
}

header .nav .btn-lang:hover {
  color: #4a4a48;
  background: #f5f1e9;
}

header.fixed {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px #e0e5e9 solid;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.04);
          box-shadow: 0 3px 2px rgba(0, 0, 0, 0.04);
  -webkit-animation: 0.7s ease-in-out 0.1s normal both 1 running stickyhead;
          animation: 0.7s ease-in-out 0.1s normal both 1 running stickyhead;
}

header.fixed .nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0 5px 0;
}

header.fixed .nav .logo img {
  width: 120px;
}

header.fixed .nav .btn-lang:hover {
  background: #f5f1e9;
}

@media (max-width: 1230px) {
  header .nav .navbar ul .navbar-item {
    padding: 0px 10px;
  }
  header .nav .navbar ul .navbar-item a {
    padding: 3px 3px;
  }
}

@media (max-width: 1040px) {
  header .nav .logo img {
    width: 150px;
  }
  header .nav .navbar ul .navbar-item a {
    padding: 3px 0px;
  }
}

@media (max-width: 992px) {
  header {
    position: relative;
    width: 100%;
    height: 100px;
  }
  header .toggler-button {
    position: fixed;
    right: 25px;
    top: 25px;
    background: rgba(74, 74, 72, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
  }
  header .toggler-button .fa.fa-times {
    left: 150px;
  }
  header .toggler-button .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 25px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .toggler-button:hover {
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .toggler-button:hover .fa {
    color: #4a4a48;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .logo-small {
    position: relative;
    top: 2px;
    left: 20px;
    max-width: 250px;
  }
  header .nav {
    visibility: hidden;
    opacity: 0;
  }
  header.toggled .toggled-remover {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: rgba(74, 74, 72, 0.7);
    z-index: 99;
  }
  header.toggled .toggler-button .fa.fa-times {
    left: 50%;
  }
  header.toggled .toggler-button .fa.fa-bars {
    left: -150px;
  }
  header.toggled .nav {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    width: 300px;
    min-width: 300px;
    height: 100vh;
    display: block;
    background: #ffffff;
    -webkit-animation-name: spaceInUp;
            animation-name: spaceInUp;
    visibility: visible;
    opacity: 1;
  }
  header.toggled .nav .logo img {
    width: 120px;
    margin: 0 15px;
  }
  header.toggled .nav .navbar {
    padding: 14px 0;
  }
  header.toggled .nav .navbar ul {
    display: block;
    width: 100%;
  }
  header.toggled .nav .navbar ul .navbar-item {
    padding: 8px 12px;
  }
  header.toggled .nav .navbar ul .navbar-item a {
    display: block;
    border-radius: 5px;
    padding: 8px 5px;
  }
  header.toggled .nav .dropdown .btn-lang {
    margin: 0 15px;
  }
  header.fixed {
    position: static;
    border-bottom: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-animation: none;
            animation: none;
  }
  header.fixed .nav {
    padding: 25px 0;
  }
  header.fixed .nav .logo img {
    width: 120px;
  }
  html[dir="rtl"] header .logo-small {
    left: auto;
    right: 20px;
  }
  html[dir="rtl"] header .toggler-button {
    right: auto;
    left: 25px;
  }
  html[dir="rtl"] header.toggled .nav {
    right: auto;
    left: 0;
  }
}

@media (max-width: 576px) {
  header .toggler-button {
    right: 20px;
    top: 25px;
    width: 40px;
    height: 40px;
  }
  header .toggler-button .fa {
    font-size: 20px;
  }
  header .logo-small {
    right: 10px;
    top: 9px;
    max-width: 170px;
  }
  header.toggled .nav {
    min-width: 268px;
  }
  header.toggled .nav .logo img {
    width: 120px;
    margin: 0 5px;
  }
  header.toggled .nav .navbar ul .navbar-item {
    padding: 8px 5px;
  }
  header.toggled .nav .navbar ul .navbar-item a {
    padding: 8px 5px;
  }
  header.toggled .nav .dropdown .btn-lang {
    margin: 0 5px;
  }
}

footer {
  background: #55534c;
  color: #ffffff;
  padding: 50px 0;
  position: relative;
}

footer .input-group {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30%;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
}

footer .input-group .link {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

footer .input-group .contact-btn {
  background: #b09919;
  border-radius: 30px !important;
}

footer .input-group .contact-btn button {
  color: #ffffff;
}

footer .input-group .contact-btn button:hover {
  color: #ffffff;
}

footer .input-group .contact-btn:hover {
  background: #bdaa41;
}

footer .input-group .email {
  color: rgba(74, 74, 72, 0.3);
  margin-bottom: 2px;
  font-size: 20px;
}

footer .input-group .fa-envelope {
  color: #25642e;
  font-size: 20px;
  margin-right: 12px;
}

footer .socail a {
  margin: 0 7px;
}

footer .socail a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .socail a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .download a {
  position: relative;
  margin: 0 4px;
}

footer .download a img {
  width: 200px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .download a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

html[dir="rtl"] footer .input-group .fa-envelope {
  margin-right: auto;
  margin-left: 12px;
}

@media (max-width: 996px) {
  footer .input-group {
    width: 50%;
  }
}

@media (max-width: 768px) {
  footer .input-group {
    width: 100%;
  }
  footer .download a {
    margin: 0 0;
  }
}

@media (max-width: 340px) {
  footer .input-group {
    width: 100%;
  }
  footer .input-group .email {
    font-size: 15px;
  }
  footer .download a {
    margin: 0 0;
  }
}

.main-section {
  top: 0;
  left: 0;
  right: 0;
  padding: 180px 0 70px 0;
  background: #f5f1e9;
  position: relative;
  overflow: hidden;
}

.main-section p {
  font-size: 20px;
  text-align: justify;
}

.main-section .see-more {
  color: #24589b;
}

.main-section button {
  background: none;
  border: 1px solid #b09919;
  -webkit-box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.8);
  color: #4a4a48;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-section button .fa {
  position: relative;
  font-size: 24px;
  color: #b09919;
  top: 2px;
}

.main-section button:hover {
  background: #b09919;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
}

.main-section button:hover .fa {
  color: #ffffff;
}

.main-section .music-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url(../images/music-shap.svg);
  background-position: top;
  -webkit-animation: bounce 2s ease infinite;
          animation: bounce 2s ease infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.properties-section {
  margin: 100px 0 0 0;
  padding: 20px 0;
}

.properties-section .ipad-wrapper {
  margin-top: 80px;
  padding: 35px 0;
  position: relative;
}

.properties-section .ipad-wrapper .ipad {
  position: absolute;
  left: 50%;
  top: -50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.properties-section .ipad-wrapper .ipad-slider-screen {
  position: relative;
  width: 350px;
  height: 500px;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider {
  position: relative;
  width: 280px;
  height: 607px;
  top: -68px;
  left: 34px;
  overflow: hidden;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider .swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100% !important;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination {
  text-align: center;
  position: absolute;
  right: -150px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination .swiper-pagination-bullet {
  z-index: 999;
  width: 15px;
  height: 15px;
  background-color: #b09919;
  border: none;
  margin: 0 4px;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #25642e;
  opacity: 1;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination .swiper-pagination-bullet:focus {
  outline: none;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #25642e;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-next,
.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-prev {
  position: absolute;
  bottom: -130px;
  width: 50px;
  height: 50px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-next span i,
.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-prev span i {
  color: #25642e;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 25px;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-next:hover span i,
.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-prev:hover span i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-next {
  left: 20%;
}

.properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-button-prev {
  right: 20%;
}

.properties-section .small-properties-wrapper .small-properties-box {
  width: 100%;
  padding: 7px 4px;
}

.properties-section .small-properties-wrapper .small-properties-box div {
  background: #ffffff;
  -webkit-box-shadow: 0 0 2px 1px rgba(74, 74, 72, 0.3);
          box-shadow: 0 0 2px 1px rgba(74, 74, 72, 0.3);
  padding: 20px 8px;
}

.properties-section .small-properties-wrapper .small-properties-box div img {
  margin-bottom: 10px;
}

.properties-section .small-properties-wrapper.inline .small-properties-box {
  width: 100%;
  padding: 8px 4px;
}

.properties-section .small-properties-wrapper.inline .small-properties-box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: start;
}

.properties-section .small-properties-wrapper.inline .small-properties-box div img {
  width: 43px;
  margin: 0;
  margin-right: 12px;
}

.properties-section .small-properties-wrapper.inline .small-properties-box div p {
  font-size: 20px;
}

.properties-section .properties-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.properties-section .properties-wrapper .properties-box {
  position: absolute;
  width: 100px;
  height: 100px;
}

.properties-section .properties-wrapper .properties-box img {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.properties-section .properties-wrapper .one {
  left: 100px;
  top: 100px;
}

.properties-section .properties-wrapper .two {
  left: 200px;
  top: 50px;
}

.properties-section .properties-wrapper .three {
  left: 300px;
  top: 0px;
}

.properties-section .properties-wrapper .four {
  left: 400px;
  top: 50px;
}

.properties-section .properties-wrapper .five {
  left: 500px;
  top: 100px;
}

.properties-section .properties-wrapper .six {
  left: 500px;
  top: 200px;
}

.properties-section .properties-wrapper .seven {
  left: 400px;
  top: 250px;
}

.properties-section .properties-wrapper .eight {
  left: 300px;
  top: 300px;
}

.properties-section .properties-wrapper .nine {
  left: 200px;
  top: 250px;
}

.properties-section .properties-wrapper .ten {
  left: 100px;
  top: 200px;
}

.properties-section .properties-wrapper .properties-box.active {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.properties-section .properties-wrapper .properties-box.active img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

html[dir="rtl"] .properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider {
  top: -68px;
  left: auto;
  right: 34px;
}

html[dir="rtl"] .properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination {
  right: auto;
  left: -150px;
}

.info-section {
  margin: 80px 0;
}

.info-section p {
  font-size: 20px;
}

.info-section .btn-box {
  color: #ffffff;
  background: #25642e;
  padding: 20px 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 1px 1px #b09919;
          box-shadow: 0 0 1px 1px #b09919;
}

.info-section .btn-box p {
  font-size: 18px;
}

.count-section {
  margin: 120px 0;
  padding: 30px 0;
  background: #f5f1e9;
}

.count-section .counter {
  color: #25642e;
  font-size: 80px;
}

.info-section.second {
  margin: 0;
}

.info-section.second .btn-box {
  color: #4a4a48;
  background: #f5f1e9;
}

.info-section.second .bg-green {
  background: #25642e;
  color: #ffffff;
}

.impaired-section {
  margin: 80px 0 0 0;
  padding: 80px 0;
  overflow: hidden;
  background: #f5f1e9;
}

.impaired-section p {
  font-size: 20px;
}

.impaired-section img {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.impaired-section img:hover {
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transform: translateY(-10px) scale(1.02);
          transform: translateY(-10px) scale(1.02);
}

.qari-section {
  padding: 80px 0;
  overflow: hidden;
  background-image: url("../images/qari-bg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: 2px solid rgba(176, 153, 25, 0.4);
  border-top: 2px solid rgba(176, 153, 25, 0.4);
}

.qari-section a {
  border: 2px solid #b09919;
  padding: 20px;
  border-radius: 20px;
  background: #f5f1e8;
  font-weight: bold;
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.qari-section a p {
  font-size: 18px;
  color: #4a4a48;
  margin-top: 20px;
}

.qari-section a img {
  width: 150px;
  border-radius: 10px;
}

.qari-section a:hover {
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transform: translateY(-10px) scale(1.02);
          transform: translateY(-10px) scale(1.02);
}

.q-section {
  margin: 80px 0;
  padding: 80px 0;
  background: #f5f1e9;
  position: relative;
  z-index: 1;
}

.q-section .off-project-swiper {
  width: 70%;
  display: block;
  margin: 0 auto;
  position: relative;
}

.q-section .off-project-swiper .swiper-container {
  width: 100%;
  padding-bottom: 50px;
}

.q-section .off-project-swiper .swiper-container .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 250px;
  border-radius: 0px !important;
}

.q-section .off-project-swiper .swiper-container .swiper-slide .info {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  text-align: center;
  width: 100%;
}

.q-section .off-project-swiper .swiper-container .swiper-slide .info img {
  width: 100px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.q-section .off-project-swiper .swiper-container .swiper-slide .info span {
  color: #ffffff;
  top: 105px;
  position: absolute;
  right: 0;
  width: 195px;
  bottom: -130px;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 110px;
  overflow: hidden;
  text-overflow: ellipsis !important;
}

.q-section .off-project-swiper .swiper-container .swiper-slide:hover .info img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.q-section .off-project-swiper .swiper-button-prev1,
.q-section .off-project-swiper .swiper-button-next1 {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #b09919;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.q-section .off-project-swiper .swiper-button-prev1 .fa,
.q-section .off-project-swiper .swiper-button-next1 .fa {
  color: #ffffff;
}

.q-section .off-project-swiper .swiper-button-prev1:hover,
.q-section .off-project-swiper .swiper-button-next1:hover {
  background: #25642e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.q-section .off-project-swiper .swiper-button-prev1:hover:hover .fa,
.q-section .off-project-swiper .swiper-button-next1:hover:hover .fa {
  color: #ffffff;
}

.q-section .off-project-swiper .swiper-button-prev1 {
  right: 0;
}

.q-section .off-project-swiper .swiper-button-next1 {
  left: 0;
}

.q-section .off-project-swiper .swiper-slide-shadow-left,
.q-section .off-project-swiper .swiper-slide-shadow-right {
  opacity: 0 !important;
}

.app-list {
  padding: 70px 0;
  background: #f5f1e9;
  margin-top: 80px;
}

.app-list ul {
  list-style-type: none;
  padding: 0;
}

.app-list .input-group {
  padding: 0;
}

.app-list .input-group .form-control {
  padding: 8px 10px;
}

.app-list .input-group .input-group-append .input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  background: #f9f7f1;
}

.app-list .input-group .input-group-append .input-group-text img {
  width: 20px;
}

.app-list .app-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 19px;
  background-color: #ffffff;
  margin-top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: visible;
  -webkit-box-shadow: 0 2px 16px 0 rgba(62, 39, 3, 0.2);
          box-shadow: 0 2px 16px 0 rgba(62, 39, 3, 0.2);
}

.app-list .app-box:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.app-list .app-box p {
  margin: 0;
}

.app-list .app-box .app-box-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.app-list .app-box .app-box-detail .app-icon {
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 62px;
  min-height: 62px;
}

.app-list .app-box .app-box-detail .app-name p {
  margin: 0 20px;
  font-size: 17px;
}

.app-list .app-box .app-box-detail .app-name .app-name-color {
  color: #306835;
  font-weight: bold;
}

.app-list .app-box .app-box-detail .app-name .explained {
  font-size: 15px !important;
  color: #383732;
}

.app-list .app-box .app-download-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.app-list .app-box .app-download-img .app-download-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.app-list .app-box .app-download-img .app-download-img-box img {
  width: 38px;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.app-list .app-box .app-download-img .app-download-img-box img:hover {
  margin-top: -5px;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.app-list .app-box .app-download-img .dropdown {
  width: 27px;
  cursor: pointer;
}

.modal .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal .modal-body .btn-download {
  border: 1px solid rgba(74, 74, 72, 0.5);
  padding: 15px 45px;
}

.modal .modal-body .btn-download .fa-cloud-download {
  color: #16ac16;
}

.modal .modal-body .btn-download:hover {
  background: rgba(74, 74, 72, 0.7);
  color: #ffffff;
}

.modal .modal-body .btn-download:hover .fa-cloud-download {
  color: #ffffff;
  -webkit-animation: 0.7s upDown;
          animation: 0.7s upDown;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.modal .modal-footer .socail-list {
  margin: 0 auto;
}

.modal .modal-footer .socail-list .social {
  margin: 25px;
}

.modal .modal-footer .socail-list .social a {
  padding: 10px 15px;
  -webkit-box-shadow: -20px 20px 10px rgba(74, 74, 72, 0.5);
          box-shadow: -20px 20px 10px rgba(74, 74, 72, 0.5);
}

.modal .modal-footer .socail-list .social a::before {
  width: 10px;
  left: -10px;
  top: 5px;
}

.modal .modal-footer .socail-list .social a::after {
  bottom: -10px;
  left: -5px;
  height: 10px;
}

.modal .modal-footer .socail-list .social a i {
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal .modal-footer .socail-list .social:hover a {
  -webkit-transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
          transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
  -webkit-box-shadow: -50px 50px 30px rgba(74, 74, 72, 0.5);
          box-shadow: -50px 50px 30px rgba(74, 74, 72, 0.5);
}

.modal .modal-footer .socail-list .social:hover a i {
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#langModal .lang-wrap {
  background: #f5f1e9;
  padding: 6px 2px;
  display: block;
  color: #4a4a48;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 3px;
}

#langModal .lang-wrap h6 {
  margin: 0;
}

#langModal .lang-wrap:hover {
  background: #b09919;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #ffffff;
}

.up .fa-arrow-up {
  background: rgba(74, 74, 72, 0.5);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #ffffff;
  position: fixed;
  bottom: 50px;
  right: -2px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 999;
}

.up .fa-arrow-up:hover {
  background: #4a4a48;
}

.up.fixed .fa-arrow-up {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: 1s fadeInRight;
          animation: 1s fadeInRight;
}

#detailModal table {
  width: 100% !important;
}

#detailModal table td {
  text-align: center;
}

.app-detail-bg {
  background-image: url("../images/app-box/pattern-bg2.png");
  overflow-y: auto;
}

.app-detail-bg .details-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.app-detail-bg .details-box .details-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 2px 1px rgba(223, 202, 134, 0.2);
          box-shadow: 0 0 2px 1px rgba(223, 202, 134, 0.2);
  width: 100%;
  max-width: 750px;
  padding: 20px 10px;
}

.app-detail-bg .details-box .details-info .details-img {
  display: block;
  margin: 0 auto;
  min-width: 120px;
}

.app-detail-bg .details-box .details-info .details-icons img {
  max-width: 38px;
  margin: 10px 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.app-detail-bg .details-box .details-info .details-icons img:hover {
  -webkit-transform: scale(1.1) translateY(-3px);
          transform: scale(1.1) translateY(-3px);
}

.app-detail-bg .details-wrap {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 0;
  margin: 10px 0;
}

@media (max-width: 1200px) {
  .main-section .side-liptop .slider-screens {
    top: -50px;
    width: 608px;
    height: 500px;
  }
  .main-section .side-liptop .slider-screens .main-slider {
    width: 470px;
    height: 270px;
    top: 92px;
    left: -68px;
  }
}

@media (max-width: 992px) {
  .main-section {
    padding: 70px 0 50px 0;
  }
  .main-section .side-liptop {
    margin: 50px auto 0 auto;
  }
  .main-section .side-liptop .slider-screens {
    top: -50px;
    width: 748px;
    height: 600px;
  }
  .main-section .side-liptop .slider-screens .main-slider {
    width: 580px;
    height: 330px;
    top: 105px;
    left: -84px;
  }
  .feature-section .icon-wrap .icon-box {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .w-50 {
    width: 100% !important;
  }
  .main-section .side-liptop .slider-screens {
    top: -50px;
    width: 608px;
    height: 500px;
  }
  .main-section .side-liptop .slider-screens .main-slider {
    width: 470px;
    height: 270px;
    top: 92px;
    left: -68px;
  }
  .feature-section .icon-wrap .icon-box {
    width: 50%;
  }
  .app-list .app-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
  .app-list .app-box:hover {
    margin-bottom: 0;
  }
  .app-list .app-box .app-box-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .app-list .app-box .app-box-detail .app-name {
    text-align: center;
  }
  .app-list .app-box .app-box-detail .app-name p {
    margin: 12px 0 0 0;
  }
  .app-list .app-box .app-download-img {
    padding: 10px 0;
    width: 100%;
  }
  .app-list .app-box .app-download-img .app-download-img-box {
    margin-right: 2%;
  }
  .app-list .app-box .app-download-img .app-download-img-box img {
    width: 35px;
  }
  .app-list .app-box .app-download-img .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 20px;
    height: 20px;
    margin: 0;
    position: absolute;
    top: 15px;
    right: 10px;
  }
  .app-list .app-box .app-download-img .dropdown:hover .more {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  html[dir="rtl"] .app-box .app-download-img .dropdown {
    right: auto;
    left: 10px;
  }
  .email-section .logo2 {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .main-section .side-liptop .slider-screens {
    top: -120px;
    width: 328px;
    height: 500px;
  }
  .main-section .side-liptop .slider-screens .main-slider {
    width: 250px;
    height: 147px;
    top: 165px;
    left: -39px;
  }
  .properties-section .ipad-wrapper .ipad-slider-screen .ipad-swiper-pagination {
    display: none;
  }
  .email-section .logo2 {
    max-width: 250px;
  }
  .modal .modal-body .btn-download {
    border: 1px solid rgba(74, 74, 72, 0.5);
    padding: 15px 15px;
  }
  .modal .modal-footer .socail-list {
    margin: 0 auto;
  }
  .modal .modal-footer .socail-list .social {
    margin: 20px;
  }
  .modal .modal-footer .socail-list .social a {
    padding: 7px 10px;
    -webkit-box-shadow: -10px 10px 7px rgba(74, 74, 72, 0.5);
            box-shadow: -10px 10px 7px rgba(74, 74, 72, 0.5);
  }
  .modal .modal-footer .socail-list .social a::before {
    width: 8px;
    left: -8px;
    top: 4px;
  }
  .modal .modal-footer .socail-list .social a::after {
    bottom: -8px;
    left: -4px;
    height: 8px;
  }
  .modal .modal-footer .socail-list .social a i {
    font-size: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .modal .modal-footer .socail-list .social:hover a {
    -webkit-transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
            transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
    -webkit-box-shadow: -50px 50px 30px rgba(74, 74, 72, 0.5);
            box-shadow: -50px 50px 30px rgba(74, 74, 72, 0.5);
  }
  .modal .modal-footer .socail-list .social:hover a i {
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media (max-width: 340px) {
  .main-section .downlaod.watch button {
    margin: 10px 0;
  }
  .main-section .side-liptop .slider-screens {
    top: -100px;
    width: 288px;
    height: 300px;
  }
  .main-section .side-liptop .slider-screens .main-slider {
    width: 210px;
    height: 127px;
    top: 75px;
    left: -38px;
  }
  .properties-section .ipad-wrapper .ipad-slider-screen {
    width: 300px;
    height: 400px;
  }
  .properties-section .ipad-wrapper .ipad-slider-screen .ipad-main-slider {
    width: 250px;
    height: 530px;
    top: -72px;
    left: 28px;
  }
  .mac-section {
    margin-top: 40px;
  }
  .mac-section .mac-wrapper .mac-slider-screen {
    position: relative;
    width: 280px;
    height: 450px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider {
    position: relative;
    width: 265px;
    height: 150px;
    top: 115px;
    left: -13px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .swiper-wrapper .swiper-slide h4 {
    padding: 10px 15px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-next,
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-prev {
    width: 30px;
    height: 30px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-next .fa,
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-prev .fa {
    font-size: 15px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-next {
    left: 5px;
  }
  .mac-section .mac-wrapper .mac-slider-screen .mac-main-slider .mac-swiper-btn .mac-button-prev {
    right: 5px;
  }
  .app-list .app-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .app-list .app-box .app-box-detail .app-name p {
    font-size: 15px;
  }
  .app-list .app-box .app-box-detail .app-name .explained {
    font-size: 13px !important;
  }
  .app-list .app-box .app-download-img .app-download-img-box {
    margin-right: 0%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .app-list .app-box .app-download-img .app-download-img-box img {
    width: 25px;
    margin-top: 10px;
  }
  .app-list .app-box .app-download-img .dropdown {
    width: 25px;
    height: 25px;
  }
}

div.col-md-2 {
  border-right: #ddd solid 0.1px;
}

div.col-md-2:last-child {
  border-right: #ddd solid 0px;
}

.watch-properties-sec {
  padding: 40px 0;
  margin-top: 40px;
}

.watch-properties-sec .container {
  position: relative;
}

.watch-properties-sec .container .row {
  position: relative;
}

.watch-properties-sec .download-btn {
  color: #ffffff;
  border: 1px solid #25642e;
  border-radius: 25px;
  background: #25642e;
  font-weight: bold;
  padding: 7px 13px;
}

.watch-properties-sec .download-btn:hover {
  color: #4a4a48;
  background: #f5f1e9;
}

.watch-properties-sec .watch-img {
  max-width: 250px;
}

.watch-properties-sec .center-line {
  position: absolute;
  width: 3px;
  height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #b09919;
}

.watch-properties-sec .watch-icon {
  background: #b09919;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 1px 2px #b09919, 0 0 3px 10px rgba(176, 153, 25, 0.5);
          box-shadow: 0 0 1px 2px #b09919, 0 0 3px 10px rgba(176, 153, 25, 0.5);
}

.watch-footer {
  background: #f5f1e9;
  padding: 50px 0;
  margin-top: 200px;
}

.watch-footer .watch-download-box {
  background: #f5f1e9;
  padding: 60px 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 1px 1px rgba(74, 74, 72, 0.3);
          box-shadow: 0 0 1px 1px rgba(74, 74, 72, 0.3);
  margin-top: -180px;
}

.watch-footer .watch-download-box .box {
  -webkit-box-shadow: 0 0 1px 1px rgba(74, 74, 72, 0.3);
          box-shadow: 0 0 1px 1px rgba(74, 74, 72, 0.3);
  background: #ffffff;
  padding: 20px 0;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.watch-footer .watch-download-box .box .watch-img {
  max-width: 150px;
}

.watch-footer .watch-download-box .box .download-btn {
  color: #ffffff;
  border: 1px solid #25642e;
  background: #25642e;
  font-weight: bold;
  padding: 7px 13px;
  border-radius: 25px;
}

.watch-footer .watch-download-box .box .download-btn:hover {
  color: #4a4a48;
  background: #f5f1e9;
}

@media (max-width: 768px) {
  .watch-properties-sec .container h2 {
    font-size: 22px;
    padding-left: 50px;
  }
  .watch-properties-sec .watch-img {
    width: 200px;
  }
  .watch-properties-sec .center-line {
    display: none;
  }
  .watch-properties-sec .watch-icon {
    left: 33px;
    right: auto;
    top: 16rem;
    width: 33px;
    height: 33px;
  }
  .watch-properties-sec .watch-icon img {
    width: 20px;
    height: 20px;
  }
  .watch-footer {
    margin-top: 40px;
    padding: 10px 0;
  }
  .watch-footer .watch-download-box {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 20px;
  }
  html[dir="rtl"] .watch-properties-sec .container h2 {
    padding-right: 50px;
  }
  html[dir="rtl"] .watch-properties-sec .watch-icon {
    left: auto;
    right: 0;
  }
}
/*# sourceMappingURL=all.css.map */