.app-notification-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
  pointer-events: none;
}

.app-notification {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  color: var(--text-primary);
  border-radius: 16px;
  padding: 1rem 1.25rem 1rem 1rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  border-left: 4px solid var(--primary-blue);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.app-notification--visible {
  opacity: 1;
  transform: translateY(0);
}

.app-notification__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(81, 94, 251, 0.12);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.app-notification__content {
  flex: 1;
}

.app-notification__message {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.app-notification__close {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.25rem;
  margin-left: 0.5rem;
  transition: opacity 0.2s ease;
}

.app-notification__close:hover,
.app-notification__close:focus {
  opacity: 0.7;
}

.app-notification__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(81, 94, 251, 0.15);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--notification-duration, 5s) linear;
}

.app-notification--success {
  border-left-color: var(--cyan);
}

.app-notification--success .app-notification__icon {
  background: rgba(8, 237, 231, 0.12);
  color: var(--cyan);
}

.app-notification--success .app-notification__progress {
  background: rgba(8, 237, 231, 0.25);
}

.app-notification--error {
  border-left-color: var(--pink);
}

.app-notification--error .app-notification__icon {
  background: rgba(255, 51, 153, 0.12);
  color: var(--pink);
}

.app-notification--error .app-notification__progress {
  background: rgba(255, 51, 153, 0.25);
}

.app-notification--info {
  border-left-color: var(--secondary-blue);
}

.app-notification--info .app-notification__icon {
  background: rgba(48, 182, 249, 0.12);
  color: var(--secondary-blue);
}

.app-notification--info .app-notification__progress {
  background: rgba(48, 182, 249, 0.25);
}

.app-notification--visible .app-notification__progress {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .app-notification-container {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 575px) {
  .app-notification-container {
    top: 1rem;
  }

  .app-notification {
    border-radius: 14px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&family=Lato:wght@300;400;500;600;700&display=swap');

/* ========================================
   PÁGINA SOBRE - META TRUST
   Adicionado em: 2025-01-09
   ======================================== */

/* 8. Credibilidade - Estilos Específicos */
.card-certificacao {
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card-certificacao:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.associacao-card {
    background-color: rgba(248, 249, 250, 0.9);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.associacao-card:hover {
    background-color: rgba(248, 249, 250, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-blue);
}

.parceria-category {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
}

.parceria-category::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.badge-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Associações - Estilo similar aos clientes */
.associacao-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(81, 94, 251, 0.1);
}

.associacao-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.associacao-logo-wrapper:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(81, 94, 251, 0.2);
    box-shadow: 0 8px 25px rgba(81, 94, 251, 0.15);
}

.associacao-logo-wrapper:hover .associacao-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.associacao-status {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
}

/* Clientes Placeholder */
.clientes-placeholder {
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.05) 0%, rgba(48, 182, 249, 0.05) 100%);
    transition: all 0.3s ease;
}

.clientes-placeholder:hover {
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1) 0%, rgba(48, 182, 249, 0.1) 100%);
    transform: translateY(-2px);
}

/* ========================================
   SISTEMA DE CORES - METATRUST IDV
   ======================================== */
:root {
  /* Font Family - Sistema Moderno */
  --default-font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  
  /* Cores Primárias da Identidade Visual */
  --primary-blue: #515EFB;
  --secondary-blue: #30B6F9;
  --cyan: #08EDE7;
  --purple: #47007B;
  --pink: #FF3399;
  
  /* Cores Neutras */
  --gray-light: #E4E4E4;
  --gray-dark: #3B3B3A;
  --white: #ffffff;
  --black: #000000;
  
  /* Variações para UX */
  --primary-blue-light: rgba(81, 94, 251, 0.1);
  --primary-blue-hover: rgba(81, 94, 251, 0.8);
  --secondary-blue-light: rgba(48, 182, 249, 0.1);
  --cyan-light: rgba(8, 237, 231, 0.1);
  --purple-light: rgba(71, 0, 123, 0.1);
  --pink-light: rgba(255, 51, 153, 0.1);
  
  /* Gradientes da Marca */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--purple) 0%, var(--primary-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--cyan) 0%, var(--secondary-blue) 100%);
  
  /* Sistema de Textos */
  --text-primary: var(--gray-dark);
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: var(--white);
  
  /* Sistema de Backgrounds */
  --bg-primary: var(--white);
  --bg-secondary: #f8f9fa;
  --bg-dark: var(--gray-dark);
  
  /* Sistema de Bordas */
  --border-light: var(--gray-light);
  --border-primary: var(--primary-blue);
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(71, 0, 123, 0.1);
  --shadow-md: 0 4px 6px rgba(71, 0, 123, 0.1);
  --shadow-lg: 0 10px 15px rgba(71, 0, 123, 0.15);
}
body {
  font-family: var(--default-font-family);
  overflow-x: hidden !important;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--default-font-family);
  line-height: 1.4;
  font-weight: 600;
}

/* Elementos que devem usar Montserrat para destaque */
.btn, .button, .cta-menu, .navigation-menu > li > a, .logo {
  font-family: "Montserrat", var(--default-font-family);
  font-weight: 500;
}

/* ========================================
   CLASSES UTILITÁRIAS - CORES IDV
   ======================================== */

/* Cores de Texto */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-secondary-blue { color: var(--secondary-blue) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-purple { color: var(--purple) !important; }
.text-pink { color: var(--pink) !important; }
/* Bootstrap Text Classes com Cores da IDV */
.text-primary { color: var(--primary-blue) !important; }
.text-secondary { color: var(--secondary-blue) !important; }
.text-success { color: var(--cyan) !important; }
.text-info { color: var(--secondary-blue) !important; }
.text-warning { color: var(--pink) !important; }
.text-danger { color: var(--purple) !important; }
/* Cores de Background */
.bg-primary-blue { background-color: var(--primary-blue) !important; }
.bg-secondary-blue { background-color: var(--secondary-blue) !important; }
.bg-cyan { background-color: var(--cyan) !important; }
.bg-purple { background-color: var(--purple) !important; }
.bg-pink { background-color: var(--pink) !important; }

/* Bootstrap Background Classes com Cores da IDV */
.bg-primary { background-color: var(--primary-blue) !important; }
.bg-secondary { background-color: var(--secondary-blue) !important; }
.bg-success { background-color: var(--cyan) !important; }
.bg-info { background-color: var(--secondary-blue) !important; }
.bg-warning { background-color: var(--pink) !important; }
.bg-danger { background-color: var(--purple) !important; }

/* Cores de Borda */
.border-primary-blue { border-color: var(--primary-blue) !important; }
.border-secondary-blue { border-color: var(--secondary-blue) !important; }
.border-cyan { border-color: var(--cyan) !important; }
.border-purple { border-color: var(--purple) !important; }
.border-pink { border-color: var(--pink) !important; }

/* Bootstrap Border Classes com Cores da IDV */
.border-primary { border-color: var(--primary-blue) !important; }
.border-secondary { border-color: var(--secondary-blue) !important; }
.border-success { border-color: var(--cyan) !important; }
.border-info { border-color: var(--secondary-blue) !important; }
.border-warning { border-color: var(--pink) !important; }
.border-danger { border-color: var(--purple) !important; }

/* Backgrounds com Gradientes */
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }
.bg-gradient-accent { background: var(--gradient-accent) !important; }

/* Bordas */
.border-primary-blue { border-color: var(--primary-blue) !important; }
.border-secondary-blue { border-color: var(--secondary-blue) !important; }
.border-cyan { border-color: var(--cyan) !important; }
.border-purple { border-color: var(--purple) !important; }
.border-pink { border-color: var(--pink) !important; }

/* Botões com Cores da IDV */
.btn-primary-blue {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}
.btn-primary-blue:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
}

.btn-secondary-blue {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
  color: var(--white);
}

.btn-cyan {
  background-color: var(--cyan);
  border-color: var(--cyan);
  color: var(--gray-dark);
}

.btn-purple {
  background-color: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.btn-pink {
  background-color: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Sobrescrever classes padrão do Bootstrap */
.btn-primary {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--white) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--primary-blue-hover) !important;
  border-color: var(--primary-blue-hover) !important;
  color: var(--white) !important;
}

.btn-secondary {
  background-color: var(--secondary-blue) !important;
  border-color: var(--secondary-blue) !important;
  color: var(--white) !important;
}

.btn-success {
  background-color: var(--cyan) !important;
  border-color: var(--cyan) !important;
  color: var(--gray-dark) !important;
}

.btn-info {
  background-color: var(--secondary-blue) !important;
  border-color: var(--secondary-blue) !important;
  color: var(--white) !important;
}

.btn-warning {
  background-color: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
}

.btn-danger {
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
  color: var(--white) !important;
}

.btn.btn-primary.gradiente-primary {
  background: var(--gradient-primary);
  border: none;
}
.btn.btn-primary.gradiente-primary:hover {
    box-shadow: 0 12px 30px rgba(81, 94, 251, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   COMPONENTES ESPECÍFICOS - CORES IDV
   ======================================== */

/* Badges e Tags */
.badge-primary { background-color: var(--primary-blue) !important; color: var(--white) !important; }
.badge-secondary { background-color: var(--secondary-blue) !important; color: var(--white) !important; }
.badge-success { background-color: var(--cyan) !important; color: var(--gray-dark) !important; }
.badge-info { background-color: var(--secondary-blue) !important; color: var(--white) !important; }
.badge-warning { background-color: var(--pink) !important; color: var(--white) !important; }
.badge-danger { background-color: var(--purple) !important; color: var(--white) !important; }

/* Cards com cores da IDV */
.card-primary { border-color: var(--primary-blue); }
.card-primary .card-header { background-color: var(--primary-blue); color: var(--white); }
.card-secondary { border-color: var(--secondary-blue); }
.card-secondary .card-header { background-color: var(--secondary-blue); color: var(--white); }
.card-success { border-color: var(--cyan); }
.card-success .card-header { background-color: var(--cyan); color: var(--gray-dark); }
/* Alertas */
.alert-primary { background-color: var(--primary-blue-light); border-color: var(--primary-blue); color: var(--primary-blue); }
.alert-secondary { background-color: var(--secondary-blue-light); border-color: var(--secondary-blue); color: var(--secondary-blue); }
.alert-success { background-color: var(--cyan-light); border-color: var(--cyan); color: var(--cyan); }
.alert-info { background-color: var(--secondary-blue-light); border-color: var(--secondary-blue); color: var(--secondary-blue); }
.alert-warning { background-color: var(--pink-light); border-color: var(--pink); color: var(--pink); }
.alert-danger { background-color: var(--purple-light); border-color: var(--purple); color: var(--purple); }
/* Ícones coloridos */
.icon-primary { color: var(--primary-blue) !important; }
.icon-secondary { color: var(--secondary-blue) !important; }
.icon-cyan { color: var(--cyan) !important; }
.icon-purple { color: var(--purple) !important; }
.icon-pink { color: var(--pink) !important; }

/* Círculos de ícones */
.icon-circle-primary { 
  background-color: var(--primary-blue-light); 
  color: var(--primary-blue); 
  border-radius: 50%; 
  padding: 1rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
}
.icon-circle-secondary { 
  background-color: var(--secondary-blue-light); 
  color: var(--secondary-blue); 
  border-radius: 50%; 
  padding: 1rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
}
.icon-circle-cyan { 
  background-color: var(--cyan-light); 
  color: var(--cyan); 
  border-radius: 50%; 
  padding: 1rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
}
/* Links coloridos */
.link-primary { color: var(--primary-blue) !important; }
.link-primary:hover { color: var(--primary-blue-hover) !important; }
.link-secondary { color: var(--secondary-blue) !important; }
.link-cyan { color: var(--cyan) !important; }
.link-purple { color: var(--purple) !important; }
.link-pink { color: var(--pink) !important; }
/* Divisores coloridos */
.divider-primary { border-color: var(--primary-blue) !important; }
.divider-secondary { border-color: var(--secondary-blue) !important; }
.divider-cyan { border-color: var(--cyan) !important; }

/* Seções com backgrounds especiais */
.section-primary { background: var(--gradient-primary); color: var(--white); }
.section-secondary { background: var(--gradient-secondary); color: var(--white); }
.section-accent { background: var(--gradient-accent); color: var(--white); }

::-moz-selection {
  background: var(--primary-blue);
  color: var(--white);
}

::selection {
  background: var(--primary-blue);
  color: var(--white);
}

a {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

p {
  line-height: 1.6;
}

/*********************************/
/*         Menu                  */
/*===============================*/
#topnav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: var(--white);
  border: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#topnav .logo {
  float: left;
  color: var(--text-primary) !important;
}

/* Garantir que o logo tenha tamanho adequado */
#topnav .logo img {
  max-height: 55px !important;
  width: auto !important;
  height: auto !important;
}

/* Logo menor em mobile */
@media (max-width: 768px) {
  #topnav .logo img {
    max-height: 36px !important;
  }
}
#topnav .logo .l-dark,
#topnav .logo .logo-dark-mode {
  display: none;
}
#topnav .logo .l-light,
#topnav .logo .logo-light-mode {
  display: inline-block;
}
#topnav .logo:focus {
  outline: none;
}
#topnav .has-submenu.active a {
  color: var(--white);
}
#topnav .has-submenu.active .submenu li.active > a {
  color: var(--primary-blue) !important;
}
#topnav .has-submenu.active.active .menu-arrow {
  border-color: var(--primary-blue);
}
#topnav #navigation.toggle-menu {
  position: relative;
  display: block;
  top: 0;
  border: none;
}
#topnav #navigation.toggle-menu .toggle-menu-item {
  display: block;
}
#topnav #navigation.toggle-menu .toggle-menu-item > li {
  float: none;
  margin: 0 16px !important;
  text-align: center;
}
#topnav #navigation.toggle-menu .toggle-menu-item > li > a {
  padding: 16px 0;
  min-height: auto;
  font-size: 18px;
}
#topnav .has-submenu {
  position: relative;
}
#topnav .has-submenu .submenu {
  position: relative;
}
#topnav .has-submenu .submenu .submenu-arrow {
  border: solid var(--gray-dark);
  border-radius: 0.5px;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  top: 13px;
}
#topnav .has-submenu .submenu .has-submenu .submenu .has-submenu:hover .submenu-arrow {
  border-color: var(--primary-blue);
}
#topnav .has-submenu .submenu .has-submenu:hover > .submenu-arrow {
  border-color: var(--primary-blue);
}
#topnav .navbar-toggle {
  border: 0;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#topnav .navbar-toggle .lines {
  width: 25px;
  display: block;
  position: relative;
  margin: 30px 0 26px 10px;
  height: 18px;
}
#topnav .navbar-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--gray-dark);
  display: block;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#topnav .navbar-toggle span:last-child {
  margin-bottom: 0;
}
#topnav .buy-button {
  float: right;
  line-height: 74px;
}
#topnav .buy-button > li {
  line-height: initial;
  padding-top: 19px;
}
#topnav .buy-button > li:first-child {
  margin-right: 4px; /* ajuste conforme necessário */
}

#topnav .buy-button .login-btn-primary,
#topnav .buy-button .btn-icon-dark {
  display: none;
}
#topnav .buy-button .login-btn-light,
#topnav .buy-button .btn-icon-light {
  display: inline-block;
}
#topnav .buy-button .search-bar .menu-search form {
  position: relative;
}
#topnav .buy-button .search-bar .searchform input[type=text] {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 12px;
  height: 44px;
  font-size: 14px;
  display: block;
  outline: none !important;
  padding-right: 45px;
}
#topnav .buy-button .search-bar .searchform input[type=submit] {
  display: none;
}
#topnav .buy-button .search-bar .searchform:after {
  content: "\f0349";
  position: absolute;
  font-family: "Material Design Icons";
  right: 14px;
  top: 14px;
  font-size: 20px;
  line-height: 20px;
  pointer-events: none;
}
#topnav .buy-button .dropdown .dropdown-toggle:after,
#topnav .buy-menu-btn .dropdown .dropdown-toggle:after {
  display: none;
}
#topnav .navbar-toggle.open span {
  position: absolute;
}
#topnav .navbar-toggle.open span:first-child {
  top: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#topnav .navbar-toggle.open span:nth-child(2) {
  visibility: hidden;
}
#topnav .navbar-toggle.open span:last-child {
  width: 100%;
  top: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#topnav .navbar-toggle.open span:hover {
  background-color: var(--primary-blue);
}
#topnav .navbar-toggle:hover, #topnav .navbar-toggle:focus,
#topnav .navbar-toggle .navigation-menu > li > a:hover, #topnav .navbar-toggle:focus {
  background-color: transparent;
}
#topnav .navigation-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
#topnav .navigation-menu > li {
  float: left;
  display: block;
  position: relative;
  margin: 0 10px;
}
#topnav .navigation-menu > li:hover > a, #topnav .navigation-menu > li.active > a {
  color: var(--primary-blue) !important;
}
#topnav .navigation-menu > li > a {
  display: block;
  color: var(--text-primary);
  font-size: 16px;
  background-color: transparent !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 24px;
  font-family: var(--default-font-family);
  padding-left: 15px;
  padding-right: 15px;
}
#topnav .navigation-menu > li > a:hover, #topnav .navigation-menu > li > a:active {
  color: var(--primary-blue);
}
#topnav .navigation-menu > li .submenu.megamenu li .megamenu-head {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--gray-dark) !important;
}
#topnav .navigation-menu .has-submenu .menu-arrow {
  border: solid var(--gray-dark);
  border-radius: 0.5px;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  right: -1px;
  top: 30px;
}
#topnav .navigation-menu .has-submenu:hover .menu-arrow {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#topnav .menu-extras {
  float: right;
}
#topnav.scroll {
  background-color: var(--white);
  border: none;
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
#topnav.scroll .navigation-menu > li > a {
  color: var(--text-primary);
}
#topnav.scroll .navigation-menu > li > .menu-arrow {
  border-color: var(--gray-dark);
}
#topnav.scroll .navigation-menu > li:hover > a, #topnav.scroll .navigation-menu > li.active > a {
  color: var(--primary-blue);
}
#topnav.scroll .navigation-menu > li:hover > .menu-arrow, #topnav.scroll .navigation-menu > li.active > .menu-arrow {
  border-color: var(--primary-blue);
}
#topnav.defaultscroll.dark-menubar .logo {
  line-height: 70px;
}
#topnav.defaultscroll.scroll .logo {
  line-height: 62px;
}
#topnav.defaultscroll.scroll.dark-menubar .logo {
  line-height: 62px;
}
/* Menu no estado normal (não sticky) - IDV MetaTrust */
#topnav .navigation-menu.nav-light > li > a {
  color: var(--white);
  transition: color 0.3s ease;
}
#topnav .navigation-menu.nav-light > li.active > a {
  color: var(--white) !important;
}

#topnav .navigation-menu.nav-light > li:hover > .menu-arrow, 
#topnav .navigation-menu.nav-light > li.active > .menu-arrow {
  border-color: var(--white) !important;
}

#topnav .navigation-menu.nav-light > li:hover > a, 
#topnav .navigation-menu.nav-light > li.active > a {
  color: var(--white) !important;
}

#topnav .navigation-menu.nav-light .has-submenu .menu-arrow {
  border-color: rgba(255, 255, 255, 0.7);
}

#topnav .navigation-menu.nav-light .has-submenu.active .menu-arrow {
  border-color: var(--white) !important;
}

#topnav.nav-sticky {
  background: var(--white);
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
#topnav.nav-sticky .navigation-menu.nav-light > li > a {
  color: var(--text-primary);
}
#topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
  color: var(--primary-blue) !important;
}
#topnav.nav-sticky .navigation-menu.nav-light > li:hover > .menu-arrow, #topnav.nav-sticky .navigation-menu.nav-light > li.active > .menu-arrow {
  border-color: var(--primary-blue) !important;
}
#topnav.nav-sticky .navigation-menu.nav-light > li:hover > a, #topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
  color: var(--primary-blue) !important;
}
#topnav.nav-sticky .navigation-menu.nav-light .has-submenu .menu-arrow {
  border-color: var(--gray-dark);
}
#topnav.nav-sticky.tagline-height {
  top: 0 !important;
}
#topnav.nav-sticky .buy-button .login-btn-primary,
#topnav.nav-sticky .buy-button .btn-icon-dark {
  display: inline-block;
}
#topnav.nav-sticky .buy-button .login-btn-light,
#topnav.nav-sticky .buy-button .btn-icon-light {
  display: none;
}
#topnav.nav-sticky .logo .l-dark {
  display: inline-block;
}
#topnav.nav-sticky .logo .l-light {
  display: none;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  margin-right: 15px;
  padding: 0 0 6px;
  letter-spacing: 1px;
  line-height: 68px;
}
@media (min-width: 1025px) {
  #topnav .navigation-menu > li .submenu.megamenu {
    width: 1116px !important;
  }
}
@media screen and (max-width: 1024px) and (min-width: 992px) {
  #topnav .navigation-menu > li .submenu.megamenu {
    width: 936px !important;
  }
}
@media (min-width: 992px) {
  #topnav .navigation-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #topnav .navigation-menu > .has-submenu:hover .menu-arrow {
    top: 33px !important;
  }
  #topnav .navigation-menu > .has-submenu.active .menu-arrow {
    top: 30px;
  }
  #topnav .navigation-menu > li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    list-style: none;
    min-width: 180px;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 6px;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
            box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  }
  #topnav .navigation-menu > li .submenu li {
    position: relative;
  }
  #topnav .navigation-menu > li .submenu li a {
    display: block;
    padding: 10px 15px;
    clear: both;
    white-space: normal;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--text-primary) !important;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #topnav .navigation-menu > li .submenu li a:hover {
    color: var(--primary-blue) !important;
  }
  #topnav .navigation-menu > li .submenu li ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  #topnav .navigation-menu > li .submenu.megamenu {
    white-space: normal;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    position: absolute !important;
    top: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 800px;
    max-width: 1000px;
    width: 90vw;
    padding: 20px;
    gap: 20px;
  }
  #topnav .navigation-menu > li .submenu.megamenu > li {
    overflow: visible;
    vertical-align: top;
    width: 25%;
    flex: 1;
    padding: 0 10px;
  }
  #topnav .navigation-menu > li .submenu.megamenu > li .submenu {
    left: 100%;
    top: 0;
    margin-left: 10px;
    margin-top: -1px;
  }
  
  /* Estilos específicos para os sub-itens do megamenu (soluções) */
  #topnav .navigation-menu > li .submenu.megamenu .list-unstyled {
    margin-top: 8px;
    padding-left: 15px;
  }
  
  #topnav .navigation-menu > li .submenu.megamenu .list-unstyled li a {
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary) !important;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.3;
    display: block;
  }
  
  #topnav .navigation-menu > li .submenu.megamenu .list-unstyled li a:hover {
    color: var(--primary-blue) !important;
    background-color: rgba(47, 85, 212, 0.05);
    border-radius: 4px;
  }
  
  #topnav .navigation-menu > li .submenu.megamenu .list-unstyled li a.text-primary {
    font-weight: 500;
    color: var(--primary-blue) !important;
  }
  
  /* Força largura de 25% para todas as media queries */
  @media (min-width: 992px) {
    #topnav .navigation-menu > li .submenu.megamenu > li {
      width: 25% !important;
      overflow: visible !important;
    }
  }
  #topnav .navigation-menu > li .submenu > li .submenu {
    left: 101%;
    top: 0;
    margin-left: 10px;
    margin-top: -1px;
  }
  #topnav .navigation-menu > li > a {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 62px;
  }
  #topnav .navigation-menu > li:hover > .menu-arrow {
    border-color: var(--primary-blue);
  }
  #topnav .navigation-menu > li:hover > a, #topnav .navigation-menu > li.active > a {
    color: var(--primary-blue) !important;
  }
  #topnav .navigation-menu > li.last-elements .submenu {
    left: auto;
    right: 0;
  }
  #topnav .navigation-menu > li.last-elements .submenu:before {
    left: auto;
    right: 10px;
  }
  #topnav .navigation-menu > li.last-elements .submenu > li.has-submenu .submenu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
  }
  #topnav .navigation-menu.nav-light > li > a {
    color: rgba(255, 255, 255, 0.5);
  }
  #topnav .navigation-menu.nav-light > li.active > a {
    color: var(--white) !important;
  }
  #topnav .navigation-menu.nav-light > li:hover > .menu-arrow {
    border-color: var(--white) !important;
  }
  #topnav .navigation-menu.nav-light > li:hover > a {
    color: var(--white) !important;
  }
  #topnav .navigation-menu.nav-light .has-submenu .menu-arrow {
    border-color: rgba(255, 255, 255, 0.5);
  }
  #topnav .navigation-menu.nav-light .has-submenu.active .menu-arrow {
    border-color: var(--white) !important;
  }
  #topnav .navigation-menu.nav-right {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  #topnav .navigation-menu.nav-left {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  #topnav .navigation-menu.nav-left > li.last-elements .submenu {
    left: 0 !important;
    right: auto !important;
  }
  #topnav .navigation-menu.nav-left > li.last-elements .submenu:before {
    left: 45px !important;
    right: auto !important;
  }
  #topnav .buy-button {
    padding-left: 15px;
    margin-left: 15px;
  }
  #topnav .navbar-toggle {
    display: none;
  }
  #topnav #navigation {
    display: block !important;
  }
  #topnav.scroll {
    top: 0;
  }
  #topnav.scroll .navigation-menu > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #topnav.scroll-active .navigation-menu > li > a {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 991px) {
  #topnav {
    background-color: var(--white);
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
            box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    min-height: 74px;
  }
  #topnav .logo .l-dark {
    display: inline-block !important;
  }
  #topnav .logo .l-light {
    display: none !important;
  }
  #topnav .container {
    width: auto;
  }
  #topnav #navigation {
    max-height: 400px;
  }
  #topnav .navigation-menu {
    float: none;
  }
  #topnav .navigation-menu > li {
    float: none;
  }
  #topnav .navigation-menu > li .submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin: 0;
  }
  #topnav .navigation-menu > li .submenu li a {
    display: block;
    position: relative;
    padding: 8px 15px;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--text-primary) !important;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #topnav .navigation-menu > li .submenu.megamenu li .megamenu-head {
    padding: 7px 15px;
  }
  #topnav .navigation-menu > li .submenu.open {
    display: block;
  }
  #topnav .navigation-menu > li .submenu .submenu {
    display: none;
    list-style: none;
  }
  #topnav .navigation-menu > li .submenu .submenu.open {
    display: block;
  }
  #topnav .navigation-menu > li .submenu.megamenu > li > ul {
    list-style: none;
    padding-left: 0;
  }
  #topnav .navigation-menu > li .submenu.megamenu > li > ul > li > span {
    display: block;
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
  }
  #topnav .navigation-menu > li > a {
    color: var(--text-primary);
    padding: 10px 20px;
  }
  #topnav .navigation-menu > li > a:after {
    position: absolute;
    right: 15px;
  }
  #topnav .navigation-menu > li > a:hover,
  #topnav .navigation-menu > li .submenu li a:hover,
  #topnav .navigation-menu > li.has-submenu.open > a {
    color: var(--primary-blue);
  }
  #topnav .menu-extras .menu-item {
    border-color: var(--text-light);
  }
  #topnav .navbar-header {
    float: left;
  }
  #topnav .buy-button .login-btn-primary,
  #topnav .buy-button .btn-icon-dark {
    display: inline-block !important;
  }
  #topnav .buy-button .login-btn-light,
  #topnav .buy-button .btn-icon-light {
    display: none;
  }
  #topnav .has-submenu .submenu .submenu-arrow {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 12px;
  }
  #topnav .has-submenu.active a {
    color: var(--primary-blue);
  }
  #navigation {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    height: auto;
    padding-bottom: 0;
    overflow: auto;
    border-top: 1px solid rgb(242.05, 243.9, 245.75);
    border-bottom: 1px solid rgb(242.05, 243.9, 245.75);
    background-color: var(--white);
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
            box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  }
  #navigation.open {
    display: block;
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  #topnav .navigation-menu .has-submenu .menu-arrow {
    right: 8px;
    top: 16px;
  }
  
  /* Megamenu responsivo */
  #topnav .navigation-menu > li .submenu.megamenu {
    min-width: 100vw;
    max-width: 100vw;
    width: 100vw;
    left: 0;
    transform: none;
    padding: 15px;
    gap: 15px;
    flex-direction: column;
  }
  
  #topnav .navigation-menu > li .submenu.megamenu > li {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
}
/* Media query para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  #topnav .navigation-menu > li .submenu.megamenu {
    min-width: 95vw;
    max-width: 95vw;
    width: 95vw;
    padding: 18px;
    gap: 18px;
  }
  
  #topnav .navigation-menu > li .submenu.megamenu > li {
    width: 24%;
    padding: 0 8px;
  }
}
@media (min-width: 768px) {
  #topnav .navigation-menu > li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
  }
  #topnav .navigation-menu > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
  }
  #topnav .navigation-menu > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu > li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-toggle {
    display: block;
  }
}
@media (max-width: 425px) {
  #topnav .buy-menu-btn {
    display: block !important;
    margin: 0 10px;
    padding: 10px 20px;
  }
  #topnav .buy-menu-btn .dropdown .dropdown-menu.show {
    -webkit-transform: translate3d(0px, -54px, 0px) !important;
            transform: translate3d(0px, -54px, 0px) !important;
  }
}
.tagline {
  position: absolute;
  width: 100%;
  z-index: 99;
  font-size: 14px;
  padding: 13px 0;
}
@media screen and (max-width: 575px) {
  .tagline {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .tagline-height {
    top: 0px !important;
  }
}
@media (min-width: 576px) {
  .tagline-height {
    top: 47px !important;
  }
}

.sidebar-nav > .navbar-item {
  padding: 5px 0;
}
.sidebar-nav > .navbar-item .navbar-link {
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 600;
}
.sidebar-nav > .navbar-item .navbar-link .navbar-icon {
  font-size: 18px;
  margin-right: 6px;
}
.sidebar-nav > .navbar-item:hover .navbar-link, .sidebar-nav > .navbar-item.active .navbar-link {
  color: var(--primary-blue) !important;
}

#navmenu-nav li.active a {
  color: var(--primary-blue) !important;
}
#navmenu-nav li.account-menu.active .navbar-link, #navmenu-nav li.account-menu:hover .navbar-link {
  color: var(--white) !important;
  background-color: var(--primary-blue) !important;
}

.navbar-white-bg {
  background-color: var(--white) !important;
}

/*********************************/
/*         Footer                */
/*===============================*/
.footer {
  position: relative;
  color: var(--white);
}
.footer .footer-py-60 {
  padding: 60px 0;
}
.footer .footer-py-30 {
  padding: 30px 0;
}
.footer .logo-footer {
  font-size: 22px;
  display: block;
  text-align: center;
}
.footer .logo-footer:focus {
  outline: none;
}

/* Garantir que o logo do footer tenha tamanho adequado */
.footer .logo-footer img {
  max-height: 130px !important;
  width: auto !important;
  height: auto !important;
}

/* Logo menor em mobile */
@media (max-width: 768px) {
  .footer .logo-footer img {
    max-height: 80px !important;
  }
}
.footer .footer-head {
  letter-spacing: normal;
  font-weight: 500;
  color: var(--white);
}
.footer .foot-subscribe .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
}
.footer .foot-subscribe .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.footer .foot-subscribe.foot-white .form-control {
  color: var(--text-light);
}
.footer .foot-subscribe input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .foot-subscribe input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .foot-subscribe input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .foot-subscribe input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .foot-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .text-foot {
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-list {
  margin-bottom: 0;
}
.footer .footer-list li {
  margin-bottom: 10px;
}
.footer .footer-list li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .footer-list li a:hover {
  color: rgb(229.5135135135, 232, 234.4864864865);
}
.footer .footer-list li:last-child {
  margin-bottom: 0;
}
.footer .footer-border,
.footer .footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Links do footer */
.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--white);
}
.footer .border {
  border-color: rgb(40.3265306122, 51.6683673469, 83.1734693878) !important;
}
.footer.footer-light {
  background: var(--bg-secondary);
  color: var(--text-light);
}
.footer.footer-light .footer-head {
  color: var(--text-primary);
}
.footer.footer-light .foot-subscribe .form-control {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--bg-secondary);
}
.footer.footer-light .foot-subscribe.foot-white .form-control {
  color: var(--text-light);
}
.footer.footer-light .foot-subscribe input::-webkit-input-placeholder {
  color: var(--text-light);
}
.footer.footer-light .foot-subscribe input::-moz-placeholder {
  color: var(--text-light);
}
.footer.footer-light .foot-subscribe input:-ms-input-placeholder {
  color: var(--text-light);
}
.footer.footer-light .foot-subscribe input::-ms-input-placeholder {
  color: var(--text-light);
}
.footer.footer-light .foot-subscribe input::placeholder {
  color: var(--text-light);
}
.footer.footer-light .border {
  border-color: var(--border-light) !important;
}
.footer.footer-light .text-foot {
  color: var(--text-light);
}
.footer.footer-light .footer-list li a:hover {
  color: #495057;
}

.avatar.avatar-coin, .avatar.avatar-sm-sm {
  height: 36px !important;
  width: 36px !important;
}
.avatar.avatar-ex-sm {
  max-height: 25px !important;
}
.avatar.avatar-ex-small {
  height: 36px !important;
  width: 36px !important;
}
.avatar.avatar-md-sm {
  height: 45px !important;
  width: 45px !important;
}
.avatar.avatar-small {
  height: 65px !important;
  width: 65px !important;
}
.avatar.avatar-md-md {
  height: 80px !important;
  width: 80px !important;
}
.avatar.avatar-medium {
  height: 110px !important;
  width: 110px !important;
}
.avatar.avatar-large {
  height: 140px !important;
  width: 140px !important;
}
.avatar.avatar-ex-large {
  height: 180px !important;
  width: 180px !important;
}

.accordion .accordion-item {
  overflow: hidden;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
.accordion .accordion-item .accordion-button {
  font-weight: 600;
  text-align: left;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 1rem 2.5rem 1rem 1.25rem;
}
.accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-item .accordion-button:before {
  content: "\f0143";
  display: block;
  font-family: "Material Design Icons";
  font-size: 16px;
  color: var(--primary-blue);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.accordion .accordion-item .accordion-button.collapsed {
  background-color: var(--white);
  color: var(--text-primary) !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.accordion .accordion-item .accordion-button.collapsed:before {
  top: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: var(--text-primary) !important;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
}
.accordion .accordion-item .accordion-button:after {
  display: none;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, #ffffff, #ffffff);
  z-index: 9999999;
}
#preloader #status {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#preloader #status .spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}
#preloader #status .spinner .double-bounce1, #preloader #status .spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-blue);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
          animation: sk-bounce 2s infinite ease-in-out;
}
#preloader #status .spinner .double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label,
.form-check-label {
  font-weight: 700;
  font-size: 14px;
}
.form-control {
  border: 1px solid var(--border-light);
  font-size: 14px;
  line-height: 26px;
  border-radius: 6px;
  color: var(--text-primary) !important;
  text-align: left;
}
.form-control:focus {
  border-color: var(--primary-blue);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control[readonly] {
  background-color: var(--white);
}
.form-control:disabled {
  background-color: #dee2e6;
}
.form-control::-webkit-input-placeholder {
  color: #3c4858;
}
.form-control::-moz-placeholder {
  color: #3c4858;
}
.form-control:-ms-input-placeholder {
  color: #3c4858;
}
.form-control::-ms-input-placeholder {
  color: #3c4858;
}
.form-control::placeholder {
  color: #3c4858;
}

.form-check-input {
  border: 1px solid var(--border-light);
  background-color: var(--white);
}
.form-check-input:focus {
  border-color: var(--primary-blue);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-check-input.form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.subcribe-form .btn {
  padding: 10px 20px;
}
.subcribe-form input {
  padding: 12px 20px;
  width: 100%;
  color: var(--text-primary) !important;
  border: none;
  outline: none !important;
  padding-right: 160px;
  background-color: rgba(255, 255, 255, 0.8);
  height: 50px;
}
.subcribe-form input::-webkit-input-placeholder {
  color: #3c4858;
}
.subcribe-form input::-moz-placeholder {
  color: #3c4858;
}
.subcribe-form input:-ms-input-placeholder {
  color: #3c4858;
}
.subcribe-form input::-ms-input-placeholder {
  color: #3c4858;
}
.subcribe-form input::placeholder {
  color: #3c4858;
}
.subcribe-form button {
  position: absolute;
  top: 2px;
  right: 3px;
  outline: none !important;
}
.subcribe-form form {
  position: relative;
  max-width: 600px;
  margin: 0px auto;
}

/*********************************/
/*         Blog & News           */
/*===============================*/
.blog.blog-primary .tag {
  background: var(--primary-blue) !important;
}
.blog.blog-primary .title:hover,
.blog.blog-primary .readmore:hover {
  color: var(--primary-blue) !important;
}
.blog.blog-primary .link {
  color: var(--primary-blue) !important;
}

.blog.blog-secondary .tag {
  background: #6c757d !important;
}
.blog.blog-secondary .title:hover,
.blog.blog-secondary .readmore:hover {
  color: var(--text-secondary) !important;
}
.blog.blog-secondary .link {
  color: var(--text-secondary) !important;
}

.blog.blog-success .tag {
  background: var(--cyan) !important;
}
.blog.blog-success .title:hover,
.blog.blog-success .readmore:hover {
  color: #2eca8b !important;
}
.blog.blog-success .link {
  color: #2eca8b !important;
}

.blog.blog-info .tag {
  background: #17a2b8 !important;
}
.blog.blog-info .title:hover,
.blog.blog-info .readmore:hover {
  color: #17a2b8 !important;
}
.blog.blog-info .link {
  color: #17a2b8 !important;
}

.blog.blog-warning .tag {
  background: #f17425 !important;
}
.blog.blog-warning .title:hover,
.blog.blog-warning .readmore:hover {
  color: #f17425 !important;
}
.blog.blog-warning .link {
  color: #f17425 !important;
}

.blog.blog-danger .tag {
  background: #e43f52 !important;
}
.blog.blog-danger .title:hover,
.blog.blog-danger .readmore:hover {
  color: #e43f52 !important;
}
.blog.blog-danger .link {
  color: #e43f52 !important;
}

.blog.blog-light .tag {
  background: #f8f9fa !important;
}
.blog.blog-light .title:hover,
.blog.blog-light .readmore:hover {
  color: #f8f9fa !important;
}
.blog.blog-light .link {
  color: #f8f9fa !important;
}

.blog.blog-dark .tag {
  background: #212529 !important;
}
.blog.blog-dark .title:hover,
.blog.blog-dark .readmore:hover {
  color: var(--text-primary) !important;
}
.blog.blog-dark .link {
  color: var(--text-primary) !important;
}

.blog.blog-footer .tag {
  background: #202942 !important;
}
.blog.blog-footer .title:hover,
.blog.blog-footer .readmore:hover {
  color: #202942 !important;
}
.blog.blog-footer .link {
  color: #202942 !important;
}

.blog.blog-muted .tag {
  background: #8492a6 !important;
}
.blog.blog-muted .title:hover,
.blog.blog-muted .readmore:hover {
  color: #8492a6 !important;
}
.blog.blog-muted .link {
  color: #8492a6 !important;
}

.blog {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog .content h4 {
  line-height: 1.2;
}
.blog .content .title {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog .content .post-meta .like, .blog .content .post-meta .comments, .blog .content .post-meta .readmore {
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog .content .post-meta .like:hover {
  color: #e43f52 !important;
}
.blog .content .post-meta .comments:hover {
  color: #2eca8b !important;
}
.blog .author,
.blog .teacher,
.blog .preview,
.blog .course-fee {
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog .author {
  top: 5%;
  left: 5%;
}
.blog .author .user,
.blog .author .date,
.blog .author .profession,
.blog .teacher .user,
.blog .teacher .date,
.blog .teacher .profession {
  color: var(--white);
}
.blog .teacher {
  bottom: 6%;
  left: 5%;
}
.blog .course-fee {
  bottom: -5%;
  right: 5%;
  width: 50px;
  height: 50px;
}
.blog .course-fee .fee {
  line-height: 50px;
}
.blog.blog-detail:hover {
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}
.blog .overlay {
  background: #3c4858;
}
.blog:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.blog:hover .overlay {
  opacity: 0.6;
}
.blog:hover .author,
.blog:hover .teacher,
.blog:hover .preview,
.blog:hover .course-fee {
  opacity: 1;
}
.blog .blog-list-meta {
  position: absolute;
  bottom: 24px;
}
.blog .preview {
  color: var(--white) !important;
}

.sidebar .widget .blog-categories li {
  padding-bottom: 10px;
}
.sidebar .widget .blog-categories li:last-child {
  padding-bottom: 0;
}
.sidebar .widget .blog-categories li a, .sidebar .widget .blog-categories li span {
  font-size: 15px;
}
.sidebar .widget .blog-categories li a {
  color: var(--text-primary);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar .widget .blog-categories li a:hover {
  color: var(--primary-blue);
}
.sidebar .widget .post-recent {
  padding-bottom: 15px;
}
.sidebar .widget .post-recent:last-child {
  padding-bottom: 0;
}
.sidebar .widget .post-recent .post-recent-thumb {
  width: 25%;
}
.sidebar .widget .post-recent .post-recent-content {
  width: 75%;
  padding-left: 10px;
}
.sidebar .widget .post-recent .post-recent-content a {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar .widget .post-recent .post-recent-content a:hover {
  color: var(--primary-blue);
}
.sidebar .widget .post-recent .post-recent-content span {
  font-size: 13px;
}

.tagcloud > a {
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1px;
  margin: 5px 10px 5px 0;
  padding: 8px 12px 7px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
}
.tagcloud > a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.media-list .media .media-heading:hover {
  color: var(--primary-blue) !important;
}
.media-list .sub-comment {
  border-left: 2px dashed #e9ecef;
}

.blog .overlay,
.job-box .job-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.job-box.job-primary .position a:hover {
  color: var(--primary-blue) !important;
}
.job-box.job-primary .company-name:hover {
  color: var(--primary-blue) !important;
}
.job-box.job-primary .title:hover,
.job-box.job-primary .readmore:hover {
  color: var(--primary-blue) !important;
}
.job-box.job-primary .icons {
  color: var(--primary-blue) !important;
}
.job-box.job-primary.candidate-list .name:hover, .job-box.job-primary.company-list .name:hover {
  color: var(--primary-blue) !important;
}
.job-box.job-primary .bg {
  background-color: var(--primary-blue) !important;
}
.job-box.job-primary .bg-soft {
  background-color: rgba(47, 85, 212, 0.1) !important;
  border: 1px solid rgba(47, 85, 212, 0.1) !important;
  color: var(--primary-blue) !important;
}
.job-box.job-primary .btn-soft {
  background-color: rgba(47, 85, 212, 0.05) !important;
  border: 1px solid rgba(47, 85, 212, 0.05) !important;
  color: var(--primary-blue) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
          box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
}
.job-box.job-primary .btn-soft:hover, .job-box.job-primary .btn-soft:focus, .job-box.job-primary .btn-soft:active, .job-box.job-primary .btn-soft.active, .job-box.job-primary .btn-soft.focus {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--white) !important;
}
.job-box.job-secondary .position a:hover {
  color: var(--text-secondary) !important;
}
.job-box.job-secondary .company-name:hover {
  color: var(--text-secondary) !important;
}
.job-box.job-secondary .title:hover,
.job-box.job-secondary .readmore:hover {
  color: var(--text-secondary) !important;
}
.job-box.job-secondary .icons {
  color: var(--text-secondary) !important;
}
.job-box.job-secondary.candidate-list .name:hover, .job-box.job-secondary.company-list .name:hover {
  color: var(--text-secondary) !important;
}
.job-box.job-secondary .bg {
  background-color: #6c757d !important;
}
.job-box.job-secondary .bg-soft {
  background-color: rgba(108, 117, 125, 0.1) !important;
  border: 1px solid rgba(108, 117, 125, 0.1) !important;
  color: var(--text-secondary) !important;
}
.job-box.job-secondary .btn-soft {
  background-color: rgba(108, 117, 125, 0.05) !important;
  border: 1px solid rgba(108, 117, 125, 0.05) !important;
  color: var(--text-secondary) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
          box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
}
.job-box.job-secondary .btn-soft:hover, .job-box.job-secondary .btn-soft:focus, .job-box.job-secondary .btn-soft:active, .job-box.job-secondary .btn-soft.active, .job-box.job-secondary .btn-soft.focus {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: var(--white) !important;
}

.job-box.job-success .position a:hover {
  color: #2eca8b !important;
}
.job-box.job-success .company-name:hover {
  color: #2eca8b !important;
}
.job-box.job-success .title:hover,
.job-box.job-success .readmore:hover {
  color: #2eca8b !important;
}
.job-box.job-success .icons {
  color: #2eca8b !important;
}
.job-box.job-success.candidate-list .name:hover, .job-box.job-success.company-list .name:hover {
  color: #2eca8b !important;
}
.job-box.job-success .bg {
  background-color: #2eca8b !important;
}
.job-box.job-success .bg-soft {
  background-color: rgba(46, 202, 139, 0.1) !important;
  border: 1px solid rgba(46, 202, 139, 0.1) !important;
  color: #2eca8b !important;
}
.job-box.job-success .btn-soft {
  background-color: rgba(46, 202, 139, 0.05) !important;
  border: 1px solid rgba(46, 202, 139, 0.05) !important;
  color: #2eca8b !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
          box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
}
.job-box.job-success .btn-soft:hover, .job-box.job-success .btn-soft:focus, .job-box.job-success .btn-soft:active, .job-box.job-success .btn-soft.active, .job-box.job-success .btn-soft.focus {
  background-color: #2eca8b !important;
  border-color: #2eca8b !important;
  color: var(--white) !important;
}

.job-box.job-info .position a:hover {
  color: #17a2b8 !important;
}
.job-box.job-info .company-name:hover {
  color: #17a2b8 !important;
}
.job-box.job-info .title:hover,
.job-box.job-info .readmore:hover {
  color: #17a2b8 !important;
}
.job-box.job-info .icons {
  color: #17a2b8 !important;
}
.job-box.job-info.candidate-list .name:hover, .job-box.job-info.company-list .name:hover {
  color: #17a2b8 !important;
}
.job-box.job-info .bg {
  background-color: #17a2b8 !important;
}
.job-box.job-info .bg-soft {
  background-color: rgba(23, 162, 184, 0.1) !important;
  border: 1px solid rgba(23, 162, 184, 0.1) !important;
  color: #17a2b8 !important;
}
.job-box.job-info .btn-soft {
  background-color: rgba(23, 162, 184, 0.05) !important;
  border: 1px solid rgba(23, 162, 184, 0.05) !important;
  color: #17a2b8 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
          box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
}
.job-box.job-info .btn-soft:hover, .job-box.job-info .btn-soft:focus, .job-box.job-info .btn-soft:active, .job-box.job-info .btn-soft.active, .job-box.job-info .btn-soft.focus {
  background-color: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: var(--white) !important;
}

.job-box.job-warning .position a:hover {
  color: #f17425 !important;
}
.job-box.job-warning .company-name:hover {
  color: #f17425 !important;
}
.job-box.job-warning .title:hover,
.job-box.job-warning .readmore:hover {
  color: #f17425 !important;
}
.job-box.job-warning .icons {
  color: #f17425 !important;
}
.job-box.job-warning.candidate-list .name:hover, .job-box.job-warning.company-list .name:hover {
  color: #f17425 !important;
}
.job-box.job-warning .bg {
  background-color: #f17425 !important;
}
.job-box.job-warning .bg-soft {
  background-color: rgba(241, 116, 37, 0.1) !important;
  border: 1px solid rgba(241, 116, 37, 0.1) !important;
  color: #f17425 !important;
}
.job-box.job-warning .btn-soft {
  background-color: rgba(241, 116, 37, 0.05) !important;
  border: 1px solid rgba(241, 116, 37, 0.05) !important;
  color: #f17425 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
          box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
}
.job-box.job-warning .btn-soft:hover, .job-box.job-warning .btn-soft:focus, .job-box.job-warning .btn-soft:active, .job-box.job-warning .btn-soft.active, .job-box.job-warning .btn-soft.focus {
  background-color: #f17425 !important;
  border-color: #f17425 !important;
  color: var(--white) !important;
}
.job-box.job-danger .position a:hover {
  color: #e43f52 !important;
}
.job-box.job-danger .company-name:hover {
  color: #e43f52 !important;
}
.job-box.job-danger .title:hover,
.job-box.job-danger .readmore:hover {
  color: #e43f52 !important;
}
.job-box.job-danger .icons {
  color: #e43f52 !important;
}
.job-box.job-danger.candidate-list .name:hover, .job-box.job-danger.company-list .name:hover {
  color: #e43f52 !important;
}
.job-box.job-danger .bg {
  background-color: #e43f52 !important;
}
.job-box.job-danger .bg-soft {
  background-color: rgba(228, 63, 82, 0.1) !important;
  border: 1px solid rgba(228, 63, 82, 0.1) !important;
  color: #e43f52 !important;
}
.job-box.job-danger .btn-soft {
  background-color: rgba(228, 63, 82, 0.05) !important;
  border: 1px solid rgba(228, 63, 82, 0.05) !important;
  color: #e43f52 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
          box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
}
.job-box.job-danger .btn-soft:hover, .job-box.job-danger .btn-soft:focus, .job-box.job-danger .btn-soft:active, .job-box.job-danger .btn-soft.active, .job-box.job-danger .btn-soft.focus {
  background-color: #e43f52 !important;
  border-color: #e43f52 !important;
  color: var(--white) !important;
}

.job-box.job-light .position a:hover {
  color: #f8f9fa !important;
}
.job-box.job-light .company-name:hover {
  color: #f8f9fa !important;
}
.job-box.job-light .title:hover,
.job-box.job-light .readmore:hover {
  color: #f8f9fa !important;
}
.job-box.job-light .icons {
  color: #f8f9fa !important;
}
.job-box.job-light.candidate-list .name:hover, .job-box.job-light.company-list .name:hover {
  color: #f8f9fa !important;
}
.job-box.job-light .bg {
  background-color: #f8f9fa !important;
}
.job-box.job-light .bg-soft {
  background-color: rgba(248, 249, 250, 0.1) !important;
  border: 1px solid rgba(248, 249, 250, 0.1) !important;
  color: #f8f9fa !important;
}
.job-box.job-light .btn-soft {
  background-color: rgba(248, 249, 250, 0.05) !important;
  border: 1px solid rgba(248, 249, 250, 0.05) !important;
  color: #f8f9fa !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
          box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
}
.job-box.job-light .btn-soft:hover, .job-box.job-light .btn-soft:focus, .job-box.job-light .btn-soft:active, .job-box.job-light .btn-soft.active, .job-box.job-light .btn-soft.focus {
  background-color: #f8f9fa !important;
  border-color: #f8f9fa !important;
  color: var(--white) !important;
}

.job-box.job-dark .position a:hover {
  color: var(--text-primary) !important;
}
.job-box.job-dark .company-name:hover {
  color: var(--text-primary) !important;
}
.job-box.job-dark .title:hover,
.job-box.job-dark .readmore:hover {
  color: var(--text-primary) !important;
}
.job-box.job-dark .icons {
  color: var(--text-primary) !important;
}
.job-box.job-dark.candidate-list .name:hover, .job-box.job-dark.company-list .name:hover {
  color: var(--text-primary) !important;
}
.job-box.job-dark .bg {
  background-color: #212529 !important;
}
.job-box.job-dark .bg-soft {
  background-color: rgba(33, 37, 41, 0.1) !important;
  border: 1px solid rgba(33, 37, 41, 0.1) !important;
  color: var(--text-primary) !important;
}
.job-box.job-dark .btn-soft {
  background-color: rgba(33, 37, 41, 0.05) !important;
  border: 1px solid rgba(33, 37, 41, 0.05) !important;
  color: var(--text-primary) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
          box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
}
.job-box.job-dark .btn-soft:hover, .job-box.job-dark .btn-soft:focus, .job-box.job-dark .btn-soft:active, .job-box.job-dark .btn-soft.active, .job-box.job-dark .btn-soft.focus {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: var(--white) !important;
}

.job-box.job-footer .position a:hover {
  color: #202942 !important;
}
.job-box.job-footer .company-name:hover {
  color: #202942 !important;
}
.job-box.job-footer .title:hover,
.job-box.job-footer .readmore:hover {
  color: #202942 !important;
}
.job-box.job-footer .icons {
  color: #202942 !important;
}
.job-box.job-footer.candidate-list .name:hover, .job-box.job-footer.company-list .name:hover {
  color: #202942 !important;
}
.job-box.job-footer .bg {
  background-color: #202942 !important;
}
.job-box.job-footer .bg-soft {
  background-color: rgba(32, 41, 66, 0.1) !important;
  border: 1px solid rgba(32, 41, 66, 0.1) !important;
  color: #202942 !important;
}
.job-box.job-footer .btn-soft {
  background-color: rgba(32, 41, 66, 0.05) !important;
  border: 1px solid rgba(32, 41, 66, 0.05) !important;
  color: #202942 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
          box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
}
.job-box.job-footer .btn-soft:hover, .job-box.job-footer .btn-soft:focus, .job-box.job-footer .btn-soft:active, .job-box.job-footer .btn-soft.active, .job-box.job-footer .btn-soft.focus {
  background-color: #202942 !important;
  border-color: #202942 !important;
  color: var(--white) !important;
}

.job-box.job-muted .position a:hover {
  color: #8492a6 !important;
}
.job-box.job-muted .company-name:hover {
  color: #8492a6 !important;
}
.job-box.job-muted .title:hover,
.job-box.job-muted .readmore:hover {
  color: #8492a6 !important;
}
.job-box.job-muted .icons {
  color: #8492a6 !important;
}
.job-box.job-muted.candidate-list .name:hover, .job-box.job-muted.company-list .name:hover {
  color: #8492a6 !important;
}
.job-box.job-muted .bg {
  background-color: #8492a6 !important;
}
.job-box.job-muted .bg-soft {
  background-color: rgba(132, 146, 166, 0.1) !important;
  border: 1px solid rgba(132, 146, 166, 0.1) !important;
  color: #8492a6 !important;
}
.job-box.job-muted .btn-soft {
  background-color: rgba(132, 146, 166, 0.05) !important;
  border: 1px solid rgba(132, 146, 166, 0.05) !important;
  color: #8492a6 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
          box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
}
.job-box.job-muted .btn-soft:hover, .job-box.job-muted .btn-soft:focus, .job-box.job-muted .btn-soft:active, .job-box.job-muted .btn-soft.active, .job-box.job-muted .btn-soft.focus {
  background-color: #8492a6 !important;
  border-color: #8492a6 !important;
  color: var(--white) !important;
}

.job-box {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.job-box .job-overlay {
  opacity: 0.6;
}
.job-box .head {
  position: absolute;
  top: 15px;
  right: 15px;
}
.job-box .position {
  position: absolute;
  top: 15px;
  left: 15px;
}
.job-box .position a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.job-box .firm-logo {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  width: 60px;
  line-height: 60px;
  margin: 0 auto;
  top: -30px;
}
.job-box .company-name {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.job-box.candidate-list .like {
  -webkit-text-stroke: 1px #8492a6;
  -webkit-text-fill-color: transparent;
}
.job-box.candidate-list .like:hover, .job-box.candidate-list .like:focus {
  -webkit-text-stroke: #e43f52;
  -webkit-text-fill-color: #e43f52;
}
.job-box.candidate-list, .job-box.company-list {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.job-box.candidate-list:hover, .job-box.company-list:hover {
  -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
          box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}
.job-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (min-width: 1024px) {
  .job-profile {
    top: -378px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .job-profile {
    top: -338px;
  }
}
@media (max-width: 767px) {
  .company-logo {
    float: none !important;
    text-align: left !important;
  }
}
.categories.category-primary .title:hover {
  color: var(--primary-blue) !important;
}
.categories.category-success .title:hover {
  color: #2eca8b !important;
}

.categories.category-info .title:hover {
  color: #17a2b8 !important;
}

.categories.category-warning .title:hover {
  color: #f17425 !important;
}

.categories.category-danger .title:hover {
  color: #e43f52 !important;
}

.categories.category-light .title:hover {
  color: #f8f9fa !important;
}
.categories.category-dark .title:hover {
  color: var(--text-primary) !important;
}
.categories.category-footer .title:hover {
  color: #202942 !important;
}

.categories.category-muted .title:hover {
  color: #8492a6 !important;
}
.categories {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.categories:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

/*********************************/
/*         Contact us            */
/*===============================*/
.form-icon .icons {
  position: absolute;
  top: 12px;
  left: 18px;
}

.map {
  line-height: 0;
}
.map iframe {
  width: 100%;
  height: 400px;
}

.error {
  margin: 8px 0px;
  display: none;
  color: #e43f52;
}
#ajaxsuccess {
  font-size: 16px;
  width: 100%;
  display: none;
  clear: both;
  margin: 8px 0px;
}

.error_message,
#success_page {
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 5px;
}
.error_message {
  background-color: rgba(240, 115, 90, 0.1) !important;
  border: 2px solid rgba(240, 115, 90, 0.1) !important;
  color: #f0735a !important;
  font-size: 14px;
}

.contact-loader {
  display: none;
}
#success_page {
  background-color: rgba(83, 199, 151, 0.1) !important;
  border: 2px solid rgba(83, 199, 151, 0.1) !important;
  color: #53c797 !important;
}
#success_page p {
  margin-bottom: 0 !important;
}

.qs-datepicker-container {
  background-color: var(--white);
  border-color: #e9ecef;
  color: #3c4858;
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
.qs-datepicker-container .qs-controls {
  background-color: #e9ecef;
  color: #3c4858;
}
.qs-datepicker-container .qs-controls .qs-month-year {
  font-weight: 600;
  font-size: 15px;
}
.qs-datepicker-container .qs-controls .qs-month-year:hover {
  border-bottom: 1px solid #e9ecef;
}
.qs-datepicker-container .qs-squares .qs-square {
  font-size: 15px;
  height: 34px;
  width: 34px;
}
.qs-datepicker-container .qs-squares .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover, .qs-datepicker-container .qs-squares .qs-square.qs-current {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
}
.qs-datepicker-container .qs-squares .qs-square.qs-day {
  font-weight: 500;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .map.map-height-two iframe {
    height: 551px;
  }
}
/*********************************/
/* Countdown(Comingsoon, Maintenance) */
/*===============================*/
.coming-soon, .maintenance, .error-page {
  font-size: 40px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .coming-soon, .maintenance, .error-page {
    font-size: 32px;
  }
}

#countdown .count-down, #eventdown .count-down, #token-sale .count-down {
  display: inline-block;
  margin: 30px 10px 10px;
  color: var(--white);
  text-align: center;
}
#countdown .count-down .count-number, #eventdown .count-down .count-number, #token-sale .count-down .count-number {
  font-size: 40px;
  line-height: 95px;
}
#countdown .count-down .count-head, #eventdown .count-down .count-head, #token-sale .count-down .count-head {
  display: block;
  position: relative;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

#countdown .count-down .count-number {
  font-size: 40px;
  line-height: 95px;
  border: 4px solid #ffffff;
  height: 130px;
  width: 130px;
  border-radius: 50%;
}

#token-sale .count-down {
  border: 0;
  color: var(--text-primary) !important;
}
#token-sale .count-down .count-number {
  line-height: 80px;
}
@media (max-width: 767px) {
  #token-sale .count-down .count-number {
    font-size: 30px;
  }
}
#token-sale .count-down .count-head {
  margin-bottom: 0 !important;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
@media (max-width: 767px) {
  #token-sale .count-down .count-head {
    font-size: 10px;
  }
}

#eventdown .count-down {
  margin: 10px !important;
  border: 0;
}
@media (max-width: 767px) {
  #eventdown .count-down {
    width: 60px;
  }
}
#eventdown .count-down .count-number {
  line-height: 80px;
}
@media (max-width: 767px) {
  #eventdown .count-down .count-number {
    font-size: 30px;
  }
}
#eventdown .count-down .count-head {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
@media (max-width: 767px) {
  #eventdown .count-down .count-head {
    font-size: 10px;
  }
}

#maintenance {
  color: var(--white);
  font-size: 56px;
  letter-spacing: 1px;
}
#maintenance .indicator {
  font-size: 18px;
}
/*********************************/
/*         CTA                   */
/*===============================*/
.bg-cta {
  padding: 150px 0;
}

.play-btn {
  height: 78px;
  width: 78px;
  font-size: 30px;
  line-height: 76px;
  border-radius: 50%;
  display: inline-block;
  color: var(--white);
  border: 1px solid #fff;
}

.play-icon {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: 0;
  left: 0;
  text-align: center;
}
.play-icon i {
  height: 75px;
  -webkit-text-stroke: 2px var(--primary-blue);
  -webkit-text-fill-color: transparent;
  width: 75px;
  font-size: 25px;
  line-height: 75px;
  display: inline-block;
  background-color: var(--white);
}
.play-icon i:hover {
  -webkit-text-stroke: 2px var(--primary-blue);
  -webkit-text-fill-color: var(--primary-blue);
}

@media (max-width: 767px) {
  iframe {
    width: auto !important;
  }
}
/*********************************/
/*     Features & Services       */
/*===============================*/
.features.feature-primary .icon {
  background: rgba(47, 85, 212, 0.1);
}
.features.feature-primary .image:before {
  background: linear-gradient(45deg, transparent, rgba(47, 85, 212, 0.1));
}
.features.feature-primary .read-more,
.features.feature-primary .color {
  color: var(--primary-blue) !important;
}
.features.feature-primary.feature-clean .icons {
  color: var(--primary-blue) !important;
}
.features.feature-primary.feature-clean .icons i {
  background-color: rgba(47, 85, 212, 0.1);
}
.features.feature-primary.feature-clean .title:hover {
  color: var(--primary-blue) !important;
}
.features.feature-primary.feature-full-bg .icon-color {
  color: var(--primary-blue) !important;
}
.features.feature-primary.feature-full-bg:hover {
  background-color: var(--primary-blue) !important;
}
.features.feature-primary.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(47, 85, 212, 0.15));
  color: var(--primary-blue);
}
.features.feature-primary.course-feature .full-img {
  color: var(--primary-blue) !important;
}
.features.feature-primary.explore-feature:hover .icons,
.features.feature-primary.explore-feature:hover .title {
  color: var(--primary-blue) !important;
}
.features.feature-primary .btn-soft {
  background-color: rgba(47, 85, 212, 0.05) !important;
  border: 1px solid rgba(47, 85, 212, 0.05) !important;
  color: var(--primary-blue) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
          box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
}
.features.feature-primary .btn-soft:hover, .features.feature-primary .btn-soft:focus, .features.feature-primary .btn-soft:active, .features.feature-primary .btn-soft.active, .features.feature-primary .btn-soft.focus {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--white) !important;
}
.features.feature-primary:hover .image:before {
  background: rgba(47, 85, 212, 0.1);
}

.features.feature-secondary .icon {
  background: rgba(108, 117, 125, 0.1);
}
.features.feature-secondary .image:before {
  background: linear-gradient(45deg, transparent, rgba(108, 117, 125, 0.1));
}
.features.feature-secondary .read-more,
.features.feature-secondary .color {
  color: var(--text-secondary) !important;
}
.features.feature-secondary.feature-clean .icons {
  color: var(--text-secondary) !important;
}
.features.feature-secondary.feature-clean .icons i {
  background-color: rgba(108, 117, 125, 0.1);
}
.features.feature-secondary.feature-clean .title:hover {
  color: var(--text-secondary) !important;
}
.features.feature-secondary.feature-full-bg .icon-color {
  color: var(--text-secondary) !important;
}
.features.feature-secondary.feature-full-bg:hover {
  background-color: #6c757d !important;
}
.features.feature-secondary.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(108, 117, 125, 0.15));
  color: #6c757d;
}
.features.feature-secondary.course-feature .full-img {
  color: var(--text-secondary) !important;
}
.features.feature-secondary.explore-feature:hover .icons,
.features.feature-secondary.explore-feature:hover .title {
  color: var(--text-secondary) !important;
}
.features.feature-secondary .btn-soft {
  background-color: rgba(108, 117, 125, 0.05) !important;
  border: 1px solid rgba(108, 117, 125, 0.05) !important;
  color: var(--text-secondary) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
          box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
}
.features.feature-secondary .btn-soft:hover, .features.feature-secondary .btn-soft:focus, .features.feature-secondary .btn-soft:active, .features.feature-secondary .btn-soft.active, .features.feature-secondary .btn-soft.focus {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: var(--white) !important;
}
.features.feature-secondary:hover .image:before {
  background: rgba(108, 117, 125, 0.1);
}
.features.feature-success .icon {
  background: rgba(46, 202, 139, 0.1);
}
.features.feature-success .image:before {
  background: linear-gradient(45deg, transparent, rgba(46, 202, 139, 0.1));
}
.features.feature-success .read-more,
.features.feature-success .color {
  color: #2eca8b !important;
}
.features.feature-success.feature-clean .icons {
  color: #2eca8b !important;
}
.features.feature-success.feature-clean .icons i {
  background-color: rgba(46, 202, 139, 0.1);
}
.features.feature-success.feature-clean .title:hover {
  color: #2eca8b !important;
}
.features.feature-success.feature-full-bg .icon-color {
  color: #2eca8b !important;
}
.features.feature-success.feature-full-bg:hover {
  background-color: #2eca8b !important;
}
.features.feature-success.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(46, 202, 139, 0.15));
  color: #2eca8b;
}
.features.feature-success.course-feature .full-img {
  color: #2eca8b !important;
}
.features.feature-success.explore-feature:hover .icons,
.features.feature-success.explore-feature:hover .title {
  color: #2eca8b !important;
}
.features.feature-success .btn-soft {
  background-color: rgba(46, 202, 139, 0.05) !important;
  border: 1px solid rgba(46, 202, 139, 0.05) !important;
  color: #2eca8b !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
          box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
}
.features.feature-success .btn-soft:hover, .features.feature-success .btn-soft:focus, .features.feature-success .btn-soft:active, .features.feature-success .btn-soft.active, .features.feature-success .btn-soft.focus {
  background-color: #2eca8b !important;
  border-color: #2eca8b !important;
  color: var(--white) !important;
}
.features.feature-success:hover .image:before {
  background: rgba(46, 202, 139, 0.1);
}

.features.feature-info .icon {
  background: rgba(23, 162, 184, 0.1);
}
.features.feature-info .image:before {
  background: linear-gradient(45deg, transparent, rgba(23, 162, 184, 0.1));
}
.features.feature-info .read-more,
.features.feature-info .color {
  color: #17a2b8 !important;
}
.features.feature-info.feature-clean .icons {
  color: #17a2b8 !important;
}
.features.feature-info.feature-clean .icons i {
  background-color: rgba(23, 162, 184, 0.1);
}
.features.feature-info.feature-clean .title:hover {
  color: #17a2b8 !important;
}
.features.feature-info.feature-full-bg .icon-color {
  color: #17a2b8 !important;
}
.features.feature-info.feature-full-bg:hover {
  background-color: #17a2b8 !important;
}
.features.feature-info.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(23, 162, 184, 0.15));
  color: #17a2b8;
}
.features.feature-info.course-feature .full-img {
  color: #17a2b8 !important;
}
.features.feature-info.explore-feature:hover .icons,
.features.feature-info.explore-feature:hover .title {
  color: #17a2b8 !important;
}
.features.feature-info .btn-soft {
  background-color: rgba(23, 162, 184, 0.05) !important;
  border: 1px solid rgba(23, 162, 184, 0.05) !important;
  color: #17a2b8 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
          box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
}
.features.feature-info .btn-soft:hover, .features.feature-info .btn-soft:focus, .features.feature-info .btn-soft:active, .features.feature-info .btn-soft.active, .features.feature-info .btn-soft.focus {
  background-color: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: var(--white) !important;
}
.features.feature-info:hover .image:before {
  background: rgba(23, 162, 184, 0.1);
}

.features.feature-warning .icon {
  background: rgba(241, 116, 37, 0.1);
}
.features.feature-warning .image:before {
  background: linear-gradient(45deg, transparent, rgba(241, 116, 37, 0.1));
}
.features.feature-warning .read-more,
.features.feature-warning .color {
  color: #f17425 !important;
}
.features.feature-warning.feature-clean .icons {
  color: #f17425 !important;
}
.features.feature-warning.feature-clean .icons i {
  background-color: rgba(241, 116, 37, 0.1);
}
.features.feature-warning.feature-clean .title:hover {
  color: #f17425 !important;
}
.features.feature-warning.feature-full-bg .icon-color {
  color: #f17425 !important;
}
.features.feature-warning.feature-full-bg:hover {
  background-color: #f17425 !important;
}
.features.feature-warning.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(241, 116, 37, 0.15));
  color: #f17425;
}
.features.feature-warning.course-feature .full-img {
  color: #f17425 !important;
}
.features.feature-warning.explore-feature:hover .icons,
.features.feature-warning.explore-feature:hover .title {
  color: #f17425 !important;
}
.features.feature-warning .btn-soft {
  background-color: rgba(241, 116, 37, 0.05) !important;
  border: 1px solid rgba(241, 116, 37, 0.05) !important;
  color: #f17425 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
          box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
}
.features.feature-warning .btn-soft:hover, .features.feature-warning .btn-soft:focus, .features.feature-warning .btn-soft:active, .features.feature-warning .btn-soft.active, .features.feature-warning .btn-soft.focus {
  background-color: #f17425 !important;
  border-color: #f17425 !important;
  color: var(--white) !important;
}
.features.feature-warning:hover .image:before {
  background: rgba(241, 116, 37, 0.1);
}

.features.feature-danger .icon {
  background: rgba(228, 63, 82, 0.1);
}
.features.feature-danger .image:before {
  background: linear-gradient(45deg, transparent, rgba(228, 63, 82, 0.1));
}
.features.feature-danger .read-more,
.features.feature-danger .color {
  color: #e43f52 !important;
}
.features.feature-danger.feature-clean .icons {
  color: #e43f52 !important;
}
.features.feature-danger.feature-clean .icons i {
  background-color: rgba(228, 63, 82, 0.1);
}
.features.feature-danger.feature-clean .title:hover {
  color: #e43f52 !important;
}
.features.feature-danger.feature-full-bg .icon-color {
  color: #e43f52 !important;
}
.features.feature-danger.feature-full-bg:hover {
  background-color: #e43f52 !important;
}
.features.feature-danger.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(228, 63, 82, 0.15));
  color: #e43f52;
}
.features.feature-danger.course-feature .full-img {
  color: #e43f52 !important;
}
.features.feature-danger.explore-feature:hover .icons,
.features.feature-danger.explore-feature:hover .title {
  color: #e43f52 !important;
}
.features.feature-danger .btn-soft {
  background-color: rgba(228, 63, 82, 0.05) !important;
  border: 1px solid rgba(228, 63, 82, 0.05) !important;
  color: #e43f52 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
          box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
}
.features.feature-danger .btn-soft:hover, .features.feature-danger .btn-soft:focus, .features.feature-danger .btn-soft:active, .features.feature-danger .btn-soft.active, .features.feature-danger .btn-soft.focus {
  background-color: #e43f52 !important;
  border-color: #e43f52 !important;
  color: var(--white) !important;
}
.features.feature-danger:hover .image:before {
  background: rgba(228, 63, 82, 0.1);
}
.features.feature-light .icon {
  background: rgba(248, 249, 250, 0.1);
}
.features.feature-light .image:before {
  background: linear-gradient(45deg, transparent, rgba(248, 249, 250, 0.1));
}
.features.feature-light .read-more,
.features.feature-light .color {
  color: #f8f9fa !important;
}
.features.feature-light.feature-clean .icons {
  color: #f8f9fa !important;
}
.features.feature-light.feature-clean .icons i {
  background-color: rgba(248, 249, 250, 0.1);
}
.features.feature-light.feature-clean .title:hover {
  color: #f8f9fa !important;
}
.features.feature-light.feature-full-bg .icon-color {
  color: #f8f9fa !important;
}
.features.feature-light.feature-full-bg:hover {
  background-color: #f8f9fa !important;
}
.features.feature-light.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(248, 249, 250, 0.15));
  color: var(--bg-secondary);
}
.features.feature-light.course-feature .full-img {
  color: #f8f9fa !important;
}
.features.feature-light.explore-feature:hover .icons,
.features.feature-light.explore-feature:hover .title {
  color: #f8f9fa !important;
}
.features.feature-light .btn-soft {
  background-color: rgba(248, 249, 250, 0.05) !important;
  border: 1px solid rgba(248, 249, 250, 0.05) !important;
  color: #f8f9fa !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
          box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
}
.features.feature-light .btn-soft:hover, .features.feature-light .btn-soft:focus, .features.feature-light .btn-soft:active, .features.feature-light .btn-soft.active, .features.feature-light .btn-soft.focus {
  background-color: #f8f9fa !important;
  border-color: #f8f9fa !important;
  color: var(--white) !important;
}
.features.feature-light:hover .image:before {
  background: rgba(248, 249, 250, 0.1);
}

.features.feature-dark .icon {
  background: rgba(33, 37, 41, 0.1);
}
.features.feature-dark .image:before {
  background: linear-gradient(45deg, transparent, rgba(33, 37, 41, 0.1));
}
.features.feature-dark .read-more,
.features.feature-dark .color {
  color: var(--text-primary) !important;
}
.features.feature-dark.feature-clean .icons {
  color: var(--text-primary) !important;
}
.features.feature-dark.feature-clean .icons i {
  background-color: rgba(33, 37, 41, 0.1);
}
.features.feature-dark.feature-clean .title:hover {
  color: var(--text-primary) !important;
}
.features.feature-dark.feature-full-bg .icon-color {
  color: var(--text-primary) !important;
}
.features.feature-dark.feature-full-bg:hover {
  background-color: #212529 !important;
}
.features.feature-dark.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(33, 37, 41, 0.15));
  color: var(--text-primary);
}
.features.feature-dark.course-feature .full-img {
  color: var(--text-primary) !important;
}
.features.feature-dark.explore-feature:hover .icons,
.features.feature-dark.explore-feature:hover .title {
  color: var(--text-primary) !important;
}
.features.feature-dark .btn-soft {
  background-color: rgba(33, 37, 41, 0.05) !important;
  border: 1px solid rgba(33, 37, 41, 0.05) !important;
  color: var(--text-primary) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
          box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
}
.features.feature-dark .btn-soft:hover, .features.feature-dark .btn-soft:focus, .features.feature-dark .btn-soft:active, .features.feature-dark .btn-soft.active, .features.feature-dark .btn-soft.focus {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: var(--white) !important;
}
.features.feature-dark:hover .image:before {
  background: rgba(33, 37, 41, 0.1);
}

.features.feature-footer .icon {
  background: rgba(32, 41, 66, 0.1);
}
.features.feature-footer .image:before {
  background: linear-gradient(45deg, transparent, rgba(32, 41, 66, 0.1));
}
.features.feature-footer .read-more,
.features.feature-footer .color {
  color: #202942 !important;
}
.features.feature-footer.feature-clean .icons {
  color: #202942 !important;
}
.features.feature-footer.feature-clean .icons i {
  background-color: rgba(32, 41, 66, 0.1);
}
.features.feature-footer.feature-clean .title:hover {
  color: #202942 !important;
}
.features.feature-footer.feature-full-bg .icon-color {
  color: #202942 !important;
}
.features.feature-footer.feature-full-bg:hover {
  background-color: #202942 !important;
}
.features.feature-footer.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(32, 41, 66, 0.15));
  color: #202942;
}
.features.feature-footer.course-feature .full-img {
  color: #202942 !important;
}
.features.feature-footer.explore-feature:hover .icons,
.features.feature-footer.explore-feature:hover .title {
  color: #202942 !important;
}
.features.feature-footer .btn-soft {
  background-color: rgba(32, 41, 66, 0.05) !important;
  border: 1px solid rgba(32, 41, 66, 0.05) !important;
  color: #202942 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
          box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
}
.features.feature-footer .btn-soft:hover, .features.feature-footer .btn-soft:focus, .features.feature-footer .btn-soft:active, .features.feature-footer .btn-soft.active, .features.feature-footer .btn-soft.focus {
  background-color: #202942 !important;
  border-color: #202942 !important;
  color: var(--white) !important;
}
.features.feature-footer:hover .image:before {
  background: rgba(32, 41, 66, 0.1);
}

.features.feature-muted .icon {
  background: rgba(132, 146, 166, 0.1);
}
.features.feature-muted .image:before {
  background: linear-gradient(45deg, transparent, rgba(132, 146, 166, 0.1));
}
.features.feature-muted .read-more,
.features.feature-muted .color {
  color: #8492a6 !important;
}
.features.feature-muted.feature-clean .icons {
  color: #8492a6 !important;
}
.features.feature-muted.feature-clean .icons i {
  background-color: rgba(132, 146, 166, 0.1);
}
.features.feature-muted.feature-clean .title:hover {
  color: #8492a6 !important;
}
.features.feature-muted.feature-full-bg .icon-color {
  color: #8492a6 !important;
}
.features.feature-muted.feature-full-bg:hover {
  background-color: #8492a6 !important;
}
.features.feature-muted.key-feature .icon {
  background: linear-gradient(45deg, transparent, rgba(132, 146, 166, 0.15));
  color: var(--text-light);
}
.features.feature-muted.course-feature .full-img {
  color: #8492a6 !important;
}
.features.feature-muted.explore-feature:hover .icons,
.features.feature-muted.explore-feature:hover .title {
  color: #8492a6 !important;
}
.features.feature-muted .btn-soft {
  background-color: rgba(132, 146, 166, 0.05) !important;
  border: 1px solid rgba(132, 146, 166, 0.05) !important;
  color: #8492a6 !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
          box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
}
.features.feature-muted .btn-soft:hover, .features.feature-muted .btn-soft:focus, .features.feature-muted .btn-soft:active, .features.feature-muted .btn-soft.active, .features.feature-muted .btn-soft.focus {
  background-color: #8492a6 !important;
  border-color: #8492a6 !important;
  color: var(--white) !important;
}
.features.feature-muted:hover .image:before {
  background: rgba(132, 146, 166, 0.1);
}
.features .image:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  -webkit-transform: rotate(33.75deg);
          transform: rotate(33.75deg);
}
.features.feature-clean {
  background-color: var(--white);
}
.features.feature-clean .icons i {
  height: 65px;
  width: 65px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.features .ride-image {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.features .ride-image img {
  border-radius: 100% 100% 100% 0;
}
.features.key-feature {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.features.key-feature:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
          box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}
.features:hover .image:before {
  -webkit-animation: spinner-border 5s linear infinite !important;
          animation: spinner-border 5s linear infinite !important;
}
.features.feature-full-bg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features.feature-full-bg .big-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  opacity: 0.015;
  font-size: 180px;
}
.features.feature-full-bg:hover {
  -webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
          box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
  color: var(--white) !important;
}
.features.feature-full-bg:hover .icon-color i,
.features.feature-full-bg:hover .para {
  color: rgba(255, 255, 255, 0.5) !important;
}
.features.feature-full-bg:hover .content,
.features.feature-full-bg:hover .icon-color {
  z-index: 2;
}
.features.feature-full-bg:hover .big-icon {
  opacity: 0.05;
}
.features.feature-full-bg:hover .readmore {
  color: var(--white) !important;
}
.features.course-feature .full-img {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  z-index: -2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 250px;
}
.features.course-feature:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.features.course-feature:hover .full-img {
  opacity: 0.05;
}
.features.explore-feature {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features.explore-feature .icons {
  height: 80px;
  width: 80px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features.explore-feature:hover {
  -webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
          box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
}

.features .title,
.key-feature .title {
  font-size: 18px !important;
}
.features .icon,
.key-feature .icon {
  height: 45px;
  width: 45px;
  min-width: 45px;
  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;
}

.work-process {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-process .step, .work-process .step-icon {
  opacity: 0.06;
}
.work-process a {
  font-size: 15px;
}
.work-process.process-arrow:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 40px;
  top: 30px;
  left: 80%;
  background: url("../images/process.png") center center no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .work-process.process-arrow:after {
    display: none;
  }
}
.work-process.process-arrow:hover {
  -webkit-transform: none !important;
          transform: none !important;
}
.work-process:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.work-process.d-none-arrow:hover {
  -webkit-transform: none !important;
          transform: none !important;
}
.features-absolute {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.features-absolute {
  margin: -200px 0 0px;
}
@media (max-width: 768px) {
  .features-absolute {
    margin: -140px 0 0;
  }
}
.features-absolute.blog-search {
  margin: -120px 0 0px;
}
@media (max-width: 768px) {
  .features-absolute.blog-search {
    margin: -90px 0 0px;
  }
}

.app-feature-shape-right:after,
.app-feature-shape-left:after {
  bottom: 0rem;
  width: 30rem;
  height: 40rem;
  border-radius: 10rem;
}

.app-feature-shape-right:after {
  left: 10rem;
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
@media (max-width: 768px) {
  .app-feature-shape-right:after {
    left: 0;
  }
}

.app-feature-shape-left:after {
  right: 10rem;
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
}
@media (max-width: 768px) {
  .app-feature-shape-left:after {
    right: 0;
  }
}

.app-subscribe {
  position: absolute;
  top: -200px;
}
@media (max-width: 767px) {
  .app-subscribe {
    position: relative;
    top: 0;
  }
}

.saas-feature-shape-left:after,
.saas-feature-shape-right:after {
  bottom: -3rem;
  width: 35rem;
  height: 35rem;
  border-radius: 15rem;
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
@media (max-width: 767px) {
  .saas-feature-shape-left:after,
  .saas-feature-shape-right:after {
    bottom: -1rem;
    width: 25rem;
    height: 25rem;
    border-radius: 10rem;
  }
}

.saas-feature-shape-left:after {
  left: -10rem;
}

.saas-feature-shape-right:after {
  right: -10rem;
}

.app-feature-shape-right:after,
.app-feature-shape-left:after,
.saas-feature-shape-left:after,
.saas-feature-shape-right:after,
.social-feature-left:after,
.social-feature-right:after {
  background: rgba(47, 85, 212, 0.1);
  -webkit-box-shadow: 0 0 40px rgba(47, 85, 212, 0.1);
          box-shadow: 0 0 40px rgba(47, 85, 212, 0.1);
}

.app-feature-shape-right:after,
.app-feature-shape-left:after,
.saas-feature-shape-left:after,
.saas-feature-shape-right:after,
.social-feature-left:after,
.social-feature-right:after {
  content: "";
  position: absolute;
  z-index: -1;
}

.modern-saas-absolute-left,
.modern-saas-absolute-right {
  position: absolute;
}

.modern-saas-absolute-left {
  top: 2%;
  left: -2%;
}
@media (min-width: 768px) {
  .modern-saas-absolute-left {
    top: 20%;
    left: -7%;
  }
}
@media (min-width: 1024px) {
  .modern-saas-absolute-left {
    left: -10%;
  }
}

.modern-saas-absolute-right {
  bottom: 2%;
  right: -2%;
}
@media (min-width: 768px) {
  .modern-saas-absolute-right {
    bottom: 20%;
    right: -7%;
  }
}
@media (min-width: 1024px) {
  .modern-saas-absolute-right {
    right: -10%;
  }
}

.modern-app-round {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  pointer-events: none;
  z-index: -2;
  background-color: rgba(47, 85, 212, 0.15);
}
.modern-app-round.primary-50 {
  background-color: rgba(47, 85, 212, 0.5) !important;
}

.modern-app-bg-shape:after {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(47, 85, 212, 0.3)), color-stop(35%, rgba(47, 85, 212, 0.5)), to(#2f55d4));
  background: linear-gradient(to right, rgba(47, 85, 212, 0.3) 0%, rgba(47, 85, 212, 0.5) 35%, #2f55d4 100%);
  -webkit-box-shadow: 0 0 40px rgba(47, 85, 212, 0.2);
          box-shadow: 0 0 40px rgba(47, 85, 212, 0.2);
  z-index: -1;
}
@media (max-width: 768px) {
  .modern-app-bg-shape:after {
    width: 400px;
    height: 400px;
  }
}

.modern-app-absolute-left,
.modern-app-absolute-right {
  position: absolute;
}
.modern-app-absolute-right {
  top: 7%;
  right: -2%;
}
@media (min-width: 768px) {
  .modern-app-absolute-right {
    top: 20%;
    right: -7%;
  }
}
@media (min-width: 1024px) {
  .modern-app-absolute-right {
    right: -10%;
  }
}

.modern-app-absolute-left {
  bottom: 7%;
  left: -2%;
}
@media (min-width: 768px) {
  .modern-app-absolute-left {
    bottom: 20%;
    left: -7%;
  }
}
@media (min-width: 1024px) {
  .modern-app-absolute-left {
    left: -10%;
  }
}

.social-feature-left:after,
.social-feature-right:after {
  width: 450px;
  height: 520px;
  border-radius: 30px;
  bottom: -75px;
}
@media (max-width: 768px) {
  .social-feature-left:after,
  .social-feature-right:after {
    width: 300px;
    height: 400px;
    bottom: -65px;
  }
}
@media (max-width: 575px) {
  .social-feature-left:after,
  .social-feature-right:after {
    bottom: -35px;
  }
}

.social-feature-left:after {
  right: -200px;
}
@media (max-width: 575px) {
  .social-feature-left:after {
    right: 60px;
  }
}

.social-feature-right:after {
  left: -200px;
}
@media (max-width: 575px) {
  .social-feature-right:after {
    left: 60px;
  }
}

.construction-img {
  position: absolute;
  bottom: 0;
  right: 20px;
}

/*********************************/
/*          NFT                  */
/*===============================*/
.nft.nft-primary .title:hover,
.nft.nft-primary .read-more:hover {
  color: var(--primary-blue) !important;
}
.nft.nft-primary .link {
  color: var(--primary-blue) !important;
}
.nft.nft-primary .author .name:hover {
  color: var(--primary-blue) !important;
}
.nft.nft-primary .bg-soft {
  background-color: rgba(47, 85, 212, 0.1) !important;
  border: 1px solid rgba(47, 85, 212, 0.1) !important;
  color: var(--primary-blue) !important;
}
.nft.nft-primary .btn {
  background-color: var(--primary-blue) !important;
  border: 1px solid #2f55d4 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
          box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
}
.nft.nft-primary .btn:hover, .nft.nft-primary .btn:focus, .nft.nft-primary .btn:active, .nft.nft-primary .btn.active, .nft.nft-primary .btn.focus {
  background-color: rgb(35.6334661355, 67.1235059761, 172.3665338645) !important;
  border-color: rgb(35.6334661355, 67.1235059761, 172.3665338645) !important;
  color: var(--white) !important;
}

.nft.nft-secondary .title:hover,
.nft.nft-secondary .read-more:hover {
  color: var(--text-secondary) !important;
}
.nft.nft-secondary .link {
  color: var(--text-secondary) !important;
}
.nft.nft-secondary .author .name:hover {
  color: var(--text-secondary) !important;
}
.nft.nft-secondary .bg-soft {
  background-color: rgba(108, 117, 125, 0.1) !important;
  border: 1px solid rgba(108, 117, 125, 0.1) !important;
  color: var(--text-secondary) !important;
}
.nft.nft-secondary .btn {
  background-color: #6c757d !important;
  border: 1px solid #6c757d !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
          box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
}
.nft.nft-secondary .btn:hover, .nft.nft-secondary .btn:focus, .nft.nft-secondary .btn:active, .nft.nft-secondary .btn.active, .nft.nft-secondary .btn.focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
  color: var(--white) !important;
}

.nft.nft-success .title:hover,
.nft.nft-success .read-more:hover {
  color: #2eca8b !important;
}
.nft.nft-success .link {
  color: #2eca8b !important;
}
.nft.nft-success .author .name:hover {
  color: #2eca8b !important;
}
.nft.nft-success .bg-soft {
  background-color: rgba(46, 202, 139, 0.1) !important;
  border: 1px solid rgba(46, 202, 139, 0.1) !important;
  color: #2eca8b !important;
}
.nft.nft-success .btn {
  background-color: #2eca8b !important;
  border: 1px solid #2eca8b !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
          box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
}
.nft.nft-success .btn:hover, .nft.nft-success .btn:focus, .nft.nft-success .btn:active, .nft.nft-success .btn.active, .nft.nft-success .btn.focus {
  background-color: rgb(36.5403225806, 160.4596774194, 110.4153225806) !important;
  border-color: rgb(36.5403225806, 160.4596774194, 110.4153225806) !important;
  color: var(--white) !important;
}

.nft.nft-info .title:hover,
.nft.nft-info .read-more:hover {
  color: #17a2b8 !important;
}
.nft.nft-info .link {
  color: #17a2b8 !important;
}
.nft.nft-info .author .name:hover {
  color: #17a2b8 !important;
}
.nft.nft-info .bg-soft {
  background-color: rgba(23, 162, 184, 0.1) !important;
  border: 1px solid rgba(23, 162, 184, 0.1) !important;
  color: #17a2b8 !important;
}
.nft.nft-info .btn {
  background-color: #17a2b8 !important;
  border: 1px solid #17a2b8 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
          box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
}
.nft.nft-info .btn:hover, .nft.nft-info .btn:focus, .nft.nft-info .btn:active, .nft.nft-info .btn.active, .nft.nft-info .btn.focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
  color: var(--white) !important;
}

.nft.nft-warning .title:hover,
.nft.nft-warning .read-more:hover {
  color: #f17425 !important;
}
.nft.nft-warning .link {
  color: #f17425 !important;
}
.nft.nft-warning .author .name:hover {
  color: #f17425 !important;
}
.nft.nft-warning .bg-soft {
  background-color: rgba(241, 116, 37, 0.1) !important;
  border: 1px solid rgba(241, 116, 37, 0.1) !important;
  color: #f17425 !important;
}
.nft.nft-warning .btn {
  background-color: #f17425 !important;
  border: 1px solid #f17425 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
          box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
}
.nft.nft-warning .btn:hover, .nft.nft-warning .btn:focus, .nft.nft-warning .btn:active, .nft.nft-warning .btn.active, .nft.nft-warning .btn.focus {
  background-color: rgb(213.3017241379, 90.9956896552, 13.6982758621) !important;
  border-color: rgb(213.3017241379, 90.9956896552, 13.6982758621) !important;
  color: var(--white) !important;
}

.nft.nft-danger .title:hover,
.nft.nft-danger .read-more:hover {
  color: #e43f52 !important;
}
.nft.nft-danger .link {
  color: #e43f52 !important;
}
.nft.nft-danger .author .name:hover {
  color: #e43f52 !important;
}
.nft.nft-danger .bg-soft {
  background-color: rgba(228, 63, 82, 0.1) !important;
  border: 1px solid rgba(228, 63, 82, 0.1) !important;
  color: #e43f52 !important;
}
.nft.nft-danger .btn {
  background-color: #e43f52 !important;
  border: 1px solid #e43f52 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
          box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
}
.nft.nft-danger .btn:hover, .nft.nft-danger .btn:focus, .nft.nft-danger .btn:active, .nft.nft-danger .btn.active, .nft.nft-danger .btn.focus {
  background-color: rgb(210.4109589041, 29.5890410959, 50.4109589041) !important;
  border-color: rgb(210.4109589041, 29.5890410959, 50.4109589041) !important;
  color: var(--white) !important;
}

.nft.nft-light .title:hover,
.nft.nft-light .read-more:hover {
  color: #f8f9fa !important;
}
.nft.nft-light .link {
  color: #f8f9fa !important;
}
.nft.nft-light .author .name:hover {
  color: #f8f9fa !important;
}
.nft.nft-light .bg-soft {
  background-color: rgba(248, 249, 250, 0.1) !important;
  border: 1px solid rgba(248, 249, 250, 0.1) !important;
  color: #f8f9fa !important;
}
.nft.nft-light .btn {
  background-color: #f8f9fa !important;
  border: 1px solid #f8f9fa !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
          box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
}
.nft.nft-light .btn:hover, .nft.nft-light .btn:focus, .nft.nft-light .btn:active, .nft.nft-light .btn.active, .nft.nft-light .btn.focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
  border-color: rgb(218.25, 223.5, 228.75) !important;
  color: var(--white) !important;
}

.nft.nft-dark .title:hover,
.nft.nft-dark .read-more:hover {
  color: var(--text-primary) !important;
}
.nft.nft-dark .link {
  color: var(--text-primary) !important;
}
.nft.nft-dark .author .name:hover {
  color: var(--text-primary) !important;
}
.nft.nft-dark .bg-soft {
  background-color: rgba(33, 37, 41, 0.1) !important;
  border: 1px solid rgba(33, 37, 41, 0.1) !important;
  color: var(--text-primary) !important;
}
.nft.nft-dark .btn {
  background-color: #212529 !important;
  border: 1px solid #212529 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
          box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
}
.nft.nft-footer .title:hover,
.nft.nft-footer .read-more:hover {
  color: #202942 !important;
}
.nft.nft-footer .link {
  color: #202942 !important;
}
.nft.nft-footer .author .name:hover {
  color: #202942 !important;
}
.nft.nft-footer .bg-soft {
  background-color: rgba(32, 41, 66, 0.1) !important;
  border: 1px solid rgba(32, 41, 66, 0.1) !important;
  color: #202942 !important;
}
.nft.nft-footer .btn {
  background-color: #202942 !important;
  border: 1px solid #202942 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
          box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
}
.nft.nft-footer .btn:hover, .nft.nft-footer .btn:focus, .nft.nft-footer .btn:active, .nft.nft-footer .btn.active, .nft.nft-footer .btn.focus {
  background-color: rgb(15.3469387755, 19.6632653061, 31.6530612245) !important;
  border-color: rgb(15.3469387755, 19.6632653061, 31.6530612245) !important;
  color: var(--white) !important;
}

.nft.nft-muted .title:hover,
.nft.nft-muted .read-more:hover {
  color: #8492a6 !important;
}
.nft.nft-muted .link {
  color: #8492a6 !important;
}
.nft.nft-muted .author .name:hover {
  color: #8492a6 !important;
}
.nft.nft-muted .bg-soft {
  background-color: rgba(132, 146, 166, 0.1) !important;
  border: 1px solid rgba(132, 146, 166, 0.1) !important;
  color: #8492a6 !important;
}
.nft.nft-muted .btn {
  background-color: #8492a6 !important;
  border: 1px solid #8492a6 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
          box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
}
.nft.nft-muted .btn:hover, .nft.nft-muted .btn:focus, .nft.nft-muted .btn:active, .nft.nft-muted .btn.active, .nft.nft-muted .btn.focus {
  background-color: rgb(103.6933962264, 120.0047169811, 143.3066037736) !important;
  border-color: rgb(103.6933962264, 120.0047169811, 143.3066037736) !important;
  color: var(--white) !important;
}

.nft.nft-item {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nft.nft-item .nft-image .item-img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nft.nft-item .nft-image .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #212529;
}
.nft.nft-item:hover {
  -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
          box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}
.nft .bid-btn {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: -100px;
  right: 0;
  left: 0;
}
.nft.nft-creator {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nft.nft-creator img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nft.nft-creator:hover img {
  height: 90px !important;
  width: 90px !important;
}
.nft:hover .nft-image .item-img {
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
}
.nft:hover .nft-image .overlay {
  opacity: 0.7;
}
.nft:hover .bid-btn {
  bottom: 0;
}

/*********************************/
/*         Home & Hero           */
/*===============================*/
.bg-home {
  height: 100vh;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
.bg-photography {
  height: 100vh;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
@media (max-width: 767px) {
  .bg-photography {
    padding: 300px 0;
    height: auto;
  }
}
.bg-video-studio {
  height: 100vh;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
.bg-home-75vh {
  height: 75vh !important;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
@media (max-width: 767px) {
  .bg-home-75vh {
    height: 80vh !important;
  }
}

.bg-half-260 {
  padding: 260px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.bg-half-170 {
  padding: 170px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.bg-half-100 {
  padding: 100px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.bg-half {
  padding: 200px 0 100px;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
@media (max-width: 768px) {
  .bg-half {
    padding: 160px 0 60px;
  }
}

.bg-auth-home {
  padding: 142px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.bg-consulting {
  height: 100vh;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

@media (max-width: 767px) {
  .bg-consulting {
    padding: 0 0 300px;
    height: auto;
  }
  .bg-consulting .background {
    padding: 120px 12px 50px;
    background: #ffffff;
  }
}
@media (min-width: 768px) {
  .bg-consulting:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #ffffff;
  }
}
.bg-circle-gradiant {
  background: radial-gradient(circle at 50% 50%, rgba(47, 85, 212, 0.1) 0%, rgba(47, 85, 212, 0.1) 33.333%, rgba(47, 85, 212, 0.2) 33.333%, rgba(47, 85, 212, 0.2) 66.666%, rgba(47, 85, 212, 0.3) 66.666%, rgba(47, 85, 212, 0.3) 99.999%);
}

.lawyer-wrapper {
  overflow: hidden;
}
.lawyer-wrapper:before {
  content: "";
  position: absolute;
  bottom: 25rem;
  right: 13rem;
  width: 50rem;
  height: 25rem;
  -webkit-transform: rotate(100deg);
          transform: rotate(100deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(47, 85, 212, 0.3)), to(transparent));
  background: linear-gradient(90deg, rgba(47, 85, 212, 0.3), transparent);
  z-index: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .lawyer-wrapper:before {
    right: -10rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .lawyer-wrapper:before {
    right: -15rem;
    height: 20rem;
    bottom: 25rem;
  }
}
@media (max-width: 575px) {
  .lawyer-wrapper:before {
    right: -15rem;
    height: 20rem;
    bottom: 35rem;
  }
}

.it-home {
  -webkit-animation: slideleft 30000s infinite linear;
          animation: slideleft 30000s infinite linear;
}
@-webkit-keyframes slideleft {
  from {
    background-position: 0%;
  }
  to {
    background-position: 90000%;
  }
}
@keyframes slideleft {
  from {
    background-position: 0%;
  }
  to {
    background-position: 90000%;
  }
}
.home-dashboard img {
  position: relative;
  top: 60px;
  z-index: 1;
}
@media (min-width: 768px) {
  .home-dashboard.onepage-hero {
    overflow: hidden;
  }
}

.classic-saas-image .bg-saas-shape:after {
  bottom: 3rem;
  left: 0;
  width: 75rem;
  height: 55rem;
  border-radius: 20rem;
}
@media (max-width: 767px) {
  .classic-saas-image .bg-saas-shape:after {
    left: 10rem;
    width: 30rem;
    height: 30rem;
    border-radius: 10rem;
  }
}

@media (max-width: 768px) {
  .classic-saas-image .bg-saas-shape img,
  .freelance-hero .bg-shape img,
  .ai-hero .image img {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .classic-saas-image .bg-saas-shape img,
  .freelance-hero .bg-shape img,
  .ai-hero .image img {
    max-width: 100%;
    height: auto;
  }
}

.classic-saas-image .bg-saas-shape:after,
.freelance-hero .bg-shape:after {
  opacity: 0.9;
  -webkit-transform: rotate(130deg);
          transform: rotate(130deg);
}
@media (max-width: 767px) {
  .classic-saas-image .bg-saas-shape:after,
  .freelance-hero .bg-shape:after {
    bottom: -5rem !important;
    height: 30rem;
  }
}

.ai-hero:after, .ai-hero:before {
  content: "";
  position: absolute;
  border: 2px dashed rgba(206, 212, 218, 0.5);
  border-radius: 50%;
  -webkit-animation: spinner-animation 72s linear infinite;
          animation: spinner-animation 72s linear infinite;
  z-index: -1;
}
.ai-hero:after {
  top: -40px;
  right: -128px;
  height: 576px;
  width: 576px;
}
@media (min-width: 1024px) {
  .ai-hero:after {
    top: 0;
  }
}
.ai-hero:before {
  top: -144px;
  right: -224px;
  height: 768px;
  width: 768px;
}
@media (min-width: 1024px) {
  .ai-hero:before {
    top: -96px;
  }
}
.ai-hero .image:after {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 672px;
  height: 672px;
  background-color: rgba(47, 85, 212, 0.4);
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .ai-hero .image:after {
    top: -96px;
  }
}
.freelance-hero .bg-shape:after {
  bottom: 0rem;
  left: 7rem;
  width: 100rem;
  height: 70rem;
  border-radius: 6rem;
}
@media (max-width: 768px) {
  .freelance-hero .bg-shape:after {
    bottom: -10rem;
  }
}
@media (max-width: 767px) {
  .freelance-hero .bg-shape:after {
    left: 15rem;
    width: 40rem;
    height: 30rem;
  }
}

.freelance-hero .bg-shape:after {
  -webkit-box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
          box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
  background-color: rgb(152.6573705179, 171.3545816733, 233.8426294821);
}

.studio-home {
  padding: 7%;
}

.agency-wrapper:before {
  content: "";
  position: absolute;
  bottom: 22rem;
  right: 54rem;
  width: 90rem;
  height: 35rem;
  border-radius: 17rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: var(--bg-secondary);
  z-index: -1;
}
@media (max-width: 768px) {
  .agency-wrapper:before {
    right: 12rem;
  }
}
@media (max-width: 767px) {
  .agency-wrapper:before {
    right: 0;
  }
}

.bg-marketing {
  padding: 76px 0 120px;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.bg-top-74 {
  padding: 74px 0 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.home-slider .carousel-control-next,
.home-slider .carousel-control-prev {
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 30px;
  border: 1px solid var(--border-light);
}
.home-slider .carousel-control-next {
  right: 8px;
}
.home-slider .carousel-control-prev {
  left: 8px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 0;
  background: var(--primary-blue) !important;
  margin: auto 4px;
}
.carousel-indicators .active {
  background-color: var(--primary-blue) !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bg-animation-left:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .bg-animation-left:after {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.bg-animation-left.dark-left:after {
  background: rgba(0, 0, 0, 0.6);
}
.bg-animation-left.crypto-home:after {
  background: var(--primary-blue);
  width: 80%;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
}
.bg-animation-left.task-management-home:after {
  background: url("../images/task/bg.png") #2f55d4;
  width: 100%;
  clip-path: circle(65% at 40% 25%);
}

.bg-invoice {
  padding: 100px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}

.classic-app-image .bg-app-shape:after {
  bottom: 3rem;
  left: -8rem;
  width: 55rem;
  height: 35rem;
  border-radius: 20rem;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  opacity: 0.9;
}
.classic-app-image .app-images {
  position: absolute;
  bottom: 60px;
  right: -20px;
}
.classic-app-image .app-images-bottom {
  position: absolute;
  bottom: 10px;
  right: 0px;
}
.classic-app-image .app-images-up {
  position: absolute;
  top: 10px;
  left: 0px;
}

.classic-app-image .bg-app-shape:after,
.classic-saas-image .bg-saas-shape:after,
.freelance-hero .bg-shape:after {
  content: " ";
  position: absolute;
  z-index: -1;
}

.classic-app-image .bg-app-shape:after,
.classic-saas-image .bg-saas-shape:after {
  -webkit-box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
          box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
  background-color: var(--primary-blue);
}

.shape-before .shape-img {
  position: absolute;
  top: -50px;
  left: -35px;
  z-index: -1;
  height: auto;
  overflow: hidden;
}

.swiper-slider-hero .swiper-container,
.swiper-slider-hero .swiper-slide .slide-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.swiper-slider-hero .swiper-container .swiper-button-prev,
.swiper-slider-hero .swiper-container .swiper-button-next {
  background: transparent;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-top: -30px;
}
.swiper-slider-hero .swiper-container .swiper-button-prev:before,
.swiper-slider-hero .swiper-container .swiper-button-next:before {
  font-family: "Material Design Icons";
  font-weight: 900;
  color: var(--white);
}
.swiper-slider-hero .swiper-container .swiper-button-prev:hover,
.swiper-slider-hero .swiper-container .swiper-button-next:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue) !important;
}
.swiper-slider-hero .swiper-container .swiper-button-prev {
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.swiper-slider-hero .swiper-container .swiper-button-prev:before {
  content: "\f0141";
}
.swiper-slider-hero .swiper-container .swiper-button-next {
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.swiper-slider-hero .swiper-container .swiper-button-next:before {
  content: "\f0142";
}
.swiper-slider-hero .swiper-pagination-bullet {
  color: var(--bg-secondary);
  background: transparent;
}
.swiper-slider-hero .swiper-pagination-bullet-active {
  color: var(--white);
}
.swiper-slider-hero .swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-slider-hero .swiper-pagination-custom,
.swiper-slider-hero .swiper-pagination-fraction {
  bottom: 45px;
}
.swiper-slider-hero .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 13px;
}

@media (min-width: 769px) {
  .bg-studio:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background: #ffffff none repeat scroll 0 0;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .bg-home, .bg-half-170, .bg-half-260, .bg-marketing, .swiper-slider-hero .swiper-container .swiper-slide {
    padding: 150px 0;
    height: auto;
  }
}
.personal-hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -20rem;
  width: 50rem;
  height: 50rem;
  right: 150px;
  left: 0;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary-blue);
}
@media (max-width: 576px) {
  .personal-hero:before {
    width: 30rem;
    height: 30rem;
    bottom: -10rem;
  }
}
.personal-hero .personal-overlay {
  visibility: hidden !important;
}
@media (max-width: 768px) {
  .personal-hero .personal-overlay {
    visibility: visible !important;
  }
  .personal-hero .title,
  .personal-hero .sub-title {
    color: var(--white);
  }
  .personal-hero .para {
    color: rgba(255, 255, 255, 0.5);
  }
}

@media (min-width: 769px) {
  .personal-hero .personal-hero-para {
    position: absolute;
    top: 50%;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    background-color: rgba(248, 249, 250, 0.5);
    z-index: 1;
    padding: 24px;
  }
}
.bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-video-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.shape {
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: -2px;
  left: 0;
}
.shape > svg {
  -webkit-transform: scale(2);
          transform: scale(2);
  width: 100%;
  height: auto;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.shape.integration-hero {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  height: 250px;
  background: var(--white);
}
@media (max-width: 768px) {
  .shape.integration-hero {
    height: 140px;
  }
}
@media (max-width: 425px) {
  .shape.integration-hero {
    height: 60px;
  }
}
@media (max-width: 425px) {
  .shape {
    bottom: -4px;
  }
}
/* Kenburn Effect */
.zoom-image {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-wrap {
  position: absolute;
  top: -350px;
  right: -100px;
  bottom: -350px;
  left: -100px;
  margin: auto;
  height: auto;
  min-height: 100%;
  width: auto;
  min-width: 100%;
  overflow: hidden;
  -webkit-animation: 100s ppb_kenburns linear infinite alternate;
          animation: 100s ppb_kenburns linear infinite alternate;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@keyframes move {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@-webkit-keyframes ppb_kenburns {
  0% {
    -webkit-transform: scale(1.3) translate(-10%, 10%);
            transform: scale(1.3) translate(-10%, 10%);
  }
  25% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  50% {
    -webkit-transform: scale(1.3) translate(10%, 10%);
            transform: scale(1.3) translate(10%, 10%);
  }
  75% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.3) translate(-10%, 10%);
            transform: scale(1.3) translate(-10%, 10%);
  }
}
@keyframes ppb_kenburns {
  0% {
    -webkit-transform: scale(1.3) translate(-10%, 10%);
            transform: scale(1.3) translate(-10%, 10%);
  }
  25% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  50% {
    -webkit-transform: scale(1.3) translate(10%, 10%);
            transform: scale(1.3) translate(10%, 10%);
  }
  75% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.3) translate(-10%, 10%);
            transform: scale(1.3) translate(-10%, 10%);
  }
}
/*********************************/
/*         Pricing & Plans       */
/*===============================*/
.pricing.pricing-primary.business-rate:hover {
  border-color: var(--primary-blue) !important;
}
.pricing.pricing-primary.business-rate:hover .title {
  color: var(--primary-blue);
}
.pricing.pricing-primary.starter-plan {
  border-color: var(--primary-blue) !important;
}
.pricing.pricing-primary .name,
.pricing.pricing-primary .icon {
  color: var(--primary-blue);
}
.pricing.pricing-secondary.business-rate:hover {
  border-color: #6c757d !important;
}
.pricing.pricing-secondary.business-rate:hover .title {
  color: #6c757d;
}
.pricing.pricing-secondary.starter-plan {
  border-color: #6c757d !important;
}
.pricing.pricing-secondary .name,
.pricing.pricing-secondary .icon {
  color: #6c757d;
}
.pricing.pricing-success.business-rate:hover {
  border-color: #2eca8b !important;
}
.pricing.pricing-success.business-rate:hover .title {
  color: #2eca8b;
}
.pricing.pricing-success.starter-plan {
  border-color: #2eca8b !important;
}
.pricing.pricing-success .name,
.pricing.pricing-success .icon {
  color: #2eca8b;
}
.pricing.pricing-info.business-rate:hover {
  border-color: #17a2b8 !important;
}
.pricing.pricing-info.business-rate:hover .title {
  color: #17a2b8;
}
.pricing.pricing-info.starter-plan {
  border-color: #17a2b8 !important;
}
.pricing.pricing-info .name,
.pricing.pricing-info .icon {
  color: #17a2b8;
}
.pricing.pricing-warning.business-rate:hover {
  border-color: #f17425 !important;
}
.pricing.pricing-warning.business-rate:hover .title {
  color: #f17425;
}
.pricing.pricing-warning.starter-plan {
  border-color: #f17425 !important;
}
.pricing.pricing-warning .name,
.pricing.pricing-warning .icon {
  color: #f17425;
}
.pricing.pricing-danger.business-rate:hover {
  border-color: #e43f52 !important;
}
.pricing.pricing-danger.business-rate:hover .title {
  color: #e43f52;
}
.pricing.pricing-danger.starter-plan {
  border-color: #e43f52 !important;
}
.pricing.pricing-danger .name,
.pricing.pricing-danger .icon {
  color: #e43f52;
}
.pricing.pricing-light.business-rate:hover {
  border-color: #f8f9fa !important;
}
.pricing.pricing-light.business-rate:hover .title {
  color: var(--bg-secondary);
}
.pricing.pricing-light.starter-plan {
  border-color: #f8f9fa !important;
}
.pricing.pricing-light .name,
.pricing.pricing-light .icon {
  color: var(--bg-secondary);
}
.pricing.pricing-dark.business-rate:hover {
  border-color: #212529 !important;
}
.pricing.pricing-dark.business-rate:hover .title {
  color: var(--text-primary);
}
.pricing.pricing-dark.starter-plan {
  border-color: #212529 !important;
}
.pricing.pricing-dark .name,
.pricing.pricing-dark .icon {
  color: var(--text-primary);
}
.pricing.pricing-footer.business-rate:hover {
  border-color: #202942 !important;
}
.pricing.pricing-footer.business-rate:hover .title {
  color: #202942;
}
.pricing.pricing-footer.starter-plan {
  border-color: #202942 !important;
}
.pricing.pricing-footer .name,
.pricing.pricing-footer .icon {
  color: #202942;
}
.pricing.pricing-muted.business-rate:hover {
  border-color: #8492a6 !important;
}
.pricing.pricing-muted.business-rate:hover .title {
  color: var(--text-light);
}
.pricing.pricing-muted.starter-plan {
  border-color: #8492a6 !important;
}
.pricing.pricing-muted .name,
.pricing.pricing-muted .icon {
  color: var(--text-light);
}

.pricing {
  position: relative;
  z-index: 1;
  border-bottom: 3px solid #e9ecef !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pricing .price {
  font-weight: 400;
}
.pricing.business-rate:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  z-index: 2;
  -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
          box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
  background-color: var(--white) !important;
}
.pricing.starter-plan {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 2;
}
@media (max-width: 767px) {
  .pricing.starter-plan {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pricing.best-plan:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.ribbon.ribbon-primary span {
  background-color: var(--primary-blue) !important;
}
.ribbon.ribbon-primary span:before {
  border-left-color: rgb(35.6334661355, 67.1235059761, 172.3665338645);
  border-top-color: rgb(35.6334661355, 67.1235059761, 172.3665338645);
}
.ribbon.ribbon-primary span:after {
  border-right-color: rgb(35.6334661355, 67.1235059761, 172.3665338645);
  border-top-color: rgb(35.6334661355, 67.1235059761, 172.3665338645);
}
.ribbon.ribbon-secondary span {
  background-color: #6c757d !important;
}
.ribbon.ribbon-secondary span:before {
  border-left-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-top-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.ribbon.ribbon-secondary span:after {
  border-right-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-top-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.ribbon.ribbon-success span {
  background-color: #2eca8b !important;
}
.ribbon.ribbon-success span:before {
  border-left-color: rgb(36.5403225806, 160.4596774194, 110.4153225806);
  border-top-color: rgb(36.5403225806, 160.4596774194, 110.4153225806);
}
.ribbon.ribbon-success span:after {
  border-right-color: rgb(36.5403225806, 160.4596774194, 110.4153225806);
  border-top-color: rgb(36.5403225806, 160.4596774194, 110.4153225806);
}
.ribbon.ribbon-info span {
  background-color: #17a2b8 !important;
}
.ribbon.ribbon-info span:before {
  border-left-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-top-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.ribbon.ribbon-info span:after {
  border-right-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-top-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.ribbon.ribbon-warning span {
  background-color: #f17425 !important;
}
.ribbon.ribbon-warning span:before {
  border-left-color: rgb(213.3017241379, 90.9956896552, 13.6982758621);
  border-top-color: rgb(213.3017241379, 90.9956896552, 13.6982758621);
}
.ribbon.ribbon-warning span:after {
  border-right-color: rgb(213.3017241379, 90.9956896552, 13.6982758621);
  border-top-color: rgb(213.3017241379, 90.9956896552, 13.6982758621);
}
.ribbon.ribbon-danger span {
  background-color: #e43f52 !important;
}
.ribbon.ribbon-danger span:before {
  border-left-color: rgb(210.4109589041, 29.5890410959, 50.4109589041);
  border-top-color: rgb(210.4109589041, 29.5890410959, 50.4109589041);
}
.ribbon.ribbon-danger span:after {
  border-right-color: rgb(210.4109589041, 29.5890410959, 50.4109589041);
  border-top-color: rgb(210.4109589041, 29.5890410959, 50.4109589041);
}
.ribbon.ribbon-light span {
  background-color: #f8f9fa !important;
}
.ribbon.ribbon-light span:before {
  border-left-color: rgb(218.25, 223.5, 228.75);
  border-top-color: rgb(218.25, 223.5, 228.75);
}
.ribbon.ribbon-light span:after {
  border-right-color: rgb(218.25, 223.5, 228.75);
  border-top-color: rgb(218.25, 223.5, 228.75);
}
.ribbon.ribbon-dark span {
  background-color: #212529 !important;
}
.ribbon.ribbon-dark span:before {
  border-left-color: rgb(10.2567567568, 11.5, 12.7432432432);
  border-top-color: rgb(10.2567567568, 11.5, 12.7432432432);
}
.ribbon.ribbon-dark span:after {
  border-right-color: rgb(10.2567567568, 11.5, 12.7432432432);
  border-top-color: rgb(10.2567567568, 11.5, 12.7432432432);
}
.ribbon.ribbon-footer span {
  background-color: #202942 !important;
}
.ribbon.ribbon-footer span:before {
  border-left-color: rgb(15.3469387755, 19.6632653061, 31.6530612245);
  border-top-color: rgb(15.3469387755, 19.6632653061, 31.6530612245);
}
.ribbon.ribbon-footer span:after {
  border-right-color: rgb(15.3469387755, 19.6632653061, 31.6530612245);
  border-top-color: rgb(15.3469387755, 19.6632653061, 31.6530612245);
}
.ribbon.ribbon-muted span {
  background-color: #8492a6 !important;
}
.ribbon.ribbon-muted span:before {
  border-left-color: rgb(103.6933962264, 120.0047169811, 143.3066037736);
  border-top-color: rgb(103.6933962264, 120.0047169811, 143.3066037736);
}
.ribbon {
  position: absolute;
  top: -5px;
  width: 75px;
  height: 75px;
  z-index: 2;
}
.ribbon.ribbon-right {
  right: -5px;
}
.ribbon.ribbon-right span {
  right: -23px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ribbon.ribbon-left {
  left: -5px;
}
.ribbon.ribbon-left span {
  left: -21px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.ribbon span {
  position: absolute;
  top: 18px;
  width: 100px;
  color: var(--white);
}
.ribbon span:before, .ribbon span:after {
  content: "";
  position: absolute;
  top: 100%;
  z-index: -1;
  border: 3px solid transparent;
}
.ribbon span:before {
  left: 0;
}
.ribbon span:after {
  right: 0;
}

.invoice-top .logo-invoice {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 1px;
}

.crypto-chart {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  opacity: 0.1;
  z-index: 0;
}

.apexcharts-tooltip {
  background: #161c2d !important;
  color: var(--white);
}

.switcher-pricing .toggle, .switcher-pricing .toggler {
  display: inline-block;
  vertical-align: middle;
}
.switcher-pricing .toggler {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: bold;
}
.switcher-pricing .toggler--is-active {
  color: var(--primary-blue) !important;
}
.switcher-pricing .form-switch .form-check-input {
  width: 48px;
  height: 24px;
  margin-top: 0;
}

.hide {
  display: none;
}

/*********************************/
/*         Team members          */
/*===============================*/
.team.team-primary .name:hover {
  color: var(--primary-blue) !important;
}

.team.team-secondary .name:hover {
  color: var(--text-secondary) !important;
}

.team.team-success .name:hover {
  color: #2eca8b !important;
}

.team.team-info .name:hover {
  color: #17a2b8 !important;
}

.team.team-warning .name:hover {
  color: #f17425 !important;
}

.team.team-danger .name:hover {
  color: #e43f52 !important;
}

.team.team-light .name:hover {
  color: #f8f9fa !important;
}

.team.team-dark .name:hover {
  color: var(--text-primary) !important;
}

.team.team-footer .name:hover {
  color: #202942 !important;
}
.team.team-muted .name:hover {
  color: #8492a6 !important;
}

.team img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team .team-icon {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: 0;
  opacity: 0;
  left: 0;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team:hover img {
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  opacity: 0.2;
}
.team:hover .overlay-team {
  opacity: 0.6;
}
.team:hover .team-icon {
  opacity: 1;
}

/*********************************/
/*         Testimonial           */
/*===============================*/
.client-testi {
  cursor: e-resize;
}
.client-testi .client-image {
  margin-right: 16px;
}
.client-testi .content:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  margin-left: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 8px solid #212529;
  border-color: transparent #fff #fff transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-box-shadow: 2px 2px 2px -1px rgba(33, 37, 41, 0.15);
          box-shadow: 2px 2px 2px -1px rgba(33, 37, 41, 0.15);
}
.tns-nav {
  text-align: center;
  margin-top: 10px;
}
.tns-nav button {
  border-radius: 3px;
  background: rgba(47, 85, 212, 0.5) !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: none;
  margin: 0 5px;
  padding: 5px;
}
.tns-nav button.tns-nav-active {
  background: var(--primary-blue) !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tns-controls button[data-controls=prev],
.tns-controls button[data-controls=next] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-primary);
  border: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
  -webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
          box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
}
.tns-controls button[data-controls=prev]:hover,
.tns-controls button[data-controls=next]:hover {
  background: var(--primary-blue);
  color: var(--white);
}
.tns-controls button[data-controls=prev] {
  left: 0;
}
.tns-controls button[data-controls=next] {
  right: 0;
}

.slick-slider {
  overflow-x: hidden !important;
  cursor: pointer;
}

.tiny-timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.tiny-timeline:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 17px;
  left: 0;
  height: 2px;
  background: var(--primary-blue);
}
.tiny-timeline .item-box {
  margin: 70px 15px 20px;
}
.tiny-timeline .item-box:before, .tiny-timeline .item-box:after {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--primary-blue);
}
.tiny-timeline .item-box:before {
  width: 2px;
  height: 46px;
  top: -46px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tiny-timeline .item-box:after {
  width: 13px;
  height: 13px;
  top: -59px;
  border-radius: 3px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

/* RTL */
/*rtl:begin:ignore*/
html[dir=rtl] .swiper-slider-hero, html[dir=rtl] .tns-inner, html[dir=rtl] .tns-nav {
  direction: ltr !important;
}
html[dir=rtl] .tns-visually-hidden {
  left: 0 !important;
  visibility: hidden;
}

/*rtl:end:ignore*/
/*********************************/
/*         Authentications       */
/*===============================*/
.login-page {
  font-size: 15px;
}
.login-page .forgot-pass {
  z-index: 99;
  position: relative;
  font-size: 13px;
}

.cover-user .container-fluid {
  max-width: 100%;
}
@media (max-width: 768px) {
  .cover-user .container-fluid .padding-less {
    position: relative !important;
    height: 400px !important;
  }
}
.cover-user .container-fluid .padding-less.img {
  background: scroll center no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
}
.cover-user .cover-user-img {
  height: 100vh;
}
@media (min-width: 1025px) {
  .cover-user .cover-user-img {
    padding: 0px 20%;
  }
}
@media (max-width: 768px) {
  .cover-user .cover-user-img {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
    height: auto !important;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .cover-user .cover-user-content {
    text-align: left !important;
  }
  .cover-user .cover-my-30 {
    margin: 30px 0;
  }
}
.form-signin {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.bg-profile {
  padding: 100px 0;
  background-size: cover !important;
  -ms-flex-item-align: center;
      align-self: center;
  position: relative !important;
  background-position: center center;
}
.bg-profile .public-profile {
  top: 175px;
}

.chat .chat-list:hover, .chat .chat-list.active, .chat .chat-list:focus {
  background: #f8f9fa !important;
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
.chat .chat-list .on-off,
.chat .chat-type .on-off {
  position: absolute;
  left: -1px;
  top: -1px;
  font-size: 12px !important;
}
.chat.chat-person .on-off {
  font-size: 10px;
}
.chat.chat-person .chat-msg {
  margin-left: 8px;
}
.chat.chat-person .chat-msg .msg {
  border: 1px solid var(--border-light);
}
.chat.chat-person .chat-msg .msg-time {
  font-size: 12px !important;
}
.chat.chat-person .chat-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.chat.chat-person .chat-right .chat-user-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.chat.chat-person .chat-right .chat-user-image .on-off {
  right: -1px;
}
.chat.chat-person .chat-right .chat-msg {
  margin-right: 8px;
  margin-left: 0;
}
.chat.chat-person .chat-right .chat-msg .msg {
  display: inline-block;
}
.chat.chat-person .chat-right .chat-msg .msg-time {
  display: block;
}

.simplebar-track.simplebar-vertical {
  width: 8px !important;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  width: 4px !important;
  background: #adb5bd !important;
}

.ck.ck-toolbar,
.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  background: #ffffff !important;
  border: 1px solid #e9ecef !important;
}

.ck.ck-toolbar > .ck-toolbar__items > :not(.ck-toolbar__line-break), .ck.ck-toolbar > .ck.ck-toolbar__grouped-dropdown {
  color: var(--text-primary);
}
/*********************************/
/*         Works & Portfolios    */
/*===============================*/
.work-container.work-primary .title:hover {
  color: var(--primary-blue) !important;
}
.work-container.work-primary.work-modern .work-icon, .work-container.work-primary.work-creative .work-icon {
  color: var(--primary-blue) !important;
}
.work-container.work-primary.work-modern .work-icon:hover, .work-container.work-primary.work-creative .work-icon:hover {
  background: var(--primary-blue) !important;
}
.work-container.work-primary .btn {
  background-color: var(--primary-blue) !important;
  border: 1px solid #2f55d4 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
          box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.1);
}
.work-container.work-primary .btn:hover, .work-container.work-primary .btn:focus, .work-container.work-primary .btn:active, .work-container.work-primary .btn.active, .work-container.work-primary .btn.focus {
  background-color: rgb(35.6334661355, 67.1235059761, 172.3665338645) !important;
  border-color: rgb(35.6334661355, 67.1235059761, 172.3665338645) !important;
  color: var(--white) !important;
}
.work-container.work-primary .bg {
  background-color: var(--primary-blue) !important;
}
.work-container.work-primary .link {
  color: var(--primary-blue) !important;
}

.work-container.work-secondary .title:hover {
  color: var(--text-secondary) !important;
}
.work-container.work-secondary.work-modern .work-icon, .work-container.work-secondary.work-creative .work-icon {
  color: var(--text-secondary) !important;
}
.work-container.work-secondary.work-modern .work-icon:hover, .work-container.work-secondary.work-creative .work-icon:hover {
  background: #6c757d !important;
}
.work-container.work-secondary .btn {
  background-color: #6c757d !important;
  border: 1px solid #6c757d !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
          box-shadow: 0 3px 5px 0 rgba(108, 117, 125, 0.1);
}
.work-container.work-secondary .btn:hover, .work-container.work-secondary .btn:focus, .work-container.work-secondary .btn:active, .work-container.work-secondary .btn.active, .work-container.work-secondary .btn.focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
  color: var(--white) !important;
}
.sobre-normas-section .svg-icon {
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.sobre-normas-section .iso-27001-icon {
    background-image: url('../images/normas/iso-27001.svg');
}

.sobre-normas-section .lgpd-icon {
    background-image: url('../images/normas/lgpd.svg');
}
.sobre-normas-section .fallback-badge {
    width: 250px;
    height: 250px;
    box-shadow: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sobre-normas-section .normas-fallback {
    width: 100%;
}

.sobre-normas-section .normas-fallback .row {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
}

.sobre-normas-section .normas-fallback .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.5rem;
}
.sobre-normas-section .fallback-norma {
    text-align: center;
    padding: 0.5rem;
    width: 100%;
}

.sobre-normas-section .fallback-badge {
    margin: 0 auto 1rem auto;
}
@media (max-width: 768px) {
    .sobre-normas-section .normas-network-container:has(.normas-fallback),
    .sobre-normas-section .normas-network-container .normas-fallback {
        max-height: 200px;
    }

    .sobre-normas-section .svg-icon,
    .sobre-normas-section .fallback-badge {
        width: 120px;
        height: 120px;
    }

    .sobre-normas-section .fallback-norma h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .sobre-normas-section .fallback-norma p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
}
@media (max-width: 576px) {
    .sobre-normas-section .svg-icon,
    .sobre-normas-section .fallback-badge {
        width: 80px;
        height: 80px;
    }

    .sobre-normas-section .fallback-badge {
        margin: 0 auto 0.5rem auto;
    }

    .sobre-normas-section .fallback-norma {
        padding: 0.25rem;
    }

    .sobre-normas-section .fallback-norma h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .sobre-normas-section .fallback-norma p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .sobre-normas-section .normas-fallback .col-6 {
        padding: 0.25rem;
    }
}
.work-container.work-secondary .bg {
  background-color: #6c757d !important;
}
.work-container.work-secondary .link {
  color: var(--text-secondary) !important;
}

.work-container.work-success .title:hover {
  color: #2eca8b !important;
}
.work-container.work-success.work-modern .work-icon, .work-container.work-success.work-creative .work-icon {
  color: #2eca8b !important;
}
.work-container.work-success.work-modern .work-icon:hover, .work-container.work-success.work-creative .work-icon:hover {
  background: var(--cyan) !important;
}
.work-container.work-success .btn {
  background-color: #2eca8b !important;
  border: 1px solid #2eca8b !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
          box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.1);
}
.work-container.work-success .btn:hover, .work-container.work-success .btn:focus, .work-container.work-success .btn:active, .work-container.work-success .btn.active, .work-container.work-success .btn.focus {
  background-color: rgb(36.5403225806, 160.4596774194, 110.4153225806) !important;
  border-color: rgb(36.5403225806, 160.4596774194, 110.4153225806) !important;
  color: var(--white) !important;
}
.work-container.work-success .bg {
  background-color: #2eca8b !important;
}
.work-container.work-success .link {
  color: #2eca8b !important;
}

.work-container.work-info .title:hover {
  color: #17a2b8 !important;
}
.work-container.work-info.work-modern .work-icon, .work-container.work-info.work-creative .work-icon {
  color: #17a2b8 !important;
}
.work-container.work-info.work-modern .work-icon:hover, .work-container.work-info.work-creative .work-icon:hover {
  background: #17a2b8 !important;
}
.work-container.work-info .btn {
  background-color: #17a2b8 !important;
  border: 1px solid #17a2b8 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
          box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.1);
}
.work-container.work-info .btn:hover, .work-container.work-info .btn:focus, .work-container.work-info .btn:active, .work-container.work-info .btn.active, .work-container.work-info .btn.focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
  color: var(--white) !important;
}
.work-container.work-info .bg {
  background-color: #17a2b8 !important;
}
.work-container.work-info .link {
  color: #17a2b8 !important;
}

.work-container.work-warning .title:hover {
  color: #f17425 !important;
}
.work-container.work-warning.work-modern .work-icon, .work-container.work-warning.work-creative .work-icon {
  color: #f17425 !important;
}
.work-container.work-warning.work-modern .work-icon:hover, .work-container.work-warning.work-creative .work-icon:hover {
  background: #f17425 !important;
}
.work-container.work-warning .btn {
  background-color: #f17425 !important;
  border: 1px solid #f17425 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
          box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.1);
}
.work-container.work-warning .btn:hover, .work-container.work-warning .btn:focus, .work-container.work-warning .btn:active, .work-container.work-warning .btn.active, .work-container.work-warning .btn.focus {
  background-color: rgb(213.3017241379, 90.9956896552, 13.6982758621) !important;
  border-color: rgb(213.3017241379, 90.9956896552, 13.6982758621) !important;
  color: var(--white) !important;
}
.work-container.work-warning .bg {
  background-color: #f17425 !important;
}
.work-container.work-warning .link {
  color: #f17425 !important;
}
.work-container.work-danger.work-modern .work-icon:hover, .work-container.work-danger.work-creative .work-icon:hover {
  background: #e43f52 !important;
}
.work-container.work-danger .btn {
  background-color: #e43f52 !important;
  border: 1px solid #e43f52 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
          box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.1);
}
.work-container.work-danger .btn:hover, .work-container.work-danger .btn:focus, .work-container.work-danger .btn:active, .work-container.work-danger .btn.active, .work-container.work-danger .btn.focus {
  background-color: rgb(210.4109589041, 29.5890410959, 50.4109589041) !important;
  border-color: rgb(210.4109589041, 29.5890410959, 50.4109589041) !important;
  color: var(--white) !important;
}
.work-container.work-danger .bg {
  background-color: #e43f52 !important;
}
.work-container.work-light .title:hover {
  color: #f8f9fa !important;
}
.work-container.work-light.work-modern .work-icon, .work-container.work-light.work-creative .work-icon {
  color: #f8f9fa !important;
}
.work-container.work-light.work-modern .work-icon:hover, .work-container.work-light.work-creative .work-icon:hover {
  background: #f8f9fa !important;
}
.work-container.work-light .btn {
  background-color: #f8f9fa !important;
  border: 1px solid #f8f9fa !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
          box-shadow: 0 3px 5px 0 rgba(248, 249, 250, 0.1);
}
.work-container.work-light .btn:hover, .work-container.work-light .btn:focus, .work-container.work-light .btn:active, .work-container.work-light .btn.active, .work-container.work-light .btn.focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
  border-color: rgb(218.25, 223.5, 228.75) !important;
  color: var(--white) !important;
}
.work-container.work-light .bg {
  background-color: #f8f9fa !important;
}
.work-container.work-light .link {
  color: #f8f9fa !important;
}

.work-container.work-dark .title:hover {
  color: var(--text-primary) !important;
}
.work-container.work-dark.work-modern .work-icon, .work-container.work-dark.work-creative .work-icon {
  color: var(--text-primary) !important;
}
.work-container.work-dark.work-modern .work-icon:hover, .work-container.work-dark.work-creative .work-icon:hover {
  background: #212529 !important;
}
.work-container.work-dark .btn {
  background-color: #212529 !important;
  border: 1px solid #212529 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
          box-shadow: 0 3px 5px 0 rgba(33, 37, 41, 0.1);
}
.work-container.work-dark .btn:hover, .work-container.work-dark .btn:focus, .work-container.work-dark .btn:active, .work-container.work-dark .btn.active, .work-container.work-dark .btn.focus {
  background-color: rgb(10.2567567568, 11.5, 12.7432432432) !important;
  border-color: rgb(10.2567567568, 11.5, 12.7432432432) !important;
  color: var(--white) !important;
}
.work-container.work-dark .bg {
  background-color: #212529 !important;
}
.work-container.work-dark .link {
  color: var(--text-primary) !important;
}

.work-container.work-footer .title:hover {
  color: #202942 !important;
}
.work-container.work-footer.work-modern .work-icon, .work-container.work-footer.work-creative .work-icon {
  color: #202942 !important;
}
.work-container.work-footer.work-modern .work-icon:hover, .work-container.work-footer.work-creative .work-icon:hover {
  background: #202942 !important;
}
.work-container.work-footer .btn {
  background-color: #202942 !important;
  border: 1px solid #202942 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
          box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.1);
}
.work-container.work-footer .btn:hover, .work-container.work-footer .btn:focus, .work-container.work-footer .btn:active, .work-container.work-footer .btn.active, .work-container.work-footer .btn.focus {
  background-color: rgb(15.3469387755, 19.6632653061, 31.6530612245) !important;
  border-color: rgb(15.3469387755, 19.6632653061, 31.6530612245) !important;
  color: var(--white) !important;
}
.work-container.work-footer .bg {
  background-color: #202942 !important;
}
.work-container.work-footer .link {
  color: #202942 !important;
}

.work-container.work-muted .title:hover {
  color: #8492a6 !important;
}
.work-container.work-muted.work-modern .work-icon, .work-container.work-muted.work-creative .work-icon {
  color: #8492a6 !important;
}
.work-container.work-muted.work-modern .work-icon:hover, .work-container.work-muted.work-creative .work-icon:hover {
  background: #8492a6 !important;
}
.work-container.work-muted .btn {
  background-color: #8492a6 !important;
  border: 1px solid #8492a6 !important;
  color: var(--white) !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
          box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.1);
}
.work-container.work-muted .btn:hover, .work-container.work-muted .btn:focus, .work-container.work-muted .btn:active, .work-container.work-muted .btn.active, .work-container.work-muted .btn.focus {
  background-color: rgb(103.6933962264, 120.0047169811, 143.3066037736) !important;
  border-color: rgb(103.6933962264, 120.0047169811, 143.3066037736) !important;
  color: var(--white) !important;
}
.work-container.work-muted .bg {
  background-color: #8492a6 !important;
}
.work-container.work-muted .link {
  color: #8492a6 !important;
}

.work-container.work-classic .work-image {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-classic .work-image:hover {
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
.work-container .overlay-work,
.work-container .overlay-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container .overlay-work {
  background-color: #3c4858;
}
.work-container .overlay-grid {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0.25)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(75%, rgba(0, 0, 0, 0.75)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 75%, black 100%);
}
.work-container.work-classic .content .title, .work-container.work-grid .content .title, .work-container.work-modern .content .title {
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-classic .content .tag, .work-container.work-grid .content .tag, .work-container.work-modern .content .tag {
  font-size: 15px !important;
}
.work-container.work-modern img,
.work-container.work-modern .overlay-work,
.work-container.work-modern .content,
.work-container.work-modern .client,
.work-container.work-modern .read_more {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-modern .content,
.work-container.work-modern .client,
.work-container.work-modern .read_more {
  position: absolute;
}
.work-container.work-modern .overlay-work {
  opacity: 0;
}
.work-container.work-modern .content {
  z-index: 1;
  bottom: 5%;
  left: 5%;
}
.work-container.work-modern .icons {
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.work-container.work-modern .content,
.work-container.work-modern .client {
  opacity: 0;
}
.work-container.work-modern .client {
  color: var(--white);
}
.work-container.work-modern .client,
.work-container.work-modern .read_more {
  z-index: 1;
  right: 5%;
  top: 5%;
}
.work-container.work-modern .read_more {
  height: 30px;
  width: 30px;
  line-height: 30px;
}
.work-container.work-modern:hover img {
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
}
.work-container.work-modern:hover .overlay-work {
  opacity: 0.65;
}
.work-container.work-modern:hover .personal-port,
.work-container.work-modern:hover .content,
.work-container.work-modern:hover .client {
  opacity: 1;
}
.work-container.work-grid {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-grid img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-grid .content {
  background-color: var(--white);
}
.work-container.work-grid:hover {
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
.work-container.work-grid:hover img {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
.work-container.work-grid .content, .work-container.work-creative .content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.work-container.work-grid .content .title, .work-container.work-creative .content .title {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-grid:hover .content, .work-container.work-creative:hover .content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.work-container.work-modern .icons, .work-container.work-creative .icons {
  position: absolute;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-modern .icons .work-icon, .work-container.work-creative .icons .work-icon {
  height: 45px;
  width: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-container.work-modern .icons .work-icon:hover, .work-container.work-creative .icons .work-icon:hover {
  color: var(--white) !important;
}
.work-container.work-creative .icons {
  top: 0;
  right: 0;
}
.work-container.work-creative .overlay-grid {
  -webkit-transform: translateY(500px);
          transform: translateY(500px);
}
.work-container.work-creative:hover .overlay-grid {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.work-details ul li b {
  max-width: 90px;
  width: 100%;
  display: inline-block;
}

.container-filter li {
  font-size: 13px;
  padding: 0px 15px;
  margin: 5px 3px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  line-height: 34px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.container-filter li.active, .container-filter li:hover {
  color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}
.container-filter.filter-border li {
  color: #8492a6 !important;
  border-bottom: 2px solid transparent;
}
.container-filter.filter-border li.active, .container-filter.filter-border li:hover {
  color: var(--primary-blue) !important;
}
.spacing {
  padding: 7px;
}

/*********************************/
/*      Travel                   */
/*===============================*/
.popular-tour .content {
  position: absolute;
  bottom: 3%;
  left: 5%;
}
.popular-tour .overlay-work {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.popular-tour:hover .overlay-work {
  opacity: 0.6;
}

/*********************************/
/*         Events                */
/*===============================*/
.event-schedule.event-primary .date {
  color: var(--primary-blue) !important;
}
.event-schedule.event-primary .date .day {
  background: rgba(47, 85, 212, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(47, 85, 212, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(47, 85, 212, 0.5);
}
.event-schedule.event-primary .content .title:hover {
  color: var(--primary-blue) !important;
}
.event-schedule.event-primary:hover {
  border-color: var(--primary-blue) !important;
}

.event-schedule.event-secondary .date {
  color: var(--text-secondary) !important;
}
.event-schedule.event-secondary .date .day {
  background: rgba(108, 117, 125, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(108, 117, 125, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(108, 117, 125, 0.5);
}
.event-schedule.event-secondary .content .title:hover {
  color: var(--text-secondary) !important;
}
.event-schedule.event-secondary:hover {
  border-color: #6c757d !important;
}

.event-schedule.event-success .date {
  color: #2eca8b !important;
}
.event-schedule.event-success .date .day {
  background: rgba(46, 202, 139, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(46, 202, 139, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(46, 202, 139, 0.5);
}
.event-schedule.event-success .content .title:hover {
  color: #2eca8b !important;
}
.event-schedule.event-success:hover {
  border-color: #2eca8b !important;
}

.event-schedule.event-info .date {
  color: #17a2b8 !important;
}
.event-schedule.event-info .date .day {
  background: rgba(23, 162, 184, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(23, 162, 184, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(23, 162, 184, 0.5);
}
.event-schedule.event-info .content .title:hover {
  color: #17a2b8 !important;
}
.event-schedule.event-info:hover {
  border-color: #17a2b8 !important;
}

.event-schedule.event-warning .date {
  color: #f17425 !important;
}
.event-schedule.event-warning .date .day {
  background: rgba(241, 116, 37, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(241, 116, 37, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(241, 116, 37, 0.5);
}
.event-schedule.event-warning .content .title:hover {
  color: #f17425 !important;
}
.event-schedule.event-warning:hover {
  border-color: #f17425 !important;
}

.event-schedule.event-danger .date {
  color: #e43f52 !important;
}
.event-schedule.event-danger .date .day {
  background: rgba(228, 63, 82, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(228, 63, 82, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(228, 63, 82, 0.5);
}
.event-schedule.event-danger .content .title:hover {
  color: #e43f52 !important;
}
.event-schedule.event-light .date {
  color: #f8f9fa !important;
}
.event-schedule.event-light .date .day {
  background: rgba(248, 249, 250, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(248, 249, 250, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(248, 249, 250, 0.5);
}
.event-schedule.event-light .content .title:hover {
  color: #f8f9fa !important;
}
.event-schedule.event-light:hover {
  border-color: #f8f9fa !important;
}
.event-schedule.event-dark .date {
  color: var(--text-primary) !important;
}
.event-schedule.event-dark .date .day {
  background: rgba(33, 37, 41, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(33, 37, 41, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(33, 37, 41, 0.5);
}
.event-schedule.event-dark .content .title:hover {
  color: var(--text-primary) !important;
}
.event-schedule.event-dark:hover {
  border-color: #212529 !important;
}

.event-schedule.event-footer .date {
  color: #202942 !important;
}
.event-schedule.event-footer .date .day {
  background: rgba(32, 41, 66, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(32, 41, 66, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(32, 41, 66, 0.5);
}
.event-schedule.event-footer .content .title:hover {
  color: #202942 !important;
}
.event-schedule.event-footer:hover {
  border-color: #202942 !important;
}

.event-schedule.event-muted .date {
  color: #8492a6 !important;
}
.event-schedule.event-muted .date .day {
  background: rgba(132, 146, 166, 0.1);
  -webkit-box-shadow: 0px 0px 2px 0.25px rgba(132, 146, 166, 0.5);
          box-shadow: 0px 0px 2px 0.25px rgba(132, 146, 166, 0.5);
}
.event-schedule.event-muted .content .title:hover {
  color: #8492a6 !important;
}
.event-schedule.event-muted:hover {
  border-color: #8492a6 !important;
}

.event-schedule {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-schedule .date .day {
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  line-height: 48px;
  border: 2px solid #e9ecef;
}
.event-schedule .date .month {
  font-size: 13px;
}
.event-schedule .content .title {
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-schedule .content .location-time {
  font-size: 14px;
}
.event-schedule:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
          box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}
/*********************************/
/*         Shopping              */
/*===============================*/
.shop-features .category-title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  z-index: 1;
}

.shop-list .shop-image .overlay-work,
.shop-list .shop-image .shop-icons {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.shop-list .shop-image .overlay-work {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.shop-list .shop-image .overlay-work .out-stock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.shop-list .shop-image .shop-icons {
  top: 15px;
  right: 15px;
  z-index: 2;
}
.shop-list .content .product-name:hover {
  color: var(--primary-blue) !important;
}
.shop-list .label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}
.shop-list .qty-btn {
  pointer-events: none;
  width: 65px;
  padding-left: 15px;
}

/*********************************/
/*         Tobii Lightbox        */
/*===============================*/
.tobii > button.tobii__close svg,
.tobii > button.tobii__prev svg,
.tobii > button.tobii__next svg {
  height: 36px;
  width: auto;
}

.tobii__counter {
  font-size: 16px;
}

.tobii-zoom {
  display: block !important;
}

.tobii-zoom__icon {
  display: none;
}

#grid {
  padding: 0 !important;
}

.fw-medium {
  font-weight: 600;
}

.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-two {
  padding: 60px 0;
  position: relative;
}
.bg-overlay {
  background-color: rgba(47, 85, 212, 0.31);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.bg-overlay-white {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-gradient-primary {
  background: -webkit-gradient(linear, right top, left top, from(rgb(96.9879518072, 64.0963855422, 145.9036144578)), to(rgb(35.6334661355, 67.1235059761, 172.3665338645)));
  background: linear-gradient(to left, rgb(96.9879518072, 64.0963855422, 145.9036144578) 0%, rgb(35.6334661355, 67.1235059761, 172.3665338645) 100%);
}

.bg-linear-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.3)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 80%, black 100%);
}

.bg-linear-gradient-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(75%, rgba(0, 0, 0, 0.7)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 75%, black 100%);
}
.bg-linear-gradient-3 {
  background: -webkit-gradient(linear, left top, right top, from(black), color-stop(25%, black), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(75%, rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, black 0%, black 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
}

.bg-linear-gradient-4 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0.25)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(75%, rgba(0, 0, 0, 0.75)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 75%, black 100%);
}
.bg-linear-gradient-primary {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 85, 212, 0)), color-stop(50%, rgba(47, 85, 212, 0.15)), to(rgba(47, 85, 212, 0.3)));
  background: linear-gradient(to top, rgba(47, 85, 212, 0) 0%, rgba(47, 85, 212, 0.15) 50%, rgba(47, 85, 212, 0.3) 100%);
}

.bg-gradient-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0.3)), color-stop(50%, rgba(0, 0, 0, 0.6)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0.6) 50%, black 100%);
}
.bg-gradient-overlay-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(25%, rgba(0, 0, 0, 0.6)), color-stop(50%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.bg-primary-gradient-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 85, 212, 0)), color-stop(25%, rgba(47, 85, 212, 0.25)), color-stop(50%, rgba(47, 85, 212, 0.5)), color-stop(75%, rgba(47, 85, 212, 0.75)), to(#2f55d4));
  background: linear-gradient(to bottom, rgba(47, 85, 212, 0) 0%, rgba(47, 85, 212, 0.25) 25%, rgba(47, 85, 212, 0.5) 50%, rgba(47, 85, 212, 0.75) 75%, #2f55d4 100%);
}

.bg-gradient-white-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%);
}

.title-heading {
  line-height: 26px;
}
.title-heading .heading {
  font-size: 45px !important;
  letter-spacing: 1px;
}
.title-heading .heading.heading-lg {
  font-size: 60px !important;
}
@media (max-width: 768px) {
  .title-heading .heading {
    font-size: 35px !important;
  }
}
.title-heading .para-desc {
  font-size: 20px;
}

.section-title .title {
  letter-spacing: 0.5px;
  font-size: 30px !important;
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 24px !important;
  }
}

.text-shadow-title {
  text-shadow: 2px 0 0 #ffffff, -2px 0 0 #ffffff, 0 4px 0 rgba(255, 255, 255, 0.4), 0 -2px 0 #ffffff, 1px 1px #ffffff, -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff;
}
.para-desc {
  max-width: 600px;
}

.mt-100 {
  margin-top: 100px;
}

.text-slider {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.text-slider > ul {
  white-space: nowrap;
}
.text-slider .move-text {
  -webkit-animation: moveSlideshow 12s linear infinite;
          animation: moveSlideshow 12s linear infinite;
}

@-webkit-keyframes moveSlideshow {
  100% {
    -webkit-transform: translateX(-45%);
            transform: translateX(-45%);
  }
}

@keyframes moveSlideshow {
  100% {
    -webkit-transform: translateX(-45%);
            transform: translateX(-45%);
  }
}
.mover {
  -webkit-animation: mover 1s infinite alternate;
          animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
.mover-2 {
  -webkit-animation: movers 10s infinite alternate;
          animation: movers 10s infinite alternate;
}

@-webkit-keyframes movers {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(350px);
            transform: translateY(350px);
  }
}

@keyframes movers {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(350px);
            transform: translateY(350px);
  }
}
.mover-minus {
  -webkit-animation: mover3 1s infinite alternate;
          animation: mover3 1s infinite alternate;
}
@-webkit-keyframes mover3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes mover3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.zoom-in-out {
  -webkit-animation: zoom-in-zoom-out 3s ease-out infinite;
          animation: zoom-in-zoom-out 3s ease-out infinite;
}

@-webkit-keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.feature-posts-placeholder {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 66.6%;
}
@media (max-width: 425px) {
  .feature-posts-placeholder {
    height: 80%;
  }
}

.spin-anything {
  -webkit-animation: spinner-animation 5s linear infinite;
          animation: spinner-animation 5s linear infinite;
}

@-webkit-keyframes spinner-animation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner-animation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.seo-hero-widget {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.seo-hero-widget:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 9;
}

.home-wrapper:before {
  content: "";
  position: absolute;
  bottom: 40rem;
  right: 0rem;
  width: 90rem;
  height: 35rem;
  -webkit-transform: rotate(78.75deg);
          transform: rotate(78.75deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(47, 85, 212, 0.3)), to(transparent));
  background: linear-gradient(90deg, rgba(47, 85, 212, 0.3), transparent);
  z-index: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home-wrapper:before {
    right: -20rem;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  .home-wrapper:before {
    right: -15rem;
    width: 70rem;
    height: 25rem;
  }
}
@media (max-width: 425px) {
  .home-wrapper:before {
    right: -25rem;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 512px;
  z-index: 5;
}
.cookie-popup .cookie-popup-actions button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-weight: 600;
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (max-width: 425px) {
  .cookie-popup {
    left: 12px;
    right: 12px;
  }
}

.cookie-popup-not-accepted {
  display: block;
  -webkit-animation: cookie-popup-in 0.5s ease forwards;
          animation: cookie-popup-in 0.5s ease forwards;
}

.cookie-popup-accepted {
  display: none !important;
}

@-webkit-keyframes cookie-popup-in {
  from {
    bottom: -6.25rem;
  }
  to {
    bottom: 1.25rem;
  }
}

@keyframes cookie-popup-in {
  from {
    bottom: -6.25rem;
  }
  to {
    bottom: 1.25rem;
  }
}
.clip-text {
  font-size: 190px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clip-text.clip-text-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .clip-text {
    font-size: 180px;
  }
}
@media (max-width: 768px) {
  .clip-text {
    font-size: 135px;
  }
}
@media (max-width: 425px) {
  .clip-text {
    font-size: 50px;
  }
}

@media (min-width: 768px) {
  .margin-top-100 {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .mt-60 {
    margin-top: 60px;
  }
}
.background-effect .circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.background-effect .circles li {
  position: absolute;
  display: block;
  -webkit-animation: animate 25s linear infinite;
          animation: animate 25s linear infinite;
  bottom: -150px;
  background: rgba(47, 85, 212, 0.15);
}
.background-effect .circles li:nth-child(1), .background-effect .circles li:nth-child(2), .background-effect .circles li:nth-child(3), .background-effect .circles li:nth-child(4), .background-effect .circles li:nth-child(5), .background-effect .circles li:nth-child(6), .background-effect .circles li:nth-child(7), .background-effect .circles li:nth-child(8), .background-effect .circles li:nth-child(9), .background-effect .circles li:nth-child(10) {
  width: 24px;
  height: 24px;
}
.background-effect .circles li:nth-child(1) {
  left: 25%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.background-effect .circles li:nth-child(2) {
  left: 10%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}
.background-effect .circles li:nth-child(3) {
  left: 70%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.background-effect .circles li:nth-child(4) {
  left: 40%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}
.background-effect .circles li:nth-child(5) {
  left: 65%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.background-effect .circles li:nth-child(6) {
  left: 75%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.background-effect .circles li:nth-child(7) {
  left: 35%;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.background-effect .circles li:nth-child(8) {
  left: 50%;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
}
.background-effect .circles li:nth-child(9) {
  left: 20%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.background-effect .circles li:nth-child(10) {
  left: 85%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 10px;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
            transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 10px;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
            transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}
.fea {
  stroke-width: 1.8;
}
.fea.icon-sm {
  height: 16px;
  width: 16px;
}
.fea.icon-ex-md {
  height: 20px;
  min-width: 20px;
}
.fea.icon-m-md {
  height: 28px;
  width: 28px;
}
.fea.icon-md {
  height: 35px;
  width: 35px;
}
.fea.icon-lg {
  height: 42px;
  width: 42px;
}
.fea.icon-ex-lg {
  height: 52px;
  width: 52px;
}

[class^=uil-]:before,
[class*=" uil-"]:before {
  margin: 0;
}
.uim-svg {
  vertical-align: 0 !important;
}
.rounded {
  border-radius: 6px !important;
}

.rounded-top {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.rounded-left {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.rounded-bottom {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.rounded-right {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.rounded-md {
  border-radius: 10px !important;
}

.rounded-lg {
  border-radius: 30px !important;
}

.border-primary {
  border-color: var(--primary-blue) !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #2eca8b !important;
}
.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #f17425 !important;
}
.border-danger {
  border-color: #e43f52 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}
.border-footer {
  border-color: #202942 !important;
}
.border-muted {
  border-color: #8492a6 !important;
}
.opacity-05 {
  opacity: 0.05;
}
.opacity-075 {
  opacity: 0.075;
}
.opacity-1 {
  opacity: 0.1;
}
.opacity-2 {
  opacity: 0.2;
}
.opacity-3 {
  opacity: 0.3;
}
.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.z-index-1 {
  z-index: 1;
}

.z-index-0 {
  z-index: 0;
}

.z-index-m-1 {
  z-index: -1;
}

.small, small {
  font-size: 90%;
}
.social-icon li a {
  color: var(--text-primary);
  border: 1px solid #212529;
  height: 32px;
  width: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.social-icon li a .fea-social {
  stroke-width: 2;
}
.social-icon li a:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue) !important;
  color: #fff !important;
}
.social-icon li a:hover .fea-social {
  fill: #2f55d4;
}
.social-icon.social li a {
  color: var(--text-light);
  border-color: #adb5bd;
}
.social-icon.foot-social-icon li a {
  color: var(--text-light);
  border-color: rgb(40.3265306122, 51.6683673469, 83.1734693878);
}

.back-to-top {
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-blue);
  color: #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.back-to-top .icons {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) rotate(-45deg) !important;
  transition: transform 0.3s ease;
  width: 18px !important;
  height: 18px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.back-to-top:hover {
  transform: rotate(90deg);
}

.back-to-top:hover .icons {
  transform: translate(-50%, -50%) rotate(-90deg) !important;
}

.back-to-home {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.sticky-bar {
  position: sticky;
  top: 80px;
}

.position-middle-bottom {
  position: absolute;
  bottom: 15px;
  left: 12px;
  right: 12px;
  text-align: center;
}

.text-color-white {
  color: #fff !important;
}

.d-flex .flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.brand-gray img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.brand-gray img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.about-left .img-one {
  max-width: 70%;
}
.about-left .img-two {
  position: absolute;
  right: 0;
  bottom: 5%;
  max-width: 250px;
}

.about-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.about-right .img-one {
  max-width: 70%;
}
.about-right .img-two {
  position: absolute;
  left: 0;
  bottom: 5%;
  max-width: 250px;
}

.switcher-btn {
  position: fixed;
  top: 200px;
  height: 41px;
  width: 40px;
  padding: 3px;
  border-radius: 0 30px 30px 0;
  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;
}

.style-switcher .t-dark,
.style-switcher .t-rtl-light {
  display: inline-block;
}
.style-switcher .t-ltr-light,
.style-switcher .t-light,
.style-switcher .t-rtl-dark,
.style-switcher .t-ltr-dark {
  display: none;
}

[dir=rtl] .style-switcher .t-rtl-light {
  display: none;
}
[dir=rtl] .style-switcher .t-ltr-light {
  display: inline-block;
}

ul.pattern {
  overflow: hidden;
  border-radius: 0px;
  list-style: none;
}
ul.pattern li {
  float: left;
  margin: 2px;
}
ul.pattern li .color-list {
  display: block;
  height: 35px;
  width: 60px;
  margin: 5px;
}
ul.pattern .color1 {
  background-color: var(--primary-blue);
}
ul.pattern .color2 {
  background-color: #16a34a;
}
ul.pattern .color3 {
  background-color: #f7961c;
}

.mode-dark {
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mode-light {
  display: blog;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body[data-layout-mode=dark] .mode-dark {
  display: inline-block;
}
body[data-layout-mode=dark] .mode-light {
  display: none;
}

/*********************************/
/*         Custom              */
/*===============================*/

.min-title-height {
	height: 55px;
}

.icon-box-custom {
	font-size: 70px;
	background-color: #ffffff;
	border-radius: 50%;
	width: 105px;
	height: 105px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.card-header-large {
	padding: 26px 20px;
}

/* Gradiente Azul (base) - IDV MetaTrust */
.bg-gradient-azul {
	background: var(--primary-blue);
	background: -webkit-linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	background: -moz-linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	background: -o-linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	color: var(--white);
	transition: all 0.3s ease;
}

/* Gradiente Azul-Claro para Azul com Azul Predominante */
.bg-gradient-azul-inver {
	background: var(--secondary-blue);
	background: -webkit-linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
	background: -moz-linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
	background: -o-linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
	background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
	color: var(--white);
  border: none;
	transition: all 0.3s ease;
}

/* Gradiente Azul → Roxo - IDV MetaTrust */
.bg-gradient-azul-roxo {
	background: var(--primary-blue);
	background: -webkit-linear-gradient(to right, var(--primary-blue), var(--purple));
	background: -moz-linear-gradient(to right, var(--primary-blue), var(--purple));
	background: -o-linear-gradient(to right, var(--primary-blue), var(--purple));
	background: linear-gradient(to right, var(--primary-blue), var(--purple));
	color: var(--white);
	transition: all 0.3s ease;
}
/* Gradiente Roxo-Azul - IDV MetaTrust */
.bg-gradient-roxo-azul {
	background: var(--purple);
	background: -webkit-linear-gradient(135deg, var(--purple), var(--primary-blue));
	background: -moz-linear-gradient(135deg, var(--purple), var(--primary-blue));
	background: -o-linear-gradient(135deg, var(--purple), var(--primary-blue));
	background: linear-gradient(135deg, var(--purple), var(--primary-blue));
	color: var(--white);
	transition: all 0.3s ease;
}

/* Gradiente Roxo → Rosa - IDV MetaTrust */
.bg-gradient-roxo-rosa {
	background: var(--purple);
	background: -webkit-linear-gradient(to right, var(--purple), var(--pink));
	background: -moz-linear-gradient(to right, var(--purple), var(--pink));
	background: -o-linear-gradient(to right, var(--purple), var(--pink));
	background: linear-gradient(to right, var(--purple), var(--pink));
	color: var(--white);
	transition: all 0.3s ease;
}

/* Gradiente Rosa-Roxo - IDV MetaTrust */
.bg-gradient-rosa-roxo {
	background: var(--pink);
	background: -webkit-linear-gradient(135deg, var(--pink), var(--purple));
	background: -moz-linear-gradient(135deg, var(--pink), var(--purple));
	background: -o-linear-gradient(135deg, var(--pink), var(--purple));
	background: linear-gradient(135deg, var(--pink), var(--purple));
	color: var(--white);
	transition: all 0.3s ease;
}
/* Gradiente Rosa → Ciano - IDV MetaTrust */
.bg-gradient-rosa-ciano {
	background: var(--pink);
	background: -webkit-linear-gradient(to right, var(--pink), var(--cyan));
	background: -moz-linear-gradient(to right, var(--pink), var(--cyan));
	background: -o-linear-gradient(to right, var(--pink), var(--cyan));
	background: linear-gradient(to right, var(--pink), var(--cyan));
	color: var(--white);
	transition: all 0.3s ease;
}

/* Gradiente Ciano-Azul - IDV MetaTrust */
.bg-gradient-ciano-azul {
	background: var(--cyan);
	background: -webkit-linear-gradient(135deg, var(--cyan), var(--secondary-blue));
	background: -moz-linear-gradient(135deg, var(--cyan), var(--secondary-blue));
	background: -o-linear-gradient(135deg, var(--cyan), var(--secondary-blue));
	background: linear-gradient(135deg, var(--cyan), var(--secondary-blue));
	color: var(--white);
	transition: all 0.3s ease;
}
/* Gradiente Azul-Ciano - IDV MetaTrust */
.bg-gradient-azul-ciano {
	background: var(--primary-blue);
	background: -webkit-linear-gradient(135deg, var(--primary-blue), var(--cyan));
	background: -moz-linear-gradient(135deg, var(--primary-blue), var(--cyan));
	background: -o-linear-gradient(135deg, var(--primary-blue), var(--cyan));
	background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
	color: var(--white);
	transition: all 0.3s ease;
}


/* Efeito Hover para Botões com Gradientes */
.btn.bg-gradient-azul,
.btn.bg-gradient-azul-roxo,
.btn.bg-gradient-roxo-azul,
.btn.bg-gradient-roxo-rosa,
.btn.bg-gradient-rosa-roxo,
.btn.bg-gradient-rosa-ciano,
.btn.bg-gradient-ciano-azul,
.btn.bg-gradient-azul-ciano,
.btn.bg-gradient-azul-inver {
  border: none;
}

/* Efeito Hover para Botões com Gradientes */
.btn.bg-gradient-azul:hover,
.btn.bg-gradient-azul-roxo:hover,
.btn.bg-gradient-roxo-azul:hover,
.btn.bg-gradient-roxo-rosa:hover,
.btn.bg-gradient-rosa-roxo:hover,
.btn.bg-gradient-rosa-ciano:hover,
.btn.bg-gradient-ciano-azul:hover,
.btn.bg-gradient-azul-ciano:hover,
.btn.bg-gradient-azul-inver:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(81, 94, 251, 0.4);
	filter: brightness(1.1);
	transition: all 0.3s ease;
}



/* AZUL (#515EFB) - IDV MetaTrust */
.badge-azul {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Badges de Normas na Hero Section */
.hero-normas .badge {
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.hero-normas .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 94, 251, 0.2);
}

.hero-normas .badge i {
  font-size: 0.9rem;
}

/* Cards de Números na Hero Section - Usando classes do tema */
.hero-numeros .features.explore-feature h3 {
  font-size: 1.8rem;
  line-height: 1.2;
}
.hero-numeros .features.explore-feature p {
  font-size: 0.75rem;
  line-height: 1.3;
}

/* Badges de Especialidades na Hero Section */
.hero-badge {
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(81, 94, 251, 0.25);
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
}

.hero-badge:hover i {
  color: var(--white) !important;
}

/* Badge de Credibilidade na Hero Section */
.alert-pills {
  transition: all 0.3s ease;
  cursor: default;
}

.alert-pills:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(81, 94, 251, 0.15) !important;
}

/* Botões da Hero Section */
.title-heading .btn {
  transition: all 0.3s ease;
}

/* Botão "Nossas Soluções" - mantém azul, apenas eleva */
.title-heading .btn-primary:hover {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(81, 94, 251, 0.3);
}
/* Botão "Fale com Especialista" - muda para azul no hover */
.title-heading .btn-outline-primary.bg-white {
  background-color: var(--white) !important;
  color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}

.title-heading .btn-outline-primary.bg-white:hover {
  background-color: var(--secondary-blue) !important;
  color: var(--white) !important;
  border-color: var(--secondary-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(48, 182, 249, 0.3);
}

.badge-soft-azul {
  background-color: rgba(81, 94, 251, 0.15);
  color: var(--primary-blue);
}

/* Cards de Diferenciais - Versão Melhorada */
.diferencial-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(81, 94, 251, 0.1);
  box-shadow: 0 4px 15px rgba(81, 94, 251, 0.08);
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(81, 94, 251, 0.15);
  border-color: rgba(81, 94, 251, 0.2);
}

.diferencial-icon {
  transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
  transform: scale(1.1);
}

.numero-destaque {
  font-size: 2rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}
.diferencial-card:hover .numero-destaque {
  transform: scale(1.05);
}

.contexto {
  line-height: 1.5;
  font-size: 0.95rem;
}
.beneficio {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.diferencial-card:hover .beneficio {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 94, 251, 0.15);
}

/* Cores específicas para cada diferencial */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-secondary-blue { color: var(--secondary-blue) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-purple { color: var(--purple) !important; }
.text-pink { color: var(--pink) !important; }

.bg-soft-primary-blue { 
  background-color: rgba(81, 94, 251, 0.1) !important; 
  border-color: rgba(81, 94, 251, 0.2) !important;
}
.bg-soft-secondary-blue { 
  background-color: rgba(48, 182, 249, 0.1) !important; 
  border-color: rgba(48, 182, 249, 0.2) !important;
}
.bg-soft-cyan { 
  background-color: rgba(8, 237, 231, 0.1) !important; 
  border-color: rgba(8, 237, 231, 0.2) !important;
}
.bg-soft-purple { 
  background-color: rgba(71, 0, 123, 0.1) !important; 
  border-color: rgba(71, 0, 123, 0.2) !important;
}
.bg-soft-pink { 
  background-color: rgba(255, 51, 153, 0.1) !important; 
  border-color: rgba(255, 51, 153, 0.2) !important;
}


.badge-link-azul {
  background-color: transparent;
  color: var(--primary-blue);
}

/* ========================================
   SECAO 4 - ORBITA DE NORMAS
   ======================================== */

.normas-network-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

/* ========================================
   FALLBACK PARA SEM JAVASCRIPT
   ======================================== */

.normas-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
    padding: 40px 20px;
}

.fallback-norma {
    text-align: center;
    max-width: 250px;
}

.fallback-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(81, 94, 251, 0.2);
    transition: all 0.3s ease;
}

.fallback-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(81, 94, 251, 0.3);
}

.fallback-badge img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    color: #515EFB;
}

.fallback-norma h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.fallback-norma p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}
/* Responsividade do fallback */
@media (min-width: 768px) {
    .normas-fallback {
        flex-direction: row;
        gap: 60px;
    }
    
    .fallback-badge {
        width: 140px;
        height: 140px;
    }
    
    .fallback-norma h4 {
        font-size: 22px;
    }
    
    .fallback-norma p {
        font-size: 15px;
    }
}

#normasCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.normas-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.norma-badge {
    position: absolute;
    width: 80px; /* Aumentado de 70px */
    height: 80px; /* Aumentado de 70px */
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 0px;
}

.norma-badge.tier-center {
    width: 110px; /* Aumentado significativamente para maior destaque */
    height: 110px; /* Aumentado significativamente para maior destaque */
    border: none;
}

.norma-badge.tier-center img {
    color: #515EFB; /* Azul primário Meta Trust */
}

.norma-badge.tier-inner {
    width: 80px; /* Mantido um pouco menor que o base */
    height: 80px; /* Mantido um pouco menor que o base */
    border-color: rgba(48, 182, 249, 0.2);
}

.norma-badge.tier-inner img {
    color: #30B6F9; /* Azul secundário Meta Trust */
}

.norma-badge.tier-outer {
    width: 65px; /* Diminuído para criar mais contraste com os centrais */
    height: 65px; /* Diminuído para criar mais contraste com os centrais */
    border-color: rgba(255, 51, 153, 0.2);
}

.norma-badge.tier-outer img {
    color: #FF3399; /* Rosa Meta Trust */
}
.norma-badge img {
    width: 110% !important;
    height: 110% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    color: #515EFB; /* Cor padrão para os SVGs */
}
.norma-badge:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 40px rgba(81, 94, 251, 0.4);
    z-index: 10;
}

.norma-badge:hover img {
    transform: scale(1.1) !important;
}

/* Versao Dark (opcional para futuro) */
.section.bg-dark .normas-network-container {
    background: linear-gradient(135deg, 
        rgba(81, 94, 251, 0.15) 0%, 
        rgba(48, 182, 249, 0.15) 50%, 
        rgba(255, 51, 153, 0.15) 100%);
}

.section.bg-dark .norma-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
/* ========================================
   SECAO 5 - SOBRE RESULTADOS
   ======================================== */

.sobre-resultados-section .counter {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sobre-resultados-section .icon-box i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.sobre-resultados-section .card {
    transition: transform 0.3s ease;
}

.sobre-resultados-section .card:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .sobre-resultados-section .counter {
        font-size: 2rem;
    }

    .sobre-resultados-section .icon-box i {
        font-size: 2.5rem !important;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .normas-network-container {
        height: 500px;
    }
    
    .norma-badge.tier-center {
        width: 80px; /* Aumentado para mobile - maior destaque */
        height: 80px; /* Aumentado para mobile - maior destaque */
    }
    
    .norma-badge.tier-inner {
        width: 65px; /* Tamanho médio para mobile */
        height: 65px; /* Tamanho médio para mobile */
    }
    
    .norma-badge.tier-outer {
        width: 55px; /* Menor para mobile - criar contraste */
        height: 55px; /* Menor para mobile - criar contraste */
    }
}

@media (max-width: 576px) {
    .normas-network-container {
        height: 400px;
    }
}

/* ROXO (#47007B) - IDV MetaTrust */
.badge-roxo {
  background-color: var(--purple);
  color: var(--white);
}

.badge-soft-roxo {
  background-color: rgba(71, 0, 123, 0.15);
  color: var(--purple);
}

.badge-link-roxo {
  background-color: transparent;
  color: var(--purple);
}

/* ROSA (#FF3399) - IDV MetaTrust */
.badge-rosa {
  background-color: var(--pink);
  color: var(--white);
}

.badge-soft-rosa {
  background-color: rgba(255, 51, 153, 0.15);
  color: var(--pink);
}

.badge-link-rosa {
  background-color: transparent;
  color: var(--pink);
}
/* CIANO (#08EDE7) - IDV MetaTrust */
.badge-ciano {
  background-color: var(--cyan);
  color: var(--gray-dark);
}

.badge-soft-ciano {
  background-color: rgba(8, 237, 231, 0.15);
  color: var(--cyan);
}

.badge-link-ciano {
  background-color: transparent;
  color: var(--cyan);
}

/* AZUL SECUNDÁRIO (#30B6F9) - IDV MetaTrust */
.badge-azul-secundario {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.badge-soft-azul-secundario {
  background-color: rgba(48, 182, 249, 0.15);
  color: var(--secondary-blue);
}
.badge-link-azul-secundario {
  background-color: transparent;
  color: var(--secondary-blue);
}

/* ========================================
   SOBRESCRITA FORÇADA - BOOTSTRAP CLASSES
   ======================================== */

/* Forçar cores da IDV em todas as classes Bootstrap */
.bg-primary, 
.bg-primary:not([class*="bg-"]) {
  background-color: var(--primary-blue) !important;
}

.bg-secondary, 
.bg-secondary:not([class*="bg-"]) {
  background-color: var(--secondary-blue) !important;
}

.bg-success, 
.bg-success:not([class*="bg-"]) {
  background-color: var(--cyan) !important;
}
.bg-info, 
.bg-info:not([class*="bg-"]) {
  background-color: var(--secondary-blue) !important;
}

.bg-warning, 
.bg-warning:not([class*="bg-"]) {
  background-color: var(--pink) !important;
}

.bg-danger, 
.bg-danger:not([class*="bg-"]) {
  background-color: var(--purple) !important;
}

/* Forçar cores de texto */
.text-primary {
  color: var(--primary-blue) !important;
}

.text-secondary {
  color: var(--secondary-blue) !important;
}

.text-success {
  color: var(--cyan) !important;
}
.text-info {
  color: var(--secondary-blue) !important;
}

.text-warning {
  color: var(--pink) !important;
}

.text-danger {
  color: var(--purple) !important;
}
/* CIANO (#08EDE7) */
.badge-ciano {
  background-color: #08EDE7;
  color: #0a4b4a;
}

.badge-soft-ciano {
  background-color: rgba(8, 237, 231, 0.15);
  color: #08a7a3;
}

.badge-link-ciano {
  background-color: transparent;
  color: #08a7a3;
}

/* Container customizado para largura maior */
.container,
.container-fluid .container,
div.container {
  max-width: 1400px !important;
  width: 100% !important;
}
/* Forçar largura máxima em telas grandes */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px !important;
    width: 1400px !important;
  }
}

/* Breakpoints responsivos para o container */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* ========================================
   SECAO 6 - FUNDADORES
   ======================================== */

.fundadores-stats-col {
    position: sticky;
    top: 100px;
    height: fit-content;
}
.stats-card {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    border-radius: 16px;
    padding: 32px;
    color: white;
    box-shadow: 0 8px 32px rgba(81, 94, 251, 0.2);
    margin-bottom: 24px;
}

.stats-card h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-card .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stats-card .stat-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}
.credentials-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.credentials-card h5 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-item i {
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.credential-item span {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.fundador-trajetoria p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.fundador-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fundador-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(81, 94, 251, 0.15);
}

.fundador-foto-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #f8f9fa;
    max-height: 280px;
}

.fundador-foto-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundador-card:hover .fundador-foto-wrapper img {
    transform: scale(1.08);
}

.foto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(81, 94, 251, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fundador-card:hover .foto-overlay {
    opacity: 1;
}
.fundador-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fundador-nome {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.fundador-cargo {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.fundador-bio,
.fundador-experiencia,
.fundador-especializacao {
    font-size: 14px;
    line-height: 1.6;
}
.fundador-quote {
    position: relative;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.08), rgba(48, 182, 249, 0.12));
    border-radius: 12px;
    padding: 24px 32px 24px 60px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
    font-style: italic;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.1);
}
.fundador-quote::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 16px;
    width: 50px;
    height: 40px;
    background-image: url('../images/equipe/quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7500%) hue-rotate(246deg) brightness(91%) contrast(101%);
    opacity: 0.6;
}
.fundador-card:hover .fundador-quote {
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.12), rgba(48, 182, 249, 0.18));
    box-shadow: 0 6px 20px rgba(81, 94, 251, 0.2);
    transform: translateY(-3px);
}

.fundador-card:hover .fundador-quote::before {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(186deg) brightness(118%) contrast(119%);
    transform: scale(1.05);
    opacity: 0.8;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.cert-badge {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(81, 94, 251, 0.2);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.3);
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0077B5;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2);
    margin-top: auto;
}

.linkedin-btn:hover {
    background: #005885;
    transform: translateX(4px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.linkedin-btn i {
    font-size: 20px;
}

/* Responsividade */
@media (max-width: 991px) {
    .fundadores-stats-col {
        position: relative;
        top: 0;
        margin-bottom: 32px;
    }
    
    .stats-card {
        padding: 24px;
    }
    
    .stats-card .stat-item h3 {
        font-size: 32px;
    }
    
    .credentials-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .fundador-card {
        margin-bottom: 32px;
    }
    
    .fundador-foto-wrapper {
        aspect-ratio: 4/3;
        max-height: 240px;
    }
    
    .fundador-nome {
        font-size: 20px;
    }
    
    .fundador-cargo {
        font-size: 14px;
    }
    
    .fundador-info {
        padding: 20px;
    }
    
    .stats-card {
        padding: 20px;
    }
    
    .stats-card .stat-item h3 {
        font-size: 28px;
    }
    
    .credentials-card {
        padding: 18px;
    }
}
@media (max-width: 576px) {
    .fundador-foto-wrapper {
        aspect-ratio: 16/9;
        max-height: 200px;
    }
    
    .fundador-nome {
        font-size: 18px;
    }
    
    .fundador-info {
        padding: 18px;
    }
    
    .stats-card .stat-item h3 {
        font-size: 24px;
    }
}

/* ========================================
   SOLUÇÕES - CARDS E COMPONENTES
   ======================================== */
/* Cards de Soluções */
.solucao-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}
.solucao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(81, 94, 251, 0.15) !important;
}

.solucao-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.solucao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.solucao-card:hover .solucao-image img {
    transform: scale(1.1);
}

.solucao-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1), rgba(48, 182, 249, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.solucao-card:hover .overlay {
    opacity: 1;
}

/* Card Body Layout - Flexbox para altura fixa */
.solucao-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

/* Badge */
.card-badge {
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

/* Título do Card */
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    height: 2.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #515EFB;
}

/* Descrição do Card */
.card-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Benefícios - ocupa o espaço restante */
.card-beneficios {
    flex: 1;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.beneficios-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficio-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    min-height: 3.1rem;
}

@media (max-width: 1150px) {
    .beneficio-item {
        min-height: 3.5rem;
    }
}

@media (max-width: 768px) {
    .beneficio-item {
        min-height: 4rem;
    }
}

@media (max-width: 576px) {
    .beneficio-item {
        min-height: 4.4rem;
    }
}
.beneficio-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.beneficio-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.beneficio-icon i {
    color: white;
    font-size: 0.65rem;
}

.beneficio-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Serviços */
.card-servicos {
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

/* Serviços Badges */
.servicos-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}
.servicos-badges .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
}
/* Processo Timeline */
.processo-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
}
.processo-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #515EFB, #30B6F9, #08EDE7);
    z-index: 0;
}
.processo-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}
.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #515EFB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.15);
}
.step-icon i {
    font-size: 1.5rem;
    color: #515EFB;
}

.processo-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.processo-step p {
    font-size: 0.9rem;
}

/* CTA */
.card-cta {
    flex-shrink: 0;
    padding-top: 0.75rem;
    margin-top: auto;
}

/* Processo Timeline Styles */
.processo-timeline {
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.processo-card {
    min-width: 200px;
    max-width: 250px;
    flex: 1;
}

.processo-diamond {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processo-diamond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.processo-diamond i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.processo-card:hover .processo-diamond::before {
    transform: rotate(90deg) scale(1.05);
}

.processo-card:hover .processo-diamond i {
    transform: scale(1.2);
}

.step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-blue) !important;
}
/* Descrição do processo */
.processo-descricao {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Serviços Vinculados Styles */
.servico-vinculado-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    height: 100%;
}
.servico-vinculado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}
.servico-image {
    height: 180px;
    overflow: hidden;
}
.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.servico-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1), rgba(48, 182, 249, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servico-vinculado-card:hover .servico-image img {
    transform: scale(1.05);
}

.servico-vinculado-card:hover .servico-overlay {
    opacity: 1;
}

.servico-vinculado-card .card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}
.servico-vinculado-card .card-title a:hover {
    color: #515EFB;
}
/* FAQ Cards */
.faq-container {
    max-width: 100%;
}

.faq-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #515EFB;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8fafc;
}
.faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1), rgba(48, 182, 249, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #515EFB;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-title {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-arrow {
    width: 35px;
    height: 35px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow {
    background: #515EFB;
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid #f3f4f6;
    background: #fafbfc;
}

.faq-content {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
}
.faq-answer-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.faq-answer-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}
/* FAQ Image Container */
.faq-image-container img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.faq-badge .badge {
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(81, 94, 251, 0.3);
}

/* FAQ CTA */
.faq-cta {
    margin-top: 0;
}

.faq-cta .cta-card {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(81, 94, 251, 0.2);
    position: relative;
    overflow: hidden;
}
.faq-cta .cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -10px) rotate(180deg); }
}

.faq-cta .cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.faq-cta .cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-cta .cta-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.faq-cta .cta-buttons {
    position: relative;
    z-index: 2;
}

.faq-cta .cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.faq-cta .cta-buttons .btn-primary {
    background: white;
    color: #515EFB;
    border: none;
}

.faq-cta .cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-cta .cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.faq-cta .cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Botão Branco Personalizado - estilo btn-outline-primary bg-white */
.btn-white-custom {
    background-color: #ffffff !important;
    border: 2px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    border-radius: 8px !important;
    transition: all 0.15s ease-in-out;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: none !important;
}
.btn-white-custom:hover {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.btn-white-custom:focus {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
/* Botão de contato personalizado */
.btn-contact-custom {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-contact-custom:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-contact-custom:focus {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}
/* Benefícios e Resultados */
.resultado-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.resultado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.beneficios-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beneficio-item-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #515EFB;
}

.beneficio-item-card:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}
.beneficio-icon {
    width: 35px;
    height: 35px;
    background: #515EFB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.beneficio-content {
    flex: 1;
}

.beneficio-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.resultados-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resultado-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.resultado-item:hover {
    background: #dcfce7;
    transform: translateX(3px);
}

.resultado-icon {
    width: 30px;
    height: 30px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.resultado-content {
    flex: 1;
}

.resultado-text {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.metricas-destaque {
    margin-top: 1.5rem;
}

.metrica-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.metrica-card:hover {
    border-color: #515EFB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.15);
}

.metrica-numero {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

.metrica-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* Benefícios Compactos */
.beneficios-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.beneficio-compact-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.beneficio-compact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #515EFB, #30B6F9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.beneficio-compact-item:hover::before {
    transform: scaleX(1);
}

.beneficio-compact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.beneficio-number-compact {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.beneficio-content-compact {
    flex: 1;
}

.beneficio-title-compact {
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.beneficio-icon-compact {
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1), rgba(48, 182, 249, 0.1));
    color: #515EFB;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
/* Responsivo */
@media (max-width: 768px) {
    .processo-timeline {
        flex-direction: column;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    /* Benefícios Compactos Responsivo */
    .beneficios-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .beneficio-compact-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .beneficio-number-compact {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .beneficio-title-compact {
        font-size: 0.9rem;
    }
    
    .beneficio-icon-compact {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    /* FAQ Responsivo */
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .faq-answer-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .faq-answer-text {
        font-size: 0.9rem;
    }
    
    /* FAQ Image Responsivo */
    .faq-image-container img {
        max-height: 300px;
    }
    
    .faq-badge .badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .faq-cta .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-cta .cta-title {
        font-size: 1.2rem;
    }
    
    .faq-cta .cta-description {
        font-size: 0.95rem;
    }
    .faq-cta .cta-buttons .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 280px;
    }
    
    .d-flex.gap-2 {
        gap: 1rem !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .btn-white-custom,
    .btn-contact-custom {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    
    .processo-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .processo-descricao {
        margin: 0;
    }
    
    
    .processo-timeline::before {
        display: none;
    }
    
    .solucao-image {
        height: 200px;
    }
    
    /* Cards em tablet */
    .solucao-card {
        min-height: 420px;
    }
    .solucao-card .card-body {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        height: 3.6rem; /* Altura fixa para 2 linhas em tablet */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .card-description {
        font-size: 0.9rem;
        height: 2.7rem; /* Altura fixa para 2 linhas em tablet */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .beneficio-text {
        font-size: 0.85rem;
    }
    
    .beneficio-icon {
        width: 18px;
        height: 18px;
    }
    
    .beneficio-icon i {
        font-size: 0.7rem;
    }
}
@media (max-width: 576px) {
    /* Cards em mobile */
    .solucao-image {
        height: 180px;
    }
    
    .solucao-card {
        min-height: 380px;
    }
    
    .solucao-card .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
        height: 3rem; /* Altura fixa para 2 linhas em mobile */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .card-description {
        font-size: 0.85rem;
        height: 2.4rem; /* Altura fixa para 2 linhas em mobile */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .beneficio-item {
        margin-bottom: 0.5rem;
        padding: 0.25rem 0;
    }
    
    .beneficio-icon {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }
    
    .beneficio-icon i {
        font-size: 0.65rem;
    }
    
    .beneficio-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .servicos-badges .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .card-cta {
        padding-top: 0.75rem;
    }
}
/* ===================================================== */
/* Home Sections                                         */
/* ===================================================== */
.home-hero-section {
    position: relative;
}
.home-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/home/hero.jpg') center center / cover no-repeat;
    filter: grayscale(100%) sepia(30%) hue-rotate(200deg) saturate(1.5);
    z-index: -1;
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 100%);
}

.home-hero-section .hero-badge {
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(81, 94, 251, 0.08);
    color: #515EFB;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.home-hero-section .hero-badge i {
    color: #515EFB;
    transition: inherit;
}
.home-hero-section .hero-badge:hover {
    background-color: #515EFB !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(81, 94, 251, 0.25);
}
.home-hero-section .hero-badge:hover i {
    color: #ffffff !important;
}

.home-hero-section .btn {
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(81, 94, 251, 0.15);
}
.home-hero-section .btn.btn-primary {
    background: var(--gradient-primary);
    border: none;
}
.home-hero-section .btn.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(81, 94, 251, 0.3);
    transform: translateY(-2px);
}
.home-hero-section .btn.btn-outline-primary.bg-white {
    border: 1px solid #515EFB;
    color: #515EFB;
    background: #ffffff;
    box-shadow: none;
}
.home-hero-section .btn.btn-outline-primary.bg-white:hover {
    box-shadow: 0 10px 25px rgba(81, 94, 251, 0.15);
    transform: translateY(-2px);
}

.home-numeros-section,
.home-numeros-backup-section,
.sobre-cta-final-section {
    position: relative;
    overflow: hidden;
}

.home-numeros-section,
.home-numeros-backup-section {
    background: linear-gradient(135deg, #515efb 0%, #3b49e8 50%, #2d3ddb 100%);
}

.home-numeros-section .floating-shapes,
.home-numeros-backup-section .floating-shapes,
.sobre-cta-final-section .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-numeros-section .shape,
.sobre-cta-final-section .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: home-numeros-float 8s ease-in-out infinite;
}
.home-numeros-section .shape-1 {
    width: 55px;
    height: 55px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    border-radius: 12px;
    animation-delay: 0s;
}

.home-numeros-section .shape-2 {
    width: 65px;
    height: 65px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    border-radius: 14px;
    animation-delay: 2s;
}
.home-numeros-section .shape-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 80%;
    transform: rotate(45deg);
    border-radius: 9px;
    animation-delay: 4s;
}

.home-numeros-section .shape-4 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 60%;
    transform: rotate(45deg);
    border-radius: 16px;
    animation-delay: 6s;
}
.home-numeros-section .icon-diamond {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-numeros-section .icon-diamond::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-numeros-section .icon-diamond i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.home-numeros-section .hover-lift {
    transition: all 0.3s ease;
}
.home-numeros-section .hover-lift:hover .icon-diamond i {
    transform: scale(1.2);
}
.home-numeros-section .hover-lift:hover .icon-diamond::before {
    transform: rotate(90deg) scale(1.05);
}

.home-clientes-section .client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px;
    transition: all 0.3s ease;
}

.home-clientes-section .client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.home-clientes-section .client-logo-wrapper:hover {
    transform: translateY(-3px);
}

.home-clientes-section .client-logo-wrapper:hover .client-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.home-eixos-card {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}
.home-eixos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--home-eixos-color, #0d6efd), transparent);
    opacity: 1;
}
.home-eixos-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--home-eixos-color, #0d6efd);
    opacity: 0.08;
    border-radius: 8px;
    transform: rotate(45deg);
    animation: home-eixos-diamond 6s ease-in-out infinite;
}

.home-eixos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.home-eixos-card:hover .home-eixos-icon {
    transform: scale(1.1);
}

.home-eixos-card:hover .home-eixos-icon::before {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-eixos-card:hover .home-eixos-icon i {
    transform: scale(1.1);
}
.home-eixos-card--privacidade {
    --home-eixos-color: #FF3399;
}

.home-eixos-card--governanca {
    --home-eixos-color: #47007B;
}

.home-eixos-card--seguranca {
    --home-eixos-color: #515EFB;
}

.home-eixos-card--governanca-ti {
    --home-eixos-color: #08EDE7;
}

.home-eixos-icon {
    transition: all 0.3s ease;
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-eixos-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.home-eixos-card--privacidade .home-eixos-icon::before {
    background: linear-gradient(135deg, #FF3399, #FF6BB3);
}

.home-eixos-card--governanca .home-eixos-icon::before {
    background: linear-gradient(135deg, #47007B, #6B2C91);
}

.home-eixos-card--seguranca .home-eixos-icon::before {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
}
.home-eixos-card--governanca-ti .home-eixos-icon::before {
    background: linear-gradient(135deg, #08EDE7, #30B6F9);
}

.home-eixos-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.home-eixos-section .text-white{
  color: white;
}

.home-eixos-section .text-rosa {
    color: #FF3399 !important;
}

.home-eixos-section .text-roxo {
    color: #47007B !important;
}

.home-eixos-section .text-azul {
    color: #515EFB !important;
}

.home-eixos-section .text-ciano {
    color: #08EDE7 !important;
}

.home-eixos-section .bg-rosa {
    background-color: #FF3399 !important;
}

.home-eixos-section .bg-roxo {
    background-color: #47007B !important;
}

.home-eixos-section .bg-azul {
    background-color: #515EFB !important;
}

.home-eixos-section .bg-ciano {
    background-color: #08EDE7 !important;
}

.home-eixos-section .badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-metodo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.home-metodo-section .card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.home-metodo-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.home-metodo-section .badge {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.home-metodo-gradient-text {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-metodo-section .step-badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-metodo-section .step-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(81, 94, 251, 0.4);
}

.home-metodo-section .list-unstyled li {
    transition: all 0.2s ease;
}

.home-metodo-section .list-unstyled li:hover {
    transform: translateX(4px);
}

.home-solucoes-section .home-solucoes-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.home-solucoes-section .home-solucoes-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.home-solucoes-section .home-solucoes-icon {
    width: 80px;
    height: 80px;
    line-height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--home-solucoes-icon-color, #515EFB);
}

.home-segmentos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.home-segmentos-section .segmento-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.home-segmentos-section .segmento-card .position-relative {
    overflow: hidden;
    height: 200px;
    border-radius: 12px 12px 0 0;
}
.home-segmentos-section .segmento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.home-segmentos-section .overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.1), rgba(48, 182, 249, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.home-segmentos-section .segmento-card .title-2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.home-segmentos-section .segmento-card .text-muted {
    color: #6c757d !important;
}

.home-segmentos-section .segmento-card .list-unstyled i {
    color: #515EFB !important;
}

.home-segmentos-section .segmento-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.home-segmentos-section .segmento-card:hover .segmento-image {
    transform: scale(1.1);
}

.home-segmentos-section .segmento-card:hover .overlay-gradient {
    opacity: 1;
}
.home-segmentos-section .btn {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.home-segmentos-section .btn:hover {
    background: linear-gradient(135deg, #3b49e8, #1e9dd8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 94, 251, 0.4);
}

.home-contato-section {
    background: url('../images/home/contato-lg.jpg') center center / cover no-repeat;
}
.home-contato-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(45, 61, 219, 0.55));
}

.contato-formulario-section {
    background: url('../images/contato/contato.jpg') center center / cover no-repeat;
}
.contato-formulario-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(45, 61, 219, 0.55));
}

.home-contato-section .card,
.contato-formulario-section .card {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.home-contato-section .card:hover,
.contato-formulario-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.home-contato-section .form-control,
.contato-formulario-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.home-contato-section .form-control:focus,
.contato-formulario-section .form-control:focus {
    border-color: #515EFB;
    box-shadow: 0 0 0 0.2rem rgba(81, 94, 251, 0.25);
}

.home-contato-section .form-label,
.contato-formulario-section .form-label {
    font-weight: 600;
    color: #2c3e50;
}

.home-contato-section .form-check-input:checked,
.contato-formulario-section .form-check-input:checked {
    background-color: #515EFB;
    border-color: #515EFB;
}

.home-contato-section .btn-primary,
.contato-formulario-section .btn-primary {
    background: linear-gradient(135deg, #515EFB, #30B6F9);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.home-contato-section .btn-primary:hover,
.contato-formulario-section .btn-primary:hover {
    background: linear-gradient(135deg, #3b49e8, #1e9dd8);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(81, 94, 251, 0.4);
}
.home-contato-section .was-validated .form-control:invalid,
.contato-formulario-section .was-validated .form-control:invalid,
.home-contato-section .form-control.is-invalid,
.contato-formulario-section .form-control.is-invalid {
    border-color: #dc3545;
}

.home-contato-section .was-validated .form-control:valid,
.contato-formulario-section .was-validated .form-control:valid,
.home-contato-section .form-control.is-valid,
.contato-formulario-section .form-control.is-valid {
    border-color: #198754;
}

.home-contato-section .was-validated .form-check-input:invalid,
.contato-formulario-section .was-validated .form-check-input:invalid,
.home-contato-section .form-check-input.is-invalid,
.contato-formulario-section .form-check-input.is-invalid {
    border-color: #dc3545;
}

.home-contato-section .was-validated .form-check-input:valid,
.contato-formulario-section .was-validated .form-check-input:valid,
.home-contato-section .form-check-input.is-valid,
.contato-formulario-section .form-check-input.is-valid {
    border-color: #198754;
}

.home-segmentos-section .segmento-card .title-2 {
    font-size: 1.3rem;
}

.home-numeros-section .shape,
.sobre-cta-final-section .shape {
    animation-name: home-numeros-float;
}

.sobre-cta-final-section .shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    border-radius: 12px;
    animation-delay: 0s;
}
.sobre-principios-section .sobre-mvv-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(81, 94, 251, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}
.sobre-principios-section .sobre-mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(81, 94, 251, 0.15);
    border-color: rgba(81, 94, 251, 0.2);
}
.sobre-principios-section .sobre-mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(81, 94, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.sobre-principios-section .sobre-mvv-icon i {
    font-size: 2rem;
    color: #515EFB;
}
.sobre-principios-section .sobre-mvv-card:hover .sobre-mvv-icon {
    background: rgba(81, 94, 251, 0.15);
    transform: scale(1.1);
}
.sobre-principios-section .sobre-mvv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.sobre-principios-section .sobre-mvv-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}
.sobre-principios-section .sobre-mvv-highlight {
    background: rgba(81, 94, 251, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    border-left: 3px solid #515EFB;
}
.sobre-principios-section .sobre-mvv-highlight strong {
    color: #515EFB;
    font-weight: 600;
}
.sobre-principios-section .sobre-principios-panel {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(81, 94, 251, 0.1);
}
.sobre-principios-section .sobre-principios-panel h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
}
.sobre-principios-section .sobre-principio-item {
    display: flex;
    align-items: flex-start;
    background: rgba(81, 94, 251, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(81, 94, 251, 0.08);
    height: 100%;
}
.sobre-principios-section .sobre-principio-item:hover {
    background: rgba(81, 94, 251, 0.08);
    border-color: rgba(81, 94, 251, 0.15);
    transform: translateY(-2px);
}
.sobre-principios-section .sobre-principio-icon {
    width: 40px;
    height: 40px;
    background: rgba(81, 94, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}
.sobre-principios-section .sobre-principio-icon i {
    font-size: 1.1rem;
    color: #515EFB;
}
.sobre-principios-section .sobre-principio-content h5 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.sobre-principios-section .sobre-principio-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .sobre-principios-section .sobre-mvv-card {
        margin-bottom: 2rem;
    }
}
@media (max-width: 768px) {
    .sobre-principios-section .sobre-mvv-card {
        padding: 1.75rem 1.25rem;
    }

    .sobre-principios-section .sobre-mvv-icon {
        width: 60px;
        height: 60px;
    }

    .sobre-principios-section .sobre-mvv-icon i {
        font-size: 1.75rem;
    }

    .sobre-principios-section .sobre-mvv-title {
        font-size: 1.25rem;
    }

    .sobre-principios-section .sobre-principios-panel {
        padding: 1.75rem;
    }

    .sobre-principios-section .sobre-principio-item {
        padding: 1rem;
    }
}
@media (max-width: 576px) {
    .sobre-principios-section .sobre-mvv-card {
        padding: 1.5rem 1rem;
    }

    .sobre-principios-section .sobre-mvv-icon {
        width: 50px;
        height: 50px;
    }

    .sobre-principios-section .sobre-mvv-icon i {
        font-size: 1.5rem;
    }

    .sobre-principios-section .sobre-mvv-title {
        font-size: 1.1rem;
    }

    .sobre-principios-section .sobre-mvv-description {
        font-size: 0.9rem;
    }

    .sobre-principios-section .sobre-principios-panel {
        padding: 1.5rem;
    }

    .sobre-principios-section .sobre-principio-item {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
    }

    .sobre-principios-section .sobre-principio-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
        align-self: center;
    }
}
.sobre-principios-section .sobre-mvv-card:nth-child(1) { animation-delay: 0.1s; }
.sobre-principios-section .sobre-mvv-card:nth-child(2) { animation-delay: 0.2s; }
.sobre-principios-section .sobre-mvv-card:nth-child(3) { animation-delay: 0.3s; }

.sobre-timeline-section .sobre-timeline-container {
    position: relative;
    padding: 4rem 0;
    overflow-x: visible;
    overflow-y: visible;
    min-height: 400px;
    white-space: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sobre-cta-final-section .shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    border-radius: 16px;
    animation-delay: 2s;
}
.sobre-cta-final-section .shape-3 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 80%;
    transform: rotate(45deg);
    border-radius: 10px;
    animation-delay: 4s;
}
.home-eixos-section .features.feature-clean.course-feature {
    margin-bottom: 1rem;
}
.home-eixos-section .list-unstyled li {
    opacity: 1;
}
@media (max-width: 992px) {
    .home-metodo-section .card {
        margin-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .home-eixos-section .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .home-segmentos-section .segmento-card,
    .home-clientes-section .client-logo-wrapper {
        margin-bottom: 1rem;
    }

    .home-metodo-section .pe-lg-4,
    .home-metodo-section .ps-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@keyframes home-numeros-float {
    0%, 100% {
        transform: translateY(0px) rotate(45deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(225deg);
        opacity: 1;
    }
}
@keyframes home-numeros-backup-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
@keyframes home-eixos-diamond {
    0%, 100% {
        transform: rotate(45deg) translateY(0px) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: rotate(45deg) translateY(-8px) scale(1.1);
        opacity: 0.12;
    }
}

/* ===================================================== */
/* Credibilidade (Sobre)                                 */
/* ===================================================== */
.credibilidade-section .associacao-card,
.credibilidade-section .partner-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(81, 94, 251, 0.1) !important;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}
.credibilidade-section .associacao-card:hover,
.credibilidade-section .partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(81, 94, 251, 0.15) !important;
    border-color: rgba(81, 94, 251, 0.2) !important;
}

.credibilidade-section .associacao-card::before,
.credibilidade-section .partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 94, 251, 0.05), transparent);
    transition: left 0.5s ease;
}

.credibilidade-section .associacao-card:hover::before,
.credibilidade-section .partner-card:hover::before {
    left: 100%;
}

.credibilidade-section .associacao-logo,
.credibilidade-section .partner-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.credibilidade-section .associacao-logo img,
.credibilidade-section .partner-logo img {
    transition: all 0.3s ease;
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.credibilidade-section .associacao-card:hover .associacao-logo img,
.credibilidade-section .partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.credibilidade-section .associacao-card .card-body,
.credibilidade-section .partner-card .card-body {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credibilidade-section .associacao-card,
.credibilidade-section .partner-card {
    padding: 1rem;
}

.credibilidade-section .associacao-card.has-badge,
.credibilidade-section .partner-card.has-badge {
    padding-top: 2rem;
}
.credibilidade-section .associacao-card h6,
.credibilidade-section .partner-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.credibilidade-section .associacao-card p,
.credibilidade-section .partner-card p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
    flex: 1;
}
.credibilidade-section .associacao-card .badge,
.credibilidade-section .partner-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 0.7rem;
}

.credibilidade-section .midia-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(81, 94, 251, 0.1) !important;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.credibilidade-section .midia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(81, 94, 251, 0.15) !important;
    border-color: rgba(81, 94, 251, 0.2) !important;
}

.credibilidade-section .midia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 94, 251, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}
.credibilidade-section .midia-card:hover::before {
    left: 100%;
}

.credibilidade-section .midia-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.credibilidade-section .midia-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.credibilidade-section .midia-card:hover .midia-image-container img {
    transform: scale(1.1);
}
.credibilidade-section .midia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 94, 251, 0.8), rgba(48, 182, 249, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.credibilidade-section .midia-card:hover .midia-overlay {
    opacity: 1;
}

.credibilidade-section .midia-type-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #515EFB;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.credibilidade-section .midia-type-badge i {
    font-size: 1rem;
}

.credibilidade-section .midia-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.credibilidade-section .midia-card .title {
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.credibilidade-section .midia-card .title:hover {
    color: #515EFB !important;
}

.credibilidade-section .midia-card .text-muted {
    line-height: 1.5;
    font-size: 0.9rem;
}
.credibilidade-section .midia-actions .btn {
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.credibilidade-section .midia-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(81, 94, 251, 0.3);
}

.credibilidade-section .midia-actions .btn:hover .uil-external-link-alt {
    transform: translateX(2px);
}
@media (max-width: 768px) {
    .credibilidade-section .associacao-card,
    .credibilidade-section .partner-card {
        margin-bottom: 1rem;
        height: 200px;
    }

    .credibilidade-section .associacao-logo,
    .credibilidade-section .partner-logo {
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .credibilidade-section .associacao-logo img,
    .credibilidade-section .partner-logo img {
        max-height: 50px;
    }

    .credibilidade-section .associacao-card h6,
    .credibilidade-section .partner-card h6 {
        font-size: 0.9rem;
    }

    .credibilidade-section .associacao-card p,
    .credibilidade-section .partner-card p {
        font-size: 0.75rem;
    }

    .credibilidade-section .associacao-card.has-badge,
    .credibilidade-section .partner-card.has-badge {
        padding-top: 2rem;
    }

    .credibilidade-section .associacao-card .badge,
    .credibilidade-section .partner-card .badge {
        font-size: 0.65rem;
        top: 8px;
        right: 8px;
    }

    .credibilidade-section .midia-card {
        margin-bottom: 1rem;
    }

    .credibilidade-section .midia-image-container {
        height: 160px;
    }

    .credibilidade-section .midia-card .card-body {
        padding: 1rem;
    }

    .credibilidade-section .midia-card .title {
        font-size: 1rem;
    }

    .credibilidade-section .midia-card .text-muted {
        font-size: 0.85rem;
    }

    .credibilidade-section .midia-type-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
@media (max-width: 576px) {
    .credibilidade-section .associacao-card,
    .credibilidade-section .partner-card {
        padding: 0.75rem !important;
        height: 220px;
    }

    .credibilidade-section .associacao-card.has-badge,
    .credibilidade-section .partner-card.has-badge {
        padding-top: 1.75rem !important;
    }

    .credibilidade-section .associacao-logo,
    .credibilidade-section .partner-logo {
        height: 50px;
        margin-bottom: 0.5rem;
    }

    .credibilidade-section .associacao-logo img,
    .credibilidade-section .partner-logo img {
        max-height: 40px !important;
    }

    .credibilidade-section .associacao-card h6,
    .credibilidade-section .partner-card h6 {
        font-size: 0.85rem;
        min-height: 2.2rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .credibilidade-section .associacao-card p,
    .credibilidade-section .partner-card p {
        font-size: 0.7rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .credibilidade-section .associacao-card:not(.has-badge) p,
    .credibilidade-section .partner-card:not(.has-badge) p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        min-height: 2.4rem;
    }

    .credibilidade-section .associacao-card.has-badge p,
    .credibilidade-section .partner-card.has-badge p {
        -webkit-line-clamp: 1;
        line-clamp: 1;
        min-height: 1.2rem;
        max-height: 1.2rem;
    }

    .credibilidade-section .midia-card {
        margin-bottom: 1rem;
    }

    .credibilidade-section .midia-image-container {
        height: 140px;
    }

    .credibilidade-section .midia-card .card-body {
        padding: 0.75rem;
    }

    .credibilidade-section .midia-card .title {
        font-size: 0.95rem;
    }
    .credibilidade-section .midia-card .text-muted {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .credibilidade-section .midia-type-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .credibilidade-section .midia-actions .btn {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

/* ===================================================== */
/* Sobre Sections                                         */
/* ===================================================== */
.highlight-text {
    background: rgba(81, 94, 251, 0.06);
    color: #515EFB;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(81, 94, 251, 0.2);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #515EFB;
    transition: width 0.3s ease;
}
.highlight-text:hover {
    background: rgba(81, 94, 251, 0.1);
    color: #3d47d9;
    border-bottom-color: #515EFB;
    transform: translateY(-1px);
}

.highlight-text:hover::after {
    width: 100%;
}
.sobre-timeline-section .sobre-timeline-container {
    position: relative;
    padding: 4rem 0;
    overflow-x: visible;
    overflow-y: visible;
    min-height: 400px;
    white-space: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sobre-timeline-section .sobre-timeline-container .sobre-timeline-card {
    white-space: normal !important;
}

.sobre-timeline-section .sobre-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #515EFB 0%, #30B6F9 50%, #FF3399 100%);
    border-radius: 2px;
    z-index: 1;
}

.sobre-timeline-section .sobre-timeline-marco {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: calc(100% / 7);
    text-align: center;
    z-index: 2;
    height: 350px;
    margin: 0 5px;
    white-space: normal;
}

.sobre-timeline-section .sobre-timeline-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 4px solid #515EFB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(81, 94, 251, 0.2);
    transition: all 0.3s ease;
}

.sobre-timeline-section .sobre-timeline-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(81, 94, 251, 0.3);
}

.sobre-timeline-section .sobre-timeline-year {
    font-weight: 700;
    font-size: 0.9rem;
    color: #515EFB;
}

.sobre-timeline-section .sobre-timeline-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(81, 94, 251, 0.1);
    transition: all 0.3s ease;
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
}

.sobre-timeline-section .sobre-timeline-card:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 30px rgba(81, 94, 251, 0.15);
}

.sobre-timeline-section .sobre-timeline-card-destaque {
    background: linear-gradient(135deg, #515EFB 0%, #30B6F9 100%);
    border: 2px solid #30B6F9;
    color: #ffffff;
}

.sobre-timeline-section .sobre-timeline-card-destaque .sobre-timeline-title {
    color: #ffffff;
    font-weight: 700;
}

.sobre-timeline-section .sobre-timeline-card-destaque .sobre-timeline-description {
    color: rgba(255, 255, 255, 0.9);
}

.sobre-timeline-section .sobre-timeline-card-top {
    top: 20px;
}

.sobre-timeline-section .sobre-timeline-card-bottom {
    bottom: 15px;
}

.sobre-timeline-section .sobre-timeline-title {
    color: #2c3e50;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.sobre-timeline-section .sobre-timeline-description {
    color: #6c757d;
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 1200px) {
    .sobre-timeline-section .sobre-timeline-marco {
        max-width: calc(100% / 6);
        height: 350px;
        margin: 0 3px;
    }

    .sobre-timeline-section .sobre-timeline-card {
        width: 150px;
        min-height: 110px;
        padding: 0.75rem;
    }

    .sobre-timeline-section .sobre-timeline-card-top,
    .sobre-timeline-section .sobre-timeline-card-bottom {
        top: 0;
        bottom: 0;
    }

    .sobre-timeline-section .sobre-timeline-title {
        font-size: 0.8rem;
    }

    .sobre-timeline-section .sobre-timeline-description {
        font-size: 0.65rem;
    }
}

@media (max-width: 992px) {
    .sobre-timeline-section .sobre-timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sobre-timeline-section .sobre-timeline-marco {
        max-width: calc(100% / 4);
        height: 320px;
        margin: 0 2px;
    }

    .sobre-timeline-section .sobre-timeline-card {
        width: 130px;
        min-height: 100px;
        padding: 0.65rem;
    }

    .sobre-timeline-section .sobre-timeline-circle {
        width: 70px;
        height: 70px;
    }

    .sobre-timeline-section .sobre-timeline-year {
        font-size: 0.8rem;
    }

    .sobre-timeline-section .sobre-timeline-title {
        font-size: 0.75rem;
    }

    .sobre-timeline-section .sobre-timeline-description {
        font-size: 0.6rem;
    }
}
@media (max-width: 768px) {
    .sobre-timeline-section .sobre-timeline-container {
        padding: 2rem 0;
        white-space: normal;
        display: block;
        min-height: auto;
    }

    .sobre-timeline-section .sobre-timeline-line {
        display: none;
    }

    .sobre-timeline-section .sobre-timeline-marco {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        margin-bottom: 2.5rem;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        height: auto;
        max-width: 100%;
        flex: none;
    }

    .sobre-timeline-section .sobre-timeline-circle {
        width: 100%;
        height: 25px;
        margin: 0 auto 1.5rem auto;
        background: linear-gradient(135deg, #515EFB, #30B6F9);
        border: none;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sobre-timeline-section .sobre-timeline-year {
        color: #ffffff;
        font-size: 0.75rem;
    }

    .sobre-timeline-section .sobre-timeline-card,
    .sobre-timeline-section .sobre-timeline-card-top,
    .sobre-timeline-section .sobre-timeline-card-bottom {
        width: 100%;
        margin: 0;
        position: relative;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding: 1.25rem;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .sobre-timeline-section .sobre-timeline-container {
        padding: 1.5rem 0;
    }

    .sobre-timeline-section .sobre-timeline-marco {
        margin-bottom: 2rem;
    }

    .sobre-timeline-section .sobre-timeline-circle {
        width: 100%;
        height: 25px;
        margin: 0 auto 1rem auto;
    }

    .sobre-timeline-section .sobre-timeline-year {
        font-size: 0.7rem;
    }

    .sobre-timeline-section .sobre-timeline-card {
        padding: 1rem;
    }

    .sobre-timeline-section .sobre-timeline-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sobre-timeline-section .sobre-timeline-description {
        font-size: 0.85rem;
    }
}

.sobre-timeline-section .sobre-timeline-marco {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .sobre-timeline-section .sobre-timeline-marco {
    opacity: 0;
    transform: translateY(20px);
}

.sobre-timeline-section .sobre-timeline-marco.animate {
    opacity: 1;
    transform: translateY(0);
}

.sobre-timeline-section .sobre-timeline-marco:nth-child(1) { transition-delay: 0.1s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(2) { transition-delay: 0.2s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(3) { transition-delay: 0.3s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(4) { transition-delay: 0.4s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(5) { transition-delay: 0.5s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(6) { transition-delay: 0.6s; }
.sobre-timeline-section .sobre-timeline-marco:nth-child(7) { transition-delay: 0.7s; }

@media (max-width: 768px) {
    .highlight-text {
        padding: 0.1rem 0.2rem;
        font-size: 0.95em;
        border-bottom-width: 1px;
    }

    .highlight-text::after {
        height: 1px;
    }
}