@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "rb-light";
  src: url(../fonts/rb_light.TTF);
}

@font-face {
  font-family: "rb-regular";
  src: url(../fonts/rb_regular.TTF);
}

*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #c19639;
  --sub-color: #001f56;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "rb-regular";
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  color: var(--sub-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bolder;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

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

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  -webkit-box-shadow: 15px 15px 30px #0001;
          box-shadow: 15px 15px 30px #0001;
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --------------- buttons --------------- */
.cir-butn {
  position: relative;
  padding: 5px 20px 5px 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  background-color: var(--sub-color);
  border-radius: 50px;
  color: #fff;
}

.cir-butn .arrow {
  width: 35px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: var(--sub-color);
  border-radius: 50%;
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cir-butn:hover {
  background-color: var(--main-color);
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 0;
  z-index: 99;
  background-color: #f9f9f9;
}

.navbar.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: -100px;
  padding: 0;
  z-index: 99;
  background-color: #f9f9f9;
  box-shadow: 5px 5px 20px #0001;
  transform: translateY(100px);
  transition: all 0.5s ease;
}

.navbar.fixed .logo {
    height: 70px;
}

.navbar .logo {
  height: 100px;
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: bold;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  color: var(--sub-color);
}

.navbar .nav-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .nav-side .icon {
  font-size: 20px;
  margin: 0 10px;
}

.navbar .themeToggler {
  position: relative;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.navbar .themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 31px;
  margin: 0 15px 0 0;
}

.navbar .themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.navbar .themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar .themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: -10px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.navbar .themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #E8BA27;
          box-shadow: 0 0 1px #E8BA27;
}

.navbar .themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  content: "Light";
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--primary);
}

.navbar .themeToggler .slider.round {
  border-radius: 10px;
}

.navbar .themeToggler .slider.round:before {
  border-radius: 10px;
}

.parallaxed2 {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

/* --------------- header --------------- */
header {
  position: relative;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#001f5622), to(transparent));
  background-image: linear-gradient(to top, #001f5622, transparent);
  z-index: 20;
}

header .info {
  position: relative;
  padding: 150px 0 100px;
}

header .info h6 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--main-color);
}

header .info h1 {
  font-size: 45px;
}

header .info .text {
  position: relative;
  margin-top: 40px;
  font-size: 18px;
}

header .img {
  position: relative;
  height: 700px;
  width: 150%;
  right: -50%;
  bottom: 0;
  -webkit-filter: drop-shadow(0 50px 20px #0005);
          filter: drop-shadow(0 50px 20px #0005);
}

header .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
}

header .sm-img {
  position: absolute;
  bottom: 100px;
  width: 30%;
  right: 15%;
  z-index: -2;
}

header .logo-pat {
  position: absolute;
  left: 30%;
  top: 0;
  height: 100%;
  max-height: unset;
  z-index: -1;
  -webkit-filter: invert(56%) sepia(75%) saturate(379%) hue-rotate(3deg) brightness(94%) contrast(88%);
          filter: invert(56%) sepia(75%) saturate(379%) hue-rotate(3deg) brightness(94%) contrast(88%);
  opacity: 0.05;
}

@media screen and (min-width: 991px) {
  header .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    -webkit-padding-start: calc((100% - 1320px) / 2);
            padding-inline-start: calc((100% - 1320px) / 2);
  }
}

/* --------------- features-marq-slider --------------- */
.features-marq-slider {
  position: relative;
  overflow: hidden;
  background-color: var(--sub-color);
  padding: 20px 0;
  z-index: 2;
}

.features-marq-slider::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--sub-color)), color-stop(transparent), color-stop(transparent), color-stop(transparent), to(var(--sub-color)));
  background-image: linear-gradient(to right, var(--sub-color), transparent, transparent, transparent, var(--sub-color));
  z-index: 20;
}

.features-marq-slider h4 {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  position: relative;
  -webkit-margin-end: 100px;
          margin-inline-end: 100px;
}

.features-marq-slider h4::after {
  position: absolute;
  content: "";
  left: -109px;
  top: -10px;
  width: 100px;
  height: 60px;
  background-image: url(../images/fav.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.features-marq-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
  pointer-events: none;
}

.features-marq-slider .swiper-wrapper .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

/* --------------- about --------------- */
.about {
  position: relative;
  text-align: center;
  z-index: 20;
  background-image: url(../images/body_bg.png);
  background-size: contain;
  background-repeat: repeat;
  overflow: hidden;
  padding: 50px 0 100px;
}

.about .logo {
  height: 300px;
  margin-bottom: -200px;
  opacity: 0.3;
}

.about .info h2 {
  font-size: 50px;
  position: relative;
  z-index: 20;
}

.about .info .text {
  position: relative;
  margin-top: 15px;
}

.about .info .text * {
  font-size: 19px;
}

.about .info .text strong {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  display: inline;
}

.about .about-cards .item {
  position: relative;
  margin-top: 30px;
  padding: 15px;
  z-index: 20;
}

.about .about-cards .item .icon {
  height: 50px;
  margin-bottom: 20px;
}

.about .about-cards .item .text {
  font-size: 17px;
  margin-top: 10px;
}

.about .pat1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.1;
}

.about .float-imgs {
  position: absolute;
  right: 0;
  top: 50px;
  width: 100%;
  height: 75%;
  z-index: -1;
  opacity: 0.3;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.about .float-imgs img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.about .float-imgs img:nth-of-type(1) {
  width: 170px;
  height: 150px;
  left: 10%;
  top: 8%;
}

.about .float-imgs img:nth-of-type(2) {
  width: 200px;
  height: 300px;
  right: 0;
  top: 10%;
}

.about .float-imgs img:nth-of-type(3) {
  width: 120px;
  height: 150px;
  right: calc(4% + 200px);
  top: 21%;
}

.about .float-imgs img:nth-of-type(4) {
  width: 350px;
  height: 250px;
  left: 0;
  top: 40%;
}

.about .float-imgs img:nth-of-type(5) {
  width: 270px;
  height: 220px;
  right: calc(5% + 250px);
  bottom: 0;
}

/* --------------- works --------------- */
.works {
  position: relative;
  background-color: var(--sub-color);
  color: #fff;
  z-index: 20;
}

.works.works2 {
  background-color: #f0f0f0;
  color: var(--sub-color);
}

.works.works2 .pat1 {
  opacity: 0.1;
}

.works .pat1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
}

.works .title-wrapper {
  position: relative;
}

.works .title-wrapper .text {
  font-size: 30px;
}

.works .lg-title {
  font-size: 80px;
}

.works .cards {
  position: relative;
}

.works .cards .item {
  position: relative;
  display: block;
  overflow: hidden;
  outline: 1px solid #c1963955;
  outline-offset: 10px;
  margin-top: 50px;
}

.works .cards .item:hover .img {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.works .cards .item:hover .img::after {
  background-color: #0009;
}

.works .cards .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works .cards .item:hover .info {
  bottom: 0;
  padding-bottom: 60px;
}

.works .cards .item:hover .info i {
  opacity: 1;
}

.works .cards .item .img {
  position: relative;
  height: 280px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works .cards .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0005;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.works .cards .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.works .cards .item .info {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  padding: 20px;
  padding-bottom: 50px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works .cards .item .info .title {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.works .cards .item .info i {
  font-size: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works .lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  z-index: -1;
  opacity: 0.1;
}

.works .lines span {
  width: 1px;
  height: 100%;
  background-color: var(--main-color);
}

.gold-grad {
  background: -webkit-gradient(linear, left top, right top, from(#c19639), color-stop(#FCF6BA), to(#c19639));
  background: linear-gradient(to right, #c19639, #FCF6BA, #c19639);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* --------------- contact --------------- */
.contact {
  position: relative;
  background-color: #fafafa;
  overflow: hidden;
  /*padding-top: 150px;*/
  z-index: 20;
}

.contact .grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/grid.png);
  background-size: contain;
  background-repeat: repeat;
  z-index: -1;
}

.contact .contact-card {
  position: relative;
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 15px #0001;
          box-shadow: 10px 10px 15px #0001;
}

.contact .contact-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#c19639), color-stop(#FCF6BA), to(#c19639));
  background: linear-gradient(to right, #c19639, #FCF6BA, #c19639);
  opacity: 0.1;
}

.contact .contact-card .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}

.contact .contact-card .contact-info .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  padding: 20px;
  border-radius: 15px;
  z-index: 20;
  overflow: hidden;
}

.contact .contact-card .contact-info .item .icon {
  height: 40px;
  width: 40px;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact .contact-card .contact-info .item p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact .foot-logo {
  margin: 40px 0 20px;
}

.contact .contact3 {
  position: relative;
  height: 250px;
  width: 70%;
  right: 15%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.foot {
  position: relative;
  padding: 30px 0;
  background-color: var(--sub-color);
  color: #fff;
  text-align: center;
}

.foot .alyom {
  margin: 0 10px;
  height: 20px;
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }
  header {
    overflow: hidden;
  }
  header .col-lg-6 {
    padding: 0;
  }
  header .info {
    padding: 50px 15px 0;
  }
  header .info h1 {
    font-size: 35px;
  }
  header .img {
    position: relative;
    height: 300px;
    width: 100%;
    right: 0;
  }
  .about .float-imgs {
    display: none;
  }
  .works {
    overflow: hidden;
  }
  .works .lg-title {
    font-size: 45px;
    margin-bottom: 30px;
  }
  .works .cards .item .img {
    height: 350px;
  }
  .contact .contact3 {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

/* ======= */
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}

.dark-item {
  display: none;
}

.theme-dark body {
  background-color: #1a1b1e;
  color: #fff;
}

.theme-dark .navbar {
  background-color: #0E0F11;
}

.theme-dark .navbar .navbar-nav .nav-link {
  color: #fff;
}

.theme-dark .dark-item {
  display: block;
}

.theme-dark .light-item {
  display: none;
}

.theme-dark .about {
  background-image: none;
}

.theme-dark .about .about-cards .item .icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(256deg) brightness(109%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(256deg) brightness(109%) contrast(101%);
}

.theme-dark .contact .contact-card .contact-info .item .icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(256deg) brightness(109%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(256deg) brightness(109%) contrast(101%);
}

.theme-dark .contact {
  background-color: transparent;
}

.theme-dark .contact .contact-card {
  background-color: #0E0F11;
}

.theme-dark .contact .contact-card::before {
  display: none;
}
/*# sourceMappingURL=style.css.map */