/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    /*background-color: var(--tanspot-black);*/
    z-index: 1;
    background: hsla(171, 87%, 67%, 1);

background: linear-gradient(131deg, hsla(171, 87%, 67%, 1) 0%, hsl(289.89deg 75.57% 75.97%) 100%);

background: -moz-linear-gradient(131deg, hsla(171, 87%, 67%, 1) 0%, hsl(289.89deg 75.57% 75.97%) 100%);

background: -webkit-linear-gradient(131deg, hsla(171, 87%, 67%, 1) 0%, hsl(289.89deg 75.57% 75.97%) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#61F4DE", endColorstr="#6E78FF", GradientType=1 );
}

.page-header__bg {
    display:none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 115px 0px;
    z-index: 15;
}

@keyframes moveImg-y {
  0% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.page-header__img-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
  -webkit-animation-name: moveImg-y;
  animation-name: moveImg-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-direction:alternate;
}


.page-header__img-1 img {
    max-width: 320px;
}

.page-header__shape-1 {
    position: absolute;
    top: 0px;
    right: 393px;
    z-index: -1;
}

.page-header__shape-1 img {
    width: auto;
}

.page-header__inner h3 {
    font-size: 60px;
    color: var(--text-pure-black);
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 14px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--text-pure-black);
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--text-pure-black);
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--tanspot-base);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    position: relative;
    top: 1px;
}