@charset "UTF-8";

/*-----------------------------------------------------------

-------------------------------------------------------------*/


:root, :root .v-light, :root .v-light-head {
  --bg-color: #fff;
  --assistant-color: #f1f1f1;
  --theme-color: #00B5FE;
  --font-color: #0009;
  --heading-color: #000;
  --border-color: #cccccc;
  --smooth-color: #141414;
  --reverse-color: #141414;
  --reverse-heading-color: #fff;
}

:root .v-dark, :root .v-dark-head {
  --bg-color: #000;
  --assistant-color: #080808;
  --theme-color: #00B5FE;
  --font-color: #bbb;
  --heading-color: #fff;
  --border-color: #ffffff14;
  --smooth-color: #f9f9f9;
  --reverse-color: #f9f9f9;
  --reverse-heading-color: #000;
}

@media only screen and (max-width: 991px) {
  .v-dark-head-mobile {
    --bg-color: #000;
    --assistant-color: #101010;
    --theme-color: #00B5FE;
    --font-color: #bbb;
    --heading-color: #fff;
    --border-color: rgba(255, 255, 255, 0.07);
    --smooth-color: #f9f9f9;
    --reverse-color: #f9f9f9;
    --reverse-heading-color: #000;
    color: var(--font-color);
  }
}
:root {
  --body-font: "Karla", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --font-code: Menlo, monaco, Consolas, Lucida Console, monospace;
  --font-pre: "Courier 10 Pitch", Courier, monospace;
  --mod-color: #fff;
  --font-size-base: 16px;
  --font-size-h1: 40px;
  --font-size-h2: 35px;
  --font-size-h3: 30px;
  --font-size-h4: 25px;
  --font-size-h5: 22px;
  --font-size-h6: 16px;
  --menu-size: 12px;
  --line-height-base: 1.4;
  --line-height-content: 1.6;
  --font-weight-heading: 700;
  --font-weight-body: 500;
  --margin-padding: 120px;
  --margin-padding-mobile: 80px;
  --box-padding: 80px;
  --box-padding-mobile: 50px;
  --smooth-width: 4px;
  --s-box-left-social: 150px;
  --s-box-left-menu: 100px;
  --s-box-left: calc(var(--s-box-left-social) + var(--s-box-left-menu));
  --s-box-right: 150px;
  --s-box-full: calc(var(--s-box-left-social) + var(--s-box-left-menu) + var(--s-box-right));
}

/* -------------------------------------------------------
                   Core
-------------------------------------------------------- */
#preloader{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:#fff;
  z-index:9999;
  display:flex;
  justify-content:center;
  align-items:center;
}

.spinner{
  width:60px;
  height:60px;
  border:4px solid #ddd;
  border-top:4px solid #000;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  100%{transform:rotate(360deg);}
}
html {
  font-size: var(--font-size-base);
}

body {
  background-color: var(--bg-color);
  color: var(--font-color);
  line-height: var(--line-height-base);
  font-family: var(--body-font);
  font-weight: var(--font-weight-body);
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-transition: 100ms;
  -o-transition: 100ms;
  transition: 100ms;
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  transition-property: background-color, color;
}

body, .main-root {
  background-color: var(--bg-color);
  color: var(--font-color);
}

.wrapper {
  position: relative;
  background-color: var(--bg-color);
}

.main-root > .side-bar-full {
  display: none;
  pointer-events: none;
}
body:not(.v-dark) .main-root > .side-bar-full {
  background-color: #FFFFFF30;
}
@media only screen and (min-width: 992px) {
  body .main-root > .side-bar-full {
    position: fixed;
    width: var(--s-box-full);
    height: 100vh;
    left: 0;
    top: 0;
    display: inherit;
    z-index: 10;
  }
  body .main-root > .side-bar-full > * {
    position: absolute;
    height: 100%;
  }
  body .main-root > .side-bar-full .side-box-left {
    width: var(--s-box-left);
    z-index: 1;
  }
  body .main-root > .side-bar-full .side-box-left .side-menu {
    width: var(--s-box-left-menu);
    margin-left: var(--s-box-left-social);
    text-align: center;
  }
  body .main-root > .side-bar-full .side-box-right {
    position: relative;
    width: var(--s-box-right);
    left: var(--s-box-left);
    z-index: 2;
  }
  body .main-root > .side-bar-full .page-active {
    padding-top: 22px;
    height: auto;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  body .main-root > .side-bar-full .page-active h2 {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    letter-spacing: 5px;
    font-size: var(--font-size-base);
  }
}

@media only screen and (min-width: 992px) {
  body .inner-content {
    width: calc(100% - var(--s-box-full));
    margin-left: auto;
  }
}

.text-stroke-box {
  display: none;
}
@media only screen and (min-width: 992px) {
  body .text-stroke-box {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    width: var(--s-box-right);
    left: calc(var(--s-box-right) * -1);
    white-space: nowrap;
    display: inherit;
  }
}
.text-stroke-box .text-stroke-inner {
  font-size: 100px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  pointer-events: none;
  opacity: 0.4;
  will-change: transform;
 color: rgb(0, 181, 254);
 font-weight: 600;
}
.text-stroke-box .text-stroke-inner.zeus-animate {
  -webkit-transform: translateY(-100%) rotate(180deg);
      -ms-transform: translateY(-100%) rotate(180deg);
          transform: translateY(-100%) rotate(180deg);
  -webkit-animation: marquee 100s linear infinite;
          animation: marquee 100s linear infinite;
}
@media only screen and (min-width: 992px) {
  body .side-box-right .text-stroke-box {
    left: 0;
  }
}

.full-bg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/page-next.svg);
  background-repeat: no-repeat;
  background-position: 150% 0;
}

.border-before {
  border-left: 2px solid var(--heading-color);
  padding-left: 20px;
}

@media only screen and (min-width: 768px) {
  .padding-block {
    padding-top: var(--box-padding);
    padding-bottom: var(--box-padding);
  }
}
@media only screen and (max-width: 767px) {
  .padding-block {
    padding-top: var(--box-padding-mobile);
    padding-bottom: var(--box-padding-mobile);
  }
}

@media only screen and (min-width: 992px) {
  .has-box-mod {
   /* padding-right: 25px;
    padding-left: 25px;*/
    display: inline-block;
    line-height: 1.1;
  }
}
.has-box-mod .title,
.has-box-mod .title-block,
.has-box-mod .heading-h2 {
  line-height: 1.1;
}
.has-box-mod.move-circle {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}
.has-box-mod.move-circle .icon-circle {
  top: auto;
  bottom: 0;
  height: 70%;
  mix-blend-mode: exclusion;
  /*background-color: var(--mod-color);*/
  z-index: 1;
  -webkit-transition: width 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: width 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: width 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.zeus-ajax-effect .has-box-mod.move-circle .icon-circle {
  width: 0;
}

.ah-words-wrapper b {
  font-weight: inherit;
}

.shap-linear {
  position: relative;
  background: -o-repeating-linear-gradient(45deg, var(--border-color), var(--border-color) 1px, var(--bg-color) 2px, var(--bg-color) 10px);
  background: repeating-linear-gradient(45deg, var(--border-color), var(--border-color) 1px, var(--bg-color) 2px, var(--bg-color) 10px);
  height: 40px;
}
@media only screen and (max-width: 991px) {
  .shap-linear {
    display: none;
  }
}

.circle-top {
  top: -10vw;
  right: 50px;
  width: 30vw;
  height: 30vw;
  z-index: -1;
  pointer-events: none;
}
.circle-top, .circle-top:after {
  position: absolute;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
.circle-top:after {
  content: "";
  top: 50%;
  left: 50%;
  width: 15vw;
  height: 15vw;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.inner-content:after, .inner-content:before {
  content: "";
  display: block;
  height: 0.1px;
}

@media only screen and (min-width: 992px) {
  body .full-width .zeus-container {
    padding-left: calc(var(--s-box-full) + 0px);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateY(-100%) rotate(180deg);
            transform: translateY(-100%) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(10%) rotate(180deg);
            transform: translateY(10%) rotate(180deg);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateY(-100%) rotate(180deg);
            transform: translateY(-100%) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(10%) rotate(180deg);
            transform: translateY(10%) rotate(180deg);
  }
}
.p-fixed.has-parallax-header {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.left-bar {
  width: var(--s-box-full);
  left: 0;
}
@media only screen and (max-width: 991px) {
  .left-bar {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .zeus-isotope.grid.d-grid.grid-lg-3 > *:nth-of-type(2) {
    margin-top: 50px;
  }
  .zeus-isotope.grid.d-grid.grid-lg-3 > *:nth-of-type(3) {
    margin-top: 110px;
  }
  .zeus-isotope.grid.d-grid.grid-lg-2 > *:nth-of-type(2) {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .zeus-isotope.grid.d-grid.grid-md-3 > *:nth-of-type(2) {
    margin-top: 50px;
  }
  .zeus-isotope.grid.d-grid.grid-md-3 > *:nth-of-type(3) {
    margin-top: 110px;
  }
  .zeus-isotope.grid.d-grid.grid-md-2 > *:nth-of-type(2) {
    margin-top: 80px;
  }
}

.zeus-paginate-right-page {
  position: fixed;
  right: 20px;
  mix-blend-mode: exclusion;
  z-index: 100;
}
.zeus-paginate-right-page,
.zeus-paginate-right-page .zeus-link-paginate:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.zeus-paginate-right-page .zeus-link-paginate {
  position: relative;
  cursor: pointer;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  letter-spacing: 2px;
  height: 20px;
  line-height: 20px;
  margin-top: 5px;
}
.zeus-paginate-right-page .zeus-link-paginate .whitespace {
  display: none;
}
.zeus-paginate-right-page .zeus-link-paginate .zeus-word-wrapper {
  width: 0;
  height: 0;
}
.zeus-paginate-right-page .zeus-link-paginate .zeus-word-wrapper:not(.whitespace):not(:last-of-type) {
  margin-right: 5px;
}
.zeus-paginate-right-page .zeus-link-paginate:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 50%;
}
.zeus-paginate-right-page .zeus-link-paginate .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.zeus-paginate-right-page .zeus-link-paginate .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.zeus-paginate-right-page .zeus-link-paginate:hover .zeus-word-wrapper {
  width: auto;
  height: auto;
}
.zeus-paginate-right-page .zeus-link-paginate:hover .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}

.zeus-stories.zeus-stories-model {
  position: fixed;
  width: calc(100% - var(--s-box-full));
  background-color: var(--assistant-color);
  border-top: 2px solid var(--theme-color);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 1s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.zeus-stories.zeus-stories-model,
.zeus-stories.zeus-stories-model .zeus-stories-gallery {
  height: 150px;
}
.zeus-stories.zeus-stories-model .zeus-stories-gallery {
  width: 100px;
}
.zeus-stories.zeus-stories-model .zeus-stories-gallery a:not(:first-of-type) {
  pointer-events: none;
  z-index: -1;
}
.zeus-stories.zeus-stories-model .zeus-stories-gallery a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
}
.zeus-stories.zeus-stories-model .zeus-stories-gallery a,
.zeus-stories.zeus-stories-model .zeus-stories-gallery a img {
  border-radius: 7px;
}
.zeus-stories.zeus-stories-model .zeus-stories-gallery:hover .heading-h2 .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .zeus-stories-gallery:hover .title-block .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .zeus-stories-gallery:hover .sm-title-block .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .zeus-stories-gallery.zeus-active .heading-h2 .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .zeus-stories-gallery.zeus-active .title-block .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .zeus-stories-gallery.zeus-active .sm-title-block .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.zeus-stories.zeus-stories-model .heading-h2, .zeus-stories.zeus-stories-model .title-block, .zeus-stories.zeus-stories-model .sm-title-block {
  position: absolute;
  right: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}
.zeus-stories.zeus-stories-model .heading-h2 .zeus-word-wrapper, .zeus-stories.zeus-stories-model .title-block .zeus-word-wrapper, .zeus-stories.zeus-stories-model .sm-title-block .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.zeus-stories.zeus-stories-model .heading-h2 .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .title-block .zeus-chars-wrapper, .zeus-stories.zeus-stories-model .sm-title-block .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.zeus-stories.zeus-stories-model .close-story {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: var(--bg-color);
  opacity: 0.1;
}

.zeus-stories.gallery-portfolio .zeus-stories-gallery a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.zeus-stories.gallery-portfolio .zeus-stories-gallery a:first-of-type {
  z-index: 1;
}
.zeus-stories.gallery-portfolio .zeus-stories-gallery:hover .sm-title-block .zeus-chars-wrapper, .zeus-stories.gallery-portfolio .zeus-stories-gallery:hover .title-block .zeus-chars-wrapper, .zeus-stories.gallery-portfolio .zeus-stories-gallery.zeus-active .sm-title-block .zeus-chars-wrapper, .zeus-stories.gallery-portfolio .zeus-stories-gallery.zeus-active .title-block .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.zeus-stories.gallery-portfolio .zeus-stories-gallery:hover .sm-title-block .icon-circle, .zeus-stories.gallery-portfolio .zeus-stories-gallery:hover .title-block .icon-circle, .zeus-stories.gallery-portfolio .zeus-stories-gallery.zeus-active .sm-title-block .icon-circle, .zeus-stories.gallery-portfolio .zeus-stories-gallery.zeus-active .title-block .icon-circle {
  width: 100%;
}
.zeus-stories.gallery-portfolio .sm-title-block, .zeus-stories.gallery-portfolio .title-block {
  position: absolute;
  bottom: 30px;
  left: 10px;
  z-index: 2;
}
.zeus-stories.gallery-portfolio .sm-title-block .zeus-word-wrapper, .zeus-stories.gallery-portfolio .title-block .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.zeus-stories.gallery-portfolio .sm-title-block .zeus-chars-wrapper, .zeus-stories.gallery-portfolio .title-block .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.zeus-stories.gallery-portfolio .sm-title-block .icon-circle, .zeus-stories.gallery-portfolio .title-block .icon-circle {
  width: 0;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

.stories-btn {
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 12;
  mix-blend-mode: exclusion;
  color: #fff;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transition: 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  -o-transition: 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  transition: 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .stories-btn {
    display: none;
  }
}
.stories-btn:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.zeus-show-stories .zeus-stories {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media only screen and (max-width: 991px) {
  .zeus-show-stories .zeus-stories {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .zeus-show-stories .zeus-stories {
    display: none;
  }
}
.zeus-show-stories .stories-btn {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  right: 35px;
}

.projects-list.work-hover .work-item .box-content {
  position: absolute;
  bottom: 15px;
  z-index: 1;
}
.projects-list.work-hover .work-item .box-content .sec-title .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.projects-list.work-hover .work-item .box-content .sec-title .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.projects-list.work-hover .work-item .box-content .sec-title .icon-circle {
  width: 0;
  -webkit-transition: width 0.5s;
  -o-transition: width 0.5s;
  transition: width 0.5s;
}
.projects-list.work-hover .work-item:hover .sec-title .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.projects-list.work-hover .work-item:hover .sec-title .icon-circle {
  width: 100%;
}

.day-night {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: calc(var(--s-box-left-social) / 2 );
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.admin-bar .day-night {
  top: 74px;
}
@media screen and (min-width: 783px) {
  .admin-bar .day-night {
    top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .day-night {
    top: 30px;
    left: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .day-night {
    top: 50px;
    left: 150px;
    display: none;
  }
}
.day-night .night,
.day-night .moon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: opacity 0.8s;
  border-radius: 100%;
  opacity: 0;
}
.day-night .night svg,
.day-night .moon svg {
  width: 100%;
  height: 100%;
}
.day-night .night {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #fff;
  opacity: 1;
}
.day-night .night svg {
  fill: #000;
  width: 100%;
  height: 100%;
}
.day-night .moon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #000;
  opacity: 0;
}
.day-night .moon svg {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  fill: #f0f0f0;
}
.v-light .day-night .night {
  opacity: 0;
}
.v-light .day-night .moon {
  opacity: 1;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-box input::-webkit-input-placeholder, .form-box textarea::-webkit-input-placeholder {
  color: var(--heading-color);
}

input::-moz-placeholder, textarea::-moz-placeholder, .form-control::-moz-placeholder, .form-box input::-moz-placeholder, .form-box textarea::-moz-placeholder {
  color: var(--heading-color);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-box input:-ms-input-placeholder, .form-box textarea:-ms-input-placeholder {
  color: var(--heading-color);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-box input::-ms-input-placeholder, .form-box textarea::-ms-input-placeholder {
  color: var(--heading-color);
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.form-box input::placeholder,
.form-box textarea::placeholder {
  color: var(--heading-color);
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

.link-custom,
input[type=submit] {
  position: relative;
  padding: 12px 30px;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 1px var(--border-color);
  z-index: 2;
  cursor: pointer;
}
.link-custom.border-radius,
input[type=submit].border-radius {
  border-radius: 30px;
}
.link-custom.border-radius::before,
input[type=submit].border-radius::before {
  display: none;
}
.link-custom:not(.background-reverse),
input[type=submit]:not(.background-reverse) {
  color: var(--heading-color);
}
/*.link-custom:before,
input[type=submit]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 6px;
  top: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px var(--border-color);
  z-index: -1;
}
.link-custom:hover::before,
input[type=submit]:hover::before {
  left: 0;
  top: 0;
}*/

.play-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin: auto;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .play-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}

.move-circle {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .move-circle {
    background-color: transparent;
  }
}
.move-circle .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
}
.move-circle.background-main .icon-circle {
  background-color: var(--bg-color);
}
.move-circle.background-section .icon-circle {
  background-color: var(--assistant-color);
}
.move-circle.background-theme .icon-circle {
  background-color: var(--theme-color);
}
.move-circle.border-circle {
  border: 1px solid var(--heading-color);
}

.btn-arrow {
  color: var(--heading-color);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: padding 450ms ease-in-out;
  -o-transition: padding 450ms ease-in-out;
  transition: padding 450ms ease-in-out;
}
.btn-arrow svg path {
  fill: var(--heading-color);
}
.btn-arrow:hover {
  padding-left: 10px;
  padding-right: 10px;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  outline: 0;
  outline-style: none;
}
a:hover, a:active {
  outline: 0;
  text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.font-heading {
  font-family: var(--heading-font);
}

.text-transform-upper {
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 10;
  pointer-events: none;
  -webkit-transition-property: background-color, padding-top, padding-bottom, -webkit-transform;
  transition-property: background-color, padding-top, padding-bottom, -webkit-transform;
  -o-transition-property: background-color, padding-top, padding-bottom, transform;
  transition-property: background-color, padding-top, padding-bottom, transform;
  transition-property: background-color, padding-top, padding-bottom, transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.site-header a {
  color: inherit;
}
.site-header .main-logo {
  color: var(--heading-color);
}
.site-header .main-logo .light-logo {
  display: inherit;
}
.site-header .main-logo .dark-logo {
  display: none;
}
body:not(.v-dark) .site-header .main-logo .light-logo {
  display: none;
}
body:not(.v-dark) .site-header .main-logo .dark-logo {
  display: inherit;
}
.admin-bar .site-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
.site-header .menu-cover-title {
  position: absolute;
  top: 50%;
  left: -12px;
  font-size: 20vw;
  font-weight: 600;
  line-height: 1.15;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.05;
}
@media only screen and (max-width: 991px) {
  .site-header .menu-cover-title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.site-header .inner-header .main-logo {
  width: 96px;
  pointer-events: all;
}
.site-header .inner-header .main-logo img {
  height: auto;
}
.site-header .main-navigation {
  pointer-events: all;
}
.site-header .menu-icon {
  position: relative;
  top: -5px;
  cursor: pointer;
  pointer-events: all;
}
.site-header .menu-icon .icon-m .menu-icon-line {
  background-color: var(--theme-color);
  width: 23px;
  height: 2px;
  -webkit-transition: -webkit-transform 0.2s ease-Out;
  transition: -webkit-transform 0.2s ease-Out;
  -o-transition: transform 0.2s ease-Out;
  transition: transform 0.2s ease-Out;
  transition: transform 0.2s ease-Out, -webkit-transform 0.2s ease-Out;
}
.site-header .menu-icon .icon-m .menu-icon-line.icon-top {
  width: 5px;
}
.site-header .menu-icon .icon-m .menu-icon-line.icon-center {
  width: 14px;
}
.site-header .menu-icon .icon-m .menu-icon-line.icon-bottom {
  margin-top: 4px;
}
.site-header .menu-icon .icon-m .icon-circle {
  position: absolute;
  top: -5px;
  left: -8px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: none;
}
.site-header .menu-icon .icon-m:hover .icon-circle {
  display: inherit;
}
.site-header .menu-icon .text-menu {
  top: -4px;
  width: 45px;
  color: var(--heading-color);
  opacity: 0.9;
  font-size: 13px;
  font-weight: 600;
}
.site-header .menu-icon .text-menu > div {
  left: 0;
  top: 0;
}
.site-header .menu-icon .text-menu .text-button .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.site-header .menu-icon .text-menu .text-button .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.site-header .menu-icon .text-menu .text-button .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.site-header .menu-icon .text-menu .text-open .zeus-word-wrapper,
.site-header .menu-icon .text-menu .text-close .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.site-header .menu-icon .text-menu .text-open .zeus-chars-wrapper,
.site-header .menu-icon .text-menu .text-close .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.site-header .menu-icon.nav-active .text-menu {
  width: 50px;
}
.site-header .menu-icon:hover .icon-m .icon-top,
.site-header .menu-icon:hover .icon-m .icon-center {
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
.site-header .menu-icon:hover .icon-m .icon-bottom {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.site-header .menu-icon:hover .text-menu .text-button .zeus-word-wrapper {
  overflow: hidden;
  will-change: transform;
}
.site-header .menu-icon:hover .text-menu .text-button .zeus-chars-wrapper {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
      -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
          transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
  -webkit-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
       -o-transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
          transition-delay: calc(30ms * var(--char-zeus-index) + 1ms);
}
.site-header .menu-icon:hover:not(.nav-active) .text-menu .text-open .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.site-header .menu-icon:hover.nav-active .text-menu .text-close .zeus-chars-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) rotate(0deg) scale(1);
      -ms-transform: translateY(0) rotate(0deg) scale(1);
          transform: translateY(0) rotate(0deg) scale(1);
}
.site-header .container-content {
  width: 30%;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .site-header .container-content {
    display: none;
  }
}
.site-header .container-content .nav-content:not(:first-of-type) {
  margin-top: 30px;
}
.site-header .container-content .nav-content p {
  color: var(--font-color);
}
.site-header .container-content .nav-content p:not(:last-of-type) {
  margin-bottom: 5px;
}
.site-header .container-content .nav-content p .link-hover {
  text-transform: uppercase;
}
.site-header .container-content .title-line,
.site-header .container-content p.title-line {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.site-header .container-content .nav-social ul li {
  font-size: 14px;
  margin-right: 15px;
  padding-right: 5px;
}
.site-header .container-content .nav-social ul li, .site-header .container-content .nav-social ul li a {
  position: relative;
  color: var(--heading-color);
  display: inline-block;
  letter-spacing: 2px;
  font-family: var(--heading-font);
}
.site-header ul.extend-container {
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .site-header ul.extend-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header .extend-container .main-navigation {
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--bg-color);
  z-index: -1;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: visible;
}
.site-header .extend-container .main-navigation:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0.05;
  background-size: cover;
  background-repeat: no-repeat;
}
.site-header .extend-container .main-navigation ul.extend-container li {
  color: var(--heading-color);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  line-height: 1;
  font-family: var(--heading-font);
}
.site-header .extend-container .main-navigation ul.extend-container li.zeus-active, .site-header .extend-container .main-navigation ul.extend-container li:hover {
  color: var(--theme-color);
}
.site-header .extend-container .main-navigation ul.extend-container li.zeus-active .zeus-meta-menu, .site-header .extend-container .main-navigation ul.extend-container li:hover .zeus-meta-menu {
  color: var(--assistant-color);
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu img {
  width: 32px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu .zeus-title-menu {
  font-size: 42px;
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu .zeus-title-menu {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu .zeus-title-menu {
    font-size: 24px;
  }
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu img,
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu .zeus-title-menu {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, -webkit-transform;
  -o-transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu:hover img {
  -webkit-transform: translateX(-22px);
      -ms-transform: translateX(-22px);
          transform: translateX(-22px);
  opacity: 0;
  visibility: hidden;
}
.site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu:hover .zeus-title-menu {
  -webkit-transform: translateX(-40px);
      -ms-transform: translateX(-40px);
          transform: translateX(-40px);
}
.site-header .extend-container .main-navigation ul.extend-container li li {
  overflow: inherit;
  margin-bottom: 0;
}
.site-header .extend-container .main-navigation ul.extend-container li a {
  overflow: hidden;
  line-height: 1.2;
}
.site-header .extend-container .main-navigation ul.extend-container li a:after,
.site-header .extend-container .main-navigation ul.extend-container li a .zeus-meta-menu {
  position: absolute;
  display: inherit;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.site-header .extend-container .main-navigation ul.extend-container li a .zeus-meta-menu {
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container li a .zeus-meta-menu {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .site-header .extend-container .main-navigation ul.extend-container li.zeus-drop-down > a:after {
    content: "";
    background-image: url("../images/right.svg");
    background-size: 17px;
    height: 17px;
    width: 17px;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translate(0, 8px);
        -ms-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
  .site-header .extend-container .main-navigation ul.extend-container li.zeus-drop-down > a:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(50%, 8px);
        -ms-transform: translate(50%, 8px);
            transform: translate(50%, 8px);
  }
}
.site-header .extend-container .main-navigation ul.extend-container > li {
  font-size: 36px;
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container > li {
    font-size: 28px;
  }
}
.site-header .extend-container .main-navigation ul.extend-container > li > a .zeus-title-menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}
.site-header .extend-container .main-navigation ul.extend-container > li > a .zeus-meta-menu {
  opacity: 0;
  visibility: hidden;
}
.site-header .extend-container .main-navigation ul.extend-container > li ul {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container > li ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header .extend-container .main-navigation ul.extend-container > li ul li {
  font-size: 32px;
  line-height: 1;
}
.site-header .extend-container .main-navigation ul.extend-container > li ul li a {
  line-height: 1.5;
}
.site-header .extend-container .main-navigation ul.extend-container > li ul li a .zeus-meta-menu {
  -webkit-transform: translateY(22px);
      -ms-transform: translateY(22px);
          transform: translateY(22px);
  margin-left: 10px;
}
@media only screen and (min-width: 992px) {
  .classic-menu:not(.zeus-line-style) .site-header .menu-icon {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .container-content {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header > .extend-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .classic-menu:not(.zeus-line-style) .site-header > .extend-container .menu-cover-title {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation {
    position: inherit;
    display: block;
    margin-left: auto;
    height: auto;
    width: auto;
    top: unset;
    left: unset;
    background-color: transparent;
    z-index: 1;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation:after {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container {
    display: block;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container li .zeus-back-menu {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container li a:after, .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container li a .zeus-meta-menu {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container li.zeus-drop-down > a:after {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li {
    font-size: 14px;
    display: inline-block;
    margin-left: 30px;
    margin-bottom: 0;
    font-weight: 700;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li:first-of-type {
    margin-left: 0;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li > a .zeus-title-menu {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li > a .zeus-meta-menu {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul {
    position: absolute;
    display: block !important;
    min-width: 195px;
    width: inherit;
    height: auto;
    left: unset;
    top: unset;
    margin-top: 10px;
    padding: 10px;
    margin-left: -10px;
    background-color: var(--assistant-color);
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    -o-transition-property: transform, opacity, visibility;
    transition-property: transform, opacity, visibility;
    transition-property: transform, opacity, visibility, -webkit-transform;
    -webkit-transition-duration: 0.8s;
         -o-transition-duration: 0.8s;
            transition-duration: 0.8s;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
            transform: translateY(35px);
    -webkit-transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
         -o-transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
            transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li {
    position: relative;
    width: 100%;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 500;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li:not(:last-child) {
    border-bottom: 0.5px dotted var(--assistant-color);
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li .zeus-meta-menu {
    display: none;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li:before {
    content: "";
    position: absolute;
    opacity: 0;
    left: -10px;
    top: 0;
    height: 100%;
    width: 1.5px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: var(--theme-color);
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li.zeus-active, .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li:hover {
    color: var(--heading-color);
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li.zeus-active:before, .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li ul li:hover:before {
    opacity: 1;
    visibility: visible;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li:hover ul, .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li:focus {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    visibility: visible;
  }
  .classic-menu:not(.zeus-line-style) .site-header .extend-container .main-navigation ul.extend-container > li:last-child ul {
    right: -32px;
  }
}

@media only screen and (max-width: 991px) {
  body.nav-bg .site-header {
    background-color: var(--bg-color);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  body.nav-bg.hide-nav .site-header {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@media only screen and (max-width: 991px) {
  body:not(.v-dark) .site-header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.45);
  }
}
@media only screen and (min-width: 992px) {
  body .site-header {
    padding-left: 0;
    padding-right: 0;
    z-index: 12;
  }
  body .site-header .inner-header {
    width: var(--s-box-left-social);
    text-align: center;
  }
  body .site-header .inner-header .main-logo {
    max-width: calc(var(--s-box-left-social) - 20px);
    margin: auto;
  }
  body .site-header .menu-icon {
    position: fixed;
    width: var(--s-box-left-menu);
    left: auto;
	right: 130px;
    padding: 0;
    top: 5%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .site-header .menu-icon .text-menu {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  body .site-header .extend-container .main-navigation {
    padding-left: var(--s-box-left);
    padding-right: 50px;
  }
}

@media only screen and (min-width: 992px) {
  body .site-header .menu-cover-title {
    padding-left: var(--s-box-left);
    margin-left: 50px;
  }
}

@media only screen and (min-width: 992px) {
  body .site-header .extend-container .main-navigation ul.extend-container > li ul {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 992px) {
  body .site-header ul.extend-container {
    padding-left: 50px;
    border-left: 1px solid var(--border-color);
  }
}

.social-network {
  display: none;
}
@media only screen and (min-width: 992px) {
  body .social-network {
    position: fixed;
    z-index: 12;
    bottom: 50px;
    width: var(--s-box-left-social);
    text-align: center;
    display: inherit;
  }
}

.socials li:not(:last-of-type) {
  margin-bottom: 30px;
}
.socials li a {
  position: relative;
  color: var(--heading-color);
}
.socials li a:after, .socials li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}
.socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--heading-color);
  -webkit-transform: translate(-50%, -50%) scale(0.2);
      -ms-transform: translate(-50%, -50%) scale(0.2);
          transform: translate(-50%, -50%) scale(0.2);
}
.socials li a span {
  color: var(--heading-color);
  font-size: 13px;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  cursor: pointer;
}
.socials li a i {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.socials li a:hover i {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}
.socials li a:hover span {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 12, -8);
      -ms-transform: matrix(1, 0, 0, 1, 12, -8);
          transform: matrix(1, 0, 0, 1, 12, -8);
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}
.socials li a:hover:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* Social menu */
.box-social li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}
.box-social li a {
  color: var(--heading-color);
  width: 100%;
  background: #3a3939;
}

/** === Footer menu === */
.footer-navigation {
  display: inline;
}
.footer-navigation > div {
  display: inline;
}
.footer-navigation .footer-menu {
  display: inline;
  padding-left: 0;
}
.footer-navigation .footer-menu li {
  display: inline;
  margin-right: 1rem;
}

/*--------------------------------------------------------------
## Next / Previous
--------------------------------------------------------------*/
/* Next/Previous Page */
.pagination-post {
  margin-top: 80px;
}
.pagination-post div {
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.pagination-post div a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination-post div a::before, .pagination-post div a:after {
  display: none;
}
.pagination-post div a:hover {
  color: var(--theme-color);
}
.pagination-post .icon {
  width: 70px;
}

.next-project .bg-container {
  -webkit-clip-path: circle(60% at 70% 50%);
          clip-path: circle(60% at 70% 50%);
}
.next-project .scroll-down {
  padding-top: 15px;
  -webkit-animation: flickerAnimation 1.5s infinite;
          animation: flickerAnimation 1.5s infinite;
}
.next-project .scroll-down .text-scroll {
  font-weight: bold;
  color: var(--heading-color);
}
.next-project .w-100.pt-30.d-flex.justify-content-between {
  position: absolute;
  top: 0;
  left: 0;
}
.next-project .zeus-container {
  position: relative;
}

.zeus-paginations {
  position: relative;
}
.zeus-paginations .page-numbers {
  position: relative;
  font-size: 20px;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  -webkit-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -o-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
}
.zeus-paginations .page-numbers.current {
  color: var(--heading-color);
  background-color: var(--theme-color);
}
.zeus-paginations .page-numbers:hover {
  color: var(--heading-color);
  background-color: var(--theme-color);
}
.zeus-paginations .next {
  width: auto;
}
.zeus-paginations .next .button-m {
  text-align: center;
  width: 90px;
  height: 50px;
  margin-left: 10px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.zeus-paginations .next .button-m:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--assistant-color);
  -webkit-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -o-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.zeus-paginations .next .button-m svg {
  position: absolute;
  top: 0;
  left: -10%;
  fill: var(--heading-color);
  z-index: 1;
  width: 30px;
  height: 100%;
  opacity: 1;
  -webkit-transform: translateX(20%);
      -ms-transform: translateX(20%);
          transform: translateX(20%);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  vertical-align: middle;
}
.zeus-paginations .next .button-m span {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading-color);
  -webkit-transform: translateX(20%);
      -ms-transform: translateX(20%);
          transform: translateX(20%);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.zeus-paginations .next .button-m:hover:before {
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
.zeus-paginations .next .button-m:hover svg {
  opacity: 0;
  -webkit-transform: translateX(20%) !important;
      -ms-transform: translateX(20%) !important;
          transform: translateX(20%) !important;
}
.zeus-paginations .next .button-m:hover span {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.zeus-paginations .next:hover {
  background-color: transparent;
}

@media only screen and (max-width: 575px) {
  .testimonials .control-nav {
    position: relative;
    margin-top: 30px;
  }
}
.testimonials .next-container,
.testimonials .prev-container {
  position: absolute;
  bottom: 0;
  display: inline-block;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@media only screen and (max-width: 575px) {
  .testimonials .next-container,
.testimonials .prev-container {
    position: relative;
  }
}
.testimonials .next-container svg,
.testimonials .prev-container svg {
  height: 40px;
  width: 40px;
}
.testimonials .next-container svg .circle,
.testimonials .prev-container svg .circle {
  stroke-dashoffset: 113.113px;
  stroke-dasharray: 113.113px;
  stroke-width: 0;
  opacity: 0;
  fill: #fff;
}
.testimonials .next-container svg .path,
.testimonials .prev-container svg .path {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.8px;
}
.testimonials .next-container.next-container,
.testimonials .prev-container.next-container {
  right: 0;
}
.testimonials .next-container.next-container svg,
.testimonials .prev-container.next-container svg {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.testimonials .next-container.prev-container,
.testimonials .prev-container.prev-container {
  right: 60px;
}
@media only screen and (max-width: 575px) {
  .testimonials .next-container.prev-container,
.testimonials .prev-container.prev-container {
    left: 0;
    right: auto;
  }
}
.testimonials .next-container.prev-container svg,
.testimonials .prev-container.prev-container svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media only screen and (min-width: 992px) {
  .about-me .box-img {
    margin-top: calc((var(--margin-padding) + var(--box-padding)) * -1);
  }
}
@media only screen and (max-width: 991px) {
  .about-me .background-section .box-info {
    padding-bottom: var(--margin-padding-mobile);
  }
}
@media only screen and (max-width: 767px) {
  .about-me .background-section .box-info {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .about-me .custom-background-section {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .about-me .box-img {
    min-height: 70vh;
  }
  .about-me .box-img [data-zeus-grid=moveUp] {
    height: 100%;
  }
  .about-me .box-img .info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 575px) {
  .about-me .box-img {
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .about-me .box-img .box-infos {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about-me .box-img .box-infos {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .about-me {
    padding-top: 0;
  }
  .about-me .padding-block {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .box-experience {
    padding-left: 50px;
    border-left: 1px solid var(--border-color);
  }
}
@media only screen and (max-width: 991px) {
  .box-experience {
    margin-top: 50px;
  }
}
.box-experience .numb-ex {
  font-size: 160px;
  line-height: 110px;
  color: transparent;
   font-family: "Orbitron", sans-serif;
   background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: flex;
  align-items: baseline;
  justify-content: center;
}
.box-experience .numb-ex span {
	 font-size: 80px;
   background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
	
}
.box-experience h3 {color: #fff;font-size: 24px;text-align:center;letter-spacing: 0; font-weight: 700;}
.box-experience h3 span {   background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.lest-icon li {
  position: relative;
  padding-left: 30px;
}
.lest-icon li:not(:last-of-type) {
  margin-bottom: 6px;
}
.lest-icon li:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: var(--theme-color);
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}

.style-box {
  position: relative;
}
@media only screen and (min-width: 1400px) {
  .style-box {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 1399px) {
  .style-box {
    padding: 40px 25px;
  }
}
@media only screen and (max-width: 575px) {
  .style-box {
    padding: 60px 15px;
  }
}
.style-box:before, .style-box:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}
.style-box:before {
  top: 4px;
  left: 4px;
  border-right: 50px solid transparent;
  border-top: 50px solid var(--assistant-color);
}
.style-box:after {
  border-left: 50px solid transparent;
  border-bottom: 50px solid var(--assistant-color);
  bottom: 4px;
  right: 4px;
}
.style-box.background-section:before, .background-section .style-box:before {
  border-top: 50px solid var(--bg-color);
}
.style-box.background-section:after, .background-section .style-box:after {
  border-bottom: 50px solid var(--bg-color);
}

.services {
  counter-reset: workcounter;
  padding-bottom: 0;
  margin-bottom: 0;
}
.services .service-item::before {
  counter-increment: workcounter;
  content: counters(workcounter, ".", decimal-leading-zero);
  position: absolute;
  right: 45px;
  top: 50px;
  font-size: 50px;
  line-height: 1;
  font-family: var(--heading-font);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-color);
  opacity: 0.2;
  z-index: 2;
}
.services .service-item .service-item-inner .icon svg {
  width: 60px;
  fill: var(--theme-color);
}
.services .service-item .service-item-inner .title-block, .services .service-item .service-item-inner .title-block + .description {
  padding-top: 15px;
  border-top: 2.2px solid var(--border-color);
}
.services .title-block.border-section-bottom {
  padding-top: 0;
  border-top: 0;
  padding-bottom: 20px;
}
.services ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.services ul li i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--heading-color);
}

.experience-item:not(:last-of-type) {
  border-bottom: 2px solid var(--bg-color);
}
@media only screen and (max-width: 575px) {
  .experience-item {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .experience-item.d-grid {
    grid-row-gap: 30px;
  }
}
.experience-item img {
  height: 30px;
}

.box-skills-inner {
  grid-column-gap: 30px;
}

.skills-item {
  position: relative;
  width: 100%;
}
.skills-item .bar {
  position: relative;
  width: 100%;
  height: 15px;
  border: 2px solid var(--assistant-color);
}
.background-section .skills-item .bar {
  border-color: var(--bg-color);
}
.skills-item .bar .fill {
  position: absolute;
  width: 0%;
  top: 2px;
  height: calc(100% - 4px);
  background-color: var(--reverse-color);
}
.skills-item .bar .fill .number {
  position: absolute;
  top: -30px;
  right: 0;
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--heading-color);
}
.team {margin-top: 60px;}
.testimonials .testimonial-inner {
  position: relative;
}
.testimonials .testimonial-inner .testimonial-author {
  margin-top: 25px;
  width: calc(100% - 100px);
}
.testimonials .testimonial-inner .testimonial-author .author, .testimonials .testimonial-inner .testimonial-author .author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonials .testimonial-inner .testimonial-author .author-text {
  margin-left: 25px;
}
.testimonials .testimonial-inner .testimonial-author .author-text h5 {
  color: var(--font-color);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-top: 10px;
}
.testimonials .testimonial-inner .testimonial-author .author-text h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
}
.testimonials:not(.testimonials-two) .testimonial-inner {
  padding-left: 150px;
}
.testimonials:not(.testimonials-two) .testimonial-inner:before {
  content: "”";
  left: 0;
  top: -45px;
  position: absolute;
  font-size: 150px;
  line-height: 0.5;
  color: var(--border-color);
  font-weight: bold;
  font-family: var(--heading-font);
  opacity: 0.5;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonials:not(.testimonials-two) .testimonial-inner .fas.fa-quote-left {
  display: none;
}
.testimonials.testimonials-two .testimonial-inner .testimonial-item i {
  color: var(--heading-color);
  font-size: 40px;
  margin-bottom: 20px;
}

.agencies {
  counter-reset: compteListe;
}

.agencies-item {
  padding-left: 0px;border-bottom:1px solid #403E3E;
}
.agencies-item:first-child {}
.agencies-item .left-box{width: 350px;}
.agencies-item .left-box h4 {display: flex;
  align-items: center;}
.agencies-item .left-box h4 span{font-size: 46px;
  color: #00B5FE;
  margin-right: 20px;
  font-weight: 500;
}
.agencies-item .right-box {display: flex;
  justify-content: space-between;}
  
.agencies-item:last-of-type {

}
.agencies-item:first-of-type {
  padding-top: 0;
}
.agencies-item .viewBtn a {background: #fff;
  color: #000;
  margin-bottom: 30px;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 1px #fff;
  z-index: 2;
  cursor: pointer;
  min-width: 146px;
  text-align:center;
  }
.agencies-item .viewBtn a:hover {background: #000;
  color: #fff;
}
  
@media only screen and (min-width: 992px) {
  .agencies-item .agencies-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*.blog-item .blog-item-inner::before {
  counter-increment: compteListe 1;
  color: var(--heading-color);
  content: "/ " counter(compteListe);
  position: absolute;
  left: -60px;
  top: 5px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: bold;
}*/
@media only screen and (min-width: 992px) {
  .agencies-item .left-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}
@media only screen and (max-width: 991px) {
  .agencies-item .left-box {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .agencies-item .right-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
    padding-left: 30px;
  }
}

.Awards .column-Award {
  width: calc(33.3333% - 30px);
  margin: 0 15px;
}
@media only screen and (max-width: 767px) {
  .Awards .column-Award:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .Awards .column-Award {
    width: 100%;
  }
}
.Awards .column-Award .Award-item {
  min-height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.Awards .column-Award .Award-item:nth-of-type(2) {
  margin-top: 30px;
}
.Awards .column-Award .Award-item .img {
  margin-bottom: 20px;
}
.Awards .column-Award .Award-item svg path {
  fill: var(--theme-color);
}
.Awards .column-Award .Award-item ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.team .team-item .team-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team .team-item .team-item-inner .box-text .name {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
}
.team .team-item .team-item-inner .box-text .position {
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .team .team-item .team-item-inner .box-social {
    margin-left: auto;
  }
}
.team .team-item .team-item-inner .box-social li {
  color: var(--heading-color);
  display: inline-block;
  font-size: 12px;
  border: 1px solid var(--border-color);
}
.team .team-item .team-item-inner .box-img {
  margin: 20px 0;
  height: 350px;
  overflow: hidden;
}
.team .team-item .team-item-inner .box-img img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.13, 0.28, 0, 0.91);
  transition: -webkit-transform 1s cubic-bezier(0.13, 0.28, 0, 0.91);
  -o-transition: transform 1s cubic-bezier(0.13, 0.28, 0, 0.91);
  transition: transform 1s cubic-bezier(0.13, 0.28, 0, 0.91);
  transition: transform 1s cubic-bezier(0.13, 0.28, 0, 0.91), -webkit-transform 1s cubic-bezier(0.13, 0.28, 0, 0.91);
}
@media only screen and (min-width: 992px) {
  .team .team-item:nth-child(odd) .team-item-inner .box-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .team .team-item:nth-child(odd) .team-item-inner .box-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .team .team-item:nth-child(odd) .team-item-inner .box-social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.team .team-item:hover .team-item-inner .box-img img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}

.brand-client .wrapper-client .logo-box {
  overflow: hidden;
}
.brand-client .wrapper-client .logo-box .logo-box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 200px;
}
.brand-client .wrapper-client .logo-box .logo-box-inner img {
  max-width: 180px;
}

.intro-project .intro-text {
  padding-right: 40px;
}
@media only screen and (max-width: 991px) {
  .intro-project .project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .intro-project .project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.intro-project .project-info li {
  margin-bottom: 20px;
}
.intro-project .project-info li:last-of-type {
  margin-bottom: 0;
}
.intro-project .project-info li h5 {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
}

.box-seat {
  position: relative;
}
.box-seat [data-overlay]:before {
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .box-seat .pro-text {
    position: absolute;
    right: 50px;
    bottom: 50px;
  }
  .box-seat .pro-text:not(.container) {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) {
  .box-seat.box-set-move .pro-text {
    opacity: 0.5;
    -webkit-transform: translateY(150px);
        -ms-transform: translateY(150px);
            transform: translateY(150px);
  }
}

@media only screen and (max-width: 991px) {
  .box-seat .box-padding, .box-set-bottom .box-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .box-set-bottom .inner-img {
    height: 80vh;
  }
}
.box-set-bottom .pro-text {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .box-set-bottom .pro-text {
    margin-top: -50px;
    width: 90%;
    left: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .pb-sm-section .half-bottom {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .slider-about .heading-h2 {
    font-size: 2vw;
  }
}

@-webkit-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
.swiper-pagination-bullet {
  background-color: transparent;
  opacity: 0.7;
}
.swiper-pagination-bullet--svg-animation {
  width: 26px;
  height: 26px;
  margin: 0 6px !important;
  display: inline-block;
}
.swiper-pagination-bullet--svg-animation svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: var(--theme-color);
  fill: transparent;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.swiper-pagination-bullet-active .svg__circle {
  stroke: var(--theme-color);
  stroke-dasharray: 75;
  stroke-dashoffset: 0;
  -webkit-animation: progress 7s ease-in-out 1 forwards;
  animation: progress 7s ease-in-out 1 forwards;
}
.swiper-pagination-bullet-active .svg__circle-inner {
  fill: var(--theme-color);
}

#swiper {
  width: 500px;
  height: 300px;
}
#swiper .swiper-container {
  padding-bottom: 3rem;
}
#swiper .swiper-slide {
  background-color: #eaeaea;
}
#swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.ul-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.item-services-header .icon {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 90px;
          flex: 1 0 90px;
  border: 2px solid var(--border-color);
  margin-right: 20px;
}

.box-set-video [data-zeus-grid=moveUp] {
  height: 100%;
}

@media only screen and (min-width: 992px) {
  .box-video {
    margin-left: -110px;
  }
}
@media only screen and (max-width: 767px) {
  .box-video a {
    margin-right: 15px;
  }
}
.box-video .play-btn::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 120px;
  height: 120px;
  background-color: var(--theme-color);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .box-video .play-btn::before {
    display: none;
  }
}
.box-video .play-btn i {
  font-size: 20px;
}

.box-view-item {
  border-radius: 3px;
}
.box-view-item .box-img {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.box-view-item .box-title .title-block {
  z-index: 2;
}
.box-view-item .content a {
  font-size: 14px;
  color: var(--heading-color);
  border-radius: 30px;
  padding: 8px 20px;
  letter-spacing: 2px;
}
.box-view-item .content .content-btn span {
  font-size: 14px;
  color: var(--heading-color);
  letter-spacing: 2px;
}

.features .feature-item {
  display: inline-block;
  width: 24%;
  border-radius: 3px;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .features .feature-item {
    width: 32%;
  }
  .features .feature-item:nth-of-type(n + 4) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .features .feature-item {
    width: 49%;
  }
  .features .feature-item:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
.features .feature-item .box-icon {
  margin: auto;
}
.features .feature-item .box-icon svg {
  width: 40px;
  fill: var(--theme-color);
}
.features .feature-item h5 {
  color: var(--font-color);
  font-weight: 400;
}

.end-features .features-box .feature-item {
  width: calc(50% - 2px);
  display: inline-block;
  margin: 0 0.5px;
}
.end-features .features-box .feature-item:first-of-type {
  border-radius: 3px 0 0 3px;
}
.end-features .features-box .feature-item:last-of-type {
  border-radius: 0 3px 3px 0;
}
.end-features .features-box .feature-item .icon i {
  font-size: 30px;
}

.box-view-item .box-img {
  overflow: hidden;
  border-radius: 3px;
}
.box-view-item .box-img a img {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  width: 100%;
}
.box-view-item .box-title .background-theme {
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  color: #fff;
}

.view-pages .box-view-item .box-img {
  position: relative;
  min-height: auto;
  height: auto !important;
}
.view-pages .box-view-item .box-img a {
  position: relative;
  width: 100%;
  height: 100%;
}
.view-pages .box-view-item img {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 991px) {
  .box-descr-view .box-bg {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .box-descr-view .box-right {
    padding-left: 0;
    padding-right: 0;
    margin-top: 50px;
  }
}

.section-image .swiper-container:not(:last-of-type) {
  margin-bottom: 30px;
}
.section-image .swiper-slide {
  width: calc(100% / 3);
}
.section-image .swiper-slide:not(:last-of-type) {
  padding-right: 30px;
}
.section-image .swiper-slide .image-item {
  padding: 2px;
}
.section-image .swiper-slide img {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.twentytwenty-container .twentytwenty-overlay {
  display: none;
}

.view-p .scrollbar-track {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 992px) {
  .wrapper > *:first-child.zeus-under-header {
    position: relative;
    margin-top: -80px;
    z-index: 2;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .wrapper > *:first-child.zeus-under-header.zeus-under-50 {
    margin-top: -50px;
  }
}
@media only screen and (min-width: 992px) {
  .wrapper > *:first-child.zeus-under-header .section-title {
    display: none;
  }
}

.hero-under-header img {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}

.admin-bar.zeus-effect-scroll:not(.zeus-mobile) #zeus-scrollbar, .sidebar-single, .zeus-work-scrollbar {
  height: calc(100vh - 46px);
}
@media screen and (min-width: 783px) {
  .admin-bar.zeus-effect-scroll:not(.zeus-mobile) #zeus-scrollbar, .sidebar-single, .zeus-work-scrollbar {
    height: calc(100vh - 32px);
  }
}

.locked-scroll #zeus-scrollbar {
  background-color: var(--bg-color);
}

@media only screen and (min-width: 992px) {
  body .scrollbar-track {
    left: calc(var(--s-box-left) - (var(--smooth-width) / 2));
    right: auto;
  }
}

@media only screen and (min-width: 992px) {
  body.zeus-effect-scroll:not(.zeus-mobile) {
    overflow: hidden;
  }
  body.zeus-effect-scroll:not(.zeus-mobile) #zeus-scrollbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  body.zeus-effect-scroll:not(.zeus-mobile) .scrollbar-track {
    background: none;
    width: 4px;
    mix-blend-mode: exclusion;
    z-index: 12;
  }
  body.zeus-effect-scroll:not(.zeus-mobile) .scrollbar-track .scrollbar-thumb {
    background: #fff;
    width: var(--smooth-width);
  }
}
body.zeus-effect-scroll:not(.zeus-mobile).zeus-scroll-active {
  overflow: hidden;
}
body.zeus-effect-scroll:not(.zeus-mobile).zeus-scroll-active #zeus-scrollbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
body.zeus-effect-scroll:not(.zeus-mobile).zeus-scroll-active .scrollbar-track {
  background: none;
  width: 4px;
  mix-blend-mode: exclusion;
  z-index: 12;
}
body.zeus-effect-scroll:not(.zeus-mobile).zeus-scroll-active .scrollbar-track .scrollbar-thumb {
  background: #fff;
  width: var(--smooth-width);
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */
@media only screen and (max-width: 991px) {
  .header-personal .w-50, .header-project .w-50 {
    width: 100%;
  }
}

.project-number {
  top: 30px;
  padding-top: 40px;
}
@media only screen and (min-width: 992px) {
  body .project-number {
    padding-top: 0;
  }
}
.project-number h6 {
  margin-right: 15px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.project-number span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.project-number span.curent {
  padding-right: 80px;
}
@media only screen and (max-width: 575px) {
  .project-number span.curent {
    padding-right: 30px;
  }
}
.project-number span.curent::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 60px;
  height: 1px;
  background-color: var(--heading-color);
}
@media only screen and (max-width: 575px) {
  .project-number span.curent::before {
    width: 20px;
  }
}
.project-number span.full {
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  .project-number span.full {
    margin-left: 15px;
  }
}

/**
    page Personal
 */
@media only screen and (max-width: 991px) {
  .header-personal .w-50 {
    width: 100%;
  }
}
.header-personal .title,
.header-personal .sm-title-block {
  margin-left: -120px;
}
@media only screen and (max-width: 991px) {
  .header-personal .title,
.header-personal .sm-title-block {
    margin-left: 0;
  }
}
.header-personal .zeus-button::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  left: -50px;
  top: 50%;
  background-color: var(--theme-color);
}
@media only screen and (max-width: 991px) {
  .header-personal .zeus-button::before {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .header-pages .justify-content-end {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .header-pages.header-pages-mobile {
    height: auto;
    padding-top: var(--margin-padding);
    padding-bottom: var(--margin-padding);
  }
}

/**
    border in normal page like contact & about
 */
.border-header {
  position: relative;
  width: 130px;
  margin: 80px auto 0 auto;
}
.border-header *, .border-header path {
  fill: none;
  stroke: var(--heading-color);
}
.border-header path {
  stroke-dashoffset: 0;
}

/* -------------------------------------------------------

-------------------------------------------------------- */
header .box-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
## pages
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   09 - Slider
-------------------------------------------------------- */
.main-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.main-slider:not(.full-width) {
  width: 100%;
}
.main-slider .v-dark, .main-slider .v-light {
  background: transparent;
}
.main-slider .zeus-webgl.slide-inner:before {
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.main-slider.demo-2 .zeus-slider-content .slider-current-index {
  margin-left: -50px;
}
.main-slider .zeus-slider-content {
  top: 0;
  z-index: 4;
  pointer-events: none;
}
.main-slider .zeus-slider-content .slider-current-index {
  position: absolute;
  font-size: 20vw;
  opacity: 0.35;
  color: var(--border-color);
  font-family: var(--heading-font);
  font-weight: bold;
  -webkit-transform: scale3d(1.1, 1.8, 1.5);
          transform: scale3d(1.1, 1.8, 1.5);
}
@media only screen and (max-width: 767px) {
  .main-slider .zeus-slider-content .zeus-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main-slider .zeus-slider-content .slide-content {
  padding-bottom: 120px;
  padding-top: 120px;
  width:70%;

}
.main-slider .zeus-slider-content .slide-content:before {
  display: none;
}
.main-slider .zeus-slider-content .slide-content.zeus-active {
  z-index: 3;
}
.main-slider .zeus-slider-content .slide-content.zeus-active .title,
.main-slider .zeus-slider-content .slide-content.zeus-active .metas,
.main-slider .zeus-slider-content .slide-content.zeus-active .link-custom {
  pointer-events: auto;
}
.main-slider .zeus-slider-content .slide-content:not(.zeus-active) .title,
.main-slider .zeus-slider-content .slide-content:not(.zeus-active) .metas,
.main-slider .zeus-slider-content .slide-content:not(.zeus-active) .link-custom,
.main-slider .zeus-slider-content .slide-content:not(.zeus-active) .description {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
.main-slider .zeus-slider-content .slide-content:not(.zeus-active) .bg-mod-exclusion, .main-slider .zeus-slider-content .slide-content:not(.zeus-active) .icon-circle {
  width: 0;
}
.main-slider .zeus-slider-content .slide-content .metas,
.main-slider .zeus-slider-content .slide-content .description {
  -webkit-transition-property: opacity, visibility, -webkit-transform, -webkit-box-shadow;
  transition-property: opacity, visibility, -webkit-transform, -webkit-box-shadow;
  -o-transition-property: opacity, visibility, transform, box-shadow;
  transition-property: opacity, visibility, transform, box-shadow;
  transition-property: opacity, visibility, transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.main-slider .zeus-slider-content .slide-content .bg-mod-exclusion {
  -webkit-transition: width 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: width 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: width 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.main-slider .zeus-slider-content .slide-content .link-custom {
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  -o-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.main-slider .zeus-slider-content .zeus-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.main-slider .description {
  color: var(--font-color);
  letter-spacing: 1px;
}
.main-slider .control-nav {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 3;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: transparent;
}
.main-slider:not(.has-horizontal):not(.controller-bottom) .control-nav .prev-container, .main-slider:not(.has-horizontal):not(.controller-bottom) .control-nav .next-container, .main-slider.controller-right .control-nav .prev-container, .main-slider.controller-right .control-nav .next-container {
  position: absolute;
  right: 7px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main-slider:not(.has-horizontal):not(.controller-bottom) .control-nav .next-container, .main-slider.controller-right .control-nav .next-container {
  bottom: 100px;
}
.main-slider:not(.has-horizontal):not(.controller-bottom) .control-nav .prev-container, .main-slider.controller-right .control-nav .prev-container {
  bottom: 15px;
}
.main-slider:not(.has-horizontal):not(.controller-bottom) .control-nav .slider-counter, .main-slider.controller-right .control-nav .slider-counter {
  margin: 0;
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav, .main-slider.controller-right.nav-center .control-nav {
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav *, .main-slider.controller-right.nav-center .control-nav * {
  pointer-events: auto;
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .prev-container, .main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .next-container, .main-slider.controller-right.nav-center .control-nav .prev-container, .main-slider.controller-right.nav-center .control-nav .next-container {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 20px;
}
@media only screen and (min-width: 992px) {
  body .main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .prev-container, body .main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .next-container, body .main-slider.controller-right.nav-center .control-nav .prev-container, body .main-slider.controller-right.nav-center .control-nav .next-container {
    right: calc(0px - ((var(--body-style-space) / 2) + 25px + 20px));
  }
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .next-container, .main-slider.controller-right.nav-center .control-nav .next-container {
  bottom: calc(50% - 100px);
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .prev-container, .main-slider.controller-right.nav-center .control-nav .prev-container {
  bottom: calc(50% - 15px);
}
.main-slider:not(.has-horizontal):not(.controller-bottom).nav-center .control-nav .slider-counter, .main-slider.controller-right.nav-center .control-nav .slider-counter {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  body .main-slider:not(.has-horizontal):not(.controller-bottom).full-width .control-nav .prev-container, body .main-slider:not(.has-horizontal):not(.controller-bottom).full-width .control-nav .next-container, body .main-slider.controller-right.full-width .control-nav .prev-container, body .main-slider.controller-right.full-width .control-nav .next-container {
    right: 0;
  }
}
.main-slider .zeus-pagination {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .main-slider .zeus-pagination {
    width: auto;
  }
}
@media only screen and (max-width: 575px) {
  .main-slider .zeus-pagination {
    display: none;
  }
}
.main-slider .zeus-pagination .swiper-pagination-control {
  position: relative;
  width: 250px;
  height: 3px;
  background: var(--border-color);
  margin-right: 15px;
  margin-left: 15px;
}
.main-slider .zeus-pagination .swiper-pagination-control .swiper-pagination-progressbar-fill {
  background: var(--reverse-color);
}
.main-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

@media only screen and (min-width: 992px) {
  .main-slider.demo-2.zeus-webgl .bg-container {
    width: 50%;
    left: 0;
  }
  .main-slider.demo-2.zeus-webgl .zeus-slider-content .zeus-container {
    width: 50%;
    left: 50%;
  }
  .main-slider.demo-2.zeus-webgl .zeus-slider-content .zeus-container .title {
    margin-left: 0;
  }
  .main-slider.demo-2:not(.zeus-webgl) .bg-container {
    width: calc(50% - var(--s-box-left-social));
    left: var(--s-box-left-social);
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .main-slider.demo-2:not(.zeus-webgl) .zeus-slider-content .zeus-container {
    width: 50%;
    left: 50%;
  }
  .main-slider.demo-2 .bg-container {
    overflow: hidden;
    margin-left: 0;
  }
  .main-slider.demo-2 .zeus-slider-content {
    z-index: 100;
  }
  .main-slider.demo-2 .zeus-slider-content .slider-current-index {
    margin-left: -80px;
  }
  .main-slider.demo-2 .zeus-slider-content .zeus-container {
    padding-left: 50px;
    overflow: inherit;
  }
  .main-slider.demo-2 .zeus-slider-content .zeus-container .title {
    margin-left: -130px;
  }
}
@media only screen and (min-width: 992px) {
  .main-slider.demo-2:not(.has-horizontal) .bg-container {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .main-slider.demo-1 .bg-container {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
  }
}

.zeus-webgl {
  position: relative;
}

.main-slider:not(.has-horizontal) .control-nav {
  top: 0;
  width: auto;
  padding: 0;
}
.main-slider:not(.has-horizontal) .zeus-pagination {
  width: auto;
  position: absolute;
  right: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-slider:not(.has-horizontal) .swiper-pagination-control {
  width: 3px;
  height: 250px;
}
.main-slider:not(.has-horizontal) .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
}

/*====== Banner content part css ========*/

.b-left-part-1 {display: flex;
  align-items: center;gap: 30px;margin-bottom:40px;}

.left-part {}
.left-part img {max-width:56px;}
.right-part {font-size:22px; font-weight:600;}
.right-part span {display: block;}
.right-part span:first-child {color:#AFAFAF;border-bottom:1px solid rgba(255,255,255,0.6);padding-bottom:10px;}
.right-part span:last-child {color:#00B5FE;}

.main-slider .zeus-slider-content h1 {font-weight:300;font-size:46px; line-height: 54px;text-transform:uppercase;margin-bottom:20px;padding-left:0;}
.main-slider .zeus-slider-content h2 {font-weight:700;font-size:40px; text-transform:uppercase;line-height: 48px;padding-left:0;letter-spacing: 0;}
.main-slider .zeus-slider-content h2 span.span-color {display: unset;background: linear-gradient(90deg, #1A83AE 0%, #00B5FE 54.33%, #B6FEFE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;}

.ver-line {position: absolute;
  z-index: 9;left: auto;
  right: auto;
  width: 100%;}
.ver-line img {width:100%;}

.b-right-part-1 {padding-right: 10%;}
.b-right-part-1 p {color:#fff;margin-bottom:10px;}
.b-right-part-1 p span {color: #BBBBBB;text-transform: inherit;letter-spacing:0;}
.topPart {display: flex; gap: 20px;margin-bottom:10px;}
.topPart img {height: 40px;}

.topPart p {color: #fff;}
.topPart p span {color: #BBBBBB;}

.slider-btn-grp {gap: 20px; display: flex;}

.slider-btn-grp .link-custom {transition: 0.4s ;text-decoration:none;}

.slider-btn-grp .link-custom:last-child {background:transparent;color: #fff;}
.slider-btn-grp .link-custom:hover {background:#00B5FE;border-color:#00B5FE; color:#fff;transition: 0.4s ;}

.circleDiv {position:relative;}
.circleDiv::before {position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(49,196,255,0.2); content:'';right:-210px;top: 0;}
.about a.link-custom, .about2 a.link-custom {background:#fff; color:#000;margin-bottom:30px;text-decoration:none;}
.about a.link-custom:hover, .about2 a.link-custom:hover {background:transparent; color:#fff; border-color:#fff;}

.about .section-title, .about2 .section-title {margin-bottom:40px;}
.about ul, .about2 ul {margin-bottom:20px;}

.abt-img {position: relative;margin-bottom: 50px;}
.abt-img img {width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.4);
  margin: 0 auto;
  display: block;
}
.about2 {}
.abt-img2 img {width: 100%;
  height: auto;
  border-radius:30px;
}
.about2 h3 {font-weight:200;}
.about2 h4 {font-weight:normal;}
.about2 h5 {font-weight:normal;margin-bottom:15px;}
.aboutRight {padding:0 10%;}

.box-experience {position:relative;}

.system h3 {font-weight:200;}


.system  .swiper-container {
 width: 100%;
 height: 100%;
}
.system.swiper-slide {
        font-size: 18px;
        background: #fff;
        
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

.system-slider {
    padding-bottom: 60px;
}

.system-slider .swiper-pagination {

    text-align: center;
	display: flex;
  justify-content: center;
  align-items: end;
  transform: inherit;
  z-index:0;
}

.system-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
	border-radius:50%;
    background: #999;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.system-slider .swiper-pagination-bullet-active {
    background: #00B5FE;
    transform: scale(1.2);
}

.system-slider .service-item {background:#171717;padding:30px;letter-spacing:0;}

.system-slider .service-item .content-box h5 {color:#9B9B9B; font-size:16px;font-weight:normal; letter-spacing:0;margin-top:15px;}
.system-slider .service-item .content-box h4 {  transition:0.5s ease; }
.system-slider .service-item .content-box h4 a:hover {color:#00B5FE; }
.linkDiv {display: flex;
  justify-content: right;
  margin-top: 20px;
}
.linkDiv a{
	width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
    transition: 0.5s ease; 
  
}
.linkDiv a i{color:#fff;-webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);}

.linkDiv a:hover{background:#fff;}
.linkDiv a:hover i{color:#000;}


.slider-about .swiper-wrapper{margin-bottom:30px;}

.slider-about .swiper-wrapper .box-item-inner h5 {letter-spacing:0;font-weight: 600;position: relative;}
.slider-about .swiper-wrapper .box-item-inner h5 a.link-custom {
	max-width: 250px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  background: linear-gradient(113.41deg, #00B5FD -3.84%, #0552B0 65.27%, #5ADBE4 103.75%, #029FDF 197.8%);
  transition: 0.5s ease;
}
.slider-about .swiper-wrapper .box-item-inner h5 a.link-custom i {
  color: #fff;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.slider-nav-grp {display: flex;
  justify-content: center;
  gap: 50px;
  margin-top:30px;}
  
.slider-about .swiper-button-prev,
.slider-about .swiper-button-next {
    color: #000;
	position: relative;
	display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  background: #fff;
  transition: 0.5s ease;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  	font-size:15px;
}
.slider-about .swiper-button-prev:hover,
.slider-about .swiper-button-next:hover {
    color: #fff;
  background: linear-gradient(113.41deg, #00B5FD -3.84%, #0552B0 65.27%, #5ADBE4 103.75%, #029FDF 197.8%)

}

.slider-about .swiper-button-next::after, .slider-about .swiper-button-prev::after{
display:none;
	  
}
.slider-about .swiper-slide-active [data-overlay]::before {opacity: 0.5;}

.slider-about  .swiper-slide {transition: all 200ms linear;
  transform: scale(0.8);}
  
.slider-about  .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.measured-by {margin-bottom:100px;}
.measured-by .pro-text  {background:rgba(0,0,0,0.8);padding: 60px 40px;}
.measured-by .pro-text h2 {font-weight: 400;
  font-size: 30px;}
.box-set-video  {width: 91%;}


.service h3{font-weight:200;}


/* Call To Action Section
--------------------------------*/

#call-to-action {
  margin: 60px 0;
}
.call-to-action-inner {  background: #171717; padding: 20px 40px;}
#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

#call-to-action .cta-btn {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  transition: 0.5s;
  margin: 10px;
  color: #000;
  background: #ffffff;
 
}

#call-to-action .cta-btn:hover {
  background: linear-gradient(113.41deg, #00B5FD -3.84%, #0552B0 65.27%, #5ADBE4 103.75%, #029FDF 197.8%);
  color:#fff;
}
.agencies h3 {font-weight:200;}

.StatsHolder {}
  .stats-banner {
      position: relative;
      background: url('../images/stats-bg.png') center center/cover no-repeat;
      border-radius: 25px;
      overflow: hidden;
      min-height: 180px;
    }

    .stats-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .stats-content {
      position: relative;
      z-index: 2;
      padding: 40px 20px;
    }

    .stat-box {
     color: #00aaff;
  display: flex;
  gap: 30px;
    }

    .stat-box img {
      font-size: 60px;
      color: #fff;
      display: block;
      margin-bottom: 15px;
      line-height: 1;
	  width:50px;
	  height: fit-content;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 12px;
    }

    .stat-text {
      font-size: 18px;
      color: #00aaff;
      line-height: 1.4;
    }

    /* Tablet */
    @media (max-width: 991px) {
      .stat-number {
        font-size: 3rem;
      }

      .stat-text {
        font-size: 1.2rem;
      }

      .stat-box i {
        font-size: 50px;
      }
    }

    /* Mobile */
    @media (max-width: 767px) {
      .stats-banner {
        border-radius: 15px;
      }

      .stats-content {
        padding: 30px 15px;
      }

      .stat-box {
        margin-bottom: 25px;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      .stat-text {
        font-size: 1rem;
      }

      .stat-box i {
        font-size: 42px;
      }
    }

.logoArea {margin-bottom:0;}

.logoHolder {display: flex; gap: 10px;}
.logoHolder span{}
.logoHolder span img {}

.logoAreaBottom {padding:150px 0;/*border-bottom: 1px solid #555;*/}
.leftCtaContent {}
.leftCtaContent h6 {color:#00B5FE;letter-spacing:0;font-size:22px; font-weight:normal;}
.leftCtaContent h2 {font-weight:800;letter-spacing:0;margin:20px 0;} 
.leftCtaContent p {margin-bottom:20px;}


.btnGrp{-webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: flex;
  flex-direction: column;
  gap: 20px;
float: right;
  }
.whiteBtn {
position: relative;
  padding: 10px 20px;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 1px var(--border-color);
  z-index: 2;
  display:flex;
  align-items:center;
  cursor: pointer;
  transition: 0.5s ease;
  background: #fff;
  width: fit-content;
  color:#000;
  gap:10px;
  right: 40px;
}
.whiteBtn i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
  transition: 0.5s ease;
  color:#fff;
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);

}
.whiteBtn:hover {background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);color:#fff;}
.whiteBtn:hover i {background: #fff;color:#000; }

.blueBtn {position: relative;
  padding: 10px 20px;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 1px var(--border-color);
  z-index: 2;
  display:flex;
  align-items:center;
  cursor: pointer;
  transition: 0.5s ease;
  background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);
  width: fit-content;
  color:#fff;
  gap:10px;
  width: 100%;
  justify-content: center;
}
.blueBtn:hover {background: #fff;color:#000;}
.blueBtn i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background:#fff;
  transition: 0.5s ease;
  color:#000;
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.blueBtn:hover i {background: linear-gradient(113.41deg, #00B5FD 16.16%, #0552B0 85.27%, #5ADBE4 143.75%, #029FDF 197.8%);color:#fff; }




/* -------------------------------------------------------
                   portfolio
-------------------------------------------------------- */
.filtering {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .filtering {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filtering .title-block {
    margin-bottom: 30px;
  }
}
.filtering .filtering-wrap {
  position: relative;
  border-bottom: 2px solid var(--border-color);
}
.filtering .filtering-wrap .filtering {
  margin-bottom: -2px;
}
.filtering .filtering-wrap .filtering button {
  color: var(--heading-color);
  padding-bottom: 10px;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: solid 2px transparent;
}
.filtering .filtering-wrap .filtering button:not(:last-of-type) {
  margin-right: 15px;
}
.filtering .filtering-wrap .filtering button.active {
  letter-spacing: 2px;
  border-bottom: solid 2px var(--theme-color);
}

.projects-list .work-item:last-of-type {
  border: 0;
  padding-bottom: 0;
}
.projects-list .work-item .work-item-inner .title-meta {
  position: relative;
}
.projects-list .work-item .work-item-inner .title-meta .text {
  display: inline-block;
  padding: 5px 25px;
  line-height: 1.1;
  margin-bottom: 25px;
}
.projects-list .work-item .work-item-inner .title-meta .text a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.projects-list .work-item .work-item-inner .title-meta .metas {
  margin-bottom: 10px;
  padding-left: 25px;
}
.projects-list .work-item .box-img a {
  width: 100%;
  height: 100%;
}
.projects-list.work-gallery {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projects-list.work-gallery .work-item .img-next-box {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media only screen and (min-width: 992px) {
  .projects-list.work-gallery .work-item .img-next-box {
    height: 28vw;
  }
}
.projects-list.work-gallery .work-item .box-content .metas {
  margin-bottom: 0;
}
.projects-list.work-gallery .work-item .box-content .metas, .projects-list.work-gallery .work-item .box-content .view-project {
  margin-top: 10px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  -o-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.projects-list.work-gallery .work-item .box-content .view-project {
  color: var(--heading-color);
  position: absolute;
  font-size: 12px;
  font-family: var(--heading-font);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
}
.projects-list.work-gallery .work-item:hover .img-next-box {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}
.projects-list.work-gallery .work-item:hover .box-content .metas {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  opacity: 0;
}
.projects-list.work-gallery .work-item:hover .box-content .view-project {
  opacity: 1;
  -webkit-transform: translateY(-22px);
      -ms-transform: translateY(-22px);
          transform: translateY(-22px);
}
.projects-list.work-gallery .swiper-container .work-item .img-next-box {
  height: 50vh;
}
.projects-list.work-masonry .work-item:nth-of-type(2) [data-zeus-grid=move-up],
.projects-list.work-masonry .work-item:nth-of-type(2) [data-zeus-grid=moveUp] {
  height: 18vw;
}
.projects-list.work-masonry .work-item:nth-of-type(3) [data-zeus-grid=move-up],
.projects-list.work-masonry .work-item:nth-of-type(3) [data-zeus-grid=moveUp] {
  height: 20vw;
}
.projects-list.work-masonry .work-item:nth-of-type(5) [data-zeus-grid=move-up],
.projects-list.work-masonry .work-item:nth-of-type(5) [data-zeus-grid=moveUp] {
  height: 26vw;
}
.projects-list.work-masonry .work-item:nth-of-type(6) [data-zeus-grid=move-up],
.projects-list.work-masonry .work-item:nth-of-type(6) [data-zeus-grid=moveUp] {
  height: 18vw;
}

.our-work.work-list .work-item-inner, .our-work.work-list .title-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.our-work.work-list .work-item {
  width: 100%;
}
.our-work.work-list .title-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .our-work.work-list .title-meta {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.our-work.work-list .projects-list .work-item .work-item-inner .title-meta a.text {
  position: relative;
  display: inline-block;
}
.our-work.work-list .border-bottom:not(:first-of-type) {
  padding-top: 50px;
}
.our-work.work-list .border-bottom:not(:last-of-type) {
  padding-bottom: 50px;
}

.our-work.work-2 .box-content {
  position: absolute;
  margin-bottom: 30px;
  z-index: 1;
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .our-work.work-2 .work-item .img-next-box {
    height: 70vh;
  }
}
.our-work.work-2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* -------------------------------------------------------
                   Blog
-------------------------------------------------------- */
.zeus-posts.d-grid.grid-lg-1 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: var(--margin-padding);
}
@media only screen and (max-width: 991px) {
  .zeus-posts.d-grid.grid-lg-1 {
    grid-row-gap: var(--margin-padding-mobile);
  }
}
.zeus-posts.d-grid.grid-lg-3 .zeus-paginations {
  grid-column: 1/-1;
  margin-top: 90px;
}
@media only screen and (max-width: 991px) {
  .zeus-posts.d-grid.grid-lg-3 .zeus-paginations {
    margin-top: 50px;
  }
}
.zeus-posts .blog-item .title-block {
  max-width: 400px;
}

.metas-blog > a {
  margin-left: 15px;
}

.root-blog {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.root-blog .post-list-item {
  position: relative;
  margin-bottom: var(--margin-padding);
}
.root-blog .post-list-item figure {
  position: relative;
  width: 100%;
}
.root-blog .post-list-item figure a {
  width: 100%;
}
.root-blog .post-list-item figure img {
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 80vh;
}
.root-blog .post-list-item .post-list-item-content {
  margin-top: 30px;
  width: 100%;
  position: relative;
}
.root-blog .post-list-item .post-list-item-content .post-info-date {
  margin-right: 20px;
}
@media only screen and (max-width: 575px) {
  .root-blog .post-list-item .post-list-item-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.root-blog .post-list-item .post-list-item-content .post-info-top a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  word-spacing: 2px;
  margin-bottom: 20px;
  color: var(--heading-color);
}
.root-blog .post-list-item .post-list-item-content .post-info-top > div {
  position: relative;
  display: inline-block;
}
.root-blog .post-list-item .post-list-item-content h3 {
  margin-bottom: 30px;
}
.root-blog .post-list-item .post-list-item-content .post-author {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.root-blog .post-list-item .post-list-item-content .post-author img {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.root-blog .post-list-item .post-list-item-content .post-author span {
  font-weight: 300;
}
.root-blog .post-list-item .post-list-item-content .post-author span a {
  color: var(--heading-color);
  padding-left: 5px;
  letter-spacing: 2px;
}

.news-content {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .news-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.news-content .news-content-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news-content .post-content {
  position: relative;
  display: block;
}
.news-content .post-content > * {
  margin-bottom: 30px;
}
.news-content .post-content > *:first-child, .news-content .post-content:first-child {
  margin-top: 0;
}
.news-content .post-content > *:last-child, .news-content .post-content:last-child {
  margin-bottom: 0;
}
.news-content .post-content p {
  letter-spacing: -0.6px;
}
.news-content .post-content p a {
  display: inline-block;
}
.news-content .post-content blockquote {
  font-size: 20px;
  font-family: serif;
  color: var(--heading-color);
  font-style: italic;
  padding: 10px 0 10px 15px;
  border-left: 1px solid var(--border-color);
}
.news-content .post-content a {
  position: relative;
  text-decoration: none;
  -webkit-transition: color 670ms linear 417ms;
  -o-transition: color 670ms linear 417ms;
  transition: color 670ms linear 417ms;
}
.news-content .post-content a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  left: -0.15em;
  right: -0.15em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  -webkit-transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1), 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: scale(0.98, 0) translateZ(0);
          transform: scale(0.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
}
.news-content .post-content a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  left: -0.025em;
  right: -0.075em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.news-content .post-content a:hover:before {
  -webkit-transform: scale(1, 0.99999999) translateZ(0);
          transform: scale(1, 0.99999999) translateZ(0);
}
.news-content .post-content a:hover:after {
  opacity: 0;
  -webkit-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-content .post-tags {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0 0;
}
@media only screen and (max-width: 767px) {
  .news-content .post-tags {
    padding: 30px 0 0;
  }
}
.news-content .post-tags a {
  color: var(--heading-color);
  margin-right: 30px;
  display: inline-block;
  line-height: 1;
  float: left;
}
.news-content .post-tags a:before {
  content: "#";
  position: relative;
  margin-right: 5px;
  font-size: 14px;
  background-color: transparent;
  border: 0;
}
.news-content .post-tags a::after {
  display: none;
}

/* -------------------------------------------------------
                  contact
-------------------------------------------------------- */
.form-box {
  position: relative;
}
.form-box .form-group {
  width: 100%;
  margin-bottom: 30px;
}
.form-box .form-group .help-block {
  color: red;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 15px;
}
.form-box .form-group li {
  list-style: none;
}

.entry-box {
  width: 100%;
}
.entry-box input,
.entry-box textarea {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  background-color: #2f2f2f;
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 0;
}
.entry-box input::-webkit-input-placeholder, .entry-box textarea::-webkit-input-placeholder {
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: -0.5px;
}
.entry-box input::-moz-placeholder, .entry-box textarea::-moz-placeholder {
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: -0.5px;
}
.entry-box input:-ms-input-placeholder, .entry-box textarea:-ms-input-placeholder {
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: -0.5px;
}
.entry-box input::-ms-input-placeholder, .entry-box textarea::-ms-input-placeholder {
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: -0.5px;
}
.entry-box input::placeholder,
.entry-box textarea::placeholder {
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: -0.5px;
}
.entry-box input {
  height: 100%;
}

label {
  font-weight: 600;
  color: var(--heading-color);
}

.box-info-contact {
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  .box-info-contact {
    margin-top: 20px;
    padding-left: 0;
  }
}
.box-info-contact ul li:not(:first-of-type) {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .box-info-contact ul li {
    display: inline-block;
    width: 32.8%;
  }
}
@media only screen and (max-width: 767px) {
  .box-info-contact ul li {
    width: 49%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .box-info-contact ul li {
    width: 100%;
  }
}
.box-info-contact ul li .text-p:not(:nth-last-child) {
  margin-bottom: 10px;
}
.box-info-contact ul li a {
  display: block;
  text-decoration: underline;
}
.box-info-contact ul li .social-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.box-info-contact ul li .social-item a {
  text-decoration: none;
}

.contact-content .item:not(:last-of-type) {
  margin-bottom: 30px;
}

.single-contact .box-info .info-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.single-contact .box-info .info-item .icon {
  color: var(--heading-color);
}
.single-contact .box-info .info-item a {
  letter-spacing: 2px;
  border-bottom: 1px solid var(--border-color);
}
.single-contact .form-box {
  padding: 0;
}
.single-contact .entry-box input, .single-contact .entry-box textarea {
  margin-top: 0;
  padding: 10px;
  border: 1px solid var(--border-color);
}
.single-contact .entry-box input::-webkit-input-placeholder, .single-contact .entry-box textarea::-webkit-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-contact .entry-box input::-moz-placeholder, .single-contact .entry-box textarea::-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-contact .entry-box input:-ms-input-placeholder, .single-contact .entry-box textarea:-ms-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-contact .entry-box input::-ms-input-placeholder, .single-contact .entry-box textarea::-ms-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-contact .entry-box input::placeholder, .single-contact .entry-box textarea::placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*
  Map
 */
.map-custom {
  position: relative;
  width: 100%;
  height: 70vh;
}
.map-custom .gm-fullscreen-control,
.map-custom .gm-bundled-control,
.map-custom .gm-bundled-control-on-bottom,
.map-custom .gmnoprint,
.map-custom .gm-style-cc {
  display: none !important;
}

/**
  Contact Button
 */
.contact-btn {
  position: fixed;
  right: 20px;
  top: 35px;
  width: 12px;
  height: 12px;
  z-index: 12;
  mix-blend-mode: exclusion;
  color: #fff;
}
.contact-btn:before, .contact-btn .contact-btn-txt {
  position: absolute;
}
.contact-btn:before {
  content: "";
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.65s, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.65s, -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.65s;
}
.contact-btn .contact-btn-txt {
  right: 0;
  top: -1px;
  height: 13px;
  padding-right: 20px;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transform-origin: calc(100% - 6px) 50%;
      -ms-transform-origin: calc(100% - 6px) 50%;
          transform-origin: calc(100% - 6px) 50%;
  /*-webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);*/
  cursor: pointer;
  -webkit-transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s, -webkit-transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s, -webkit-transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s, transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s, transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s, transform 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.contact-modal {
  position: fixed;
  width: calc(100% - var(--s-box-full));
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  padding-right: 100px;
  z-index: 11;
  -webkit-transform: translate3d(120%, 0, 0);
          transform: translate3d(120%, 0, 0);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.contact-modal .contact-container {
  position: relative;
  padding-left: 60px;
  overflow: hidden;
  overflow-y: auto;
  
}
.contact-modal .zeus-container {margin-top:30px;}
.contact-content {padding-top:0;}

@media only screen and (max-width: 991px) {
  .contact-btn, .contact-modal, .line-border-style, .zeus-paginate-right-page, .box-options {
    display: none;
  }
}

body.zeus-show-contact .contact-btn .contact-btn-txt {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
body.zeus-show-contact .contact-modal {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.comments-form textarea,
.comments-form input {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 15px;
  color: var(--heading-color);
  background-color: transparent;
  font-size: 16px;
}
.comments-form textarea::-webkit-input-placeholder, .comments-form input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--heading-color);
}
.comments-form textarea::-moz-placeholder, .comments-form input::-moz-placeholder {
  font-size: 16px;
  color: var(--heading-color);
}
.comments-form textarea:-ms-input-placeholder, .comments-form input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--heading-color);
}
.comments-form textarea::-ms-input-placeholder, .comments-form input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--heading-color);
}
.comments-form textarea::placeholder,
.comments-form input::placeholder {
  font-size: 16px;
  color: var(--heading-color);
}
.comments-form input[type=submit] {
  padding: 15px 40px;
  background: transparent;
  position: relative;
  width: auto;
  font-size: 15px;
  border: 2px solid var(--heading-color);
  color: var(--heading-color);
  cursor: pointer;
  min-height: 48px;
  line-height: 0;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.comments-form .box-textarea {
  grid-column: 1/-1;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-post {
  position: relative;
  width: 100%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comments-post .comments-title {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .comments-post .comments-title {
    margin-bottom: 35px;
  }
}
.comments-post .comments-title .subtitle {
  margin-bottom: 0;
}
.comments-post .comments-area {
  position: relative;
}
.comments-post .comments-area .comment-list > li.comment:first-child {
  margin-top: 0;
}
.comments-post .comments-area .comment-list > li.comment:first-child > .comment-body {
  padding-top: 0;
}
.comments-post .comments-area .comment {
  list-style: none;
  margin-top: 20px;
}
.comments-post .comments-area .comment .comment-body {
  position: relative;
  padding-top: 30px;
}
.comments-post .comments-area .comment .comment-body .comment-author {
  position: relative;
  top: 10px;
  left: 0;
  width: 64px;
  height: 64px;
  display: block;
  float: left;
}
@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .comment-body .comment-author {
    width: 30px;
    height: 30px;
  }
}
.comments-post .comments-area .comment .comment-body .comment-author img {
  display: block;
  height: auto;
  max-width: 100%;
  border-radius: 50%;
}
.comments-post .comments-area .comment .comment-body .comment-text {
  padding: 0 0 0 90px;
  min-height: 64px;
}
@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .comment-body .comment-text {
    padding: 0 0 0 40px;
  }
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-date {
  font-size: 13px;
  color: var(--font-color);
  margin-top: 5px;
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-date:before {
  content: "/";
  display: inline-block;
  margin-right: 5px;
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-info {
  position: relative;
  display: inline-block;
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-info .comment-name {
  float: left;
  margin: 0;
  font-weight: 700;
  font-size: 17px;
}
.comments-post .comments-area .comment .comment-body .comment-text .text-holder p {
  margin: 7px 0 10px;
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link {
  position: relative;
  text-decoration: none;
  -webkit-transition: color 670ms linear 417ms;
  -o-transition: color 670ms linear 417ms;
  transition: color 670ms linear 417ms;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--heading-color);
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  left: -0.15em;
  right: -0.15em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  -webkit-transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1), 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: scale(0.98, 0) translateZ(0);
          transform: scale(0.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  left: -0.025em;
  right: -0.075em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:before {
  -webkit-transform: scale(1, 0.99999999) translateZ(0);
          transform: scale(1, 0.99999999) translateZ(0);
}
.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:after {
  opacity: 0;
  -webkit-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}
.comments-post .comments-area .comment .children {
  margin-left: 90px;
}
@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .children {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .comments-post .comments-area .comment .children {
    margin-left: 20px;
  }
}
.comments-post .comments-form {
  position: relative;
  width: 100%;
  margin-top: var(--margin-padding);
}

/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Footer
-------------------------------------------------------- */
.footer {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer .d-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.footer .footer-item:first-child {display: flex;
  justify-content: left;
  gap: 40px;}

.footer p {color:#fff;}
.footer-contact {margin-top:10px;}
.footer-contact span{color:#fff;}

.footer .nav-footer li a {font-size:12px;}
@media only screen and (max-width: 575px) {
  .footer .d-grid {
    grid-row-gap: 15px;
  }
  .footer .d-grid .footer-item {
    text-align: center;
  }
}
.footer .logo-footer {
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom {
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom .footer-item, .footer .footer-bottom .nav-footer {
    text-align: center;
  }
}
.footer .nav-footer li:not(:last-of-type) {
  margin-right: 10px;
}
@media only screen and (max-width: 575px) {
  .footer .nav-footer li {
    margin-right: 10px;
  }
}

body.v-dark .logo-footer img.logo-dark {
  display: block;
}
body.v-dark .logo-footer img.logo-light {
  display: none;
}

body.v-light .logo-footer img.logo-dark {
  display: none;
}
body.v-light .logo-footer img.logo-light {
  display: block;
}

.cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#0e0e0e5c), to(#1b1515));
  background-image: -o-linear-gradient(left, #0e0e0e5c 0%, #1b1515 100%);
  background-image: linear-gradient(to right, #0e0e0e5c 0%, #1b1515 100%);
  padding: 4px 15px;
  color: #fff;
  z-index: 10;
}
.cap span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.caption {
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  margin-top: 15px;
}
/*# sourceMappingURL=style.css.map */


/*==== About page css new   =====*/


.chooseus-content{
    padding: 30px 30px 30px 30px;
    display: flex;
    width: 515px;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
	background-image: radial-gradient(at top left, #201f1f 0%, #111 70%);
  border-radius: 20px;
  margin-bottom:15px;
}

.chooseus-title{
    color: #fff;
	letter-spacing: 0;
}

.chooseus-content p{
    margin-bottom: 14.4px;
}

.chooseus-img{
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.chooseus-cta-spacer{
    width: 50px;
    height: 50px;
    border-radius: 0px 0px 25px 0px;
}
.card-chooseus-cta-layout{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: end;
}
.card-chooseus-cta-wrapper
{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 350px;
    padding: 20px 0px 0px 20px;
    border-radius: 30px 0px 0px 0px;
}
.card-chooseus-cta{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 30px 30px 30px;
    background-color: transparent;
    transition: all 0.3s;
}
.card-chooseus-cta:hover{
    box-shadow: var(--box-shadow-top-left);
}
.about3 .aboutRight {padding:0;}
.about3 .aboutRight h3 {letter-spacing:0;}
.about3 .aboutRight .link-custom {background: #fff;color: #000; border:1px solid #fff;margin: 0;}
.about3 .aboutRight .link-custom:hover {background: transparent;
  color: #fff;}

.about3 .box-experience .numb-ex {justify-content:left;}
.box-experience h3 {text-align:left;}
.about3 .box-experience {margin-left:0;padding: 0;}
.about3 ul {margin-bottom:20px;}

.about4 .aboutRight {padding:0;}

.growth-sec  {margin-top:50px;}
.growth-sec  .content-box {padding: 25px;
  background: #202020;
  border-radius: 20px;
  height: 90%;
  margin-bottom: 20px;}
.growth-sec  .content-box h4 {min-height:50px;}



.blog-content a:hover {color:var(--theme-color);}
.our-blog nav {
  display: flex;
  justify-content: center;
  margin: 40px;
}

.our-blog .pagination {
  display: flex;
  flex-direction: row;
  margin-top:50px;
}
.our-blog .page-item {
  margin-right: 18px;
  border-radius: 10px;
  border: solid 1px #666;
}
.our-blog .page-item a {
  padding: 5px 15px 5px 15px;
  display: inline-block;
  transition: 0.2s all;
  color: #fff;
}
.our-blog .page-item a:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 10px;
}

.our-blog .page-item.active {
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 10px;
}
.our-blog .page-item.active a {
  color: #fff;
}
 .stats-section{
            padding:40px 0;
        }

        .stat-card{
            background: linear-gradient(135deg,#2d2d2d,#242424);
           border-radius: 15px;
           padding: 20px 15px;
            height:100%;
            min-height:160px;
            transition:all .3s ease;
        }

        .stat-card:hover{
            transform:translateY(-5px);
        }

        .stat-number{
            color:#fff;
            font-size:48px;
            line-height:1;
            font-weight:700;
            margin-bottom:12px;
            letter-spacing:-2px;
        }

        .stat-text{
            color:#a1a1a1;
            font-size:18px;
            line-height:1.45;
            font-weight:400;
            max-width:240px;
        }

        /* Tablet */
        @media (max-width: 991px){
            .stat-number{
                font-size:56px;
            }

            .stat-text{
                font-size:16px;
            }
        }

        /* Mobile */
        @media (max-width: 767px){

            .stats-section{
                padding:25px 0;
            }

            .stat-card{
                min-height:auto;
                padding:20px;
            }

            .stat-number{
                font-size:48px;
            }

            .stat-text{
                font-size:15px;
                max-width:100%;
            }
        }


.about6  {padding-bottom:60px;margin:0;}
.trusted-by {margin:0;}
.trustedinner {
padding: 40px;
  background: #031e27;
  border-radius: 30px;
  border: 1px solid #262626;
}

/*======= Faq page css ======*/
.faq-section{
}

        .faq-title{
            margin-bottom:50px;
        }

        .faq-title h2{
            font-size:42px;
            font-weight:700;
            margin-bottom:15px;
        }

        .faq-title p{
            color:#666;
      
            margin:auto;
        }

        .accordion-item{
            border:none;
            border-radius:14px !important;
            overflow:hidden;
            margin-bottom:20px;
            box-shadow:0 5px 20px rgba(0,0,0,0.06);
			background:transparent;
        }

        .accordion-button{
            padding:10px 25px;
            font-size:18px;
            font-weight:600;
            background:transparent;
            color:#fff;
            box-shadow:none !important;
        }
.accordion-button::after {filter:invert();}
.accordion-button:not(.collapsed)::after {
  filter: invert(0);
}
        .accordion-button:not(.collapsed){
            background:var(--theme-color);
            color:#fff;
        }

        .accordion-button:focus{
            box-shadow:none;
        }

        .accordion-body{
            padding:25px;
            color:#fff;
            line-height:1.8;
            background:transparent;
        }

        @media (max-width: 767px){

            .faq-section{
                padding:50px 0;
            }

            .faq-title h2{
                font-size:30px;
            }

            .accordion-button{
                font-size:16px;
                padding:18px;
            }

            .accordion-body{
                padding:20px;
            }
        }

/*--------------------------------------------------------------
# Privacy Page Css 
--------------------------------------------------------------*/

.privacyPolicy {color:#fff;}
.privacyPolicy  .section-header {text-align:left;}
.privacyPolicy h3 {margin-top:20px;}
.privacyPolicy ul {list-style-type: disclosure-closed;}


/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.our-blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 5%;
}

.our-blog .blog-details .post-img {
  margin: 0 0 20px 0px;
  overflow: hidden;
}

.blog .blog-details .title {
  our-blog-size: 25px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: #000;
}

.our-blog .blog-details .content {
  margin-top: 8px;
}

.our-blog .blog-details .content h3 {
  font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
    line-height: 31px;
}

.our-blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.our-blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.our-blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.our-blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.our-blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.our-blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.our-blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.our-blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.our-blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.our-blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.our-blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.our-blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.our-blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.our-blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.our-blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.our-blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.our-blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.our-blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.our-blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.our-blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.our-blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.our-blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

.our-blog .sidebar-item ul li.details a{
  color: #037ee5;
}

.our-approach  {}
.our-approach   .style-box {
    padding: 20px 20px;
  }
.our-approach .service-item.border {border-color:#333333!important;border-radius: 20px;}

.learnmoreHolder {margin-left:30px;}
.learnMore  {background: #fff;color: #000; border:1px solid #fff;margin: 0;padding: 12px 30px;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;}
.learnMore:hover {background: transparent;
  color: #fff;}

.how-it-all {}
.how-it-all .how-it-al-item {background: #1d1d1d;}

.how-it-al-item:not(:last-of-type) {
  border-bottom: 2px solid var(--bg-color);
}
@media only screen and (max-width: 575px) {
  .how-it-al-item {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .how-it-al-item.d-grid {
    grid-row-gap: 30px;
  }
}


.serviceList {}
.serviceList .work-item {padding-bottom: 50px;}
.projects-list img::before {display:none;}

.what-we-do-aboutRight {}




/*==== Responsive css   =====*/

@media (max-width:1500px){
.main-slider .zeus-slider-content .content .b-left-part-1{margin-bottom: 0;}
.main-slider .zeus-slider-content h1 {
  font-size: 36px;
  line-height: 34px;
}
.main-slider .zeus-slider-content h2 {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 30px;
}
.main-slider .zeus-slider-content h2 br {display:none;}	
body .site-header .menu-icon {justify-content: left;}
.site-header .menu-icon.nav-active .icon-m .menu-icon-line.icon-bottom{
transform: translate(0px, -11px) rotate(-45deg) !important;
}
.footer .logo-footer {
  width: 160px;
}
.cover-bg-img {
  object-fit: contain;
}
}
@media (max-width:1400px){
.main-slider .zeus-slider-content h1 {
    display: block;
	margin-bottom: 10px;
  }
.about .heading-h2 br {display:none;}
.abt-img {margin-top:30px;}
.box-experience {
  padding: 0;
}
.circleDiv {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
}
.circleDiv::before{display:none;}
.about {margin-bottom:60px;}
.about2 {margin-top:60px;}
.aboutRight {
  padding: 0;
}
#call-to-action .cta-text {
  font-size: 22px;
}
#call-to-action .cta-text, .cta-btn-container {
  text-align: center;
}
#call-to-action .cta-btn {margin-top:20px;}
.logoArea {
  padding-top: 60px;
  margin-top:60px;
}
.agencies {
  margin-bottom: 50px;
}
.logoAreaBottom {
  padding: 80px 0;
}
.testimonials .next-container, .testimonials .prev-container {background:#00B5FE;}
.abt-img2 {margin-bottom:20px;}
body .site-header .menu-icon {
right: 100px;
}
.b-right-part-1 p {
  margin-bottom: 0;
  line-height: 22px;
}
.link-custom, input[type="submit"] {
padding: 12px 15px;
margin-top: 0px;
}
.about .link-custom{
margin-top: 20px;
}
.stat-box {
  margin: 10px 0;
}
.agencies-item .agencies-item-inner {
display: block;
}
.about2 a.link-custom{margin-top: 20px;}
.agencies-item .right-box {margin-top:20px;}
}
@media (max-width:1320px){
.main-slider .zeus-slider-content .slide-content {
  padding-bottom: 80px;
  padding-top: 0px;
  width: 60%;
}
.main-slider .zeus-slider-content .slide-content .b-right-part-1 {
  padding-right: 0;
}
.abt-img img {
  width: 200px;
  height: 200px;
}

.system  {margin-top:60px;}
.about {
margin-top: 60px;
}
.about2 {
margin-bottom: 60px;
}
.heading-h2 {
  font-size: 28px;
}
.box-experience .numb-ex {
  font-size: 130px;
}
.system-slider .service-item .content-box h4 {
  letter-spacing: 0;
}
.link-custom, input[type="submit"] {
  padding: 12px 15px;
}
.measured-by .box-set-video {
  width: 86%;
}
.agencies-item .right-box {display:block;}
.agencies .section-title {margin-bottom:30px;}
  .agencies-item .right-box .viewBtn {margin-top:20px; }
 .btnGrp { -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  float: none;
  margin-top:20px;}
  .whiteBtn {right:0;width:100%;justify-content: center;}
  .blueBtn {width:100%;}
  .whiteBtn i{
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.footer .footer-item:first-child {
  display: block;
}
  .cover-bg-img {
    object-fit: cover;
  }
  .footer  {}
.footer-bottom  {grid-template-columns: auto;
 text-align: center;}
.footer-bottom .footer-item .nav-footer ul {text-align:center;}	
	
.footer .footer-bottom.d-grid {grid-row-gap: 5px;}	
}
@media (max-width:1024px){
   .main-slider .zeus-slider-content .slide-content {
    width: 90%;
	padding-top: 50px;
  } 
 .heading-h2 {
  line-height: 40px;
}


}
@media (max-width:991px){
.abt-img {
 margin: 0;
}
body .site-header .menu-icon {
right: 0;
}
.site-header .menu-icon .text-menu {display:none;}
 .main-slider .zeus-slider-content .slide-content {
padding-top: 160px;
}
 .main-slider .zeus-slider-content h2 {
    font-size: 26px;
 }
  .main-slider .zeus-slider-content h1 {
    font-size: 28px;
  }
    .measured-by .box-set-video {
    width: 94%;
  }
}

@media (max-width:991px){
.slider-btn-grp {
  display: block;
}
.slider-btn-grp .link-custom {width:100%;text-align: center;
    margin: 5px 0;}
}

@media (max-width:575px){
.main-slider {
  position: relative;
  height: 120vh;
}
.about a.link-custom, .about2 a.link-custom {margin-top:20px;}
.agencies-item .right-box {
  display: block;
}

 .circleDiv {
display: block;
}
  .measured-by .box-set-video {
    width: 94%;
  }

}

@media (max-width:480px){
	
   .main-slider {
    height: 140vh;
  }	
 .measured-by .pro-text .border-section-bottom {margin-bottom:20px;}
 .agencies-item:last-of-type {
  padding-bottom: 0px;
}  
.agencies-item .left-box h4 span {
  font-size: 26px;
}
.agencies-item .left-box {
  width: auto;
}
.logoArea {
    padding-top: 30px;
    margin-top: 30px;
  }
.logoArea .heading-h2 {
    line-height: 30px;
  }
  .logoHolder {
display: block;
text-align: center;
}
.logoHolder span img {
height: 80px;
}
.logoHolder span {
  margin: 5px 5px;
}
}



