/*
 ** 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 {
  color: #fff;
  position: relative;
}

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

.heading-title2::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, .about-info, .gallery, .contact-us {
  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;
  }
}

.header {
  max-height: 400px;
  background: url("../image/in-bg.png") no-repeat center;
  background-size: cover;
  position: relative;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.header .title-slide-inner {
  height: 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;
}

.header .title-slide-inner .box {
  color: #fff;
  text-align: center;
  z-index: 20;
}

.header .title-slide-inner .box img {
  width: 75%;
}

.about-info .box1 {
  margin-bottom: 50px;
}

.about-info .box1 h1 {
  margin: 20px 0;
}

.about-info .box1 p {
  width: 80%;
  margin: 20px auto;
  font-size: 18px;
  color: #515151;
}

.about-info .image-about {
  overflow: hidden;
}

.about-info .image-about img {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}

.gallery {
  position: relative;
}

.gallery .box {
  margin-bottom: 20px;
  position: relative;
  background-color: #f4f4f4;
  border-radius: 10px 10px 0 0;
}

.gallery .box img {
  height: 200px;
  width: 100%;
}

.gallery .box i {
  position: absolute;
  right: -65px;
  background-color: #fff;
  border: 2px solid #c0aa83;
  padding: 10px;
  border-radius: 50%;
  color: #c0aa83;
}

.gallery .box h5 {
  margin-bottom: 15px;
  background-color: #c0aa83;
  padding: 10px 10px 10px 20px;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.gallery .box h5::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: -11px;
  top: -2px;
  color: #c0aa83;
  font-size: 40px;
}

.gallery .box:before {
  content: '';
  position: absolute;
  top: 40px;
  right: -43px;
  height: 100%;
  width: 2px;
  background-color: #c0aa83;
}

.contact-us .box {
  padding-right: 45px;
}

.contact-us .box span {
  display: block;
  margin-bottom: 10px;
}

.contact-us .box span i {
  color: #c0aa83;
}

.contact-us .social {
  margin-top: 20px;
}

.contact-us .social a {
  color: #c0aa83;
  margin-left: 30px;
}

.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=inner.css.map */