/*
 ** Prefix CSS3 Properties
 ** Accept Arguments => Property Name, Property Values, Vendor Prefixes
 ** Example: @include prefixer(transition, all .3s ease, webkit moz o)
 */
/*
 ** Overlay Mixin
 ** Accept Argument => Color
 ** Example: @include overlay(black, .5);
 */
/*
 ** Center Element Horizontally and Vertically
 ** Accept No Arguments
 ** Example: @include centerer();
 */
/* mixin even odd */
/* social hover */
/*  Animation Mixin For All Browser  */
.but-black {
  color: #c0aa83;
  border: 1px solid #c0aa83;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 14;
}

.but-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: -1;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.but-black:hover {
  color: #c0aa83;
}

.but-black:hover::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.but-black a {
  color: #c0aa83;
}

.but-light {
  color: #262626;
  background-color: #c0aa83;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 14;
}

.but-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.but-light:hover {
  color: #c0aa83;
}

.but-light:hover::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.but-light a {
  color: #262626;
}

.heading-title {
  color: #262626;
  position: relative;
}

@media (max-width: 768px) {
  .heading-title {
    font-size: 18px;
  }
}

.heading-title::after {
  content: url("../image/title-separator.png");
  position: absolute;
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.heading-title2, .about .box-about h1 {
  color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .heading-title2, .about .box-about h1 {
    font-size: 18px;
  }
}

.heading-title2::after, .about .box-about h1::after {
  content: url("../image/slider-separator-img.png");
  position: absolute;
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

body {
  font-family: 'Cairo', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Reem Kufi', sans-serif;
}

p {
  font-family: 'Cairo', sans-serif;
}

a:hover {
  text-decoration: none;
}

.padding-section, .services {
  padding: 100px 0;
}

.header {
  background: url("../image/slide2.jpg") no-repeat;
  background-size: cover;
  height: 100vh;
}

.header .my-navbar {
  position: absolute;
  z-index: 999;
  width: 100%;
}

.header .my-navbar .navbar-brand {
  color: #fff;
  padding-left: 50px;
}

.header .my-navbar .navbar-brand img {
  height: 80px;
}

.header .my-navbar .navbar-nav {
  padding-top: 30px;
}

.header .my-navbar .navbar-nav .nav-item {
  padding: 0 15px;
}

.header .my-navbar .navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .my-navbar .navbar-nav .nav-item .nav-link:hover {
  color: #c0aa83;
}

.header .my-navbar .navbar-nav .nav-item .nav .active {
  color: #c0aa83;
}

.header .text-slide {
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 100px;
}

@media (max-width: 768px) {
  .header .text-slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header .text-slide .carousel img {
  height: 700px !important;
}

.header .text-slide .box {
  width: 60%;
  text-align: center;
}

.header .text-slide .box h1 {
  font-size: 100px;
  margin-bottom: -66px;
}

@media (max-width: 768px) {
  .header .text-slide .box h1 {
    font-size: 32px;
  }
}

.header .text-slide .box p {
  font-size: 18px;
  margin: -10px auto;
  width: 80%;
}

@media (max-width: 768px) {
  .header .text-slide .box p {
    font-size: 15px;
  }
}

.navbar-light .navbar-toggler {
  color: #fff;
  border: 1px solid #fff;
  background-color: #fff;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #00000b;
  }
}

.services {
  background: url("../image/services-bg.png") no-repeat left center;
  background-attachment: fixed;
}

.services .par-title {
  margin: 60px auto 30px auto;
  width: 50%;
}

.services .future {
  margin-top: 60px;
}

.services .future .box img {
  margin-bottom: 20px;
}

.about {
  height: 500px;
  background: url("../image/about-bg.png") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.about .box-about {
  color: #eee;
  z-index: 3;
  position: relative;
  padding-top: 100px;
}

@media (max-width: 768px) {
  .about .box-about {
    padding-top: 30px;
  }
}

.about .box-about p {
  margin: 60px auto 50px auto;
  width: 60%;
  line-height: 30px;
}

@media (max-width: 768px) {
  .about .box-about p {
    width: 90%;
  }
}

.product {
  background: url("../image/services-bg.png") no-repeat right center;
  background-attachment: fixed;
  padding: 50px 0;
}

.product p {
  margin: 60px auto 50px auto;
  width: 40%;
  line-height: 30px;
}

.product .product-items {
  margin-top: 70px;
  margin-bottom: 50px;
}

.product .product-items .box {
  background-color: #fff;
  border: 2px solid #ffffff;
  border-radius: 0px 0px;
  -webkit-box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  padding: 20px 0;
}

.product .product-items .box img {
  width: 200px;
  height: 250px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.product .product-items .box h5 {
  color: #262626;
  font-weight: 700;
  margin-top: 65px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.product .product-items .box h5::after {
  content: url("../image/title-separator.png");
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.product .product-items .box:hover {
  border: 2px solid #c0aa83;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.product .product-items .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product .product-items .box:hover h5 {
  color: #874d34;
}

footer {
  padding: 75px 0;
  position: relative;
  background-image: url("../image/footer.jpg");
  background-position: 55% bottom;
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}

footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

footer .footer-data {
  color: #fff;
  position: relative;
  z-index: 3;
}

footer .footer-data p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
}

footer .footer-data h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 24px;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

footer .footer-data .contact-info {
  padding-left: 50px;
}

@media (max-width: 768px) {
  footer .footer-data .contact-info {
    padding-left: 0px;
  }
}

footer .footer-data .contact-info span {
  display: block;
  margin-bottom: 10px;
}

footer .footer-data .contact-info span i {
  margin-left: 10px;
}

footer .footer-data .footer-product {
  padding-left: 30px;
}

@media (max-width: 768px) {
  footer .footer-data .footer-product {
    padding-left: 0px;
  }
}

footer .footer-data .footer-product li {
  margin-bottom: 10px;
}

footer .footer-data .footer-product li i {
  margin-left: 10px;
}

footer .footer-data .social {
  margin-top: 15px;
  padding-top: 20px;
  position: relative;
}

footer .footer-data .social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f1f1f1;
}

footer .footer-data .social a {
  color: #fff;
  margin-right: 10px;
}

.footer-copy {
  background-color: #15110D;
  padding: 20px 0;
  text-align: center;
  z-index: 9999;
}

.footer-copy span {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
  .footer-copy span {
    font-size: 14px;
  }
}
/*# sourceMappingURL=mian.css.map */