/* Fonts ==================================================================================================== */
@font-face {
  font-family: "ezrablack";
  src:
    url("../fonts/erza/ezra-black-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-black-webfont.woff") format("woff");
}

@font-face {
  font-family: "ezraextrabold";
  src:
    url("../fonts/erza/ezra-extrabold-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-extrabold-webfont.woff") format("woff");
}

@font-face {
  font-family: "ezrabold";
  src:
    url("../fonts/erza/ezra-bold-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-bold-webfont.woff") format("woff");
}

@font-face {
  font-family: "ezramedium";
  src:
    url("../fonts/erza/ezra-medium-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-medium-webfont.woff") format("woff");
}

@font-face {
  font-family: "ezraregular";
  src:
    url("../fonts/erza/ezra-regular-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-regular-webfont.woff") format("woff");
}

@font-face {
  font-family: "ezralight";
  src:
    url("../fonts/erza/ezra-light-webfont.woff2") format("woff2"),
    url("../fonts/erza/ezra-light-webfont.woff") format("woff");
}

.f-w-400 {
  font-weight: 400;
  font-family: "ezralight", sans-serif;
}

.f-w-500 {
  font-weight: 500;
  font-family: "ezraregular", sans-serif;
}

.f-w-600 {
  font-weight: 600;
  font-family: "ezramedium", sans-serif;
}

.f-w-700 {
  font-weight: 700;
  font-family: "ezrabold", sans-serif;
}

.f-w-800 {
  font-weight: 800;
  font-family: "ezraextrabold", sans-serif;
}

.f-w-900 {
  font-weight: 900;
  font-family: "ezrablack", sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --tj-color-heading-primary: #030514;
  --tj-color-theme-primary: #263aef;
  --tj-color-text-body: #3f3f42;
  --tj-color-theme-bg: rgba(226, 224, 225, 0.7);
  --tj-ff-body: "Mona Sans", sans-serif;
  --tj-ff-heading: "ezramedium", sans-serif;
  --tj-fs-h1: 56px;
  --tj-fs-h2: 44px;
  --tj-fs-h3: 32px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 18px;
  /* ============ */
  --color1: #263aef !important;
  --color2: #1e32c6 !important;
  --color3: #000000 !important;
  --color4: #e2e0e1 !important;
  --color5: #0b55f5 !important;
  /* White ==================================================================================================== */
  --white-005: rgba(255, 255, 255, 0.05);
  --white-01: rgba(255, 255, 255, 0.1);
  --white-02: rgba(255, 255, 255, 0.2);
  --white-03: rgba(255, 255, 255, 0.3);
  --white-04: rgba(255, 255, 255, 0.4);
  --white-05: rgba(255, 255, 255, 0.5);
  --white-06: rgba(255, 255, 255, 0.6);
  --white-07: rgba(255, 255, 255, 0.7);
  --white-08: rgba(255, 255, 255, 0.8);
  --white-09: rgba(255, 255, 255, 0.9);
  --white: #ffffff;
  /* Black ==================================================================================================== */
  --black-005: rgba(0, 0, 0, 0.05);
  --black-01: rgba(0, 0, 0, 0.1);
  --black-02: rgba(0, 0, 0, 0.2);
  --black-03: rgba(0, 0, 0, 0.3);
  --black-04: rgba(0, 0, 0, 0.4);
  --black-05: rgba(0, 0, 0, 0.5);
  --black-06: rgba(0, 0, 0, 0.6);
  --black-07: rgba(0, 0, 0, 0.7);
  --black-08: rgba(0, 0, 0, 0.8);
  --black-09: rgba(0, 0, 0, 0.9);
  --black: #0c0c0c !important;
}

body {
  font-family: var(--tj-ff-body);
  background: #f2f2f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.05rem;
}

/* White ==================================================================================================== */
.white-005 {
  color: var(--white-005);
}

.white-01 {
  color: var(--white-01);
}

.white-02 {
  color: var(--white-02);
}

.white-03 {
  color: var(--white-03);
}

.white-04 {
  color: var(--white-04);
}

.white-05 {
  color: var(--white-05);
}

.white-06 {
  color: var(--white-06);
}

.white-07 {
  color: var(--white-07);
}

.white-08 {
  color: var(--white-08);
}

.white-09 {
  color: var(--white-09);
}

.white {
  color: var(--white);
}

.bg-white-02 {
  background: var(--white-02);
}

/* Black ==================================================================================================== */
.black-005 {
  color: var(--black-005);
}

.black-01 {
  color: var(--black-01);
}

.black-02 {
  color: var(--black-02);
}

.black-03 {
  color: var(--black-03);
}

.black-04 {
  color: var(--black-04);
}

.black-05 {
  color: var(--black-05);
}

.black-06 {
  color: var(--black-06);
}

.black-07 {
  color: var(--black-07);
}

.black-08 {
  color: var(--black-08);
}

.black-09 {
  color: var(--black-09);
}

.black {
  color: var(--black);
}

/* Colors ==================================================================================================== */

.color1 {
  color: var(--color1);
}

.color2 {
  color: var(--color2);
}

.color3 {
  color: var(--color3);
}

.color4 {
  color: var(--color4);
}

.color5 {
  color: var(--color5);
}

.bgcolor1 {
  background: var(--color1);
}

.bgcolor2 {
  background: var(--color2);
}

.bgcolor3 {
  background: var(--color3);
}

.bgcolor4 {
  background: var(--color4);
}

.bgcolor5 {
  background: var(--color5);
}

/* Default ==================================================================================================== */
.home {
  background: transparent;
  height: 80vh;
}

a.logo img,
.hamburger_logo a img {
  min-height: 48px;
}

.site_logo .logo,
.hamburger_logo .mobile_logo {
  max-width: 200px;
}

.mainmenu ul>li>a {
  font-weight: 600;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
  font-weight: 600;
}

.mainmenu ul>li>.sub-menu {
  width: max-content;
}

.mainmenu ul>li>.sub-menu .mega-menu-service {
  width: max-content;
}

.mainmenu ul>li>.sub-menu>li>a {
  /* padding: 15px 25px; */
  padding: 15px 5px 15px 25px;
}

.mainmenu ul>li>.mega-menu-service,
.mobile_menu ul>li>.mega-menu-service {
  padding: 0;
}

.tj-primary-btn:hover {
  background: var(--color2);
}

.mega-menu-service-icon img {
  max-height: 32px;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-icon,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-icon {
  background: linear-gradient(45deg,
      rgba(150, 150, 151, 0.2) 0%,
      rgba(150, 150, 151, 0) 70%);
  color: var(--tj-color-theme-primary);
  transition: 0.3s ease-out;
}

.mainmenu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon img,
.mobile_menu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon img {
  filter: brightness(0) invert(1);
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
  font-size: 1.4em;
}

span.mega-menu-service-descricao {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  color: #808080;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
  line-height: 1.1;
}

.menu_bar.mobile_menu_bar {
  background: rgba(226, 224, 225, 0.3);
}

.menu_bar.mobile_menu_bar span {
  background-color: var(--color3);
}

.hamburger_menu .mean-nav ul li .sub-menu li {
  -webkit-padding-start: 15px;
  padding-inline-start: 15px;
}

.hamburger-area,
.hamburger_bg {
  border-radius: 0px;
}

.hamburger-area {
  box-shadow: none;
}

.hamburger_wrapper::before {
  display: none;
  content: none;
}

.hamburger_top,
.hamburger_menu .mean-container .mean-bar {
  margin-bottom: 70px;
}

.hamburger_menu .mean-nav ul li.dropdown-opened>a {
  font-weight: 600;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service li a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger_menu .mean-nav ul li a:hover,
.hamburger_menu .mean-nav ul li.dropdown-opened>a,
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--color5);
}

.footer-logo {
  max-width: 200px;
}

.tj-footer-section.h7-footer .h7-footer-copyright {
  border-top: 1px solid rgba(201, 209, 209, 0.8);
}

.feature-card .title {
  letter-spacing: 0.02rem;
}

.ser-card10 .ser-icon10 {
  max-width: 32px;
}

.ser-card10>img {
  border-radius: 8px;
}

.blog-sec .title-area .sec-title,
.blog-sec .title-area .sec-title .title {
  max-width: 800px;
}

.hamburger_wrapper::before {
  top: -20%;
  width: 500px;
  height: 500px;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  opacity: 0.2;
  backdrop-filter: blur(100px);
  left: -70%;
}

.hamburger_bg {
  background-color: var(--color3);
}

.footer-widget .title {
  font-weight: 600;
}

.subscribe-form label {
  display: inline-block;
  margin-top: 15px;
}

.subscribe-form span {
  display: inline;
}

.subscribe-form span a {
  display: inline-block;
  line-height: 1;
}

.subscribe-form input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.widget-nav-menu-2 {
  -webkit-padding-start: 60px;
  padding-inline-start: 60px;
}

.social-links ul li a {
  background-color: var(--color3);
}

.social-links ul li a i {
  color: var(--white);
}

.bg-shape-2,
.bg-shape-1 {
  mix-blend-mode: normal;
  /* max-width: 300px; */
  max-width: 950px;
  z-index: -1;
}

.widget-nav-menu ul li a:hover {
  font-weight: 600;
}

.tj-page-header {
  padding-top: 90px;
  padding-bottom: 100px;
}

.tj-page-header {
  background-color: transparent;
  background-blend-mode: normal;
}

.tj-page-link span:not(:first-child) i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.tj-page-link {
  padding: 6px 18px;
}

.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.tj-page-link span a {
  color: rgba(255, 255, 255, 0.5);
}

.min-height-100 {
  min-height: 100vh;
}

h1.error-title-404 {
  font-size: 15rem;
  font-family: "ezrabold", sans-serif;
  color: var(--color1);
}

.tj-error-content .error-desc {
  max-width: 100%;
}

.border-bottom-underline {
  border-bottom: 1px solid var(--color3);
  max-width: max-content;
}

.subscribe-form input[type="checkbox"]::before {
  font-size: 7px;
  line-height: 12px;
}

.contact-form .form-input textarea,
.contact-form .form-input select,
.contact-form .form-input .nice-select,
.contact-form .form-input input[type="tel"],
.contact-form .form-input input[type="text"],
.contact-form .form-input input[type="email"] {
  background-color: transparent;
  color: var(--tj-color-text-body-3);
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--tj-color-border-1);
}

.contact-form .form-input .nice-select::after {
  font-size: 14px;
  line-height: 1.4;
  color: #67787a;
}

.map-area {
  filter: grayscale(1);
}

.map-area:hover {
  filter: grayscale(0);
}

.contact-item.style-2 .contact-icon {
  width: 80px;
  height: 80px;
}

.contact-item.style-2 .contact-icon i {
  font-size: 24px;
}

.gap-bottom,
.section-bottom-gap {
  padding-bottom: 100px;
}

.contact-form {
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

i.icon-agrotech-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-agrotech-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-autocad-express {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-autocad-express.svg) no-repeat center;
  display: inline-block;
}

i.icon-design-grafico-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-design-grafico-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-gestao-de-vendas-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-gestao-de-vendas-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-informatica-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-informatica-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-marketing-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-marketing-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-start-ia {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-start-ia.svg) no-repeat center;
  display: inline-block;
}

i.icon-simbolo {
  width: 22px;
  height: 22px;
  background: url(../icon/icon-simbolo.svg) no-repeat center;
  display: inline-block;
}

i.icon-simbolo-seta {
  width: 16px;
  height: 16px;
  background: url(../icon/icon-simbolo-seta.svg) no-repeat center;
  display: inline-block;
}

i.icon-sobre-1 {
  width: 42px;
  height: 42px;
  background: url(../icon/icon-sobre-1.svg) no-repeat center;
  display: inline-block;
}

i.icon-sobre-2 {
  width: 42px;
  height: 42px;
  background: url(../icon/icon-sobre-2.svg) no-repeat center;
  display: inline-block;
}

.widget-nav-menu ul li a {
  gap: 8px;
}

.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 14px;
}

.tj-primary-btn .btn-text span {
  line-height: 1.1;
}

.blog-meta i {
  font-size: 16px;
}

.blog-date {
  padding: 0px;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-date .date {
  margin-bottom: 0px;
}

.blog-item .blog-thumb::before {
  background-color: #7f85b7;
}

.blog-item:hover .blog-thumb img {
  transform: scale(1.1) rotate(0deg);
}

.tj-pagination ul li .page-numbers.next {
  font-size: 18px;
}

.blog-item .blog-content .title a {
  padding-bottom: 4px;
}

.text-btn .btn-icon {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.tj-post__navigation {
  margin-bottom: 0;
  margin-top: 30px;
}

.tj-sidebar-widget.widget-categories ul li a {
  justify-content: left;
  align-items: start;
}

.tj-sidebar-widget.widget-categories ul li span {
  padding-right: 12px;
}

.tj-sidebar-widget.widget-categories ul li a:hover .number i {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

.tj-faq .accordion-item.active .faq-title {
  border-bottom: 1px solid var(--tj-color-border-1);
}

.team-item .team-img::after {
  display: none;
  content: none;
}

.tj-faq .accordion-item .faq-title::after {
  color: var(--color3);
  border: 2px solid var(--color3);
}

.team-item .team-img::after,
.team-item .team-img::before {
  background-color: rgb(15, 17, 27);
}

.list-items li {
  margin-bottom: 10px;
}

.team-item .title {
  width: 100%;
}

.team-item .social-links ul li a {
  background-color: var(--white);
  opacity: 1;
}

.mainmenu ul>li.link-menu-2>.mega-menu-service li a,
.mobile_menu ul>li>.mega-menu-service li a {
  padding: 15px 25px;
  border-bottom: 1px solid var(--tj-color-border-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.03em;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
  top: -2px;
}

.mainmenu ul>li.link-menu-2>.mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
  top: 5px;
  inset-inline-end: 0px;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
  inset-inline-end: 5px;
}

.mainmenu ul>li.link-menu-2>.mega-menu-service-single .mega-menu-service-title,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
  max-width: 100%;
}

.service-item .service-icon {
  background: linear-gradient(45deg,
      rgba(150, 150, 151, 0.2) 0%,
      rgba(150, 150, 151, 0) 80%);
  border: none;
}

.service-icon img {
  max-width: 60px;
}

.service-item.style-4 .title {
  max-width: 100%;
}

.service-item:hover .mega-menu-service-descricao {
  color: var(--white);
}

.service-item.style-4 {
  transition: all 0.2s ease-in-out;
}

.service-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.list-service {
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  margin-top: 25px;
  color: #030514;
}

.list-service li i {
  padding-right: 4px;
}

.service-item.style-4:hover .list-service li {
  color: var(--white);
}

p.desc {
  color: #030514;
}

.tj-main-sidebar {
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

#curso-form input[type="text"],
input[type="email"],
input[type="tel"] {
  outline: none;
  background-color: var(--tj-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: none;
  color: var(--tj-color-text-body);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

#curso-form .form-input input[type="tel"] {
  margin-bottom: 25px;
}

.post-details-wrapper .blog-images img {
  width: 100%;
  background-size: cover;
}

.tj-careers-top {
  align-items: center;
}

.tj-careers-top .location {
  margin-top: 2px;
}

.tj-careers-top {
  background: var(--white);
}

.team-details__experience__list ul li:nth-child(2n) {
  -webkit-border-end: 0;
  border-inline-end: 0;
}

.team-details__experience__list ul li:nth-last-child(2) {
  border-bottom: 0;
}

.team-details__experience__list ul li:nth-child(2n) {
  -webkit-border-end: 0;
  border-inline-end: 0;
}

.team-details__experience__list ul li:last-child {
  -webkit-border-end: 0;
  border-inline-end: 0;
  border-bottom: 0;
}

.team-details__experience__list ul {
  border: 1px solid var(--tj-color-border-1);
}

.team-details__experience__list ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 1;
  flex: 1 1 1;
  align-items: center;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border: 1px solid var(--tj-color-border-1);
  border-top: 0;
  -webkit-border-start: 0;
  border-inline-start: 0;
}

.descritivo span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.2;
}

.descritivo span:last-of-type {
  font-weight: 400;
  margin-left: 5px;
}

.team-details__experience__list ul li i {
  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;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 20px;
  color: var(--color1);
  background: transparent;
  border-radius: 50%;
  margin-top: 4px;
}

.tj-sidebar-widget.widget-categories ul li a:hover {
  background: var(--color3);
}

.tj-careers-top-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.tj-careers-top-icon i {
  filter: brightness(0) invert(1);
  width: 70px;
  height: 70px;
}

.tj-check-list ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 15px;
}

.tj-check-list ul li:first-child {
  margin-top: 15px;
}

.tj-check-list ul li:last-child {
  margin-bottom: 25px;
}

.tj-check-list ul li span {
  font-size: 12px;
  color: var(--color1);
  font-weight: var(--tj-fw-sbold);
}

.mainmenu ul>li>.sub-menu>li.link-menu-2>a {
  padding: 6px 20px 12px 20px;
}

.tj-primary-btn:hover {
  background: var(--color3);
}

.tj-primary-btn .btn-icon {
  background: var(--color3);
}

.tj-primary-btn:hover .btn-icon {
  background: var(--color1);
}

.copyright-content-area .copyright-text a {
  font-weight: 600;
  color: var(--tj-color-common-black);
}

.heading-wrap-content {
  align-items: end;
}

.h5-service-section .sec-heading {
  max-width: 600px;
}

.h10-service-wrapper .service-item.style-4:hover .service-icon {
  background: var(--white);
}

.icon-home-curso i {
  width: 60px;
  height: 60px;
}

.service-item.style-4 .service-icon,
.h10-service-wrapper .service-item.style-4 .service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 60px;
}

.h10-process {
  background-color: var(--color3);
  position: relative;
  z-index: 0;
  border-radius: 12px;
  overflow: hidden;
}

.h10-process-wrapper .h10-process-item {
  /* background: #1b1b1b; */
  background: #0c0c0c;
  padding: 40px 30px;
  border: 1px solid rgba(15, 15, 15, 0.3);
}

.h10-process-wrapper .h10-process-item p.desc {
  margin-bottom: 0;
  color: var(--white-04);
}

.h10-process-wrapper .h10-process-item .title {
  max-width: 100%;
}

.bg-shape-3,
.bg-shape-4 {
  max-width: 1000px;
  bottom: -400px;
  opacity: 0.3;
}

.h10-process-icon span {
  color: var(--white);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-top: 4px;
  font-family: "ezramedium", sans-serif;
}

.h10-process p.desc {
  color: var(--white-05) !important;
}

.h5-working-process {
  background-color: var(--color3);
}

.h5-working-process-inner::after {
  border-bottom: 1px solid var(--white-01);
}

.h5-working-process-item .h5-working-process-indicator::before,
.h5-working-process-item .h5-working-process-indicator::after {
  border-inline-end: 1px solid var(--white-01);
}

.h5-working-process-item .h5-working-process-indicator {
  border: 1px solid var(--white-01);
  background-color: var(--color3);
  padding: 10px;
}

.h5-working-process-item {
  background-color: rgba(255, 255, 255, 0.05);
}

.h5-working-process-item .process-step {
  background-image: linear-gradient(180deg,
      var(--tj-color-theme-primary) 0%,
      rgba(0, 0, 0, 0) 116.09%);
}

.h5-banner-area .solution-box {
  max-width: 400px;
  padding: 30px;
  backdrop-filter: blur(25px);
  border: 1px solid var(--white-02);
  margin-top: -80px;
}

.hero-counter {
  font-family: "ezramedium", sans-serif;
  font-size: 32px;
  margin-top: 10px;
}

.hero-counter .count-plus {
  padding-right: 5px;
}

.h5-banner-area .solution-box .hero-counter {
  font-size: 70px;
}

.sec-heading-centered {
  max-width: 700px;
}

.h5-testimonial-wrapper .h5-testimonial-author-wrapper {
  border-bottom: 1px solid var(--tj-color-border-1);
}

.h5-banner-section .banner-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(64deg, rgba(30, 50, 198, 0.98) 6%, rgba(30, 50, 198, 0) 53%, rgba(30, 50, 198, 0) 100%);
}

.tj-marquee-section {
  background-color: var(--color3);
  position: relative;
  padding-top: 33px;
  padding-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.marquee-item .marquee-text {
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px var(--tj-color-common-white);
  font-weight: none;
  font-family: "ezraregular", sans-serif;
}

.marquee-item .marquee-img {
  top: 0px;
}

.h5-banner-section::after,
.h5-banner-section::before {
  width: 720px;
  height: 720px;
}

.h5-banner-section::after {
  bottom: -40%;
  inset-inline-start: -12%;
}

.h5-banner-section {
  /* background-color: var(--color3); */
  background-color: var(--color1);
}

.banner-bg {
  background-position: top center;
}

.inline-content {
  font-family: var(--tj-ff-body);
  letter-spacing: 1px;
}

.inline-content .odometer,
.inline-content .odometer .odometer-digit,
.inline-content .odometer span {
  font-family: var(--tj-ff-body) !important;
  font-weight: 600;
  letter-spacing: -2px;
}

.about-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}

.tj-team-section-44 {
  background: linear-gradient(360deg, rgba(231, 229, 231, 0.98) 0%, rgba(231, 229, 231, 0) 85%);
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.mission-vision-box {
  padding: 20px;
}

.logos-empresas {
  display: flex;
  gap: 10px;
  /* flex-direction: column; */
  margin-top: 30px;
  align-items: center;
}

.logos-empresas img {
  max-height: 40px;
  width: max-content;
  padding: 10px 0px 0px;
}

.logos-empresas span {
  font-size: 20px;
  line-height: 1.2;
}

/* Responsive ========================================================================================== */
@media (min-width: 991px) {
  .marquee-item .marquee-text {
    font-size: 120px;
  }

  .h5-banner-content .banner-title .tj-image-slider {
    width: 100px;
    margin-bottom: -14px;
    margin-right: 5px;
  }

  .h5-banner-section::after,
  .h5-banner-section::before {
    inset-inline-end: -22%;
  }

  .h5-banner-section::before {
    display: none;
  }

  .h5-banner-content .banner-title {
    max-width: 715px;
    color: var(--tj-color-common-white);
    font-size: 70px;
    line-height: 1.3;
    margin-bottom: 0px;
  }

  .h5-banner-area {
    /* min-height: 700px;
    padding-top: 250px;
    padding-bottom: 65px; */
    min-height: 700px;
    padding-top: 190px;
    padding-bottom: 70px;
    justify-content: none;
  }
}

@media (max-width: 1440px) {}

@media (max-width: 1300px) {}

@media (max-width: 1201px) {}

@media (max-width: 991px) {
  .section-gap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .mainmenu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon img,
  .mobile_menu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon img {
    fill: var(--color5) !important;
    color: var(--color5) !important;
  }

  .mainmenu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon,
  .mobile_menu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon {
    background-color: var(--color5);
  }

  .hamburger_bg {
    border-radius: 20px;
  }
}

@media (max-width: 769px) {
  .h5-banner-content .banner-title .tj-image-slider {
    width: 30px;
    height: 30px;
    margin-bottom: -2px;
  }

  .widget-nav-menu-2 {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

@media (max-width: 600px) {
  .banner-bg {
    background-position: 50% center;
  }

  .hamburger_bg {
    border-radius: 0px;
  }
}

@media (max-width: 575px) {
  .h5-banner-section .banner-bg::before {
    background: linear-gradient(75deg, rgba(30, 50, 198, 0.98) 0%, rgba(30, 50, 198, 0) 68%);
  }

  .h5-banner-section::before {
    display: none;
  }

  .h5-banner-section::after {
    bottom: -8%;
    inset-inline-start: -42%;
  }

  .h5-banner-section::before {
    width: 250px;
    height: 250px;
    inset-inline-end: -73%;
    top: 12%;
  }

  .h5-banner-section::after,
  .h5-banner-section::before {
    width: 350px;
    height: 350px;
  }

  .h5-banner-area .solution-box {
    max-width: 100%;
    padding: 20px 20px 10px 20px;
    margin: 0px;
  }

  .h5-banner-content .banner-title {
    /* font-size: 38px; */
    font-size: 32px;
    line-height: 1.1;
  }

  .h5-working-process-inner::after {
    -webkit-border-end: 1px solid var(--tj-color-border-2);
    border-inline-end: 1px solid var(--tj-color-border-2);
  }

  .h5-banner-area {
    justify-content: space-evenly;
    padding: 170px 12px 12px;
    min-height: 84vh;
    gap: 20px;
  }

  .team-details__experience__list ul li {
    border-right: 0;
  }

  .team-details__experience__list ul li:nth-last-child(2) {
    border-bottom: 1px solid var(--tj-color-border-1);
  }

  .mainmenu ul>li.link-menu-2>.mega-menu-service-single .mega-menu-service-nav,
  .mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
    top: 2px;
    inset-inline-end: 0px;
  }

  .tj-footer-section {
    margin: 0;
    border-radius: 0;
  }

  .hamburger_wrapper {
    padding: 40px 30px;
    border-radius: 0px;
  }

  .header-area {
    background-color: var(--tj-color-common-white);
    border-radius: 0px;
    border-start-end-radius: 0px;
    border-end-end-radius: 0px;
  }

  .header-area.header-1.header-absolute {
    width: 100%;
    margin: 0 auto;
  }

  .mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
  .mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
    max-width: 180px;
  }

  .hamburger-area {
    width: 380px;
  }

  .mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
  .mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
    max-width: 100%;
  }
}

@media (max-width: 400px) {}