@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);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* 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-gradient1 {
  background: linear-gradient(20deg, #004991, #002e5b) !important;
}

.bg-gradient2 {
  background: linear-gradient(30deg, #002e5b, #004991) !important;
}

.bg-cinza {
  background: #f5f5f5;
}

.bg-dark1 {
  background: #1f1f1f;
}

.bg-dark2 {
  background: #1b1b1b;
}

.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: "Montserrat", sans-serif;
}

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

body {
  overflow-x: hidden !important;
}

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: #3489dd;
  height: 55px;
  width: 55px;
  right: 25px;
  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;
}
@media (max-width: 575px) {
  .go-top-btn {
    right: 15px;
  }
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

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

.object-fit-contain {
  object-fit: contain !important;
}

.obj-contain {
  object-fit: contain !important;
}

.object-fit-cover {
  object-fit: contain !important;
}

.obj-cover {
  object-fit: cover !important;
}

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

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

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

*::-webkit-scrollbar-thumb {
  background-color: #004991;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #002e5b;
}

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: "Montserrat", 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: #004991;
  -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: 20px;
}
.title-area2.white h2,
.title-area2.white h3,
.title-area2.white .title {
  color: #fff;
}
.title-area2.white p {
  color: #fff;
}
.title-area2.white span,
.title-area2.white .subtitle {
  color: #fff;
}
.title-area2.white span::before,
.title-area2.white .subtitle::before {
  filter: brightness(100) saturate(0);
}
.title-area2 span,
.title-area2 .subtitle {
  position: relative;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 8px 15px;
  padding-left: 55px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.title-area2 span::before,
.title-area2 .subtitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 40px;
  height: 3px;
  background: #3489dd;
  opacity: 0.8;
}
.title-area2 h2,
.title-area2 h3,
.title-area2 .title {
  color: #171717;
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -0.25em;
}
.title-area2 h2 b,
.title-area2 h3 b,
.title-area2 .title b {
  font-weight: 600;
}
.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.2rem;
    line-height: 2.4rem;
  }
}
@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 {
  margin-top: 20px;
  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.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.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;
}

.main-header {
  max-width: 100%;
  box-sizing: border-box;
}
.main-header a {
  color: inherit;
}
.main-header li {
  color: inherit;
}
.main-header .header-lower,
.main-header .main-box {
  max-width: 100%;
  box-sizing: border-box;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.large-container {
  position: static;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}

.btn-style-one {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 30px;
  padding: 7px 7px 7px 25px;
  color: #171717;
  background-color: #3489dd;
  text-transform: capitalize;
  overflow: hidden;
  transition: all 300ms ease;
  text-decoration: none;
}
.btn-style-one::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 50%;
  z-index: -1;
  transition: all 300ms ease;
  background-color: #000;
}
.btn-style-one::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 50%;
  z-index: -1;
  transition: all 300ms ease;
  background-color: #000;
}
.btn-style-one .dot-box {
  background-color: #000;
  color: #000;
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  position: relative;
  transition: all 300ms ease;
}
.btn-style-one .dot-box .dot-item {
  background-color: #000;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  position: absolute;
  left: calc(50% + 2px);
  top: calc(50% - 2px);
  transition: all 300ms ease;
}
.btn-style-one .dot-box .dot-item::before, .btn-style-one .dot-box .dot-item::after {
  content: "";
  position: absolute;
  background-color: #000;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  transition: all 300ms ease;
}
.btn-style-one .dot-box .dot-item::before {
  left: -5px;
  top: -5px;
}
.btn-style-one .dot-box .dot-item::after {
  left: -5px;
  bottom: -5px;
}
.btn-style-one:focus, .btn-style-one:hover {
  color: #171717;
}
.btn-style-one:focus::before, .btn-style-one:hover::before {
  width: 100%;
  left: unset;
  right: 0;
}
.btn-style-one:focus::after, .btn-style-one:hover::after {
  width: 100%;
  right: unset;
  left: 0;
}
.btn-style-one:focus .dot-box .dot-item, .btn-style-one:hover .dot-box .dot-item {
  left: calc(50% - 5px);
  top: calc(50% - 2px);
}
.btn-style-one:focus .dot-box .dot-item::before, .btn-style-one:hover .dot-box .dot-item::before {
  left: 5px;
  top: 5px;
}
.btn-style-one:focus .dot-box .dot-item::after, .btn-style-one:hover .dot-box .dot-item::after {
  left: 5px;
  bottom: 5px;
}
@media (max-width: 575.98px) {
  .btn-style-one {
    padding: 5px 5px 5px 15px;
    font-size: 14px;
    gap: 10px;
  }
  .btn-style-one .dot-box {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 10px;
  }
}

.main-header-style .main-box {
  padding: 2px 24px;
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
}
@media (max-width: 1439.98px) {
  .main-header-style .main-box {
    padding: 5px 20px;
  }
}
@media (max-width: 991.98px) {
  .main-header-style .main-box {
    padding: 0 15px;
  }
}
.main-header-style .main-box .nav-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 85px;
}
.main-header-style .main-box .header-left {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header-style .main-box .outer-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-header-style .main-box .outer-box .social-link {
  padding: 4px 8px;
}
.main-header-style .main-box .outer-box .social-link:empty {
  display: none;
  margin: 0;
}
.main-header-style .main-box .outer-box .social-link a {
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin: 0 5px;
  text-decoration: none;
}
.main-header-style .main-box .outer-box .social-link a:hover {
  color: #3489dd;
}
@media (max-width: 1439.98px) {
  .main-header-style .main-box .outer-box .social-link {
    display: none;
  }
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 1;
}
@media (max-width: 1439.98px) {
  .main-header-style .main-box .outer-box .ui-btn-outer .header-contact {
    display: none;
  }
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact .social-icon {
  gap: 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid #c0c0c0;
  padding-right: 30px;
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact .social-icon a {
  color: #cfcfcf;
  font-size: 18px;
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact .social-icon a:hover {
  color: #cfcfcf;
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact .info-btn {
  font-weight: 600;
  color: #000;
}
.main-header-style .main-box .outer-box .ui-btn-outer .header-contact .info-btn:hover {
  color: #3489dd;
}
.main-header-style .main-box .outer-box .ui-btn-outer .box-btns .btn-one {
  background-color: #004991;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .main-header-style .main-box .outer-box .btn-style-one {
    display: none;
  }
}

.header-style-one {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9999;
}
.header-style-one .logo {
  padding: 5px 0;
  max-width: 300px;
  height: 100%;
}
.header-style-one .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-style-one .header-left {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 0;
}
@media (min-width: 1600px) {
  .header-style-one .header-left {
    gap: 60px;
  }
}
.header-style-one .box-btns {
  align-items: center;
  display: flex;
  gap: 10px;
}
.header-style-one .mobile-nav-toggler {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 1;
  border: 2px solid rgba(0, 0, 0, 0.8);
  border-radius: 1px;
  transition: all 300ms ease;
  cursor: pointer;
}
.header-style-one .mobile-nav-toggler.radius {
  border-radius: 50%;
}
.header-style-one .mobile-nav-toggler svg {
  display: block;
  margin: 0 auto;
  width: 34px;
  height: 34px;
  color: #000 !important;
}
.header-style-one .mobile-nav-toggler svg path {
  fill: #000 !important;
}
.header-style-one .mobile-nav-toggler svg path {
  transition: all 300ms ease;
}
.header-style-one .mobile-nav-toggler:hover {
  border-color: #3489dd;
}
.header-style-one .mobile-nav-toggler:hover svg path {
  fill: #3489dd;
}
.header-style-one.innerpage-style {
  background-color: #030303;
}

.main-menu {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  .main-menu {
    padding: 0 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu {
    padding: 0 4px;
  }
}
.main-menu .navbar-header {
  display: none;
}
.main-menu .navbar-collapse {
  padding: 0;
}
.main-menu .navigation {
  margin: 0;
  position: relative;
  list-style: none;
  padding: 0;
}
.main-menu .navigation::after {
  content: "";
  display: block;
  clear: both;
}
.main-menu .navigation > li {
  float: left;
  margin-right: 25px;
  padding: 20px 0;
  position: relative;
  transition: all 300ms ease;
}
@media (max-width: 1799.98px) {
  .main-menu .navigation > li {
    margin-right: 28px;
  }
}
@media (max-width: 1439.98px) {
  .main-menu .navigation > li {
    margin-right: 24px;
    padding: 26px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu .navigation > li {
    margin-right: 18px;
    padding: 24px 0;
  }
}
.main-menu .navigation > li.only-mobile-menu {
  display: none !important;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li > a {
  color: #000;
  display: flex;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 1;
  padding: 0;
  position: relative;
  text-align: center;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
@media (max-width: 1799.98px) {
  .main-menu .navigation > li > a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu .navigation > li > a {
    font-size: 14px;
  }
}
.main-menu .navigation > li > a .icon {
  position: relative;
  font-size: 22px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li > a:hover {
  color: #3489dd;
}
.main-menu .navigation > li.current > a {
  color: #3489dd;
  font-weight: 700;
}
.main-menu .navigation > li.dropdown > a {
  align-items: center;
  gap: 6px;
}
.main-menu .navigation > li.dropdown > a .menu-dropdown-icon {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.main-menu .navigation > li.dropdown > a:hover .menu-dropdown-icon {
  color: #3489dd;
}
.main-menu .navigation > li.dropdown:hover > a .menu-dropdown-icon {
  transform: rotate(180deg);
}
.main-menu .navigation > li.dropdown:hover > ul {
  margin-top: 0;
  opacity: 1;
  top: 80%;
  transition: all 300ms ease;
  visibility: visible;
}
.main-menu .navigation > li > ul {
  background-color: #fff;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
  border-top: 2px solid #004991;
  display: none;
  left: 0;
  margin-top: 30px;
  opacity: 0;
  border-radius: 10px;
  padding: 10px 5px;
  position: absolute;
  top: 100%;
  width: 300px;
  max-height: 450px;
  overflow-y: auto;
  z-index: 100;
  list-style: none;
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 12px 0;
  line-height: 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  margin: 0 20px;
  text-transform: capitalize !important;
  transition: all 200ms ease;
  text-decoration: none;
}
.main-menu .navigation > li > ul > li > a:hover {
  color: #3489dd;
  padding-left: 5px;
}
.main-menu .navigation > li > ul > li.dropdown > a {
  padding-right: 28px;
}
.main-menu .navigation > li > ul > li.dropdown > a .menu-dropdown-icon--sub {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  line-height: 1;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  margin-top: 20px;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul {
  background-color: #fff;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
  display: none;
  left: 100%;
  margin-top: 10px;
  opacity: 0;
  padding: 10px 0 0;
  position: absolute;
  top: 0;
  transform: translateY(-30px);
  width: 220px;
  z-index: 100;
  list-style: none;
}
@media (max-width: 1439.98px) {
  .main-menu .navigation > li > ul > li > ul {
    left: auto;
    right: 100%;
  }
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  border-bottom: 1px solid #353535;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  transition: all 300ms ease;
  text-decoration: none;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: #3489dd;
}
.main-menu .navigation li.dropdown .dropdown-btn {
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  display: none;
  font-size: 16px;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 8px;
  width: 34px;
  z-index: 5;
}

.sticky-header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
  left: 0;
  right: auto;
  opacity: 0;
  border-bottom: 1px solid #002e5b;
  padding: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}
.sticky-header.fixed-header {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
@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) {
  .sticky-header .large-container {
    padding: 0 30px;
  }
}
.sticky-header .nav-main {
  background: none;
  position: relative;
}
@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) {
  .sticky-header .nav-main {
    display: flex;
    justify-content: center;
  }
}
.sticky-header .inner-container {
  align-items: center;
  display: flex;
  justify-content: space-around;
  position: relative;
  height: 80px;
}
@media (max-width: 991.98px) {
  .sticky-header .inner-container {
    padding: 15px 0;
  }
}
.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-right: 20px;
  padding: 0 8px;
}
.sticky-header .main-menu .navigation > li:last-child {
  margin-right: 0;
}
.sticky-header .main-menu .navigation > li > a {
  color: #000;
  padding: 20px 0;
}
.sticky-header .main-menu .navigation > li.current > a, .sticky-header .main-menu .navigation > li:hover > a {
  color: #3489dd;
}
.sticky-header .main-menu .navigation > li:before {
  display: none;
}
.sticky-header .outer-box,
.sticky-header .navbar-header {
  display: none;
}
.sticky-header .mobile-nav-toggler {
  color: #cfcfcf !important;
}

@media only screen and (max-width: 1700px) {
  .main-header .header-lower .outer-box .ui-btn-outer {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1439px) {
  .main-header .main-menu .navigation > li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .main-header .main-menu .navigation > li > ul,
  .main-header .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .main-header .main-box {
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .main-header .main-menu {
    display: none;
  }
  .main-header .header-lower .outer-box .ui-btn-outer,
  .main-header .header-lower .outer-box .box-btns {
    display: none;
  }
  .main-header .logo {
    width: 200px;
  }
  .main-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: none;
  }
  .main-header .header-lower {
    padding: 0;
  }
  .main-header .main-box .nav-main {
    width: auto;
  }
  .main-header .main-box {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 599px) {
  .main-header .header-lower .logo-box {
    padding-left: 0;
    min-width: auto;
    margin-right: 0;
    max-width: 140px;
  }
  .main-header .header-lower .logo-box .logo img {
    max-width: 140px;
  }
}

.mobile-nav-toggler {
  position: relative;
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  color: #000;
  display: none;
  top: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .mobile-nav-toggler {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .main-header-style .main-box {
    padding: 5px 12px;
  }
  .main-header-style .main-box .logo {
    max-width: 120px;
  }
  .main-header .main-menu .navigation > li {
    margin-right: 12px;
    padding: 22px 0;
  }
  .main-header .main-menu .navigation > li > a {
    font-size: 13px;
  }
  .main-header-style .outer-box .btn-style-one {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10px;
  flex-shrink: 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) {
  .mobile-menu .upper-box {
    padding: 0 10px;
  }
}
.mobile-menu .close-btn {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 20px;
  text-align: center;
  font-size: 32px;
  padding: 5px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 200px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.5s ease;
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 80%;
  height: 60px;
  border-radius: 10px;
}
.mobile-menu .nav-logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.mobile-menu .menu-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #171717;
  padding: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateX(101%);
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
.mobile-menu .navigation::-webkit-scrollbar {
  width: 4px;
}
.mobile-menu .navigation::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-menu .navigation::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 100px;
}
.mobile-menu .navigation::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.only-mobile-menu {
  display: block !important;
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize !important;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}
.mobile-menu .navigation li > a .menu-dropdown-icon {
  display: none;
}
.mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
  color: #e3e3e3;
  font-weight: 600;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: block;
  border: none;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
}
.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li > ul > li {
  padding-left: 20px;
}
.mobile-menu .navigation li > ul > li > ul > li > a {
  padding-left: 28px;
  font-size: 15px;
  opacity: 0.92;
}
.mobile-menu .navigation li > ul > li > ul > li > ul > li {
  padding-left: 10px;
}
.mobile-menu .navigation li > ul > li > ul > li > ul > li > a {
  padding-left: 36px;
  font-size: 14px;
  opacity: 0.85;
}
.mobile-menu .contact-list-one {
  flex-shrink: 0;
}
.mobile-menu .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #171717;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  flex-shrink: 0;
  list-style: none;
  margin-bottom: 0;
  padding: 0 8px;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  transition: all 300ms ease;
  text-decoration: none;
}
.mobile-menu .social-links li a:hover {
  color: #3489dd;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease 200ms;
  transform: translateX(0%);
}

.contact-list-one {
  position: relative;
  padding: 20px 10px;
  padding-right: 40px;
  list-style: none;
  margin: 0;
}
.contact-list-one li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}
.contact-list-one li:last-child {
  margin-bottom: 0;
}
.contact-list-one li .contact-info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #fff;
}
.contact-list-one li .info-text {
  width: 80%;
}
.contact-list-one li a {
  color: #fff;
  transition: all 300ms ease;
  text-decoration: none;
  word-break: break-word;
  hyphens: auto;
}
.contact-list-one li a:hover {
  color: #3489dd;
}
.contact-list-one li .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 22px;
  line-height: normal;
  background: #404040;
  color: #fff;
}
.contact-list-one li .title {
  display: block;
  font-size: 11px;
  color: #b2c1c0;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-area {
  background: #002e5b;
  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: 280px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
  padding: 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: #3489dd;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 700;
  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: #002e5b;
  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: #002e5b;
  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;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #004991;
  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: #fff;
  color: #004991;
}

@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-color: #0a0a0a;
  background-image: url(../img/banners/bg-feedbacks.webp);
  background-position: center;
  background-repeat: 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: 45px;
  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: #3489dd;
}
.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: #3489dd;
  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(0, 0, 0, 0.45);
  opacity: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.brands-area {
  background: #1f1f1f;
  padding: 40px 0 !important;
}
.brands-area .brandSwiper {
  padding: 6px 0;
}
.brands-area .brandSwiper .swiper-slide {
  padding: 8px;
}
.brands-area .desc {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}
.brands-area .item-brand {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  padding: 12px;
  margin: 4px 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-area .item-brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

button.btn-main {
  border: none;
}

.btn-main {
  background: #002e5b;
  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: "Montserrat", 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: #004991;
  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: 3px;
  text-transform: uppercase;
  background: #004991;
  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: #002e5b;
}
.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: #004991 !important;
  color: #fff !important;
}
.btn-one.color2::before, .btn-one.color2::after {
  background: rgba(52, 137, 221, 0.8) !important;
}
.btn-one.color3 {
  background: #3489dd !important;
  color: #fff !important;
}
.btn-one.color3::before, .btn-one.color3::after {
  background-color: #002e5b !important;
}
.btn-one.color4 {
  background: #1f1f1f !important;
  color: #fff !important;
}
.btn-one.color4::before, .btn-one.color4::after {
  background-color: #004991 !important;
}
.btn-one.color5 {
  background: #f5f5f5 !important;
  color: #000 !important;
}
.btn-one.color5:hover {
  color: #fff !important;
}
.btn-one.color5::before, .btn-one.color5::after {
  background-color: #002e5b !important;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.btn-cta-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 200px;
  gap: 20px;
  background-color: #004991;
  color: #fff;
  border: 1px solid #004991;
  padding: 5px;
  padding-left: 20px;
  line-height: 1.5;
  border-radius: 5px;
  font-weight: 400;
  transition: 0.3s;
}
.btn-cta-primary span {
  padding: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
}
.btn-cta-primary i {
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  transform: rotate(320deg);
  transition: 0.3s;
}
.btn-cta-primary:hover {
  color: #fff;
  transform: scale(0.95);
}
.btn-cta-primary:hover i {
  color: #fff;
  transform: rotate(360deg);
}
.btn-cta-primary.color2 {
  background-color: #1f1f1f;
  color: #fff;
  border: 1px solid #1f1f1f;
}
.btn-cta-primary.color2 span {
  color: #fff !important;
}
.btn-cta-primary.color2 i {
  background: #004991;
  color: #000 !important;
}
.btn-cta-primary.outline1 {
  background-color: transparent;
  color: #004991;
  border: 2px solid #004991;
}
.btn-cta-primary.outline1 span {
  color: #000 !important;
}
.btn-cta-primary.outline1 i {
  background: rgba(0, 73, 145, 0.8);
  color: #1f1f1f !important;
}
.btn-cta-primary.outline2 {
  background-color: transparent;
  color: #1f1f1f;
  border: 2px solid #1f1f1f;
}
.btn-cta-primary.outline2 span {
  color: #1f1f1f !important;
}
.btn-cta-primary.outline2 i {
  background: rgba(31, 31, 31, 0.9);
  color: #004991 !important;
}
.btn-cta-primary.outline3 {
  background-color: transparent;
  color: #f5f5f5 !important;
  border: 2px solid #f5f5f5 !important;
}
.btn-cta-primary.outline3 span {
  color: #f5f5f5 !important;
}
.btn-cta-primary.outline3 i {
  background: rgba(27, 27, 27, 0.9) !important;
  color: #f5f5f5 !important;
}

.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, #3489dd 0%, #3489dd 99%);
}
.card-two:hover .card-prod-content h2,
.card-two:hover .card-prod-content h3 {
  color: #fff;
}
.card-two:hover .card-prod-content p {
  color: #fff;
}
.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: #002e5b;
}
.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, #fff 0%, #f5f5f5 99%);
  border: 1px solid #e0e0e0;
  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: #002e5b;
  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: #000;
}
@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: #000;
  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 #000;
  font-size: 18px;
  color: #000;
  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;
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  overflow: hidden;
  height: 100%;
}
.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: 0;
  height: 250px;
  min-height: 250px;
  flex-shrink: 0;
  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: #1f1f1f;
  opacity: 0.5;
  z-index: 1;
  transition: 0.3s ease;
}
.card-03 .box-image .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  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: #004991;
  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: #004991;
  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;
  flex: 1 1 auto;
  background: #f9f9f9;
  padding-top: 10px;
  min-height: 220px;
  order: 2;
}
.card-03 .card-content .text-box {
  position: relative;
  display: block;
  padding: 25px 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;
  color: #002e5b;
}
.card-03 .card-content .text-box p,
.card-03 .card-content .text-box .text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #555555;
}
.card-03 .card-content .btns {
  position: relative;
  display: block;
  margin-top: auto;
}
.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: #004991;
  width: 50%;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.card-03-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card-03-link .card-03 {
  margin-top: 0;
  margin-bottom: 0;
}

.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: #1f1f1f;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 20px;
  padding: 40px 40px 33px 40px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.testimonial-block-one .inner-box .text-box::before {
  position: absolute;
  content: "";
  background: #1f1f1f;
  width: 24px;
  height: 16px;
  left: 30px;
  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 p {
  color: #fff;
}
.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: #000;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  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: #002e5b;
  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 span {
  color: #000;
}
.testimonial-block-one .inner-box .author-box p {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}
.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, #002e5b 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, #1f1f1f 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-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  transition: 0.3s ease;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.card-step:hover {
  transform: translateY(-10px);
}
.card-step:hover .step-img::before {
  animation-play-state: paused;
}
.card-step:hover .step-img img {
  transform: scale(1.01);
}
.card-step .step-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 280px;
  height: 260px;
  border-radius: 30px;
  margin-bottom: 30px;
  transition: 0.3s ease;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-step .step-img {
    width: 180px;
    height: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-step .step-img {
    width: 250px;
    height: 250px;
  }
}
.card-step .step-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  border: 3px dashed #3489dd;
  border-radius: 30px;
  animation: rotate 100s linear infinite;
  transform: scale(1.01);
  transform-origin: center;
  opacity: 0.8;
  z-index: -1;
}
.card-step .step-img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  transition: 0.3s ease;
}
.card-step .step-number {
  position: absolute;
  bottom: 5px;
  left: 8px;
  min-width: 50px;
  min-height: 50px;
  background: #004991;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  border-radius: 5px 5px 5px 30px;
  padding: 5px 15px;
  color: #1f1f1f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-step .step-number {
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
  }
}
.card-step .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-step .content .step-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}
.card-step .content .step-text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0;
  padding-right: 15px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-step .content .step-text {
    font-size: 20px;
    text-align: center;
  }
}
.card-step .content .btn-link {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 99px;
  text-decoration: none;
  color: #3489dd;
  border: 1px solid #3489dd;
}

.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(0, 46, 91, 0.6);
  padding: 100px 0;
}
.cta-area .cta-caption h3 {
  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 h3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h3 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption h3 {
    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: #004991;
}
.cta-area .btn-main::after {
  background: #004991;
  border-radius: 5px;
}
.cta-area .btn-main i {
  font-size: 2.6rem;
}

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

.faq-accordion {
  width: 99%;
  padding: 0.5rem;
  margin: 20px 0;
  border-radius: 5px;
  background: white;
}
.faq-accordion .accordion-heading {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-accordion .accordion-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-accordion .accordion-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}
.faq-accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid lightgrey;
  border-radius: 3px;
}
.faq-accordion .accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.8rem 1rem;
  background: #ffffff;
  border: none;
  outline: none;
  color: #333333;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
  border-radius: 3px;
}
.faq-accordion .accordion-btn:hover {
  color: #002e5b !important;
  background: rgba(52, 137, 221, 0.8);
}
.faq-accordion .accordion-item--active .accordion-btn {
  color: #3489dd;
  border-radius: 5px;
  border-top: 2px solid #004991;
  background: rgba(0, 46, 91, 0.9);
  border-radius: 3px;
}
.faq-accordion .fa-lightbulb {
  padding-right: 1rem;
}
.faq-accordion .accordion-icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
  color: #002e5b !important;
}
.faq-accordion .accordion-item--active .accordion-icon {
  transform: rotate(135deg);
  color: #fff !important;
}
.faq-accordion .accordion-caption {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 !important;
  color: #000 !important;
  max-width: calc(100% - 30px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-accordion .accordion-caption {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-accordion .accordion-caption {
    font-size: 1rem;
  }
}
.faq-accordion .accordion-item--active .accordion-caption {
  color: #fff !important;
}
.faq-accordion .accordion-content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: #777777;
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.faq-accordion .accordion-content p {
  padding: 1rem 1.4rem;
}
.faq-accordion .accordion-item--active .accordion-content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}

.home-form {
  border-top: 3px solid color-mix(in srgb, #1f1f1f, #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: #3489dd;
  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: 18px;
  line-height: 20px;
  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: #3489dd;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 15px;
}
.form-contact .form-group .btn-prod button,
.form-contact .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .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;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .form-contact .form-group > .d-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .form-contact .form-group > .d-flex .btn-one,
  .form-contact .form-group > .d-flex .whats-form {
    width: 100%;
    margin-left: 0;
  }
}
.form-contact .form-control {
  border: 1px solid rgba(52, 137, 221, 0.6);
  border-radius: 8px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100%;
}
.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 .form-file-upload-box {
  position: relative;
  margin-bottom: 20px;
}
.form-contact .form-file-upload-box .file-upload-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 96px;
  padding: 18px 22px;
  background: #f8fafc;
  border: 2px dashed rgba(52, 137, 221, 0.45);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
  user-select: none;
  margin-bottom: 0;
}
.form-contact .form-file-upload-box .file-upload-wrapper:hover, .form-contact .form-file-upload-box .file-upload-wrapper:focus-within {
  border-color: #3489dd;
  background: rgba(52, 137, 221, 0.05);
  box-shadow: 0 6px 20px rgba(52, 137, 221, 0.12);
  transform: translateY(-2px);
}
.form-contact .form-file-upload-box .file-upload-wrapper:hover .file-upload-icon, .form-contact .form-file-upload-box .file-upload-wrapper:focus-within .file-upload-icon {
  background: #3489dd;
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
}
.form-contact .form-file-upload-box .file-upload-wrapper:hover .file-upload-title, .form-contact .form-file-upload-box .file-upload-wrapper:focus-within .file-upload-title {
  color: #3489dd;
}
.form-contact .form-file-upload-box .file-upload-wrapper.has-file {
  border-style: solid;
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.06);
}
.form-contact .form-file-upload-box .file-upload-wrapper.has-file .file-upload-icon {
  background: #22c55e;
  color: #ffffff;
}
.form-contact .form-file-upload-box .file-upload-wrapper.has-file .file-upload-title {
  color: #15803d;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-input::-webkit-file-upload-button {
  cursor: pointer;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 575px) {
  .form-contact .form-file-upload-box .file-upload-wrapper .file-upload-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(52, 137, 221, 0.12);
  color: #3489dd;
  font-size: 22px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .form-contact .form-file-upload-box .file-upload-wrapper .file-upload-text {
    text-align: center;
    align-items: center;
  }
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  transition: color 0.2s ease;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-upload-hint {
  font-size: 12px;
  color: #718096;
  font-weight: 400;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-name-display {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  word-break: break-all;
  transition: all 0.2s ease;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-name-display.active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form-contact .form-file-upload-box .file-upload-wrapper .file-name-display i {
  font-size: 14px;
}

#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: #3489dd;
}
.h3-form i {
  color: #004991;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #22ba59;
  margin-left: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .whats-form {
    margin-left: 0;
  }
}
.whats-form::before, .whats-form::after {
  background-color: #01a43d;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out;
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .whatsapp {
    right: 15px;
  }
}

.whatsapp-icon {
  margin-top: 13px;
}

.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;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.contact-section .info-container .contact-info:not(:last-child) {
  margin-bottom: 35px;
}
.contact-section .info-container .contact-info .media-body {
  flex: 1 1 auto;
  min-width: 0;
}
.contact-section .info-container .contact-info h3 {
  font-size: 0.95em;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.4;
}
.contact-section .info-container .contact-info h3 a {
  display: inline;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}
.contact-section .info-container .contact-info h3 a:hover {
  color: #004991;
}
.contact-section .info-container .contact-info p {
  color: #383838;
  margin-bottom: 0;
}
.contact-section .info-container .contact-info .icon {
  color: #002e5b;
  margin-right: 0;
  font-size: 1.6em;
  min-width: 35px;
  flex-shrink: 0;
}
.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, #3489dd, #fff 40%);
  background: #3489dd;
}
.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: 100vh;
  background-color: #002e5b;
  margin-top: 90px;
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .fadeleft {
  opacity: 0;
  animation: fadebannerleft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.banner-full .controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .controls {
    bottom: 20px;
  }
}
.banner-full #banner-slider-pagination {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  margin: 0;
  width: auto;
  height: auto;
  background: rgba(0, 20, 45, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}
@media (max-width: 575px) {
  .banner-full #banner-slider-pagination {
    padding: 6px 10px;
    gap: 4px;
  }
}
.banner-full #banner-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 1;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 575px) {
  .banner-full #banner-slider-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}
.banner-full #banner-slider-pagination .swiper-pagination-bullet::after {
  display: none;
}
.banner-full #banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 44px;
  border-radius: 100px;
  background: linear-gradient(20deg, #004991, #002e5b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 73, 145, 0.45);
  transform: none;
}
@media (max-width: 575px) {
  .banner-full #banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 38px;
  }
}
.banner-full .swiper-buttons {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons {
    width: 42px;
    height: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 22px;
    transform: none;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons {
    width: 36px;
    height: 36px;
    bottom: 18px;
  }
}
.banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
    transform: none;
  }
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-prev {
    left: 16px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-prev {
    left: 10px;
  }
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-next {
    right: 16px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-next {
    right: 10px;
  }
}
.banner-full .swiper-buttons svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.banner-full .swiper-buttons svg path {
  stroke: #fff;
  stroke-width: 1.5;
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons svg {
    width: 18px;
    height: 18px;
  }
}
.banner-full .swiper-buttons::before, .banner-full .swiper-buttons::after {
  display: none;
}
.banner-full .swiper-buttons:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons:hover {
    transform: scale(1.06);
  }
}
.banner-full .swiper-buttons:hover svg {
  transform: scale(1.08);
}
.banner-full .swiper-buttons.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner-full .banner-main .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #002e5b;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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 picture,
.banner-full .banner-main .content-area .bg .img-slide {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-full .banner-main .content-area .bg .img-slide {
  object-fit: cover;
  object-position: center;
  animation: loopScale 10s ease-in-out 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 46, 91, 0.88) 0%, rgba(0, 46, 91, 0.55) 42%, rgba(0, 73, 145, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
.banner-full .banner-main .content-area .bg .shape-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0;
  bottom: 0;
  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: 45vw;
  margin-left: 8vw;
}
.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;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text {
    width: 75vw;
    top: -80px;
    margin-left: 6vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 85vw;
    top: -60px;
    margin-left: 4vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 92vw;
    top: -40px;
    padding: 0;
    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: flow;
  flex-wrap: wrap;
  justify-content: start;
  color: #fff;
  font-size: 3rem;
  line-height: 3.2rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  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: 1.8rem;
    line-height: 2rem;
    margin-bottom: 5px;
  }
}
@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.4rem;
    line-height: 1.8rem;
    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.8rem;
    margin-bottom: 5px;
  }
}
.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: #004991;
}
.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: 1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .text2 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1rem;
    line-height: 1.2rem;
    margin: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1rem;
    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: 0.9rem;
    line-height: 1.1rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one {
  margin-top: 20px;
}
.banner-full .banner-main .content-area .content .text .btn-one span {
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
  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: 8px 14px;
    font-size: 12px;
  }
  .banner-full .banner-main .content-area .content .text .btn-one span {
    font-size: 12px;
    margin: 0;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one i {
  width: 45px;
  height: 45px;
}
.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 #002e5b;
  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-about02 .box-wrapper2 {
  margin-top: 40px;
}
.section-about02 .box-image1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about02 .box-image1 {
    height: 400px;
  }
}
.section-about02 .box-image1.h-500 {
  height: 500px;
}
.section-about02 .box-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about02 .about-tabs .nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 4px;
  background-color: rgba(52, 137, 221, 0.1);
  padding: 4px;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about02 .about-tabs .nav {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
  }
}
.section-about02 .about-tabs .nav .nav-item {
  flex: 1 1 0;
  min-width: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about02 .about-tabs .nav .nav-item {
    flex: 1 1 100%;
    width: 100%;
  }
}
.section-about02 .about-tabs .nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1b1b1b;
  padding: 14px 12px;
  border-radius: 5px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about02 .about-tabs .nav .nav-item .nav-link {
    font-size: 13px;
    padding: 12px 8px;
    gap: 6px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about02 .about-tabs .nav .nav-item .nav-link {
    justify-content: flex-start;
    white-space: normal;
    padding: 12px 14px;
  }
}
.section-about02 .about-tabs .nav .nav-item .nav-link.active {
  background-color: #004991;
  color: #fff;
}
.section-about02 .about-tabs .tab-content .icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.5s ease;
  gap: 15px;
}
.section-about02 .about-tabs .tab-content .icon-title i {
  border-radius: 50%;
  font-size: 35px;
  color: #004991;
}
.section-about02 .about-tabs .tab-content .icon-title span {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-image: linear-gradient(180deg, rgba(0, 73, 145, 0.8), rgba(0, 46, 91, 0.9), rgba(0, 73, 145, 0.9));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-about02 .box-expertise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #004991;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 25px -5px rgba(23, 37, 57, 0.2);
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about02 .box-expertise {
    padding: 30px;
  }
}
.section-about02 .box-expertise .ano-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 120px;
  line-height: 120px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about02 .box-expertise .ano-number {
    font-size: 100px;
  }
}
.section-about02 .box-expertise .ano-number span {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about02 .box-expertise .ano-number span {
    font-size: 30px;
  }
}
.section-about02 .box-expertise .ano-number.column {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 80px;
  line-height: 85px;
}
.section-about02 .box-expertise .ano-number.column span {
  font-size: 30px;
  line-height: normal;
}
.section-about02 .box-expertise .text {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about02 .box-expertise .text {
    font-size: 24px;
  }
}

.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: #004991;
  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: #004991;
  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: #fff;
}
.box-cards-mission .card-mission .content .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #fff;
}

.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(0, 46, 91, 0.1);
}
.section-vantagens .box-epec .espec-card.reverse {
  flex-direction: row-reverse;
}
.section-vantagens .box-epec .espec-card .icon {
  position: relative;
  background: rgba(52, 137, 221, 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: #1f1f1f;
}
.section-vantagens .box-epec .espec-card .icon::after {
  position: absolute;
  content: "";
  background: #002e5b;
  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: #002e5b;
}
.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: #002e5b;
}
.section-vantagens .box-epec .espec-card:hover .icon i {
  color: #fff;
}
.section-vantagens .box-epec .espec-card:hover .icon::after {
  height: 100%;
}

.section-atuacao {
  position: relative;
  z-index: 1;
}
.section-atuacao .service-card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  margin: 10px 0;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #eee;
  min-height: 190px;
}
.section-atuacao .service-card2:hover {
  transform: scale(1.02);
}
.section-atuacao .service-card2:hover.bg1 {
  box-shadow: 0 0 20px 0 rgba(0, 73, 145, 0.6);
}
.section-atuacao .service-card2:hover.bg2 {
  box-shadow: 0 0 20px 0 rgba(0, 73, 145, 0.6);
}
.section-atuacao .service-card2.bg1 {
  background: rgba(0, 46, 91, 0.6);
  transition: 0.3s ease-in-out;
}
.section-atuacao .service-card2.bg2 {
  background: #002e5b;
  transition: 0.3s ease-in-out;
}
.section-atuacao .service-card2 .box-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5px 10px;
}
.section-atuacao .service-card2 .box-title .icon {
  width: 60px;
  height: 60px;
}
.section-atuacao .service-card2 .box-title .icon img {
  width: 60px;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}
.section-atuacao .service-card2 .box-title h2,
.section-atuacao .service-card2 .box-title h3,
.section-atuacao .service-card2 .box-title .title {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.section-atuacao .service-card2 .text p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 20px 0;
  color: #eee;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.section-atuacao .service-card2 a,
.section-atuacao .service-card2 .link {
  font-size: 0.9rem;
  width: fit-content;
  margin: 10px 0;
  padding: 8px 20px;
  border-radius: 100px;
  color: #000;
  background: rgba(248, 248, 248, 0.8);
  box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.section-atuacao .service-card2 a i,
.section-atuacao .service-card2 .link i {
  font-size: 0.9rem;
  color: #3489dd;
  transition: 0.3s ease;
}
.section-atuacao .service-card2 a:hover,
.section-atuacao .service-card2 .link:hover {
  transform: scale(1.03);
}
.section-atuacao .service-card2 a:hover i,
.section-atuacao .service-card2 .link:hover i {
  margin-left: 5px;
}

.section-sevice {
  position: relative;
  overflow-x: hidden;
  background: rgba(0, 73, 145, 0.1);
}
.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;
  }
}
@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 .btn-one {
    width: 100%;
    padding: 18px 30px;
  }
}
.section-sevice .prodSwiper .box-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  margin-top: 30px;
  z-index: 1;
}
.section-sevice .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;
}
.section-sevice .prodSwiper .box-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #004991;
}
.section-sevice .prodSwiper .box-controls .navs {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.section-sevice .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;
}
.section-sevice .prodSwiper .box-controls .navs .swiper-buttons::after {
  display: none;
}
.section-sevice .prodSwiper .box-controls .navs .swiper-buttons svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.section-sevice .prodSwiper .box-controls .navs .swiper-buttons svg path {
  stroke: #004991;
}

.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;
}

.counter-area-2 {
  max-width: 100%;
  border-radius: 0;
  padding: 30px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.counter-area-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.9);
  mix-blend-mode: multiply;
  z-index: -2;
}
.counter-area-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banners/count-dots-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1);
  z-index: -1;
}
.counter-area-2 .counter-wrap2 .counter-card2 {
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 250px;
  border-radius: 1%;
  border: 1px solid var(--th-border-color4);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-area-2 .counter-wrap2 .counter-card2 {
    width: 100%;
    height: fit-content;
    padding: 20px;
  }
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
  position: relative;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 75px;
  font-weight: 600;
  color: #3489dd;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 70px;
    left: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 60px;
    left: auto;
  }
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number .plus {
  position: relative;
  top: 10px;
  left: -6px;
  font-size: 60px;
  font-weight: 600;
  color: #004991;
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number .counter-number,
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number span {
  color: #fff;
  font-weight: 600;
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number .small-number {
  position: relative;
  bottom: -35px;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-text,
.counter-area-2 .counter-wrap2 .counter-card2 .media-body p {
  margin-top: 1px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  min-height: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-text,
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body p {
    font-size: 20px;
  }
}

.section-services {
  position: relative;
  padding: 80px 0;
  background-color: #f5f5f5;
  z-index: 1;
}
.section-services .title-area2 {
  margin-bottom: 45px;
}
.section-services .title-area2 p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
}
.section-services__slider {
  position: relative;
}
.section-services__swiper {
  overflow: hidden;
  padding: 8px 4px 20px;
}
.section-services__swiper .swiper-slide {
  height: auto;
}
.section-services__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}
.section-services__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 73, 145, 0.25);
  border-radius: 50%;
  background: #fff;
  color: #004991;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.section-services__arrow:hover {
  background: #004991;
  border-color: #004991;
  color: #fff;
}
.section-services__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.section-services__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}
.section-services__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(0, 73, 145, 0.25);
  opacity: 1;
  transition: background-color 0.2s ease;
}
.section-services__pagination .swiper-pagination-bullet-active {
  background: #004991;
}
.section-services__footer {
  margin-top: 40px;
}
.section-services__card {
  height: 100%;
}
.section-services__card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.section-services__card-frame {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 46, 91, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.section-services__card-top {
  position: relative;
  padding: 14px 14px 0;
}
.section-services__card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #002e5b;
}
.section-services__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.section-services__card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 46, 91, 0.05) 40%, rgba(0, 46, 91, 0.55) 100%);
  pointer-events: none;
}
.section-services__card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 46, 91, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section-services__card-arrow {
  position: absolute;
  right: 22px;
  bottom: -22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  color: #002e5b;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 46, 91, 0.18);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.section-services__card-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 34px 22px 26px;
  background: #002e5b;
}
.section-services__card-title {
  margin: 0;
  padding-bottom: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.section-services__card-title small {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.section-services__card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-services__card:hover .section-services__card-frame {
  box-shadow: 0 16px 44px rgba(0, 46, 91, 0.18);
  transform: translateY(-4px);
}
.section-services__card:hover .section-services__card-media img {
  transform: scale(1.06);
}
.section-services__card:hover .section-services__card-arrow {
  background: #004991;
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .section-services__card-frame {
    transition: none;
  }
  .section-services__card:hover .section-services__card-frame {
    transform: none;
  }
  .section-services__card-media img {
    transition: none;
  }
  .section-services__card:hover .section-services__card-media img {
    transform: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-services {
    padding: 60px 0;
  }
  .section-services__controls {
    margin-top: 28px;
    gap: 14px;
  }
  .section-services__arrow {
    width: 42px;
    height: 42px;
  }
  .section-services__footer {
    margin-top: 32px;
  }
}

.section-products {
  position: relative;
  padding: 80px 0;
  background-color: #f5f5f5;
  z-index: 1;
}
.section-products .title-area2 {
  margin-bottom: 45px;
}
.section-products .title-area2 p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
}
.section-products__slider {
  position: relative;
}
.section-products__swiper {
  overflow: hidden;
  padding: 4px 2px 8px;
}
.section-products__swiper .swiper-slide {
  height: auto;
}
.section-products__swiper .card-two {
  margin: 0;
  height: 100%;
}
.section-products__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}
.section-products__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 73, 145, 0.25);
  border-radius: 50%;
  background: #fff;
  color: #004991;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.section-products__arrow:hover {
  background: #004991;
  border-color: #004991;
  color: #fff;
}
.section-products__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.section-products__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}
.section-products__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(0, 73, 145, 0.25);
  opacity: 1;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.section-products__pagination .swiper-pagination-bullet-active {
  background: #004991;
  transform: scale(1.15);
}
.section-products__footer {
  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) {
  .section-products {
    padding: 60px 0;
  }
  .section-products__controls {
    margin-top: 28px;
    gap: 14px;
  }
  .section-products__arrow {
    width: 42px;
    height: 42px;
  }
}

.section-highlights {
  position: relative;
  padding: 55px 0;
  background: #002e5b;
  z-index: 1;
}
.section-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.section-highlights__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.section-highlights__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(52, 137, 221, 0.45);
  transform: translateY(-3px);
}
.section-highlights__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(52, 137, 221, 0.15);
  color: #3489dd;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.section-highlights__card:hover .section-highlights__icon {
  background: #3489dd;
  color: #fff;
}
.section-highlights__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-highlights__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-highlights__grid {
    gap: 16px;
  }
  .section-highlights__card {
    padding: 24px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-highlights {
    padding: 45px 0;
  }
  .section-highlights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-highlights__card {
    padding: 22px 20px;
  }
}

.section-services {
  position: relative;
  padding: 80px 0;
  z-index: 1;
  overflow: hidden;
}
.section-services__visual {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-services__visual {
    max-height: 380px;
    margin-bottom: 10px;
  }
}
.section-services__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: -14px 14px 0 rgba(52, 137, 221, 0.85);
}
@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-services__frame {
    min-height: 280px;
    box-shadow: 10px 10px 0 rgba(52, 137, 221, 0.85);
  }
}
.section-services__frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 73, 145, 0.15);
  z-index: 1;
  pointer-events: none;
}
.section-services__frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}
@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-services__frame img {
    min-height: 280px;
  }
}
.section-services__content {
  padding: 0 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-services__content {
    padding-left: 20px;
  }
}
.section-services__text {
  margin-bottom: 28px;
}
.section-services__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(31, 31, 31, 0.9);
  margin-bottom: 16px;
}
.section-services__text p:last-child {
  margin-bottom: 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) {
  .section-services {
    padding: 60px 0;
  }
  .section-services__content {
    padding: 0;
  }
}

.section-cta02 {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  z-index: 1;
}
.section-cta02 .title-area2 span,
.section-cta02 .title-area2 .subtitle {
  color: #000;
}
.section-cta02 .title-area2 span::before,
.section-cta02 .title-area2 .subtitle::before {
  background: #002e5b;
  filter: none;
}
.section-cta02 .title-area2 h2,
.section-cta02 .title-area2 h3,
.section-cta02 .title-area2 .title {
  font-size: 2rem;
  line-height: 2.2rem;
}
.section-cta02 .title-area2 h2 b,
.section-cta02 .title-area2 h3 b,
.section-cta02 .title-area2 .title b {
  color: #3489dd;
}
.section-cta02 .title-area2.white span,
.section-cta02 .title-area2.white .subtitle {
  color: #fff;
}
.section-cta02 .title-area2.white span::before,
.section-cta02 .title-area2.white .subtitle::before {
  background: #f5f5f5;
  filter: none;
}
.section-cta02__form-head {
  margin-bottom: 28px;
}
.section-cta02__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3489dd;
}
.section-cta02__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.25;
  color: #002e5b;
}
.section-cta02__title b {
  font-weight: 600;
  color: #004991;
}
.section-cta02__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(31, 31, 31, 0.85);
  max-width: 620px;
}
.section-cta02__form-box {
  padding: 28px;
  border: 1px solid rgba(0, 73, 145, 0.1);
  border-radius: 8px;
  background: #f5f5f5;
}
.section-cta02__form-box .form-contact {
  box-shadow: none !important;
}
.section-cta02__form-box .form-contact .form-control {
  background: #fff;
  border-color: rgba(0, 73, 145, 0.15);
}
.section-cta02__form-box .form-contact .form-control:focus {
  border-color: #3489dd;
}
.section-cta02__form-box .form-contact textarea.form-control {
  border-radius: 8px;
}
.section-cta02__form-box .form-contact .form-group.text-center .d-flex {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
.section-cta02__form-box .form-contact .btn-main {
  min-width: 180px;
}
.section-cta02__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 2px;
  background: #002e5b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.section-cta02__panel-inner {
  flex: 1;
}
.section-cta02__panel-head {
  margin-bottom: 24px;
}
.section-cta02__panel-head .title {
  font-size: 1.5rem;
  line-height: 1.35;
}
.section-cta02__panel-head p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.section-cta02__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-cta02__contact-item a,
.section-cta02__contact-item .section-cta02__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.section-cta02__contact-item a {
  color: #fff;
}
.section-cta02__contact-item a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 73, 145, 0.35);
}
.section-cta02__contact-item a:hover .section-cta02__contact-icon {
  background: rgba(245, 245, 245, 0.1);
  color: #3489dd;
}
.section-cta02__contact-item--static .section-cta02__contact-row {
  color: rgba(255, 255, 255, 0.9);
}
.section-cta02__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #3489dd;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.section-cta02__contact-body {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}
.section-cta02__contact-body small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.section-cta02__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  background: #3489dd;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.section-cta02__whatsapp i {
  font-size: 1.15rem;
}
.section-cta02__whatsapp:hover {
  background: #004991;
  color: #fff;
}
@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-cta02 {
    padding: 60px 0;
  }
  .section-cta02__form-box {
    padding: 22px 18px;
  }
  .section-cta02__panel {
    padding: 24px 20px;
  }
  .section-cta02__text {
    max-width: 100%;
  }
}

.testimonial1-section-area {
  position: relative;
  z-index: 1;
  background-color: #f6f7f9;
  padding: 100px 0;
}
.testimonial1-section-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/banners/bg-feedbacks.webp);
  background-position: center;
  background-size: 1500px;
  background-repeat: repeat-x;
  filter: invert(0);
  opacity: 0.9;
}
.testimonial1-section-area .testimonial-vertical-slider {
  padding: 0 0 0 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial1-section-area .testimonial-vertical-slider {
    padding: 0;
    margin-top: 30px;
  }
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 8px;
  background: #002e5b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area .quito1 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 50px;
  color: #f8f8f8;
  opacity: 0.1;
  pointer-events: none;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area ul {
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 5px;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area ul li i {
  font-size: 14px;
  color: #ff5e14;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #f8f8f8;
  opacity: 0.9;
  font-style: italic;
}
@media (max-width: 575px) {
  .testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial3-slider-content-area .testimonial3-author-area p {
    font-size: 18px;
  }
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area .mans-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #004991;
  flex-shrink: 0;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area .mans-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area .man-text {
  padding-left: 20px;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area .man-text a {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #000;
  display: inline-block;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 5px;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials .testimonial-item .testimonial1-man-info-area .man-text p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000;
  opacity: 0.6;
  line-height: 1.2;
  margin: 0;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs {
  height: 450px;
  padding: 15px 0;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.4s;
  display: flex;
  justify-content: center;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  position: relative;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs .testimonial1-sliders-img {
  position: relative;
  z-index: 1;
  height: 60px;
  width: 60px;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs .testimonial1-sliders-img::after {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #004991;
  z-index: -1;
}
.testimonial1-section-area .testimonial-vertical-slider .slider-testimonials-thumbs .testimonial1-sliders-img img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

@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: #004991;
  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: #004991;
  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(#004991, #002e5b);
  -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: #004991;
  background: linear-gradient(120deg, #002e5b 45%, #004991 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, #002e5b 60%, #004991 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: #3489dd;
  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: #3489dd;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #004991;
}
.int-page-3 .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #002e5b;
}
@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: #004991;
}
.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: #002e5b;
  background: linear-gradient(90deg, #004991 45%, #002e5b 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, #004991 45%, #002e5b 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 #004991;
  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: #004991;
  background: linear-gradient(180deg, #004991 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%, #002e5b 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #002e5b 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #002e5b 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #002e5b 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: #002e5b;
}
.int-page-4 .service-content .titles2 {
  color: #002e5b;
  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 #004991;
  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: #004991;
}
.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: #004991;
}
.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: #004991;
  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: #004991;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #004991;
}
.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;
}

.int-page-5 h2,
.int-page-5 .titles1 {
  font-size: 2.2rem;
  line-height: 2.4rem;
  margin: 15px 0;
  color: #002e5b !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-5 h2,
  .int-page-5 .titles1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-5 h2,
  .int-page-5 .titles1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.int-page-5 h3,
.int-page-5 h4,
.int-page-5 .titles2 {
  color: #002e5b !important;
  font-size: 1.6rem;
  line-height: 1.8rem;
  margin: 15px 0;
}
.int-page-5 p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  color: #000;
}
.int-page-5 ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.int-page-5 ul li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  color: #002e5b;
  font-size: 1.2rem;
  font-weight: bold;
}
.int-page-5 .box-img {
  margin: 20px 0;
  height: 400px;
}
.int-page-5 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-5 .box-img .prodintSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination {
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  margin: 0 4px;
  border: 2px solid transparent;
  position: relative;
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: transparent;
  border-color: #fff;
  transform: scale(1.2);
}
.int-page-5 .box-img .prodintSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #004991;
  width: 8px;
  height: 8px;
}
.int-page-5 .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 #004991;
  margin: 20px 0;
}
.int-page-5 .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: #004991;
}
.int-page-5 .service-details-card .details {
  margin-left: 20px;
}
.int-page-5 .service-details-card .details h2,
.int-page-5 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-5 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-5 .img-text {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  border-radius: 15px;
}
.int-page-5 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #0f0f0f 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
.int-page-5 .img-text .content-padding {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px;
  z-index: 1;
}
.int-page-5 .img-text .content-padding h2,
.int-page-5 .img-text .content-padding h3 {
  font-size: 2rem;
  line-height: 2.2rem;
  color: #004991 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-5 .img-text .content-padding h2,
  .int-page-5 .img-text .content-padding h3 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-5 .img-text .content-padding h2,
  .int-page-5 .img-text .content-padding h3 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.int-page-5 .img-text .content-padding p {
  color: #eee !important;
}
.int-page-5 .swiper-button-prev,
.int-page-5 .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-5 .swiper-button-prev::after,
.int-page-5 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-5 .sidebar02 .box-categoria {
  padding: 15px 20px;
  margin-bottom: 8px;
  border-radius: 5px;
  background: #002e5b;
}
.int-page-5 .sidebar02 .box-categoria .cat-title {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0;
  margin-bottom: 25px;
  color: #fff !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-5 .sidebar02 .box-categoria .cat-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-5 .sidebar02 .box-categoria .cat-title {
    font-size: 24px;
  }
}
.int-page-5 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-5 .sidebar02 .box-categoria ul li {
  padding-left: 0 !important;
  list-style: none !important;
  background: #3489dd;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  border-radius: 3px;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-5 .sidebar02 .box-categoria ul li::before, .int-page-5 .sidebar02 .box-categoria ul li::after, .int-page-5 .sidebar02 .box-categoria ul li::marker {
  display: none !important;
}
.int-page-5 .sidebar02 .box-categoria ul li a {
  padding: 10px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-5 .sidebar02 .box-categoria ul li:hover, .int-page-5 .sidebar02 .box-categoria ul li.active {
  transform: scale(1.03);
  background: #3489dd;
}
.int-page-5 .sidebar02 .box-categoria ul li:hover a, .int-page-5 .sidebar02 .box-categoria ul li.active a {
  color: #000;
}
.int-page-5 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  margin-top: 0;
  height: 350px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #004991;
}
.int-page-5 .sidebar02 .sidebar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banners/bg-feedbacks.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  z-index: 1;
  pointer-events: none;
}
.int-page-5 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(160deg, #004991 0%, #002e5b 100%);
  width: 100%;
  height: 100%;
  opacity: 0.72;
  z-index: 1;
  pointer-events: none;
}
.int-page-5 .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-5 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #004991;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-5 .sidebar02 .sidebar-cta .content-inner h2 {
  color: #fff !important;
  font-size: 24px !important;
  margin: 15px 0 10px;
  text-align: center;
}
.int-page-5 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: center;
}
.int-page-5 .sidebar02 .sidebar-cta .content-inner a {
  padding: 12px 30px;
  background: #3489dd !important;
  color: #002e5b !important;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 10px;
}
.int-page-5 .sidebar02 .sidebar-cta .content-inner a:hover {
  transform: scale(1.02);
  background: #3489dd !important;
  color: #002e5b !important;
}
.int-page-5 .boxExpand {
  margin: 10px 0;
  padding: 10px 0;
}
.int-page-5 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-5 .boxExpand #contentExpand.expanded {
  max-height: 8000px;
}
.int-page-5 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-5 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, #fff 30%, rgba(0, 0, 0, 0) 100%);
}
.int-page-5 .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-5 .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004991;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}
.int-page-5 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #004991;
  text-align: center;
  padding: 10px 10px;
  border-radius: 5px;
  height: 420px;
  width: 95%;
}
.int-page-5 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #004991;
  background: linear-gradient(180deg, #004991 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-5 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2%;
  width: 110%;
  height: 95%;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
}
.int-page-5 .bg-sec {
  background: #dce0e9;
  position: relative;
  z-index: 1;
}
.int-page-5 .bg-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banners/texture.png");
  background-size: 700px;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: -1;
}
.int-page-5 .bg-sec #contentExpand::before {
  background: linear-gradient(to top, #dce0e9 20%, rgba(0, 0, 0, 0) 100%) !important;
}
.int-page-5 .form-contact {
  background: #fff;
  padding: 30px 20px !important;
  border-radius: 25px !important;
  box-shadow: 0 8px 30px rgba(106, 106, 106, 0.1019607843);
  margin: 20px 0;
}

.int-page-5 .faq-accordion {
  margin: 20px 0;
  height: 100% !important;
  clear: both;
}
.int-page-5 .faq-accordion .faq-item {
  margin-bottom: 10px;
}
.int-page-5 .faq-accordion .faq-item.active .faq-question span,
.int-page-5 .faq-accordion .faq-item.active .faq-question .faq-question-title {
  color: #fff !important;
}
.int-page-5 .faq-accordion .faq-item .faq-question {
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .int-page-5 .ajust-float,
  .int-page-5 .service-media {
    width: 48%;
    float: left;
    margin: 0 24px 18px 0;
  }
}
.int-page-5 .ajust-float img,
.int-page-5 .service-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-5 .ajust-float img,
  .int-page-5 .service-media img {
    min-height: 280px;
    max-height: 340px;
    margin-bottom: 18px;
  }
}
.int-page-5 .boxExpand {
  clear: both;
}

.uniformes-galeria .uni-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #002e5b;
  background: #fff;
  border: 1px solid rgba(0, 73, 145, 0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.uniformes-galeria .uni-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/5;
  padding: 16px;
  background: #fafbfc;
  overflow: hidden;
}
.uniformes-galeria .uni-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.uniformes-galeria .uni-card__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.75rem;
  color: #004991;
  background: #fff;
  border: 1px solid rgba(0, 73, 145, 0.14);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.uniformes-galeria .uni-card__label {
  display: block;
  padding: 11px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #002e5b;
  border-top: 1px solid rgba(0, 73, 145, 0.08);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uniformes-galeria .uni-card__num {
  font-weight: 500;
  color: rgba(0, 73, 145, 0.45);
  margin-right: 0.35em;
}
.uniformes-galeria .uni-card:hover, .uniformes-galeria .uni-card:focus-visible {
  outline: none;
  border-color: rgba(0, 73, 145, 0.28);
  box-shadow: 0 8px 24px rgba(0, 46, 91, 0.06);
  transform: translateY(-2px);
}
.uniformes-galeria .uni-card:hover .uni-card__img, .uniformes-galeria .uni-card:focus-visible .uni-card__img {
  transform: scale(1.03);
}
.uniformes-galeria .uni-card:hover .uni-card__zoom, .uniformes-galeria .uni-card:focus-visible .uni-card__zoom {
  opacity: 1;
  transform: translateY(0);
  background: #004991;
  border-color: #004991;
  color: #fff;
}
.uniformes-galeria .uni-card:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 73, 145, 0.35), 0 8px 24px rgba(0, 46, 91, 0.06);
}

.box-slide-thumbs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  background: rgba(177, 177, 177, 0.5);
}
.box-slide-thumbs.is-float .gallery-top .swiper-slide {
  height: 400px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .box-slide-thumbs.is-float .gallery-top .swiper-slide {
    height: 300px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-slide-thumbs.is-float .gallery-top .swiper-slide {
    height: 250px !important;
  }
}
.box-slide-thumbs.ajust-tam2 .gallery-top .swiper-slide {
  height: 450px !important;
}
.box-slide-thumbs .gallery-top {
  border-radius: 5px;
  overflow: hidden;
}
.box-slide-thumbs .gallery-top.h-300 .swiper-slide {
  height: 320px !important;
}
.box-slide-thumbs .gallery-top .swiper-slide {
  width: 100%;
  height: 500px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .box-slide-thumbs .gallery-top .swiper-slide {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-slide-thumbs .gallery-top .swiper-slide {
    height: 350px;
  }
}
.box-slide-thumbs .gallery-top .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
}
.box-slide-thumbs .gallery-top .swiper-slide img.obj-contain {
  object-fit: contain;
}
.box-slide-thumbs .gallery-thumbs {
  padding: 5px 5px;
}
.box-slide-thumbs .gallery-thumbs .swiper-slide {
  height: 80px;
  min-width: 100px;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  background-color: #ccc;
  border: 1px solid rgba(52, 137, 221, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .box-slide-thumbs .gallery-thumbs .swiper-slide {
    height: 60px;
  }
}
.box-slide-thumbs .gallery-thumbs .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  background: #fff;
}
.box-slide-thumbs .gallery-thumbs .swiper-slide img.obj-contain {
  object-fit: contain;
}
.box-slide-thumbs .gallery-thumbs .swiper-slide:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.box-slide-thumbs .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1 !important;
  transform: scale(1.03);
  border: 3px solid #004991;
}
.box-slide-thumbs .swiper-button-prev,
.box-slide-thumbs .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;
}
.box-slide-thumbs .swiper-button-prev::after,
.box-slide-thumbs .swiper-button-next::after {
  font-size: 20px;
  color: #a81818;
  font-weight: 600;
}
.box-slide-thumbs .swiper-button-prev,
.box-slide-thumbs .swiper-button-next {
  top: 50%;
  width: 45px;
  height: 45px;
  background: rgba(245, 245, 245, 0.4);
  border: 1px solid rgba(0, 73, 145, 0.5);
  transform: translateY(-50%);
}
.box-slide-thumbs .swiper-button-prev::after,
.box-slide-thumbs .swiper-button-next::after {
  color: #004991;
}

.page-sobre .slider-area .slider-height {
  height: 380px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .page-sobre .slider-area .slider-height {
    height: 320px;
  }
}

.section-about {
  padding: 100px 0 110px;
}
@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 {
    padding: 70px 0 80px;
  }
}
.section-about .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 480px;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-content {
    min-height: auto;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.section-about .about-content .text-content .desc p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.section-about__visual {
  width: 100%;
  height: 100%;
}
.section-about__frame {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 12px 12px 0 rgba(0, 73, 145, 0.85);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about__frame {
    min-height: 420px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about__frame {
    min-height: 320px;
    box-shadow: 8px 8px 0 rgba(0, 73, 145, 0.85);
  }
}
.section-about__frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about__frame img {
    min-height: 420px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about__frame img {
    min-height: 320px;
  }
}
.section-about .box-cards-mission {
  margin-top: 110px;
}
.section-about .box-cards-mission .card-mission {
  min-height: 280px;
}
.section-about .box-cards-mission .card-mission .content {
  padding: 55px 20px 40px;
}
.section-about .box-cards-mission .card-mission .content .desc {
  font-size: 15px;
  line-height: 1.7;
}

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

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

.lgpd {
  position: fixed;
  bottom: 4%;
  left: 2%;
  max-width: 360px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}
.lgpd .title {
  font-weight: 600;
  color: rgb(31, 41, 55);
}
.lgpd .description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75, 85, 99);
}
.lgpd .description a {
  color: rgb(59, 130, 246);
}
.lgpd .description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.lgpd .actions .pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31, 41, 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.lgpd .actions .pref:hover {
  color: rgb(156, 163, 175);
}
.lgpd .actions .pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lgpd .actions .accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17, 24, 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd .actions .accept:hover {
  background-color: rgb(55, 65, 81);
}
.lgpd .actions .accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
