@charset "UTF-8";
/* Animações de Fade-In */
@keyframes fadeInLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    /* Começa menor */
    opacity: 0;
  }
  to {
    transform: scale(1);
    /* Termina no tamanho normal */
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flipIn {
  0% {
    transform: rotate3d(-1, 1, 0, -80deg);
    opacity: 0;
  }
  100% {
    transform: rotate3d(1, 1, 0, 0deg);
    opacity: 1;
  }
}
@keyframes loopScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* Aplicando as animações nas classes de animação */
.fadeInLeft.show-animate {
  animation: fadeInLeft 1s ease-out forwards;
}

.fadeInRight.show-animate {
  animation: fadeInRight 1s ease-out forwards;
}

.fadeInTop.show-animate {
  animation: fadeInTop 1s ease-out forwards;
}

.fadeInBottom.show-animate {
  animation: fadeInBottom 1s ease-out forwards;
}

.zoomIn.show-animate {
  animation: zoomIn 1s ease-out forwards;
}

/* Ajustes gerais para tornar os elementos invisíveis até a animação */
.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.zoomIn {
  opacity: 0;
}

/* Classe que ativa a animação */
.show-animate {
  opacity: 1;
}

.bg-green {
  background: linear-gradient(30deg, #14154e, #2e2f89);
}

.bg-cinza {
  background: #f5f5f5;
}

.bg-dark1 {
  background: #2b2da6;
}

.bg-dark2 {
  background: linear-gradient(30deg, #14154e, #2e2f89);
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.hidden-scrolling {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

section {
  overflow-x: hidden;
}

.section-padding {
  padding: 75px 0;
}

.sticky-div {
  position: sticky;
  top: 130px;
  z-index: 4;
}

.overflow-unset {
  overflow: unset !important;
}

.moreText {
  display: none;
}

.go-top-btn {
  background: #2b2da6;
  height: 55px;
  width: 55px;
  right: 15px;
  bottom: 10px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.4s;
  display: none;
  cursor: pointer;
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

.sticky-div {
  position: sticky !important;
  top: 130px;
  z-index: 4;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #2e2f89 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #2e2f89;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #14154e;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: none;
  transition: 0.4s ease;
}

p {
  color: #171717;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 22px;
}

.section-title h1,
.section-title h2 {
  font-size: 3em;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
}
.section-title span {
  text-transform: uppercase;
  font-size: 0.9em;
  display: block;
}

.int-typography h2,
.int-typography h3,
.int-typography h4 {
  margin-bottom: 10px;
}
.int-typography ul {
  margin-bottom: 10px;
}
.int-typography ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 5px;
  font-size: 1em;
}

.divider {
  background: #2e2f89;
  -webkit-mask-image: url(../img/logo/divider.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/logo/divider.svg);
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 55px;
  height: 25px;
}

.title-area2 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}
.title-area2 span,
.title-area2 .subtitle {
  position: relative;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  color: #2e2f89;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 8px 15px;
  padding-left: 20px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.title-area2 span::before,
.title-area2 .subtitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #14154e;
  animation: pulse-shadow 2s infinite;
  opacity: 1;
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 45, 166, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(43, 45, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 45, 166, 0);
  }
}
.title-area2 h2,
.title-area2 h3,
.title-area2 .title {
  color: #171717;
  font-size: 2.6rem;
  line-height: 2.6rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -0.25em;
}
.title-area2 h2 b,
.title-area2 h3 b,
.title-area2 .title b {
  font-weight: 900;
  color: #2e2f89;
}
.title-area2 h2 b.tam2,
.title-area2 h3 b.tam2,
.title-area2 .title b.tam2 {
  font-size: 1.8rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.title-area2 p {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-top: 20px;
  font-weight: 300;
  color: #171717;
}
.title-area2 .shape {
  height: 30px;
  width: 200px;
  position: relative;
  margin-top: 10px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 .shape {
    width: 200px;
  }
}
.title-area2 .shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-image: url(../img/banners/divider-shape2.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.title-area2.white h2,
.title-area2.white h3,
.title-area2.white .title {
  color: #fff;
}
.title-area2.white p {
  color: #fff;
}
.title-area2.white b {
  color: #2e2f89;
}
.title-area2.white span,
.title-area2.white .subtitle {
  color: #2e2f89;
}
.title-area2.white span .subtitle-tagline,
.title-area2.white .subtitle .subtitle-tagline {
  border: 1px solid #ccc;
}
.title-area2.white span .subtitle-tagline::after,
.title-area2.white .subtitle .subtitle-tagline::after {
  background: #fff;
}
.title-area2.text-center {
  text-align: center;
}
.title-area2.text-center span,
.title-area2.text-center .subtitle {
  left: 50%;
  transform: translateX(-50%);
}
.title-area2.text-center .shape {
  margin: 0 auto;
}
.title-area2.dark h2,
.title-area2.dark h3,
.title-area2.dark .title {
  color: #fff;
}

header .header-area {
  max-width: 100%;
}
@media (max-width: 991px) {
  header .header-area {
    overflow-x: clip;
  }
}
header .top_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(20deg, #2e2f89, #14154e);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  height: auto;
  min-height: 40px;
  overflow: visible;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .top_menu {
    padding: 5px 20px;
  }
}
header .top_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .container-fluid {
  position: relative;
  z-index: 2;
}
header .top_menu .container-fluid .row {
  align-items: center;
}
header .top_menu .header-social {
  display: flex;
  gap: 6px;
  align-items: center;
}
header .top_menu .header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
header .top_menu .header-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s ease;
}
header .top_menu .header-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
header .top_menu .header-social a:hover::before {
  left: 100%;
}
header .top_menu .header-social a i {
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: #fff;
}
header .top_menu .contact-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 2px;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
header .top_menu .contact-menu .dn_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
header .top_menu .contact-menu .dn_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: width 0.3s ease;
}
header .top_menu .contact-menu .dn_btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
header .top_menu .contact-menu .dn_btn:hover::before {
  width: 100%;
}
header .top_menu .contact-menu .dn_btn i {
  font-size: 14px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .contact-menu .dn_btn {
    font-size: 11px;
    gap: 4px;
    padding: 3px 8px;
  }
}
header .header-area {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 991px) {
  header .header-area:has(.nav-menu.open) {
    z-index: 10025;
  }
}
@media (min-width: 992px) {
  header .header-area {
    overflow: visible;
  }
}
header .header-area.sticky {
  background: rgba(46, 47, 137, 0.8);
  backdrop-filter: blur(15px);
  animation: remove-top 0.8s ease-in-out;
  animation-fill-mode: none;
}
@media (max-width: 991px) {
  header .header-area.sticky {
    animation: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@keyframes remove-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #fff;
}
header .header-area.sticky .top_menu {
  display: none;
}
header .header-area .header-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 12px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0px 20px;
  min-height: 96px;
  height: auto;
  background: #fff;
  backdrop-filter: blur(10px);
}
@media (min-width: 992px) {
  header .header-area .header-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo nav actions";
    align-items: center;
    overflow: visible;
  }
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main {
    padding: 0px 10px;
    gap: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main {
    padding: 0px 16px;
    padding-right: 56px;
    background: #fff;
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
}
header .header-area .header-main__logo {
  flex-shrink: 0;
  text-decoration: none;
}
@media (min-width: 992px) {
  header .header-area .header-main__logo {
    grid-area: logo;
  }
}
header .header-area .header-main__nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  header .header-area .header-main__nav {
    grid-area: nav;
    justify-content: center;
    overflow: visible;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main__nav {
    flex: 0 0 auto;
    margin-left: auto;
  }
}
header .header-area .header-main__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 992px) {
  header .header-area .header-main__actions {
    grid-area: actions;
    justify-self: end;
  }
}
@media only screen and (min-width: 1441px) {
  header .header-area .header-main__actions {
    gap: 10px;
  }
}
header .header-area .header-main .logo {
  padding: 0 8px;
  width: auto;
  max-width: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1441px) {
  header .header-area .header-main .logo {
    max-width: 360px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main .logo {
    max-width: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .logo {
    max-width: 250px;
    padding: 0 6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .header-area .header-main .logo {
    max-width: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .logo {
    max-width: 220px;
  }
}
header .header-area .header-main .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .header-area .header-main .nav-menu {
  padding: 0 4px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    padding: 6px 0;
    margin: 0;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 0;
  flex-shrink: 0;
  position: relative;
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a {
  display: block;
  padding: 10px 8px;
  font-size: 18px;
  letter-spacing: 0.02rem;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    white-space: nowrap;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a .nav-link__extra {
  display: none;
}
@media only screen and (min-width: 1441px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 19px;
    padding: 10px 9px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 15px;
    padding: 8px 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 14px;
    padding: 8px 4px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background: #2b2da6;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
header .header-area .header-main .nav-menu .menu .menu-item > a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  position: relative;
  top: 1px;
  background: transparent;
  transition: all 0.3s;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover {
  color: #2e2f89;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus:after {
  background-color: #2b2da6;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover::after, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav::after {
  width: 100%;
  background: #2e2f89;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 350px;
  max-height: 400px;
  overflow-y: auto;
  position: absolute;
  left: 0;
  top: 100%;
  background: #14154e;
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-top: 3px solid #14154e;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  z-index: 1005;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: all 0.4s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #f1f1f1;
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    color: #2e2f89;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
header .header-area .header-main .contact-btn {
  flex-shrink: 0;
  align-items: center;
  gap: 6px !important;
}
@media only screen and (min-width: 1441px) {
  header .header-area .header-main .contact-btn {
    gap: 10px !important;
  }
}
header .header-area .header-main .contact-btn .btn-one {
  padding: 9px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-height: 0;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main .contact-btn .btn-one {
    padding: 8px 11px !important;
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .contact-btn .btn-one {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
}
@media only screen and (min-width: 1441px) {
  header .header-area .header-main .contact-btn .btn-one {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }
}
header .header-area .header-main .header-search {
  flex-shrink: 1;
  align-self: center;
  min-width: 0;
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #2e2f89;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2f89;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -9px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 9px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 30px;
  background-color: transparent;
  color: #2e2f89;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
header .header-area .contact-btn .btn-main {
  padding: 18px 30px;
}

.padding-banner {
  padding-top: 142px;
}
@media (max-width: 991px) {
  .padding-banner {
    padding-top: 110px;
  }
}

@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 {
    top: 8px;
    left: calc(100% + 21px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children-2:hover .sub-menu-2 {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a {
    padding: 12px 45px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a:hover {
    padding-left: 45px;
  }
}
@media (max-width: 991px) {
  header {
    overflow-x: clip;
    max-width: 100%;
  }
}
header .header-area > .menu-overlay {
  position: fixed;
  z-index: 10010;
  background-color: rgba(0, 0, 0, 0.5);
  inset: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .header-area > .menu-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  header .header-area .header-main {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main__nav {
    margin-left: auto;
    flex: 0 0 auto;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main__actions {
    display: none !important;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: 12px 0 calc(16px + env(safe-area-inset-bottom, 0px));
    background-color: #171717;
    z-index: 10030;
    isolation: isolate;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, visibility 0.4s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
  }
  header .header-area .header-main .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  header .header-area .header-main .nav-menu .close-nav-menu {
    display: flex;
    color: #fff;
    margin: 0 0 12px;
    padding: 8px 16px;
    justify-content: flex-end;
  }
  header .header-area .header-main .nav-menu .menu {
    display: block;
    width: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    color: #ffffff;
    padding: 12px 16px;
    border-bottom: 1px solid #333333;
    font-size: 16px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 24px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
    font-size: 14px;
  }
  header .header-area .header-main .nav-menu .menu .has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.footer-area {
  background: linear-gradient(30deg, #14154e, #2e2f89);
  padding: 65px 0 0;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 70px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .single-footer-caption .footer-logo {
    justify-content: center;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  object-fit: contain;
  width: 320px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
  filter: brightness(0) invert(1);
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #f5f5f5;
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  margin-bottom: 35px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #14154e;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #14154e;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #fff;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #ddd;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a i {
  margin-right: 2px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(10);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 18px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #2e2f89;
  border-radius: 50%;
  line-height: 40px !important;
  margin-right: 7px;
  color: #fff;
  line-height: 41px !important;
  transition: 0.4s ease;
}
.social_links ul li a:hover {
  background: #f5f5f5;
  color: #2e2f89;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-center {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
}

.slider-area {
  background-image: url(../img/banners/hero-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area {
    margin-top: 90px;
  }
}
.slider-area .slider-height {
  height: 380px;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height {
    height: 280px;
  }
}
.slider-area .slider-height .hero-cap {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .slider-height .hero-cap {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap {
    padding-top: 10px;
  }
}
.slider-area .slider-height .hero-cap h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
.slider-area .slider-height .hero-cap .ajust-link {
  color: #fff;
  font-weight: 500;
}
.slider-area .slider-height .hero-cap .ajust-link:hover {
  color: #2b2da6;
}
.slider-area .slider-height .hero-cap .divider {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .divider {
    margin: 0 auto;
  }
}
.slider-area .slider-height .hero-cap .color-w {
  color: #2b2da6;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .color-w {
    text-align: center;
  }
}
.slider-area .hero-overly {
  position: relative;
  z-index: 1;
}
.slider-area .hero-overly::before {
  position: absolute;
  content: "";
  background: rgba(15, 15, 15, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.blog-area {
  padding: 65px 0;
  overflow-y: hidden;
}
.blog-area .home-blog-single {
  transition: 0.4s ease;
}
.blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 344px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap ul {
  background: #f3f3f3;
}
.blog-area .home-blog-single .blog-img-cap ul li {
  background: #2b2da6;
  display: inline-block;
  font-size: 14px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  color: #787878;
  padding: 20px 30px 20px 120px;
  margin-right: 50px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding: 20px 30px 20px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f3f3f3;
  padding: 20px 20px 20px 30px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
  color: #191d34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  position: relative;
  padding-left: 50px;
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.blog-area .home-blog-single:hover {
  box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
.blog-area .home-blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.brands-area {
  background: #eee;
  padding: 40px 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brands-area .title-area2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.brands-area .title {
  font-size: 2rem !important;
  line-height: 2.2rem !important;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
    margin-bottom: 20px;
  }
}
.brands-area .desc {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}
.brands-area .item-brand {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  padding: 10px;
}
.brands-area .item-brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

button.btn-main {
  border: none;
}

.btn-main {
  background: #14154e;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 13px 20px;
  text-transform: uppercase;
  font-family: "Inter Tight", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  -moz-user-select: none;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-main::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #2e2f89;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-main:hover {
  color: #fff;
}
.btn-main:hover:after {
  left: 0;
  width: 100%;
}
.btn-main:active {
  top: 2px;
}

.btn-one {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border: 0;
  text-transform: capitalize;
  z-index: 1;
  width: fit-content;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  border-radius: 1px;
  text-transform: uppercase;
  background: #2e2f89;
  color: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-one {
    font-size: 14px;
    padding: 18px 45px;
  }
}
.btn-one.radius {
  border-radius: 999px;
}
.btn-one i {
  font-size: 24px;
  margin-right: 10px;
}
.btn-one::before, .btn-one::after {
  background-color: #07083c;
}
.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 0;
  content: "";
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:hover {
  transform: scale(1.02);
}
.btn-one:hover::before, .btn-one:hover::after {
  height: 100%;
}
.btn-one.color2 {
  background: #2e2f89 !important;
  color: #fff !important;
}
.btn-one.color2::before, .btn-one.color2::after {
  background-color: #2b2da6 !important;
}
.btn-one.color3 {
  background: #07083c !important;
  color: #fff !important;
}
.btn-one.color3::before, .btn-one.color3::after {
  background-color: #2e2f89 !important;
}
.btn-one.color4 {
  background: #07083c !important;
  color: #fff !important;
}
.btn-one.color4::before, .btn-one.color4::after {
  background-color: #2e2f89 !important;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.btn-two {
  position: relative;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  background-color: #2e2f89;
  color: #fff;
  border-radius: 2px;
  padding: 8px 10px;
  margin: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  box-shadow: 3px 3px 25px -5px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in;
}
.btn-two.color2 {
  background-color: #07083c;
}
.btn-two.color2:hover {
  background-color: #f5f5f5;
}
.btn-two.color3 {
  background-color: #2b2da6;
}
.btn-two.color3:hover {
  background-color: #f5f5f5;
}
.btn-two:hover {
  background-color: #14154e;
  transform: scale(1.03);
}
.btn-two:hover .icon .i1 {
  transition: transform 0.3s ease-in-out;
  transform: translate(180%, 0%);
}
.btn-two:hover .icon .i2 {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0px, 0px) rotate(0deg);
}
.btn-two span,
.btn-two .txt {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
}
.btn-two .icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  position: relative;
  color: #2e2f89;
  background-color: #fff;
  border-radius: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.btn-two .icon .i1,
.btn-two .icon .i2 {
  color: #2e2f89;
  font-size: 16px;
  margin: 0;
  position: absolute;
  transform: translate(0%, 0%) rotate(0deg);
}
.btn-two .icon .i2 {
  transform: translate(-200%, 0%) rotate(0deg);
}

.card-two {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-two.has-desc .card-prod-content {
  min-height: 200px;
}
.card-two.has-desc .card-prod-content h2,
.card-two.has-desc .card-prod-content h3 {
  margin-bottom: 10px;
  min-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 45px;
  }
}
.card-two:hover {
  transform: translateY(-5px);
}
.card-two:hover .card-prod-content {
  background-image: linear-gradient(60deg, #2b2da6 0%, #2b2da6 99%);
}
.card-two:hover .card-prod-content::before {
  background-color: #fff;
  height: 70%;
}
.card-two:hover .cart-img img {
  transform: scale(1.02);
}
.card-two:hover .btn-a {
  background-color: #fff;
}
.card-two:hover .btn-a i {
  color: #14154e;
}
.card-two .cart-img {
  overflow: hidden;
  width: 100%;
  height: 290px;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .cart-img {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .card-two .cart-img {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .card-two .cart-img {
    height: 250px;
  }
}
.card-two .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  background-color: #fff;
}
.card-two .cart-img img.obj-contain {
  object-fit: contain;
}
.card-two .card-prod-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #2b2da6 0%, #2b2da6 99%);
  position: relative;
  padding: 30px 25px 30px;
  transition: 0.5s ease;
  min-height: 140px;
}
.card-two .card-prod-content::before {
  position: absolute;
  height: 60%;
  width: 6px;
  background: #14154e;
  content: "";
  left: 0;
  transition: 0.3s;
}
.card-two .card-prod-content h2,
.card-two .card-prod-content h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
  }
}
.card-two .card-prod-content p {
  font-size: 14px;
  color: #fff;
  width: 95%;
  overflow: hidden;
  text-align: left;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-two .card-prod-content .btn-a {
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 575px) {
  .card-two .card-prod-content .btn-a {
    height: 45px;
    width: 45px;
  }
}

.card-03 {
  position: relative;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.card-03:hover .box-image .image img {
  transform: scale(1.03);
}
.card-03:hover .box-image .image::before {
  opacity: 0.2;
}
.card-03:hover .box-image .box-icon::before {
  border-top: 40px solid #767676;
}
.card-03:hover .box-image .box-icon .icon i {
  color: #fff;
}
.card-03:hover .box-image .box-icon .icon img {
  filter: brightness(0) invert(1);
}
.card-03:hover .box-image .box-icon .icon::before {
  top: -50%;
}
.card-03:hover .card-content .btns span {
  color: #fff;
}
.card-03:hover .card-content .btns span::before {
  width: 100%;
  transition: 0.5s ease;
  opacity: 1;
}
.card-03 .box-image {
  position: relative;
  border-radius: 5px;
  height: 250px;
  z-index: 1;
}
.card-03 .box-image .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.card-03 .box-image .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: 1;
  transition: 0.3s ease;
}
.card-03 .box-image .image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85%;
  height: 4px;
  background: #2e2f89;
  opacity: 0.5;
  z-index: 1;
  transition: 0.3s ease;
}
.card-03 .box-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.card-03 .box-image .image img.obj-contain {
  object-fit: contain;
}
.card-03 .box-image .box-icon {
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  bottom: 0;
}
.card-03 .box-image .box-icon::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -40px;
  border-top: 40px solid #e7e0e0;
  border-right: 30px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.card-03 .box-image .box-icon .icon {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f8;
  bottom: -40px;
  right: 35px;
  z-index: 1;
}
.card-03 .box-image .box-icon .icon i {
  font-size: 35px;
  color: #2e2f89;
  transition: 0.3s ease;
}
.card-03 .box-image .box-icon .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  filter: invert(20%) sepia(64%) saturate(3628%) hue-rotate(341deg) brightness(95%) contrast(101%);
}
.card-03 .box-image .box-icon .icon::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #2e2f89;
  transform: translateX(-50%);
  border-radius: 50%;
  transition: 0.5s ease;
  z-index: -1;
}
.card-03 .card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f9f9f9;
  padding-top: 10px;
  min-height: 230px;
}
.card-03 .card-content .text-box {
  position: relative;
  display: block;
  padding: 20px 20px;
}
.card-03 .card-content .text-box h2,
.card-03 .card-content .text-box h3,
.card-03 .card-content .text-box .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
  margin-bottom: 10px;
  min-height: 50px;
}
.card-03 .card-content .text-box p,
.card-03 .card-content .text-box .text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 0;
}
.card-03 .card-content .btns {
  position: relative;
  display: block;
}
.card-03 .card-content .btns span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.016em;
  color: #000;
  background-color: #eeeeee;
  padding: 8px 40px 8px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.card-03 .card-content .btns span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2e2f89;
  width: 50%;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.testimonial-block-one {
  margin: 15px 10px;
}
.testimonial-block-one .inner-box {
  position: relative;
  display: block;
}
.testimonial-block-one .inner-box .text-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 20px;
  padding: 40px 40px 33px 40px;
  margin-bottom: 40px;
}
.testimonial-block-one .inner-box .text-box::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 24px;
  height: 16px;
  left: 68px;
  bottom: -15px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}
.testimonial-block-one .inner-box .rating {
  margin-bottom: 10px;
}
.testimonial-block-one .inner-box .rating i {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #ff8a00;
}
.testimonial-block-one .inner-box .rating .fa-regular.fa-star {
  color: #d1d5db;
}
.testimonial-block-one .inner-box .author-thumb--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e2f89;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: block;
  padding: 14px 0px 14px 100px;
}
.testimonial-block-one .inner-box .author-box .author-thumb {
  position: absolute;
  background: #fff;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1;
}
.testimonial-block-one .inner-box .author-box .author-thumb::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #14154e;
  z-index: -1;
}
.testimonial-block-one .inner-box .author-box .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-block-one .inner-box .author-box p {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.service-card {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 10px;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #14154e 30%, transparent 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.5s;
}
.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-card .content {
  position: absolute;
  z-index: 4;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  transition: 0.3s;
}
.service-card .content .title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.service-card .content .title .icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.service-card .content .title .icon i {
  font-size: 40px;
  color: #fff;
}
.service-card .content .title .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: brightness(0) invert(1);
}
.service-card .content .title h2,
.service-card .content .title h3,
.service-card .content .title h4 {
  color: #fff;
  font-size: 28px;
  transition: 0.3s;
}
.service-card .content .hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  overflow: hidden;
}
.service-card .content .hover-text h2,
.service-card .content .hover-text h3,
.service-card .content .hover-text h4 {
  font-size: 28px;
  transition: 0.3s;
  margin-bottom: 15px;
  color: #fff;
}
.service-card .content .hover-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.service-card .content .btn-link {
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.service-card .content .btn-link i {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
}
.service-card:hover::before {
  height: 100%;
  background: linear-gradient(0deg, #07083c 30%, transparent 100%);
}
.service-card:hover img {
  filter: saturate(0);
}
.service-card:hover .content {
  bottom: 0;
}
.service-card:hover .content .title {
  display: none;
}
.service-card:hover .content .hover-text {
  position: relative;
  bottom: 0;
  left: 0;
  transform: translateY(0%);
}

.card-04 {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
  width: 100%;
  height: 460px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
  display: block;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-04 {
    height: 340px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-04 {
    height: 360px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-04 {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .card-04 {
    height: 390px;
  }
}
@media (max-width: 320px) {
  .card-04 {
    height: 350px;
  }
}
.card-04:hover .thumbnail img {
  transform: scale(1.07);
  filter: brightness(0.8);
}
.card-04:hover::after {
  top: -25%;
  right: -55%;
}
.card-04:hover .inner {
  transform: translateY(-10px) translateX(-50%);
}
.card-04:hover .inner span::after {
  bottom: -55px;
  left: -111px;
}
.card-04::after {
  content: "";
  position: absolute;
  background-image: url(../img/banners/shape-1.webp);
  height: 100%;
  width: 100%;
  top: -70%;
  right: -60%;
  z-index: 0;
  background-repeat: no-repeat;
  transition: 0.3s ease;
  opacity: 0.6;
}
.card-04 .thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.card-04 .thumbnail img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
  transition: 0.3s ease;
  border-radius: 5px;
}
.card-04 .inner {
  padding: 20px 8px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
  transition: 0.3s ease;
}
.card-04:hover .inner .title {
  color: #14154e;
}
.card-04:hover .inner .btn-link i {
  margin-left: 10px;
}
.card-04 .inner .title {
  margin-bottom: 2px;
  transition: 0.3s;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  min-height: 30px;
  color: #07083c;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-04 .inner .title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-04 .inner .title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-04 .inner .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .card-04 .inner .title {
    font-size: 24px;
  }
}
.card-04 .inner .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #5d666f;
  border: 1px solid #2e2f89;
  border-radius: 100px;
  font-size: 13px;
  padding: 4px 16px;
  width: fit-content;
  position: relative;
  margin: 5px auto;
  margin-top: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-04 .inner .btn-link {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-04 .inner .btn-link {
    font-size: 12px;
  }
}
.card-04 .inner .btn-link i {
  font-size: 15px;
  margin-left: 5px;
  transition: 0.3s ease;
}

.cta-area {
  background-image: url(../img/banners/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.35);
  padding: 100px 0;
}
.cta-area .cta-caption h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.cta-area .cta-caption p {
  color: #fff;
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption p {
    text-align: center;
  }
}
.cta-area .btn-main {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b2da6;
}
.cta-area .btn-main::after {
  background: #2e2f89;
  border-radius: 50%;
}
.cta-area .btn-main i {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  .menu-sidebar {
    display: flex;
    justify-content: end;
  }
}

.accordion {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .accordion {
    width: 95%;
  }
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #2e2f89;
}
.accordion .accordion-item button[aria-expanded=true] .icon {
  color: #2e2f89;
}
@media (max-width: 991px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #2e2f89;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #2e2f89;
  border: 1px solid #2e2f89;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 600;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #2b2da6;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #14154e;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    overflow-y: scroll;
  }
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content li {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion .accordion-content p a:hover,
.accordion .accordion-content li a:hover {
  color: #2e2f89;
  padding-left: 5px;
}
@media (max-width: 991px) {
  .accordion .accordion-content p {
    font-weight: 600;
    color: #2b2da6;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
  }
}

.home-form {
  border-top: 3px solid color-mix(in srgb, #14154e, #fff 65%);
  padding: 65px 0;
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  color: #000 !important;
}
.home-form .contact-card .fa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2da6;
  padding: 10px;
  width: 55px;
  height: 55px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .fa-contact i {
  font-size: 25px;
  color: #fff;
}
.home-form .contact-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-form .contact-card .content p {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
}
.home-form .contact-card .content p a {
  color: #000;
}
.home-form .contact-card .content p a:hover {
  color: #2e2f89;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 15px;
}
.form-contact .form-group .btn-prod {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.form-contact .form-group .btn-prod button,
.form-contact .form-group .btn-prod a {
  width: 100%;
  margin-left: 0 !important;
  white-space: nowrap;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.2;
  box-sizing: border-box;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100%;
}
.form-contact select.form-control {
  appearance: auto;
  cursor: pointer;
  color: #333;
  padding-right: 36px;
}
.form-contact select.form-control:invalid {
  color: #999999;
}
.form-contact select.form-control option {
  color: #333;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
  padding-top: 20px;
}
.form-contact button {
  border: none;
}

.form-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.form-contact__actions.btn-prod {
  align-items: stretch;
}
.form-contact__btn {
  width: 100% !important;
  margin: 0 !important;
  min-height: 52px;
  gap: 10px;
  padding: 14px 20px;
  text-decoration: none;
  box-sizing: border-box;
}
.form-contact__btn i {
  margin-right: 0;
  font-size: 20px;
  line-height: 1;
}
.form-contact__btn span {
  line-height: 1.2;
}

#form-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #2b2da6;
}
.h3-form i {
  color: #2e2f89;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #25d366 !important;
  margin-left: 0;
  color: #fff !important;
  white-space: nowrap;
}
.whats-form::before,
.whats-form::after {
  background-color: #1ebe57 !important;
}
.whats-form:hover {
  color: #fff !important;
}

.btn-main.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  text-decoration: none;
}
.btn-main.btn-whatsapp-cta::after {
  background-color: #1ebe57;
}
.btn-main.btn-whatsapp-cta i {
  font-size: 18px;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.social-flutuante {
  position: fixed;
  right: 15px;
  bottom: 75px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: sweep 1.5s ease-in-out;
}

.social-flutuante__btn {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-flutuante__btn:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.social-flutuante__btn--whatsapp {
  background-color: #25d366;
}
.social-flutuante__btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.header-search {
  flex: 0 1 230px;
  max-width: 260px;
  min-width: 140px;
  margin: 0;
  display: flex;
  align-items: stretch;
  border: 2px solid rgba(46, 47, 137, 0.35);
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media only screen and (min-width: 1441px) {
  .header-search {
    flex-basis: 260px;
    max-width: 290px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .header-search {
    flex-basis: 155px;
    max-width: 175px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search {
    flex-basis: 130px;
    max-width: 150px;
  }
}
.header-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 9px 12px;
  font-size: 14px;
  min-width: 0;
}
.header-search__input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(46, 47, 137, 0.15);
}
.header-search__btn {
  border: 0;
  background: #2e2f89;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.header-search__btn:hover {
  background: rgb(38.3081967213, 39.1409836066, 114.0918032787);
}
.header-search--mobile {
  max-width: none;
  margin: 12px 16px 8px;
}

.menu-search-mobile {
  width: 100%;
  list-style: none;
}

.busca-page .busca-resultados {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.busca-page .busca-resultado__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.busca-page .busca-resultado__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 47, 137, 0.25);
  color: inherit;
}
.busca-page .busca-resultado__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
}
.busca-page .busca-resultado__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.busca-page .busca-resultado__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 47, 137, 0.1);
  color: #2e2f89;
  font-size: 1.35rem;
}
.busca-page .busca-resultado__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.busca-page .busca-resultado__categoria {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2e2f89;
}
.busca-page .busca-resultado__titulo {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}
.busca-page .busca-resultado__arrow {
  flex-shrink: 0;
  color: #2e2f89;
  opacity: 0.7;
}

.top_menu .dn_btn--lgpd {
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.25);
}

.produtos-pesquisa-destaque {
  background: linear-gradient(135deg, rgba(46, 47, 137, 0.08) 0%, rgba(20, 21, 78, 0.12) 100%);
  border: 2px solid rgba(46, 47, 137, 0.25);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
}
.produtos-pesquisa-destaque__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: #2e2f89;
  margin-bottom: 0.75rem;
}
.produtos-pesquisa-destaque__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.produtos-pesquisa-destaque__form .form-control {
  flex: 1;
  min-width: 200px;
}
.produtos-pesquisa-destaque__hint {
  margin-top: 0.75rem;
}

.diferencial-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.diferencial-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e2f89, #14154e);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.diferencial-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #111827;
}
.diferencial-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b5563;
}

#calculadora-peso {
  scroll-margin-top: 130px;
}

.calculadora-peso-page .calculadora-card {
  border-radius: 16px;
}
.calculadora-peso-page .calc-resultado {
  font-size: 1.1rem;
  color: #2e2f89;
  font-weight: 700;
}

.lgpd-canal-destaque {
  background: #f8fafc;
  border-color: rgba(46, 47, 137, 0.25) !important;
}

.whats-flutuante-link {
  text-decoration: none;
}

.tabelas-tecnicas-page {
  background: #f8fafc;
}

.tabelas-ferramenta-destaque {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 47, 137, 0.08) 0%, rgba(20, 21, 78, 0.12) 100%);
  border: 2px solid rgba(46, 47, 137, 0.2);
}
.tabelas-ferramenta-destaque__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e2f89, #14154e);
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.tabelas-ferramenta-destaque__body {
  flex: 1;
  min-width: 200px;
}

.tabela-pdf-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tabela-pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 47, 137, 0.25);
  color: inherit;
}
.tabela-pdf-card:hover .tabela-pdf-card__icon {
  background: linear-gradient(135deg, #2e2f89, #14154e);
  color: #fff;
}
.tabela-pdf-card:hover .tabela-pdf-card__action {
  color: #2e2f89;
}
.tabela-pdf-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 47, 137, 0.1);
  color: #2e2f89;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.tabela-pdf-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.tabela-pdf-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: auto;
  transition: color 0.25s ease;
}

.parceiros-page {
  background: #f8fafc;
}

.parceiro-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.parceiro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.parceiro-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.75rem 2rem;
  background: #f3f4f6;
}
.parceiro-card__logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.parceiro-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.parceiro-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.parceiro-card__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b5563;
}
.parceiro-card__info li:not(:last-child) {
  margin-bottom: 0.85rem;
}
.parceiro-card__info li i {
  color: #2e2f89;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.parceiro-card__info li a {
  color: inherit;
  text-decoration: none;
}
.parceiro-card__info li a:hover {
  color: #2e2f89;
}

.contact-section {
  padding: 65px 0 0;
}
.contact-section .info-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  position: relative;
  padding: 20px;
  border-radius: 8px;
}
.contact-section .info-container .contact-info {
  display: flex;
}
.contact-section .info-container .contact-info:not(:last-child) {
  margin-bottom: 35px;
}
.contact-section .info-container .contact-info h3 {
  font-size: 1.1em;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.contact-section .info-container .contact-info h3 a:hover {
  color: #2e2f89;
}
.contact-section .info-container .contact-info p {
  color: #383838;
  margin-bottom: 0;
}
.contact-section .info-container .contact-info .icon {
  color: #14154e;
  margin-right: 10px;
  font-size: 1.6em;
  min-width: 35px;
}
.contact-section .info-container::after {
  content: "";
  position: absolute;
  display: block;
  height: 115%;
  width: 85%;
  border-radius: 0%;
  left: -30px;
  top: -20px;
  z-index: -2;
  border-radius: 8px;
  opacity: 0.8;
  border: 3px solid color-mix(in srgb, #2b2da6, #fff 40%);
  background: #2b2da6;
}
.contact-section .btn-contact {
  display: flex;
}
@media (max-width: 576px) {
  .contact-section .btn-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section .btn-contact .btn-main {
    margin-left: 0;
    width: 80%;
  }
}

.banner-full {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  margin-top: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full {
    margin-top: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full {
    margin-top: 90px;
  }
}
@media (max-width: 575px) {
  .banner-full {
    margin-top: 90px;
  }
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 1.2s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .text1 {
  opacity: 0;
  animation: fadeup 1.3s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
.banner-full .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 50px;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .controls {
    bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .controls {
    width: 80%;
    bottom: 10px;
  }
}
.banner-full .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  top: 50% !important;
  transform: translateY(-50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom:not(:last-child) {
  margin-right: 5px;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom svg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg {
  display: block;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg circle {
  stroke-dasharray: 56.5563;
  stroke-dashoffset: 56.5563;
  animation: BulletProgress calc(var(--delay) * 1ms) linear forwards;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active::before {
  background-color: #fff;
}
@keyframes BulletProgress {
  to {
    stroke-dashoffset: 0;
  }
}
.banner-full .swiper-pagination .swiper--pause .swiper-pagination-bullet-custom--active svg circle {
  animation: none;
}
.banner-full .swiper-buttons {
  color: #2b2da6;
  height: 50px;
  width: 50px;
  transition: 0.3s ease;
  display: flex;
  border-radius: 50%;
  margin-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
.banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 15px;
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 15px;
}
.banner-full .swiper-buttons i {
  font-size: 1.5rem;
  color: #14154e;
  transition: 0.3s ease;
}
.banner-full .swiper-buttons svg {
  width: 50px;
  height: 50px;
}
.banner-full .swiper-buttons svg path {
  stroke: #fff;
}
.banner-full .swiper-buttons::before, .banner-full .swiper-buttons::after {
  content: "";
  color: #2e2f89;
  font-size: 25px;
  font-weight: 600;
  display: none;
}
.banner-full .swiper-buttons:hover {
  transform: scale(1.1) translateY(-50%);
}
.banner-full .swiper-buttons:hover i {
  transform: scale(1.05);
}
.banner-full .swiper-buttons:hover::before, .banner-full .swiper-buttons:hover::after {
  color: #2e2f89;
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
@supports (height: 100dvh) {
  .banner-full .banner-main {
    height: 100dvh;
    min-height: 100dvh;
  }
}
.banner-full .banner-main .swiper-wrapper {
  height: 100%;
}
.banner-full .banner-main .swiper-slide {
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
.banner-full .banner-main .content-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-full .banner-main .content-area .bg .image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
  animation: loopScale 8s ease-in 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-full .banner-main .content-area .bg .shape img {
  width: 115%;
  height: 100%;
  object-position: left bottom;
  margin-left: -30px;
  opacity: 1;
}
.banner-full .banner-main .content-area .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 0px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 95%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 20px;
  }
}
.banner-full .banner-main .content-area .content .text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 5px 0;
  width: 40vw;
  margin-left: 7vw;
}
.banner-full .banner-main .content-area .content .text.margin-none {
  margin-left: 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text {
    width: 40vw;
    margin-left: 2vw;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -240px;
    margin-left: 8vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -190px;
    margin-left: 8vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 98vw;
    top: -120px;
    margin-left: 2vw;
  }
}
.banner-full .banner-main .content-area .content .text h1,
.banner-full .banner-main .content-area .content .text h2,
.banner-full .banner-main .content-area .content .text span {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  color: #fff;
  font-size: 2.8rem;
  text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
  line-height: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text h1 b,
.banner-full .banner-main .content-area .content .text h2 b,
.banner-full .banner-main .content-area .content .text span b {
  font-weight: 700;
  color: #2b2da6;
}
.banner-full .banner-main .content-area .content .text p {
  font-size: 1rem;
  font-weight: 1rem;
  font-weight: 300;
  color: #fff;
  margin: 15px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .text2 {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one {
  padding: 10px 30px;
  background: #07083c;
  color: #fff;
}
.banner-full .banner-main .content-area .content .text .btn-one span {
  font-size: 1rem;
  line-height: normal;
  padding: 2px;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .btn-one {
    padding: 10px 30px;
    font-size: 14px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one::before, .banner-full .banner-main .content-area .content .text .btn-one::after {
  background-color: #14154e;
}
.banner-full .banner-main .content-area .content .text .btn-one i {
  width: 25px;
  height: 25px;
}
.banner-full .banner-main .content-area .content .image-banner {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid rgba(249, 249, 249, 0.6);
  box-shadow: 8px 8px 45px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 95%;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .image-banner {
    margin: 30px 10px;
    width: 90%;
    height: 240px;
  }
}
.banner-full .banner-main .content-area .content .image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.banner-full .banner-main .content-area .content .image-banner img.obj-contain {
  object-fit: contain;
}
.banner-full .banner-thumb {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
.banner-full .banner-thumb .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.banner-full .banner-thumb .img-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
.banner-full .banner-thumb .img-thumb.swiper-slide-thumb-active {
  transform: scale(1.4);
  opacity: 1;
  border: 2px solid #14154e;
  box-shadow: 0 3px 25px -5px rgba(0, 0, 0, 0.6);
}
.banner-full .banner-thumb .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-about {
  overflow: hidden;
  position: relative;
}
.section-about.bg-dark1 .text-content .desc p, .section-about.bg-dark2 .text-content .desc p {
  color: #fff !important;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::before, .section-about.bg-dark2 .about-thumbnail .thumbnail::before {
  border: 2px solid #07083c;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::after, .section-about.bg-dark2 .about-thumbnail .thumbnail::after {
  background: #07083c;
}
.section-about .about-content {
  padding: 0 10px;
}
.section-about .about-content p {
  text-align: justify;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #000;
  margin: 5px 0;
}
.section-about .about-content .text-content .desc {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
.section-about .about-content .text-content .desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000;
  margin: 8px 0;
}
.section-about .about-content .text-content .box-text-destaque p {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  color: #000;
  margin: 0;
}
.section-about .about-content .text-content .box-text-destaque p b {
  color: #07083c;
  font-weight: 600;
}
.section-about .image-about {
  position: relative;
  margin-bottom: 35px;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .image-about {
    padding: 0 5px;
  }
}
.section-about .image-about .inner-about {
  position: relative;
  padding-right: 30px;
  padding-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about {
    padding-right: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .image-about .inner-about {
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about {
    padding-right: 0;
    padding-bottom: 0;
  }
}
.section-about .image-about .inner-about .image-1 {
  width: 100%;
  height: 480px;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .image-1 {
    padding-right: 10px;
    height: 460px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .image-about .inner-about .image-1 {
    height: 420px;
    padding-right: 0px;
  }
}
.section-about .image-about .inner-about .image-1 img {
  width: 95%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .image-1 img {
    width: 95%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .image-about .inner-about .image-1 img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .image-1 img {
    width: 100%;
  }
}
.section-about .image-about .inner-about .image-1 img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(43, 45, 166, 0.6);
}
.section-about .image-about .inner-about .image-1::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 40px;
  width: 50px;
  height: 60%;
  background-color: #07083c;
  background-position: 0 0, 10px 10px;
  background-size: 12px 12px;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .image-1::after {
    width: 90%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .image-about .inner-about .image-1::after {
    width: 100%;
    left: 10px;
    top: 10px;
  }
}
.section-about .image-about .inner-about .image-1::before {
  position: absolute;
  left: 30px;
  bottom: -43px;
  width: 60%;
  height: 105px;
  background-image: radial-gradient(#2e2f89 20%, transparent 10%);
  background-position: 0 0, 10px 10px;
  background-size: 16px 16px;
  background-color: transparent;
  z-index: -1;
  content: "";
  opacity: 0.9;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .image-1::before {
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .image-about .inner-about .image-1::before {
    bottom: -26px;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .image-1::before {
    bottom: -26px;
  }
}
.section-about .image-about .inner-about .image-2 {
  width: 320px;
  height: 300px;
  position: absolute;
  right: 0;
  bottom: -30px;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .image-2 {
    width: 225px;
    height: 320px;
    bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .image-about .inner-about .image-2 {
    display: none;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .image-2 {
    display: none;
  }
}
.section-about .image-about .inner-about .image-2 img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.section-about .image-about .inner-about .image-2 img:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 12px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(43, 45, 166, 0.8);
}
.section-about .image-about .inner-about .image-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(46, 47, 137, 0.05) 100%);
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.section-about .image-about .inner-about .image-2:hover::before {
  opacity: 0;
}
.section-about .image-about .inner-about .experience {
  background: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 20px;
  left: -20px;
  width: 300px;
  height: 110px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.95);
}
.section-about .image-about .inner-about .experience:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgb(255, 255, 255);
  border-color: rgba(43, 45, 166, 0.3);
}
.section-about .image-about .inner-about .experience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(43, 45, 166, 0.08) 0%, rgba(20, 21, 78, 0.06) 50%, rgba(46, 47, 137, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}
.section-about .image-about .inner-about .experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 20px 20px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .experience {
    width: 60%;
    left: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .image-about .inner-about .experience {
    width: 50%;
    left: -15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .image-about .inner-about .experience {
    top: -90px;
    left: -18px;
    width: 80%;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience {
    top: -90px;
    left: -4px;
    bottom: 0px;
    width: 80%;
  }
}
@media (max-width: 320px) {
  .section-about .image-about .inner-about .experience {
    width: 98%;
  }
}
.section-about .image-about .inner-about .experience .left-number {
  float: none;
  width: 40%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  z-index: 1;
  flex-direction: row;
  gap: 3px;
}
.section-about .image-about .inner-about .experience .left-number span {
  font-size: 40px;
  font-weight: 400;
  color: #14154e;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience .left-number span {
    font-size: 28px;
  }
}
.section-about .image-about .inner-about .experience .left-number .counter {
  font-size: 72px;
  font-weight: 900;
  color: #2e2f89;
  margin: 0px;
  padding: 0;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .experience .left-number .counter {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience .left-number .counter {
    font-size: 44px;
  }
}
.section-about .image-about .inner-about .experience .right-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: none;
  width: 60%;
  height: 100%;
  padding: 20px 20px 20px 20px;
  z-index: 1;
  position: relative;
}
.section-about .image-about .inner-about .experience .right-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, #2e2f89 0%, #14154e 100%);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.section-about .image-about .inner-about .experience .right-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .experience .right-text {
    padding: 20px 18px 20px 20px;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience .right-text {
    padding: 15px 12px 15px 15px;
  }
}
.section-about .image-about .inner-about .experience .right-text span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #2e2f89;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .experience .right-text span {
    font-size: 15px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience .right-text span {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 320px) {
  .section-about .image-about .inner-about .experience .right-text span {
    font-size: 13px;
    line-height: 16px;
  }
}
.section-about .image-about .inner-about .experience .right-text p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .image-about .inner-about .experience .right-text p {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .section-about .image-about .inner-about .experience .right-text p {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .section-about .image-about .inner-about .experience .right-text p {
    font-size: 11px;
  }
}

.box-cards-mission {
  margin-top: 90px;
}
.box-cards-mission .card-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 4px 25px -5px rgba(23, 37, 57, 0.2);
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media (max-width: 575px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
.box-cards-mission .card-mission:hover {
  transform: scale(1.02);
}
.box-cards-mission .card-mission::after {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.box-cards-mission .card-mission .icon {
  height: 88px;
  width: 88px;
  border-radius: 50px;
  background: #2b2da6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s ease-in-out;
}
.box-cards-mission .card-mission .icon i {
  font-size: 40px;
  color: #fff;
}
.box-cards-mission .card-mission .content {
  text-align: center;
  margin-top: 40px;
  padding: 45px 15px;
}
.box-cards-mission .card-mission .content .title {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  color: #1a1a1a;
}
.box-cards-mission .card-mission .content .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #1a1a1a;
}

.section-vantagens {
  background: rgba(255, 255, 255, 0.1);
}
.section-vantagens #image-center {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.section-vantagens #image-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.section-vantagens .box-epec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section-vantagens .box-epec .espec-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px 10px;
  width: 100%;
  min-height: 110px;
  margin: 10px 0;
  cursor: pointer;
  border-bottom: 2px solid rgba(20, 21, 78, 0.1);
}
.section-vantagens .box-epec .espec-card.reverse {
  flex-direction: row-reverse;
}
.section-vantagens .box-epec .espec-card .icon {
  position: relative;
  background: rgba(43, 45, 166, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.section-vantagens .box-epec .espec-card .icon i {
  font-size: 40px;
  color: #07083c;
}
.section-vantagens .box-epec .espec-card .icon::after {
  position: absolute;
  content: "";
  background: #14154e;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.section-vantagens .box-epec .espec-card .text {
  width: calc(100% - 75px);
}
.section-vantagens .box-epec .espec-card .text h2,
.section-vantagens .box-epec .espec-card .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #14154e;
}
.section-vantagens .box-epec .espec-card .text p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.section-vantagens .box-epec .espec-card:hover .icon {
  background: #14154e;
}
.section-vantagens .box-epec .espec-card:hover .icon i {
  color: #fff;
}
.section-vantagens .box-epec .espec-card:hover .icon::after {
  height: 100%;
}

.solutions-area.bg-dark {
  background: linear-gradient(20deg, #2e2f89, #14154e) !important;
}
.solutions-area.bg-light {
  background-image: linear-gradient(340deg, rgba(8, 17, 150, 0.071) 0%, rgba(63, 40, 216, 0.059) 100%);
}
.solutions-area .prodSwiper .box-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  z-index: 1;
}
.solutions-area .prodSwiper .box-controls .swiper-pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 170px;
  height: 3px;
  background: #9a9a9a;
  z-index: 1;
}
.solutions-area .prodSwiper .box-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #2e2f89;
}
.solutions-area .prodSwiper .box-controls .navs {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons {
  position: absolute;
  width: 45px;
  height: 45px;
  background: none;
  margin: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: 0.3s ease;
  box-shadow: none;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons::after {
  display: none;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons svg path {
  stroke: #2e2f89;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 55px;
  width: 55px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 55px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 20px;
  color: #a81818;
  font-weight: 600;
}

.section-sevice {
  position: relative;
  overflow-x: hidden;
}
.section-sevice.bg-green-light {
  background: rgba(43, 45, 166, 0.2);
}
.section-sevice .text-content {
  margin-bottom: 15px;
}
.section-sevice .text-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-sevice .box-btn {
    display: flex;
    justify-content: center;
  }
}
.section-sevice .productSwiper {
  position: relative;
}
.section-sevice .productSwiper .box-controls {
  position: relative;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  margin-top: 10px;
  z-index: 1;
}
.section-sevice .productSwiper .swiper-scrollbar {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin-top: 5px;
  height: 5px;
  width: 70%;
  background: rgba(20, 21, 78, 0.8);
}
.section-sevice .productSwiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #2b2da6;
}
.section-sevice .productSwiper .swiper-pagination-fraction {
  width: 100%;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 1;
  color: #000;
}
.section-sevice .productSwiper .swiper-pagination-fraction .swiper-pagination-current,
.section-sevice .productSwiper .swiper-pagination-fraction .swiper-pagination-total {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0px;
  color: #2b2da6;
}
.section-sevice .productSwiper .swiper-pagination-fraction .swiper-pagination-current {
  font-size: 1.3rem;
  color: #2b2da6;
}
.section-sevice .productSwiper .navs {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-sevice .productSwiper .navs {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-sevice .productSwiper .navs {
    width: 100%;
  }
}
.section-sevice .productSwiper .navs .swiper-button-next,
.section-sevice .productSwiper .navs .swiper-button-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%);
}
.section-sevice .productSwiper .navs .swiper-button-next::after,
.section-sevice .productSwiper .navs .swiper-button-prev::after {
  font-size: 20px;
  color: #2b2da6;
  font-weight: 600;
}

.section-feedbacks {
  background-image: url(../img/banners/bg-feedbacks.webp);
  background-position: center;
  background-size: 1500px;
  background-repeat: repeat-x;
  background-color: #f6f6f6;
}
.section-feedbacks .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2e2f89;
  padding: 50px 30px;
  border-radius: 30px;
  margin-bottom: 70px;
  min-height: 450px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-feedbacks .content {
    margin-bottom: 20px;
  }
}
.section-feedbacks .content .title span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  padding: 8px 10px;
  color: #fff;
  background: rgba(20, 21, 78, 0.2);
  border-radius: 100px;
  margin-bottom: 15px;
}
.section-feedbacks .content .title span i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 20px;
  background: #2e2f89;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;
}
.section-feedbacks .content .title span i::before {
  margin-top: 3px;
}
.section-feedbacks .content .title h2,
.section-feedbacks .content .title h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.section-feedbacks .content .title h2 b,
.section-feedbacks .content .title h3 b {
  color: #2b2da6;
}
.section-feedbacks .content .text {
  margin-bottom: 40px;
}
.section-feedbacks .content .text p {
  color: #fff;
  font-size: 16px;
}
.section-feedbacks .content .btn-testi {
  width: fit-content;
  padding: 10px 25px;
  background: #fff;
  color: #2e2f89;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 5px;
}
.section-feedbacks .content .btn-testi:hover {
  background: #14154e;
  color: #fff;
}
.section-feedbacks .feedbackSwiper {
  padding: 10px;
}
.section-feedbacks .feedbackSwiper .controls {
  position: relative;
  bottom: 20px;
  width: 150px;
  margin: 0 auto;
  margin-top: 20px;
  height: 60px;
}
.section-feedbacks .feedbackSwiper .controls .swiper-button-prev,
.section-feedbacks .feedbackSwiper .controls .swiper-button-next {
  top: auto;
  bottom: 5px;
  transform: none;
}

@media (min-width: 768px) {
  .int-page-1 .ajust-float {
    width: 55%;
    float: left;
    margin-right: 20px;
  }
}
.int-page-1 .ajust-float img {
  border-radius: 5px;
  min-height: 400px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .int-page-1 .padding-lg-right {
    padding-right: 5%;
  }
}
.int-page-1 .swiper-button-prev,
.int-page-1 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-1 .swiper-button-prev::after,
.int-page-1 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-1 p {
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}
.int-page-1 .boxExpand {
  margin: 10px 0;
  padding: 10px 0;
}
.int-page-1 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-1 .boxExpand #contentExpand ul li {
  list-style-position: inside;
}
.int-page-1 .boxExpand #contentExpand.expanded {
  max-height: 5000px;
}
.int-page-1 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-1 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, #ffffff 20%, rgba(0, 0, 0, 0) 100%);
}
.int-page-1 .boxExpand .btn-expand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
  border: none;
  outline: none;
  transition: 0.3s ease;
  background: transparent;
}
.int-page-1 .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e2f89;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}

.int-page-2 .prodintSwiper {
  height: 400px;
}
.int-page-2 .swiper-button-prev,
.int-page-2 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-2 .swiper-button-prev::after,
.int-page-2 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-2 .img-text {
  position: relative;
  background-image: url(../img/gallery/about.webp);
}
.int-page-2 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #454545, rgba(255, 255, 255, 0));
  z-index: 0;
}
.int-page-2 .img-text .content-padding {
  padding: 32px;
  z-index: 1;
}
.int-page-2 .img-text .content-padding h2,
.int-page-2 .img-text .content-padding p {
  color: #FFF;
}
.int-page-2 .buttons .btn-main {
  width: 100%;
  text-align: center;
  margin-left: 0;
}

.int-page-3 .title-text01 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding: 10px;
}
.int-page-3 .title-text01 .title {
  position: relative;
}
.int-page-3 .title-text01 .title .sub-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2e2f89;
  opacity: 0.2;
}
.int-page-3 .title-text01 .title h1,
.int-page-3 .title-text01 .title h2,
.int-page-3 .title-text01 .title h3 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0;
  background: -webkit-linear-gradient(#2e2f89, #14154e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.int-page-3 .box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #2e2f89;
  background: linear-gradient(120deg, #14154e 45%, #2e2f89 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #14154e 60%, #2e2f89 100%);
  border-color: #dee2e6;
  border: 0;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: brightness(600%) saturate(0);
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane.active {
  display: flex;
  animation: zoomIn 1s ease 0s 1 normal forwards;
}
.int-page-3 .box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #2b2da6;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #2b2da6;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #2e2f89;
}
.int-page-3 .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #14154e;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .int-page-3 .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #2e2f89;
}
.int-page-3 .box-navfeatures .tab-content .box-text .btn-four {
  margin-top: 10px;
  padding: 8px 20px;
}
.int-page-3 .section-title02 {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  z-index: 1;
}
.int-page-3 .section-title02 .icon {
  width: 120px;
  opacity: 1;
  z-index: -1;
}
.int-page-3 .section-title02 .subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #14154e;
  background: linear-gradient(90deg, #2e2f89 45%, #14154e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 16px;
  }
}
.int-page-3 .section-title02 .title {
  font-size: 45px;
  font-weight: 800;
  color: #2c2b2b;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .section-title02 .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .title {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .title {
    font-size: 22px;
  }
}
.int-page-3 .section-title02 .title.color-gradint {
  background: linear-gradient(90deg, #2e2f89 45%, #14154e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .section-title02 .desc {
  margin: 5px 0;
}
.int-page-3 .section-title02 .desc p {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}
.int-page-3 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #2e2f89;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  height: 415px;
  width: 90%;
}
.int-page-3 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #2e2f89;
  background: linear-gradient(180deg, #2e2f89 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-3 .style-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 80%;
  border-radius: 5%;
  transform: rotate(0deg);
  background: radial-gradient(farthest-side at -33.33% 50%, rgba(0, 0, 0, 0) 52%, #14154e 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #14154e 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #14154e 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #14154e 54% 57%, rgba(0, 0, 0, 0) 59%), #fefeff;
  background-size: 17.1416327405px 80px, 80px 17.1416327405px;
  opacity: 0.5;
  z-index: -1;
}
.int-page-3 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5%;
  width: 110%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.int-page-4 .box-img {
  margin-bottom: 20px;
  height: 450px;
}
.int-page-4 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-4 .service-content .titles1 {
  font-size: 26px;
  margin: 15px 0;
  color: #14154e;
}
.int-page-4 .service-content .titles2 {
  color: #14154e;
  font-size: 24px;
  margin: 15px 0;
}
.int-page-4 .service-content p {
  font-size: 16px;
  text-align: justify;
  color: #000;
}
.int-page-4 .service-details-card {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1019607843);
  display: flex;
  align-items: start;
  border-left: 5px solid #2e2f89;
  margin: 20px 0;
}
.int-page-4 .service-details-card .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 35px;
  color: #2e2f89;
}
.int-page-4 .service-details-card .details {
  margin-left: 20px;
}
.int-page-4 .service-details-card .details h2,
.int-page-4 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-4 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria {
  padding: 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(238, 238, 238, 0.9333333333);
}
.int-page-4 .sidebar02 .box-categoria .cat-title {
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-4 .sidebar02 .box-categoria ul li {
  padding: 18px 25px;
  list-style: none;
  background: #fff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .box-categoria ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover {
  transform: scale(1.03);
  background: #2e2f89;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover a {
  color: #fff;
}
.int-page-4 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  height: 450px;
}
.int-page-4 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.int-page-4 .sidebar02 .sidebar-cta img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  z-index: 2;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #2e2f89;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner h2,
.int-page-4 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff;
  font-size: 26px;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a {
  padding: 15px 30px;
  background-color: #2e2f89;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #2e2f89;
}
.int-page-4 .swiper-button-prev,
.int-page-4 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-4 .swiper-button-prev::after,
.int-page-4 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #14154e;
}
.map-site ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
}
.map-site ul li a:hover {
  color: #2e2f89;
  padding-left: 5px;
}

.politica-de-privacidade h2 {
  margin-top: 15px;
}

.lgpd {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px, rgba(0, 0, 0, 0.05) 0px 1px 3px;
  z-index: 9999;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: "Inter Tight", sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lgpd .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #14154e;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lgpd .title i {
  color: #2b2da6;
}
.lgpd .description {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgb(85, 95, 110);
}
.lgpd .description a {
  color: #2b2da6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.lgpd .description a:hover {
  color: #2e2f89;
  text-decoration: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.lgpd .actions .btn-decline, .lgpd .actions .btn-learn-more, .lgpd .actions .btn-accept {
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
.lgpd .actions .btn-decline {
  background-color: #f3f4f6;
  color: rgb(75, 85, 99);
}
.lgpd .actions .btn-decline:hover {
  background-color: #e5e7eb;
  color: rgb(31, 41, 55);
}
.lgpd .actions .btn-learn-more {
  background-color: transparent;
  color: #2b2da6;
  border: 1px solid rgba(43, 45, 166, 0.2);
}
.lgpd .actions .btn-learn-more:hover {
  background-color: rgba(43, 45, 166, 0.05);
  border-color: #2b2da6;
}
.lgpd .actions .btn-accept {
  background-color: #2b2da6;
  color: #ffffff;
}
.lgpd .actions .btn-accept:hover {
  background-color: #14154e;
  transform: translateY(-1px);
}
.lgpd .actions .btn-accept:active {
  transform: translateY(0);
}
@media (max-width: 575px) {
  .lgpd {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 1.25rem;
  }
  .lgpd .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lgpd .actions .btn-decline, .lgpd .actions .btn-learn-more, .lgpd .actions .btn-accept {
    width: 100%;
  }
  .lgpd .actions .btn-accept {
    order: 1;
  }
  .lgpd .actions .btn-learn-more {
    order: 2;
  }
  .lgpd .actions .btn-decline {
    order: 3;
  }
}

/*# sourceMappingURL=style.css.map */
