  @font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }



  body {
  font-family: 'Century Gothic' !important;
  }
  h1,h2,h3,h4,h5,h6 {
  font-family: 'Century Gothic' !important;
  }

  p,a {
  font-family: 'Century Gothic' !important;
  }
  span {
  font-family: 'Century Gothic';
  }

  /***********begin-header*************/
  header {
  padding: 10px 0;
  position: relative;
  position: fixed;
  width: 100%;
  z-index: 99;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }
  .hright a img {
  width: 22px;
  }
  header.fixed {
  background-color: #262626;
  z-index: 9999999;
  padding: 10px 39px;
  }
  .hright .button-custom {
  width: auto;
  min-width: 160px;
  padding: 0 10px;
  text-transform: capitalize;
  }
  .hright a:not(.button-custom) {
    border-left: 1px solid #fff;
    margin-left: 15px;
    padding-left: 10px;
  }
  header .header-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: space-between;
  }
  .hleft,.hright {
  display: flex;
  align-items: center;
  }
  header .header-outer nav {
  padding-left: 40px;
  }
  .logo img {
  width: 150px;
  }
  header .header-outer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  }
  header .header-outer nav ul li {
  position: relative;
  }
  header .header-outer nav ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 53px;
  text-align: right;
  color: #fff;
  text-decoration: none;
  padding: 0 25px;
  position: relative;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  header .header-outer nav ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  top: 2px;
  border-right: 1px dotted #fff;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  width: : 1px;
  display: inline-block;
  }

  header .header-outer nav ul li a:hover {
    color: #B0A348;
  }
  header .header-outer nav ul li a.active {
  color: #B0A348;
  }
  header .header-outer nav ul li a:hover:before {
  border-right: 1px dotted #B0A348;
  }
  header .header-outer nav ul li:first-child a:before {
  display: none;
  }

  header .header-outer nav ul li a.active:before {
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  opacity: 1;
  }
  .header-outer nav ul ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.189057);
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.189057);
    background: #B0A348;
    display: block;
    padding: 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    z-index: 10;
  }
  .header-outer nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }
  .header-outer nav ul ul li a {
  width: 100%;
  display: block;
  text-align: left;
  }
  .header-outer nav ul ul li a:hover,.header-outer nav ul ul li a.active {
  background: #86764e;
  color: #ffffff;
  }
  .header-outer nav ul ul li a:before {
  content: none;
  }

  /***********end-header*************/
  /***********begin-banner*************/
  .banner {
  /* /////////// IMAGE ZOOM /////////// */
  }

  @media (min-width: 992px) {
  .banner .slider,
  .banner .slide {
    height: 82vh;
  }
  .banner .inner .slide {
    height: 500px;
  }
  }

  .banner .slide {
  position: relative;
  -webkit-transition: 1s;
  transition: 1s;
  }

  .banner .slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  }

  @media (min-width: 992px) {
  .banner .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  }

  .banner .slide .slide__img img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -o-object-fit: cover;
    object-fit: cover;
  }

  .banner .slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  }

  .banner .slide .slide__content.slide__content__left {
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  }

  .banner .slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  -webkit-transform: translate(5%, -50%);
          transform: translate(5%, -50%);
  }

  .banner .slide .slide__content--headings {
  color: #FFF;
  max-width: 690px;
  }

  .banner .slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  }

  .banner .slide .slide__content--headings .animated {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  }

  .banner .slide .slide__content--headings .title {
  font-size: 2.7rem;     margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  color: #fff;
  }
  .our-team ul.wp-block-list {
      padding-left: 17px;
  }
  .our-team ul.wp-block-list li{
    padding-left:20px;
  }


  header a.button-custom {
      margin-top: 0 !important;
  }

  .banner .slide .slide__content--headings p {
  font-size: 20px;
  padding-right: 0%;
  }

  .banner .slide .slide__content--headings .button-custom,.button-custom {
  text-decoration: none;
  width: 200px;
  height: 60px;
  background: #B0A348;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 13px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  float: left;
  font-family: 'Century Gothic';
  margin-top: 2px;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  }
  .button-custom {
  /*	width: 160px;*/
  margin: 0;
  }
  .banner .slide .slide__content--headings .button-custom:hover,.button-custom:hover {
  background: #86764e;
  color: #ffffff;
  }

  .banner .slide .slide__content--headings .button-custom svg {
  margin-left: 40px;
  }

  .banner .slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
  -webkit-transition: 1s;
  transition: 1s;
  }

  .banner .slick-dotted .slick-slider {
  margin-bottom: 30px;
  }

  .banner .slick-dots {
  position: absolute;
  bottom: 100px;
  list-style: none;
  display: block;
  text-align: left;
  padding: 0 7%;
  margin: 0;
  width: 100%;
  }

  .banner .slick-dots a {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 20px;
  text-align: left;
  color: #fff;
  opacity: 0.45;
  text-decoration: none;
  }

  .banner .slick-dots.slick-active a {
  opacity: 1;
  }

  .banner .slick-dots li.slick-active a.dot {
  opacity: 1;
  border-bottom: 1px solid #fff;
  }

  .banner .slick-dots li {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  cursor: pointer;
  }

  .banner .slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  }

  .banner .slick-dots li button:hover, .banner .slick-dots li button:focus {
  outline: none;
  }

  .banner .simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
  }

  .banner .simple-dots .slick-dots li button {
  border-radius: 50%;
  background: #F1E2BF;
  opacity: 1;
  width: 20px;
  height: 20px;
  }

  .banner .simple-dots .slick-dots li button:hover, .banner .simple-dots .slick-dots li button:focus {
  opacity: 1;
  }

  .banner .simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
  }

  .banner .stick-dots .slick-dots li {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid transparent;
  }

  .banner .stick-dots .slick-dots li button {
  width: 10px;
  background: #fff;
  position: relative;
  opacity: 1;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  display: inline-block;
  top: -15px;
  }

  .banner .stick-dots .slick-dots li button:hover, .banner .stick-dots .slick-dots li button:focus {
  opacity: 1;
  }

  .banner .stick-dots .slick-dots li.slick-active {
  border: 1px solid #ffffff;
  }

  .banner .stick-dots .slick-dots li.slick-active button {
  background: #CBA13D;
  }

  .banner .stick-dots .slick-dots li.slick-active button:hover, .banner .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
  }
  .banner .slick-slide:before{
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1D2029;
  opacity: 0.6;
  }
  .language-switcher {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border-right: 1px solid #ffffff;
  position: relative;
  z-index: 9;
  }
  .language-switcher > a {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 15px;
  color: #ffffff;
  line-height: 28px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 30px 0 15px !important;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  }
  .language-switcher a.lang:after {
    position: absolute;
    content: "";
    right: 10px;
    top: 0;
    width: 11px;
    height: 13px;
    background: url(../images/arr.png) no-repeat center center;
    background-size: 100%;
  }
  .language-switcher ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.120684);
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.120684);
  list-style: none;
  margin: 0;
  background: #ffffff;
  padding: 0 !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  display: block !important;
  }
  .language-switcher ul.slidein {
    opacity: 1;
    visibility: visible;
  }
  .language-switcher li {
  width: 100%;
  display: inline-block;
  padding: 0 10px;
  }
  .language-switcher li a {
  display: block;
  font-size: 14px;
  color: #B0A348 !important;
  text-transform: uppercase;
  line-height: 28px !important;
  text-decoration: none;
  }

  @-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  }

  @keyframes zoomInImage {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  }

  .banner .zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
  }

  @-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  }

  @keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  }

  .banner .zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  -webkit-transition: 1s;
  transition: 1s;
  }

  .banner .slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
  }

  .banner .slick-nav.prev-arrow {
  left: 3%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 999;
  }

  .banner .slick-nav.next-arrow {
  left: auto;
  right: 3%;
  }

  .banner .slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  }

  .banner .slick-nav i:before, .banner .slick-nav i:after {
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  -webkit-transform-origin: 9px 50%;
          transform-origin: 9px 50%;
  }

  .banner .slick-nav i:before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  }

  .banner .slick-nav i:after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  }

  .banner .slick-nav:before, .banner .slick-nav:after {
  content: '';
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
  }

  .banner .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  }

  .banner .slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards .3s;
          animation: stroke 1s ease forwards .3s;
  }

  .banner .slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
  }

  .banner .slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
  }

  .banner .slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
  }

  @-webkit-keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
  }

  @keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
  }

  @-webkit-keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
  }

  @keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
  }

  @-webkit-keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
  }

  @keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
  }

  @-webkit-keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
  }

  @keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
  }

  /***********end-banenr*************/
  /**********begin who we are *************/
  .who-we-are {
  padding: 108px 98px 138px 137px;
  overflow-x: hidden;
  }

  .who-we-are .about-content {
  background: #f5f5f5;
  position: relative;
  }

  .who-we-are .about-content:before {
  content: "";
  position: absolute;
  left: -98px;
  top: -171px;
  width: 286px;
  height: 271px;
  background-image: url(../images/grid-1.png);
  overflow: hidden;
  }

  .who-we-are .about-content:after {
  content: "";
  position: absolute;
  right: -98px;
  top: -171px;
  width: 286px;
  height: 271px;
  background-image: url(../images/grid-2.png);
  overflow: hidden;
  }

  .who-we-are .about-content .title-about {
  padding-left: 74px;
  padding-top: 20px;
  background-color: whitesmoke;
  z-index: 99;
  position: relative;
  }

  .who-we-are .about-content .about-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-end;
      -ms-flex-align: self-end;
          align-items: self-end;
  }

  .who-we-are .about-content .about-row .title-number {
  padding: 90px 90px 100px 90px;
  position: relative;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 331px;
  }

  .who-we-are .about-content .about-row .title-number h3 {
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  text-align: left;
  color: #434343;
  margin: 0;
  }

  .who-we-are .about-content .about-row .title-number svg {
  position: absolute;
  bottom: -95px;
  left: 0;
  }

  .who-we-are .about-content .about-row .box-about {
  padding: 96px 62px 93px 89px;
  position: relative;
  max-width: 44%;
  background-color: #ffff;
  }

  .who-we-are .about-content .about-row .box-about p {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 44px;
  text-align: left;
  color: #000;
  font-weight: bold;
  position: relative;
  z-index: 99;
  }

  .who-we-are .about-content .about-row .box-about a {
  width: 243px;
  height: 74px;
  background: -webkit-gradient(linear, left top, left bottom, from(#6b6b6b), to(#262626));
  background: linear-gradient(#6b6b6b 0%, #262626 100%);
  -webkit-filter: drop-shadow(0px 27px 55px rgba(38, 38, 38, 0.27));
          filter: drop-shadow(0px 27px 55px rgba(38, 38, 38, 0.27));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  text-align: left;
  color: #fff;
  text-decoration: none;
  margin-top: 40px;
  position: relative;
  z-index: 99;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .who-we-are .about-content .about-row .box-about a svg {
  margin-left: 21px;
  }

  .who-we-are .about-content .about-row .box-about a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#b1b1b1), to(#000000));
  background: linear-gradient(#b1b1b1 0%, #000000 100%);
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .who-we-are .about-content .about-row .box-about .bg-about {
  position: absolute;
  left: 0;
  bottom: -99px;
  }

  .who-we-are .about-content .about-row .about-image {
  width: 37%;
  }

  /**********end who we are**************/
  /**********begin our service**************/
  .ourservice {
  background-color: #F5F5F5;
  padding: 148px 137px;
  padding-right: 125px;
  position: relative;
  padding-bottom: 268px;
  }

  .ourservice .bg-sevice {
  background-color: #C9C9C9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 81%;
  height: 712px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  }

  .ourservice:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  min-height: 240px;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  }

  .ourservice .inner-service {
  position: relative;
  z-index: 99;
  }

  .ourservice .inner-service .service-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }

  .ourservice .inner-service .service-head .title-service {
  position: relative;
  padding-right: 116px;
  margin-bottom: 86px;
  }

  .ourservice .inner-service .service-head .title-service h2 {
  font-weight: bold;
  font-size: 45px;
  line-height: 48px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  }

  .ourservice .inner-service .service-head .title-service svg {
  position: absolute;
  top: -196px;
  }

  .ourservice .inner-service .service-head .shadow-text {
  margin-top: -105px;
  }

  .ourservice .inner-service .service-head .shadow-text svg {
  width: 100%;
  }

  .ourservice .inner-service .service-head .shadow-text svg tspan {
  font-size: 6vw;
  }

  .ourservice .inner-service .service-slider .service-box {
  background: #fff;
  -webkit-filter: drop-shadow(0px 11px 73px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 11px 73px rgba(0, 0, 0, 0.16));
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .ourservice .inner-service .service-slider .service-box .icon-service {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  }

  .ourservice .inner-service .service-slider .service-box .icon-service .icon-bg {
  position: absolute;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: baseline; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  }

  .ourservice .inner-service .service-slider .service-box .icon-service .iocn-serv {
  max-width: 200px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: 32px 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .ourservice .inner-service .service-slider .service-box h3 {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 16px;
  text-align: center;
  color: #000;
  padding-top: 1px;
  padding-bottom: 2px;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  text-transform: uppercase;
  min-height: 53px;
  margin-bottom: 0;
  padding: 0 16px;
  }

  .ourservice .inner-service .service-slider .service-box:hover {
  background: rgba(19, 19, 19, 0.17);
  }

  .ourservice .inner-service .service-slider .service-box:hover .iocn-serv {
  background-position: -168px 38px;
  }

  .ourservice .inner-service .service-slider .service-box:hover h3 {
  color: #fff;
  }

  .ourservice .inner-service .service-slider .owl-nav {
  position: absolute;
  right: 0;
  top: -249px;
  z-index: 999;
  }

  .ourservice .inner-service .service-slider .owl-nav button {
  margin: 2px;
  }

  .ourservice .inner-service .service-slider .owl-nav .icon-arrow-left7 {
  width: 72px;
  height: 72px;
  background-color: #e2e2e2;
  display: inline-block;
  background-image: url(../images/arrow-left.png);
  background-repeat: no-repeat;
  background-position: 26px center;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .ourservice .inner-service .service-slider .owl-nav .icon-arrow-left7:hover {
  background-color: #888888;
  background-position: -25px center;
  }

  .ourservice .inner-service .service-slider .owl-nav .icon-arrow-right7 {
  width: 72px;
  height: 72px;
  background-color: #e2e2e2;
  display: inline-block;
  background-image: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  background-position: 26px center;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .ourservice .inner-service .service-slider .owl-nav .icon-arrow-right7:hover:hover {
  background-color: #888888;
  background-position: -25px center;
  }

  /**********end our service**************/
  /**********begin portfolio**************/
  section.portfolio {
  padding: 126px 137px;
  padding-right: 125px;
  }

  section.portfolio .portfolio-outer .header-portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  }

  section.portfolio .portfolio-outer .header-portfolio .number-sec h4 {
  font-weight: 700;
  font-size: 275px;
  text-align: left;
  color: #9e9e9e;
  opacity: 0.12;
  line-height: 198px;
  }

  section.portfolio .portfolio-outer .header-portfolio .title-section {
  max-width: 444px;
  width: 100%;
  }

  section.portfolio .portfolio-outer .header-portfolio .title-section h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  text-align: left;
  color: #747474;
  margin-bottom: 17px;
  }

  section.portfolio .portfolio-outer .header-portfolio .title-section p {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #c3c1cb;
  }

  section.portfolio .portfolio-outer .header-portfolio .portfolio-link {
  width: 30%;
  }

  section.portfolio .portfolio-outer .header-portfolio .portfolio-link #custom-filter {
  list-style: none;
  }

  section.portfolio .portfolio-outer .header-portfolio .portfolio-link #custom-filter li {
  padding-bottom: 15px;
  cursor: pointer;
  }

  section.portfolio .portfolio-outer .header-portfolio .portfolio-link #custom-filter li a {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 20px;
  text-align: left;
  color: #000;
  opacity: 0.64;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  section.portfolio .portfolio-outer .header-portfolio .portfolio-link #custom-filter li a.is-checked {
  width: 100%;
  height: 71px;
  background: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 22px;
  }

  section.portfolio .portfolio-outer .portfolio-gallery {
  padding-top: 118px;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 19.333333% !important;
  margin-bottom: 5px;
  padding: 0;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item:hover .overlay {
  opacity: 1 !important;
  bottom: 0 !important;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso {
  position: relative;
  overflow: hidden;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso .img-portfolio img {
  width: 100%;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 84px;
  background: #000;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 18px 16px;
  opacity: 0;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  bottom: -21px;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso .overlay h4 {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 10px;
  text-align: left;
  color: #fff;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso .overlay .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  }

  section.portfolio .portfolio-outer .portfolio-gallery .iso-container .isotope-item .img_iso .overlay .text h5 {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #c1c1c1;
  margin: 0;
  }

  /**********end portfolio**************/
  /**********begin client**************/
  .client-section {
  background-color: #EFEFEF;
  padding: 126px 137px;
  padding-right: 125px;
  padding-bottom: 31px;
  }

  .client-section .inner-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  }

  .client-section .inner-client .client-left {
  -webkit-transform: translate(0px, -121px);
  transform: translate(0px, -121px);
  width: 11%;
  position: relative;
  }

  .client-section .inner-client .client-left h2 {
  font-family: 'Century Gothic';
  font-weight: 700;
  font-size: 134px;
  line-height: 130px;
  text-align: left;
  color: #fff;
  position: absolute;
  left: -178px;
  bottom: 107px;
  -webkit-transform: rotateZ(270deg);
          transform: rotateZ(270deg);
  }

  .client-section .inner-client .client-content {
  padding-left: 36px;
  width: 90%;
  }

  .client-section .inner-client .client-content .head-client .client-title {
  position: relative;
  }

  .client-section .inner-client .client-content .head-client .client-title h3 {
  font-weight: 700;
  font-size: 49px;
  line-height: 48px;
  text-align: left;
  color: #404040;
  line-height: 55px;
  }

  .client-section .inner-client .client-content .head-client .client-title h5 {
  font-weight: 700;
  font-size: 275px;
  text-align: left;
  color: #a1a1a1;
  opacity: 0.08;
  position: absolute;
  top: 0;
  line-height: 148px;
  }

  .client-section .inner-client .client-content .slider-client {
  padding-top: 87px;
  }

  .client-section .inner-client .client-content .slider-client .slick-slide {
  margin: 0 5px;
  }

  .client-section .inner-client .client-content .slider-client .element {
  background: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 35px 18px;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  }

  .client-section .inner-client .client-content .slider-client .element img {
  display: block;
  width: 100%;
  }

  .client-section .inner-client .client-content .slider-client .element:hover {
  /* background-color: #4e4e4e5c !important; */
  opacity: .5;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-prev {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  display: inline-block;
  background-image: url(../images/arrow-left.png);
  background-repeat: no-repeat;
  background-position: 26px center;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  position: absolute;
  top: -231px;
  right: 0;
  font-size: 0;
  border: 0;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-prev:hover {
  background-color: #747474;
  background-position: -25px center;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-next {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  display: inline-block;
  background-image: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  background-position: 26px center;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  position: absolute;
  top: -158px;
  right: 0;
  font-size: 0;
  border: 0;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-next:hover:hover {
  background-color: #747474;
  background-position: -25px center;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-dots {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 31px;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #262626;
  margin: 0 4px;
  border-radius: 50%;
  padding: 0;
  }

  .client-section .inner-client .client-content .slider-client .slick-slider .slick-dots li.slick-active button {
  background-color: #747474;
  border: 1px solid #747474;
  }

  /**********end client**************/
  /**********begin contact**************/
  .contact {
  padding-top: 155px;
  }

  .contact .contact-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  }

  .contact .contact-outer .contact-left {
  width: 51%;
  background-color: #D6D6D6;
  padding: 100px 100px;
  background-image: url(../images/contact/bg-contact.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 1000px;
  }

  .contact .contact-outer .contact-left .top-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  }

  .contact .contact-outer .contact-left .top-content h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.27);
  width: 100%;
  padding-bottom: 50px;
  }

  .contact .contact-outer .contact-left .top-content h3 {
  font-weight: bold;
  font-size: 54px;
  line-height: 69px;
  text-align: left;
  color: #fcfbff;
  max-width: 445px;
  }

  .contact .contact-outer .contact-left .bttom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  }

  .contact .contact-outer .contact-left .bttom-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  }

  .contact .contact-outer .contact-left .bttom-content ul li {
  max-width: 219px;
  width: 100%;
  }

  .contact .contact-outer .contact-left .bttom-content ul li .icon {
  margin-bottom: 18px;
  }

  .contact .contact-outer .contact-left .bttom-content ul li .address h4 {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: left;
  color: rgba(0, 0, 0, 0.27);
  text-transform: uppercase;
  }

  .contact .contact-outer .contact-left .bttom-content ul li .address p {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin: 0;
  }

  .contact .contact-outer .contact-left .bttom-content ul li .address a {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #000;
  width: 100%;
  display: block;
  text-decoration: none;
  padding-bottom: 6px;
  }

  .contact .contact-outer .contact-right {
  width: 49%;
  padding: 0px 84px;
  padding-bottom: 0;
  padding-right: 125px;
  }

  .contact .contact-outer .contact-right h3 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 45px;
  line-height: 48px;
  text-align: left;
  color: #434343;
  margin-bottom: 43px;
  text-transform: uppercase;
  }

  .contact .contact-outer .contact-right .box-form {
  background: #f3f3f3;
  padding: 90px 87px;
  padding-bottom: 75px;
  position: relative;
  }

  .contact .contact-outer .contact-right .box-form .dots {
  position: absolute;
  bottom: 99%;
  width: 371px;
  height: 340.48px;
  /* background: transparent; */
  /* opacity: 0.04; */
  display: block;
  background-image: url(../images/contact/dots.png);
  z-index: 9999;
  right: 0;
  }

  .contact .contact-outer .contact-right .box-form .button-sub {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  }

  .contact .contact-outer .contact-right .box-form .button-sub input {
  width: 242.97px;
  height: 74px;
  background: linear-gradient(269deg, #262626 0%, #747474 100%);
  -webkit-filter: drop-shadow(0px 14px 29px rgba(64, 64, 64, 0.37));
          filter: drop-shadow(0px 14px 29px rgba(64, 64, 64, 0.37));
  border: 0;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  padding-right: 78px;
  }

  .contact .contact-outer .contact-right .box-form .button-sub svg {
  position: absolute;
  right: 32px;
  top: 19px;
  }

  .contact .contact-outer .contact-right .form-item {
  position: relative;
  margin-bottom: 43px;
  }

  .contact .contact-outer .contact-right .form-item input {
  display: block;
  width: 100%;
  height: 47px;
  background: transparent;
  border: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 0 15px;
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #2d2b2b;
  padding: 0;
  }

  .contact .contact-outer .contact-right .form-item textarea {
  display: block;
  width: 100%;
  height: 101px;
  background: transparent;
  border: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 0 15px;
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #2d2b2b;
  padding: 0;
  }

  .contact .contact-outer .contact-right .form-item textarea:focus {
  border-bottom-color: #F57E06;
  outline: none !important;
  }

  .contact .contact-outer .contact-right .form-item input:focus {
  border-bottom-color: #F57E06;
  outline: none !important;
  }

  .contact .contact-outer .contact-right .form-item label {
  position: absolute;
  cursor: text;
  z-index: 2;
  top: 0;
  left: 10px;
  font-size: 12px;
  font-weight: bold;
  /* background: #fff; */
  padding: 0 10px;
  color: #999;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-weight: normal;
  font-size: 19px;
  text-align: left;
  color: #9c9c9c;
  left: 0;
  padding: 0;
  outline: none !important;
  }

  .contact .contact-outer .contact-right .form-item input:focus + label,
  .contact .contact-outer .contact-right .form-item input:valid + label {
  top: -19px;
  }

  .contact .contact-outer .contact-right .form-item textarea:focus + label,
  .contact .contact-outer .contact-right .form-item textarea:valid + label {
  top: -19px;
  }

  /**********end contact**************/
  /***begin-footer***/
  footer {
  width: 100%;
  }
  footer p {
  color: #fff !important;
  }
  footer .social-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  }
  footer .social-block ul li {
  margin-right: 9px;
  }
  footer .social-block ul li a {
  color: #ffffff;
  }
  footer .social-block ul li a:hover {
  color: #B0A348;
  }

  .locz p img {
  width: 22px;
  }
  footer .locz p {
  font-size: 20px;
  }
  footer .locz p span {
  font-size: 16px;
  width: 100%;
  float: left;
  padding-left: 29px;
  margin: 0 0 20px;
  }
  footer .d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(218, 218, 218, 0.2);
  margin: 25px 0 0;
  }

  footer .d-flex p {
  font-size: 18px;
  color: #EBEBEB;
  margin: 0;
  text-align: left;
  }

  footer .d-flex a {
  color: #EBEBEB;
  text-decoration: none;
  }

  footer h6 {
  font-weight: 700;
  font-size: 22px;
  text-align: left;
  color: #ffffff;
  margin: 0 0 15px;
  }


  .video {
  position: relative;
  padding-bottom: 56.25%;
  }

  .video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  }
  .contact {
  width: 100%;
  background: url(../images/cbg.png)no-repeat center center;
  padding: 90px 0 95px;
  text-align: center;
  }
  .contact h3 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
  }
  .contact p {
      font-size: 20px;
      text-transform: lowercase;
  color: #ffffff;     margin-bottom: 25px;
  font-weight: 400;
  font-family: 'Century Gothic';
  }
  .contact form {
  width: 100%;
  background: #FFFFFF;
  padding: 30px 20px;
  box-shadow: 0px 24.5347px 61.3368px #191B22;
  border-radius: 5px;
  }
  .field-contact.form-item {
  width: 50%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px;
  }
  .field-contact.form-full {
  width: 100%;
  margin: 0 0 10px;
  padding: 0 15px;
  }
  .contact form input{
  width: 100%;
  height: 49px;
  background: #FFFFFF;
  border: 0.817824px solid #B1B1B1;
  padding: 10px 10px;
  font-family: 'Century Gothic';
  font-size: 14px;
  }
  .contact textarea{
  width: 100%;

  background: #FFFFFF;
  border: 0.817824px solid #B1B1B1;
  padding: 10px 10px;
  font-family: 'Century Gothic';
  font-size: 14px;
  }
  textarea {
  height: 114px;
  padding: 5px 10px;
  resize: none;
  }
  .contact form input[type="submit"]{
  width: 230px;
  background: #B0A348;
  border: none;
  margin: 0 auto;
  float: none;
  height: 60px;
  }
  .btom-blk {
  width: 100%;
  padding: 70px 0;
  }
  .art-single {
  width: 92%;
  position: relative;
  border-right: 1px solid #ffffff;
  }
  .art-single.last {
  border: none;
  }
  .art-single span {
  color: #B0A348;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  }
  .art-single h5 {
  color: #ffffff;     min-height: 94px;
      overflow: hidden;
  font-size: 30px;
  font-weight: 700;
  }
  .art-single p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Century Gothic';
  }
  .art-single a,.list-item a,.abt a {
  color: #B0A348;
  font-size: 20px;
  text-decoration: none;
  }
  .art-single a img,.btn img,.list-item a img,.abt a img {
  width: 22px;
  }
  .btn {
  text-decoration: none;
  min-width: 200px;
  height: 60px;
  background: transparent;
  border: 1px solid #B0A348;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0;
  font-size: 22px;
  line-height: 13px;
  text-align: center;
  width: 290px;
  color: #B0A348;
  text-transform: capitalize;
  margin: 20px auto 0;
  }
  .btn:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  }
  .btn:hover img {
  filter: brightness(0);
  }
  .btn img {
  margin-left: 10px;
  }
  .cap-blk {
  width: 100%;
  background: url(../images/bg1.png)no-repeat center center;
  background-size: cover;
  padding: 90px 0 95px;
  text-align: center;
  }
  .cap-blk.abt-blk {
  background: url(../images/abtbg.png)no-repeat center center;
  background-size: cover;
  }
  .cap-blk h2,.btom-blk h2 {
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  position: relative;
  padding: 0 0 25px;
  margin: 0 0 20px;
  font-weight: 700;
  }
  .cap-blk h2:before,.btom-blk h2:before {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  width: 115px;
  top: 100%;
  height: 5px;
  background: #B0A348;
  margin: 0 auto;
  }
  .btom-blk .list-item:before { 
  display: none;
  }
  .list-item {
  width: 100%;
  position: relative;
  }
  .btom-blk .list-item {
  background: #26292e;
  padding-bottom: 10px;
  height: 100%;
  }
  .btom-blk .list-item p {
  min-height: auto;     margin-bottom: 40px;
  }
  .btom-blk .list-item .imwrap {
  margin: 0 0 20px;

      height:380px;
  }
.wp-block-image img {
    float: left;
	margin-right: 10px;}
  img.alignnone.size-medium.wp-image-227.lazy.loaded {
      width: 500px;
  }
  .btom-blk.team .list-item .imwrap {
    height: 330px;
  }
  .btom-blk.team .list-item .imwrap img {
    object-fit: contain;
  }
  .list-item:before {
  position: absolute;
  left: 0;
  content: "";
  background: #B0A348;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 190px;
  transform: rotate(15deg);
  top: -15px;
  }
  .list-item h5 {
  color: #B0A348;
  font-size: 30px;
  padding: 0 20px;
      font-weight: 400;
  }
  .cap-blk .list-item h5 {
  color: #ffffff; 
  font-size: 28px;
  padding: 0;
      font-weight: 400;
  }
  .list-item p {
  color: #ffffff;
  font-size: 18px;
  padding: 0 20px;
  font-family: 'Century Gothic';
  }
  .cap-blk .list-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: pre-wrap;
  padding: 0;
  }
  .list-item .imwrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 160px;
  margin: 25px 0;
  }
  .list-item .imwrap img {
    width: 100%;
          height: 100%;
      object-fit:cover;
  position: relative;

  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  }
  .list-item .imwrap:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  }
  .cap-blk .button-custom {
  width: 250px;
  margin: 0 auto;
  float: none;
  text-transform: capitalize;

  }
  .btom-blk.abt h2:before {
  margin: 0;
  }
  .btom-blk.abt h2 {
  text-align: justify;
  }
  .btom-blk.abt .rigt img {
  width: 100%;
  }
  .btom-blk.abt span{
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 20px;
  display: block;
  }
  .btom-blk.abt span i {
  color: #B0A348;
  font-size: 16px;
  font-style: normal;
  margin-right: 5px;
  }
  .btom-blk.abt h5 {
  color: #ffffff; 
  font-size: 25px;
  padding-right: 25%;
  margin: 0 0 20px;
  }
  .btom-blk.abt p {
  color: #ffffff; 
  font-size: 18px;
  padding-right: 25%;
  }
  .btom-blk.abt {
  padding-top: 0;
  margin-top: -5px;
  }
  .btom-blk.abt .olay {
  position: relative;
  }
  .btom-blk.abt .olay:before {
  position: absolute;
  right: 100%;
  content: "";
  background: #1a1c1f;
  height: 70px;
  width: 2000px;
  bottom: 100%;
  margin: 0 0 -12px;
  }
  .btom-blk.abt .olay:after {
  position: absolute;
  left: 0;
  content: "";
  background: #1a1c1f;
  height: 70px;
  width: 100%;
  bottom: 100%;
  margin: 0 0 -12px;
  }
  .btom-blk.abt .col-md-6 { 
  padding: 0;
  color: #fff;
  }
  .scrol {
  position: absolute;
  bottom: 100px;
  right: 20px;
  z-index: 9;
  width: 50px;
  animation: ball-move 1s infinite ease-in-out alternate;
  }
  @keyframes ball-move {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(16px);
    opacity: 0;
  }
  }
  .scrol img,.abotblk img {
  width: 100%;
  }
  .abotblk {
  width: 100%;
  }
  .abt-blk p {
  color: #fff;
  text-align:justify;
  font-size: 1rem;
  }
  .abt-blk ul {
  width: 100%;
  display: flex;
  align-items: center;
  list-style-type: none;
  }
  .abt-blk ul li {
  width: 20%; 
  padding: 0 20px;
  }

  .modal-body ul li {
  color:#ffffff;
  }

  .abt-blk ul li img {
  width: 100%;
  display: block;
  }
  .slick-prev, .slick-next {
  width: 40px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 100px;
  display: block !important;
  min-width: 0;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  border-radius: 100%;
  outline: none;
  background: transparent;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  z-index: 9;
  }
  .slick-prev{
    background: #B0A348 url(../images/prev.svg) no-repeat center center;
  background-size: 12px;
  left: -20px;
  }
  .slick-next{
    background: #B0A348 url(../images/next.svg) no-repeat center center;
  background-size: 12px;
  right: -20px;
  }
  .btom-blk .slick-slide {
  padding: 0 12px;
  }
  .footer-container {
  width: 100%;
  background: url(../images/footerbg.png) no-repeat center center;
  background-size: cover;
  padding: 55px 0 0;
  }
  footer .logo {
  margin: 0 0 20px;
  }
  .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  }
  .breadcrumb-item + .breadcrumb-item:before {
  background: url(../images/arow.png) no-repeat center center;
  content: "";
  width: 7px;
  height: 11px;
  margin: 0 7px 0 2px;
  top: 12px;
  position: relative;
  }
  .breadcrumb-item.active,.breadcrumb-item a:hover {
  color: #B0A348 !important;
  font-family: 'Century Gothic';
  }
  .btom-blk.discovr .list-item {
  background: transparent;
  padding-bottom: 40px;
  }
  .our-team h5{
    text-transform:uppercase;     margin-top: 15px;

  }
  .res.btom-blk .list-item .imwrap {
      height:217px;
  }
  .discovr .list-item h5 {
  color: #ffffff;
  font-size: 25px;
  padding: 0;
  font-weight:600;
  margin-bottom: 10px;
  }
  .discovr .list-item h5 span {
  color: #B0A348; 
  display: inline-block;
  margin-right: 10px;
  }
  .btom-blk.discovr .list-item p {
  min-height: 0;
  padding: 0;
  margin-bottom: 15px;
  text-align: justify;
  }
  .discovr .list-item a {
  color: #ffffff;
  text-decoration: underline;
  }
  .discovr .list-item a:hover {
  color: #B0A348;
  }
  ul.steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 0;

  }
  ul.steps li {
  width: 231px;
  text-align: center;
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-family: 'Century Gothic';
  }
  ul.steps span {
      width: 110px;
      height: 110px;
  border-radius: 100%;
  background: #737779;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 45px;
  font-weight: 700;
  color: #ffffff;
  font-size:39px;
  position: relative;
  }
  ul.steps span:before {
      width: 169px;
  height: 205px;
  content: "";
  background: url(../images/rb1.png) no-repeat center center;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  left: -19px;
  }
  /*ul.steps li:nth-child(2) span {*/
  /*	background: #017AAF;*/
  /*}*/
  /*ul.steps li:nth-child(3) span {*/
  /*	background: #017AAF;*/
  /*}*/
  /*ul.steps li:nth-child(4) span {*/
  /*	background: #017AAF;*/
  /*}*/
  /*ul.steps li:nth-child(5) span {*/
  /*	background: #017AAF;*/
  /*}*/
  ul.steps li:nth-child(2) span:before {
  background: url(../images/rb2.png) no-repeat center center;
  background-size: 100%;
  }
  ul.steps li:nth-child(3) span:before {
  background: url(../images/rb3.png) no-repeat center center;
  background-size: 100%;
  }
  ul.steps li:nth-child(4) span:before {
  background: url(../images/rb4.png) no-repeat center center;
  background-size: 100%;
  }
  ul.steps li:nth-child(5) span:before {
  background: url(../images/rb5.png) no-repeat center center;
  background-size: 100%;
  left: -31px;
  }
  .service-blk {
  width: 100%;
  background: url(../images/servicebg.png) no-repeat center center;
  background-size: cover;
  padding: 75px 0;
  overflow: hidden;
  }
  .service-blk h2 {
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  }
  .info-box {
  width: 100%;
  background: url(../images/crbg.png) no-repeat center center;
  background-size: 100%;
  text-align: center;
  padding: 100px 20px 30px;
  margin: 90px 0 0;
  position: relative;
  border-radius: 5px;
  min-height: 335px;
  }
  .icon-box {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -80px;
  }
  .info-box h3 {
  line-height: 1;
  }
  .info-box:before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
  nav#mainMenu {
  z-index: 999;
  }
  .info-box a {
  color: #B0A348;
  }
  .discovr .text-center h3 {
  color: #ffffff;
  }
  .levl.btom-blk .list-item .imwrap {
  height: 243px;
  }
  .cours {
  background: url(../images/coursebg.png) no-repeat center center;
  background-size: cover;
  }
  .colst h3 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  margin: 0 0 45px;
  }
  ul.steps li div {
      font-size:18px;

  position: relative;
  padding-top: 45px;
  }
  ul.steps li:nth-child(2) div,ul.steps li:nth-child(4) div {
  padding-top: 55px;
  }
  ul.steps li div img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  }
  nav#mainMenu {
  z-index: 999;
  }
  .service-blk.btom-blk {
  background: url(../images/cformbg.png) no-repeat center center;
  background-size: cover;
  }
  .form-control {
  width: 100%;
  background: #ffffff;
  height: 50px;
  border: 1px solid #B1B1B1;
  font-size: 16px;
  border-radius: 0;
  }
  .form-control:focus {
  outline: none;
  box-shadow: none;
  }
  textarea.form-control {
  height: 115px;
  }
  form {
  width: 100%;
  background: #ffffff;
  padding: 45px 25px;
  border-radius: 5px;
  }
  form .button-custom {
  font-size: 22px;
  height: 60px;
  text-align: center;
  width: 254px;
    margin:0px auto !important;
  }
  .intro-item p {
  color: #ffffff;
  text-align: center;
  font-size: .8em;
  }
  .intro-item p a {
  color: #B0A348 !important;
  text-decoration: none;
  }
  .intro-item .button-custom {
  margin: 0 auto;
  float: none;
  }
  .service-blk.cicon {
  background: url(../images/icbg.png) no-repeat center center;
  background-size: cover;
  }
  .inco-box {
  width: 100%;
  text-align: center;
  }
  .inco-box h3 {
  color: #ffffff;
  font-size: 30px;
  }
  .inco-box p {
  color: #ffffff;
  font-size: .8em;
  margin-top: 10px;
  }
  .inco-box img {
  margin-bottom: 10px;
  }
  .list-item a.lnk {
  padding: 0 20px;
  }
  .col-md-6.text-left {
  text-align: left;
  padding-right: 5%;
  }
  .col-md-6.text-left h3 {
  color: #fff;
  }
  .file-placeholder {
  color: #6c757d;
  line-height: 50px;
  padding: 0 10px;
  cursor: pointer;
  width: 100%;
  background: #ffffff;
  height: 50px;
  border: 1px solid #B1B1B1;
  font-size: 16px;
  border-radius: 0;
  }

  .file-placeholder::before {
  content: '\f07b'; /* Font Awesome icon (optional) */
  font-family: 'Font Awesome 5 Free';
  margin-right: 5px;
  }


  .sub-para{
  padding: 0px !important;
  font-size: 16px !important;
  }
  .imwrap-team{
  height: auto !important;
  }
  .my-team-each h6{
  color: #B0A348;
  }
  .btom-blk .modal {
  z-index: 99999999;
  }
  .btom-blk .modal-content {
    background: #1a1c1f;
  }
  .btom-blk .modal-dialog {
  max-width: 520px; 
  }
  .btom-blk .modal .imwrap {
    margin-bottom: 10px;
  }
  .btom-blk .modal-title {
    color: #ffffff;
    line-height: 1;
    font-weight: 700;
  }
  .btom-blk .modal-body p {
    color: #ffffff;
    text-align: justify;
    letter-spacing: -0.2px;
    font-size: .8em;
  }
  .modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  }
  .res .list-item span {
    color: #B0A348;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
  }
  p.rmore {
  max-height: 120px;
  overflow: hidden;
  }
  .discovr .list-item a {
  position: absolute;
    bottom: 10px;     text-transform: capitalize;
  }
.list-item span {
    color: #B0A348;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.page-template-resources .discovr .list-item p, .category .discovr .list-item p {
    max-height: 220px;
	overflow: hidden;}

  @media only screen and (max-width: 1599px) {
  .hright .button-custom {font-size: 16px;height: 45px;min-width: 110px;}
  header .header-outer nav ul li a {font-size: 17px;padding: 0 19px;}
  .banner .slide .slide__content--headings .button-custom, .button-custom,.btn{font-size: 16px;height: 45px;}
  .banner .slide .slide__content--headings .title {font-size: 2.2rem;}
  .banner .slick-dots {padding: 0 9%;}
  .banner .slide .slide__content--headings p {font-size: 18px;}
  .btom-blk.abt p,.list-item p {font-size: 15px;}
  .cap-blk h2, .btom-blk h2 {font-size: 40px;padding: 0 0 15px;font-weight: 600;}
  .btom-blk.abt h5 {font-size: 22px;padding-right: 0%;         font-weight: 100;}
  .btom-blk.abt p {padding-right: 0%;}
  .art-single a, .list-item a, .abt a,footer h6 {font-size: 17px;}
  .list-item h5 {font-size: 26px;    margin-bottom: 15px;}
  .cap-blk .list-item h5 {font-size: 22px;}
  .art-single span,footer .locz p,.res .list-item span {font-size: 14px;}
  .art-single h5 {font-size: 18px;}
  .art-single p,footer .locz p span,footer p,footer .d-flex p{font-size: 14px;}
  .btom-blk .list-item p {min-height: auto;text-align: justify;} 
  .inco-box h3 {font-size: 25px;}

  }
  @media only screen and (max-width: 1400px) {
    .banner .slide .slide__content.slide__content__left {max-width: 1140px;padding: 0 40px;}
  ul.steps li {width: 190px;font-size: 17px;}
  ul.steps span {width: 140px;height: 140px;}
  ul.steps span:before {width: 190px;height: 169px;left: -15px;}
  ul.steps li:nth-child(5) span:before{left: -25px;}
  .info-box {padding: 100px 12px 15px;}
  .info-box h3 {font-size: 25px;}
  .info-box p,.discovr .list-item a {font-size: 15px;}
  .icon-box {width: 130px;height: 130px;top: -47px;}
  .discovr .list-item h5 {font-size: 25px;}
  .cours img,.colst img {width: 100%;}
  .service-blk h2 {font-size: 45px;}
  ul.steps li div {font-size: 12px;}
  }
  @media only screen and (max-width: 1239px) {
    .btom-blk .list-item p {min-height: auto;}
  }
  @media only screen and (max-width: 1199px) {
  header .header-outer nav ul li a {font-size: 15px;padding: 0 15px;}
  .icon-box {width: 100px;height: 100px;top: -3px;}
  .info-box p, .discovr .list-item a,.info-box a {font-size: 13px;}
  .info-box {margin: 50px 0 0;padding: 110px 10px 12px;}
  .info-box h3 {font-size: 22px;}
  .discovr .list-item h5 {font-size: 22px;}
    .banner .slide .slide__img {
    height: 400px;}
  }
  @media only screen and (max-width: 991px) {
  .container, .container-md, .container-sm {max-width: 100% !important;}
  header.fixed {padding: 10px;}
  .banner .slide .slide__content.slide__content__left {padding: 0 15px;}
  header .header-outer nav {padding-left: 20px;}
  header .header-outer nav ul li a {font-size: 15px;padding: 0 9px;}
  .btom-blk.abt .col-md-6{padding-left: 12px;padding-right: 12px;padding-top: 0 !important;}
  .btom-blk.abt h5,.btom-blk.abt p{padding: 0;}
  .slick-prev {left: 5px;}
  .slick-next {right: 5px;}
  .btom-blk.abt p, .list-item p {font-size: 13px;}
  .btom-blk .list-item p {min-height: auto;padding: 0 10px;}
  .btom-blk .list-item h5{padding: 0 10px;}
    .btom-blk .list-item .imwrap {
      height: 240px;
  }
        .discovr .list-item h5 {
          font-size: 18px;
          text-align: left;
      }
        .art-single h5 {
          font-size: 13px;
      }
    .banner .slide .slide__img {
    height: 400px;}
        .banner .slide .slide__content--headings .title {
          font-size: 2rem;
          padding-top: 45px;
      }
  }
  @media only screen and (max-width: 767px) {
  .banner .slide .slide__img {height: 290px;}
  .banner .slide .slide__content.slide__content__left {margin-top: 25px;}
  footer p, footer .d-flex p {font-size: 12px;}
  footer .d-flex {flex-direction: column;justify-content: center;padding: 10px 0;margin: 10px 0 0;}
  footer .d-flex p:first-child {order: 2;margin-top: 5px;}
  }
  .logo img {
  width: 116px;
  }
  .my-sublist-items li{
    color:#fff;
    font-size: 15px;
    font-family: 'Century Gothic';
  }

  .my-sublist-items{
    width: 100%;
    max-height: 94px;
    display: inline-block;
    overflow: hidden;     padding-left: 38px;

  }
  .main-link{
  display: none;
  }
  .toggle-link{
  cursor: pointer;
  }
  .abt-blk .btn{
    color:#aea356 !important;
  }
  .btom-blk .btn{
    color:#aea356 !important;
  }
  .abt-blk .btn img{
    display:none;
  }
  .cap-blk a.button-custom {
      display: inline-flex;
  }
  .btn {
    text-decoration: none !important;
    min-width: 200px !important;
  /*    height: 60px !important;*/
  
    border: 1px solid #B0A348 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0 !important;
    font-size: 1rem !important;
    line-height: 13px !important;
    text-align: center !important;
  /*    width: 290px;*/
    color: #fff !important;
    text-transform: capitalize !important;
    margin: 20px auto 0 !important;
  }
  .list-item a:hover{
  color: #fff;
  }
  .wpcf7-not-valid-tip {
    font-size: .6em !important;
  }
  .our-team h4{
  color: #fff;
  font-weight: 400;
  margin: 10px 0;
  }
  .our-team p{
  margin-bottom: 15px;
  text-align: justify;
  }
  .our-team ul li{
  color: #fff;
  font-weight: 300;
  font-size: .8em;
  }
  .list-item-w h5{
  line-height: 20px;
  }
  .list-item-w h5 a{
  text-decoration: none !important;
  }
  .list-item-w a,.imwraps a{
  position: relative !important;
  }
  .imwraps img{
  width: 100% !important;
  }
  .ma-careers-form form{
  background: none !important;
  margin-top: 25px;
  }
  .ma-careers-form .button-custom{
  background-color: #B0A348 !important;
    color: #fff;
    border: none;
    font-weight: 400;
    font-family: 'Century Gothic';
  }
  .rmore{
  overflow-y: scroll;
    max-height: 170px;
    margin-top: 10px;
    font-size: .8em;
  }
  .ftr-lgo-icon{
  max-width:250px;
  margin-top:20px;
  }
  .locz p{
  margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap:3px;
  }
  .client_heading {
    font-weight: 700 !important;
    color: white !important;
    background: #1a1c1f !important;
    text-align: center !important;
  }
  .list-item .imwrapz{
  margin: 0 0 20px;
    min-height: 250px;
  }
  @media screen and (max-width:800px)
  {
  header .header-outer nav ul {
    position: absolute;
    /* bottom: 0; */
    display: grid;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: #b2a235;
  }
  header .header-outer nav ul li a {

  width: 100%;
  display: block;
  text-align: left;
  }
  header .header-outer nav ul li a:before {
  border-right: 0;
  display: inline-block !important;
  border-bottom: 1px dotted #fff;
  width: 100%;
  }

  /********style-menu********/
  .menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
  }

  .menu-toggle span {
  display: block;
  height: 3px;
  background: #b0a348;
  border-radius: 2px;
  transition: all 0.3s ease;
  }

  /* Nav List */
  .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  }

  .menu ul li {
  position: relative;
  }

  .menu ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px 5px;
  display: inline-block;
  }

  /* Submenus */
  .menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 999;
  }

  .menu ul li:hover > ul {
  display: block;
  }

  .submenu-toggle {
  display: none;
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  }

  /* MOBILE STYLES */

  .menu-toggle {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
  }

  .menu.open ul {
    max-height: 1000px;
  }

  .menu ul ul {
    position: relative;
    box-shadow: none;
    padding-left: 1rem;
  }

  .menu ul li:hover > ul {
    display: none;
  }

  .menu ul li.open > ul {
    display: block;
    position: unset !important;
  }

  .submenu-toggle {
    display: inline-block;
  }

  .menu ul li {
    display: block;
    align-items: center;
    justify-content: space-between;

  }

  /* Hamburger Animation */
  .menu.open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
  }

  .menu.open .menu-toggle span:nth-child(2) {
  opacity: 0;
  }

  .menu.open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
  }
  button#hamburgerBtn {
  background-color: unset;
  position: absolute;
  right: 20px;
  top: 50px;
  }
  .menu ul li.has-submenu > a::after {
  content: '+';
  }

  .menu ul li.open > a::after {
  content: '−';
  }
  .menu ul li:has(> ul) > a::after {
  content: '+';
  font-weight: bold;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s;
  }

  .menu ul li.open:has(> ul) > a::after {
  content: '−';
  }
  /* Optional: Animate submenu */
  .menu ul ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  flex-direction: column;
  }

  .menu ul li.open > ul {
  max-height: 500px;
  }

  /* Prevent hover submenu on mobile */
  .menu ul li:hover > ul {
  display: none;
  }

  .menu ul li > ul {
  display: flex;
  }
  .menu ul li.open > ul {
  max-height: 500px;
  }

  .menu ul li.has-submenu > a::after {
  content: '+';
  font-weight: bold;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s;
  }

  .menu ul li.open > a::after {
  content: '−';
  }
  header .header-outer nav ul li.open ul {
  position: unset !important;
  opacity: 1 !important;
  visibility: unset !important;
  box-shadow: unset !important;
  padding-left: 27px;
  display: block !important; 
  }
  header .header-outer nav ul li.open ul li {
  width: 100%;
  }
  .header-outer nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  max-height: unset !important;
  box-shadow: unset;
  position: unset;
  }
  header .header-outer nav ul li ul
  {
  display: none !important;
  }
  header .header-outer nav ul li a:hover {
  color: #ffffff;
  }
  .banner .slide {
  height: 500px;
  }
  .banner .slide .slide__img {
  height: 100% !important;
  }
  .banner .slide .slide__content--headings .button-custom, .button-custom, .btn {
  font-size: 16px;
  height: 39px;
  min-width: 110px !important;
  font-size: 14px !important;
  }
  .banner .slide .slide__content--headings .title {
  font-size: 26px;
  }
  .banner .slide .slide__content--headings p {
  font-size: 15px;
  }
  .banner .slide .slide__content--headings p {
  font-size: 15px;
  }
  header .header-outer {
  padding-right: 65px;
  }
  .hright .button-custom {
  font-size: 13px !important;
  height: 34px;
  min-width: 84px !important;
  padding: 0 8px;
  }
  }
  @media screen and (min-width:800px)
  {
  button#hamburgerBtn {
    display: none;
  }
  }


  /**********ar***************/
  [dir="rtl"] .btom-blk.abt h5 {

      padding-left: 25%;
      padding-right: 0;
  }
  [dir="rtl"] .btom-blk.abt p {
      padding-left: 25%;
    padding-right:0;
  }
  [dir="rtl"] .art-single a img, [dir="rtl"] .btn img, [dir="rtl"]  [dir="rtl"] .abt a img {
      width: 22px;
      transform: rotate(180deg);
  }
  [dir="rtl"]  .btom-blk.abt .olay:before {
      left: 100%;
      content: "";
      width: 100%;
  }
  [dir="rtl"] .art-single {
      border-right: 0;
      border-left: 1px solid #fff;
  }
  [dir="rtl"] .btn img {
      margin-left: 0;
      margin-right: 10px;
  }
  [dir="rtl"] footer h6 {

      text-align: right;
  }
  [dir="rtl"] .banner .slide .slide__content--headings .title {

      text-align: right;
      color: #fff;
  }
  [dir="rtl"] .banner .slide .slide__content--headings .button-custom, .button-custom {
      margin:25px 0 0 auto !important;
      float: right;
  }
  [dir="rtl"] .btom-blk.abt .olay:before {
      position: absolute;
      right: unset;
    left: 100%;
  }
  [dir="rtl"] .banner .slide .slide__content--headings .title {
    text-align: right;
  }
  [dir="rtl"] .banner .slide .slide__content--headings .button-custom, .button-custom {
      text-align: right;
      float: right;
      margin-top: 17px;
  }
  [dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {

      transform: rotate(180deg);
  }
  [dir="rtl"] header .header-outer nav ul li a:before {
      content: "";
      position: absolute;
      left: unset;
      right: 0;
  }
  @media screen and (max-width:800px)
  {
    
      [dir="rtl"]  header .header-outer nav ul li a {

          text-align: right;
      }
          [dir="rtl"] .menu ul li.has-submenu > a::after {
        
      float: left;
    }
        [dir="rtl"]  header .header-outer {
          padding-right: 0;
          padding-left: 65px;
      }
      [dir="rtl"]  button#hamburgerBtn {
          top: 39px;
          left: 29px;
          right: unset;
      }

  }

  .our-clients-slider .slick-prev{
    left: -35px;
    border-radius:4px !important;
        background-size: 8px;
  }
  .our-clients-slider .slick-next{
    right: -35px;
    border-radius:4px !important;
        background-size: 8px;
  }
  .wp-block-list {
     color: #fff;
    font-family: 'Century Gothic';
    font-size: 16px;
  }
  .wp-block-heading{
    color: #fff;
    text-align: justify;
    font-size: 18px;
  }

.avr-anchor{
	    position: relative !important;
    text-decoration: none !important;
    font-size: unset !important;
}


[dir="rtl"] .discovr .list-item h5 span{
     margin-left: 10px !important;
	margin-right:0px !important;
}
[dir="rtl"] .discovr ul.steps span:before {
  transform: rotate(180deg);
	right: -20px;
    left: 0;
}
[dir="rtl"] .discovr .modal .modal-header .btn-close{
	    margin-left: 0px !important;
}
[dir="rtl"] .cap-blk  .list-item a img{
	  transform: rotate(180deg);
}
[dir="rtl"] ul.steps li:nth-child(5) span:before{
	right: -29px;
}