@charset "UTF-8";
.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media (min-width: 992px) {
  .order-lg-1 {
    order: 1 !important;
  }
}

@media (min-width: 992px) {
  .order-lg-2 {
    order: 2;
  }
}

@media (min-width: 992px) {
  .order-lg-3 {
    order: 3;
  }
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.img-fluid {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-end {
  text-align: end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.align-items-center {
  align-items: center;
}

.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0 ;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0 ;
}

header .top_menu {
  border-bottom: 1px solid #e8edf1;
  background-color: #616160;
  padding: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .top_menu {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  header .top_menu {
    display: none;
  }
}
@media (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .dn_btn {
  display: inline-block;
  font-size: 13px;
  margin-right: 40px;
  font-weight: normal;
  color: #fff;
  transition: all 300ms linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .dn_btn {
    margin-right: 10px;
  }
}
header .top_menu .dn_btn:hover {
  color: #8F99A1;
}
header .top_menu .header-social a {
  color: #fff;
  transition: all 300ms linear 0s;
}
header .top_menu .header-social a:hover {
  color: #8F99A1;
}
header .top_menu .header-social a i {
  margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .header-social a i {
    margin-right: 6px;
  }
}
header .top_menu .contact-menu a {
  display: inline-block !important;
  font-size: 13px;
}
header .header-area {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
header .header-area.sticky {
  background: #fff;
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #000;
}
header .header-area.sticky .top_menu {
  display: none;
}
header .header-area .header-main {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  height: 106px;
  align-items: center;
}
header .header-area .header-main .logo {
  padding: 0 15px;
}
header .header-area .header-main .logo img {
  height: 90px;
}
header .header-area .header-main .nav-menu {
  padding: 0 15px;
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 40px;
  position: relative;
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
header .header-area .header-main .nav-menu .menu .menu-item a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item a .plus::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background: #000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
header .header-area .header-main .nav-menu .menu .menu-item a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  position: relative;
  top: 1px;
  background: transparent;
  transition: all 0.3s;
}
header .header-area .header-main .nav-menu .menu .menu-item a:hover {
  color: #8F99A1;
}
header .header-area .header-main .nav-menu .menu .menu-item a:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item a:hover .plus:after {
  background-color: #8F99A1;
}
header .header-area .header-main .nav-menu .menu .menu-item a:hover::after, header .header-area .header-main .nav-menu .menu .menu-item a.active-nav::after {
  width: 100%;
  background: #8F99A1;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #8F99A1;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: all 0.4s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #8F99A1;
  padding-left: 4px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
    margin-left: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    padding-left: 45px;
  }
  header .header-area .header-main .nav-menu .menu .has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -7px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 7px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 27px;
  background-color: transparent;
  color: #8F99A1;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
@media (max-width: 991px) {
  header .header-area .header-main .close-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .header-area .header-main .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-area .header-main .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
}
header .header-area .contact-btn .btn {
  padding: 18px 30px;
}

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

.footer-area {
  background: #f3f3f3;
  padding: 35px 0 0;
  z-index: 2;
  position: relative;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
.footer-area .footer-top .bg-top {
  background: #616160;
  padding: 20px;
  border-radius: 8px;
  margin-top: -102px;
  z-index: 2;
  position: relative;
}
.footer-area .footer-top .bg-top .footer-tittle .footer-pera p {
  color: #fff;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 45px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  filter: brightness(0) invert(1);
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  height: 90px;
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #000;
}
@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: color-mix(in srgb, #616160, #000 20%);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  margin-bottom: 38px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #000;
  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: #8F99A1;
  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: #8F99A1;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #000;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #8F99A1;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a i {
  color: #B34236;
  font-size: 14px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(0);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 18px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #B34236;
  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: #8F99A1;
}

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

.banner-full {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  margin-top: 145px;
}
@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 {
    margin-top: 100px;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 1.2s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
.banner-full .swiper-pagination {
  margin-bottom: 5px;
}
@media (min-width:1400px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-pagination.position-left {
    width: 350px;
    height: 30px;
    top: 47%;
    left: -15vh;
    transform: rotate(90deg) translateY(-50%);
  }
}
.banner-full .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 8px;
  margin: 0 5px !important;
  border-radius: 2px;
  transition: 0.8s ease-in-out;
  background: #ffffff;
  opacity: 0.5;
}
.banner-full .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 80px;
  background: #B34236;
  opacity: 1;
}
.banner-full .swiper-buttons {
  color: #a0a09f;
  height: 60px;
  width: 60px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 1px 30px -10px #000;
  transition: 0.3s ease;
  display: flex;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 35px;
    width: 35px;
  }
}
@media 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 {
    top: auto;
    bottom: 30px;
  }
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 15px;
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 15px;
}
.banner-full .swiper-buttons i {
  font-size: 1.5rem;
  color: #B34236;
  transition: 0.3s ease;
}
.banner-full .swiper-buttons::before, .banner-full .swiper-buttons::after {
  color: #8F99A1;
  font-size: 25px;
  font-weight: 600;
  display: none;
}
.banner-full .swiper-buttons:hover {
  transform: scale(1.1);
  background: #fff;
}
.banner-full .swiper-buttons:hover i {
  transform: scale(1.05);
}
.banner-full .swiper-buttons:hover::before, .banner-full .swiper-buttons:hover::after {
  color: #8F99A1;
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media (min-width:1400px) {
  .banner-full .banner-main {
    height: 640px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main {
    height: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main {
    height: 940px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main {
    height: 720px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main {
    height: 540px;
  }
}
.banner-full .banner-main .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
.banner-full .banner-main .content-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-full .banner-main .content-area .bg .image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
  animation: loopScale 8s ease-in 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-full .banner-main .content-area .bg .shape img {
  width: 115%;
  height: 100%;
  object-position: left bottom;
  margin-left: -30px;
  opacity: 1;
}
.banner-full .banner-main .content-area .bg::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.9;
  z-index: 1;
}
.banner-full .banner-main .content-area .content {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 0px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 95%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 20px;
  }
}
.banner-full .banner-main .content-area .content .text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 5px 0;
  width: 40vw;
  margin-left: 5vw;
}
@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: 80vw;
    top: -240px;
    margin-left: 8vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -190px;
    margin-left: 8vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 98vw;
    top: -120px;
    margin-left: 2vw;
  }
}
.banner-full .banner-main .content-area .content .text h1,
.banner-full .banner-main .content-area .content .text h2,
.banner-full .banner-main .content-area .content .text span {
  color: #fff;
  font-size: 3.6rem;
  line-height: 3.8rem;
  text-shadow: 2px 2px 65px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text h1 b,
.banner-full .banner-main .content-area .content .text h2 b,
.banner-full .banner-main .content-area .content .text span b {
  font-weight: 700;
  color: #8F99A1;
}
.banner-full .banner-main .content-area .content .text p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one,
.banner-full .banner-main .content-area .content .text .btn {
  padding: 10px 30px;
  background: #8F99A1;
  color: #fff;
  width: fit-content;
}
.banner-full .banner-main .content-area .content .text .btn-one span,
.banner-full .banner-main .content-area .content .text .btn span {
  font-size: 1rem;
  line-height: normal;
  padding: 2px;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .btn-one,
  .banner-full .banner-main .content-area .content .text .btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one::before, .banner-full .banner-main .content-area .content .text .btn-one::after,
.banner-full .banner-main .content-area .content .text .btn::before,
.banner-full .banner-main .content-area .content .text .btn::after {
  background-color: #B34236;
}
.banner-full .banner-main .content-area .content .text .btn-one i,
.banner-full .banner-main .content-area .content .text .btn i {
  width: 25px;
  height: 25px;
}
.banner-full .banner-main .content-area .content .image-banner {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid rgba(249, 249, 249, 0.6);
  box-shadow: 8px 8px 45px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 95%;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .image-banner {
    margin: 30px 10px;
    width: 90%;
    height: 240px;
  }
}
.banner-full .banner-main .content-area .content .image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.banner-full .banner-main .content-area .content .image-banner img.obj-contain {
  object-fit: contain;
}
.banner-full .banner-thumb {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
.banner-full .banner-thumb .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.banner-full .banner-thumb .img-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
.banner-full .banner-thumb .img-thumb.swiper-slide-thumb-active {
  transform: scale(1.4);
  opacity: 1;
  border: 2px solid #B34236;
  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 .animate,
.animate2 {
  transition: 1s;
  opacity: 0;
}
@media (max-width: 767px) {
  section .animate,
  .animate2 {
    transform: translateX(0) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
  }
}

section.show-animate .animate {
  transition: 1s;
  opacity: 1;
}

.about-area {
  padding: 65px 0;
  background: #e5e5e5;
}
@media (max-width: 991px) {
  .about-area {
    padding: 45px 0 65px;
  }
}
.about-area .style-img {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 8px;
  z-index: 1;
}
.about-area .style-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  background-color: #eee;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 575px) {
  .about-area .style-img img {
    max-height: 250px;
  }
}
.about-area .style-img::after {
  content: "";
  position: absolute;
  height: 75%;
  width: 75%;
  left: -30px;
  top: -20px;
  z-index: -1;
  border-radius: 8px;
  border: 3px solid #8F99A1;
  opacity: 0.5;
}
.about-area .ajust-style-int::after {
  left: 160px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .ajust-style-int::after {
    left: 135px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .ajust-style-int::after {
    left: 145px;
  }
}
@media (max-width: 575px) {
  .about-area .ajust-style-int::after {
    left: 28%;
  }
}
.about-area .section-title span strong {
  font-size: 1rem;
  color: #616160;
}
.about-area .card {
  position: relative;
  width: 100%;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.5s;
  background: transparent;
}
.about-area .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #616160;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}
.about-area .card .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
}
.about-area .card .box .content {
  padding: 20px;
  text-align: center;
}
.about-area .card .box .content h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}
.about-area .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}
.about-area .card .box .content img {
  height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.about-area .card .box .content ul li {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.about-home {
  padding: 80px 0 90px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-home {
    padding: 55px 0 70px;
  }
}
.about-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(143, 153, 161, 0.04) 0%, transparent 50%), linear-gradient(225deg, rgba(179, 66, 54, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.about-home .animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-home .about-pillar.animate {
  transition-delay: calc(0.12s * var(--i));
}
.about-home__header {
  position: relative;
  max-width: 720px;
  margin: 0 auto 55px;
}
@media (max-width: 991px) {
  .about-home__header {
    margin-bottom: 40px;
  }
}
.about-home__header h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #616160;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-home__eyebrow {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B34236;
  margin-bottom: 12px;
}
.about-home__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgb(127.7585492228, 127.7585492228, 126.4414507772);
  margin-bottom: 0;
}
.about-home__intro {
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .about-home__intro {
    margin-bottom: 50px;
  }
}
.about-home__visual {
  position: relative;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .about-home__visual {
    padding-left: 0;
    margin-top: 30px;
  }
}
.about-home__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}
.about-home__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(97, 97, 96, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-home__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home__img-wrap img {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .about-home__img-wrap img {
    height: 280px;
  }
}
.about-home__badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  z-index: 2;
  background: #B34236;
  color: #fff;
  padding: 18px 22px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(179, 66, 54, 0.35);
}
@media (max-width: 991px) {
  .about-home__badge {
    left: 16px;
    bottom: 20px;
  }
}
.about-home__badge strong {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-home__badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-home__content {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .about-home__content {
    padding-left: 0;
  }
}
.about-home__content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #616160;
  margin-bottom: 1rem;
  text-align: justify;
}
.about-home__content p:last-of-type {
  margin-bottom: 1.75rem;
}
.about-home__cta {
  margin-top: 4px;
}
.about-home__pillars {
  position: relative;
  padding-top: 10px;
}
.about-home__pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 153, 161, 0.5), transparent);
}
.about-home__diferenciais {
  position: relative;
  margin-top: 55px;
  padding-top: 55px;
}
@media (max-width: 991px) {
  .about-home__diferenciais {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.about-home__diferenciais::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 153, 161, 0.5), transparent);
}
.about-home__diferenciais .about-home__header {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .about-home__diferenciais .about-home__header {
    margin-bottom: 30px;
  }
}

.about-pillar {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(143, 153, 161, 0.2);
  border-top: 3px solid #B34236;
  padding: 32px 28px 36px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.about-pillar:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.about-pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(143, 153, 161, 0.15);
}
.about-pillar__label {
  flex-shrink: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #B34236;
  letter-spacing: 0.05em;
}
.about-pillar h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #616160;
  margin: 0;
  line-height: 1.2;
}
.about-pillar p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgb(117.5056994819, 117.5056994819, 116.2943005181);
  margin: 0;
  text-align: justify;
}

.about-home.show-animate .animate {
  opacity: 1;
  transform: translateY(0);
}

.diferencial-box {
  background: #fff;
  border-left: 3px solid #B34236;
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.diferencial-box h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #616160;
  margin: 0 0 12px;
  line-height: 1.3;
}
.diferencial-box p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgb(117.5056994819, 117.5056994819, 116.2943005181);
  margin: 0;
  text-align: justify;
}

.product-area .card-product.animate {
  transition: 1s;
  transform: translateX(-300px);
  transition-delay: calc(0.2s * var(--i));
  opacity: 0;
}
.product-area {
  padding: 65px 0;
}
.product-area .padding-content {
  padding: 0 7vw;
}
@media (min-width: 992px) {
  .product-area .padding-content {
    padding: 0;
    padding-left: 3rem;
  }
}
.product-area .card-product {
  background: #e5e5e5;
  border-radius: 8px;
  transition: 0.3s all ease-in-out;
  position: relative;
  top: 0;
  z-index: 1;
  margin: 0 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.product-area .card-product h2,
.product-area .card-product h3 {
  background-color: #B34236;
  border-radius: 15px 15px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5em;
  padding: 6px 15px;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.product-area .card-product p {
  color: #000;
  text-align: center;
  font-size: 14px;
  padding: 0 15px;
}
.product-area .card-product p span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #B34236;
  border: 1px solid #B34236;
  padding: 8px;
  border-radius: 8px;
  width: 80%;
  display: inline-block;
  transition: 0.4s ease;
}
.product-area .card-product img {
  height: 220px;
  width: 85%;
  margin-top: 20px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.product-area .card-product:hover p span {
  color: #fff;
  border: 1px solid #B34236;
  background-color: #B34236;
  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);
}
.product-area .card-product .skewed {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #a0a09f;
  z-index: -1;
  border-radius: 8px 8px 0 0;
  clip-path: polygon(0 0, 100% 0%, 100% 60%, 0 65%);
}
.product-area .form-group .btn-prod button,
.product-area .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
.product-area .img-prod-int {
  border-radius: 8px;
  width: 518px;
}

.product-area.show-animate .card-product.animate {
  transform: translateX(0);
  opacity: 1;
}

.other-product {
  padding: 65px 0;
  background-color: #f8f8f8;
}
.other-product .animate {
  transform: translateX(-100%);
}
.other-product .style-img {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 8px;
  z-index: 1;
}
.other-product .style-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  background-color: #eee;
  border-radius: 6px;
  box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .other-product .style-img img {
    max-height: 250px;
  }
}
.other-product .style-img::after {
  content: "";
  position: absolute;
  display: block;
  height: 75%;
  width: 75%;
  border-radius: 0%;
  right: -30px;
  top: -20px;
  z-index: -2;
  border-radius: 6px;
  opacity: 0.7;
  border: 3px solid #8F99A1;
}

.other-product.show-animate .animate {
  transform: translateX(0);
}

.map-site {
  padding: 65px 0 100px;
}
.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #B34236;
}
.map-site ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
}
.map-site ul li a:hover {
  color: #8F99A1;
  padding-left: 5px;
}

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

.prod-int .swiper-button-prev,
.prod-int .swiper-button-next {
  top: 50%;
  height: 50px !important;
  width: 50px !important;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  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;
}
.prod-int .swiper-button-prev::after,
.prod-int .swiper-button-next::after {
  font-size: 20px !important;
  color: #000018;
  font-weight: 600;
}
.prod-int .swiper-pagination {
  position: relative;
}
@media (min-width: 992px) {
  .prod-int .ajust-float {
    float: left;
    width: 50%;
    margin-right: 20px;
  }
}
.prod-int .img-prod-int {
  border-radius: 8px;
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .prod-int .padding-lg-right {
    padding-right: 4%;
  }
}
.prod-int .form-group .btn-prod button,
.prod-int .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
.prod-int h2 {
  color: #616160;
  text-align: initial;
  font-size: 1.6em;
}
.prod-int h2 i {
  color: #B34236;
  font-size: 1.2rem;
}
.prod-int h3 {
  color: #616160;
  margin-bottom: 20px;
}
.prod-int h3 i {
  color: #B34236;
}

.h1-section {
  background: #a0a09f;
  padding: 20px 0;
}
.h1-section h2 {
  font-size: 1.4em;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 2px #434343;
}

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

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

/* ================== */
.slider-height {
  height: 350px;
  background-size: cover;
}

.hero-overly {
  position: relative;
  z-index: 1;
}
.hero-overly::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.42);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.slider-area {
  background-image: url(../img/banners/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-area .hero-cap h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area .hero-cap h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .slider-area .hero-cap h1 {
    font-size: 35px;
  }
}
.slider-area .divider {
  background: #B34236;
  margin: 7px auto;
}

.ajust-padding {
  padding-top: 145px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ajust-padding {
    padding-top: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ajust-padding {
    padding-top: 115px;
  }
}
@media (max-width: 575px) {
  .ajust-padding {
    padding-top: 115px;
  }
}

.ajust-link {
  color: #fff;
  font-weight: 500;
}
.ajust-link:hover {
  color: #8F99A1;
}

.color-w {
  color: #8F99A1;
  margin: 0;
}

.home-form {
  padding: 65px 0;
  position: relative;
  z-index: 1;
  background-color: #e5e5e5;
}
.home-form .skewed {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banners/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  clip-path: circle(65.7% at 100% 50%);
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.35);
}
@media (max-width: 991px) {
  .home-form .skewed {
    clip-path: circle(710px at 50% 100%);
  }
}
@media (max-width: 575px) {
  .home-form .skewed {
    clip-path: circle(800px at 50% 100%);
  }
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  color: #000 !important;
}
.home-form .shadow-contact {
  text-align: center;
}
.home-form .shadow-contact h2 {
  color: #616160;
  font-weight: 600;
  margin-top: -45px;
  font-size: 2em;
}
.home-form .shadow-contact span {
  font-size: 60px;
  font-weight: 800;
  color: #616160;
  opacity: 0.1;
}
.home-form .shadow-contact2 {
  text-align: center;
}
.home-form .shadow-contact2 h2 {
  color: #fff;
  font-weight: 600;
  margin-top: -45px;
  font-size: 2em;
}
.home-form .shadow-contact2 span {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  opacity: 0.17;
}
.home-form .contact-card .icon-contact {
  background: color-mix(in srgb, #616160, #fff 70%);
  padding: 10px;
  width: 50px;
  height: 45px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .icon-contact i {
  font-size: 25px;
  color: #B34236;
}
.home-form .contact-card .content p {
  font-size: 16px;
  font-weight: 600;
  height: 45px;
  display: flex;
  align-items: center;
}
.home-form .contact-card .content p a {
  color: #000;
}
.home-form .contact-card .content p a:hover {
  color: #8F99A1;
}
.home-form .form-contact {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

@media (max-width: 991px) {
  .form-contact {
    margin-bottom: 45px;
  }
}
.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100%;
}
.form-contact .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-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #a0a09f;
}
.h3-form i {
  color: #8F99A1;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.cta-area {
  background-image: url(../img/banners/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.35);
  padding: 100px 0;
}
.cta-area .cta-caption h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .cta-area .cta-caption h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.cta-area .cta-caption p {
  color: #fff;
  font-size: 18px;
}
.cta-area .btn i {
  font-size: 3em;
}

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

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

li {
  list-style: none;
}

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

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

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

section {
  overflow-x: hidden;
}

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

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

.divider {
  background: #8F99A1;
  width: 85px;
  height: 4px;
}

.bg-white {
  background: #fff;
}

.btn {
  background: #B34236;
  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: "Lato", 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::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #8F99A1;
  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:hover {
  color: #fff;
}
.btn:hover:after {
  left: 0;
  width: 100%;
}
.btn:active {
  top: 2px;
}

.btn-arrow {
  position: relative;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  font-weight: 800;
  transition: 0.3s all ease;
  color: #a0a09f;
  display: inline-block;
}
.btn-arrow:after {
  transition: 0.3s all ease;
  position: absolute;
  content: "➜";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.btn-arrow:hover {
  padding-right: 30px;
  color: #B34236;
}
.btn-arrow:hover:after {
  opacity: 1;
  visibility: visible;
}

.whats-form {
  background: #22BA59;
  margin-left: 20px;
}
.whats-form::after {
  background-color: #01a43d;
}

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

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

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

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

*::-webkit-scrollbar-thumb {
  background-color: #8F99A1;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #B34236;
}

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