/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area.header-4 {
  padding: 20px 0;
}
.tj-header-area.header-4 .header-menu {
  border: 1px solid #814cec;
  border-radius: 50px;
  padding: 0px 40px;
}
.tj-header-area.header-4 .header-menu ul > li > a {
  padding: 14px 0px;
}
.tj-header-area.header-4 .header-menu ul > li > a::before {
  bottom: 8px;
  display: none;
}
.tj-header-area.header-4 .header-menu ul > li > a::after {
  right: -20px;
  display: none;
}
.tj-header-area.header-4 .header-menu ul > li > .sub-menu {
  top: 102%;
}
.tj-header-area.header-4 .header-menu ul > li > .sub-menu > li > .sub-menu {
  top: 0;
}
.tj-header-area.header-4 .header-menu ul > li > .sub-menu > li.has-dropdown > a::after {
  display: block;
}
.tj-header-area.header-4 .social-icons li a {
  color: var(--tj-white);
  border: 1px solid var(--tj-white);
}
.tj-header-area.header-4-sticky .header-menu ul > li > a::before {
  display: none;
}
.tj-header-area.header-4-sticky .header-menu ul > li > a::after {
  display: none;
}
.tj-header-4-logo {
  max-width: 205px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-4-logo {
    max-width: 130px;
  }
}

/* !END: Theme Header CSS */
/**
  Buttons CSS
*/
.btn-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  color: var(--tj-white);
  gap: 8px;
  overflow: hidden;
  padding-right: 24px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.btn-inline::after, .btn-inline::before {
  content: "\f178";
  font-family: var(--tj-ff-fontawesome);
  font-weight: var(--tj-fw-regular);
  color: var(--tj-white);
  font-size: 16px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.btn-inline::before {
  -webkit-transform: translateX(-120%) translateY(-50%);
      -ms-transform: translateX(-120%) translateY(-50%);
          transform: translateX(-120%) translateY(-50%);
}
.btn-inline::after {
  left: auto;
  right: 0;
}
.btn-inline > span {
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  line-height: normal;
  letter-spacing: 0.02em;
}
.btn-inline:hover::before {
  -webkit-transform: translateX(0) translateY(-50%);
      -ms-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
}
.btn-inline:hover::after {
  -webkit-transform: translateX(120%) translateY(-50%);
      -ms-transform: translateX(120%) translateY(-50%);
          transform: translateX(120%) translateY(-50%);
}
.btn-inline:hover > span {
  -webkit-transform: translateX(24px);
      -ms-transform: translateX(24px);
          transform: translateX(24px);
}

.tj-footer-area.style-4 {
  padding: 0px;
}

.footer-top-area {
  background-color: var(--tj-theme-primary);
  padding: 34px 0;
}

.footer-contact-infos {
  text-align: center;
}
.footer-contact-infos .contact-footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-contact-infos .contact-footer-item .line {
  color: var(--tj-white);
}
.footer-contact-infos .contact-footer-item .contact_text span {
  font-size: 20px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
}
.footer-contact-infos .contact-footer-item .contact_text a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 20px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 1;
}
.footer-contact-infos .contact-footer-item .contact_text a .active-link {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}
.footer-contact-infos .contact-footer-item .contact_text a .hover-link {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  border-radius: 50%;
  position: absolute;
}
.footer-contact-infos .contact-footer-item .contact_text a:hover .active-link {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.footer-contact-infos .contact-footer-item .contact_text a:hover .hover-link {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-contact-infos .contact-footer-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-contact-infos .contact-footer-item .line {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-contact-infos .contact-footer-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-contact-infos .contact-footer-item .line {
    display: none;
  }
  .footer-contact-infos .contact-footer-item .contact_text span {
    font-size: 18px;
  }
  .footer-contact-infos .contact-footer-item .contact_text a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .footer-contact-infos .contact-footer-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-contact-infos .contact-footer-item .line {
    display: none;
  }
  .footer-contact-infos .contact-footer-item .contact_text span {
    font-size: 16px;
  }
  .footer-contact-infos .contact-footer-item .contact_text a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-middle-area {
    padding: 34px 0;
  }
}

.footer-social-media {
  max-width: 1145px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer-social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-social-media ul li {
  line-height: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social-media ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 278px;
  height: 238px;
  color: var(--tj-white);
  font-size: 20px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 10px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.footer-social-media ul li a .active-media {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}
.footer-social-media ul li a .hover-media {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 1;
  font-size: 16px;
  border: 1px solid var(--tj-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  border-radius: 50%;
  position: absolute;
}
.footer-social-media ul li a .hover-media i {
  position: relative;
  left: 1px;
}
.footer-social-media ul li a:hover .active-media {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.footer-social-media ul li a:hover .hover-media {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.footer-social-media ul li:last-child {
  border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-social-media ul li a {
    width: 230px;
    height: 210px;
    font-size: 18px;
    letter-spacing: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-social-media ul li a {
    width: 170px;
    height: 160px;
    font-size: 18px;
    letter-spacing: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-social-media {
    max-width: 360px;
  }
  .footer-social-media ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .footer-social-media ul li {
    border-right: none;
  }
  .footer-social-media ul li a {
    width: 170px;
    height: auto;
    font-size: 18px;
    letter-spacing: 0px;
  }
}
@media (max-width: 575px) {
  .footer-social-media ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .footer-social-media ul li {
    border-right: none;
  }
  .footer-social-media ul li a {
    width: 160px;
    height: auto;
    font-size: 16px;
    letter-spacing: 0px;
  }
}

.footer-bottom-area {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-bottom-area {
    padding: 25px 0;
  }
}

.copy-style-4 p {
  color: var(--tj-grey-5);
  margin-bottom: 0;
}
.copy-style-4 p a {
  color: var(--tj-white);
  font-weight: var(--tj-fw-regular);
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.copy-style-4 p a:hover {
  color: var(--tj-theme-primary);
}

/**----------------------------------------
START: Theme sec title CSS
----------------------------------------*/
.section-header.style-2 span {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  background-color: var(--tj-theme-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
}
.section-header.style-2 .title {
  font-weight: var(--tj-fw-medium);
  margin-bottom: 0;
}
.section-header.style-3 .subtitle {
  display: inline-block;
  color: var(--tj-theme-primary);
  font-weight: var(--tj-fw-medium);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}
.section-header.style-3 .title {
  font-size: 44px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-header.style-3 .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-header.style-3 .title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-header.style-3 .title {
    font-size: 30px;
  }
}
.section-header.style-4 .subtitle {
  display: inline-block;
  color: var(--tj-theme-primary);
  font-size: 12px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(129, 76, 236, 0.2);
  border-radius: 50px;
  padding: 5px 12px;
  margin-bottom: 25px;
}
.section-header.style-4 .title {
  font-size: 44px;
  font-weight: var(--tj-fw-sbold);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* !END: Theme sec title CSS */
/**----------------------------------------
START: Theme cursor CSS
----------------------------------------*/
body.tj-magic-cursor #magic-cursor {
  display: block;
}

#magic-cursor {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}

#ball {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  background-color: var(--tj-theme-primary) !important;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  mix-blend-mode: difference;
  color: transparent;
}

/* Ball view
============= */
#ball .ball-view {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 0 5px;
  line-height: 1.1;
  text-align: center;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  font-family: var(--tj-ff-body);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tj-white);
}

/* Ball drag
============= */
#ball .ball-drag {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tj-black);
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#ball .ball-drag::before,
#ball .ball-drag::after {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 19px;
  color: var(--tj--white);
  height: 10px;
  line-height: 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
  content: "\f104"; /* Font Awesome */
  left: 0;
  -webkit-transform: translate3d(-30px, 0, 0);
          transform: translate3d(-30px, 0, 0);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

#ball .ball-drag::after {
  content: "\f105"; /* Font Awesome */
  right: 0;
  -webkit-transform: translate3d(30px, 0, 0);
          transform: translate3d(30px, 0, 0);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

#ball.with-blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Ball close
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}

#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tj-black);
  line-height: 1;
  text-align: center;
}

.tj-magnetic-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* !END: Theme cursor CSS */
/**----------------------------------------
START: Theme Animation CSS
----------------------------------------*/
@-webkit-keyframes bounce-thum-1 {
  0% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes bounce-thum-1 {
  0% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes waves {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes waves {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes up-down-move {
  0% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes up-down-move {
  0% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes up-down-move-2 {
  0% {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes up-down-move-2 {
  0% {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate-animation {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes rotate-animation {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-4-area {
  padding: 150px 0 85px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-area {
    padding: 120px 0 85px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-area {
    padding: 120px 0 20px;
  }
}
.tj-hero-4-area::before {
  content: "";
  position: absolute;
  top: -174px;
  right: -324px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0.1) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  opacity: 0.6;
  z-index: -1;
}
.tj-hero-4-subtitle {
  font-weight: var(--tj-fw-sbold);
  font-size: 12px;
  letter-spacing: 0.05em;
  display: inline-block;
  background: #240f31;
  padding: 9px 22px 9px 32px;
  border-radius: 50px;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-4-subtitle {
    margin-bottom: 20px;
  }
}
.tj-hero-4-subtitle::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00ff2f;
  border-radius: 50%;
}
.tj-hero-4-title {
  font-weight: var(--tj-fw-sbold);
  font-size: 110px;
  line-height: 0.84;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-theme-primary)), to(var(--tj-white)));
  background: linear-gradient(to right, var(--tj-theme-primary) 0%, var(--tj-white) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-title {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-title {
    font-size: 70px;
  }
}
.tj-hero-4-bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.tj-hero-4-bottom-reviews {
  background: var(--tj-black);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 0.5px solid var(--tj-theme-h3-primary-1);
  border-radius: 15px;
  position: absolute;
  top: 118px;
  left: -30px;
  padding: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-bottom-reviews {
    z-index: 2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-reviews {
    left: 0;
    z-index: 2;
    padding: 30px 16px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-bottom-reviews {
    position: relative;
    margin-bottom: 60px;
    top: 20px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-reviews {
    position: relative;
    margin-bottom: 60px;
    top: 20px;
    left: 0;
    padding: 30px 27px;
  }
}
.tj-hero-4-bottom-reviews-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tj-hero-4-bottom-reviews-wrap-thumb {
  margin-right: 10px;
}
.tj-hero-4-bottom-reviews-wrap-thumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
.tj-hero-4-bottom-reviews-wrap-thumb ul li {
  list-style: none;
  margin-left: -16px;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
.tj-hero-4-bottom-reviews-wrap-thumb ul li:first-child {
  margin-left: 0;
}
.tj-hero-4-bottom-reviews-wrap-thumb ul li img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--tj-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-hero-4-bottom-reviews-wrap-thumb ul li img {
    width: 48px;
    height: 48px;
  }
}
.tj-hero-4-bottom-reviews-wrap-rating .star-ratings {
  unicode-bidi: bidi-override;
  font-size: 24px;
  letter-spacing: 8px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-theme-primary);
  margin-bottom: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-hero-4-bottom-reviews-wrap-rating .star-ratings {
    font-size: 20px;
    letter-spacing: 5px;
  }
}
.tj-hero-4-bottom-reviews-wrap-rating .star-ratings .fill-ratings {
  color: var(--tj-theme-primary);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.tj-hero-4-bottom-reviews-wrap-rating .star-ratings .fill-ratings span {
  display: inline-block;
}
.tj-hero-4-bottom-reviews-wrap-rating .star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: var(--tj-black);
}
.tj-hero-4-bottom-reviews-wrap-rating p {
  margin-bottom: 0;
  color: var(--tj-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-hero-4-bottom-reviews-wrap-rating p {
    font-size: 14px;
  }
}
.tj-hero-4-bottom-reviews-title {
  border-bottom: 0.5px solid var(--tj-theme-h3-primary-1);
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.tj-hero-4-bottom-reviews-title p {
  font-weight: var(--tj-fw-sbold);
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--tj-white);
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-reviews-title p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-reviews-title p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.tj-hero-4-bottom-thumb {
  max-width: 410px;
  width: 100%;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-bottom-thumb {
    max-width: 390px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-thumb {
    max-width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-4-bottom-thumb {
    max-width: 315px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-bottom-thumb {
    max-width: 310px;
    margin-top: -10px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-thumb {
    max-width: 230px;
    margin-top: -10px;
  }
}
.tj-hero-4-bottom-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 200px;
}
.tj-hero-4-bottom-thumb-shape-1 {
  position: absolute;
  bottom: 26%;
  left: -38%;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-bottom-thumb-shape-1 {
    bottom: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-thumb-shape-1 {
    bottom: 16%;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-thumb-shape-1 {
    bottom: 34%;
    left: -26%;
  }
}
.tj-hero-4-bottom-thumb-shape-2 {
  position: absolute;
  top: 42%;
  right: -38%;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-bottom-thumb-shape-2 {
    right: -25%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-thumb-shape-2 {
    top: 15%;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-thumb-shape-2 {
    right: -26%;
  }
}
.tj-hero-4-bottom-counter {
  position: absolute;
  right: -65px;
  top: 118px;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-4-bottom-counter {
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-counter {
    top: 145px;
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-4-bottom-counter {
    position: relative;
    right: auto;
    top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-bottom-counter {
    position: relative;
    right: auto;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-counter {
    position: relative;
    right: auto;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.tj-hero-4-bottom-counter-item {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-4-bottom-counter-item {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-4-bottom-counter-item {
    margin-right: 7px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-bottom-counter-item {
    margin-right: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-counter-item {
    margin-bottom: 0;
  }
}
.tj-hero-4-bottom-counter-item .number {
  font-size: 48px;
  color: var(--tj-white);
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-counter-item .number {
    font-size: 32px !important;
  }
}
.tj-hero-4-bottom-counter-item .number .odometer.odometer-auto-theme {
  font-family: var(--tj-ff-body);
  margin-right: 2px;
}
.tj-hero-4-bottom-counter-item .text {
  font-weight: 400;
  font-size: 16px;
  color: var(--tj-white);
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-counter-item .text {
    font-size: 13px;
  }
}
.tj-hero-4-bottom-tag {
  background: transparent;
  border: 1px solid var(--tj-white);
  border-radius: 50px;
  font-weight: var(--tj-fw-sbold);
  display: inline-block;
  padding: 14px 22px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-4-bottom-tag {
    padding: 11px 19px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .tj-hero-4-bottom-tag {
    padding: 10px 13px;
    font-size: 10px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.tj-maquee-section.style-4 {
  background-color: var(--tj-black-2);
  padding: 26px 0;
}
.tj-maquee-section.style-4 .maquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.tj-maquee-section.style-4 .marquee-item .marquee-box .marquee-icon img {
  -webkit-animation: rotateImg3 6s infinite linear;
          animation: rotateImg3 6s infinite linear;
}

@-webkit-keyframes rotateImg3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateImg3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.tj-about-4-area {
  padding: 70px 0 40px;
}
.tj-about-4-area .section-header {
  margin-bottom: 4px;
}
.tj-about-4-wrapper {
  max-width: 1120px;
  width: 100%;
}
.tj-about-4-paragraph {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--tj-white);
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-about-4-paragraph {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-about-4-paragraph {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .tj-about-4-paragraph {
    font-size: 23px;
  }
}
.tj-about-4-paragraph .color {
  background: -webkit-gradient(linear, left top, right top, from(#8750f7), to(#f0a));
  background: linear-gradient(90deg, #8750f7 0%, #f0a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tj-about-4-button {
  margin-top: 5px;
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.tj-service-4-area {
  padding: 100px 0 90px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-4-area {
    padding: 40px 0 50px;
  }
}
.tj-service-4-area::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 200px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 900px;
  height: 700px;
  border-radius: 50%;
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  opacity: 0.6;
  z-index: -1;
}
.tj-service-4-wrapper {
  background: rgba(36, 15, 49, 0.5);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}
.tj-service-4-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--tj-theme-primary);
  border-left: 1px solid var(--tj-theme-primary);
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.tj-service-4-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--tj-theme-primary);
  border-right: 1px solid var(--tj-theme-primary);
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.tj-service-4-wrapper:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  border-radius: 25px;
}
.tj-service-4-wrapper:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  border-radius: 25px;
}
.tj-service-4-wrapper:hover .tj-service-4-icon span i {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.tj-service-4-wrapper .service-link {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tj-service-4-icon {
  margin-bottom: 75px;
}
.tj-service-4-icon span {
  width: 64px;
  height: 64px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 34px;
  background: var(--tj-theme-h3-primary-1);
  border-radius: 20px;
  color: var(--tj-white);
}
.tj-service-4-icon span i {
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.tj-service-4-title {
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  color: var(--tj-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-4-title {
    font-size: 21px;
  }
}
.tj-service-4-title a {
  display: inline-block;
}
.tj-service-4-paragraph {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #c0ace9;
  opacity: 0.8;
}

.tj-service-6-area {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-black-2);
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-6-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.tj-service-6-area .tj-btn-primary {
  width: 100%;
  border-radius: 12px;
  padding: 28px 35px;
}
.tj-service-6-area .tj-btn-primary .icon_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  padding: 0 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.tj-service-6-area .tj-btn-primary .icon_box .icon_first,
.tj-service-6-area .tj-btn-primary .icon_box .icon_second {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-service-6-area .tj-btn-primary .icon_box .icon_second {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-service-6-area .tj-btn-primary .icon_box i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-service-6-area .tj-btn-primary:hover .icon_box .icon_first {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-service-6-area .tj-btn-primary:hover .icon_box .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.tj-service-6-section-wrapper .section-header {
  margin: auto;
  margin-bottom: 50px;
}
.tj-service-6-wrapper {
  background: var(--tj-theme-accent-2);
  padding: 30px 32px 30px 32px;
  margin-bottom: 30px;
  border-radius: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-6-wrapper {
    padding: 30px 15px;
  }
}
.tj-service-6-wrapper:hover .tj-service-6-icon span {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.tj-service-6-icon {
  width: 64px;
  height: 64px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--tj-theme-primary);
  border-radius: 50%;
  margin-bottom: 35px;
}
.tj-service-6-icon span {
  font-size: 32px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tj-service-6-title {
  font-weight: var(--tj-fw-sbold);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.tj-service-6-title a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-service-6-title a:hover {
  color: var(--tj-theme-primary);
}
.tj-service-6-paragraph {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-6-paragraph {
    font-size: 14px;
  }
}
.tj-service-6-paragraph p {
  margin-bottom: 24px;
}
.tj-service-6-paragraph ul {
  padding-left: 0;
}
.tj-service-6-paragraph ul li {
  color: var(--tj-white);
  list-style: none;
  position: relative;
  padding-left: 14px;
  line-height: 1;
  margin-bottom: 12px;
}
.tj-service-6-paragraph ul li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-white);
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.tj-project-4-area {
  padding: 115px 0 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-4-area {
    padding: 20px 0 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-4-area {
    padding: 0px 0 0;
  }
}
.tj-project-4-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -380px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  opacity: 0.6;
  z-index: -1;
}
.tj-project-4-wrappper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tj-project-4-item {
  max-width: 541px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-4-item {
    max-width: 460px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-4-item {
    max-width: 400px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-4-item {
    max-width: 280px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-4-item {
    margin-bottom: 60px;
  }
}
.tj-project-4-item:nth-child(2) {
  margin-top: -120px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-4-item:nth-child(2) {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.tj-project-4-item:nth-child(3) {
  margin-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-4-item:nth-child(3) {
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.tj-project-4-item:nth-child(4) {
  margin-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-4-item:nth-child(4) {
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.tj-project-4-item:nth-child(8) {
  margin-left: 120px;
}
.tj-project-4-thumb {
  background: #2e1f3e;
  padding: 18px;
  margin-bottom: 35px;
  border-radius: 25px;
  max-width: 536px;
  width: 100%;
  height: auto;
}
.tj-project-4-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.tj-project-4-subtitle {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-theme-primary);
  margin-bottom: 15px;
  display: inline-block;
}
.tj-project-4-title {
  font-weight: var(--tj-fw-sbold);
  font-size: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-4-title {
    font-size: 24px;
  }
}
.tj-project-4-title a {
  display: inline-block;
}
.tj-project-4-button .tj-btn-primary {
  padding: 17px 80px;
}

.tj-project-4-content {
  position: relative;
  z-index: 1;
}
.tj-project-4-content .portfolio-link {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.tj-cta-section {
  padding-bottom: 155px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-cta-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-cta-section {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-cta-section {
    padding-bottom: 80px;
  }
}

.cta-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  padding: 94px 25px;
}
.cta-wrapper .cta-inner {
  text-align: center;
}
.cta-wrapper .cta-inner .cta-images {
  max-width: 98px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.cta-wrapper .cta-inner .cta-images img {
  height: 98px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.cta-wrapper .cta-inner .title {
  font-size: 58px;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 25px;
  letter-spacing: -2px;
}
.cta-wrapper .cta-inner .subtitle {
  display: block;
  font-weight: var(--tj-fw-medium);
}
.cta-wrapper .cta-inner .cta-button {
  margin-top: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper .cta-inner .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper {
    padding: 80px 25px;
  }
  .cta-wrapper .cta-inner .title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-wrapper {
    padding: 75px 15px;
  }
  .cta-wrapper .cta-inner .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper {
    padding: 75px 15px;
  }
  .cta-wrapper .cta-inner .title {
    font-size: 35px;
  }
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme FAQ CSS
----------------------------------------*/
.faq-section.style-4 {
  background-color: var(--tj-theme-accent-1);
  padding-top: 210px;
  padding-bottom: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-section.style-4 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-section.style-4 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-section.style-4 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.accordion-item.style-2 {
  background-color: transparent;
}
.accordion-item.style-2 .faq-title::before {
  width: 28px;
  height: 28px;
  font-size: 15px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-theme-primary);
  border: 2px solid var(--tj-theme-primary);
  border-radius: 50%;
}
.accordion-item.style-2 .faq-text {
  max-width: 810px;
}
@media (max-width: 575px) {
  .accordion-item.style-2 .faq-title {
    padding: 16px 50px 16px 15px;
  }
}

/* !END: Theme FAQ CSS */
/**----------------------------------------
START: Theme testimonial CSS
----------------------------------------*/
.testimonial-section.style-4 {
  background-color: transparent;
  padding-top: 170px;
  padding-bottom: 0px;
}
.testimonial-section.style-4::before {
  display: none;
}
.testimonial-section.style-4 .testimonial-pagination {
  text-align: center;
  margin-top: 25px;
}
.testimonial-section.style-4 .testimonial-pagination .swiper-pagination-bullet {
  background: var(--tj-grey-2);
  opacity: 1;
}
.testimonial-section.style-4 .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--tj-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section.style-4 {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section.style-4 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-section.style-4 {
    padding-top: 80px;
  }
}

.testimonial-item.style-4 {
  background-color: var(--tj-theme-accent-2);
  border-radius: 15px;
  padding: 45px 30px;
  max-width: 415px;
  width: 100%;
}
.testimonial-item.style-4 .top-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
.testimonial-item.style-4 .top-infos .title {
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.testimonial-item.style-4 .desc {
  color: var(--tj-white);
}
.testimonial-item.style-4 .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-item.style-4 .testimonial-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.testimonial-item.style-4 .testimonial-auother .auother-image {
  max-width: 50px;
  width: 100%;
}
.testimonial-item.style-4 .testimonial-auother .auother-image img {
  width: 100%;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-item.style-4 .testimonial-auother .auother-text .title {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.testimonial-item.style-4 .testimonial-auother .auother-text .subtitle {
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item.style-4 {
    padding: 35px 15px;
  }
  .testimonial-item.style-4 .top-infos {
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item.style-4 {
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item.style-4 {
    padding: 35px 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .testimonial-item.style-4 {
    padding: 35px 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-item.style-4 .top-infos {
    gap: 12px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-theme-primary);
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-theme-primary);
}
.star-ratings .fill-ratings {
  color: var(--tj-theme-primary);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings .fill-ratings span {
  display: inline-block;
}
.star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: var(--tj-theme-primary);
}

/* !END: Theme testimonial CSS */
/**----------------------------------------
START: Theme Counter CSS
----------------------------------------*/
.tj-counter-section.style-4 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 95px 0;
}
.tj-counter-section.style-4 .section-header {
  max-width: 530px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-section.style-4 .section-header {
    max-width: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-section.style-4 {
    padding: 80px 0;
  }
  .tj-counter-section.style-4 .section-header {
    margin-bottom: 15px;
  }
}

.counter-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.counter-content-area .funfact_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-content-area .funfact_wrapper {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .counter-content-area .funfact_wrapper {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 25px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 575px) {
  .counter-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .counter-content-area .funfact_wrapper {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.funfact-item.style-4 {
  background-color: var(--tj-theme-accent-2);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  border-radius: 25px;
  max-width: 310px;
  width: 100%;
  padding: 30px 25px 35px 30px;
  margin-bottom: 0;
}
.funfact-item.style-4 .number {
  font-size: 48px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-body);
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.funfact-item.style-4 .odometer.odometer-auto-theme,
.funfact-item.style-4 .odometer.odometer-theme-default {
  font-family: var(--tj-ff-body);
}
.funfact-item.style-4 .text {
  text-align: end;
  color: var(--tj-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .funfact-item.style-4 {
    max-width: 260px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-item.style-4 {
    max-width: 215px;
    padding: 30px 15px 35px 15px;
  }
  .funfact-item.style-4 .number {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-item.style-4 .number {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .funfact-item.style-4 {
    max-width: 245px;
    padding: 30px 15px 35px 15px;
  }
  .funfact-item.style-4 .number {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .funfact-item.style-4 {
    padding: 30px 15px 35px 15px;
  }
  .funfact-item.style-4 .number {
    font-size: 40px;
  }
}

/* !END: Theme Counter CSS */
/**----------------------------------------
START: Theme Progress CSS
----------------------------------------*/
.tj-progress-section {
  padding-bottom: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-progress-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-progress-section {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress-section {
    padding-bottom: 50px;
  }
}

.progress-single {
  max-width: 306px;
  width: 100%;
  background-color: var(--tj-theme-accent-2);
  padding: 45px 30px 50px 35px;
  margin-bottom: 30px;
  border-radius: 25px;
}
.progress-single .progress-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.progress-single .progress-text .icon-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 1;
  border-radius: 20px;
  background-color: var(--tj-theme-accent-2);
}
.progress-single .progress-text .icon-box img {
  max-width: 40px;
  width: 100%;
}
.progress-single .progress-text .progress-title .title {
  font-weight: var(--tj-fw-medium);
  margin-bottom: 0;
}
.progress-single .desc {
  color: var(--tj-white);
}
.progress-single .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .progress-single {
    padding: 35px 15px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .progress-single {
    padding: 35px 15px 40px;
  }
  .progress-single .progress-text {
    gap: 15px;
  }
  .progress-single .progress-text .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .progress-single .progress-text .icon-box img {
    max-width: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .progress-single {
    max-width: 100%;
    padding: 30px 15px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-single {
    max-width: 100%;
    padding: 30px 15px 35px;
  }
  .progress-single .progress-text {
    gap: 15px;
  }
  .progress-single .progress-text .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .progress-single .progress-text .icon-box img {
    max-width: 30px;
  }
}
@media (max-width: 575px) {
  .progress-single {
    padding: 30px 15px 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .progress-single .progress-text .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .progress-single .progress-text .icon-box img {
    max-width: 30px;
  }
}

.progress-item {
  position: relative;
  background: var(--tj-color-common-white);
  margin-top: 50px;
  z-index: 1;
}
.progress-item .item_value {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-white);
}
.progress-item .item_bar {
  position: relative;
  height: 4px;
  background-color: var(--tj-theme-accent-2);
  border-radius: 150px;
}
.progress-item .item_bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  margin: 0;
  border-radius: 0px;
  overflow: visible;
  background-color: var(--tj-white);
  border-radius: 150px;
  -webkit-transition: width 100ms ease;
  transition: width 100ms ease;
}

/* !END: Theme Progress CSS */
/**----------------------------------------
START: Theme Work CSS
----------------------------------------*/
.resume-section.style-4 {
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
  background-color: transparent;
  z-index: 1;
}
.resume-section.style-4 .section-header {
  margin-bottom: 95px;
}
.resume-section.style-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  margin-left: -15%;
  margin-top: 12%;
  opacity: 0.6;
  z-index: -1;
}
.resume-section.style-4 .resume_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  border-bottom: 1px solid rgba(129, 76, 236, 0.2);
  padding-bottom: 65px;
  margin-bottom: 60px;
}
.resume-section.style-4 .resume_inner:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume-section.style-4 .resume_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.resume-section.style-4 .resume_wrapper {
  max-width: 1030px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .resume-section.style-4 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .resume-section.style-4 .resume_wrapper {
    max-width: 950px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .resume-section.style-4 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .resume-section.style-4 .resume_wrapper {
    max-width: 950px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume-section.style-4 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .resume-section.style-4 .section-header {
    margin-bottom: 50px;
  }
}

.resume-sidebar-btn .side-sticky {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-grey-3);
  text-transform: uppercase;
  background-color: var(--tj-theme-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume-sidebar-btn .side-sticky {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
}

.resume_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1030px;
  width: 100%;
  margin-left: auto;
  gap: 95px;
  border-bottom: 1px solid rgba(129, 76, 236, 0.2);
  padding-bottom: 45px;
  margin-bottom: 40px;
}
.resume_item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.resume_item .resume_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: 735px;
  width: 100%;
}
.resume_item .resume_content .icon_box {
  max-width: 60px;
  width: 100%;
}
.resume_item .resume_content .icon_box img {
  width: 100%;
  border-radius: 8px;
}
.resume_item .resume_content .resume_text {
  max-width: 645px;
  width: 100%;
}
.resume_item .resume_content .resume_text .title {
  font-size: 20px;
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}
.resume_item .resume_content .resume_text .subtitle {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.resume_item .resume_content .resume_text .desc {
  font-size: 18px;
}
.resume_item .resume_content .resume_text .desc p:last-child {
  margin-bottom: 0;
}
.resume_item .resume_date {
  max-width: 210px;
  width: 100%;
}
.resume_item .resume_date .date {
  display: block;
  color: var(--tj-white);
  letter-spacing: 0.02em;
  text-align: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .resume_item {
    max-width: 780px;
    gap: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume_item {
    gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .resume_item .resume_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .resume_item .resume_date {
    max-width: 100%;
  }
  .resume_item .resume_date .date {
    text-align: start;
  }
}

/* !END: Theme Work CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-header-area.header-5 {
  padding: 0 60px 0 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-5 {
    padding: 0 20px 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-5.header-sticky {
    padding: 20px 20px;
  }
}
.tj-header-area.header-5 .header-menu ul {
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.header-5 .header-menu ul {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
.tj-header-area.header-5 .header-menu ul > li > a {
  padding: 30px 14px;
}
.tj-header-area.header-5 .header-menu ul > li > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  top: 51%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border: 1px solid var(--tj-theme-primary);
  border-radius: 50px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.tj-header-area.header-5 .header-menu ul > li > a::after {
  display: none;
}
.tj-header-area.header-5 .header-menu ul > li > a:hover::before {
  visibility: visible;
  opacity: 1;
}
.tj-header-area.header-5 .header-menu ul > li > a.current-menu-item::before {
  visibility: visible;
  opacity: 1;
}
.tj-header-area.header-5 .header-menu ul > li > .sub-menu > li.has-dropdown > a::after {
  display: block;
}
.tj-header-area.header-5 .social-icons li a {
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.tj-header-area.header-5 .social-icons li a:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.tj-header-5-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-header-5-right-button {
  margin-left: 25px;
}
@media (max-width: 575px) {
  .tj-header-5-right-button {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-5-right-media {
    display: none;
  }
}
.tj-header-5-right-social-icons {
  gap: 10px;
}
.tj-header-5-right-social-icons li a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 13px;
}
.tj-header-5-right-button .tj-btn-primary i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.tj-header-5-logo {
  max-width: 335px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-header-5-logo {
    max-width: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-header-5-logo {
    max-width: 115px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-5-logo {
    max-width: 112px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-header-5-logo {
    max-width: 112px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-5-logo {
    max-width: 112px;
  }
}
.tj-header-5-logo-box {
  width: 112px;
  height: 112px;
  background: var(--tj-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--tj-theme-primary);
  border-top: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-5-logo-box {
    width: 90px;
    height: 80px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-area.footer-5 {
  padding-top: 120px;
  padding-bottom: 0px;
  position: relative;
  background-color: var(--tj-black-2);
  overflow: hidden;
  z-index: 1;
}
.tj-footer-area.footer-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  margin-left: -15%;
  margin-top: 12%;
  opacity: 0.6;
  z-index: -1;
}
.footer-content-area-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 12px;
  padding: 60px 50px;
  gap: 8px;
}

.footer-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 60px 50px;
  gap: 8px;
}
.footer-content-area .line {
  display: inline-block;
  width: 2px;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-content-area .footer-content-area-1 {
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-content-area .footer-content-area-1 {
    padding: 35px 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-content-area .line {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-content-area .footer-content-area-1 {
    padding: 35px 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .footer-content-area .line {
    display: none;
  }
}

.footer-widget .footer-title .title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: var(--tj-fw-regular);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 35px;
}
.footer-widget.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.widget_nav_menu ul li {
  margin-bottom: 12px;
}
.footer-widget.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.widget_nav_menu ul li a {
  font-size: 15px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-regular);
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.footer-widget.widget_nav_menu ul li a:hover {
  color: var(--tj-theme-primary);
}
.footer-widget.footer_contact .contact-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.footer_contact .contact-item ul li {
  margin-bottom: 15px;
}
.footer-widget.footer_contact .contact-item ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.footer_contact .contact-item ul li a {
  font-size: 15px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-regular);
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.footer-widget.footer_contact .contact-item ul li a:hover {
  color: var(--tj-theme-primary);
}
.footer-widget.footer_socials_media .socials-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.footer_socials_media .socials-links ul li {
  margin-bottom: 10px;
}
.footer-widget.footer_socials_media .socials-links ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.footer_socials_media .socials-links ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  font-size: 15px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-regular);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.footer-widget.footer_socials_media .socials-links ul li a span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 29px;
  height: 29px;
  line-height: 1;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.footer-widget.footer_socials_media .socials-links ul li a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tj-theme-primary);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  z-index: -1;
}
.footer-widget.footer_socials_media .socials-links ul li a span i {
  color: var(--tj-white);
}
.footer-widget.footer_socials_media .socials-links ul li a:hover {
  color: var(--tj-theme-primary);
}
.footer-widget.footer_socials_media .socials-links ul li a:hover span::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.footer-widget.footer_socials_media .socials-links ul li a:hover span i {
  color: var(--tj-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-title .title {
    margin-bottom: 25px;
  }
}

.copyright-area {
  padding: 30px 0;
}

.copyright-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}
.copyright-text p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.copyright-text p a:hover {
  color: var(--tj-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-5-area {
  min-height: 925px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--tj-bg-5);
  position: relative;
  z-index: 1;
}
.tj-hero-5-area::before {
  content: "";
  position: absolute;
  top: -300px;
  left: 145px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 552px;
  height: 552px;
  border-radius: 50%;
  background: linear-gradient(260deg, #7343d2 0%, rgba(115, 67, 210, 0.1) 100%);
  opacity: 0.6;
  z-index: 2;
  -webkit-filter: blur(1000px);
          filter: blur(1000px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-5-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-area {
    min-height: 695px;
  }
}
.tj-hero-5-area .hero_scroll {
  position: absolute;
  left: 0;
  bottom: 115px;
  z-index: 2;
}
.tj-hero-5-area .hero_scroll .down {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 14px;
  color: var(--tj-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.tj-hero-5-area .hero_scroll .down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 32px;
  border: 1px solid var(--tj-white);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  border-radius: 50px;
}
.tj-hero-5-area .hero_scroll .down span i {
  display: inline-block;
  position: relative;
  right: -6px;
  top: 4px;
  -webkit-animation: jump-arrow 2.5s infinite;
          animation: jump-arrow 2.5s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-area .hero_scroll {
    left: -15px;
    bottom: 90px;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-area .hero_scroll {
    left: -20px;
    bottom: 90px;
  }
}
.tj-hero-5-thumb {
  max-width: 1275px;
  width: 100%;
  position: absolute;
  height: 917px;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-5-thumb {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-5-thumb {
    max-width: 930px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-5-thumb {
    max-width: 800px;
    height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-thumb {
    position: static;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    max-width: 791px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-thumb {
    position: static;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    max-width: 600px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-thumb {
    display: none;
  }
}
.tj-hero-5-thumb::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(92deg, #0d0612 0%, rgba(13, 6, 18, 0) 100%);
  z-index: -1;
}
.tj-hero-5-wrapper {
  max-width: 545px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-wrapper {
    padding-top: 200px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-wrapper {
    padding-top: 180px;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-wrapper {
    padding-top: 160px;
  }
}
.tj-hero-5-content {
  position: relative;
  z-index: 2;
}
.tj-hero-5-sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: var(--tj-fw-sbold);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-5-sub-title {
    margin-bottom: 15px;
  }
}
.tj-hero-5-title {
  font-weight: var(--tj-fw-sbold);
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.tj-hero-5-paragraph {
  font-size: 18px;
  color: var(--tj-white);
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-paragraph {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tj-hero-5-paragraph {
    font-size: 14px;
  }
}
.tj-hero-5-thumb-shape-1 {
  position: absolute;
  top: 54%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.tj-hero-5-thumb-shape-2 {
  position: absolute;
  width: 295px;
  height: 626px;
  top: 5%;
  right: 22%;
  -webkit-mask-image: url(../img/hero/hero-4-line-shape.svg);
          mask-image: url(../img/hero/hero-4-line-shape.svg);
  background: linear-gradient(243.16deg, #030915 18.92%, #814CEC 28.98%, #814CEC 69.8%, #051F46 79.62%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: -1;
  -webkit-animation: up-down-move 3s forwards infinite alternate;
          animation: up-down-move 3s forwards infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-5-thumb-shape-2 {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-5-thumb-shape-2 {
    width: 241px;
    top: 5%;
    right: 0%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-5-thumb-shape-2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-thumb-shape-2 {
    top: 42%;
    right: 3%;
    width: 260px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-thumb-shape-2 {
    display: none;
  }
}
.tj-hero-5-thumb-shape-3 {
  position: absolute;
  top: 41%;
  right: 24%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
  rotate: -90deg;
  -webkit-animation: up-down-move-2 3s forwards infinite alternate;
          animation: up-down-move-2 3s forwards infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-5-thumb-shape-3 {
    top: 38%;
    right: 10%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-5-thumb-shape-3 {
    right: 4%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-5-thumb-shape-3 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-thumb-shape-3 {
    top: 65%;
    right: 8%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-5-thumb-shape-3 {
    display: none;
  }
}
.tj-hero-5-thumb-shape-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  right: -120px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-white);
}
.tj-hero-5-thumb-shape-3 span {
  color: var(--tj-white);
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tj-hero-5-thumb-shape-4 {
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-5-thumb-shape-4 {
    left: 60%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-5-thumb-shape-4 {
    left: 66%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-thumb-shape-4 {
    top: 83%;
  }
}
.tj-hero-5-thumb-shape-4-text-animed {
  position: relative;
}
.tj-hero-5-thumb-shape-4-text-animed h2 {
  font-size: 775px;
  display: inline-block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-5-thumb-shape-4-text-animed h2 {
    font-size: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-5-thumb-shape-4-text-animed h2 {
    font-size: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-5-thumb-shape-4-text-animed h2 {
    font-size: 665px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-5-thumb-shape-4-text-animed h2 {
    font-size: 565px;
  }
}
.tj-hero-5-thumb-shape-4-text-animed h2.first {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
}
.tj-hero-5-thumb-shape-4-text-animed h2.second {
  color: transparent;
  -webkit-text-stroke: 2px rgba(135, 80, 247, 0.6);
  -webkit-animation: waves 4s ease-in-out infinite;
          animation: waves 4s ease-in-out infinite;
}
.tj-hero-5-thumb-mobile {
  max-width: 780px;
  width: 100%;
  margin: auto;
  margin-top: 40px;
}
.tj-hero-5-thumb-mobile img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-5-thumb-mobile {
    margin-top: 10px;
  }
}

.tj-btn-primary-5 i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

@-webkit-keyframes jump-arrow {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}

@keyframes jump-arrow {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
.hero-content-box.style-8 .subtitle .wave {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: wave-animation;
          animation-name: wave-animation;
  display: inline-block;
  -webkit-transform-origin: 70% 70%;
      -ms-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
}
/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Couter CSS
----------------------------------------*/
.tj-counter-5-area {
  padding: 120px 0 120px;
  position: relative;
  z-index: 1;
}
.tj-counter-5-area::before {
  content: "";
  position: absolute;
  bottom: -380px;
  right: -211px;
  width: 900px;
  height: 700px;
  border-radius: 50%;
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  opacity: 0.6;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-counter-5-area {
    padding: 120px 0 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-5-area {
    padding: 100px 0 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-5-area {
    padding: 80px 0 50px;
  }
}
.tj-counter-5-shape-1 {
  position: absolute;
  left: 10%;
  bottom: 10%;
  z-index: -1;
  -webkit-animation: up-down-move 3s forwards infinite alternate;
          animation: up-down-move 3s forwards infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-counter-5-shape-1 {
    left: 2%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-5-shape-1 {
    left: 1%;
    bottom: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-counter-5-shape-1 {
    left: 1%;
    bottom: 7%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-5-shape-1 {
    left: 0%;
    bottom: 6%;
  }
}
.tj-counter-5-shape-2 {
  position: absolute;
  top: 30%;
  right: 11%;
  z-index: -1;
  -webkit-animation: up-down-move-2 3s forwards infinite alternate;
          animation: up-down-move-2 3s forwards infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-counter-5-shape-2 {
    top: 28%;
    right: 2%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-counter-5-shape-2 {
    top: 27%;
    right: 1%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-5-shape-2 {
    top: 18%;
    right: 1%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-counter-5-shape-2 {
    top: 15%;
    right: 2%;
  }
}
.tj-counter-5-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 90px 30px 97px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-counter-5-wrapper {
    padding: 50px 15px 50px;
  }
  .tj-counter-5-wrapper .funfact-item {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .tj-counter-5-wrapper {
    padding: 45px 15px 45px;
  }
  .tj-counter-5-wrapper .funfact-item {
    margin-bottom: 15px;
  }
}
.tj-counter-5-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--tj-theme-primary);
  font-size: 64px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.tj-counter-5-paragraph:last-child {
  margin-bottom: 0;
}

/* !END: Theme Couter CSS */
/**----------------------------------------
START: Theme Faq CSS
----------------------------------------*/
.tj-service-5-area {
  padding: 0 0 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-5-area {
    padding: 0 0 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-5-area {
    padding: 0 0 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-5-area {
    padding: 0 0 50px;
  }
}
.tj-service-5-accordion-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-5-accordion-wrap {
    row-gap: 50px;
  }
}
.tj-service-5-accordion-list {
  padding-left: 0;
}
.tj-service-5-accordion-list-content {
  max-width: 504px;
  width: 100%;
  margin-left: 50px;
  margin-top: 50px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-5-accordion-list-content {
    max-width: 430px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-5-accordion-list-content {
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .tj-service-5-accordion-list-content {
    margin-left: 32px;
    margin-top: 30px;
  }
}
.tj-service-5-accordion-list-title {
  color: var(--tj-white);
  margin-bottom: 0;
  font-weight: var(--tj-fw-bold);
  font-size: 30px;
  letter-spacing: -0.02em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
.tj-service-5-accordion-list-title::before {
  content: "\e093";
  top: 0;
  right: 0;
  color: var(--tj-white);
  position: absolute;
  font-family: var(--tj-ff-fontawesome);
  font-weight: var(--tj-fw-regular);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.tj-service-5-accordion-list-title span {
  color: var(--tj-theme-primary);
  margin-right: 4px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-service-5-accordion-list-title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .tj-service-5-accordion-list-title {
    font-size: 20px;
  }
}
.tj-service-5-accordion-list-paragraph {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-5-accordion-list-paragraph {
    font-size: 15px;
  }
}
.tj-service-5-accordion-list li {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 30px;
  list-style: none;
  padding: 30px 30px 30px 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-5-accordion-list li {
    padding: 30px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-5-accordion-list li {
    padding: 25px 15px;
  }
}
.tj-service-5-accordion-list li::before {
  position: absolute;
  content: "\e093";
  font-family: var(--tj-ff-fontawesome);
  right: 0;
  color: var(--tj-white);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  top: 0;
}
.tj-service-5-accordion-thumb {
  max-width: 615px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-5-accordion-thumb {
    max-width: 540px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-5-accordion-thumb {
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-5-accordion-thumb {
    max-width: 100%;
  }
}
.tj-service-5-accordion-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-service-5-accordion-list-item {
  margin-bottom: 22px;
}
.tj-service-5-accordion-list-item span {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-white);
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 12px;
  line-height: 2;
}
@media (max-width: 575px) {
  .tj-service-5-accordion-list-item span {
    font-size: 14px;
  }
}
.tj-service-5-accordion-list-item span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-white);
}

.accordion-list li.active h3 {
  padding-top: 50px;
  padding-bottom: 30px;
  -webkit-transform: translateY(22px);
      -ms-transform: translateY(22px);
          transform: translateY(22px);
  margin-bottom: -115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .accordion-list li.active h3 {
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-list li.active h3 {
    -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .accordion-list li.active h3 {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin-bottom: 0;
  }
}
.accordion-list li.active h3::before {
  visibility: hidden;
  opacity: 0;
}

.accordion-list li.active {
  border: 1px solid var(--tj-theme-primary);
}

/* !END: Theme Faq CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.tj-cta-section.style-5 {
  padding-bottom: 0px;
  background-color: var(--tj-black-2);
}

.cta-wrapper.style-5 {
  padding: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper.style-5 {
    padding: 30px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-wrapper.style-5 {
    padding: 30px 15px;
  }
}

.cta-inner-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cta-inner-5 .cta-images {
  max-width: 295px;
  width: 100%;
}
.cta-inner-5 .cta-images img {
  width: 100%;
  border-radius: 25px;
}
.cta-inner-5 .cta-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 840px;
  width: 100%;
}
.cta-inner-5 .cta-content .cta-text {
  max-width: 665px;
  width: 100%;
}
.cta-inner-5 .cta-content .cta-text .title {
  font-size: 60px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.cta-inner-5 .cta-content .cta-text span {
  display: block;
  color: var(--tj-white);
}
.cta-inner-5 .cta-content .cta-button .cta-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: var(--tj-white);
  font-size: 30px;
  background-color: var(--tj-black-2);
  text-decoration: none;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-inner-5 {
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-inner-5 {
    gap: 30px;
  }
  .cta-inner-5 .cta-content .cta-text .title {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .cta-inner-5 .cta-content .cta-button .cta-link {
    width: 90px;
    height: 90px;
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-inner-5 {
    gap: 30px;
  }
  .cta-inner-5 .cta-images {
    max-width: 230px;
  }
  .cta-inner-5 .cta-content .cta-text .title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .cta-inner-5 .cta-content .cta-button .cta-link {
    width: 75px;
    height: 75px;
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-inner-5 {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-inner-5 .cta-images {
    max-width: 230px;
  }
  .cta-inner-5 .cta-content .cta-text .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .cta-inner-5 .cta-content .cta-button .cta-link {
    width: 75px;
    height: 75px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .cta-inner-5 {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-inner-5 .cta-images {
    max-width: 230px;
  }
  .cta-inner-5 .cta-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-inner-5 .cta-content .cta-text .title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .cta-inner-5 .cta-content .cta-button .cta-link {
    width: 75px;
    height: 75px;
    font-size: 25px;
  }
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-section.style-5 {
  background-color: var(--tj-black-2);
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.contact-section.style-5::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  margin-right: -4%;
  margin-bottom: -6%;
  opacity: 0.5;
  z-index: -1;
}
.contact-section.style-5 .section-header {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-section.style-5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contact_wrapper_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact_wrapper_5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-box {
  max-width: 450px;
  width: 100%;
}
.contact-box.style-5 .section-header .desc p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.contact-box.style-5 .contact-info-list {
  padding: 30px 30px 35px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contact-box.style-5 .contact-info-list li {
  gap: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 0px;
  margin-bottom: 0px;
  padding-bottom: 30px;
  margin-bottom: 17px;
}
.contact-box.style-5 .contact-info-list li:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.contact-box.style-5 .contact-info-list li .text-box p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-white);
}
.contact-box.style-5 .contact-info-list li .text-box a {
  font-size: 18px;
  font-weight: var(--tj-fw-regular);
  color: rgba(255, 255, 255, 0.5);
}
.contact-box.style-5 .contact-info-list li .text-box a:hover {
  color: var(--tj-theme-primary);
}
.contact-box.style-5 .contact-info-list li .text-box span {
  font-size: 18px;
  font-weight: var(--tj-fw-regular);
  color: rgba(255, 255, 255, 0.5);
}
.contact-box.style-5 .contact-info-list .icon-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 22px;
  line-height: 1;
  position: initial;
}
.contact-box.style-5 .contact-info-list .icon-box i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-box.style-5 .contact-info-list {
    padding: 30px 15px;
  }
}
@media (max-width: 575px) {
  .contact-box.style-5 .contact-info-list .icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-box {
    max-width: 100%;
  }
}

.contact-form-box.style-5 {
  max-width: 664px;
  width: 100%;
  margin-left: auto;
  background: transparent;
  padding: 60px 30px 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.contact-form-box.style-5 .tj-contact-form .form_group {
  margin-bottom: 50px;
}
.contact-form-box.style-5 .tj-contact-form .form_group.textarea-group {
  margin-bottom: 30px;
}
.contact-form-box.style-5 .tj-contact-form .form_group label {
  display: block;
  font-size: 16px;
  color: var(--tj-white);
  text-transform: uppercase;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 15px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea,
.contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-form-box.style-5 .tj-contact-form .form_group input[type=tel],
.contact-form-box.style-5 .tj-contact-form .form_group input[type=email],
.contact-form-box.style-5 .tj-contact-form .form_group input[type=text] {
  padding: 16px 20px;
  background-color: transparent;
  font-size: 16px;
  color: var(--tj-color-common-white);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea::-ms-input-placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]::-ms-input-placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=email]::-ms-input-placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=text]::-ms-input-placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea::-webkit-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]::-webkit-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=email]::-webkit-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=text]::-webkit-input-placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea::-moz-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]::-moz-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=email]::-moz-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=text]::-moz-placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea:-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]:-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=email]:-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=text]:-ms-input-placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea::-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]::-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=email]::-ms-input-placeholder, .contact-form-box.style-5 .tj-contact-form .form_group input[type=text]::-ms-input-placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea::placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]::placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=email]::placeholder,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=text]::placeholder {
  color: rgba(221, 221, 221, 0.6);
  font-size: 16px;
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea:focus,
.contact-form-box.style-5 .tj-contact-form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=tel]:focus,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=email]:focus,
.contact-form-box.style-5 .tj-contact-form .form_group input[type=text]:focus {
  border-color: var(--tj-theme-primary);
}
.contact-form-box.style-5 .tj-contact-form .form_group textarea {
  min-height: 180px;
  resize: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form-box.style-5 {
    padding: 35px 15px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form-box.style-5 {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form-box.style-5 {
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .contact-form-box.style-5 .tj-contact-form .form_group {
    margin-bottom: 30px;
  }
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.testimonial-section.style-5 {
  background-color: var(--tj-theme-accent-1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-section.style-5::after, .testimonial-section.style-5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(190deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  margin-bottom: -16%;
  opacity: 0.5;
  z-index: -1;
}
.testimonial-section.style-5::after {
  top: 0;
  margin-top: -16%;
}
.testimonial-section.style-5 .section-header {
  max-width: 100%;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-section.style-5::after, .testimonial-section.style-5::before {
    width: 650px;
    height: 350px;
    margin-bottom: -16%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-section.style-5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .testimonial-section.style-5 .section-header {
    margin-bottom: 40px;
  }
}

.testimonial-item.style-5 {
  max-width: 650px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 40px 30px 30px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.testimonial-item.style-5 .icon-box {
  margin-bottom: 40px;
}
.testimonial-item.style-5 .quote {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
.testimonial-item.style-5 .testimonial-feature-item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 25px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.testimonial-item.style-5 .testimonial-feature-item .testimonial-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.testimonial-item.style-5 .testimonial-feature-item .auother-images {
  max-width: 75px;
  height: 75px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.testimonial-item.style-5 .testimonial-feature-item .auother-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 8px;
}
.testimonial-item.style-5:hover {
  border-color: var(--tj-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item.style-5 {
    padding: 30px 15px;
  }
  .testimonial-item.style-5 .quote {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item.style-5 {
    padding: 30px 15px;
  }
  .testimonial-item.style-5 .quote {
    font-size: 18px;
  }
  .testimonial-item.style-5 .icon-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-item.style-5 {
    padding: 30px 15px;
  }
  .testimonial-item.style-5 .quote {
    font-size: 16px;
  }
  .testimonial-item.style-5 .icon-box {
    margin-bottom: 20px;
  }
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Progress CSS
----------------------------------------*/
.tj-progress-section.style-5 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-black-2);
  position: relative;
  z-index: 1;
}
.tj-progress-section.style-5 .section-header {
  max-width: 100%;
  margin-bottom: 60px;
}
.tj-progress-section.style-5 .h5-shapes-1 {
  position: absolute;
  left: 8%;
  top: 50%;
  max-width: 55px;
  width: 100%;
  z-index: -1;
  -webkit-animation: up-down-move 3s forwards infinite alternate;
          animation: up-down-move 3s forwards infinite alternate;
}
.tj-progress-section.style-5 .h5-shapes-1 img {
  width: 100%;
}
.tj-progress-section.style-5 .h5-shapes-2 {
  position: absolute;
  bottom: 50px;
  right: 150px;
  max-width: 110px;
  width: 100%;
  z-index: -1;
  -webkit-animation: up-down-move-2 3s forwards infinite alternate;
          animation: up-down-move-2 3s forwards infinite alternate;
}
.tj-progress-section.style-5 .h5-shapes-2 img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-progress-section.style-5 .h5-shapes-1 {
    top: 20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-progress-section.style-5 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-progress-section.style-5 .section-header {
    margin-bottom: 40px;
  }
  .tj-progress-section.style-5 .h5-shapes-1 {
    top: 15%;
  }
  .tj-progress-section.style-5 .h5-shapes-2 {
    bottom: 30px;
    max-width: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-progress-section.style-5 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-progress-section.style-5 .section-header {
    margin-bottom: 40px;
  }
  .tj-progress-section.style-5 .h5-shapes-1 {
    top: 15%;
    max-width: 45px;
    left: 5%;
  }
  .tj-progress-section.style-5 .h5-shapes-2 {
    bottom: 30px;
    max-width: 75px;
  }
}
@media (max-width: 575px) {
  .tj-progress-section.style-5 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-progress-section.style-5 .section-header {
    margin-bottom: 40px;
  }
  .tj-progress-section.style-5 .h5-shapes-1 {
    top: 10%;
    max-width: 45px;
    left: 5%;
  }
  .tj-progress-section.style-5 .h5-shapes-2 {
    bottom: 30px;
    max-width: 75px;
  }
}

.progress-single.style-5 {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  border-radius: 10px;
}
.progress-single.style-5 .progress-text .progress-title .title {
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.02em;
}
.progress-single.style-5 .progress-text .icon-box {
  border-radius: 50%;
}
.progress-single.style-5 p {
  color: rgba(255, 255, 255, 0.6);
}
.progress-single.style-5 .progress-item .item_bar {
  background: rgba(255, 255, 255, 0.1);
}

/* !END: Theme Progress CSS */
/**----------------------------------------
START: Theme Resume CSS
----------------------------------------*/
.resume-section.style-5 {
  padding-bottom: 120px;
  background-color: var(--tj-theme-accent-1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.resume-section.style-5::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 650px;
  height: 550px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(190deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  margin-top: -16%;
  opacity: 0.5;
  z-index: -1;
}
.resume-section.style-5 .section-header {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.resume-section.style-5 .resume_menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  max-width: 395px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--tj-theme-primary);
  border-radius: 60px;
  position: relative;
  padding: 5px;
  z-index: 1;
}
.resume-section.style-5 .resume_menu .resume-tab {
  font-size: 15px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-white);
  border-radius: 60px;
  padding: 11px 25px;
  position: relative;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: 1;
}
.resume-section.style-5 .resume_menu .resume-tab.active {
  background-color: var(--tj-theme-accent-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume-section.style-5 {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .resume-section.style-5 .resume_menu {
    margin-bottom: 30px;
    max-width: 320px;
  }
  .resume-section.style-5 .resume_menu .resume-tab {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.resume_wrapper_5 {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
}
.resume_wrapper_5 .resume_inner_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.resume_wrapper_5 .resume_inner_5:last-child .resume_item {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume_wrapper_5 {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .resume_wrapper_5 .resume_inner_5 {
    gap: 20px;
  }
}

.resume_item.style-5 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 35px;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1070px;
}
.resume_item.style-5 .resume_content .resume_text .subtitle {
  color: var(--tj-white);
}
.resume_item.style-5 .resume_content .resume_text .desc {
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}
.resume_item.style-5 .resume_date .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.resume_item.style-5 .resume_date .date i {
  color: var(--tj-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .resume_item.style-5 {
    max-width: 890px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .resume_item.style-5 {
    max-width: 800px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .resume_item.style-5 {
    max-width: 580px;
  }
  .resume_item.style-5 .resume_date {
    max-width: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .resume_item.style-5 {
    max-width: 580px;
  }
  .resume_item.style-5 .resume_date {
    max-width: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .resume_item.style-5 .resume_content .resume_text .desc {
    font-size: 16px;
  }
  .resume_item.style-5 .resume_date .date {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 575px) {
  .resume_item.style-5 .resume_content .resume_text .desc {
    font-size: 16px;
  }
  .resume_item.style-5 .resume_date .date {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    font-size: 18px;
  }
}

/* !END: Theme Resume CSS */
/**----------------------------------------
START: Theme Portfolio CSS
----------------------------------------*/
.tj-portfolio-section.style-8 {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.tj-portfolio-section.style-8::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(45deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
  opacity: 0.3;
  z-index: -1;
}
.tj-portfolio-section.style-8 .section-header {
  max-width: 475px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-portfolio-section.style-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.portfolio-wrapper-8 .portfolio-tem.style-8:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-wrapper-8 .portfolio-tem.style-8:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.portfolio-tem.style-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 160px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.portfolio-tem.style-8 .portfolio-8-images {
  max-width: 645px;
  width: 100%;
  background-color: var(--tj-black-2);
  border-radius: 15px;
  padding: 30px;
}
.portfolio-tem.style-8 .portfolio-8-images img {
  border-radius: 15px;
}
.portfolio-tem.style-8 .portfolio-content {
  max-width: 500px;
  width: 100%;
}
.portfolio-tem.style-8 .portfolio-content .number {
  display: block;
  font-size: 124px;
  font-weight: var(--tj-fw-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
  margin-bottom: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1;
}
.portfolio-tem.style-8 .portfolio-content .title {
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: rgb(221, 221, 221);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.portfolio-tem.style-8 .portfolio-content .title:hover {
  color: var(--tj-theme-primary);
}
.portfolio-tem.style-8 .portfolio-content .arrow_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 1;
  text-decoration: none;
  color: var(--tj-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.portfolio-tem.style-8 .portfolio-content .arrow_link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(var(--tj-theme-secondary)), to(var(--tj-theme-primary)));
  background: linear-gradient(-90deg, var(--tj-theme-secondary) 0%, var(--tj-theme-primary) 100%);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}
.portfolio-tem.style-8 .portfolio-content .arrow_link .icon_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  padding: 0 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.portfolio-tem.style-8 .portfolio-content .arrow_link .icon_box .icon_first,
.portfolio-tem.style-8 .portfolio-content .arrow_link .icon_box .icon_second {
  font-size: 24px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.portfolio-tem.style-8 .portfolio-content .arrow_link .icon_box .icon_second {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.portfolio-tem.style-8:hover .portfolio-content .number {
  -webkit-text-stroke: 1px var(--tj-theme-primary);
}
.portfolio-tem.style-8:hover .portfolio-content .arrow_link::before {
  opacity: 1;
  visibility: visible;
}
.portfolio-tem.style-8:hover .portfolio-content .arrow_link .icon_box .icon_first {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.portfolio-tem.style-8:hover .portfolio-content .arrow_link .icon_box .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-tem.style-8 {
    gap: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-tem.style-8 {
    gap: 60px;
  }
  .portfolio-tem.style-8 .portfolio-content .number {
    font-size: 100px;
    margin-bottom: 15px;
  }
  .portfolio-tem.style-8 .portfolio-content .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-tem.style-8 {
    gap: 30px;
  }
  .portfolio-tem.style-8 .portfolio-content .number {
    font-size: 75px;
    margin-bottom: 10px;
  }
  .portfolio-tem.style-8 .portfolio-content .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .portfolio-tem.style-8 .portfolio-content .arrow_link {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-tem.style-8 {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
  .portfolio-tem.style-8:last-child {
    margin-bottom: 0;
  }
  .portfolio-tem.style-8 .portfolio-8-images {
    padding: 15px;
  }
  .portfolio-tem.style-8 .portfolio-content .number {
    font-size: 70px;
    margin-bottom: 10px;
  }
  .portfolio-tem.style-8 .portfolio-content .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .portfolio-tem.style-8 .portfolio-content .arrow_link {
    width: 50px;
    height: 50px;
  }
}

.portfolio-section.style-5 {
  padding-bottom: 120px;
  background-color: var(--tj-black-2);
}
.portfolio-section.style-5 .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.portfolio-section.style-5 .section-header .sec-text {
  max-width: 560px;
  margin-left: 0;
}
.portfolio-section.style-5 .section-header .portfolio-shapes {
  position: absolute;
  bottom: 20px;
  right: 32%;
  max-width: 100px;
  width: 100%;
  z-index: -1;
  -webkit-animation: up-down-move-2 3s forwards infinite alternate;
          animation: up-down-move-2 3s forwards infinite alternate;
}
.portfolio-section.style-5 .section-header .portfolio-shapes img {
  width: 100%;
}
.portfolio-section.style-5 .portfolio_slider {
  margin-left: calc((100% - 1320px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
}
.portfolio-section.style-5 .portfolio_slider .portfolio-pagination {
  position: relative;
  margin-top: 50px;
  bottom: 0;
  left: 38%;
}
.portfolio-section.style-5 .portfolio_slider .portfolio-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.portfolio-section.style-5 .portfolio_slider .portfolio-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-section.style-5 .portfolio_slider {
    margin-left: calc((100% - 1140px) / 2);
  }
  .portfolio-section.style-5 .portfolio_slider .portfolio-pagination {
    left: 37%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-section.style-5 .portfolio_slider {
    margin-left: calc((100% - 960px) / 2);
  }
  .portfolio-section.style-5 .portfolio_slider .portfolio-pagination {
    left: auto;
    text-align: center;
  }
  .portfolio-section.style-5 .section-header .portfolio-shapes {
    max-width: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-section.style-5 {
    padding-bottom: 80px;
  }
  .portfolio-section.style-5 .portfolio_slider {
    margin-left: auto;
  }
  .portfolio-section.style-5 .portfolio_slider .portfolio-pagination {
    left: auto;
    text-align: center;
    margin-top: 30px;
  }
  .portfolio-section.style-5 .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 40px;
  }
  .portfolio-section.style-5 .section-header .portfolio-shapes {
    max-width: 80px;
  }
}
@media (max-width: 575px) {
  .portfolio-section.style-5 {
    padding-bottom: 80px;
  }
  .portfolio-section.style-5 .portfolio_slider {
    margin-left: auto;
  }
  .portfolio-section.style-5 .portfolio_slider .portfolio-pagination {
    left: auto;
    text-align: center;
    margin-top: 30px;
  }
  .portfolio-section.style-5 .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 40px;
  }
  .portfolio-section.style-5 .section-header .portfolio-shapes {
    max-width: 65px;
    right: 10%;
  }
}

.portfolio-item.style-5 {
  max-width: 645px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 35px;
}
.portfolio-item.style-5 .image-box {
  margin-bottom: 25px;
}
.portfolio-item.style-5 .image-box img {
  border-radius: 15px;
}
.portfolio-item.style-5 .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.portfolio-item.style-5 .content-box .portfolio-text .portfolio-title {
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.portfolio-item.style-5 .content-box .portfolio-text p {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.portfolio-item.style-5 .content-box .portfolio-arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--tj-white);
  font-size: 25px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.portfolio-item.style-5 .content-box .portfolio-arrow a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-10deg, var(--tj-theme-secondary) 0%, var(--tj-theme-primary) 100%);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}
.portfolio-item.style-5 .content-box .portfolio-arrow a i {
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.portfolio-item.style-5 .content-box .portfolio-arrow a:hover::before {
  opacity: 1;
  visibility: visible;
}
.portfolio-item.style-5 .content-box .portfolio-arrow a:hover i {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-item.style-5 {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-item.style-5 {
    padding: 30px 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* !END: Theme Portfolio CSS */
/**----------------------------------------
START: Theme Maquee CSS
----------------------------------------*/
.tj-maquee-section.style-5 {
  position: relative;
  background-color: var(--tj-color-theme-secondary);
  overflow: hidden;
}
.tj-maquee-section.style-5 .tj-maquee-slider-one {
  position: relative;
  background: var(--tj-theme-primary);
  padding: 26px 0;
}
.tj-maquee-section.style-5 .tj-maquee-slider-one .marquee-item .marquee-box .marquee-icon img {
  -webkit-animation: rotateImg2 6s infinite linear;
          animation: rotateImg2 6s infinite linear;
}
.tj-maquee-section.style-5 .tj-maquee-slider-two {
  background: var(--tj-color-theme-secondary);
  padding: 26px 0;
}
.tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box .marquee-icon img {
  -webkit-animation: rotateImg 6s infinite linear;
          animation: rotateImg 6s infinite linear;
}
.tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box .marquee-title {
  margin-left: 55px;
  margin-right: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box {
    gap: 35px;
  }
  .tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box .marquee-title {
    margin-right: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box {
    gap: 30px;
  }
  .tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box .marquee-title {
    margin-left: 30px;
  }
  .tj-maquee-section.style-5 .tj-maquee-slider-two .marquee-item .marquee-box .marquee-title .title {
    font-size: 18px;
  }
}
.tj-maquee-section.style-5 .maquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.tj-maquee-section.maquee-style-5 {
  background: var(--tj-theme-primary);
  position: relative;
  padding: 30px 0;
  z-index: 1;
}
.tj-maquee-section.maquee-style-5 .maquee-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(28.52%, rgba(255, 255, 255, 0)), color-stop(68.59%, rgba(255, 255, 255, 0)), color-stop(96.94%, rgb(255, 255, 255)));
  -webkit-mask-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 28.52%, rgba(255, 255, 255, 0) 68.59%, rgb(255, 255, 255) 96.94%);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(28.52%, rgba(255, 255, 255, 0)), color-stop(68.59%, rgba(255, 255, 255, 0)), color-stop(96.94%, rgb(255, 255, 255)));
          mask-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 28.52%, rgba(255, 255, 255, 0) 68.59%, rgb(255, 255, 255) 96.94%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--tj-theme-primary);
  z-index: 2;
}
.tj-maquee-section.maquee-style-5 .maquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-maquee-section.maquee-style-5 {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-maquee-section.maquee-style-5 {
    padding: 15px 0;
  }
}

.marquee-item {
  width: auto;
  display: inline-block;
}
.marquee-item .marquee-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 55px;
}
.marquee-item .marquee-box .marquee-icon {
  max-width: 20px;
  width: 100%;
}
.marquee-item .marquee-box .marquee-icon img {
  width: 100%;
  -webkit-animation: rotateImg 6s infinite linear;
          animation: rotateImg 6s infinite linear;
}
.marquee-item .marquee-box .marquee-title {
  margin-left: 0px;
  margin-right: 55px;
}
.marquee-item .marquee-box .marquee-title .title {
  font-size: 20px;
  font-weight: var(--tj-fw-ebold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-box {
    gap: 35px;
  }
  .marquee-item .marquee-box .marquee-title {
    margin-right: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-item .marquee-box {
    gap: 30px;
  }
  .marquee-item .marquee-box .marquee-title {
    margin-right: 30px;
  }
  .marquee-item .marquee-box .marquee-title .title {
    font-size: 18px;
  }
}

@-webkit-keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateImg2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotateImg2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* !END: Theme Maquee CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area.header-6 {
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 30px 50px;
}
.tj-header-area.header-6 .header-menu {
  margin-left: 0;
  background-color: var(--tj-black-2);
  border-radius: 70px;
  padding: 0px 40px;
}
.tj-header-area.header-6 .header-menu ul > li > a {
  color: rgba(255, 255, 255, 0.5);
  padding: 15px 0px;
}
.tj-header-area.header-6 .header-menu ul > li > a::after, .tj-header-area.header-6 .header-menu ul > li > a::before {
  display: none;
}
.tj-header-area.header-6 .header-menu ul > li > a.current-menu-item, .tj-header-area.header-6 .header-menu ul > li > a:hover {
  color: var(--tj-white);
}
.tj-header-area.header-6 .header-menu ul > li > .sub-menu > li > .sub-menu {
  top: 0;
}
.tj-header-area.header-6 .header-menu ul > li > .sub-menu > li.has-dropdown a::after {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-header-area.header-6 {
    padding: 25px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area.header-6 {
    padding: 20px 15px;
  }
}
@media (max-width: 575px) {
  .tj-header-area.header-6 {
    padding: 20px 0px;
  }
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section.style-6 {
  position: relative;
  padding-top: 265px;
  overflow: hidden;
  z-index: 1;
}
.hero-section.style-6::before {
  width: 522px;
  height: 522px;
  margin-right: 15%;
  margin-top: -5%;
}
.hero-section.style-6::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 522px;
  height: 522px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  margin-right: -5%;
  opacity: 0.6;
  margin-top: -5%;
  z-index: -1;
}
.hero-section.style-6 .hero_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
  z-index: -1;
}
.hero-section.style-6 .hero_scroll {
  position: absolute;
  left: 0;
  bottom: 115px;
  z-index: 2;
}
.hero-section.style-6 .hero_scroll .down {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 14px;
  color: var(--tj-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.hero-section.style-6 .hero_scroll .down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 32px;
  border: 1px solid var(--tj-white);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  border-radius: 50px;
}
.hero-section.style-6 .hero_scroll .down span i {
  display: inline-block;
  position: relative;
  right: -6px;
  top: 4px;
  -webkit-animation: jump-arrow 2.5s infinite;
          animation: jump-arrow 2.5s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section.style-6 .hero_scroll {
    left: -15px;
    bottom: 90px;
  }
}
@media (max-width: 575px) {
  .hero-section.style-6 .hero_scroll {
    left: -20px;
    bottom: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section.style-6 {
    padding-bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section.style-6 {
    padding-top: 245px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section.style-6 {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .hero-section.style-6 {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.hero-wrapper-style-6 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 85px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1445px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  z-index: 1;
}
.hero-wrapper-style-6 .hero-infos {
  max-width: 310px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  background-color: var(--tj-black-2);
  padding: 30px;
  margin-top: -80px;
  border-radius: 10px;
}
.hero-wrapper-style-6 .hero-infos .hero-images {
  max-width: 250px;
  width: 100%;
  border: 2px solid var(--tj-white);
  border-radius: 150px;
  margin-bottom: 30px;
}
.hero-wrapper-style-6 .hero-infos .hero-images img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px;
}
.hero-wrapper-style-6 .hero-infos .desc {
  max-width: 250px;
  width: 100%;
  color: var(--tj-grey-1);
}
.hero-wrapper-style-6 .hero-infos .desc p:last-child {
  margin-bottom: 0;
}
.hero-wrapper-style-6 .hero-infos .hero-button {
  margin-top: 80px;
}
.hero-wrapper-style-6 .hero-infos .hero-button .hero-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  color: var(--tj-white);
  font-weight: var(--tj-fw-bold);
  text-decoration: none;
  border-bottom: 1px solid var(--tj-white);
  padding-bottom: 5px;
}
.hero-wrapper-style-6 .hero-infos .hero-button .hero-btn i {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hero-wrapper-style-6 .group_overly span {
  position: absolute;
  width: 6px;
  height: 6px;
  right: 45%;
  top: 40px;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-theme-primary)), color-stop(110.61%, var(--tj-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-theme-primary) 0%, var(--tj-theme-secondary) 110.61%);
  border-radius: 50%;
}
.hero-wrapper-style-6 .group_overly span:nth-child(2) {
  width: 16px;
  height: 16px;
  right: 25%;
  top: 100px;
  z-index: -1;
}
.hero-wrapper-style-6 .group_overly span:nth-child(3) {
  width: 35px;
  height: 35px;
  right: 10%;
  bottom: 35%;
  top: auto;
  z-index: -1;
}
.hero-wrapper-style-6 .group_overly span:nth-child(4) {
  width: 10px;
  height: 10px;
  right: 20%;
  bottom: 32%;
  top: auto;
  z-index: -1;
}
.hero-wrapper-style-6 .group_overly span:nth-child(5) {
  width: 10px;
  height: 10px;
  right: 30%;
  bottom: 0;
  top: auto;
  z-index: -1;
}

.hero-section.style-8 {
  padding: 250px 0 50px;
  background-repeat: no-repeat;
  background-size: initial;
  background-position: top right;
}
.hero-section.style-8::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 750px;
  height: 320px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  margin-right: 5%;
  margin-top: -4%;
  opacity: 0.5;
  z-index: -1;
}
.hero-section.style-8 .hero-8-socials {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
}
.hero-section.style-8 .hero-8-socials .social-icons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero-section.style-8 .hero-8-socials .social-icons li a {
  color: var(--tj-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-section.style-8 .hero-8-socials .social-icons li a::before {
  background: -webkit-gradient(linear, right top, left top, from(var(--tj-theme-secondary)), to(var(--tj-theme-primary)));
  background: linear-gradient(-90deg, var(--tj-theme-secondary) 0%, var(--tj-theme-primary) 100%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-section.style-8 .hero-8-socials {
    left: 10px;
  }
  .hero-section.style-8 .hero_scroll {
    left: -35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section.style-8 {
    padding: 220px 0 20px;
  }
  .hero-section.style-8 .hero-8-socials {
    left: 10px;
  }
  .hero-section.style-8 .hero_scroll {
    left: -35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section.style-8 {
    padding: 220px 0 20px;
  }
  .hero-section.style-8 .hero-8-socials {
    left: 10px;
  }
  .hero-section.style-8 .hero_scroll {
    left: -35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section.style-8 {
    padding: 170px 0 120px;
  }
  .hero-section.style-8 .hero-8-socials {
    top: auto;
    bottom: 85px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero-section.style-8 .hero-8-socials .social-icons {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section.style-8 {
    padding: 170px 0 110px;
  }
  .hero-section.style-8 .hero-8-socials {
    top: auto;
    bottom: 85px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero-section.style-8 .hero-8-socials .social-icons {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
@media (max-width: 575px) {
  .hero-section.style-8 {
    padding: 170px 0 110px;
  }
  .hero-section.style-8 .hero-8-socials {
    top: auto;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero-section.style-8 .hero-8-socials .social-icons {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
  .hero-section.style-8 .hero_scroll {
    display: none;
  }
}

.hero-content-box.style-8 .subtitle {
  color: var(--tj-white);
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 30px;
}
.hero-content-box.style-8 .subtitle span {
  display: inline-block;
  color: var(--tj-white);
}
.hero-content-box.style-8 .subtitle .wave {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: wave-animation;
          animation-name: wave-animation;
  display: inline-block;
  -webkit-transform-origin: 70% 70%;
      -ms-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
}
.hero-content-box.style-8 .hero-title {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-white);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background: none;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content-box.style-8 .hero-title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hero-content-box.style-8 .hero-title span img {
  max-width: 140px;
  width: 100%;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px;
}
.hero-content-box.style-8 .desc {
  max-width: 420px;
  width: 100%;
  font-size: 20px;
  color: var(--tj-grey-1);
}
.hero-content-box.style-8 .desc p:last-child {
  margin-bottom: 0;
}
.hero-content-box.style-8 .hero-button {
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-box.style-8 {
    padding-left: 0px;
  }
  .hero-content-box.style-8 .hero-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content-box.style-8 {
    padding-left: 0px;
  }
  .hero-content-box.style-8 .hero-title {
    font-size: 50px;
  }
  .hero-content-box.style-8 .hero-title span img {
    max-width: 120px;
    height: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content-box.style-8 {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  .hero-content-box.style-8 .hero-title {
    font-size: 50px;
  }
  .hero-content-box.style-8 .hero-title span img {
    max-width: 120px;
    height: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content-box.style-8 {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  .hero-content-box.style-8 .hero-title {
    font-size: 45px;
  }
  .hero-content-box.style-8 .hero-title span img {
    max-width: 110px;
    height: 50px;
  }
  .hero-content-box.style-8 .desc {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-content-box.style-8 {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  .hero-content-box.style-8 .hero-title {
    font-size: 38px;
  }
  .hero-content-box.style-8 .hero-title span img {
    max-width: 120px;
    height: 55px;
  }
  .hero-content-box.style-8 .desc {
    font-size: 18px;
  }
}

.hero-8-images {
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  position: relative;
  top: -60px;
  z-index: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-8-images .hero8-mask-images {
  position: relative;
  max-width: 94%;
  width: 100%;
  height: 655px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-mask-image: url(../img/shapes/hero8-shapes.svg);
          mask-image: url(../img/shapes/hero8-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.hero-8-images img {
  width: 100%;
}
.hero-8-images::before {
  position: absolute;
  content: "";
  width: 94%;
  height: 95%;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-theme-primary)), color-stop(#CB0891), color-stop(var(--tj-theme-primary)), color-stop(#CB0891), color-stop(var(--tj-theme-primary)), to(#CB0891));
  background: linear-gradient(90deg, var(--tj-theme-primary), #CB0891, var(--tj-theme-primary), #CB0891, var(--tj-theme-primary), #CB0891);
  background-size: 600% 100%;
  -webkit-animation: gradient 15s linear infinite;
          animation: gradient 15s linear infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  -webkit-box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
          box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
}
.hero-8-images .hero-shapes::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 15px;
  background: var(--tj-theme-primary);
  -webkit-box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
          box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  z-index: -1;
}
.hero-8-images .hero-shapes::after {
  position: absolute;
  content: "";
  width: 99.5%;
  height: 99.5%;
  left: 50%;
  top: 17px;
  background: var(--tj-black-2);
  -webkit-box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
          box-shadow: 0px 0px 16.98px 0px rgb(129, 76, 236) inset;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.hero-8-images .hero-circle {
  position: absolute;
  bottom: 15%;
  left: -80px;
  width: 150px;
  height: 150px;
  z-index: 3;
  background: linear-gradient(150.14deg, rgba(255, 255, 255, 0.15) 14.68%, rgba(255, 255, 255, 0) 46.13%);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.hero-8-images .hero-circle .circle-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero-8-images .hero-circle .rotate-image {
  -webkit-animation: rotateImg 10s infinite linear;
  animation: rotateImg 10s infinite linear;
}
.hero-8-images .hero-circle .rotate-image textPath {
  fill: var(--tj-white);
}
.hero-8-images .circle-button .circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--tj-white);
  background: rgb(126, 74, 231);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
}
.hero-8-images .images_shapes {
  position: absolute;
  max-width: 100px;
  width: 100%;
  bottom: 45px;
  left: -30%;
  z-index: -1;
  opacity: 0.1;
}
.hero-8-images .images_shapes img {
  width: 100%;
}
.hero-8-images .images_shapes-2 {
  position: absolute;
  max-width: 40px;
  width: 100%;
  top: 80px;
  right: 40px;
  z-index: -1;
}
.hero-8-images .images_shapes-2 img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-8-images::before {
    top: 25px;
  }
  .hero-8-images .hero8-mask-images {
    height: 540px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-8-images {
    margin-right: auto;
  }
  .hero-8-images .images_shapes {
    max-width: 85px;
    bottom: 0px;
    left: -8%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-8-images::before {
    top: 28px;
  }
  .hero-8-images .images_shapes {
    max-width: 65px;
    bottom: 0px;
    left: 0px;
  }
  .hero-8-images .hero8-mask-images {
    height: 595px;
  }
  .hero-8-images .hero-circle {
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .hero-8-images::before {
    height: 92%;
  }
  .hero-8-images .hero8-mask-images {
    height: auto;
  }
  .hero-8-images .images_shapes {
    max-width: 65px;
    bottom: 0px;
    left: 0px;
  }
  .hero-8-images .hero-shapes::before {
    top: 16px;
  }
  .hero-8-images .hero-circle {
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-wrapper-style-6 {
    max-width: 1335px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper-style-6 {
    max-width: 1145px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrapper-style-6 {
    max-width: 950px;
    gap: 75px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper-style-6 {
    max-width: 950px;
    gap: 25px;
    margin-bottom: 0px;
  }
  .hero-wrapper-style-6 .hero-infos {
    max-width: 280px;
    padding: 30px 15px;
    margin-top: -60px;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images img {
    height: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-wrapper-style-6 {
    max-width: 950px;
    gap: 35px;
    margin-bottom: 0px;
  }
  .hero-wrapper-style-6 .hero-infos {
    max-width: 280px;
    padding: 30px 15px;
    margin-right: auto;
    margin-top: 0px;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images img {
    height: 75px;
  }
}
@media (max-width: 575px) {
  .hero-wrapper-style-6 {
    max-width: 950px;
    gap: 35px;
    margin-bottom: 0px;
  }
  .hero-wrapper-style-6 .hero-infos {
    max-width: 280px;
    padding: 30px 15px;
    margin-right: auto;
    margin-top: 0px;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-wrapper-style-6 .hero-infos .hero-images img {
    height: 75px;
  }
}

.hero-content-box.style-6 {
  max-width: 1045px;
  width: 100%;
}
.hero-content-box.style-6 .sub-tile {
  display: block;
  color: var(--tj-grey-1);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 15px;
}
.hero-content-box.style-6 .desc {
  font-size: 28px;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-grey-1);
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.hero-content-box.style-6 .desc span {
  color: var(--tj-white);
}
.hero-content-box.style-6 .hero-title {
  font-size: 145px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  line-height: 1;
}
.hero-content-box.style-6 .hero-title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.hero-content-box.style-6 .hero-title span img {
  max-width: 230px;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 150px;
  border: 2px solid var(--tj-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-content-box.style-6 {
    max-width: 930px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-box.style-6 {
    max-width: 750px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 95px;
  }
  .hero-content-box.style-6 .hero-title span {
    gap: 10px;
  }
  .hero-content-box.style-6 .hero-title span img {
    max-width: 185px;
    height: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content-box.style-6 {
    max-width: 560px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 75px;
  }
  .hero-content-box.style-6 .hero-title span {
    gap: 10px;
  }
  .hero-content-box.style-6 .hero-title span img {
    max-width: 165px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content-box.style-6 {
    max-width: 435px;
  }
  .hero-content-box.style-6 .desc {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 55px;
    line-height: 1.1;
  }
  .hero-content-box.style-6 .hero-title span {
    gap: 10px;
  }
  .hero-content-box.style-6 .hero-title span img {
    max-width: 130px;
    height: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content-box.style-6 {
    max-width: 435px;
  }
  .hero-content-box.style-6 .desc {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 55px;
    line-height: 1.1;
  }
  .hero-content-box.style-6 .hero-title span {
    gap: 10px;
  }
  .hero-content-box.style-6 .hero-title span img {
    max-width: 130px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .hero-content-box.style-6 {
    max-width: 435px;
  }
  .hero-content-box.style-6 .desc {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .hero-content-box.style-6 .hero-title {
    font-size: 55px;
    line-height: 1.1;
  }
  .hero-content-box.style-6 .hero-title span {
    gap: 10px;
  }
  .hero-content-box.style-6 .hero-title span img {
    max-width: 130px;
    height: 60px;
  }
}

@keyframes jump-arrow {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Maquee CSS
----------------------------------------*/
.tj-maquee-section.style-6 {
  position: relative;
  background-color: var(--tj-black-2);
  padding: 60px 0;
  z-index: 1;
}
.tj-maquee-section.style-6::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-black)), to(rgba(5, 18, 41, 0)));
  background: linear-gradient(90deg, var(--tj-black) 0%, rgba(5, 18, 41, 0) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}
.tj-maquee-section.style-6::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-black)), to(rgba(5, 18, 41, 0)));
  background: linear-gradient(90deg, var(--tj-black) 0%, rgba(5, 18, 41, 0) 100%);
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.tj-maquee-section.style-6 .maquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* !END: Theme Maquee CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.tj-about-section.style-6 {
  padding-top: 100px;
  padding-bottom: 30px;
}
.tj-about-section.style-6 .section-header {
  margin-bottom: 35px;
}

.about-wrapper-sytle-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-6-images {
  position: relative;
  max-width: 550px;
  width: 100%;
  z-index: 1;
}
.about-6-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-theme-primary)), to(var(--tj-white)));
  background: linear-gradient(to right, var(--tj-theme-primary) 0%, var(--tj-white) 100%);
  border-radius: 16px;
}
.about-6-images img {
  position: relative;
  width: 100%;
  border-radius: 16px;
  padding: 2px;
  z-index: 1;
}
.about-6-images .about-shapes {
  position: absolute;
  right: -30px;
  top: 60%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 110px;
  width: 100%;
  z-index: 2;
}
.about-6-images .about-shapes img {
  width: 100%;
}

.about-right-content-6 {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}
.about-right-content-6 .about-feature-item-6 .desc {
  max-width: 315px;
  width: 100%;
  margin-bottom: 25px;
  color: var(--tj-grey-1);
}
.about-right-content-6 .about-feature-item-6 .desc p:last-child {
  margin-bottom: 0;
}

.list-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-one ul li {
  position: relative;
  color: var(--tj-white);
  font-weight: var(--tj-fw-sbold);
  padding-left: 15px;
  margin-bottom: 6px;
  z-index: 1;
}
.list-one ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--tj-white);
}
.list-one ul li:last-child {
  margin-bottom: 0;
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-6-area {
  background: var(--tj-black-2);
  padding: 48px 0;
}
.tj-footer-6-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tj-footer-6-left {
  max-width: 332px;
  width: 100%;
}
.tj-footer-6-paragraph {
  font-weight: var(--tj-fw-sbold);
  font-size: 12px;
  margin-bottom: 0;
  padding-left: 16px;
  position: relative;
  z-index: 1;
}
.tj-footer-6-paragraph::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00FF2F;
  border-radius: 50%;
}
.tj-footer-6-menu ul {
  margin-bottom: 0;
}
.tj-footer-6-menu ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: var(--tj-fw-regular);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-footer-6-menu ul li a::before {
  display: none;
}
.tj-footer-6-menu ul li a:hover {
  color: var(--tj-white);
}
.tj-footer-6-copyright {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
.tj-footer-6-copyright a {
  color: var(--tj-white);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-footer-6-copyright a:hover {
  color: var(--tj-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Button CSS
----------------------------------------*/
.tj-arrow-6-btn .icon_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  padding: 0 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-arrow-6-btn .icon_box i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.tj-arrow-6-btn .icon_box .icon_first {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-arrow-6-btn .icon_box .icon_second {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-arrow-6-btn:hover .icon_box .icon_first {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-arrow-6-btn:hover .icon_box .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

/* !END: Theme Button CSS */
/**----------------------------------------
START: Theme Resume CSS
----------------------------------------*/
.tj-resume-6-area {
  background: rgba(48, 14, 87, 0.4);
  padding: 120px 0 120px;
}
.tj-resume-6-left .tj-section-button {
  margin-top: 30px;
}
.tj-resume-6-wrapper {
  margin-left: 180px;
}
.tj-resume-6-accordion-item {
  background: var(--tj-black-2);
  border: none;
  padding: 15px 30px 15px;
}
.tj-resume-6-accordion-button {
  background: var(--tj-black-2);
  color: var(--tj-white);
  font-size: 18px;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}
.tj-resume-6-accordion-button span {
  margin-right: 20px;
}
.tj-resume-6-accordion-button::after {
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "+";
  -webkit-transition: var(--bs-accordion-btn-icon-transition);
  transition: var(--bs-accordion-btn-icon-transition);
  font-size: 28px;
  background-image: none;
  font-weight: 300;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  right: 0;
  top: 9px;
}
.tj-resume-6-accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--tj-white);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.tj-resume-6-accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-resume-6-accordion-button:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}
.tj-resume-6-accordion-button-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tj-resume-6-accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.tj-resume-6-accordion-body p {
  font-size: 16px;
  line-height: 30px;
  color: #767676;
}

/* !END: Resume Blog CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.tj-blog-6-area {
  background: var(--tj-black-2);
  padding: 120px 0 90px;
}
.tj-blog-6-wrapper {
  background: var(--tj-theme-accent-2);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 30px;
}
.tj-blog-6-thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tj-blog-6-thumb a {
  display: inline-block;
}
.tj-blog-6-content {
  padding: 15px;
}
.tj-blog-6-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.tj-blog-6-meta-opti span {
  background: rgba(129, 76, 236, 0.2);
  border-radius: 56px;
  padding: 2px 8px;
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  color: var(--tj-theme-h3-primary-1);
  margin-right: 16px;
}
.tj-blog-6-meta-date span {
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  padding-left: 18px;
}
.tj-blog-6-meta-date span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.tj-blog-6-title {
  color: var(--tj-body);
  font-weight: var(--tj-fw-sbold);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tj-blog-6-title a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-blog-6-title a:hover {
  color: var(--tj-theme-primary);
}
.tj-blog-6-btn {
  font-weight: var(--tj-fw-bold);
  font-size: 15px;
  color: var(--tj-white);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.tj-blog-6-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background: var(--tj-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-blog-6-btn i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-blog-6-btn:hover::before {
  width: 80%;
}
.tj-blog-7-top-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-7-top-button {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-bottom: 60px;
  }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.tj-cta-6-section {
  background: var(--tj-black-2);
  padding-bottom: 0;
}
.tj-cta-6-wrapper {
  background-position: center center;
  padding: 120px 25px 100px;
}
.tj-cta-6-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tj-white);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 5px 10px;
  font-weight: var(--tj-fw-regular);
  margin-bottom: 46px;
}
.tj-cta-6-title {
  font-weight: var(--tj-fw-sbold);
  font-size: 70px;
  letter-spacing: -0.04em;
  color: var(--tj-white);
  margin-bottom: 85px;
}
.tj-cta-6-socail {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding-top: 15px;
}
.tj-cta-6-socail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
}
.tj-cta-6-socail ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.tj-cta-6-socail ul li::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  top: 50%;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tj-cta-6-socail ul li:first-child {
  padding-left: 0;
}
.tj-cta-6-socail ul li:last-child {
  padding-right: 0;
}
.tj-cta-6-socail ul li:last-child::after {
  display: none;
}
.tj-cta-6-socail ul li a {
  color: var(--tj-white);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-cta-6-socail ul li a span {
  width: 28px;
  height: 28px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  margin-right: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-cta-6-socail ul li a span i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  font-size: 11px;
}
.tj-cta-6-socail ul li a:hover span {
  background: var(--tj-white);
  color: var(--tj-bg);
}


/* !END: Theme Cta CSS *//*# sourceMappingURL=gerold-core.css.map */
