/**----------------------------------------
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;
  }
}

/* !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%);
  }
}
/**----------------------------------------
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 */
.tj-roll-4-section {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  padding: 27px 0;
}

/**----------------------------------------
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;
}

/* !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 *//*# sourceMappingURL=gerold-core.css.map */