@font-face {
    font-family: 'Readex Pro';
    src: url('../fonts/ReadexPro-Regular.woff2') format('woff2'),
        url('../fonts/ReadexPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
  --default-font: "Readex Pro";
  --heading-font: "Readex Pro";
  --nav-font: "Readex Pro";
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --primary-color: #9b7769;
  --primary-color-rgb:#fff;
  --secondary-color: #32353a;
  --secondary-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
   
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #cb9a37;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #c8993e;
  --nav-dropdown-background-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{
    text-transform: capitalize;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
p {
    font-size: 16px !important;
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--primary-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
}

section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
 max-height: 110px;
 
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.header .logo span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--primary-color-rgb), 0.85);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #c8993e;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

button.get_in_tuch {
  position: relative;
  border: 1px solid #fff;
  padding: 9px 9px;
  width: 120px;
  margin-left: 20px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: normal;
  font-family: var(--nav-font);
  font-weight: 300;
  /* border-radius: 3px; */
  background-color: transparent;
  letter-spacing: 0.5px;
}

.index-page.scrolled .get_in_tuch {
     position: relative;
    border: 1px solid #ffffff;
    padding: 9px 9px;
    width: 120px;
    margin-left: 20px;
    font-size: 13px;
    font-family: var(--nav-font);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    /* border-radius: 3px; */
    background-color: transparent;
    letter-spacing: 0.5px;
}

.index-page.scrolled .header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: #32353a;
}

.index-page.scrolled .header span.icon-arabic {
  font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #ffffff;
    margin: 0px 5px;
}

.index-page.scrolled .header .rt-btn-v svg path {
  stroke: #32353a !important;
}

span.icon-arabic {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  margin: 0px 5px;
}

button.rt-btn-v {
  padding: 0;
  border: 0;
  background: unset;
  color: #fff;
  font-size: 14px;
  margin: 0px 5px;
}

span.icon-search i {
  font-size: 17px;
}

.navmenu .dropdown ul a:hover {
    background-color: #9b776945;
}


/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
        padding: 18px 12px;
        font-size: 16.5px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex
;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: capitalize;
        
  }
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
    color: #ffe6dc;
}
.navmenu .dropdown ul {
  margin: 0;
  padding: 0px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 17px;
  font-size: 16px;
 text-transform: capitalize;
  color: #474747 !important;
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: #9b7769 !important;
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

.navmenu .megamenu {
  position: static;
}

.navmenu .megamenu ul {
  margin: 0;
  padding: 10px;
  background: var(--nav-dropdown-background-color);
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.index-page.scrolled .header .navmenu a {
  color: #ffffff;
}

.navmenu .megamenu ul li {
  flex: 1;
}

.navmenu .megamenu ul li a,
.navmenu .megamenu ul li:hover>a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--nav-dropdown-color);
}

.navmenu .megamenu ul li a:hover,
.navmenu .megamenu ul li .active,
.navmenu .megamenu ul li .active:hover {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .megamenu:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dd-box-shadow {
  box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--primary-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #9b7769;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  [dir="rtl"] .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
   top: 15px;
        left: 15px;right: unset;
    margin-right: 0;
    z-index: 9999;
  }

  [dir="rtl"] .mt-tv {
    margin-bottom: 0px;
}

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.index-page.scrolled .header {
  background-color: #9d7868;
}
.logo img {
     transition: 0.7s;
}
.index-page.scrolled .logo img {
    max-height: 80px;
    margin-right: 6px;
}
/*-------------------------------------------------------------
home slider are 
--------------------------------------------------------------*/
/*---------- video-----------*/
.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-container video {

  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.overlay {
  background: linear-gradient(0deg, rgb(0 0 0 / 31%) 80%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  bottom: 0px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
  padding: 31% 15px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  /* display: none;*/
}

.miss-v {
  margin-bottom: 3rem;
}

/*--------------end -------------------*/



.coodiv-z-index-2 {
  z-index: 2;
}

.pt-20,
.py-20 {
  padding-top: 5.3125rem !important;
}

.mt-20,
.my-20 {
  margin-top: 5.3125rem !important;
}

.position-relative {
  position: relative !important;
}

.coodiv-text-2 {
  font-size: 3.75rem;
  letter-spacing: -2px;
  line-height: 1.083;
}

.hero-header-features span {
  color: #7327d5;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 5px;
  margin: 0 15px;
}

.hero-header-features span:after {
  content: '.';
  position: absolute;
  right: -19px;
  font-size: 28px;
  top: -13px;
  color: #e0dce5;
}

.map-server-selection {
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  text-align: center;
}

.lines-bg-section:after {
  content: '';
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-image: url(../img/lines-bg.svg);
  height: 100%;
  position: absolute;
  top: -23px;
  z-index: -1;
  right: 0;
  left: 0;
  opacity: 0.2;
  display: none;
}

.my-pd {
  padding-top: 13rem !important;
}

.lines-bg-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 0px !important;
}

.map-server-selection a {

  color: #ffffff;
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  border-radius: 18px;
  width: 200px;
  margin: 0 auto 15px;
  border: 1px solid #ffffff;
}

.map-server-selection a i {
  font-size: 13px;
  position: relative;
  top: 1px;
  left: 9px;
}

.map-server-selection small {
  font-weight: 600;
  font-size: 14px;
  color: #b8bdbf;
}

.map-server-selection span {
  font-weight: bold;
  font-size: 23px;
  color: #b8bdbf;
  background: #f1439f;
  background: linear-gradient(to right, #7d33cd 0%, #ea8f51 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
  margin: auto;
}

.great-companies-love-us:before {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #dce3e9;
  background: -moz-linear-gradient(to right, #fff 15%, #dce3e9 50%, #fff 85%);
  background: -webkit-linear-gradient(to right, #fff 15%, #dce3e9 50%, #fff 85%);
  background: linear-gradient(to right, #0000 15%, #dce3e9 50%, #0000 85%);
}

.great-companies-love-us:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #dce3e9;
  background: -moz-linear-gradient(to right, #fff 15%, #dce3e9 50%, #fff 85%);
  background: -webkit-linear-gradient(to right, #fff 15%, #dce3e9 50%, #fff 85%);
  background: linear-gradient(to right, #0000 15%, #dce3e9 50%, #0000 85%);
}

.coodiv-text-6 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.42;
  color: #fff;
}

.color-opacity-3 {
  opacity: 0.7;
}

.coodiv-text-12 {
  font-size: .8125rem;
  line-height: 1.63;
  color: #fff;
}


.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.great-companies-love-us .pertners-carousel img {
  display: block;
  width: 100%;
  max-width: 160px;
  opacity: 0.4;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.great-companies-love-us .pertners-carousel img {
  display: block;
  width: 100%;
  max-width: 100px;
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.great-companies-love-us .pertners-carousel img:hover {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.carousel-wrap {
  margin: 90px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav>div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

.mt-15,
.my-15 {
  margin-top: 3.75rem !important;
}

span.mt-tv {
  display: block;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 2px;
}

 [dir="rtl"] .mt-tv {
    margin-bottom: 0px;
      letter-spacing: 0.0rem !important;
}

span.mt-tv-ar {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
}

.texto {
  transition-duration: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.texto h1 {
  margin: 0;
  letter-spacing: 6px;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.texto h1 .container {
  margin: 1rem;
  position: relative;
}

.texto h1 .container .word {
  text-rendering: optimizeLegibility !important;
  white-space: pre;
  left: 50%;
  transform: translate(-50%, -10%);
  opacity: 0;
  display: block;
  top: 0;
  position: absolute;
  color: #ffffff;
  text-transform: full-size-kana;
}

.texto p {
  margin: 1rem 0;
  color: var(--contrast-color);
}

.letter {
  text-rendering: optimizeLegibility !important;
  display: inline-block;
  position: relative;
  transform: translateZ(25px);
  font-size: 65px;
  transform-origin: 50% 50% 25px;
  letter-spacing: 0.5px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@-webkit-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-o-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-moz-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@keyframes gradient {
  0% {
    background-position-y: 100vh;
  }

  100% {
    background-position-y: -100vh;
  }
}

@keyframes grain {
  0% {
    -webkit-transform: translate(-10%, 10%);
    -moz-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }

  10% {
    -webkit-transform: translate(-25%, 0%);
    -moz-transform: translate(-25%, 0%);
    transform: translate(-25%, 0%);
  }

  20% {
    -webkit-transform: translate(-30%, 10%);
    -moz-transform: translate(-30%, 10%);
    transform: translate(-30%, 10%);
  }

  30% {
    -webkit-transform: translate(-30%, 30%);
    -moz-transform: translate(-30%, 30%);
    transform: translate(-30%, 30%);
  }

  40% {
    -webkit-transform: translate();
    -moz-transform: translate();
    transform: translate();
  }

  50% {
    -webkit-transform: translate(-15%, 10%);
    -moz-transform: translate(-15%, 10%);
    transform: translate(-15%, 10%);
  }

  60% {
    -webkit-transform: translate(-20%, 20%);
    -moz-transform: translate(-20%, 20%);
    transform: translate(-20%, 20%);
  }

  70% {
    -webkit-transform: translate(-5%, 20%);
    -moz-transform: translate(-5%, 20%);
    transform: translate(-5%, 20%);
  }

  80% {
    -webkit-transform: translate(-25%, 5%);
    -moz-transform: translate(-25%, 5%);
    transform: translate(-25%, 5%);
  }

  90% {
    -webkit-transform: translate(-30%, 25%);
    -moz-transform: translate(-30%, 25%);
    transform: translate(-30%, 25%);
  }

  100% {
    -webkit-transform: translate(-10%, 10%);
    -moz-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}

.hero-header-features span:last-child::after {
  display: none;
}

.hero-header-features span {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding: 5px;
  letter-spacing: 0.8px;
  margin: 0 15px;
  text-transform: capitalize;
}

.hero-header-features {
  margin-top: 1.1rem;
}

.great-companies-love-us {
  padding: 35px 10px;
  position: absolute !important;
  width: 100%;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0px 10px;
}

.font-weight-bold {
  font-weight: bold;
  letter-spacing: 0.3px;
}

.map-server-selection {
  margin-top: 9rem !important;
}

#scrl-icon {
  --clr: #ccc;
  display: block;
  width: 20px;
  /* height: auto; */
  overflow: visible;
  margin: 0 auto;
  margin-top: 2rem;
}

.scrl-body {
  fill: none;
  stroke: var(--clr);
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 3.5;
  animation: scroll-parallax 1.5s cubic-bezier(.41, .07, .83, .67) infinite running
}

@keyframes scroll-parallax {
  25% {
    transform: translateY(0)
  }

  75% {
    transform: translateY(-20%)
  }
}

.scrl-wheel {
  fill: var(--clr);
  transform-origin: bottom;
  animation: scroll-animation 1.5s linear infinite running;
  will-change: transform;
}

@keyframes scroll-animation {
  0% {
    transform: translateY(-90%) scale(0.7, 0.1)
  }

  10% {
    transform: translateY(-90%) scaleY(0.3)
  }

  25% {
    transform: translateY(-20%) scaleY(1)
  }

  75% {
    transform: translateY(40%) scaleY(1)
  }

  100% {
    transform: translateY(20%) scale(0.8, 0.1);
  }
}




/*-------------------------------------------------------------
perallx Section 
_____________________________________________________________*/

.section-img {
  background-image: url("../img/pexels-photo.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0px;
  position: relative;
}

.qoute-wrapper {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.qoute-text {
  width: 50%;
}

.white-text {
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
  font-size: 2rem;text-align: center;
  font-weight: 900;
  text-transform: capitalize;
}

section.section-img::after {
  background-color: #f3f3f3;
  position: absolute;
  content: "";
  width: 35%;
  height: 100%;
  top: 0;
  right: 0;
}

.total-exp {
  position: relative;
  z-index: 9;
}

.total-exp {
  width: 30%;
}

.tlv-cnt span {
  font-weight: bold;
  font-size: 118px;
  color: #b8bdbf;
  background: #131e18;
  background: linear-gradient(to right, #9b7769 0%, #131e18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
  margin: auto;
}

section#about {
  padding-bottom: 5rem;
}

h4.slvg {
  font-size: 15px;
  padding: 5px 40px;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: #b68338;
  line-height: 25px;
  font-weight: bold;
  /* font-size: 118px; */
  color: #b8bdbf;
  background: #131e18;
  background: linear-gradient(to right, #9b7769 0%, #131e18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
  margin: auto;
}

p.yerxp {
  font-size: 18px;
  color: #777;
}

.about-quote p {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0px 60px 40px 0px;
  color: #9b7769;
  line-height: 24px;
}

.about-info h1 {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 45px;
}

.about-info h4 {
  line-height: 32px;
  font-size: 16px;
  color: #696969;
}

.cnt-box .stats-item span {
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
  color: #9b7769;
  font-size: 30px;
}

.cnt-box .stats-item p {
  color: #32353a;
  font-size: 15px;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.cnt-box {
  border-right: 1px dashed #ebebeb;
}

section.core_values {
  background-image: url(https://hubhtml.liquid-themes.com/assets/images/demo/start-hub-4/banner.jpg);
}

/*-----------------second about -------------------------------*/


.our-stv {
  position: absolute;
  bottom: 0;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  line-height: 0;
  color: #000;
}



/*------our core values ----------------*/
.our-stv {
  position: absolute;
  bottom: 0;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  line-height: 0;
  color: #000;
}

section.core_values {
  background-image: url(https://hubhtml.liquid-themes.com/assets/images/demo/start-hub-4/banner.jpg);
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  margin: 4rem 5rem;
  border-radius: 20px;
}

.content h3,
h2 {
  font-weight: 700;
}

.our-stv h4 {
  font-size: 44px;
  height: 73px;
  width: 383px;
  text-transform: uppercase !important;
  /* transform: translateY(97px); */
  transform: translate(-80px);
  padding: 5px;
  position: relative;
  left: 75px;
  font-size: 2.61023rem !important;
  /* line-height: 0 !important; */
  top: 99px;
  color: #fff;
  font-weight: 700;
}

.miss-v h2 {
  color: #fff;
  margin-bottom: 0rem;
  font-weight: 700;
}

.miss-v p {
  color: #fff;
  line-height: 30px;
}

/*------our core values ----------------*/
.lqd-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
}

.lqd-shape-top {
  top: -1px;
}

.lqd-shape-top svg {
  width: calc(300% + 1.3px);
}

.lqd-shape svg {
  display: block;
  width: calc(100% + 2px);
  position: relative;
}

.h-60 {
  height: 60px;
}

section.products {
  position: relative;
  margin-top: 4rem;
}


h2.w-80.cvld {
  font-weight: 700;
  font-size: 33px;
  margin: 12px 0px 2rem;
}

p.evngt {
  font-size: 14px;
  margin-bottom: 5rem;
  padding-right: 4rem;

}

section#features {
  --background-color: #fff;
  padding: 5rem 0rem;
}

section#faq {
  padding: 6rem 0rem;
}

section#recent-posts {
  padding: 6rem 0rem;
  /*! padding-bottom: 1rem; */
  background-color: #f8f5f1;
}

footer#footer {
    /*! background-color: #fff; */
    background-image: linear-gradient(180deg, #fff 0%, #9D786857 100%);
}

.swiper {
  width: 100%;
  padding: 1.875rem 0;
}

.swiper-slide {
  width: 18.75rem;
  height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  box-shadow: 0.063rem 0.5rem 1.25rem rgba(0, 0, 0, 0.1216);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.swiper-slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: rotate(180deg);
  line-height: 0;
  bottom: -0.063rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.swiper-slide-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  transition: 0.3s ease-in-out;
  transform: rotate(-180deg);
}

.swiper-slide-img svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 5rem;
  transform: rotateY(180deg);
  bottom: 2px;
}

.swiper-slide-img .shape-fill {
  fill: #ffffff;
}

.swiper-slide-content {
  background: #fff;
  padding: 0 1.65rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: 100%;
}

.swiper-slide-content>div {
  transform: translateY(-1.25rem);
}

.swiper-slide-content h2 {
  color: #000;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.425rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
}

.swiper-slide-content p {
  color: #000;
  line-height: 1.6;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-slide-content .show-more {
  width: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9b7769;
  border-radius: 50%;
  box-shadow: 0px 0.125rem 0.875rem #9b7769;
  margin-top: 1em;
  margin-bottom: 0.2em;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  margin-left: auto;
}

.swiper-slide-content .show-more:hover {
  background: #1184ac;
}

.swiper-slide-content .show-more svg {
  width: 1.75rem;
  color: #fff;
}

.swiper-slide-active:hover img {
  transform: scale(1.2) rotate(-185deg);
}

.swiper-slide-active:hover .show-more {
  opacity: 1;
  height: 3.125rem;
}

.swiper-slide-active:hover p {
  display: block;
  overflow: visible;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

@media screen and (min-width: 93.75rem) {
  .swiper {
    width: 85%;
  }
}
/*--------- vision --------------*/
section.core_values_sec {
    background-color: #ffffff;
}
.or-ms {
    background-color: #fef7f5;
    border-radius: 10px;
    overflow: hidden;
}
.gap-xc {
    padding: 50px;
}
.sub_title_x h2 {
    font-size: 60px;
    text-transform: capitalize;
}
.sub_title_x span {
    text-transform: capitalize;
    background: linear-gradient(to right, #8b8b8b 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prg-sub p {
    font-size: 16px;
    line-height: 30px;
}

.gap-xc.cvx {
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;    background: linear-gradient(to top, #fff6ea 7%, #fef7f5 100%);
}

.icv-xx {
       width: 100%;
    height: 402px !important;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

/*-------------------- services view ------------------*/
h1.heding-1 {
  margin: 0;
  letter-spacing: 0.5px;
  font-size: 2rem;
  font-weight: 900;
  text-transform: capitalize;
  /* padding-left: 7rem; */
}

.about-quote {
  padding-top: 1rem;
}

section.about-rj.about {
  padding: 10rem 0rem;
}

.view-cunt-vx {
  margin-top: 5rem;
  background-color: #fff;
  padding: 30px 10px;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgb(0 0 0 / 80%);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .loader {
  position: relative;   /* NEW */
  width: 80px;          /* NEW (size of animation area) */
  height: 20px;
}

/* circles */
#preloader .loader div {
  width: 13px;
  height: 13px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;   /* stays absolute but relative to .loader */
}

/* positions */
#preloader .loader div:nth-child(1) {
  left: 0px;
  animation: animate-preloader-1 0.6s infinite;
}

#preloader .loader div:nth-child(2) {
  left: 16px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .loader div:nth-child(3) {
  left: 32px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .loader div:nth-child(4) {
  left: 48px;
  animation: animate-preloader-3 0.6s infinite;
}

/* your animations (unchanged) */
@keyframes animate-preloader-1 {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes animate-preloader-3 {
  0% { transform: scale(1); }
  100% { transform: scale(0); }
}

@keyframes animate-preloader-2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(24px, 0); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 145px;
  margin-right: 0px;
}

.footer .footer-about .logo span {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 15px !important;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer h4 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  display: inline-block;
  line-height: 1;
  text-transform: capitalize;
  font-size: 13px;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 15px !important;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
    font-size: 14px !important;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

footer#footer {
  padding-top: 4rem;    padding-bottom: 0px;
}

p.wdc-v {
  width: 75%;
}

.call-to-act {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 5px 7px 8px #ccc;
  margin-bottom: 6rem;
  background-image: linear-gradient(258deg, #fff 0%, #9b7769 100%);
}

.coll-info-vd h4 {
  margin-bottom: 0;
  padding: 0;
  font-size: 23px;
  width: 75%;
}


section.seo-msg {
  /*! background: linear-gradient(46deg, rgb(65, 78, 98) 0%, rgb(59, 144, 105) 100%); */
  background-attachment: fixed;
  padding: 7rem 0rem;
  background-color: #fff !important;
}

.ceo-msg-v {
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  /*! backdrop-filter: blur(4px); */
  color: #7b7b7b;
  font-size: 14px;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.17);
}

.ceo-msg-v h2 {
  font-size: 24px;
  color: #000;
  width: 38%;
  margin-top: 14px;
  font-weight: 800;
  margin-bottom: 3rem;
}

.ceo-vbm h4 {
  color: #9b7769;
}

.ceo-vbm {
  margin-top: 45px;
}
/*------- home page ceo msg ------------*/
.char-img-view {
  width: 335px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;    position: relative;
}
.seo-msg {
  position: relative;
}
.seo-msg::before{
    
}
section.seo-msg::before {
    position: absolute;
    content: "";
    width: 600px;
    height: 600px;
    top: 82px;
    left: -296px;
    background-color: #ccc;
    z-index: 0;
    background: linear-gradient(46deg, #2196F3 0%, rgb(59, 144, 105) 100%);
    border-radius: 50%;
}

section.seo-msg::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: 80px;
  right: 30px;
  background-color: #ccc;
  z-index: 999;
  background: linear-gradient(46deg, #2CDDDD 0%, rgb(59, 144, 105) 100%);
  border-radius: 50%;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: rgba(var(--default-color-rgb), 0.8);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  padding: 10px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero .sign-up-form .form-control {
  border: none;
}

.hero .sign-up-form .form-control:active,
.hero .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Clients Section - Home Page
------------------------------*/
.clients {
  padding: 10px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 40px;
  max-width: 80%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/* About Section - Home Page
------------------------------*/
.about {
  --background-color: #f4f4f4;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 5px;
  color: #9b7769;
  border-radius: 7px;
  margin-bottom: 0px;
  display: inline-block;
}

.content p {
  font-size: 16px;
  color: #818181;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

a.my-read-more {
  color: #9b7769;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  border-radius: 5px;
  min-width: 150px;
  margin: 0 auto 15px;
  border: 1px solid #9b7769;
  display: inline-block;
  text-align: center;
}

a.my-read-more i {
  position: relative;
  top: 1px;
  left: 9px;
}

.icon-box p {
  margin-bottom: 0;
  font-size: 15px;
  color: #373737;
  line-height: 19px;
  margin-top: 17px;
}

span.Word-clr {
  color: #9b7769;
  font-size: 30px;
}

.icon-box i svg {
  fill: #9b7769;
}

.icon-box:hover i svg {
  fill: #fff;
}

.map-server-selection a:hover {
  background-color: #9b7769;
  color: #fff;
}

a.my-read-more:hover {
  background-color: #9b7769;
  color: #fff;
}

.realestate {
  /* background-image: url(https://images.pexels.com/photos/273209/pexels-photo-273209.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1); */
  /* opacity: 0; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
}

.Industrys {
  /* background-image: url(https://images.pexels.com/photos/459728/pexels-photo-459728.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1); */
  /* opacity: 0; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
}

.Agricultural {
  /* background-image: url(https://images.pexels.com/photos/2749165/pexels-photo-2749165.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1); */
  /* opacity: 0; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
}

.Hospitality {
  /* background-image: url(https://cdn.pixabay.com/photo/2023/03/14/20/22/office-7853103_1280.jpg); */
  /* opacity: 0; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  transition: all 0.3s;
}

.icon-box::after {
  background-color: #ffffffe8;
  position: absolute;
  top: 233px;
  width: 100%;
  content: "";
  left: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
}

.icon-box:hover::after {
  background-color: #ffffffde;
  position: absolute;
  top: 93px;
  width: 100%;
  content: "";
  left: 0;
  height: 100%;
  z-index: -1;
}

.topv {
  position: relative;
  top: 9rem;
  transition: all 0.3s;
}

.icon-box:hover .topv {
  top: 0;
}


.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--primary-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
  min-height: 345px;
  border: 3px solid #ffffff;
}

span.nvb {
  font-size: 25px;
  color: #fff;
  position: relative;
  top: -7px;
  left: 10px;
  font-weight: 900;
}

.icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgb(255 255 255);
  color: var(--primary-color);
}

.icon-box h3 {
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 700;
}

.icon-box p {
  margin-bottom: 0;
}

.icon-box:hover i {
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.icon-boxes .col-md-6:nth-child(2) .icon-box,
.icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}


/* Services Section - Home Page
------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--default-color-rgb), 0.1);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--primary-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--secondary-color);
}

.services .service-item .title a:hover {
  color: var(--primary-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item .btn-get-started {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9);
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.features .features-item img {
  border: 6px solid var(--background-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

/* Portfolio Section - Home Page
------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--primary-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--background-color-rgb), 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--default-color-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--primary-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* Pricing Section - Home Page
------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(var(--default-color-rgb), 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.2);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.1);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: rgba(var(--default-color-rgb), 0.8);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na i {
  color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: var(--contrast-color);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  border: 1px solid rgba(var(--default-color-rgb), 0.2);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--primary-color);
}

.pricing .featured .buy-btn {
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.7);
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(var(--default-color-rgb), 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--primary-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--primary-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--primary-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--primary-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--primary-color);
}

/* Team Section - Home Page
------------------------------*/
.team {
  --background-color: #f4f4f4;
}

.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--primary-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
  --background-color: #f4f4f4;
}

.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--primary-color-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/* Recent-posts Section - Home Page
------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
 height: 320px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
    background-color: #000;
}

.recent-posts .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.recent-posts .title a {
  color: var(--secondary-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--primary-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 0;
}

/* Contact Section - Home Page
------------------------------*/
.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--primary-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details Page
--------------------------------------------------------------*/
/* Portfolio-details Section - Portfolio Details Page
------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--primary-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: rgba(var(--default-color-rgb), 0.03);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: rgba(var(--primary-color-rgb), 0.5);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Details Page
--------------------------------------------------------------*/
/* Service-details Section - Services Details Page
------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: rgba(var(--default-color-rgb), 0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--primary-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--primary-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  color: var(--primary-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--primary-color);
}

.service-details .download-catalog a:hover {
  color: var(--primary-color);
}

.service-details .help-box {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
/* Blog Section - Blog Page
------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--secondary-color);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--primary-color);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 0;
}

.blog .pagination {
  margin-top: 30px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .pagination li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pagination li.active,
.blog .pagination li:hover {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.blog .pagination li.active a,
.blog .pagination li:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
/* Blog-details Section - Blog Details Page
------------------------------*/
.blog-details .article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.blog-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--primary-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog-details .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .sidebar .sidebar-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.blog-details .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog-details .sidebar .search-form form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog-details .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.blog-details .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog-details .sidebar .search-form form button {
  background: var(--primary-color);
  color: var(--background-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog-details .sidebar .search-form form button i {
  line-height: 0;
}

.blog-details .sidebar .search-form form button:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
}

.blog-details .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog-details .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog-details .sidebar .categories ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s;
}

.blog-details .sidebar .categories ul a:hover {
  color: var(--primary-color);
}

.blog-details .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.blog-details .sidebar .recent-posts .post-item {
  display: flex;
  margin-top: 15px;
}

.blog-details .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog-details .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.blog-details .sidebar .recent-posts h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.blog-details .sidebar .recent-posts h4 a:hover {
  color: var(--primary-color);
}

.blog-details .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.blog-details .sidebar .tags {
  margin-bottom: -10px;
}

.blog-details .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog-details .sidebar .tags ul li {
  display: inline-block;
}

.blog-details .sidebar .tags ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog-details .sidebar .tags ul a:hover {
  color: var(--background-color);
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
}

.blog-details .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 14px;
}

.blog-details .blog-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-details .blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-details .blog-author .social-links a {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-right: 5px;
}

.blog-details .blog-author p {
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 0;
}

.blog-details .comments {
  margin-top: 30px;
}

.blog-details .comments .comments-count {
  font-weight: bold;
}

.blog-details .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-details .comments .comment .comment-img {
  margin-right: 14px;
}

.blog-details .comments .comment .comment-img img {
  width: 60px;
}

.blog-details .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-details .comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-details .comments .comment h5 a:hover {
  color: var(--primary-color);
}

.blog-details .comments .comment h5 .reply {
  padding-left: 10px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-details .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.blog-details .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog-details .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-details .comments .reply-form p {
  font-size: 14px;
}

.blog-details .comments .reply-form input {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.blog-details .comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.blog-details .comments .reply-form textarea {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.blog-details .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.blog-details .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog-details .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.blog-details .comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--primary-color-rgb), 0.8);
}

/*======================= about css ========================*/

.about-Us-img {
  background-image: url('../img/about-us.jpg');
  padding-top: 0px;
  padding-bottom: 0px;
}

.section-header {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.bg-gradient-primary {
  background: linear-gradient(85deg, rgb(155 119 105 / 97%) 30%, rgb(0 0 0 / 90%) 100%) !important;
}

.text-white {
  color: #ffffff !important;
}

.sub-text {
/*  border-left: 2px solid #fff;*/    text-align: center;
}

.sub-text h1 {
      color: #fff;
    margin-bottom: 0px;
    font-size: 2.5rem;
    margin-top: 10px;
    font-weight: 600;
}

.sub-text {
/*
  border-left: 4px solid #fff;
  padding-left: 15px;
*/
}

.sub-text p {
  margin-bottom: 0px;
  margin-top: 4px;
}

.breadcrumb-menu {
  position: relative;
  height: auto;
  width: 100%;
  display: block;
  margin-top: 30px;
  padding-left: 3px;
}

.breadcrumb-menu span:before {
  position: relative;
  top: -4px;
  color: #00adba;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  float: left;
  padding-right: 2px;
}

.breadcrumb-menu ul {
  position: relative;
  display: inline-block;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 50px;
  width: 100%;
}

.breadcrumb-menu ul li {
  position: relative;
  display: block;
  float: left;
  margin-right: 5px;
  padding-right: 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  transition: all 500ms ease;
  color: #636569;
}

.breadcrumb-menu ul li:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  content: "/";
  margin: 0;
  font-weight: 100;
  padding-right: 2px;
  color: #aaa;
}

.breadcrumb-menu ul li:last-child:before {
  display: none;
}

.breadcrumb-menu ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumb-menu ul li a {
  color: #636569;
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.breadcrumb-menu ul li.active {
  font-weight: 500;
}

.breadcrumb-menu ul li a:hover {
  color: #3b9065;
}

hr.light {
  border-top-color: rgba(0, 0, 0, .15);
}

.left-img-view {
  margin-right: 45px;
}

.left-img-view img {
  width: 100%;
}

.left-img-view {
  margin-right: 45px;
  padding: 43px;
  padding-top: 0px;
}

.left-img-view::after {
  position: absolute;
  content: "";
  height: 255px;
  top: -27px;
  left: 0;
  width: 175px;
  border-radius: 3px;
  background: rgb(155 121 107 / 22%);
  z-index: 0;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.left-img-view::before {
  position: absolute;
  content: "";
  height: 255px;
  bottom: -27px;
  right: 0;
  width: 175px;
  border-radius: 3px;
  background: rgb(0 0 0 / 20%);
  z-index: 0;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.left-img-view {
  position: relative;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.msg-sat-cnt h2 {
  font-size: 38px;
  font-weight: 700;
}

.msg-sat-cnt {
  margin: 30px 0px;
  padding: 0px 7rem;
  text-align: center;
  margin-bottom: 6rem;
}

span.main-clr {
  color: #3a8f69;
}

section.satisfied-cnt {
  background-image: url(../img/shape-wave.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.text-top-lb p {
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 600;
  color: #3b9068;
}

.text-top-lb h2 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 15px;
  padding-right: 36px;
}

.text-para p {
  margin-bottom: 0px;
      line-height: 32px;
    font-size: 16px;
    color: #696969;
}

section.our_mission-v {
  padding: 6rem 0rem;
}

.index-page.scrolled .header .navmenu .active {
  color: #9b7769;
}

.abt-c {
  background: rgba(88, 87, 249, 0.1);
  padding: 2rem 2rem;
  border-radius: 7px;
}

.more-bnt-xc h3 {
  font-size: 15px;
}

.more-bnt-xc {
  text-align: center;
  font-size: 9px;
  margin-bottom: 3rem;
}

.dropFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.dropFlex p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #676767;
}

.dropFlex img {
  margin-bottom: 5px;
  width: 30px;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.abt-c.bof-d {
  background: rgba(89, 37, 125, 0.1);
}

section.next-page-view {
  padding: 7rem 0rem;
}

/*============= ceo message ============*/
.ceo-img {
  background-image: url('../img/cta-bg.jpg');
  padding-top: 0px;
  padding-bottom: 0px;    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;    background-attachment: fixed;
}

.ceo-img-v {
    width: 65%;
    margin: auto;
    position: relative;
}
.ceo-img-v img {
  width: 100%;
    /* border-radius: 5px; */
    box-shadow: 0px 1px 20px 13px #00000014;
    z-index: 99;
    position: relative;
}

span.mark-v {
  font-size: 78px;
  position: relative;
  color: #d0d6d8;
  margin-left: -5px;
  word-spacing: -18px;
  font-family: fangsong;
  top: 31px;
  /* margin-top: 30px; */
  line-height: 6px;
}

h1.heding-v {
  width: 60%;
  font-weight: 700;
}

.box-vd {
  margin-left: 2rem;

}


h1.heding-v {
  width: 100%;
  font-size: 31px;
  font-weight: 700;
  border-bottom: 6px solid #f4f4f4;
  padding-bottom: 10px;
}

.contact-ceo-msg p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
  color: #5d5d5d;
}

.ceo-vbm.clr-bl h4 {
  color: #9b7769;
  font-weight: 800;
}

.scroll-iocn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*--------- new css ---------*/
.tech-box.sub-client-v {
  border: 0px;
  padding: 10px;
  /*! margin-bottom: 30px; */
  height: unset;
  box-shadow: 3px 6px 20px -5px #0000000f;
  text-align: center;
  width: 100%;
  justify-content: center;
  border-radius: 5px;
  display: flex;
  align-items: baseline;
  background-color: #fff;
}

.bg-vb {
  background-color: #f4f4f4;
}

.cl-tlv {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.real-est-Us-img {
  background-image: url('../img/real-est.png');
  padding-top: 0px;
  padding-bottom: 0px;
}

.Agricultural-Us-img {
  background-image: url('../img/agc.png');
  padding-top: 0px;
  padding-bottom: 0px;
}

.plasco-Us-img {
  background-image: url('../img/plasco-bg.png');
  padding-top: 0px;
  padding-bottom: 0px;
}

.left-sd-img {
  text-align: center;
}

.left-sd-img img {
  width: 80%;
}

.left-sd-img img {
  width: 80%;
  /* height: 28%; */
  border-radius: 5px;
  /* border: 5px solid #ffffff; */
  box-shadow: 4px 6px 7px #ccc;
  position: relative;
}

.left-sd-img {
  position: relative;
}

.left-sd-img::after {
  position: absolute;
  content: "";
  height: 255px;
  bottom: -27px;
  right: 0;
  width: 175px;
  border-radius: 3px;
  background: rgb(209 142 58 / 41%);
  z-index: 0;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.left-sd-img.snd::after {
  left: 0;
  background: rgb(87 95 44 / 47%);
}

.card-vc {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 4px;
}

.card-vc p {
  margin-bottom: 0px;
}

.dv-img-c img {
  width: 100%;
}

.dcv.row {
  margin-top: 5rem;
}

.tech-box.sub-client-v img {
  width: 100%;
}

/*-----------bord of dec -----------------*/

.p-relative {
  position: relative;
}


.tp-team-yoga-social {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.tp-team-yoga-social a {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 37px;
  display: inline-block;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.45scubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.45scubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  margin-right: 3px;
  color: #000;
}

.tp-team-yoga-social a:nth-child(1) {
  -webkit-transition: all 0.3sease;
  transition: all 0.3sease;
}

.tp-team-yoga-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.tp-team-yoga-link a {

  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.5sease;
  transition: all 0.5sease;
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}

.tp-team-yoga-link a span {
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
  border-radius: 50%;
  margin-left: 4px;
  color: #ffffff;
  transition: all 0.4sease;
}

.tp-team-quran-wrap .tp-team-yoga-title {

  font-weight: 500;
  font-size: 14px;
  color: #161613;
  margin-bottom: 0px;
}

.tp-team-yoga-pos {
  font-weight: 400;
  font-size: 13px;
  color: #525356;
}

.tp-team-yoga-wrap:hover .tp-team-yoga-thumb::before {
  visibility: visible;
  opacity: 1;
}

.tp-team-yoga-wrap:hover .tp-team-yoga-social a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tp-team-yoga-wrap:hover .tp-team-yoga-link a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.row.m-auto.justify-content-center.gap-50 {
  gap: 10%;
}

.row.m-auto.justify-content-center.mt-5.gap-xc {
  gap: 60px;
}

.tp-team-yoga-wrap.tp-team-quran-wrap.mb-30.wow.fadeInUp {

  margin-bottom: 5rem;
}

.tp-team-yoga-thumb.p-relative.mb-20 img {
  border-radius: 10px;
}

/*----------real estate css -----------*/

.card-img-view img {
  width: 100%;
}

section.our_mission-v.about {
  background: linear-gradient(to top, #f3f4f9, #fefefe, #f3f2f8, #f3f4f9, #f4f5fa);
}

.btn-more {
  margin-top: 15px;
}

.btn-more a {
  font-size: 12px;
  letter-spacing: 2px;
}

.simple-btn {
  position: relative;
  padding: 7px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 300;
}

.simple-btn:after {
  content: "";
  width: 45%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 0;
}

.info {
  margin-bottom: 10px;
  font-size: 12px;
}

.info .tag {}

.info span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  color: #aaa;
}

.tag span {
  color: #3a8f69;
}

.card-location {
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
  padding: 14px !important;
  border-radius: 10px !important;
  background-color: #fff;
  margin-bottom: 1.5rem;
}

.card-img-view {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.btn-more a {
  font-size: 12px;
  letter-spacing: 1px;
  color: #595959;
}

a.simple-btn:hover {
  color: #44906b;
  font-weight: 500;
}

.card-location-dtl p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #474747;
}

.card-location {
  cursor: pointer;
  transition: 0.5s;

}

.card-location:hover {
  box-shadow: 2px 4px 20px #e9e9e9;
  background: linear-gradient(to top, #ffffff, #ffffff, #8bfff4, #4cefe0, #009688);
}

/*------ details page real estate ------------*/
.min-cv {
  padding: 110px 0px 20px;
}

.location_info_dtl span {
  font-size: 13px;
  color: #9d9a9a;
  line-height: 13px;
  margin-bottom: 0px;
}

.location_info_dtl p {
  font-size: 13px;
  color: #9d9a9a;
  line-height: 13px;
  margin-bottom: 0px;
}

.location_info_dtl h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}
.location-img-left {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 5px;
}

.location_info_dtl {
    padding: 15px 0px;
}

.d-flex.loc-both {
  align-items: center;
}

section.map-view-section {
  background: linear-gradient(to top, #f3f4f9, #fefefe, #f3f2f8, #f3f4f9, #f4f5fa);
}

.location-card-in {
  padding: 10px;
  cursor: pointer;
}

.location-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 20px #0000001c;
}

span.sir-icon svg {
  /* font-size: 16px; */
  fill: #9b7769;
  position: relative;
  top: -1px;
}

.right-dir-view a {
  color: #9b7769;
  background-color: #3b90681f;
  padding: 5px 5px;
  border-radius: 5px;
  line-height: 21px;
  font-size: 12px;
}

.right-dir-view {
  width: 115px;
}

.map-view-full {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}

.mapx {
  border-radius: 5px;
  overflow: hidden;
}


.col-lg-3.hide_list_open {
    display: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */


/* Chrome, Edge, and Safari */
.card-c::-webkit-scrollbar {
  width: 5px;

}

.card-c::-webkit-scrollbar-track {
  background: #ededed;
}

.card-c::-webkit-scrollbar-thumb {
  background-color: #cfcfcf;
  border-radius: 5px;
  border: 1px solid #ffffff;
  visibility: hidden;
}

.container.bg-wds {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.dc-title span {
  text-transform: uppercase;
  padding: 10px 20px;
  display: block;
  color: #979797;
}

span.clf {
  padding-right: 5px;
  color: #2f8f66;
  font-weight: 500;
}

.dc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.key-act-section {
  background-color: #f8f5f1;
}

.abx-img-v {
  overflow: hidden;
    width: 100%;
    max-width: 525px;
    border-radius: 8px;
    background-color: #d9d9d9;
    object-fit: cover;
    height: 530px !important;
    display: flex
;
    /* align-content: flex-end; */
    align-items: center;
    justify-content: left;
    object-fit: contain;
}

.abx-img-v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-dw {
  overflow: hidden;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 3 / 2.7;
  border-radius: 8px;
  background-color: #d9d9d9;
  object-fit: cover;
  margin-top: 3rem;
}

.img-dw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.card-img-viewx {
  border: 2px solid #ffffff;
  border-radius: 3px;
  box-shadow: 0px 0px 20px 2px #00000026;
  overflow: hidden;
}

.card-img-viewx img {
  width: 100%;
}

.card-img-viewx img {
  width: 100%;
  border-radius: 4px;
}

.inv {
  background-image: url('../img/invc.jpg');
  background-position: center;
}

@media (max-width: 768px) {
  button.get_in_tuch {
    display: none;
  }

  .header .logo {
    order: unset;
  }

  .navmenu li:last-child a {
    padding-right: 20px;
  }

  .letter {
    font-size: 30px;
  }

  .texto h1 {
    font-size: 1.5rem;
  }
}

.mi-vi-go-item {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 24px;
}

.mi-bg {
  min-height: 330px;
  background-image: url(../img/mi-bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

.vi-bg {
  min-height: 330px;
  background-image: url(../img/mi-bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

.go-bg {
  min-height: 330px;
  background-image: url(../img/mi-bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

.core-value-img img {
  width: 500px;
}

.core-value-img {
  display: flex;
  justify-content: end;
  margin-bottom: 3rem;
}

.core-value-main-head {
    font-size: 60px;
    padding: 0px 20px 20px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.core-value-con {
  display: flex;
}

.core-value-left,
.core-value-right {
  flex: 1;
}

.core-value-item h2 {
  font-size: 1.5rem;
}

.core-value-item p {
  font-size: 14px;
  color: #818181;
}


/*------------- visison and mission -------------------*/
section.core_values_sec.bg-vcx {
  background-image: url(../img/grn.jpg);
    background-size: auto;
    
}
.core-value-img img {
  width: 500px;
}

.core-value-img {
  display: flex;
  justify-content: end;
  margin-bottom: 3rem;
}

.core-value-main-head {
    font-size: 76px;
    padding: 0px 20px 20px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
   
}
.core-value-item {
    padding: 2rem;display: flex
;    margin-bottom: 0rem;
}
.core-value-item p {
   width: 100%;
    font-size: 16px;
    color: #0a3b14;
}

.core-value-con {
  display: flex;
}

/*
.core-value-left,
.core-value-right {
  flex: 1;
}
*/
.abject {
    position: absolute;
    bottom: 57px;
    text-align: center;
}
.abject img {
    width: 80%;animation: wave 4s ease-in-out infinite;
    transition: transform 0.3s ease, background-image 0.3s ease;
}
.img-xc {
    position: relative;
}

.core-value-item h2 {
  font-size: 1.5rem;
}

.core-value-item p {
 
  color: #818181;
}
.core-value-item h2 span {
    color: #00a38c;
    font-size: 39px;
    font-weight: bold;
}

.img-fv {
    margin-right: 20px;
}

.img-fv img {
    width: 70px;
}

@keyframes wave {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-10px);
  }
}

.img-xc {
  text-align: center;
}
.img-xc img {
  width: 450px;
}#faq {
  background-color: #fbfbfb;
}

.slg-ev {
  font-size: 19px;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #000;
}
.chrm-img {
  background-image: url('../img/chrm-img.jpg');
  padding-top: 0px;
  padding-bottom: 0px;
  background-size: cover;
}

.owl-carousel .owl-stage {
    transition-timing-function: linear !important;
}

/*----------- slider ---------------*/

/* Basic Button Styles */
.owl-nav button {
    background-color: #444;
    color: #fff;
    border-radius: 50%;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}
.owl-prev span {
  display: none;
}
.owl-next span {
  display: none;
}

/* Icon Positioning */
.owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: none
}

.owl-nav button.owl-next {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%); display: none
}

/* Hover Effects */
.owl-nav button:hover {
    background-color: #666;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Icon Replacement */
.owl-nav button:before {
    content: '\f104';  /* Font Awesome left icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.owl-nav button.owl-next:before {
    content: '\f105';  /* Font Awesome right icon */
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


/*-------- project ----------*/

.projects-img{
  background-image: url('../img/Our_projrcts.jpeg');
  padding-top: 0px;
  padding-bottom: 0px;
  background-size: cover;
}

.project_prp_Img img {
       width: 100%;
    height: 665px;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px 24px 24px 24px; -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.bg-x.v1 {
    padding: 35px;
    /* background-color: #8a8a8b; */
    border-radius: 10px;
    background-image: url(../img/grn.jpg);
    background-size: auto;
}

.project_dtl_v h4 {
    font-size: 17px;
    font-weight: 800;
}

.project_dtl_v p {
    font-size: 14px;
    line-height: 30px;
    color: #757575;
}
.project_info_left {
    padding-right: 40px;
}

.project_title h2 {
    font-weight: 300;
    font-size: 54px;
    margin-bottom: 3rem;
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 35px;
}
.project-St_info {
    padding-top: 2rem;
}

.project-St_info h4 {
    font-size: 15px;
    font-weight: 600;
}
.project-St_info p {
    font-size: 14px;
    color: #838181;
}

span.svg-loc svg {
    height: 15px;
    fill: #9b7769;
}

.project_lc_dtl {
    font-size: 14px;
    margin-bottom: 2rem;
    color: #9b7769;
}

span.svg-loc {
    margin-right: 5px;
}
.img_c_sm {
    overflow: hidden;
    height: 220px;
    border-radius: 5px;
}

.img_c_sm img {
  width: 100%;
  border-radius: 5px;
  height: 220px;
  object-fit: cover;
  object-position: center center;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.img_c_sm img:hover{
    -webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.small_project_img {
    margin-top: 11rem;
}
.small_project_img {
    margin-top: 3rem;
    margin-bottom: 50px;
}
.button_X {
    display: inline-flex;
    height: 80px;
    width: 100%;
    border: 2px solid #777777;
  
    color: #BFC0C0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    border-radius: 10px;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.button_X a {
    color: #595959;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: var(--heading-font);
}

/* Second Button */

#button-2 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-2 a {
  position: relative;
  transition: all .35s ease-Out;
}

#slide {
  width: 100%;
  height: 100%;
  left: -370px;
  background: #777777;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#button-2:hover #slide {
  left: 0;
}
#button-2:hover a {
  color: #ffff;
}

#button-2:hover a {
  color: #fff;
}

.project_loc_dtl {
  padding-left: 50px;
}
.project_prp_Img {
  width: 100%;
  height: 665px;
  overflow: hidden; -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
    border-radius: 24px 24px 24px 24px;
}
.project_prp_Img:hover img{
     height: 765px;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.project_lc_dtl {
    display: flex;
}
@media (min-width: 1580px) {
  .bg-x.v1 {
    margin: 0px 70px;
}
}
.bg-x.v1 {
    margin-bottom: 4rem;
}
.bg-gradient-primary_x {
  background: linear-gradient(85deg, rgb(155 119 105 / 97%) 30%, rgb(0 0 0 / 90%) 100%) !important;
}

.section.project-section {
  padding-top: 10px;
}

span.sd-v {
    font-size: 13px;
    font-weight: 700;
    color: #515151;
}

.site-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}
span.space-tl {
    width: 100%;
    color: #666666;
    font-size: 14px;
}
span.saprate_space {
    width: 10%;
    text-align: center;
}
span.sapce-data {
    font-weight: 700;
    font-size: 14px;
}
span.sapce-data {
    width: 100%;
    padding-left: 15px;
}
.dev-c {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
}

.col-x {
    width: 125px;
}
/*---- bg add ----------*/
section.recent-posts.faq {
    background-color: #f4f4f4;
}

/*---------- proejct detials page ---------------------*/
.proejct_dtl_box {
    padding: 35px;
    /* background-color: #8a8a8b; */
    border-radius: 10px;
    /* background-image: url(../img/grn.jpg); */
    background-size: auto;
}

.project-dtl-big {
    position: relative;
}
.project-dtl-big img {
    width: 100%;border-radius: 10px;
}

.hero-gradient {
    background-image: linear-gradient(90deg, #000000, #00000087 45% 45%, #00000000);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}
.bg-x-c * {
    color: #fff !important;
}
.bg-x-c {
    z-index: 9;
    position: absolute;
    top: 0;
    height: 100%;width: 100%;
}

.project_title.fg-v h2 {
    font-size: 60px;
    font-weight: 700;
}
.project_dtl_v.fv-g-in h4 {
    font-weight: 700;
}
.project-dtl-big {
    border-radius: 10px;
    overflow: hidden;    height: 615px;
}
.bottom-x {
    position: absolute;
    width: 251px;
    bottom: 18px;
    right: -10px;
    background-color: #000000;
    text-align: unset;
    padding: 10px;
    border-radius: 5px;
}

.img-prd {
    width: 100%;
}


.pr-dv-c {
    display: flex
;
}

.img-prd img {
    width: 100%;
}

.pfv-right p {
    font-size: 19px;
}

.pr-dtl-view.mb-4 {
    margin-bottom: 4rem !important;
}
.pfv-right {
    padding-left: 5rem;
}
.img-prd img {
    width: 100%;
    border-radius: 10px;
}
.pr-dtl-view h1 {
    text-align: center;
    text-transform: capitalize;
    font-size: 57px;
    font-weight: 700;
    margin: auto;
    width: 75%;
    color: #333333;
}
.img-view-fv img {
    width: 100%;
}

.fgv {
    background-color: #e4ffe5;
    padding: 30px;
    border-radius: 10px;
}
.fgv {
   border-radius: 10px;
    background-image: url(../img/grn.jpg);
    background-size: auto;
    padding: 30px;
    border-radius: 10px;
    
}
.img-view-fv {
    overflow: hidden;
    border-radius: 10px;
}
.fgv {
    position: relative;
}
section.information-view-dx.dc-xc {
    padding: 3rem 0rem;
    background-color: #f7f7f7; 
}

section.info-vc {
    position: relative;
}


.glv-v {
    position: relative;
    z-index: 9;
}
section.info-vc {
    overflow: unset;
        padding: 6rem 0rem;
}
section.information-view-dx {
    overflow: revert;
}
/*----------- side img-x-v -------------*/

.list-group-borderless .list-group-item {
    border: none !important;
    padding: 0.425rem 0;
}.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(58 143 105) !important;
}
.mb-2.my-pcv img {
    width: 370px;
}
.card-view {
    height: 221px;
    text-align: center;
    padding: 30px 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
       margin-bottom: 1.7rem;
}
.crd-info span {
    font-size: 17px;
    color: #676767;
}
.crd-info {
    margin-top: 22px;
}

.or-ms img{
  transition: 0.7s;
}


.or-ms:hover img {
  transform: scale(1.4);
}

section.section-plc {
    background-image: url('../img/slvbg.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
   
    position: relative;    padding: 0rem 0px;
}
.vismins-ovly {
   padding: 13rem 0rem;
    /* background-color: #192b21e6; */
    background-image: linear-gradient(-232.56deg, #000000e0 0%, #795548de 100%);
}

.tt-cv h2 {
    color: #fff;
    font-size: 46px;
    text-align: center;
    color: #FFFFFF;
    background-image: linear-gradient(45deg, #FFFFFF, #FFDAB9, #FFB347, #FF8C00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-locationx {
    margin-bottom: 1.5rem;
}
.w-w {
    width: 210px;
}
.button_X span {
    color: #000;
}

.button_X:hover span {
    color: #fff;
    z-index: 9;
}


/*Filter options selector start*/

.select-btn {
  width: 300px;
  display: flex;
  overflow: hidden;
  background: var(--c-low-indigo);
  color: var(--c-black);
  padding: 20px;
 font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.select-menu .select-btn .sBtn-text {
  font-weight: 430;
}

.options {
    position: absolute;
    width: 300px;
    color: #000;
    overflow: auto;
    max-height: 350px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    animation: fadeInDown 0.35s both;
}

.options::-webkit-scrollbar {

  display: none;

}

.options .option {
display: flex;
height: 45px;
  cursor: pointer;
  font-weight: 400;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: var(--c-white);
}

.options .option:hover {
  background: #f2f2f2;
}

.options .option .option-text {
 font-size: 14px;
 color: #333;
}

.select-btn svg {
 height: 17px;
    width: 17px;
  transition: 0.2s;
  color: var(--c-dark-indigo);
}

.active .select-btn svg {

  transform: rotate(180deg);

}

.active .options {

  display: block;

  opacity: 0;

  z-index: 10;

  animation: fadeInUp 0.4s both;

}

/*Animation for options box fade up-down*/

@keyframes fadeInUp {

  from {

    transform: translate3d(0, 30px, 0);

  }

  to {

    transform: translate3d(0, 0, 0);

    opacity: 1;

  }

}

@keyframes fadeInDown {

  from {

    transform: translate3d(0, 0, 0);

    opacity: 1;

  }

  to {

    transform: translate3d(0, 20px, 0);

    opacity: 0;

  }

}

/*Filter options selector end*/

.filter-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
}

section.map-view-section {
    padding-top: 11px;
}
.left-vc {
    font-size: 14px;
    color: #696969;
    font-weight: 400;
    text-transform: uppercase;
}
/*---------------------- our services ------------------------*/
.Rservices {
    background-image: url(../img/relx-2.jpg);
    background-position: center;
}
.image_x_full img {
    width: 100%;
}
.image_x_full {
    height: 225px;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}

.img-two-x img {
    width: 100%;
}

.img-two-x {
    overflow: hidden;
    height: 150px;
}

section.section_services {
    background-color: #fffcf7;
}
.service_tx {
    padding: 15px;
}
.service_tx p {
    margin-top: 10px;
    font-size: 17px;
}

.or_list_x h4 {
    font-size: 13px;
    color: #000;
    font-weight: 600;
}

.or_list_x {
    margin-top: 1.5rem;
}

.or_list_x ul li {
    font-size: 14px;
    margin-bottom: 1rem;
}
.service_tx p {
    font-size: 15px;
}

button.view_mt {
    border-radius: 0px;
    border: 0px;
    display: inline-flex;
    height: 50px;
    width: 170px;
    border: 1px solid #777777;
    margin: 0;
    color: #000000;
    text-transform: uppercase;
    background-color: transparent;
    text-decoration: none;
    font-size: .8em;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.row.mr-x {
    margin: 4px 6px;
}
.service_tx {
    padding: 15px;
}
.service_tx {
    margin-left: 3rem;
}
.img-xc svg {
    height: 65px;
    fill: #a3a3a3;
}
.opt-box {
    text-align: center;
}
.cnt-xc {
    margin-top: 10px;
}

.opt-box {
    width: 160px;
    height: 140px;
    padding: 19px;
    border: 1px solid #fef3ef;
    /* align-items: center; */
    border-radius: 5px;
    background-color: #fff3ef;
    cursor: pointer;
}
button.view_mt:hover {
    /* background-color: #9b7769; */
    border: 1px solid #9b7769;
    color: #9b7769;
}

.d-flex-v {
    display: flex;
    margin: auto;
    justify-content: center;
    gap: 15px;margin-top: 2rem;
    margin-bottom: 2rem;
}
.lets_tuch {
    text-align: center;
}
.close_ic {
    text-align: end;
    padding: 10px;
}
.close_ic button {
    font-size: 12px;
}
.options-vc h3 {
    margin-top: 1rem;
    font-size: 15px;
}
.opt-box.active svg {
    fill: #795548;
}
.opt-box.active {
    border: 1px solid #795548;
}

/*--------- contact-us ----*/
.form-radio,
.form-group {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}

.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help, .form-radio .form-help, .form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.form-group input {
  height: 1.9rem;
}
.form-group textarea {
  resize: none;
}
.form-group select {
    width: 100%;
    font-size: 1rem;
    height: 1.9rem;
    padding: 0.125rem 0.125rem 0.0625rem;
    background: none;
    border: none;
    line-height: 1.6;
    box-shadow: none;
    font-size: 14px;
}
.form-group .control-label {
      position: absolute;
    top: 0.25rem;
    pointer-events: none;
    padding-left: 0.125rem;
    z-index: 1;
    color: #636262;
    font-weight: 500 !important;
    font-size: 14px;
    font-weight: normal;
    transition: all 0.28s ease;
}
.form-group .input-error {
  font-size: 0.8rem;
  color: #d9534f;
  top: -1rem;
  left: 0;
  display: none;
}
.form-group .input-error:before {
  content: "âœ˜";
  font-weight: bold;
}
.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}
.form-group .bar::before {
  content: "";
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #1b1646;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
    background: none;
    padding: 0.125rem 0.125rem 0.0625rem;
    font-size: 14px;
    border-width: 0;
    border-color: transparent;
   line-height: 4.9;
    width: 100%;
    color: transparent;
    transition: all 0.28s ease;
    box-shadow: none;
    
}
.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  visibility: hidden;
}
.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  visibility: hidden;
}
.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  /* IE 10+ */
  visibility: hidden;
}
.form-group input:-moz-placeholder,
.form-group textarea:-moz-placeholder {
  /* Firefox 18- */
  visibility: hidden;
}
.form-group input:focus::-webkit-input-placeholder,
.form-group textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  visibility: visible;
}
.form-group input:focus::-moz-placeholder,
.form-group textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  visibility: visible;
}
.form-group input:focus:-ms-input-placeholder,
.form-group textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  visibility: visible;
}
.form-group input:focus:-moz-placeholder,
.form-group textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  visibility: visible;
}
.form-group input[type=file] {
  line-height: 1;
}
.form-group input[type=file] ~ .bar {
  display: none;
}
.form-group input:invalid ~ .input-error {
  display: block;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1rem;
  left: 0;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #1b1646;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}

.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 1e-8;
  position: absolute;
  left: 0;
}

.radio {
  margin-bottom: 1rem;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #999;
}
.radio .helper::before, .radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.radio .helper::after {
  transform: scale(0);
  background-color: #ef286b;
  border-color: #ef286b;
}
.radio label:hover .helper {
  color: #ef286b;
}
.radio input:checked ~ .helper::after {
  transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #ef286b;
}

.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: border-color 0.28s ease;
}
.checkbox .helper::before, .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #ef286b;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #ef286b;
}
.checkbox input:checked ~ .helper {
  color: #ef286b;
}
.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
  opacity: 1;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  transition-delay: 0.28s;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}

.has-error .legend.legend, .has-error.form-group .control-label.control-label {
  color: #d9534f;
}
.has-error.form-group .form-help,
.has-error.form-group .helper, .has-error.checkbox .form-help,
.has-error.checkbox .helper, .has-error.radio .form-help,
.has-error.radio .helper, .has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #d9534f;
}
.has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}

.et_pb_contact_form_label {
	display: block;
	color: black;
	font-weight: bold;
  letter-spacing: 1.2px;
	font-size: 18px;
	padding-bottom: 5px;
}
input[id="et_pb_contact_brand_file_request_0"] {
	display: none;
}
label[for="et_pb_contact_brand_file_request_0"] {
	background: #fff;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-image: none;
    background-size: auto;
  height: 190px;
  background-image: url('../img/icons/cloud-upload-signal.svg');
  background-repeat: no-repeat;
  background-position: top 18px center;
 
  background-size: 7%;
  color: transparent;
  margin: auto;
  
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(5%);
  border: 1px solid #a2a1a7;
  box-sizing: border-box;
  border-radius: 12px;
}
label[for="et_pb_contact_brand_file_request_0"]:before {
	content: "Drag and Drop a file here";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #202020;
	font-weight: 400;
	left:0;
	right:0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
label[for="et_pb_contact_brand_file_request_0"]:after {
	display: block;
  content: 'Browse';
  background: #2ab1ec;
  width: 86px;
  height: 32px;
  line-height: 27px;
  position: absolute;
  bottom: 19px;
  font-size: 14px;
  color: white;
  font-weight: 500;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 5px;
}
label[for="et_pb_contact_brand_request_0"]:after {
	content: " (Provide link or Upload files if you already have guidelines)";
	font-size: 12px;
	letter-spacing: -0.31px;
	color: #7a7a7a;
	font-weight: normal;
}
label[for="et_pb_contact_design_request_0"]:after {
	content: " (Provide link or Upload design files)";
	font-size: 12px;
	letter-spacing: -0.31px;
	color: #7a7a7a;
	font-weight: normal;
}
label[for="et_pb_contact_brand_file_request_0"].changed, label[for="et_pb_contact_brand_file_request_0"]:hover {
  background-color: #e3f2fd;
}
label[for="et_pb_contact_brand_file_request_0"] {
  cursor: pointer;
  transition: 400ms ease;
}
.file_names {
	display: block;
	position: absolute;
	color: black;
	left: 0;
	bottom: -30px;
	font-size: 13px;
	font-weight: 300;
}
.file_names {
  text-align: center;
}
.sub-mit-btn {
  margin-top: 4rem;
}

.Btn_submit {
  color: #fff;
  background: #997669;
  font-size: 15px;
  padding: 8px 25px;
    padding-bottom: 8px;
  padding-bottom: 8px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
  line-height: 23px;
  padding-bottom: 12px;
  width: 100%;    border: 0;
  display: block;
  text-align: center;
}.Btn_submit svg {
  position: relative;
  left: 10px;
}
.apply_job_now {
  padding: 45px;
  background-color: #f7f7f7;
    border-radius: 13px;}

    .apply-title h4 {
  text-transform: capitalize;
  letter-spacing: 3px;
  font-weight: 500;
  color: #282828;
}

.apply-title span {
  font-size: 14px;
  color: #666;
}

.apply_job_now {
  position: sticky;
  top: 9rem;
}

.form-group {
    text-align: justify;
}

.contx-view-form {
    /* border-top: 1px solid #ccc; */
    padding-top: 20px;
    
    padding: 15px;
    border-radius: 5px;
}
.contx-view-form h4 {
    text-transform: capitalize;
}
.ml-name h5 {
    font-size: 19px;
    font-weight: 700;
    text-transform: capitalize;
}
.ml-name {
    text-align: justify;
}

.ceo-vbm p {
    font-size: 23px;
    font-weight: 500;
}
.gap-vb {
  margin-bottom: 7rem;
}

span.w_long_c svg {
    width: 17px;
    height: 17px;
}
span.w_long_c {
    margin-right: 4px;
}

.ceo-img-v::after {
    position: absolute;
    content: "";
    width: 11rem;
    height: 390px;
    border: 7px solid #795548;
    top: -26px;
    display: block;
    left: -44px;
    z-index: 0;
    border-radius: -2px;
}

/*==================== css for attachament =================*/
/* Hide the real file input for this field only */
.attachment-upload input[type="file"] {
    position: relative;
    width: 100%;
    opacity: 0; /* hide browser default */
    z-index: 2;
    cursor: pointer;
}

/* Custom look for only this upload box */
.attachment-upload::before {
    content: "Choose a file...";
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    padding: 6px 1px;
    width: 100%;
    border-bottom: 0.0625rem solid #999;
    font-size: 14px;
    color: #888;
    pointer-events: none;
}

/* Show file name after selection */
.attachment-upload.has-file::before {
    content: attr(data-file-name);
    color: #333;
}

/* Focus underline color for only this field */
.attachment-upload:focus-within::before {
    border-bottom: 2px solid #007bff;
}


/*=================================== Contact  ===============================================*/

.Contact-main-section {
    background-image: url(../img/Contact-us.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.contact-us-section {
    padding: 5rem 0rem;
}
.contact-detail-shadow {
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.14);
    padding: 3rem;
}
.contact-detail-shadow h4 {
    font-size: 0.875rem;
    color: #111111;
    margin-bottom: 15px;
}

.contact-detail-shadow .items {
    margin-bottom: 20px;
}

.contact-detail-shadow i {
    color: #9e7b6e;
    font-size: 15px;
    margin-right: 15px;
    position: relative;
    top: 0px;
}

.cnt-map-v {
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.14);
    padding:1rem;
    margin-top: 1rem;
}
.contact-us-section {
    
    background-image: url(../img/contact-map-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-attachment: fixed;
    background-color: #fff;
}




 .cnt-f-heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.cnt-f-heading h2 span {
    color: #ff9100;
    font-size: 30px;
}

.cnt-f-heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact-form-v {
    margin-top: 5rem;
}
.form-control-v {
    padding: 18px;
    font-size: 14px;
    margin-bottom: 10px;
    background: #e1dfdf40;
    border: 0;
    border-radius: 3px;
    width: 100%;
    box-shadow: 0px 1px 3px #12316140;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #000;
}

.form-c-button{
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #123161d1;
    color: #ffffff;
    border: 0px;
    box-shadow: 1px 1px 3px #ccc;
}

.social-icon-four {
    list-style: none;
}
.follow {
    margin-bottom: 12px;
    font-weight: bold;
}

.social-icon-four li {
    margin-bottom: 1rem;
    margin-top: 1.2rem;
}
/*
.social-icon-four li a i {
    color: #123161;
    font-size: 22px;
    padding-right: 1rem;
    position: relative;
    top: 3px;
}
*/
.social-icon-four li a {
    color: #212529;
}
.socl-links {
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.14);
    padding: 3rem;
    margin-top: 9rem;
}

.map iframe {
       height: 530px;
}

.text-nowrap a {
    color: #734c3e;
    font-size: 15px;
}

.srv-m-v-img {
    margin: 2rem 0rem;
}
.rt-line{
    position: relative;
}
.rt-line::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 10rem;
    bottom: 0px;
    right: 0;
    background-color: #12316121;
    z-index: 1;
    top: 5rem;
}
.form-vc {
    width: 75%;
}
ul.social-icon-four {
    padding: 0;
}
.socl-linksx {
    border-top: 1px solid #ccc;
}
.socl-linksx {
    border-top: 1px solid #ccc;
    margin-top: 4rem;
    padding-top: 4rem !important;
}
.get_main_tl span {
    font-size: 13px;
    color: #7f7f7f;
}
/*=================================== Contact end ============================================*/

.social-status-options {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.social-status-options label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.social-status-options input[type="radio"] {
    display: none;
}

.social-status-options span {
      padding: 2px 9px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #898989;
    transition: all 0.3s ease;
}

.social-status-options input[type="radio"]:checked + span {
   background-color: #9b7769;
    color: #fff;
    border-color: #9b7769;
}

.social-status-options span:hover {
    border-color: #9b7769;
}

label.controll {
    font-size: 14px;
    color: #68676c;
    font-weight: 400;
}

/* Wrapper to position arrow */
.custom-select-wrapper {
    position: relative;
}

/* Style the <select> */
.custom-select-wrapper select {
   width: 100%;
    padding: 0px 27px 0px 0;
    background: transparent;
    border: none;
    /* border-bottom: 1px solid #ccc; */
    font-size: 14px;
    color: #6f6f6f;
    appearance: none;
    -webkit-appearance: none;
}

/* Custom Arrow */
.custom-select-wrapper::after {
   content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #636363;
    border-bottom: 2px solid #636363;
}

p.car-text {
    font-size: 14px !important;
    color: #818181;
    line-height: 28px;
    padding-right: 50px;
}

h3.title_jin {
    margin-bottom: 2rem;
    font-size: 23px;
    padding-top: 4px;
    line-height: 30px;
    padding-right: 45px;
}

.img-dcv img {
    width: 85%;
    margin-bottom: 2rem 32px;
    margin-top: 1rem;
    border-radius: 4px;
}

.img-dcv {
    margin-bottom: 2rem;
}

/*---------------- new design for vision and mission --------*/
section.v-m-section {
   background-image: url(../img/rel-abt.jpg);
    background-size: cover;
    padding: 6rem 0rem 0px;
    position: relative;
    background-attachment: fixed;
    background-position: bottom;
}


.v-m-title-box p {
    color: #fff;
}

.v-m-title-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.v-m-title-box {
    text-align: center;
    padding: 1rem 0rem;
}

.v-m-title-box h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 200;
    font-size: 24px;
}

.v-m-title-box p {
    color: #fff;
    font-size: 14px ! IMPORTANT;
    font-weight: 500;
}

.v-m-title-box {
    text-align: center;
    padding: 1rem 0rem;
    margin-bottom: 2rem;position: relative;
    z-index: 9;
}
section.v-m-section::after {
    content: "";
   
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
   background: linear-gradient(0deg, rgb(0 0 0 / 65%) 0%, rgb(85 49 2 / 82%) 50%, rgb(0 0 0 / 63%) 100%);
}

.tp-team-yoga-thumb {
    border: 1px solid #ccc;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #fff;
    position: relative;
    right: -25px;
    min-width: 75px;
}

.tp-team-yoga-thumb.p-relative.mb-20 img {
    border-radius: 10px;
}
.tp-team-yoga-wrap {
    display: flex;
    align-items: center;
    overflow:hidden;
}
.tp-team-yoga-thumb img {
    border-radius: 10px;
    height: 50px;
}
.tp-team-yoga-content {
  padding: 8px;
    padding-left: 8px;
  background-color: #dddad5;
  padding-left: 30px;
  width:100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.section-gap-v {
  background-color: #f3f3f3;
}

.map_locations {
  padding: 0;
}
.sectors{
    position: relative;
}

.sectors::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 68px;
  top: 45px;
  background-image: url('../img/bckg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 30px;
  opacity: 0.5;
  display: none;
}
.recent-posts{
    position: relative;
}
.recent-posts::after {
  content: "";
  position: absolute;
  width: 120px;
  height:68px;
  top: 45px;
  background-image: url('../img/bckg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  right:30px;
  opacity: 0.5;
  display: none;
}
.footer{
    position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  width: 120px;
  height:68px;
  bottom: 45px;
  background-image: url('../img/bckg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  right:30px;
  opacity: 0.5;
  display: none;
}
.lv-img {
    margin-top: 2rem;
}
.lv-img img {
    width: 190px;
}

p.email-v span {
    text-transform: lowercase !important;
}

/*------------------ new-----------------------*/
.dv-bg {
    background-color: #f8f5f1;
}


.md-img {
    background-image: url(../img/md-c.jpeg);
    padding-top: 0px;
    padding-bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


.ht-130 {
    height: 140px;
}
.date-top-c {
    margin-top: 50px;
}

.banner-data-view {
    /* background-color: #fff; */
    margin-top: 3rem;
    padding: 30px 40px;
    /* border: 1px solid #ffffff; */
}

.banner-data-in p {
    font-size: 19px !important;
    line-height: 39px;
    color: #5f5f5f;
}

.lv-img {
    text-align: center;position: relative;
    z-index: 9;
}
.lv-img img {
  width: 62%;
}

.ftr-sv {
    /*! background-color: #EBE7E4; */
    padding: 2rem 0rem;
    /*! position: relative; */
    /*! overflow: hidden; */
    /*! background-image: linear-gradient(180deg, #fff 0%, #9D786857 100%); */
}



a.email-low {
    text-transform: lowercase !important;
}

a.link-color {
    color: #212529;
}

li.mb-show {
    display: none;
}

@media (max-width: 768px) {
    
  .header .logo img {
    max-height: 60px;
}
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 23px;
    line-height: 0;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
    }
   .index-page.scrolled .logo img {
    max-height: 50px;
    }
    span.mt-tv {
    letter-spacing: 2px;
    }
    
    .hero-header-features span {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px;
    letter-spacing: 0.8px;
    margin: 0 8px;
    text-transform: capitalize;
}
    .hero-header-features span:after {
    content: '.';
    position: absolute;
    right: -13px;
    font-size: 28px;
    top: -13px;
    color: #e0dce5;
}
    .lines-bg-section {
    height: 60vh;
    }
    .my-pd {
    padding-top: 5rem !important;
}
    .overlay {
    height: 60vh;
    }
    .scroll-iocn {
    bottom: 0px;
    }
    .topv {
    top: 8.5rem;
    }
    section#recent-posts {
    padding: 4rem 0rem;
    }
    .mb-m-0 {
    margin-bottom: 0px !important;
}
    .row.gy-4.mb-top-5 {
    margin-top: 1rem;
}
  .call-to-act {
    flex-wrap: wrap;
}  
  .coll-info-vd {
    width: 100%;
    display: block;
    margin-bottom: 3rem;
}
    .call-to-act {
    display: flex;
    background-image: linear-gradient(360deg, #fff 0%, #9b7769 100% 20%);
}
    
   .coll-info-vd h4 {
    margin-bottom: 0;
    padding: 0;
    font-size: 21px;
    width: 100%;
    line-height: 30px;
}
    p.wdc-v {
    width: 100%;
}
    a.logo.d-flex.align-items-center {
    justify-content: center;
    margin-bottom: 15px;
}
   .footer-about .logo img {
    width: 135px;max-height: fit-content !important;
}
    .social-links {
    justify-content: center;
}
    .call-to-act {
        margin-bottom: 2rem;
    }
   
    .index-page.scrolled .header .navmenu a {
    color: #2d2d2d;
}
    .index-page.scrolled .header .navmenu a {
        color: #2d2d2d ;
    }
    .text-right {
    text-align: end;
}
    .cnt-box {
    border-right: 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5e2db;
    padding-bottom: 2rem;
}
    
   qoute-wrapper {
    display: block !important;
} 
    section.section-img::after {
    background-color: #000000f0;
    }
    
   section.section-img::after {
    width: 100%;
    height: 100%;
    }
    
    .qoute-wrapper {
           display: block !important;
    }
    .qoute-text {
    width: 100%;
}
    .qoute-text {
    position: relative;
    z-index: 9;
}
    .total-exp {
    width: 100%;
}
    
    .white-text {
    color: #ffffff;
    }
    section.section-img::after {
    width: 50%;
    }
    section.about-rj.about {
    padding: 4rem 0rem;
}
    h4.slvg {
    font-size: 15px;
    padding: 5px 5px;
    }
    .ceo-img-v {
    margin-bottom: 2rem;
}
    .img-dw {
    margin-bottom: 1rem;
}
  .left-img-view {
    margin-bottom: 4rem;
}
    .img-dw {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    }
    .bg-x-c {
    z-index: 9;
    position: relative;
    }
    .hero-gradient {
    display: none;
}
    .bg-x-c * {
    color: #000000 !important;
}
    .project-dtl-big img {
    width: 100%;
    border-radius: 10px;
}
    .pt-img-vix {
    margin-bottom: 2rem;
}
    .pt-img-vix {
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid #efefef;
    padding: 10px;
    border-radius: 13px;
}
    .pt-img-vix span {
    display: block;
}
    .bottom-x {
    position: relative;
    width: 100%;
    bottom: 18px;
    right: 0px;
    background-color: #000000;
    text-align: unset;
    padding: 10px;
    border-radius: 5px;
}
  
    .site-data span {
    color: #fff !important;
}
    .dev-c {
    margin-bottom: 0px;
}
    .pt-img-vix img {
    width: 159px;
    height: unset;
}
   .get_main_tl {
    margin-top: 3rem;
} 
    .form-vc {
    width: 100%;
}
    li.mb-show {
    display: block;
}
    .service_tx {
    margin-left: 0rem;
}
.ceo-img-v::after {
    position: absolute;
    content: "";
    width: 11rem;
    height: 280px;
}
.tp-team-yoga-wrap {
    width: 280px;
}
.navmenu .dropdown ul {
    opacity: 1;visibility: visible;
}
}
ul.dd-box-shadow.dropdown-active {
    opacity: 1;
    visibility: visible;
}

.country-selector {
    height: 25px;
    background-color: unset;
    padding-right: 21px;
    padding-left: 0;
    padding-top: 0;
    line-height: 4px;
}

button.mat-focus-indicator.mat-menu-trigger.country-selector.mat-button.mat-button-base {
    height: 25px;
    padding-left: 0px !important;
    width: 85px;
}
::ng-deep #phoneInput .cdk-overlay-container {
    position: fixed;
    z-index: 9999;
}

/*----------- cdk style for css for mobile number cuntry code dropdown ------------------*/

.cdk-high-contrast-active .mat-ripple-element {
    display: none
}

.cdk-visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    left: 0
}

[dir=rtl] .cdk-visually-hidden {
    left: auto;
    right: 0
}

.cdk-overlay-container,.cdk-global-overlay-wrapper {
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.cdk-overlay-container {
    position: fixed;
    z-index: 1000
}

.cdk-overlay-container:empty {
    display: none
}

.cdk-global-overlay-wrapper {
    display: flex;
    position: absolute;
    z-index: 1000
}

.cdk-overlay-pane {
    position: absolute;
    pointer-events: auto;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    max-width: 100%;
    max-height: 100%
}

.cdk-overlay-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1000;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: opacity .4s cubic-bezier(.25,.8,.25,1);
    opacity: 0
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 1
}

.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: .6
}

.cdk-overlay-dark-backdrop {
    background: rgba(0,0,0,.32)
}

.cdk-overlay-transparent-backdrop {
    transition: visibility 1ms linear,opacity 1ms linear;
    visibility: hidden;
    opacity: 1
}

.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0;
    visibility: visible
}

.cdk-overlay-backdrop-noop-animation {
    transition: none
}

.cdk-overlay-connected-position-bounding-box {
    position: absolute;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    min-width: 1px;
    min-height: 1px
}

.cdk-global-scrollblock {
    position: fixed;
    width: 100%;
    overflow-y: scroll
}

textarea.cdk-textarea-autosize {
    resize: none
}

textarea.cdk-textarea-autosize-measuring {
    padding: 2px 0!important;
    box-sizing: content-box!important;
    height: auto!important;
    overflow: hidden!important
}

textarea.cdk-textarea-autosize-measuring-firefox {
    padding: 2px 0!important;
    box-sizing: content-box!important;
    height: 0!important
}

@keyframes cdk-text-field-autofill-start {
}

@keyframes cdk-text-field-autofill-end {
}

.cdk-text-field-autofill-monitored:-webkit-autofill {
    animation: cdk-text-field-autofill-start 0s 1ms
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
    animation: cdk-text-field-autofill-end 0s 1ms
}

/* cdk mobile  number cuntry code dropdown  end*/

@media (min-width: 468px) and (max-width: 768px) {
        .topv {
        top: 9rem;
    }
    .icon-box {
        padding: 45px 10px;
    }
    .recent-posts .post-img {
        height: 170px;
    }
      .ceo-img-v {
        width: 90%;
        margin: auto;
        position: relative;
        margin-bottom: 5rem;
    }  
    .project_loc_dtl {
    padding-left: 0px;
}
span.space-tl {
    width: 100%;
    color: #666666 !important;
}
span.saprate_space { color: #666666 !important;
}span.sapce-data { color: #666666 !important;
}
#slide {
    width: 100%;
    height: 100%;
    left: -598px;
}
}

@media (min-width: 758px) and (max-width: 990px) {

.ceo-img-v {
    width: 39%;
    margin: auto;
    position: relative;
    margin-bottom: 5rem;
}
}


@media (min-width: 995px) and (max-width: 1197px) {
  .ceo-img-v::after {
    position: absolute;
    content: "";
    width: 11rem;
    height: 300px;
  }
}
@media (min-width: 1197px) and (max-width: 1390px) {
  .ceo-img-v::after {
    position: absolute;
    content: "";
    width: 11rem;
    height: 350px;
  }
}
/* Tablet and smaller */
@media (max-width: 1199px) {
    li.mb-show {
    display: block;
}
    .service_tx {
    margin-left: 0rem;
}
   .footer-about .logo img {
        width: 135px;
        max-height: fit-content !important;
    }
    button.get_in_tuch {
    display: none;
}
        .header .logo {
        order: unset;
    }
    .mobile-nav-toggle {
    color: #ffffff;
    font-size: 23px;
    line-height: 0;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
    }
    .index-page.scrolled .header .navmenu a {
    color: #997669;
    }
    .navmenu li:last-child a {
    padding: 10px 10px;
}
    .text-right {
    text-align: right;
}
    .mb-m-0 {
    margin-bottom: 0px !important;
}
    .mb-top-5 {
    margin-top: 1rem;
}
    .lv-img img {
    width: 85%;
}
    .index-page.scrolled .logo img {
    max-height: 50px;
    }
    
    .project-dtl-big img {
    width: 100%;
    border-radius: 10px;
    height: -webkit-fill-available;
}
    .project-dtl-big {
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}
.p-g .project-dtl-big {
    height: auto;
}
    .pt-img-vix img {
    width: 121px;
}
    .pt-img-vix span {
    display: block;
}
      .get_main_tl {
    margin-top: 3rem;
}   .form-vc {
    width: 100%;
}

.button_X {
    display: inline-flex;
    height: 60px;
}

button.get_in_tuch {
    position: relative;
    border: 1px solid #fff;
    padding: 9px 2px;
    width: 111px;
    margin-left: 10px;
 
}

}

@media (max-width: 1267px) {
    button.get_in_tuch {
        position: relative;
        border: 1px solid #fff;
        padding: 9px 2px;
        width: 101px;
        margin-left: 9px;
        font-size: 13px;
    }

.navmenu a, .navmenu a:focus {
        color: #ffffff;
        padding: 13px 9px;
        font-size: 16.5px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: capitalize;
    }

}


/*---------------- Arabic css ------------------*/
body.rtl {
    direction: rtl;
}


[dir=rtl] .header .navmenu a, [dir=rtl] .header .navmenu a:focus {
    text-align: right;

}

[dir=rtl] button.get_in_tuch {
    margin-right: 20px;
}
[dir=rtl] .navmenu a i, [dir=rtl] .navmenu a:focus i {
    margin-right: 5px;
}
[dir=rtl] .texto h1 {
  direction: rtl;line-height: 85px;
}
[dir=rtl] .hero-header-features span:after {
   left: -20px;
    right: unset;
}
[dir=rtl] i.bi.bi-arrow-right {
    rotate: 180deg;
}

[dir=rtl] .text-end {
    text-align: end;
}
[dir=rtl] a.my-read-more i {
    right: 9px;
}
[dir=rtl] .bi-arrow-right::before {
    content: "\f138";
    transform: rotate(180deg);
}
[dir=rtl] .call-to-act {
    background-image: linear-gradient(90deg, #fff 0%, #9b7769 100%);
}
[dir=rtl] .text-md-start {
    text-align: right !important;
}
[dir=rtl] .footer .social-links a {
margin-left: 10px;
}
[dir=rtl] .recent-posts::after {
  left: 30px;
}
[dir=rtl] .sectors::after {
    right: 30px;right: auto;
    display: none;
}
[dir=rtl] .navmenu .dropdown ul {
  right: 14px;left: auto;
}

[dir=rtl] .about-quote p {
    padding: 0px 0px 40px 60px;
}
[dir=rtl] .cnt-box {
    border-left: 1px dashed #ebebeb;border-right: unset;
}
[dir=rtl] .qoute-wrapper { 
    direction: ltr;
}
[dir=rtl] .total-exp {
  direction: rtl;
}
[dir=rtl] .ceo-img-v::after {
    right: -44px;
    left: auto;
}
[dir=rtl] .breadcrumb-menu ul {
    padding-left: 50px;
     padding-right: 0px;
}
[dir=rtl] .breadcrumb-menu ul li {
    position: relative;
    display: block;
    float: right;
    margin-left: 5px;
    padding-left: 15px;
    margin-right: 0px;
    padding-right: 0px;
}
[dir=rtl] .breadcrumb-menu ul li::after {
    right: auto;
    left: -15px;
}
[dir=rtl] .breadcrumb-menu ul li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: auto;
}
[dir=rtl] .tp-team-yoga-content {
    padding-right: 30px;    padding-left: 10px;
}
[dir=rtl] .tp-team-yoga-thumb {
    left: -25px;right: auto;
}
[dir=rtl] .simple-btn:after {
    right: 0;
    left: auto;
}
[dir=rtl] .or_list_x ul {
    padding-right: 2rem;
    padding-left: 0;
}
[dir=rtl] span.sapce-data {
    width: 100%;
    padding-right: 15px;
}
[dir=rtl] span.svg-loc {
    margin-left: 5px;
}
[dir=rtl] .logo {
    margin-right: unset !important;
    
}


[dir=rtl] .custom-select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
   right: auto;
}
[dir=rtl] .contact-detail-shadow i {
    color: #9e7b6e;
    font-size: 15px;
    margin-left: 15px;margin-right: auto;
}
/* RTL override */
[dir="rtl"] .form-group select ~ .control-label,
[dir="rtl"] .form-group input:focus ~ .control-label,
[dir="rtl"] .form-group input:valid ~ .control-label,
[dir="rtl"] .form-group input.form-file ~ .control-label,
[dir="rtl"] .form-group input.has-value ~ .control-label,
[dir="rtl"] .form-group textarea:focus ~ .control-label,
[dir="rtl"] .form-group textarea:valid ~ .control-label,
[dir="rtl"] .form-group textarea.form-file ~ .control-label,
[dir="rtl"] .form-group textarea.has-value ~ .control-label {
       right: 0;
    left: auto;
}
[dir="rtl"] .custom-select-wrapper select {
    width: 100%;
    padding: 0px 0px 0px 27px;
}
[dir="rtl"] p.car-text {
    padding-right: auto;
    padding-left: 50px;
}

[dir="rtl"] h3.title_jin {
     padding-right: auto;
    padding-left: 45px;
}

[dir="rtl"]  .country-selector {
    right: 0 !important;
    left: auto !important;
}
[dir="rtl"] .d-flex.align-items-start.items .bi-telephone {
    right: 0;
    margin-left: 15px;
    margin-right: 0;
}
[dir="rtl"] .d-flex.align-items-start.items .bi-envelope {
    right: 0;
    margin-left: 15px;
    margin-right: 0;
}

[dir="rtl"] .bottom-x {
    position: absolute;
    width: 251px;
    bottom: 18px;
    left: -10px;
    right: auto;
    background-color: #000000;
    text-align: unset;
    padding: 10px;
    border-radius: 5px;
}

[dir="rtl"] .project_info_left {
    padding-right: 0px;padding-right: auto;
}

[dir="rtl"] .owl-carousel {
    direction: ltr;
}
[dir="rtl"] a.my-read-more {
    color: #9b7769;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 5px;
}

[dir="rtl"] .button.arabic-ltr {
    direction: rtl;
    left: 3%;
    right: unset;
}
[dir="rtl"] i.fa-solid.fa-arrow-left {
    transform: rotate(180deg);
}

[dir="rtl"] i.fa-solid.fa-arrow-right {
    transform: rotate(180deg);
}
[dir="rtl"] a.my-read-more:hover {
    background-color: #9b7769;
    color: #fff !important;
}


@media (max-width: 699px) {
section.futures_section {
    padding-top: 0px;
}
[dir=rtl] .call-to-act {
    background-image: linear-gradient(3deg, #fff 50%, #9b7769 100%);
}
.call-to-act {
    background-image: linear-gradient(3deg, #fff 50%, #9b7769 100%);
}
[dir=rtl] p.wdc-v {
    text-align: center;
}
[dir=rtl] .footer-contact.text-center.text-md-start {
    text-align: center !important;
}
[dir="rtl"] .bottom-x {
    position: relative;
    width: 100%;
    bottom: 18px;
    left: 0px;
    right: auto;
}
.row-reverse-mble {
    flex-direction: column-reverse;
}
[dir=rtl] .texto h1 {
    direction: rtl;
    line-height: 44px;
}
[dir=rtl] span.mt-tv {
    margin-bottom: 10px;
}
}

[dir=rtl]  .text-top-lb h2 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 15px;
   padding-right: 0px !important;
}




@media (min-width: 699px) and (max-width: 990px) {
  .row-reverse-mble {
    flex-direction: column-reverse;
}
}

@media (max-width: 1199px) {

    .navmenu a, .navmenu a:focus {
        color: #9b7769;
    }
    [dir=rtl] .logo {
    margin-right: unset !important;
    margin-left: auto;
}
.project_title.fg-v h2 {
    font-size: 44px;
    font-weight: 700;
}
.project_title h2 {
    margin-bottom: 1rem;
    padding-bottom: 7px;
}
.service_tx {
    margin-right: 0px !important;
}
.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
    color: #8d4427;
}
  }

#error-messages {
    color: rgb(162, 11, 11);
    margin-top: 5px;
    font-size: 12px;
    font-style: normal;
}



@media (min-width: 758px) and (max-width: 990px) {
      .p-g .project-dtl-big {
        height: 550px;
    }
    .row-reverse-mble {
    flex-direction: column-reverse;
}
a.my-read-more {
    color: #9b7769;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 5px;
    min-width: 260px;
}
}



[dir="rtl"] .hero-header-features span {
    /* font-size: 17px; */
    font-size: 19px;

}

[dir="rtl"] span.mt-tv {
    /* font-size: 19px; */
    font-size: 25px;

}

/*---------------- Arabic css end ------------------*/

.crd-icon {
    height: 45px;
}

.crd-icon span {
    font-size: 40px;
}
.call-to-act {
    display: none;
}
.view_link {
      display: inline-flex
;
    height: 50px;
    width: 170px;
    border: 1px solid #777777;
    margin: 0;
    color: #000000;
    text-transform: uppercase;
    background-color: transparent;
    text-decoration: none;
    font-size: .8em;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

[dir=rtl] .text-end {
    text-align: end !important;
}


i.mobile-nav-toggle.d-xl-none.bi.bi-list {
    z-index: 99999999999;
    position: relative;
}


.dev-c {
    margin-bottom: 0px;
}

@media (min-width: 1080px) and (max-width: 1280px) {

.project-dtl-big {
    height: 690px;
}.project_info_left {
    padding-right: 10px;
}
}

@media (min-width: 1668px) and (max-width: 1968px) {

.project-dtl-big {
    height: 690px;
}
}

.pt-img-vix span {
    margin-top: 10px;
    display: block;
}

.project-dtl-big img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
}
/* Show dropdown in mobile */
.dropdown-menu.dd-box-shadow.dropdown-active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  margin-top: 10px;
}
li.dropdown.has-dropdown.active a i {
    background-color: #9b7769;
}
.dropdown-menu.dd-box-shadow {
  will-change: transform;
}