@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;600;700&display=swap");
body img {
  max-width: 100%;
  height: auto;
}
body input[type=button] {
  outline: none;
}
body ul {
  list-style-type: none;
}
body p, body h1, body h2, body h3, body h4, body h5, body h6, body ul, body span, body label, body a {
  padding: 0;
  margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
}
body p, body ul, body span, body label, body span, body select {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 400;
}
body a, body button {
  transition: 0.5s;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;
}
body a:hover, body button:hover {
  text-decoration: none;
}
body select {
  cursor: pointer;
}
body .section-mb {
  margin-bottom: 90px;
}
body .brown-color {
  color: #7A4C31;
}
body .gold-color {
  color: #DDB548;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
header {
  position: relative;
  padding-right: 17%;
}
header .mohamoon-logo {
  position: absolute;
  top: 0%;
  right: 0;
  z-index: 9999;
}
header .top-header {
  padding-top: 8px;
  padding-bottom: 5px;
  box-shadow: #eaeaea 0px 5px 10px;
}
header .top-header .help:hover {
  color: #DDB548;
}
header .main-header {
  padding-top: 24px;
  padding-bottom: 23px;
}
header .main-header .navbar-toggler {
  color: red;
  background-color: #fff;
  padding: 6px 8px 2px 8px;
  font-size: 1.8em;
  border: none;
  border-radius: 6px;
}
header .main-header .fixed-top {
  position: unset;
}
header .main-header .navbar {
  padding: 4px 0;
  top: 10%;
  background-color: #fff;
}
header .main-header .nav-item {
  margin-left: 20px;
}
header .main-header .nav-item .nav-link {
  color: #7A4C31;
  font-size: 1.1em;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  font-size: 1.1em;
}
header .main-header .nav-item .nav-link:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #DDB548;
  height: 3px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
header .main-header .nav-item .nav-link:hover:before, header .main-header .nav-item .nav-link:focus:before, header .main-header .nav-item .nav-link:active:before {
  left: 0;
  right: 0;
}
header .main-header .nav-item .nav-link:hover {
  color: #DDB548;
}
header .main-header .my-account .dropdown-toggle {
  background-color: #DDB548;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 17px;
}
header .main-header .my-account .dropdown-toggle:after {
  display: none;
}
header .navbar-scroll {
  background: #fff;
  padding: 0;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
  transition-duration: 0.6s;
  right: 0 !important;
  left: 0 !important;
  padding: 0 50px !important;
  top: 0 !important;
  position: fixed !important;
  z-index: 999999;
}
header .navbar-scroll .nav-link {
  color: #3B3B3B !important;
  border-top: 4px solid #fff !important;
}
header .navbar-scroll .client-area-btn {
  background-color: green !important;
  color: #fff !important;
}
header .nav-dropdown-scroll {
  background: #e7eaea;
  box-shadow: 0px 10px 9px rgba(0, 0, 0, 0.4);
}

.content .main-title {
  position: relative;
}
.content .main-title:before {
  position: absolute;
  height: 2px;
}
.content .custom-btn {
  border-radius: 7px;
  color: #fff;
  padding: 5px 50px;
  font-size: 1.1em;
  border: none;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #DDB548;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.content .custom-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.content .custom-btn:hover, .content .custom-btn:focus, .content .custom-btn:active {
  color: #7A4C31;
}
.content .custom-btn:hover:before, .content .custom-btn:focus:before, .content .custom-btn:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}
.content .home-intro {
  background: url(../img/home-banner.png) no-repeat center;
  padding-top: 130px;
  padding-bottom: 220px;
  background-size: cover;
  position: relative;
}
.content .home-intro .intro-mohamoon {
  position: absolute;
  left: 2%;
  top: 2%;
  opacity: 0.5;
  width: 14%;
}
.content .home-intro .form-group {
  position: relative;
  margin-top: 150px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.content .home-intro .form-group .form-control {
  height: 56px;
  border-radius: 7px;
}
.content .home-intro .form-group .custom-btn {
  position: absolute;
  height: 56px;
  left: 0;
  top: 0;
  border: 1px solid #DDB548;
}
.content .home-intro .form-group .custom-btn:hover {
  border: 1px solid #DDB548;
  color: #DDB548;
}
.content .chose-contract-type {
  border-radius: 12px;
  background-color: #F2F2F2;
  box-shadow: 0px 0px 20px 0px #00000033;
  z-index: 999;
  position: relative;
  margin-top: -100px;
}
.content .chose-contract-type a {
  background-color: #DDB548;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  padding: 30px 95px 30px 0;
  position: relative;
  border-radius: 8px;
}
.content .chose-contract-type a img {
  position: absolute;
  top: 4px;
  right: 4px;
}
.content .about-contract p a:hover {
  color: #7A4C31;
}
.content .contract-block {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
}
.content .contract-block a {
  color: #000;
  display: block;
  font-weight: 800;
  line-height: 2;
}
.content .contract-block a:hover {
  color: #DDB548;
}
.content .latest-contract {
  background-color: #18100B;
  padding-top: 95px;
  padding-bottom: 95px;
}
.content .latest-contract h6 {
  color: #BFBFBF;
}
.content .latest-contract .main-title {
  color: #fff;
}
.content .latest-contract .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
}
.content .latest-contract .owl-nav .owl-prev, .content .latest-contract .owl-nav .owl-next {
  position: absolute;
}
.content .latest-contract .owl-nav .owl-prev span, .content .latest-contract .owl-nav .owl-next span {
  color: #DDB548;
  font-size: 4em;
  font-family: initial;
}
.content .latest-contract .owl-nav .owl-next {
  left: -5%;
}
.content .latest-contract .owl-nav .owl-prev {
  right: -5%;
}
.content .services {
  padding-top: 95px;
  padding-bottom: 95px;
  background: url(../img/services-bg.png) no-repeat center;
  background-size: cover;
}
.content .services .contract-block {
  padding: 0;
}
.content .services .contract-block .kreda {
  width: auto !important;
  height: auto !important;
}
.content .services .contract-block a {
  border-top: 1px solid #eaeaea;
}
.content .services .contract-block a:hover {
  color: #7A4C31;
}
.content .services .contract-block img {
  width: 165px;
  height: 165px;
}

footer {
  background-color: #f8f8f8;
  padding-top: 30px;
}
footer .footer-link li {
  line-height: 2;
}
footer .footer-link li a {
  color: #1F1816;
}
footer .footer-link li a:hover {
  color: #DDB548;
}
footer .bottom {
  background-color: #efefef;
}

.bottom-footer {
  background-color: #e3e3e1;
  padding: 10px 0;
}
.bottom-footer p {
  color: yellow;
  font-size: 0.8em;
  margin-top: 15px;
}

/*# sourceMappingURL=style.css.map */
