
.ratio {
  position: relative;
  display: block;
  overflow: hidden;
}

.ratio::before {
  display: block;
  width: 100%;
  content: "";
}

.ratio-1\:1::before {
  padding-bottom: 100%;
}

.ratio-2\:1::before {
  padding-bottom: 50%;
}

.ratio-2\:3::before {
  padding-bottom: 150%;
}

.ratio-3\:2::before {
  padding-bottom: 66.66667%;
}

.ratio-3\:4::before {
  padding-bottom: 67.33333%;
  transform: scale(1) !important;
}

.ratio-4\:3::before {
  padding-bottom: 75%;
}

.ratio-16\:9::before {
  padding-bottom: 56.25%;
}

/*--------------------------------------------------
      01. Variables
  ---------------------------------------------------*/
:root {
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
}

:root {
  --preloader-image: url('../img/svg-icons/loader.svg');
}

:root {
  /* --accent-color: #6A22F8; */
  --accent-color:#91298C;
  --bg-light-1: #f5f6f8;
  --bg-light-2: #F1F6F9;
  --bg-dark-1: #131419;
  --bg-dark-2: #1E2027;
  --bg-dark-3: #0D0D12;
  --bg-dark-4: #0A0A0F;
  --font-light: rgb(197, 197, 197);
  --font-dark: #454545;

  --cp-primary: linear-gradient(139.73deg, #91298C 4.36%, #8e537e 92.55%);
  --cp-black: #131419;
  --cp-white: #ffffff;
  --cp-green: #429644;
  --cp-red: #C3060F;
}

:root {
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Manrope", sans-serif;
}

/*--------------------------------------------------
      02. Reveal animations
  ---------------------------------------------------*/
[data-anim-wrap] {
  pointer-events: none;
}

[data-anim-wrap].animated {
  pointer-events: auto;
}

[data-anim*='cover-white']::after,
[data-anim-child*='cover-white']::after {
  background-color: white;
}

[data-anim*='cover-black']::after,
[data-anim-child*='cover-black']::after {
  background-color: black;
}

[data-anim*='cover-light-1']::after,
[data-anim-child*='cover-light-1']::after {
  background-color: var(--bg-light-1);
}

[data-anim*='cover-light-2']::after,
[data-anim-child*='cover-light-2']::after {
  background-color: var(--bg-light-2);
}

[data-anim*='cover-dark-1']::after,
[data-anim-child*='cover-dark-1']::after {
  background-color: var(--bg-dark-1);
}

[data-anim*='cover-dark-2']::after,
[data-anim-child*='cover-dark-2']::after {
  background-color: var(--bg-dark-2);
}

[data-anim*='cover-accent']::after,
[data-anim-child*='cover-accent']::after {
  background-color: var(--accent-color);
}

@-webkit-keyframes reveal {
  100% {
    opacity: 1;
  }
}

@keyframes reveal {
  100% {
    opacity: 1;
  }
}

[data-anim^='img-fade'],
[data-anim-child^='img-fade'] {
  overflow: hidden;
  display: block;
  position: relative;
}

[data-anim^='img-fade']>*,
[data-anim-child^='img-fade']>* {
  pointer-events: none;
  opacity: 0;
  transform: scale(1.5);
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-anim^='img-fade'].is-in-view>*,
[data-anim-child^='img-fade'].is-in-view>* {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-anim^='img-right'],
[data-anim-child^='img-right'] {
  overflow: hidden;
  display: block;
  position: relative;
}

[data-anim^='img-right']::after,
[data-anim-child^='img-right']::after {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  right: 0;
  z-index: 20;
  height: calc(100% + 0.125rem);
  width: calc(100% + 0.125rem);
  transform-origin: right;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[data-anim^='img-right']>*,
[data-anim-child^='img-right']>* {
  transform-origin: center;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[data-anim^='img-right'].is-in-view::after,
[data-anim-child^='img-right'].is-in-view::after {
  -webkit-animation-name: imgRight;
  animation-name: imgRight;
}

[data-anim^='img-right'].is-in-view>*,
[data-anim-child^='img-right'].is-in-view>* {
  -webkit-animation-name: imgReveal;
  animation-name: imgReveal;
}

@-webkit-keyframes imgRight {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes imgRight {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@-webkit-keyframes imgReveal {
  0% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1.01);
  }
}

@keyframes imgReveal {
  0% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1.01);
  }
}

[data-anim^='slide-'],
[data-anim-child^='slide-'] {
  opacity: 0;
  transition-property: opacity, transform;
  pointer-events: none;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anim^='slide-'].is-in-view,
[data-anim-child^='slide-'].is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

[data-anim^='slide-up'],
[data-anim-child^='slide-up'] {
  transform: translate3d(0, 2.125rem, 0);
}

[data-anim^='slide-down'],
[data-anim-child^='slide-down'] {
  transform: translate3d(0, -2.125rem, 0);
}

[data-anim^='slide-right'],
[data-anim-child^='slide-right'] {
  transform: translate3d(-2.125rem, 0, 0);
}

[data-anim^='slide-left'],
[data-anim-child^='slide-left'] {
  transform: translate3d(2.125rem, 0, 0);
}

[data-anim^='fade'],
[data-anim-child^='fade'] {
  opacity: 0;
  transition-property: opacity;
  pointer-events: none;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-anim^='fade'].is-in-view,
[data-anim-child^='fade'].is-in-view {
  opacity: 1;
  pointer-events: auto;
}

[data-anim*="delay-1"],
[data-anim-child*="delay-1"] {
  transition-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

[data-anim*="delay-1"]::after,
[data-anim-child*="delay-1"]::after {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

[data-anim*="delay-1"]>*,
[data-anim-child*="delay-1"]>* {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

[data-anim*="delay-2"],
[data-anim-child*="delay-2"] {
  transition-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

[data-anim*="delay-2"]::after,
[data-anim-child*="delay-2"]::after {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

[data-anim*="delay-2"]>*,
[data-anim-child*="delay-2"]>* {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

[data-anim*="delay-3"],
[data-anim-child*="delay-3"] {
  transition-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

[data-anim*="delay-3"]::after,
[data-anim-child*="delay-3"]::after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

[data-anim*="delay-3"]>*,
[data-anim-child*="delay-3"]>* {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

[data-anim*="delay-4"],
[data-anim-child*="delay-4"] {
  transition-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

[data-anim*="delay-4"]::after,
[data-anim-child*="delay-4"]::after {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

[data-anim*="delay-4"]>*,
[data-anim-child*="delay-4"]>* {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

[data-anim*="delay-5"],
[data-anim-child*="delay-5"] {
  transition-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

[data-anim*="delay-5"]::after,
[data-anim-child*="delay-5"]::after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

[data-anim*="delay-5"]>*,
[data-anim-child*="delay-5"]>* {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

[data-anim*="delay-6"],
[data-anim-child*="delay-6"] {
  transition-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

[data-anim*="delay-6"]::after,
[data-anim-child*="delay-6"]::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

[data-anim*="delay-6"]>*,
[data-anim-child*="delay-6"]>* {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

[data-anim*="delay-7"],
[data-anim-child*="delay-7"] {
  transition-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

[data-anim*="delay-7"]::after,
[data-anim-child*="delay-7"]::after {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

[data-anim*="delay-7"]>*,
[data-anim-child*="delay-7"]>* {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

[data-anim*="delay-8"],
[data-anim-child*="delay-8"] {
  transition-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

[data-anim*="delay-8"]::after,
[data-anim-child*="delay-8"]::after {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

[data-anim*="delay-8"]>*,
[data-anim-child*="delay-8"]>* {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

[data-anim*="delay-9"],
[data-anim-child*="delay-9"] {
  transition-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

[data-anim*="delay-9"]::after,
[data-anim-child*="delay-9"]::after {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

[data-anim*="delay-9"]>*,
[data-anim-child*="delay-9"]>* {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

[data-anim*="delay-10"],
[data-anim-child*="delay-10"] {
  transition-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

[data-anim*="delay-10"]::after,
[data-anim-child*="delay-10"]::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

[data-anim*="delay-10"]>*,
[data-anim-child*="delay-10"]>* {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

[data-anim*="delay-11"],
[data-anim-child*="delay-11"] {
  transition-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

[data-anim*="delay-11"]::after,
[data-anim-child*="delay-11"]::after {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

[data-anim*="delay-11"]>*,
[data-anim-child*="delay-11"]>* {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

[data-anim*="delay-12"],
[data-anim-child*="delay-12"] {
  transition-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

[data-anim*="delay-12"]::after,
[data-anim-child*="delay-12"]::after {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

[data-anim*="delay-12"]>*,
[data-anim-child*="delay-12"]>* {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

[data-anim*="delay-13"],
[data-anim-child*="delay-13"] {
  transition-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

[data-anim*="delay-13"]::after,
[data-anim-child*="delay-13"]::after {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

[data-anim*="delay-13"]>*,
[data-anim-child*="delay-13"]>* {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

[data-anim*="delay-14"],
[data-anim-child*="delay-14"] {
  transition-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

[data-anim*="delay-14"]::after,
[data-anim-child*="delay-14"]::after {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

[data-anim*="delay-14"]>*,
[data-anim-child*="delay-14"]>* {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

[data-anim*="delay-15"],
[data-anim-child*="delay-15"] {
  transition-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

[data-anim*="delay-15"]::after,
[data-anim-child*="delay-15"]::after {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

[data-anim*="delay-15"]>*,
[data-anim-child*="delay-15"]>* {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

[data-anim*="delay-16"],
[data-anim-child*="delay-16"] {
  transition-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

[data-anim*="delay-16"]::after,
[data-anim-child*="delay-16"]::after {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

[data-anim*="delay-16"]>*,
[data-anim-child*="delay-16"]>* {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

[data-anim*="delay-17"],
[data-anim-child*="delay-17"] {
  transition-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

[data-anim*="delay-17"]::after,
[data-anim-child*="delay-17"]::after {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

[data-anim*="delay-17"]>*,
[data-anim-child*="delay-17"]>* {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

[data-anim*="delay-18"],
[data-anim-child*="delay-18"] {
  transition-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

[data-anim*="delay-18"]::after,
[data-anim-child*="delay-18"]::after {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

[data-anim*="delay-18"]>*,
[data-anim-child*="delay-18"]>* {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

[data-anim*="delay-19"],
[data-anim-child*="delay-19"] {
  transition-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

[data-anim*="delay-19"]::after,
[data-anim-child*="delay-19"]::after {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

[data-anim*="delay-19"]>*,
[data-anim-child*="delay-19"]>* {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

[data-anim*="delay-20"],
[data-anim-child*="delay-20"] {
  transition-delay: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

[data-anim*="delay-20"]::after,
[data-anim-child*="delay-20"]::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

[data-anim*="delay-20"]>*,
[data-anim-child*="delay-20"]>* {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*--------------------------------------------------
      03. Base
  ---------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  font-family: var(--font-primary);
  color: var(--font-dark);
  line-height: 1;
  font-size: 16px;
}

@media (min-width: 1600px) {
  html {
    font-size: 1vw;
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 0.92vw;
  }
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  background-color: white;
  color: var(--font-dark);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: var(--text-base);
}

@media (min-width: 1260px) {
  .container {
    max-width: 77rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

::-moz-selection {
  color: white;
  background-color: var(--accent-color);
  text-shadow: none;
}

::selection {
  color: white;
  background-color: var(--accent-color);
  text-shadow: none;
}

main {
  overflow-x: hidden;
}

section {
  overflow: hidden;
  position: relative;
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 200ms ease-in-out;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 8px;
  /* list-style-position: inside; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

button:focus {
  outline: 0;
}

/*--------------------------------------------------
      04. Buttons
  ---------------------------------------------------*/
button {
  padding: unset;
  margin: unset;
  border: unset;
  border-radius: unset;
  background-color: unset;
}

.button {
  display: inline-block;
  border: 0;
  transition: background-color 300ms cubic-bezier(0.165, 0.84, 0.44, 1), color 300ms cubic-bezier(0.165, 0.84, 0.44, 1), border 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-xs {
  min-width: 5.5rem;
  padding: 0.9375rem 1.6875rem;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}


.button.-sm {
  min-width: 7.5rem;
  padding: 0.9375rem 1.6875rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.button.-md {
  min-width: 8.25rem;
  padding: 1.125rem 1.875rem;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}



@media (max-width: 767px) {
  .button.-md {
    padding: 0.9375rem 1.5rem;
    font-size: 0.875rem;
  }
}

.button.-lg {
  min-width: 8.75rem;
  padding: 1.125rem 2rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .button.-lg {
    padding: 1.125rem 2rem;
    font-size: 0.875rem;
  }
}

.button.-outline-white,
.button.-outline-black,
.button.-white,
.button.-black {
  text-align: center;
  border-radius: 3.75rem;
}

@media (max-width: 767px) {

  .button.-outline-white,
  .button.-outline-black,
  .button.-white,
  .button.-black {
    min-width: 7.75rem;
  }
}

.button.-white {
  background-color: white;
  border: 0.0625rem solid white;
}

.button.-white:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 0.0625rem solid var(--accent-color);
}

.button.-black {
  background-color: var(--accent-color);
  border: 0.0625rem solid var(--accent-color);
}
.button.-gray {
  background-color: #5E5F5E;
  border: 0.0625rem solid #5E5F5E;
}

.button.-black:hover {
  background-color: transparent;
  color: #fff !important;
}
.carrer-btn{
  color: white;
}
.btn-theme {
  background-color: var(--accent-color);
  color: var(--cp-white);
  text-decoration: none;
  border-radius: 30px;
  padding:8px 25px;
  display: inline-block;
  border:solid 1px var(--accent-color);
}
.btn-theme:hover {
  color:var(--cp-white)
}
.btn-stroke {
background-color: var(--cp-white);
  color: var(--bg-dark-2);
  text-decoration: none;
  border-radius: 30px;
  padding:8px 25px;
  display: inline-block;
  border:solid 1px var(--bg-dark-2)
}
.btn-stroke:hover {
   color: var(--accent-color) !important;
  border:solid 1px var(--accent-color)
}
.bannerImgs {
    position: relative;
    background-image: url(../img/products/tms-mobile-banner.png);
    background-position: right 50px;
    background-size: contain;
    background-repeat: no-repeat;
}
.bannerImgs:after {
    position: absolute;
    content: "";
    background-image: url(../img/products/tms-bg-img.png);
    width: 20%;
    right: 0;
    top: 0;
    height: 80%;
    z-index: -1;
}
.banner01Docs {
   position: relative;
    background-image: url(../img/products/01docs-banner.png);
        background-position: right center;
    background-size: 43%;
    background-repeat: no-repeat;
}
.banner01Docs:after {
    position: absolute;
    content: "";
    background-image: url(../img/products/tms-bg-img.png);
    width: 20%;
    right: 0;
    top: 0;
    height: 80%;
    z-index: -1;
}
.bannerpims {
   position: relative;
    background-image: url(../img/products/pims-banner.png);
        background-position:90% center;
    background-size: 35%;
    background-repeat: no-repeat;
}
.bannerpims:after {
    position: absolute;
    content: "";
    background-image: url(../img/products/tms-bg-img.png);
    width: 20%;
    right: 0;
    top: 0;
    height: 80%;
    z-index: -1;
}
.banneriwms {
   position: relative;
    background-image: url(../img/products/iwms-banner.png);
        background-position: right center;
    background-size: 35%;
    background-repeat: no-repeat;
}
.banneriwms:after {
    position: absolute;
    content: "";
    background-image: url(../img/products/tms-bg-img.png);
    width: 20%;
    right: 0;
    top: 0;
    height: 80%;
    z-index: -1;
}
@media(max-width:767px) {
  .banner01Docs, .banneriwms, .bannerpims, .bannerImgs {
    background-image: none;
  }
}
.bgLight {
  background-color: #F8F9FB;
  border-radius: 20px;
  padding:30px
}
.whyTms {
  display: flex;
  flex-flow: wrap;
  height: 100%;
  justify-content: space-around;
}
.menuImg {
  width:80% !important;
  margin: auto;
}
@media(max-width:767px) {
  .menuImg {
  display: none;
}
}
.whyTms li {
  width: 100%;
   box-shadow: 0px 0px 17px 0px #dddddd8c;
    line-height:20px;
     margin: 10px;
     padding: 10px;
    border-radius: 5px;
    height: auto;
}
.whyTms li h3 {
  width: 100%;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
}
.whyTms li p {
  width: 100%;
  font-weight: 500;
  color: #3a3a3a;
  font-size: 16px;
}
.imgTmsElem{
      position: relative;
    width: 60%;
    text-align: right;
    padding-right: 16px;
}
.imgTmsElem:before{
      position: absolute;
    content: "";
    background-image: url(../img/products/tms-app-bg.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 100%;
    z-index: -1;
    left: 5%;
    background-position: left center;
}
.keyFeatureUl {
  display: flex;
  flex-flow: wrap;
}
.keyFeatureUl li {
    width: 46%;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--cp-white);
    text-align: left;
    margin: 10px;
    display:flex;
    align-items: center;
    box-shadow: 0px 0px 17px 0px #dddddd8c;
    font-weight:500;
    line-height:20px
}
.keyFeatureUlCommon {
display: flex;
  flex-flow: wrap;
  gap: 2%;
  margin:0;
}
.keyFeatureUlCommon li.width45 {
width:45%
}
.keyFeatureUlCommon li {
      width: 20%;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--cp-white);
    text-align: left;
    margin: 10px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0px 0px 17px 0px #dddddd8c;
    font-weight: 500;
    line-height: 20px;
    min-height: 150px;
    flex-flow: column;
        justify-content: center;
}
.keyFeatureUlCommon li h3 {
      font-size: 20px;
    margin: 10px 0;
    text-align: center;
    width: 100%;
}
.keyFeatureUlCommon li i {
  font-size:30px;
  margin-bottom:15px
}
.keyFeatureUlCommon li p {
  font-size:16px
}
@media (max-width:767px) {
  .keyFeatureUlCommon {

  }
  .keyFeatureUlCommon li {
    width: 100% !important;
  }
  
}
.width45 {
  width:45%
}
.tmsApp {
  display: flex;
    align-items: center;
}
.contentTMsapp {
      width: 40%;
    text-align: left;
}
.contentTMsapp h3 {
  font-size: 22px;
}
.contentTMsapp p {
font-size: 16px;
    line-height: 18px;
}
.imgTmsElem.text-left:before {
    background-position: right center;
    right: 5%;
    left:inherit;
}
.button.carrer-btn:hover {
  color: var(--accent-color) !important;
}

.button.-outline-black {
  background-color: transparent;
  border: 0.0625rem solid #121212;
}

.button.-outline-black:hover {
  background-color: #121212;
  color: white;
}

.button.-outline-white {
  background-color: transparent;
  border: 0.0625rem solid #ffffff;
}

.button.-outline-white:hover {
  background-color: var(--accent-color);
  color: black;
}

.button.-underline {
  position: relative;
  padding-bottom: 0.125rem;
  transition: color 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: left;
  transform: scaleX(0);
}

.button.-underline:hover::before {
  transform: scaleX(1);
}

.button.-icon .icon {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-icon:hover .icon {
  transform: translateX(0.375rem);
}

.bg-violet a:hover{
  color: #bcb4ff;
}

/*--------------------------------------------------
      05. Forms
  ---------------------------------------------------*/
form label,
form p {
  font-size: 0.9375rem;
  line-height: 1;
  color: black;
}

form input[type="text"],
form input[type="search"],
form textarea,
form input[type="email"],select {
  border: 0;
  font-size: .9rem;
  line-height: 1.5;
  font-weight: 500;
  width: 100%;
  padding: 14px 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: border 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

@media (max-width: 767px) {

  form input[type="text"],
  form input[type="search"],
  form textarea,
  form input[type="email"] {
    font-size: 1.0625rem;
  }
}

form input[type="text"]:focus,
form input[type="search"]:focus,
form textarea:focus,
form input[type="email"]:focus {
  outline: none;
  border-bottom: 1px solid black;
}

form ::-webkit-input-placeholder {
  font-weight: 400;
}

form ::-moz-placeholder {
  font-weight: 400;
}

form :-ms-input-placeholder {
  font-weight: 400;
}

form ::-ms-input-placeholder {
  font-weight: 400;
}

form ::placeholder {
  font-weight: 400;
}

form.-light label,
form.-light p {
  color: white;
}

form.-light input[type="text"],
form.-light input[type="search"],
form.-light textarea,
form.-light input[type="email"] {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

form.-light ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.-light ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.-light :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.-light ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.-light ::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------
      06. Typography
  ---------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: black;
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-5xl);
}

h3 {
  font-size: var(--text-4xl);
}

h4 {
  font-size: var(--text-3xl);
}

h5 {
  font-size: var(--text-2xl);
}

h6 {
  font-size: var(--text-xl);
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

.text-4xl {
  font-size: var(--text-4xl);
}

.text-5xl {
  font-size: var(--text-5xl);
}

.text-6xl {
  font-size: var(--text-6xl);
}

@media (max-width: 1229px) {
  .lg\:text-xs {
    font-size: var(--text-xs);
  }

  .lg\:text-sm {
    font-size: var(--text-sm);
  }

  .lg\:text-base {
    font-size: var(--text-base);
  }

  .lg\:text-lg {
    font-size: var(--text-lg);
  }

  .lg\:text-xl {
    font-size: var(--text-xl);
  }

  .lg\:text-2xl {
    font-size: var(--text-2xl);
  }

  .lg\:text-3xl {
    font-size: var(--text-3xl);
  }

  .lg\:text-4xl {
    font-size: var(--text-4xl);
  }

  .lg\:text-5xl {
    font-size: var(--text-5xl);
  }

  .lg\:text-6xl {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 991px) {
  .md\:text-xs {
    font-size: var(--text-xs);
  }

  .md\:text-sm {
    font-size: var(--text-sm);
  }

  .md\:text-base {
    font-size: var(--text-base);
  }

  .md\:text-lg {
    font-size: var(--text-lg);
  }

  .md\:text-xl {
    font-size: var(--text-xl);
  }

  .md\:text-2xl {
    font-size: var(--text-2xl);
  }

  .md\:text-3xl {
    font-size: var(--text-3xl);
  }

  .md\:text-4xl {
    font-size: var(--text-4xl);
  }

  .md\:text-5xl {
    font-size: var(--text-5xl);
  }

  .md\:text-6xl {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 767px) {
  .sm\:text-xs {
    font-size: var(--text-xs);
  }

  .sm\:text-sm {
    font-size: var(--text-sm);
  }

  .sm\:text-base {
    font-size: var(--text-base);
  }

  .sm\:text-lg {
    font-size: var(--text-lg);
  }

  .sm\:text-xl {
    font-size: var(--text-xl);
  }

  .sm\:text-2xl {
    font-size: var(--text-2xl);
  }

  .sm\:text-3xl {
    font-size: var(--text-3xl);
  }

  .sm\:text-4xl {
    font-size: var(--text-4xl);
  }

  .sm\:text-5xl {
    font-size: var(--text-5xl);
  }

  .sm\:text-6xl {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 575px) {
  .xs\:text-xs {
    font-size: var(--text-xs);
  }

  .xs\:text-sm {
    font-size: var(--text-sm);
  }

  .xs\:text-base {
    font-size: var(--text-base);
  }

  .xs\:text-lg {
    font-size: var(--text-lg);
  }

  .xs\:text-xl {
    font-size: var(--text-xl);
  }

  .xs\:text-2xl {
    font-size: var(--text-2xl);
  }

  .xs\:text-3xl {
    font-size: var(--text-3xl);
  }

  .xs\:text-4xl {
    font-size: var(--text-4xl);
  }

  .xs\:text-5xl {
    font-size: var(--text-5xl);
  }

  .xs\:text-6xl {
    font-size: var(--text-6xl);
  }
}

.leading-xs {
  line-height: 1.1 !important;
}

.leading-sm {
  line-height: 1.2 !important;
}

.leading-md {
  line-height: 1.3 !important;
}

.leading-lg {
  line-height: 1.4 !important;
}

.leading-xl {
  line-height: 1.5 !important;
}

.leading-2xl {
  line-height: 1.6 !important;
}

.leading-3xl {
  line-height: 1.7 !important;
}

.leading-4xl {
  line-height: 1.8 !important;
}

.leading-5xl {
  line-height: 1.9 !important;
}

.leading-6xl {
  line-height: 2 !important;
}

.tracking-none {
  letter-spacing: 0 !important;
}

.tracking-sm {
  letter-spacing: 0.08em !important;
}

.tracking-md {
  letter-spacing: 0.12em !important;
}

.tracking-lg {
  letter-spacing: 0.16em !important;
}

.number {
  font-family: var(--font-secondary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.number.-left {
  margin-left: -0.25rem;
}

.number.-sm {
  font-size: 3.75rem;
}

.number.-md {
  font-size: 4.6875rem;
}

.number.-lg {
  font-size: 5.625rem;
}

@media (max-width: 991px) {
  .number.-sm {
    font-size: 3.75rem;
  }

  .number.-md {
    font-size: 4.375rem;
  }

  .number.-lg {
    font-size: 5.25rem;
  }
}

@media (max-width: 767px) {
  .number.-sm {
    font-size: 3.5rem;
  }

  .number.-md {
    font-size: 4rem;
  }

  .number.-lg {
    font-size: 4.875rem;
  }
}

/*--------------------------------------------------
	12. Footer
---------------------------------------------------*/
.footer.-type-1 .footer-top {
  padding-top: 8.125rem;
  padding-bottom: 6.875rem;
}

@media (max-width: 991px) {
  .footer.-type-1 .footer-top {
    padding: 5rem 0;
  }
}

.footer.-type-1 .footer-title h2 {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .footer.-type-1 .footer-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .footer.-type-1 .footer-title h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 575px) {
  .footer.-type-1 .footer-title h2 {
    font-size: 1.75rem;
  }
}

.footer.-type-1 .footer-content a,
.footer.-type-1 .footer-content p {
  font-size: inherit;
  line-height: inherit;
}

.footer.-type-1 .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0;
}

@media (max-width: 991px) {
  .footer.-type-1 .footer-bottom {
    padding: 2.5rem 0;
  }
}

.footer.-type-1 .footer-bottom.-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.-type-1 .footer-logo {
  display: flex;
  align-items: center;
  z-index: 10;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer.-type-1 .footer-logo:hover {
  color: initial;
}

.footer.-type-1 .footer-logo img {
  height: 44%;
}

.footer.-type-1 .footer-copyright p {
  font-size: 0.875rem;
}
.ind-left-box {
  background-color: #070713;
  width: 98%;
  height: 163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height:48%;
  padding: 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
}
.ind-left-box h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}
.ind-left-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.ind-left-box a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.ind-left-box a svg {
    rotate: -55deg;
    width: 23px !important;
    vertical-align: top;
}
.ind-left-box a:hover svg {
  rotate: 0deg;
}
.bg-theme {
  background-color: var(--accent-color) !important;
}


.ind-right-box {
  background-color: #070713;
  width: 98%;
  height: 163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height:31%;
  padding: 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
}
.ind-right-box h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}
.ind-right-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height:20px;
}
.ind-right-box a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.ind-right-box a svg {
    rotate: -55deg;
    width: 23px !important;
    vertical-align: top;
}
.ind-right-box a:hover svg {
  rotate: 0deg;
}

.blogList .sectionHeading.-md .sectionheading-title {
  font-size: 2.5rem !important;
}

.left-top-cover {
  background-color: var(--accent-color);
  width: 98%;
  height: 163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.left-top-cover h3 {
  position: absolute;
    bottom: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
}
.left-top-cover:before {
    position: absolute;
    content: "";
    background-image: url(../img/services/arrow.png);
    background-repeat: no-repeat;
    width: 58px;
    height: 58px;
    background-size: auto;
    right: 15px;
    top: 15px;
}

.left-top-cover h3 strong, .left-btm-cover h3 strong, .right-top-cover h3 strong, .right-btm-cover h3 strong {
  font-size: 35px;
  font-weight: 600;
}

.left-btm-cover {
  background-color: #070713;
  width: 98%;
  height: 163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.left-btm-cover h3 {
  position: absolute;
    bottom: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
}
.left-btm-cover:before {
    position: absolute;
    content: "";
    background-image: url(../img/services/star.png);
    background-repeat: no-repeat;
        width: 70px;
    height: 70px;
    background-size: contain;
    right: 15px;
    top: 15px;
}


.right-btm-cover {
  background-color: var(--accent-color);
  width: 98%;
  height: 163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.right-btm-cover h3 {
  position: absolute;
    bottom: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
}
.right-btm-cover:before {
    position: absolute;
    content: "";
    background-image: url(../img/services/element-star.png);
    background-repeat: no-repeat;
        width: 70px;
    height: 70px;
    background-size: contain;
    right: 15px;
    top: 15px;
}


.right-top-cover {
  background-color: #070713;
  width: 98%;
  height:163px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.right-top-cover h3 {
  position: absolute;
    bottom: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
}
.right-top-cover:before {
    position: absolute;
    content: "";
    background-image: url(../img/services/element-arrow.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    right: 15px;
    top: 15px;
}
.center-img-service {
  width: 98%;
  margin: 5px 0;
}
@media(max-width:981px) {
  .center-img-service  {
    display: none;
  }
}
@media(min-width:1400px) {
  .center-img-service img {
    height:100%
  }
}
@media(min-width:1600px) {
  .center-img-service img {
    height:95%
  }
}
.casestudyBox {
  display: flex;
  margin:30px 0; 
}
.casestudyBox .leftBox {
  display: flex;
  width: 50%;
  flex-flow: wrap;
}
.casestudyBox .rightBox {
  display: flex;
  width: 50%;
  flex-flow: wrap;
}
.casestudyBox .rightBox .highlights {
  background-color: #fff;
}
.casestudyBox .leftBox .highlights {
  background-color: #eeeeee;
}
.casestudyBox .rightBox .highlights ul, .casestudyBox .leftBox .highlights ul {
  margin-top: 15px;
}
.casestudyBox .rightBox .highlights ul li {
  list-style-type: circle;
  margin-bottom: 10px;
}
.casestudyBox .leftBox .highlights ul li {
  list-style-type: circle;
  margin-bottom: 10px;
}

.casestudyBox .leftBox .innerLeft h3, .casestudyBox .rightBox .innerLeft h3 {
  font-size:18px;
  font-weight: 600;
  margin-bottom: 15px;
  color:#fff;
}
.casestudyBox .leftBox .innerLeft, .casestudyBox .rightBox .innerLeft {
  background-color: var(--accent-color);
  padding:20px;
  width:50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
.casestudyBox .leftBox .innerright, .casestudyBox .rightBox .innerright {

  width:50%;
  overflow: hidden;
}
.casestudyBox .leftBox .innerLeft ul, .casestudyBox .rightBox .innerLeft ul {
  list-style-type: circle;
}
.casestudyBox .leftBox .innerLeft ul li, .casestudyBox .rightBox .innerLeft ul li {
list-style: circle;
color:#fff;
}
.casestudyheadUl {

}
.casestudyheadUl li {
  display: inline-block;
  margin: 5px;
  padding:5px 20px;
  border:solid 2px #979296;
  border-radius: 20px;
}
@media (max-width:767px) {

  .casestudyBox {
    flex-flow: column;
  }
  .casestudyBox .leftBox {
    width: 100%;
    flex-flow: column-reverse;
    margin-bottom: 20px;
  }
  .casestudyBox .leftBox .innerLeft, .casestudyBox .rightBox .innerLeft {
    width:100%
  }
  .casestudyBox .rightBox {
    flex-flow: column-reverse;
    width: 100%;
  }
  .casestudyBox .leftBox .innerright, .casestudyBox .rightBox .innerright {
    width:100%
  }
}
.dm-cover {
  background-image: url(../img/services/DM-Branding.jpg);
  width: 98%;
  height: 500px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  padding-top:350px;
   background-size: cover;
  z-index: 0;
}
.dm-cover:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right:0;
  height: 350px;
  content: "";
  z-index: 1;
  /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=ffffff00&c2=c799da&gt=l&gd=dtt
*/
background: #FFFFFF00;
background: linear-gradient(180deg, #FFFFFF00, #91298C);  
}
.dm-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.dm-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.dm-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}
.mob-dummy-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}
.dm-cover a:hover svg,.outsource-cover a:hover svg, .custom-software-cover a:hover svg,.web-design-cover a:hover svg, .mob-app-cover a:hover svg, .mob-dummy-cover a:hover svg {
  rotate: 0deg;
}

.outsource-cover {
  background-image: url(../img/services/resource-outsourcing.jpg);
  width: 98%;
  height: 500px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  padding-top:350px;
   background-size: cover;
  z-index: 0;
  margin-left:5px
}
.outsource-cover:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right:0;
  height: 350px;
  content: "";
  z-index: 1;
  /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=ffffff00&c2=c799da&gt=l&gd=dtt
*/
background: #FFFFFF00;
background: linear-gradient(180deg, #FFFFFF00, #91298C);  
}
.outsource-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.outsource-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.outsource-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}



.custom-software-cover {
  background-image: url(../img/services/custom-software.png);
  width: 48%;
  height: 360px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  padding-top:250px;
   background-size: cover;
  z-index: 0;
  display: inline-block;
}

.custom-software-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.custom-software-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.custom-software-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}


.web-design-cover {
  background-image: url(../img/services/webdesign-img.jpg);
  width: 48%;
    height: 360px;
    border-radius: 10px;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    background-size: cover;
    z-index: 0;
    display: inline-block;
    background-position: top;
}

.web-design-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.web-design-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.web-design-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}

.cp-logo-cover {
  padding:38px 10px;
  background-color: var(--cp-white);
  border: solid 1px #91298c5c;
  border-radius:10px;
  width: 98%;
}
@media (max-width:767px) {
  .custom-software-cover, .web-design-cover  {
  width: 98% !important;
  }
  .ai-ml-cover {
    padding-left: 0% !important;
  }
}
@media (max-width:981px) {
  .cp-logo-cover {
    display: none;
  }
}


.ai-ml-cover {
  background-image: url(../img/services/al-ml.jpg);
    width: 98%;
    height: 300px;
    border-radius: 10px;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    background-size: cover;
    z-index: 0;
    background-color: #1B1B1B;
    padding-left: 59%;
}

.ai-ml-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.ai-ml-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.ai-ml-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}


.mob-app-cover {
  background-image: url(../img/services/mobile-app-development.svg);
  width:98%;
  height: 350px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  padding-top:160px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.mob-app-cover:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right:0;
  top:0;
  content: "";
  z-index: 1;
  /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=ffffff00&c2=c799da&gt=l&gd=dtt
*/

background: rgba(0, 0, 0, 0);  
}
.mob-app-cover h4 {
  font-size: 22px;
  color:var(--cp-white);
  padding:10px 20px;
  z-index: 2;
  position:relative;
  font-weight: 500;
  margin-bottom: 0px;
}
.mob-app-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.mob-app-cover a svg {
  rotate: -55deg;
  width: 23px !important;
  vertical-align: top;
}


.mob-dummy-cover {
  background-image: url(../img/services/mobile-dummy.png);
  width: 98%;
  height: 360px;
  border-radius: 10px;
  margin:5px 0;
  position: relative;
  overflow: hidden;
  padding-top:200px;
  background-size: 72%;
  z-index: 0;
  background-position: right bottom;
  background-color: #91298C;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.mob-dummy-cover h4 {
    font-size: 22px;
    color: var(--cp-white);
    padding: 10px 20px;
    z-index: 2;
    position: relative;
    font-weight: 500;
    margin-bottom: 0px;
}
.mob-dummy-cover a {
  font-size: 14px;
  color:var(--cp-white);
  padding:20px;
  z-index: 2;
  position:relative
}
.bg-gray {
  background-color: #F1F1F1;
}
@media (max-width:981px) {
  .mob-dummy-cover {
    display:none
  }
}



#testimonial-slider .testimonial{
            margin: 20px ;
        }
        #testimonial-slider .testimonial .testimonial-content{
            padding: 35px 25px 35px 50px;
            margin-bottom: 35px;
            background: #fff;
            position: relative;
        }
        
        #testimonial-slider .testimonial-content .testimonial-icon{
            width: 50px;
            height: 45px;
            background: #F1F1F1;
            text-align: center;
            font-size: 22px;
            color: var(--accent-color);
            line-height: 42px;
            position: absolute;
            top: 37px;
            left: -19px;
        }
        #testimonial-slider .testimonial-content .testimonial-icon:before{
            content: "";
            border-bottom: 16px solid #F1F1F1;
            border-left: 18px solid transparent;
            position: absolute;
            top: -16px;
            left: 1px;
        }
        #testimonial-slider .testimonial .description{
            font-size: 15px;
            color: #8a8a8a;
            line-height: 23px;
            margin: 0;
        }
        #testimonial-slider .testimonial .title{
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #444;
            text-transform: capitalize;
            letter-spacing: 1px;
            margin: 0 0 5px 0;
        }
        #testimonial-slider .testimonial .post{
            display: block;
            font-size: 14px;
            color:#444;
        }
        #testimonial-slider .owl-theme .owl-controls{
            margin-top: 20px;
        }
        #testimonial-slider .owl-theme .owl-controls .owl-page span{
            background: #ccc;
            opacity: 1;
            transition: all 0.4s ease 0s;
        }
        #testimonial-slider .owl-theme .owl-controls .owl-page.active span,
        #testimonial-slider .owl-theme .owl-controls.clickable .owl-page:hover span{
            background: var(--accent-color);
        }
        #testimonial-slider .owl-carousel button.owl-dot {
         
            opacity: 1;
            transition: all 0.4s ease 0s;
        }
        #testimonial-slider .owl-dots {
            display:flex;
            justify-content:center;
        }
   #testimonial-slider .owl-dots span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791
}
   #testimonial-slider .owl-dot.active span {
    background:#e4e4e4;
   }
.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}
.counter-container small {
  margin-left:5px;
  font-size: 40px;
    font-weight: 700;
     color: #000;
}
.counter-container .label {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #000;
}
.display-4 {
  display: inline-block;
    color:#000;
      font-size: 40px;
      font-weight: 700;
}
.counter {
  font-size: 60px;
  margin-top: 10px;
}
.tmsaPartUl {
  display: flex;
  width: 100%;
}
.tmsaPartUl li {
  border-radius: 12px;
    background: linear-gradient(178deg, #852782 1.69%, #521C58 97.96%);
    display: flex;
    padding: 25px;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    flex-flow: column;

}
.tmsaPartUl li i {
  font-size: 35px;
  color:#fff;
}
.tmsaPartUl li h3 {
  font-size: 22px;
  color:#fff;
  margin-bottom: 15px;
}
.tmsaPartUl li p {
  font-size: 16px;
    color: #fff;
    line-height: 22px;
}
.white-bottom-border {
  border-bottom:solid 2px #ddd
}
.demoBooking h3 {
  font-size: 2.2rem;
  line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin:20px 0;
}
.demoBooking p {
  font-size: 16px;
    margin-bottom: 10px;
}
.demoBooking p strong {
  font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}
.theme-bg {
  background-color: var(--accent-color);
}
.setshthree {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    flex-flow: wrap;
}
.setshthree h3 {
  font-weight: 700;
  margin:20px 0;
  font-size: 50px;
}
.setshthree h3 span {
  color: var(--accent-color);
}
.teams p {
  font-weight: 400;
    line-height: 21px;
}
.teams img {
  width:100px;
  margin-bottom:20px
}
.theme-Product-cover {
  background-color: var(--accent-color);
      margin: 50px auto;
    padding: 50px 20px;
    width: 90%;
    border-radius: 20px;
    
}
.theme-industries-cover {
  background: linear-gradient(137deg, #91298C 20.5%, #2B0C2A 95.97%);
      margin: 50px auto;
    padding: 50px 20px;
    width: 100%;
    border-radius: 0px;
    
}
.theme-testimonial-cover {
  background-color: #f8f8f8;
      margin: 50px auto;
    padding: 50px 20px;
    width: 100%;
    border-radius: 0px;
    
}
.theme-testimonial-cover .testimonial .title {
  color: #131419;
}
.theme-testimonial-cover .testimonial .post {
    display: block;
    font-size: 14px;
    color: #131419;
}
.theme-testimonial-black-cover .sectionhead-subtitle {
  color: #fff;
}
.theme-testimonial-black-cover .sectionHeading.-lg .sectionheading-title {
  color: #fff;
}
.theme-testimonial-black-cover {
  background-color: #131419;
      margin: 50px auto;
    padding: 50px 20px;
    width: 100%;
    border-radius: 0px;
    
}

.theme-testimonial-black-cover .testimonial .title {
  color: #fff;
}
.theme-testimonial-black-cover .testimonial .post {
    display: block;
    font-size: 14px;
    color: #fff;
}

.theme-testimonial-black-cover #testimonial-slider .testimonial .title {
    color: #fff;
}
.theme-testimonial-black-cover #testimonial-slider .testimonial .post {
    color: #fff;
}

.theme-industries-cover .text-white h3, .theme-industries-cover .text-white h2 {
  color: var(--cp-white) !important;
}

.industries-2 h3 , .industries-1 h3, .industries-full h3  {
  font-size: 25px;
  margin-bottom: 20px;
}
.flex-flow-wrap {
  flex-flow:wrap;
}
.productsListCover {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  flex-flow: wrap;
}
.proListBox {
  width: 48%;
  background-color: var(--cp-white);
  padding:20px 20px 0 20px;
  border-radius: 10px;
  margin:10px 0;
  text-align: center;
  display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-around;
}
.proLogo {

}
.icon-theme-color {
  color:var(--accent-color);
  font-size: 45px;
}
.proName {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight:800;
}
.proSub {
  font-size: 18px;
  font-weight: 500;
  margin-bottom:20px;
  color:#5b5b5b
}
.proDesc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.proLink {
  margin-bottom: 20px;
  padding:10px !important;
}
.proTile img {
    width: 70%;
}
.moduleh {
  font-size: 2rem;
    padding-left: 12px;
    font-weight: 500;
    letter-spacing: -1px;
    color: #2c2c2c;
    margin-bottom: 15px;
}
.sysOverdiv {
  padding:25px 15px; border-radius:10px; background-color:#fff; height:100%
}
.sysOverdiv .keyFeatureUlCommon li {box-shadow: none; border:solid 1px #ddd}
@media (max-width:767px) {
  .theme-Product-cover {
    width:98%;
        padding: 30px 10px;
  }
  .proListBox {
    width: 98%;
  }
  .proTile img {
    width: 70%;
}
.keyFeatureUl li {
    width: 100%;
}
.bannerImgs {
  background-image: none;
}
.btn-theme, .btn-stroke {
  margin-bottom: 10px;
}
.bgLight {
  padding:10px
}
.imgTmsElem img {
  width: -webkit-fill-available;
}
.imgTmsElem:before {
  background-position: right center;
}
.tmsaPartUl {
  flex-flow: wrap;
}
.tmsaPartUl li {
  margin-bottom:15px
}
}

.technologiesUl {
  display:flex;
  flex-flow: wrap ;
  margin-left:0;
}

.technologiesUl li {
  display:flex;
  justify-content: center;
  align-items: center;
  width:13.5% ;
  min-height: 140px;
}
.technologiesUl li:nth-child(odd) {
  background-color: #F7F7F7;
}
.technologiesUl li img {
  max-width: 70%;
  max-height: 65px; 
}



.technologies-Ul {
  display:flex;
  flex-flow: wrap ;
  margin-left:0;
  justify-content: space-around;
  margin-top: 20px;
}

.technologies-Ul li {
  display:flex;
  justify-content: center;
  align-items: center;
  width:16% ;
  min-height: 200px;
  flex-flow: wrap;
  padding:20px
}

.technologies-Ul li h3 {
  font-size: 16px;
  text-align: center;
}
.technologies-Ul li:nth-child(odd) {
  background-color: #F7F7F7;
}
.technologies-Ul li img {
  max-width: 70%;
  max-height: 65px; 
}
.mobile-hide {
  display: block;
}
@media(max-width:767px) {
  .technologiesUl li {
    width:45%;
  }
  .mobile-hide {
  display: none;
}
}


/* accordion */
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #000;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #000;
  border: 1px solid #000;
}

.accordion button .accordion-title {
  padding: .2em 1.5em 1em 0;
  display: inline-block;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 26px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #000;
  
}
.accordion button[aria-expanded='true'] .icon::after, .accordion button[aria-expanded='true'] .icon::before {
rotate: 45deg;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 18em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  /* font-size: 1rem; */
  font-weight: 300;
  margin: 2em 0;
}
/*--------------------------------------------------
	16. Header, menus
---------------------------------------------------*/
/*--------------------------------------------------
	06. Header
---------------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: 5rem;
}

.header-bar {
  position: absolute;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 3rem;
}

@media (max-width: 767px) {
  .header {
    height: 3.75rem;
  }

  .header-bar {
    padding: 0 1.5rem;
  }
}

.header-logo {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: -0.02em;
  width: 150px;
}

.header-logo a {
  height: 100%;
}

.header-logo div,
.header-logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
  opacity: 0;
}

@media (min-width: 992px) {
  .header.-classic .header-menu-wrap {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header.-classic .navClassic-wrap {
    display: none;
  }
}

.header .header-logo-dark {
  position: relative;
  opacity: 1;
}

.header .header-logo a {
  color: black;
}

.header .navClassic-list>li {
  color: black;
}

.header .menu-header-list li a {
  color: black;
}

.header .header-menu .icon {
  color: black;
}

.header.-dark .header-logo-light {
  position: relative;
  opacity: 1;
}

.header.-dark .header-logo-dark {
  position: absolute;
  opacity: 0;
}

.header.-dark .header-logo a {
  color: black;
}

.header.-dark .navClassic-list>li {
  color: black;
}

.header.-dark .menu-header-list li a {
  color: black;
}

.header.-dark .header-menu .icon {
  color: var(--cp-black);
}
.header.-white .header-menu .icon  {
  color: var(--cp-white);
}
.header.-sticky-initial.-sticky-light .header-bar,
.header.is-sticky.-sticky-light .header-bar {
  background-color: #fff;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  opacity: 0.98;
}

.header.-sticky-initial.-sticky-light .header-logo-light,
.header.is-sticky.-sticky-light .header-logo-light {
  position: absolute;
  opacity: 0;
}

.header.-sticky-initial.-sticky-light .header-logo-dark,
.header.is-sticky.-sticky-light .header-logo-dark {
  position: relative;
  opacity: 1;
}

.header.-sticky-initial.-sticky-light .header-logo a,
.header.is-sticky.-sticky-light .header-logo a {
  color: black;
}

.header.-sticky-initial.-sticky-light .navClassic-list>li,
.header.is-sticky.-sticky-light .navClassic-list>li {
  color: black;
}

.header.-sticky-initial.-sticky-light .menu-header-list li a,
.header.is-sticky.-sticky-light .menu-header-list li a {
  color: black;
}

.header.-sticky-initial.-sticky-light .header-menu .icon,
.header.is-sticky.-sticky-light .header-menu .icon {
  color: black;
}

.header.-sticky-initial.-sticky-light .header-bar {
  box-shadow: none;
}

.header.-sticky-initial.-sticky-light.is-sticky .header-bar {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.header.-sticky-initial.-sticky-dark .header-bar,
.header.is-sticky.-sticky-dark .header-bar {
  background-color: var(--bg-dark-4);
  opacity: 0.99;
}

.header.-sticky-initial.-sticky-dark .header-logo-light,
.header.is-sticky.-sticky-dark .header-logo-light {
  position: relative;
  opacity: 1;
}

.header.-sticky-initial.-sticky-dark .header-logo-dark,
.header.is-sticky.-sticky-dark .header-logo-dark {
  position: absolute;
  opacity: 0;
}

.header.-sticky-initial.-sticky-dark .header-logo a,
.header.is-sticky.-sticky-dark .header-logo a {
  color: white;
}

.header.-sticky-initial.-sticky-dark .navClassic-list>li,
.header.is-sticky.-sticky-dark .navClassic-list>li {
  color: white;
}

.header.-sticky-initial.-sticky-dark .menu-header-list li a,
.header.is-sticky.-sticky-dark .menu-header-list li a {
  color: white;
}

.header.-sticky-initial.-sticky-dark .header-menu .icon,
.header.is-sticky.-sticky-dark .header-menu .icon {
  color: white;
}

.header-menu .nav-button-open {
  cursor: pointer;
}

.header-menu .nav-button-open .icon {
  width: 2.25rem;
  height: 2.25rem;
  stroke-width: 1.25;
}

.header-menu .nav-button-open:hover .icon {
  color: var(--accent-color) !important;
}

.header {
  will-change: height, transform, background-color;
  transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s, transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
      background: rgba(255, 255, 255, 0.5);
}

.header .header-bar {
  transition: box-shadow 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s, background-color 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s;
}

.header .header-logo a {
  transition: color 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s;
}

.header .header-menu .icon {
  transition: color 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s;
}

.header.is-pinned {
  transform: translateY(0);
}

.header.is-unpinned {
  transform: translateY(-100%);
}

.header.is-sticky {
  position: fixed;
  height: 4.25rem;
}

/*--------------------------------------------------
      15.2. Navigation background
  ---------------------------------------------------*/
.nav-inner {
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}

.nav-inner.is-active {
  opacity: 1;
  pointer-events: auto;
}

.nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark-3);
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.12);
  transform-origin: bottom;
}

.nav-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}

@media (max-width: 1200px) {
  .nav-container {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}

@media (max-width: 991px) {
  .nav-container {
    padding-top: 2.5rem;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

@media (max-width: 767px) {
  .nav-container {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.nav-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav .nav-button-back .icon,
.nav .nav-btn-close .icon {
  color: white;
  width: 4rem;
  height: 4rem;
  stroke-width: 0.5;
}

@media (max-width: 991px) {

  .nav .nav-button-back .icon,
  .nav .nav-btn-close .icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 767px) {

  .nav .nav-button-back .icon,
  .nav .nav-btn-close .icon {
    width: 3rem;
    height: 3rem;
  }
}

.nav-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 6.25rem;
  padding-right: 12vw;
}

.nav-content-left {
  position: relative;
  flex: 0 0 70%;
  max-width: 70%;
}

.nav-content-right {
  position: relative;
  flex: 0 0 21%;
  max-width: 21%;
}

@media (max-width: 1280px) {
  .nav-content {
    padding-right: 0;
  }

  .nav-content-left {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .nav-content-right {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (max-width: 767px) {
  .nav-content {
    padding-top: 3.75rem;
  }

  .nav-content-left {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .nav-content-right {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

@media (max-width: 575px) {
  .nav-content-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.nav-info-item {
  overflow: hidden;
  margin-top: 3rem;
}

.nav-info-item:first-child {
  margin-top: 0;
}

.nav-info-item h5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.nav-info-item a,
.nav-info-item p {
  display: block;
  font-size: 1.125rem;
}

@media (max-width: 991px) {

  .nav-info-item a,
  .nav-info-item p {
    font-size: 1rem;
  }
}

.nav-info-content>* {
  margin-top: 0.25rem;
}

.nav-info-content>*:last-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  .nav-info-item {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .nav-info {
    display: none;
  }
}

/*--------------------------------------------------
      15.3. Navigation list
  ---------------------------------------------------*/
.navlist-wrap ul {
  pointer-events: none;
}

.navlist-wrap ul.is-visible {
  pointer-events: auto !important;
}

.navlist-wrap li {
  overflow: hidden;
}

.navlist-wrap a {
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navlist-wrap a:hover {
  color: var(--accent-color);
}

.navlist-wrap a:not([href]):not([tabindex]):hover {
  color: var(--accent-color);
}

.navList {
  margin-top: -0.5rem;
  pointer-events: none;
}

.navList li a {
  cursor: pointer;
  display: inline-block;
  color: white;
  padding: 8px 0;
  font-size: 3.25rem;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 991px) {
  .navList li a {
    font-size: 2.75rem;
  }
}

@media (max-width: 575px) {
  .navList li a {
    font-size: 2.5rem;
  }
}

.subnav-list {
  position: absolute;
  top: -0.5rem;
}

.subnav-list li a {
  transform: translateY(100%);
  font-size: 2.75rem;
}

@media (max-width: 991px) {
  .subnav-list li a {
    font-size: 2.25rem;
  }
}

@media (max-width: 575px) {
  .subnav-list li a {
    font-size: 2rem;
  }
}

.navList .menu-item-has-children > a::after {
  display: inline-block;
  vertical-align: middle;
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navList .menu-item-has-children > a::after {
  content: "\e900";
  margin-left: 1.25rem;
}

.navList .menu-item-has-children > a:hover::after {
  color: var(--accent-color);
  transform: translateX(10px);
}

@media (min-width: 1600px) {
  .nav-container {
    padding-top: 5rem;
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }

  .nav-button-back .icon,
  .nav-btn-close .icon {
    width: 4.05vw !important;
    height: 4.05vw !important;
  }

  .nav-content {
    padding-top: 5rem;
  }

  .navList li a {
    padding: 0.5rem 0;
  }

  .navList li a {
    font-size: 3.4vw;
  }

  .subnav-list li a {
    font-size: 2.84vw;
  }

  .navList .menu-item-has-children>a::after {
    font-size: 0.9vw;
  }

  .navList .menu-item-has-children>a::after {
    margin-left: 1.3vw;
  }

  .navList .menu-item-has-children>a:hover::after {
    transform: translateX(0.6vw);
  }

  .nav-info-item {
    margin-top: 3.05vw;
  }

  .nav-info-item h5 {
    font-size: 0.9vw;
  }

  .nav-info-content a,
  .nav-info-content p {
    font-size: 1.125rem;
    font-size: 1.12vw;
  }
}

/*--------------------------------------------------
      40. Navigation base
  ---------------------------------------------------*/
.navClassic-wrap {
  height: 100%;
}

.navClassic-wrap a {
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.navClassic-list {
  display: flex;
  height: 100%;
}

.navClassic-list>li {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.25rem;
}

.navClassic-list>li:hover {
  color: var(--accent-color);
}

.navClassic-list .tippy-box {
  border-radius: 0.25rem;
  min-width: 11.25rem;
  padding: 0.625rem 0;
}

.navClassic-list .tippy-box[data-placement^="right"]>.tippy-arrow,
.navClassic-list .tippy-box[data-placement^="left"]>.tippy-arrow {
  color: transparent;
}

.navClassic-list .tippy-box[data-placement^="right"]>.tippy-arrow::before,
.navClassic-list .tippy-box[data-placement^="left"]>.tippy-arrow::before {
  border-bottom-color: transparent;
}

.navClassic-list .tippy-box .tippy-content {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
}

.navClassic-list .tippy-box .tippy-content a {
  display: block;
  padding: 0.625rem 2rem;
  width: 100%;
  font-size: 1rem;
  transition: color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navClassic-list .subnav-list {
  position: relative;
  top: unset;
}

.navClassic-list .subnav-list a {
  transform: none;
}

.tippy-box[data-theme~='dark'] {
  background-color: #111111;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.2);
}

.tippy-box[data-theme~='dark']>.tippy-arrow::before {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tippy-box[data-theme~='dark'] a {
  color: white;
}

.tippy-box[data-theme~='dark'] a:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.04);
}

.tippy-box[data-theme~='light'] {
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.1);
}

.tippy-box[data-theme~='light']>.tippy-arrow::before {
  border-bottom-color: white;
}

.tippy-box[data-theme~='light'] a {
  color: black;
}

.tippy-box[data-theme~='light'] a:hover {
  color: var(--accent-color);
  background-color: rgba(0, 0, 0, 0.03);
}

.tippy-box[data-animation='shift'][data-state='hidden'] {
  opacity: 0;
  transform: translateY(1.25rem);
}

/*--------------------------------------------------
      17. Nav button
  ---------------------------------------------------*/
.navButton {
  display: flex;
}

.navbutton-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 100%;
  min-width: unset !important;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navButton .icon {
  width: 2rem;
  height: 2rem;
  stroke-width: 1;
}

.navButton.-sm .navbutton-item {
  width: 3.25rem;
  height: 3.25rem;
}

.navButton.-sm .navbutton-item .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.navButton.-md .navbutton-item {
  width: 3.75rem;
  height: 3.75rem;
}

.navButton.-md .navbutton-item .icon {
  width: 2rem;
  height: 2rem;
}

.navButton.-lg .navbutton-item {
  width: 4.25rem;
  height: 4.25rem;
}

.navButton.-lg .navbutton-item .icon {
  width: 2.25rem;
  height: 2.25rem;
}

/*--------------------------------------------------
	20. Back button
---------------------------------------------------*/
.backButton {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.backButton.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

.backButton {
  cursor: pointer;
  position: fixed;
  bottom: 6rem;
  right: 1.1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width:3.5rem;
  height: 3.5rem;
}

@media (max-width: 767px) {
  .backButton {
    bottom: 6.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 575px) {
  .backButton {
    width: 55px;
    height: 55px;
  }
}

.backbutton-bg {
  position: absolute;
  z-index: -1;
  background-color: black;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.backbutton-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.backbutton-button {
  color: white;
  stroke-width: 0.75;
  max-height: 100%;
  width: 3.5rem;
  height: 3.5rem;
}

@media (max-width: 767px) {
  .backbutton-button {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 575px) {
  .backbutton-button {
    width: 44px;
    height: 44px;
  }
}

.backButton .backbutton-bg {
  transition: transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.backButton:hover .backbutton-bg {
  transform: scale(1.1);
}

/*--------------------------------------------------
	21. Breadcrumbs
---------------------------------------------------*/
.breadcrumbs a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs {
  display: flex;
}

.breadcrumbs-item {
  display: flex;
  font-size: 1rem;
  color: inherit;
  line-height: 1.4;
}

.breadcrumbs-item::before {
  content: "/";
  color: inherit;
  font-weight: 400;
  padding: 0 0.3125rem;
}

.breadcrumbs-item:first-child::before {
  display: none;
}

.breadcrumbs .active {
  font-weight: 700;
}

/*--------------------------------------------------
	22. Social
---------------------------------------------------*/
.social {
  display: flex;
  z-index: 100;
}

.social.-bordered .social-item {
  border-radius: 100%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-item {
  position: relative;
  font-size: 1rem;
  transition: color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-right: 1rem;
}

.social-item:hover {
  color: var(--accent-color);
}

.social-item:last-child {
  margin-right: 0;
}

/*--------------------------------------------------
	23. Contact
---------------------------------------------------*/
.contact-form.-type-1 label {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-form.-type-1 label .form-error {
  display: none;
  color: red;
  font-size: 1rem;
  margin-top: 0.375rem;
}

.contact-form.-type-1 label .form-error.is-active {
  display: block;
}

.contact-form.-type-1 .ajax-form-alert {
  display: none;
}

.contact-form.-type-1 .ajax-form-alert.is-active {
  display: block;
}

.contact-form.-type-1 .ajax-form-alert.is-error .ajax-form-alert-content {
  background-color: rgba(255, 0, 0, 0.25);
}

.contact-form.-type-1 .ajax-form-alert.is-success .ajax-form-alert-content {
  background-color: rgba(0, 128, 0, 0.2);
}

.contact-form.-type-1 .ajax-form-alert-content {
  display: inline-block;
  color: black;
  padding: 0.625rem 1rem;
  border-radius: 0.25rem;
}

.contact-form.-type-1 .ajax-form-alert-content a {
  font-weight: 600;
}

.contact-form.-type-1 .ajax-form-alert-content a:hover {
  color: black;
  text-decoration: underline;
}

.contact-form.-type-1 input.-error,
.contact-form.-type-1 textarea.-error {
  border-color: red !important;
}

/*--------------------------------------------------
	24. Section heading
---------------------------------------------------*/
.sectionhead-subtitle {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: black;
}

.sectionhead-subtitle.-light {
  color: white;
}
.sectionheading-title {
  word-wrap: break-word;
}
.sectionHeading.-sm .sectionheading-title {
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 2.5rem;
}

@media (max-width: 991px) {
  .sectionHeading.-sm .sectionheading-title {
    font-size: 2.375rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-sm .sectionheading-title {
    font-size: 1.75rem;
  }
}

.sectionHeading.-md .sectionheading-title {
  line-height: 1.1;
  font-weight: 700;
  font-size: 3.5rem;
}

@media (max-width: 991px) {
  .sectionHeading.-md .sectionheading-title {
    font-size: 3.25rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-md .sectionheading-title {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-md .sectionheading-title {
    font-size: 2.75rem;
  }
}

.sectionHeading.-lg .sectionheading-title {
  line-height: 1.1;
  font-weight: 700;
  font-size: 4rem;
}

@media (max-width: 991px) {
  .sectionHeading.-lg .sectionheading-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-lg .sectionheading-title {
    font-size: 3.125rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-lg .sectionheading-title {
    font-size: 2rem;
  }
}

.sectionHeading.-xl .sectionheading-title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 5.625rem;
}

@media (max-width: 1229px) {
  .sectionHeading.-xl .sectionheading-title {
    font-size: 4.75rem;
  }
}

@media (max-width: 991px) {
  .sectionHeading.-xl .sectionheading-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-xl .sectionheading-title {
    font-size: 3rem;
  }
}

/*--------------------------------------------------
	25. Parallax
---------------------------------------------------*/
[data-parallax] {
  position: relative;
  z-index: 0;
}

[data-parallax]>div {
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-parallax] [data-parallax-target] {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*--------------------------------------------------
	26. Preloader
---------------------------------------------------*/
body.preloader-visible .preloader-bg {
  transform: scaleY(1);
}

body.preloader-visible .preloader-progress {
  opacity: 1;
}

.preloader {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-bg {
  pointer-events: auto;
  height: 100%;
  width: 100%;
  background-color: var(--bg-dark-4);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.12);
  will-change: transform;
  transform-origin: bottom;
  transform: scaleY(0);
}

.preloader-progress {
  position: absolute;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #FFFFFF;
  opacity: 0;
  -webkit-mask-image: var(--preloader-image);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-image: var(--preloader-image);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.preloader-progress-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  transform-origin: bottom;
  transform: scaleY(0);
}

/*--------------------------------------------------
	27. UI elements
---------------------------------------------------*/
.ui-element {
  position: absolute;
  z-index: 50;
}

.ui-element.-fixed {
  position: fixed;
}

.ui-element.-bottom {
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.ui-element.-bottom-left {
  bottom: 3rem;
  left: 3rem;
}

.ui-element.-bottom-right {
  bottom: 3rem;
  right: 3rem;
}

.ui-element.-left {
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.ui-element.-right {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .ui-element.-bottom {
    bottom: 1.5rem;
  }

  .ui-element.-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .ui-element.-bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .ui-element.-left {
    left: 1.5rem;
  }

  .ui-element.-right {
    right: 1.5rem;
  }
}

.ui-element-social {
  display: flex;
  font-size: 1rem;
  line-height: 100%;
}

.ui-element-social a {
  font-size: inherit;
  line-height: inherit;
  margin-right: 1.5rem;
}

.ui-element-social a:last-child {
  margin: 0;
}

.ui-element-social.-column {
  flex-flow: column wrap;
}

.ui-element-social.-column a {
  margin: 0;
  margin-bottom: 1.5rem;
}

.ui-element-social.-column a:last-child {
  margin-bottom: 0;
}

.ui-element-scroll {
  overflow: hidden;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.ui-element-scroll .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
  margin-left: 0.5rem;
}

.ui-element-scroll .icon {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-name: uiScrollInfinite;
  animation-name: uiScrollInfinite;
  -webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes uiScrollInfinite {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes uiScrollInfinite {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/*--------------------------------------------------
	28. Pagination
---------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
}

.pagination-item {
  border-radius: 100%;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  transform: scale(0.5);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination-item.is-active {
  transform: scale(1);
}

.pagination.-light .pagination-item {
  background-color: rgba(255, 255, 255, 0.5);
}

.pagination.-light .pagination-item.is-active {
  background-color: rgba(255, 255, 255, 0.8);
}

.pagination.-dark .pagination-item {
  background-color: rgba(0, 0, 0, 0.5);
}

.pagination.-dark .pagination-item.is-active {
  background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------
	29. Cursor
---------------------------------------------------*/
body.is-cursor-active {
  cursor: none !important;
}

body.is-cursor-active * {
  cursor: none !important;
}

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-follower {
  position: absolute;
  background-color: #888888;
  opacity: 0.25;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-arrows {
  position: absolute;
  display: flex;
  opacity: 0;
  transform: scale(0.7) rotate(40deg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-arrows>* {
  position: relative;
  color: black;
  stroke-width: 1;
}

.cursor-arrows>*:first-child {
  left: -0.625rem;
}

.cursor-arrows>*:last-child {
  right: -0.625rem;
}

.cursor-label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  letter-spacing: 0.05em;
  transform: scale(0);
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transform: scale(0);
  will-change: transform, opacity;
  transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1), opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 0.75;
}

.cursor {
  visibility: hidden;
}

.cursor.is-enabled {
  visibility: visible;
}

.cursor.is-hidden .cursor-wrapper {
  transform: scale(0) !important;
}

.cursor.is-mouse-down .cursor-wrapper {
  transform: scale(0.8);
}

.cursor.is-active .cursor-follower {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.7);
  transform: scale(3.6);
  opacity: 0.25;
}

.cursor.is-active.has-label .cursor-follower {
  background-color: black;
  opacity: 0.8;
}

.cursor.is-active.has-label .cursor-label {
  transform: scale(1);
}

.cursor.is-active.has-icon .cursor-follower {
  background-color: black;
  opacity: 0.8;
}

.cursor.is-active.has-icon .cursor-icon {
  transform: scale(1);
}


/*--------------------------------------------------
	30. Main slider type-1
---------------------------------------------------*/
.sliderMain.-type-1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.sliderMain.-type-1 .slidermain-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliderMain.-type-1 .slidermain-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sliderMain.-type-1 .slidermain-img.-cover-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(19, 20, 25, 0.6);
}

.sliderMain.-type-1 .slidermain-content {
  position: relative;
}

.sliderMain.-type-1 .slidermain-bgTitle {
  position: absolute;
  font-size: 16vw;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.sliderMain.-type-1 .slidermain-title {
  word-wrap: break-word;
  font-size: 6vw;
  line-height: 110%;
}

@media (max-width: 1229px) {
  .sliderMain.-type-1 .slidermain-title {
    font-size: 9.6vw;
  }
}

@media (max-width: 991px) {
  .sliderMain.-type-1 .slidermain-title {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .sliderMain.-type-1 .slidermain-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 575px) {
  .sliderMain.-type-1 .slidermain-title {
    font-size: 3.125rem;
  }
}


/*--------------------------------------------------
	33. Masthead base
---------------------------------------------------*/
.masthead {
  position: relative;
  z-index: 0;
}

.masthead-bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.masthead .masthead-shapes-item {
  position: absolute;
  z-index: 1;
}

.masthead .masthead-shapes-shape.-fixed {
  position: fixed;
}

.masthead .masthead-shapes-shape.-white {
  background-color: #FFFFFF;
}

.masthead .masthead-shapes-shape.-black {
  background-color: #000000;
}

.masthead .masthead-shapes-shape.-light-1 {
  background-color: #FAFAFA;
}

.masthead .masthead-shapes-shape.-dark-1 {
  background-color: var(--bg-dark-1);
}

.masthead .masthead-shapes-shape.-dark-2 {
  background-color: #17171C;
}

.masthead .masthead-shapes-shape.-shadow-light {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.08);
}

.masthead .masthead-shapes-shape.-shadow-dark {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.35);
}

.masthead .masthead-shapes.-group-1 .-item-1 {
  top: -23.75vw;
  left: -28.75vw;
}

.masthead .masthead-shapes.-group-1 .-item-1 .masthead-shapes-shape {
  width: 64vw;
  height: 64vw;
  border-radius: 100%;
}

.masthead .masthead-shapes.-group-1 .-item-2 {
  bottom: -21.5625vw;
  right: -19.6875vw;
}

.masthead .masthead-shapes.-group-1 .-item-2 .masthead-shapes-shape {
  width: 68.4vw;
  height: 68.4vw;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-1 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-1 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }

  .masthead .masthead-shapes.-group-1 .-item-2 {
    display: none;
  }
}

.masthead .masthead-shapes.-group-2 .-item-1 {
  top: 10vw;
  right: 14.3vw;
}

.masthead .masthead-shapes.-group-2 .-item-1 .masthead-shapes-shape {
  width: 35rem;
  height: 35rem;
  border-radius: 100%;
}

@media (max-width: 991px) {
  .masthead .masthead-shapes.-group-2 .-item-1 {
    top: 50%;
    right: unset;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .masthead .masthead-shapes.-group-2 .-item-1 .masthead-shapes-shape {
    width: 70vw;
    height: 70vw;
  }
}

@media (max-width: 575px) {
  .masthead .masthead-shapes.-group-2 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-2 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-2 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-2 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }
}

.masthead .masthead-shapes.-group-3 .-item-1 {
  top: -15.0vw;
  left: -30vw;
}

.masthead .masthead-shapes.-group-3 .-item-1 .masthead-shapes-shape {
  border-radius: 100%;
  width: 78.5vw;
  height: 78.5vw;
}

.masthead .masthead-shapes.-group-3 .-item-2 {
  top: -24.25vw;
  right: -15.0625vw;
}

.masthead .masthead-shapes.-group-3 .-item-2 .masthead-shapes-shape {
  border-radius: 100%;
  width: 44vw;
  height: 44vw;
}

.masthead .masthead-shapes.-group-3 .-item-3 {
  bottom: -30.9375vw;
  right: -20.375vw;
}

.masthead .masthead-shapes.-group-3 .-item-3 .masthead-shapes-shape {
  border-radius: 100%;
  width: 46vw;
  height: 46vw;
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-3 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-3 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }

  .masthead .masthead-shapes.-group-3 .-item-2 {
    display: none;
  }

  .masthead .masthead-shapes.-group-3 .-item-3 {
    display: none;
  }
}

.masthead .masthead-shapes.-group-4 .-item-1 {
  top: -35rem;
  left: -31.25rem;
}

.masthead .masthead-shapes.-group-4 .-item-1 .masthead-shapes-shape {
  border-radius: 100%;
  width: 71.875rem;
  height: 71.875rem;
}

.masthead .masthead-shapes.-group-4 .-item-2 {
  top: -18.75rem;
  right: -18.75rem;
}

.masthead .masthead-shapes.-group-4 .-item-2 .masthead-shapes-shape {
  border-radius: 100%;
  width: 50rem;
  height: 50rem;
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-4 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-4 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }

  .masthead .masthead-shapes.-group-4 .-item-2 {
    display: none;
  }
}

.masthead .masthead-shapes.-group-5 .-item-1 {
  top: -32.5rem;
  left: -30.375rem;
}

.masthead .masthead-shapes.-group-5 .-item-1 .masthead-shapes-shape {
  border-radius: 100%;
  width: 76.875rem;
  height: 76.875rem;
}

.masthead .masthead-shapes.-group-5 .-item-2 {
  top: -13.25rem;
  right: -18.75rem;
}

.masthead .masthead-shapes.-group-5 .-item-2 .masthead-shapes-shape {
  border-radius: 100%;
  width: 49.375rem;
  height: 49.375rem;
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-5 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-5 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }

  .masthead .masthead-shapes.-group-5 .-item-2 {
    display: none;
  }
}

.masthead .masthead-shapes.-group-6 .-item-1 {
  top: 50%;
  left: 50%;
  transform: translateY(-36%) translateX(-52%);
}

.masthead .masthead-shapes.-group-6 .-item-1 .masthead-shapes-shape {
  border-radius: 100%;
  width: 560px;
  height: 560px;
}

@media (max-width: 767px) {
  .masthead .masthead-shapes.-group-6 .-item-1 {
    top: 50%;
    left: -75%;
    transform: translateY(-50%);
  }

  .masthead .masthead-shapes.-group-6 .-item-1 .masthead-shapes-shape {
    width: 140vw;
    height: 140vw;
  }
}

/*--------------------------------------------------
	34. Masthead single portfolio project
---------------------------------------------------*/
.masthead.-type-work-1.-full-screen .masthead-content {
  padding-top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}

.masthead.-type-work-1 .masthead-content {
  padding-top: 11.25rem;
  padding-bottom: 5rem;
}

@media (max-width: 991px) {
  .masthead.-type-work-1 .masthead-content {
    padding-top: 8.25rem;
  }
}

@media (max-width: 767px) {
  .masthead.-type-work-1 .masthead-content {
    padding-top: 7.75rem;
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 575px) {
  .masthead.-type-work-1 .masthead-content {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
  }
}

.masthead.-type-work-1 .masthead-title {
  line-height: 1.05;
  font-size: 5.25rem;
  letter-spacing: -0.01em;
}

@media (max-width: 991px) {
  .masthead.-type-work-1 .masthead-title {
    font-size: 5.625rem;
  }
}

@media (max-width: 767px) {
  .masthead.-type-work-1 .masthead-title {
    font-size: 4.375rem;
  }
}

@media (max-width: 575px) {
  .masthead.-type-work-1 .masthead-title {
    font-size: 2.25rem;
  }
}

.masthead.-type-work-1 .masthead-title .split-line {
  padding-bottom: 0.25rem;
}



/*--------------------------------------------------
	47. Portfolio
---------------------------------------------------*/
.portfolioCard {
  display: block;
}

.portfoliocard-img {
  overflow: hidden;
}

.portfolioCard.-type-1.-hover .portfoliocard-img {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-1.-hover .portfolio-card-img-inner {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-1.-hover .portfolio-card-category,
.portfolioCard.-type-1.-hover .portfolio-card-title {
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-1.-hover:hover .portfoliocard-img {
  transform: scale(0.95);
}

.portfolioCard.-type-1.-hover:hover .portfolio-card-img-inner {
  transform: scale(1.1);
}

.portfolioCard.-type-1.-hover:hover .portfolio-card-category {
  transform: translateX(2rem);
}

.portfolioCard.-type-1.-hover:hover .portfolio-card-title {
  transform: translateX(2rem);
  color: var(--accent-color);
}

.portfolioCard.-type-2 {
  position: relative;
}

.portfolioCard.-type-2 .portfolio-card-content {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.portfolioCard.-type-2 .portfolio-card-content a {
  position: relative;
  z-index: 4;
}

.portfolioCard.-type-2 .portfolio-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.portfolioCard.-type-2.-hover .portfoliocard-img {
  overflow: hidden;
}

.portfolioCard.-type-2.-hover .portfolio-card-img-inner {
  transform: scale(1.01);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-2.-hover .portfolio-card-content {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-2.-hover .portfolio-card-content p,
.portfolioCard.-type-2.-hover .portfolio-card-content a {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolioCard.-type-2.-hover .portfolio-card-content h3 {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.06s, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.06s;
}

.portfolioCard.-type-2.-hover:hover .portfolio-card-img-inner {
  transform: scale(1.08);
}

.portfolioCard.-type-2.-hover:hover .portfolio-card-content {
  opacity: 1;
}

.portfolioCard.-type-2.-hover:hover .portfolio-card-content a,
.portfolioCard.-type-2.-hover:hover .portfolio-card-content p,
.portfolioCard.-type-2.-hover:hover .portfolio-card-content h3 {
  opacity: 1;
  transform: none;
}


/*--------------------------------------------------
	40. Price card
---------------------------------------------------*/
.price-card-price {
  letter-spacing: -0.05em;
}

.price-card-badge {
  display: inline-block;
  padding: 0.5rem 0.625rem;
  line-height: 1;
  border-radius: 0.375rem;
  background-color: #F0F0F0;
}

.price-card-badge.-light {
  background-color: rgba(255, 255, 255, 0.08);
}

.price-card-list li {
  margin-bottom: 0.75rem;
}

.price-card-list li:last-child {
  margin-bottom: 0;
}

.price-card-list li p {
  line-height: 1.3;
}


/*--------------------------------------------------
	48. Masonry
---------------------------------------------------*/
.filter-button-group {
  display: flex;
  flex-wrap: wrap;
}

.filter-button-group button {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  border: 0.0625rem solid rgb(220, 220, 220);
  border-radius: 3.75rem;
}

.filter-button-group button:hover {
  color: #8d8d8d !important;
}

.filter-button-group button.btn-active {
  background-color: var(--accent-color);
  border: 0.0625rem solid var(--accent-color);
  text-align: center;
  border-radius: 3.75rem;
  color: white;
}

.masonry-item .portfoliocard-img,
.masonry-item .portfolio-card-img-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.masonry .masonry-item .ratio {
  padding-bottom: 100%;
}

.masonry .masonry-item.-long .ratio {
  padding-bottom: 200%;
}

.masonry .masonry-item.-big .ratio {
  padding-bottom: 100%;
}

.masonry .masonry-item.-wide .ratio {
  padding-bottom: 50%;
}

.masonry.-col-4 .masonry-sizer {
  width: 25%;
}

.masonry.-col-4 .masonry-item {
  width: 25%;
}

.masonry.-col-4 .masonry-item.-long {
  width: 25%;
}

.masonry.-col-4 .masonry-item.-big {
  width: 50%;
}

.masonry.-col-4 .masonry-item.-wide {
  width: 50%;
}

@media (max-width: 991px) {
  .masonry.-col-4 .masonry-sizer {
    width: 33.33333%;
  }

  .masonry.-col-4 .masonry-item {
    width: 33.33333%;
  }

  .masonry.-col-4 .masonry-item.-long {
    width: 33.33333%;
  }

  .masonry.-col-4 .masonry-item.-big {
    width: 66.66666%;
  }

  .masonry.-col-4 .masonry-item.-wide {
    width: 66.66666%;
  }
}

@media (max-width: 767px) {
  .masonry.-col-4 .masonry-sizer {
    width: 50%;
  }

  .masonry.-col-4 .masonry-item {
    width: 50%;
  }

  .masonry.-col-4 .masonry-item.-long {
    width: 50%;
  }

  .masonry.-col-4 .masonry-item.-big {
    width: 100%;
  }

  .masonry.-col-4 .masonry-item.-wide {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .masonry.-col-4 .masonry-sizer {
    width: 100%;
  }

  .masonry.-col-4 .masonry-item {
    width: 100%;
  }

  .masonry.-col-4 .masonry-item.-long {
    width: 100%;
  }

  .masonry.-col-4 .masonry-item.-big {
    width: 100%;
  }

  .masonry.-col-4 .masonry-item.-wide {
    width: 100%;
  }
}

.masonry.-col-3 .masonry-sizer {
  width: 33.33333%;
}

.masonry.-col-3 .masonry-item {
  width: 33.33333%;
}

.masonry.-col-3 .masonry-item.-long {
  width: 33.33333%;
}

.masonry.-col-3 .masonry-item.-big {
  width: 66.66666%;
}

.masonry.-col-3 .masonry-item.-wide {
  width: 66.66666%;
}

@media (max-width: 767px) {
  .masonry.-col-3 .masonry-sizer {
    width: 50%;
  }

  .masonry.-col-3 .masonry-item {
    width: 50%;
  }

  .masonry.-col-3 .masonry-item.-long {
    width: 50%;
  }

  .masonry.-col-3 .masonry-item.-big {
    width: 100%;
  }

  .masonry.-col-3 .masonry-item.-wide {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .masonry.-col-3 .masonry-sizer {
    width: 100%;
  }

  .masonry.-col-3 .masonry-item {
    width: 100%;
  }

  .masonry.-col-3 .masonry-item.-long {
    width: 100%;
  }

  .masonry.-col-3 .masonry-item.-big {
    width: 100%;
  }

  .masonry.-col-3 .masonry-item.-wide {
    width: 100%;
  }
}

.masonry.-col-2 .masonry-sizer {
  width: 50%;
}

.masonry.-col-2 .masonry-item {
  width: 50%;
}

.masonry.-col-2 .masonry-item.-long {
  width: 50%;
}

.masonry.-col-2 .masonry-item.-big {
  width: 100%;
}

.masonry.-col-2 .masonry-item.-wide {
  width: 100%;
}

@media (max-width: 575px) {
  .masonry.-col-2 .masonry-sizer {
    width: 100%;
  }

  .masonry.-col-2 .masonry-item {
    width: 100%;
  }

  .masonry.-col-2 .masonry-item.-long {
    width: 100%;
  }

  .masonry.-col-2 .masonry-item.-big {
    width: 100%;
  }

  .masonry.-col-2 .masonry-item.-wide {
    width: 100%;
  }
}

.masonry.-gap-32 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.masonry.-gap-32 .masonry-item {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.masonry.-gap-32 .masonry-item .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-32 .masonry-item.-long .ratio {
  padding-bottom: calc(200% + 2rem);
}

.masonry.-gap-32 .masonry-item.-big .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-32 .masonry-item.-wide .ratio {
  padding-bottom: calc(50% - 1rem);
}

.masonry.-gap-40 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.masonry.-gap-40 .masonry-item {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}

.masonry.-gap-40 .masonry-item .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-40 .masonry-item.-long .ratio {
  padding-bottom: calc(200% + 2.5rem);
}

.masonry.-gap-40 .masonry-item.-big .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-40 .masonry-item.-wide .ratio {
  padding-bottom: calc(50% - 1.25rem);
}

.masonry.-gap-48 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.masonry.-gap-48 .masonry-item {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.masonry.-gap-48 .masonry-item .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-48 .masonry-item.-long .ratio {
  padding-bottom: calc(200% + 3rem);
}

.masonry.-gap-48 .masonry-item.-big .ratio {
  padding-bottom: 100%;
}

.masonry.-gap-48 .masonry-item.-wide .ratio {
  padding-bottom: calc(50% - 1.5rem);
}


/*--------------------------------------------------
	45. Team
---------------------------------------------------*/
.teamCard {
  position: relative;
}

.team-card-social {
  display: flex;
}

.team-card-social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  margin-right: 1.75rem;
}

.team-card-social-item:last-child {
  margin-right: 0;
}

.teamCard.-type-1 .teamCard__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.teamCard.-type-1.-hover .teamCard__content {
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.teamCard.-type-1.-hover h4,
.teamCard.-type-1.-hover p,
.teamCard.-type-1.-hover .team-card-social {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.teamCard.-type-1.-hover .team-card-title {
  transform: translateY(1.25rem);
}

.teamCard.-type-1.-hover .teamCard__text {
  transform: translateY(1.5rem);
}

.teamCard.-type-1.-hover .team-card-social {
  transform: translateY(2rem);
}

.teamCard.-type-1.-hover:hover .teamCard__content {
  opacity: 1;
}

.teamCard.-type-1.-hover:hover .team-card-title,
.teamCard.-type-1.-hover:hover .teamCard__text,
.teamCard.-type-1.-hover:hover .team-card-social {
  transform: none;
}


/*--------------------------------------------------
	49. Portfolio projects navigation
---------------------------------------------------*/
.projects-nav-item {
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: block;
}

.projects-nav-item.-prev .projects-nav-content {
  padding-left: 7.5rem;
  padding-right: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .projects-nav-item.-prev .projects-nav-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    align-items: flex-end;
  }

  .projects-nav-item.-prev .projects-nav-content .projects-nav-icon {
    position: absolute;
    bottom: 2.5rem;
    right: 2.25rem;
  }
}

.projects-nav-item.-next .projects-nav-content {
  padding-left: 5rem;
  padding-right: 7.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .projects-nav-item.-next .projects-nav-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    align-items: flex-start;
  }

  .projects-nav-item.-next .projects-nav-content .projects-nav-icon {
    position: absolute;
    bottom: 2.5rem;
    left: 2.25rem;
  }
}

.projects-nav-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: scale(1.2);
}

.projects-nav-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 7, 15, 0.7);
}

.projects-nav-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13.75rem;
  padding-bottom: 13.75rem;
}

@media (max-width: 991px) {
  .projects-nav-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media (max-width: 767px) {
  .projects-nav-content {
    justify-content: flex-start;
    flex-flow: column nowrap;
  }
}

.projects-nav-text {
  position: absolute;
  top: 3.75rem;
}

.projects-nav-text.-prev {
  right: 5rem;
}

.projects-nav-text.-next {
  left: 5rem;
}

@media (max-width: 767px) {
  .projects-nav-text {
    top: 2.5rem;
  }

  .projects-nav-text.-prev {
    right: 2.5rem;
  }

  .projects-nav-text.-next {
    left: 2.5rem;
  }
}

.projects-nav-item:hover .projects-nav-img {
  opacity: 1;
  transform: none;
}

/*--------------------------------------------------
	50. Portfolio single project
---------------------------------------------------*/
.work-grid.-col-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3.125rem;
  margin-right: -3.125rem;
}

.work-grid.-col-2 .grid-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}

.work-grid.-col-2 .grid-item:nth-child(2n + 2) {
  margin-top: 5rem;
}

.work-grid.-col-2 .grid-item:nth-child(1n + 3) {
  padding-top: 4.5%;
}


/*Section Verticals*/

.vertslide-wrp {
  position: relative;
  padding: 0;
}

.section-verticals {
  padding: 115px 0;
  background-image: url(../img/verticles/verticals-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.verticals-block {
  min-height: 530px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.inner-verticals {
  position: absolute;
  left: 0;
  top: 0;
  width: 261px;
  margin: auto;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 98;
  border-radius: 37px;
  box-shadow: 0 0px 105px -40px rgba(13, 75, 92, 1), 0 0px 50px -25px rgba(25, 36, 155, 0.2);
  background-color: #fff;
}

.inner-verticals:after {
  background-image: url(../img/verticles/iphonex.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99;
  position: absolute;
  left: 0;
  top: 0;
}

.verticals-block .sliding-verticals {
  position: absolute;
  width: 1920px;
  height: 100%;
  top: 50px;
}

.sliding-verticals.slide-vert01 {
  left: 0px;
  animation: slide01 100s linear infinite;
}

.sliding-verticals.slide-vert02 {
  left: 1920px;
  animation: slide02 100s linear infinite;
}

@keyframes slide01 {
  0% {
    left: 0px;
  }

  50% {
    left: -1920px;
    display: block;
    opacity: 1;
  }

  51% {
    left: -1920px;
    opacity: 0;
  }

  52% {
    left: 1920px;
    opacity: 0;
  }

  53% {
    left: 1920px;
    opacity: 1;
  }

  100% {
    left: 0px;
  }
}

@keyframes slide02 {
  0% {
    left: 1920px;
  }

  50% {
    left: 0px;
  }

  100% {
    left: -1920px;
  }
}

.slide-L01 {
  top: 0px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
}

.slide-L02 {
  top: 150px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}

.slide-L03 {
  top: 290px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
}

.sliding-circle {
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  color: #848484;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  position: absolute;
  padding: 15px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.13), inset 0 1px 2px rgba(255, 255, 255, 1), inset 0 -2px 4px -1px rgba(0, 0, 0, 0.25);
  transition: all ease .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .sCircle-blue{border:2px solid #199cf9; color: #199cf9;}
.sCircle-skyblue{border:2px solid #489fce; color: #489fce;}
.sCircle-lightblue{border:2px solid #0cd3da; color: #0cd3da;}
.sCircle-yellow{border:2px solid #f6bf22; color: #f6bf22;}
.sCircle-red{border:2px solid #f95d5d; color: #f95d5d;}
.sCircle-orange{border:2px solid #f6ab56; color: #f6ab56;}
.sCircle-green{border:2px solid #6fcb75; color: #6fcb75;}
*/

.inner-verticals .sCircle-blue {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-skyblue {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-lightblue {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-yellow {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-red {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-orange {
  background-image: var(--cp-primary);
  color: #fff;
}

.inner-verticals .sCircle-green {
  background-image: var(--cp-primary);
  color: #fff;
}


.sliding-01 {
  width: 137px;
  height: 137px;
  left: 15px;
}

.sliding-02 {
  width: 122px;
  height: 122px;
  left: 420px;
}

.sliding-03 {
  width: 122px;
  height: 122px;
  left: 820px;
}

.sliding-04 {
  width: 122px;
  height: 122px;
  left: 1250px;
}

.sliding-05 {
  width: 137px;
  height: 137px;
  left: 1650px;
}

.sliding-06 {
  width: 122px;
  height: 122px;
  left: 241px;
  top: -40px;
}

.sliding-07 {
  width: 139px;
  height: 139px;
  left: 425px;
}

.sliding-08 {
  width: 122px;
  height: 122px;
  left: 575px;
  top: -90px;
}

.sliding-09 {
  width: 137px;
  height: 137px;
  left: 735px;
  top: -10px;
}

.sliding-10 {
  width: 137px;
  height: 137px;
  left: 1035px;
  top: -80px;
}

.sliding-11 {
  width: 137px;
  height: 137px;
  left: 1420px;
  top: -30px;
}

.sliding-12 {
  width: 122px;
  height: 122px;
  left: 55px;
  top: -80px;
}

.sliding-13 {
  width: 184px;
  height: 184px;
  left: 265px;
  top: -35px;
}

.sliding-14 {
  width: 122px;
  height: 122px;
  left: 590px;
  top: -70px;
}

.sliding-15 {
  width: 122px;
  height: 122px;
  left: 930px;
  top: -50px;
}

.sliding-16 {
  width: 122px;
  height: 122px;
  left: 1200px;
  top: -70px;
}

.sliding-17 {
  width: 146px;
  height: 146px;
  left: 1650px;
  top: -50px;
}

.animated-slide {
  animation: slideWave 5s ease infinite;
}

@keyframes slideWave {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*.sliding-verticals:hover,.sliding-verticals:hover ~ .sliding-verticals{
  -webkit-animation-play-state:paused;
  -moz-animation-play-state:paused;
  -o-animation-play-state:paused;
  animation-play-state:paused;
  cursor: pointer;
}*/
.sliding-info {
  opacity: 0;
  pointer-events: none;
  padding: 15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0px 40px -10px rgba(50, 50, 93, .25);
  display: none;
  position: absolute;
  transform: translateX(-40px);
  left: 0;
  right: 0;
  top: calc(100% - 60px);
  transition: 0.3s ease-out all;
  z-index: 9;
  min-width: 200px;
}

.sliding-info:before {
  width: 10px;
  height: 10px;
  position: absolute;
  content: '';
  background-color: transparent;
  border: 0px solid #fff;
  border-width: 10px 10px 0 0px;
  top: -5px;
  transform: rotate(45deg);
  box-shadow: -3px -3px 6px -1px rgba(50, 50, 93, .25);
}

.sliding-circle:hover .sliding-info {
  top: calc(100% - 20px);
  opacity: 1;
  pointer-events: visible;
  display: none;
}

.sliding-info li {
  color: #888;
  font-weight: 500;
  list-style: none;
  text-align: left;
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 20px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #dbdbdb;
}

.sliding-info li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.rotating-wheel {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  height: 100%;
  background: url('../img/verticles/svg/wheel-anchor.svg') no-repeat;
  background-position: bottom;
}

.rotating-wheel:before {
  width: 260px;
  height: 260px;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 205px;
  margin: auto;
  background: url('../img/verticles/svg/rotating-wheel.svg') no-repeat;
  -webkit-animation: rotation 2s infinite linear;
  animation: rotation 30s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

/* video-bg */
.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-filter: blur(03px);
  -moz-filter: blur(03px);
  -o-filter: blur(03px);
  -ms-filter: blur(03px);
  filter: blur(03px);
}

@media (min-aspect-ratio:16/9) {
  .back-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio:16/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}

/* style started start*/

.bg-violet {
  background-image: linear-gradient(139.73deg, #91298C 4.36%, #401849 92.55%);
}

.bg-green {
  background-color: #429644;
}

.bg-blue {
  background-color: #1E216E;
}

.bg-red {
  background-color: #C3060F;
}

.bg-service {
  background-image: url(../img/bg/bg-service.jpg);
  background-size: contain;

}
.bg-technology {
  background-image: url(../img/bg/Bg-technology.jpg);
  background-size:cover;

}
.bg-about-sm{
  background-image: url(../img/bg/about-line-bg.jpg);
  background-size:cover;
}

.technologies-section {

  height: 100%;
}

.technologies-section img {
  width: 38px;
  margin-bottom: 3px;
}

.technologies-section p {
  font-size: 14px;
  margin: 0px
}

.content-tech {
  width: 106px;
  display: inline-block;
  text-align: center;
}

.technologies-section .border {
  padding: 16px 11px 11px 11px;
  text-align: center;
}

.bg-image-detail {
  background-size: contain;
}

.navClassic-list li.active>a {
  color: var(--accent-color);
  font-weight: 600;
}

.img-product img {
  width: 37px;
}

.consulting-height {
  min-height: 410px;
}

.consulting-height-ims {
  min-height: 330px;
}

.technologies-height {
  min-height: 180px;
}


.common-list li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
  color: var(--cp-white);
  /* list-style-position: inside; */
}

.common-list-black li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
  color: var(--cp-black);
  /* list-style-position: inside; */
}
.li-postion li{
  list-style-position:initial !important;
}
.price-card-list li:last-child {
  margin-bottom: 0;
}

.price-card-list li p {
  line-height: 1.3;
}




/*---------consulting-ser-section--------*/

.consulting-ser-section hr {
  background-color: #737373;
  height: .5px;
  border: none;
}

.border-satisfaction {
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
  padding: 8px 0px;
  width: 760px;
  text-align: center;
  margin: 0 auto;
}

.headingsec {
  text-align: center;
}

.outsourcing-sec li {
  display: inline-block;
}

.list-top-consulting li {
  display: inline-block;
  border-right: solid 1px #000;
  padding: 0 20px;
}

.list-top-consulting li:last-child {
  border-right: none
}

.listarea li {
  border: 1px solid rgb(93 93 95 / 45%);
  padding: 3px 0px 0px 3px;
  border-radius: 4px;
  width: 250px;
  margin: 10px;
  text-align: left;
  display: flex;
}

.list-up-consulting {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}


.text-list {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 4px 5px 5px 5px;
  line-height: 22px;

}

.list-up-consulting img {
  width: 45px;
  margin: 2px 0px 0px 5px;
  height: 45px;
}

.list-top-consulting img {
  width: 32px;
  margin: 0px 14px 0px 5px;
  height: 32px;
}

.list-top-consulting {
  margin-bottom: auto;
}


.searchBox {
  position: relative;
}
.searchBox input {
  width:100%;
  padding-right: 50px;
  border-radius:30px;
  height:50px
}
.searchBox a  {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 2;
    right: 0px;
    background-color: var(--accent-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    top:0;

}
.searchBox a i {

  color: var(--bg-light-2);
}
.catList {
  display: flex;
  align-items: flex-start;
  flex-flow: wrap;
}
.catList li {
    display: flex;
    margin: 5px 5px 0 0;
}
.catList li a {
  padding:3px 10px;
  display: block;
  min-width: 65px;
  text-align: center;
  border:solid 1px #ccc;
  border-radius: 20px;
}
.catList li.active a {
  background-color: var(--accent-color);
  color:var(--bg-light-2)
}
.blogPopular {
  padding:0;
  margin:0;
}
.blogPopular li {
  display:flex;
  margin:0;
  padding:0px;
  margin-bottom:20px
}

.blogPopular .blogImg {
  width:30%;
  padding-right:5px
}
.blogPopular .blogImg img {
  border-radius: 5px;
}

.blogPopular .blogDesc {
  width:68%
}
.blogPopular .blogDesc h3 {
 font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400;
}
.blogHeadsec span {
  display: inline-block;
  color:var(--accent-color)
}
.blogHeadsec small {
display: inline-block;
margin-left:10px
}

/*--------------------------------------------------
	10. Blog content
---------------------------------------------------*/
/*--------------------------------------------------
	Blog content
---------------------------------------------------*/
.blogPost__img {
  width: 100%;
}

.blogPost__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.blogPost__img.-hover {
  overflow: hidden !important;
}

.blogPost__img.-hover > * {
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.blogPost__img.-hover:hover > * {
  transform: scale(1.1);
}

.blogPost {
  margin-bottom: 4.375rem;
}

.blogPost:last-child {
  margin-bottom: 0rem;
}

.blogPost__title {
  word-wrap: break-word;
}

.blogPost a {
  font-weight: inherit;
  word-wrap: break-word;
  line-height: inherit;
  font-size: inherit;
  color: inherit;
  transition: color 0.2s ease;
}

.blogPost a:hover {
  color: var(--accent-color);
}

.blogPost.-single .blogPost__content h1, .blogPost.-single .blogPost__content h2, .blogPost.-single .blogPost__content h3, .blogPost.-single .blogPost__content h4, .blogPost.-single .blogPost__content h5, .blogPost.-single .blogPost__content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blogPost.-single .blogPost__content h1 {
  font-size: 2.375rem;
  font-weight: 600;
}

.blogPost.-single .blogPost__content h2 {
  font-size: 2.125rem;
  font-weight: 600;
}

.blogPost.-single .blogPost__content h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

.blogPost.-single .blogPost__content h4 {
  font-size: 1.625rem;
  font-weight: 700;
}

.blogPost.-single .blogPost__content h5 {
  font-size: 1.5rem;
  font-weight: 700;
}

.blogPost.-single .blogPost__content h6 {
  font-size: 1.375rem;
  font-weight: 700;
}

.blogPost.-single .blogPost__content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.blogPost.-single .blogPost__content > p img,
.blogPost.-single .blogPost__content > img {
  margin: 3.125rem 0;
}

.blogPost.-single .blogPost__content > figure {
  max-width: 100%;
  margin: 2.5rem 0;
}

.blogPost.-single .blogPost__content > figure figcaption {
  margin-top: 0.375rem;
}

.blogPost.-single .blogPost__content p, .blogPost.-single .blogPost__content li, .blogPost.-single .blogPost__content figcaption, .blogPost.-single .blogPost__content cite {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #313131;
}

.blogPost.-single .blogPost__content p {
  margin-bottom: 1rem;
}

.blogPost.-single .blogPost__content a {
  text-decoration: underline;
}

.blogPost.-single .blogPost__content .has-small-font-size {
  font-size: 0.8125rem;
}

.blogPost.-single .blogPost__content .has-large-font-size {
  font-size: 2.25rem;
}

.blogPost.-single .blogPost__content ul, .blogPost.-single .blogPost__content ol {
  padding: 0;
  margin: 0.75rem 0;
}

.blogPost.-single .blogPost__content > ul, .blogPost.-single .blogPost__content > ol {
  margin: 1.25rem 0;
  margin-left: 2rem;
}

.blogPost.-single .blogPost__content ol, .blogPost.-single .blogPost__content li {
  padding-left: 1.25rem !important;
}

.blogPost.-single .blogPost__content ol > li {
  list-style: decimal;
}

.blogPost.-single .blogPost__content li {
  padding: 0.375rem 0;
  list-style: initial;
    list-style-position: outside;
}

.blogPost.-single .blogPost__content li ul, .blogPost.-single .blogPost__content li ol {
  margin: 0;
  margin-left: 1.25rem;
}

.blogPost.-single .blogPost__content .wp-block-latest-comments {
  padding-left: 0;
  list-style: none;
}

.blogPost.-single .blogPost__content .wp-block-latest-comments > li {
  list-style: none;
}

.blogPost.-single .blogPost__content pre, .blogPost.-single .blogPost__content code {
  margin: 2.5rem 0;
}

.blogPost.-single .blogPost__content table {
  width: 100%;
  margin: 2.5rem 0;
}

.blogPost.-single {
  margin-bottom: 0;
}

.blogPost.tags {
  margin-bottom: 0;
  margin-top: 3.75rem;
  font-size: 1rem;
}

.blogPost.tags .tags__item {
  display: inline-block;
  font-size: inherit;
  letter-spacing: -0.01em;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  padding: 0.25rem 0.625rem;
  margin-top: 0.1875rem;
  margin-bottom: 0.1875rem;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.blogPost.tags .tags__item:hover {
  color: white;
  background-color: var(--accent-color);
}

/*--------------------------------------------------
	11. Blog pagination
---------------------------------------------------*/
/*--------------------------------------------------
	Blog pagination
---------------------------------------------------*/
.blogPost-pagination {
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
}

.blogPost-pagination__wrap > * {
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.625rem;
  line-height: 1;
  color: var(--accent-color);
  margin-right: 1.25rem;
}

.blogPost-pagination__wrap > *:last-child {
  margin-right: 0;
}

.blogPost-pagination__wrap a:hover {
  color: black;
}

.blogPost-pagination__wrap a.is-active {
  color: black;
}

/*--------------------------------------------------
	12. Blog comments
---------------------------------------------------*/
/*--------------------------------------------------
	Blog comments
---------------------------------------------------*/
.blogPost.comments {
  margin-bottom: 0;
  margin-top: 3.75rem;
}

.blogPost.comments .blogPost__content .comments__list li {
  list-style: none;
}

.blogPost.comments .blogPost__content .comments__list > li:first-child > .comments-item-inner {
  border-top: none;
}

.blogPost.comments .blogPost__content .comments__list > li:first-child {
  border-top: none;
}

.blogPost.comments .blogPost__content .comments__list .trackback a,
.blogPost.comments .blogPost__content .comments__list .pingback a {
  line-height: 1.5rem;
  text-decoration: none !important;
}

.blogPost.comments .blogPost__content .comments__list {
  margin: 0;
  margin-top: 3rem;
}

.blogPost.comments .blogPost__content .comments__list > li {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.blogPost.comments .blogPost__content .comments__list > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.blogPost.comments .blogPost__content .comments__item-inner {
  display: flex;
}

.blogPost.comments .blogPost__content .comments__item .children {
  padding: 0;
  margin: 0;
  padding-left: 5%;
  padding-top: 3rem;
}

.blogPost.comments .blogPost__content .comments__body {
  width: 100%;
}

.blogPost.comments .blogPost__content .comments__img {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 5rem;
  margin-right: 1.375rem;
}

@media (max-width: 767px) {
  .blogPost.comments .blogPost__content .comments__img {
    width: 48px;
    height: 48px;
    max-width: 3rem;
    margin-right: 1rem;
  }
}

.blogPost.comments .blogPost__content .comments__header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .blogPost.comments .blogPost__content .comments__header {
    flex-flow: column;
  }
}

.blogPost.comments .blogPost__content .comments__header h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}

.blogPost.comments .blogPost__content .comments__header p {
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}

.blogPost.comments .blogPost__content .comments__text p {
  margin: 0;
  margin-top: 0.625rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #313131;
}

.blogPost.comments .blogPost__content .comments__text a {
  text-decoration: underline;
}

.blogPost.comments .blogPost__content .comments__text ul, .blogPost.comments .blogPost__content .comments__text ul li {
  list-style: disc inside !important;
}

.blogPost.comments .blogPost__content .comments__text ol, .blogPost.comments .blogPost__content .comments__text ol li {
  list-style: decimal inside !important;
}

.blogPost.comments .blogPost__content .comments__reply a {
  margin-top: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: black;
}
@media (max-width:1100px) {
  .border-satisfaction {
    width: 100%
  }
}

@media (max-width:991px) {
  .list-top-consulting li {
    display: inline-block;
    margin-bottom: 5px;
    border-right: 0px;

  }
}

.pagination {
  display: block;
  margin-top:30px
}
.pagination li {
  display: inline-block;
  margin: 3px;
}
.pagination a {
  background-color: var(--bg-light-2);
  border:solid 1px #d7d6d6;
  color: var(--accent-color);
  padding:3px 5px;
  text-align: center;
  border-radius: 3px;
  min-width:40px;
  display: block;
}
.pagination a.active, .pagination a:hover {
  background-color: var(--accent-color);
  border:solid 1px var(--accent-color);
  color: var(--bg-light-2);
}
.workflow-section {
  background-image: url(../img/details/workflow-bg.jpg);
  padding-bottom: 50px
}

.workflow-section-ims {
  background-image: url(../img/details/ims-workflow-bg.jpg);
  padding-bottom: 50px;
}

.glance-img img {
  width: 34px;
  height: 34px;
}

.button-tab {
  min-width: 8.25rem;
  padding: 1.125rem 3.25rem !important;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}
@media (max-width: 991px) {
  .button-tab {
    min-width: 4.75rem !important;
    font-size: 0.6rem !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.03em !important;
    padding: 12px 0px !important;
  }
}

header .hiring-tip {
  position: absolute;
  left: 46%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 5px;
  width: 65px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card-hire{
  min-height: 190px;
}


.glass-shadow{
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    backdrop-filter: blur(12px);
    --webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.13);
}

.country-flag{
  display: flex;
}
.country-flag img{
width: 52px;
padding-right: 14px;
}
.award__content span{
  font-size: 1.75rem;
  font-weight:900
}

.garident-seporation:after {
  position: absolute;
  text-align: center;
  background: url(../img/bg/seporation-bg.png) no-repeat center top;
  content: " ";
  height: 45px;
  left: 0px;
  right: 0px;
  top: 0px;
}
.commentImg {
     width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 50%;
    background-color: #e8e1ef;
    font-weight: 500;
}

.blogPost__text {
  display: -webkit-box;
    max-width: 100%;
    /* height: 43px; */
    margin: 0 auto;
    /* font-size: 14px; */
    /* line-height: 1; */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* .blogCard {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
height: 100%;
} */
.justify-content-space-around {
  justify-content: space-around;
}
.industries-2 {
    background-color: var(--white);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
        justify-content: flex-start;
    min-height: 300px;
    width: 27%;
    /* margin: 5px; */
    margin-bottom: 15px;
    text-align: left;
}
.industries-1 {
    background-color: var(--white);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
        justify-content: flex-start;
    min-height: 300px;
    width: 43%;
    /* margin: 5px; */
    text-align: left;
    margin-bottom: 15px;
}
.industries-full {
    background-color: var(--white);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
        justify-content: flex-start;
    min-height: 300px;
    width: 100%;
    /* margin: 5px; */
    text-align: left;
    margin-bottom: 15px;
}
@media (max-width:1200px) {
.industries-2, .industries-1 {
    width:48%;
    min-height: auto;
  }
}
@media (max-width:767px) {
 .industries-2, .industries-1 {
    width:100%;
    min-height: auto;
  }
}
.clientsUl {
  margin:0;
  padding:0;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.clientsUl li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  box-shadow:0px 0px 8px 3px rgba(0, 0, 0, .1);
  margin:20px;
}
/*--------------------------------------------------
	44. Blog card
---------------------------------------------------*/
.blogCard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blogCard__content-no-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blogCard__content {
  flex: 1 1 auto;
}

.blogCard.-type-1.-hover .blogCard__img {
  overflow: hidden;
}

.blogCard.-type-1.-hover .blogCard__img div {
  transition: transform 0.46s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1.01);
}

.blogCard.-type-1.-hover:hover .blogCard__img div {
  transform: scale(1.1);
}

.blogCard.-type-2 {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blogCard.-type-2 .blogCard__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.blogCard.-type-2 .blogCard__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.blogCard.-type-2.-hover .blogCard__img {
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-2.-hover .blogCard__info,
.blogCard.-type-2.-hover .blogCard__info a,
.blogCard.-type-2.-hover .blogCard__title a,
.blogCard.-type-2.-hover .blogCard__text,
.blogCard.-type-2.-hover .blogCard__date > * {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0s !important;
}

.blogCard.-type-2.-hover:hover .blogCard__img {
  opacity: 1;
  transform: scale(1.3);
}

.blogCard.-type-2.-hover:hover .blogCard__info,
.blogCard.-type-2.-hover:hover .blogCard__info a,
.blogCard.-type-2.-hover:hover .blogCard__title a,
.blogCard.-type-2.-hover:hover .blogCard__text,
.blogCard.-type-2.-hover:hover .blogCard__date > * {
  color: white;
}

.btn-upload {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: rgb(0, 0, 0);
  border: 1px solid grey;
  cursor: pointer;
}
.app-form label{
font-weight: 600;
color: #000;
}
@media (max-width:500px){
  .text-area-height {
   min-height: 105px;
  }
}

/* style started end*/