* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #292929;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.title--white {
  color: #fff;
  margin-bottom: 2rem;
}
.title__secondary {
  font-weight: 200;
  font-size: 2rem;
}
.title__primary {
  font-weight: 500;
  font-size: 4rem;
}
.title__primary strong {
  color: #cd282f;
}
.title__primary strong.orange {
  color: #f99d1e;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-orange {
  background-color: #f05023;
}
.btn--bg-orange:hover {
  background-color: #d45113;
}
.btn--bg-red {
  background-color: #cd282f;
}
.btn--bg-red:hover {
  background-color: #8d1c20;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-green {
  background-color: #22b61c;
}
.btn--bg-green:hover {
  background-color: #167412;
}
.btn--bg-green-whatsapp {
  background-color: #25d366;
}
.btn--bg-green-whatsapp:hover {
  background-color: #1a9247;
}
.btn--border-red {
  border: 1px solid #e93e3a;
  color: #e93e3a;
}
.btn--border-red:hover {
  background-color: #e93e3a;
  color: #fff;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon--orange {
  background-color: #ee7c46;
  color: #a6532b;
}
.icon--red {
  background-color: #e93e3a;
  color: #ad2e2b;
}
.icon--green {
  background-color: #2aed24;
  color: #22b61c;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 400;
}
.form-group input:not([type=file], [type=submit], [type=checkbox]),
.form-group textarea,
.form-group select {
  padding: 0.8rem 1.2rem;
  width: 100%;
  border: 1px solid #000;
  color: #292929;
}
.form-group input:not([type=file], [type=submit], [type=checkbox])::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit], [type=checkbox]):focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border: 1px solid #cd282f;
}

.form-options {
  display: flex;
  flex-wrap: wrap;
}
.form-options label {
  width: 100%;
}

.form-checkbox {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.numbers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 400px) {
  .numbers-item {
    width: 50%;
  }
}
.numbers-item__thumb {
  width: 18rem;
  max-width: 100%;
}
.numbers-item__text {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.numbers-item__number {
  font-weight: 700;
  font-size: 3.2rem;
}
.numbers-item__number .orange {
  color: #f05023;
}
.numbers-item__number .red {
  color: #cd282f;
}
.numbers-item__name {
  font-weight: 600;
  font-size: 1.4rem;
}

.services-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 0.8rem;
  background-color: #fff;
  border-radius: 3rem;
  aspect-ratio: 1;
  padding: 2rem;
  transition: all 0.2s;
  flex: 0 0 calc(25% - 3rem);
}
@media (max-width: 991px) {
  .services-item {
    flex: 0 0 calc(25% - 1.5rem);
  }
}
@media (max-width: 767px) {
  .services-item {
    padding: 1rem;
    flex: 0 0 calc(25% - 0.75rem);
  }
}
@media (max-width: 575px) {
  .services-item {
    flex: 0 0 calc(50% - 1rem);
  }
}
.services-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-item__icon img {
  width: 10rem;
  max-width: 100%;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .services-item__icon img {
    width: 8rem;
  }
}
@media (max-width: 767px) {
  .services-item__icon img {
    width: 5rem;
  }
}
@media (max-width: 575px) {
  .services-item__icon img {
    width: 8rem;
  }
}
@media (max-width: 400px) {
  .services-item__icon img {
    width: 6rem;
  }
}
.services-item__name {
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  color: #101318;
}
@media (max-width: 991px) {
  .services-item__name {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .services-item__name {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .services-item__name {
    font-size: 1.6rem;
  }
}
@media (max-width: 400px) {
  .services-item__name {
    font-size: 1.2rem;
  }
}
.services-item:hover {
  background-color: #cd282f;
  box-shadow: 0 2px 10px #cd282f;
}
.services-item:hover .services-item__icon img {
  filter: invert(1);
}
.services-item:hover .services-item__name {
  color: #fff;
}

.faq-item {
  border: 1px solid #101318;
  padding: 2rem;
  height: max-content;
}
.faq-item:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.faq-item__question button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
.faq-item__question button i {
  transition: all 0.2s ease-in;
  transform: rotate(45deg);
  color: #101318;
}
.faq-item__question button.collapsed i {
  transform: rotate(0deg);
}
.back-to-top-button {
  position: fixed;
  z-index: 99;
  border: none;
  background-color: #cd282f;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
}
.back-to-top-button.hide {
  opacity: 0;
  visibility: hidden;
}
.back-to-top-button i {
  color: #fff;
}

.footer {
  font-size: 1.4rem;
  background-color: #101318;
  position: relative;
  z-index: 2;
}
.footer-main {
  padding-top: 4rem;
}
.footer-main__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-main__content {
    flex-direction: column;
    align-items: center;
  }
}
.footer-logo img {
  width: 8rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 575px) {
  .footer-contact {
    align-items: center;
  }
}
.footer-contact__item {
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (max-width: 575px) {
  .footer-contact__item {
    align-items: center;
  }
}
.footer-contact__item-title {
  color: #f05023;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-contact__item-link {
  color: #fff;
}
.footer-contact__item-link.underlined {
  text-decoration: underline;
}
.footer-contact__item-link:hover {
  text-decoration: underline;
}
.footer-contact__item-link:not(:last-child) {
  margin-bottom: 0.2rem;
}
.footer-contact__item-link address {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-contact__item-link address {
    text-align: center;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .footer-social {
    font-size: 2rem;
  }
}
.footer-social a i {
  color: #f05023;
  font-size: 2rem;
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .footer-social a i {
    font-size: 3.2rem;
  }
}
.footer-social a:hover i {
  transform: scale(1.1);
  color: #fff;
}
.footer-links {
  list-style: none;
  columns: 2;
  padding: 0;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links li a {
  color: #fff;
  font-weight: 600;
}
.footer-links li a:hover {
  text-decoration: underline;
}
.footer-copyright {
  padding: 1rem 0;
  color: #fff;
  border-top: 1px solid #f05023;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-copyright {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .footer-copyright span {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.footer-copyright__policy {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-copyright__policy {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer-copyright__policy a {
  color: #fff;
  right: 0;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-copyright__policy a {
    position: relative;
    margin-left: 2rem;
  }
}

.header {
  box-shadow: 0 2px 5px rgba(16, 19, 24, 0.05);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background-color: #363636;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0.8rem 0;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .header-contact__content {
    gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
    gap: 1rem;
  }
}
.header-contact__content-box {
  display: flex;
  gap: 2rem;
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 575px) {
  .header-contact__item span {
    display: none;
  }
}
.header-contact__item span:hover {
  text-decoration: underline;
}
.header-contact__item a {
  color: #fff;
}
.header-contact__item a:hover {
  text-decoration: underline;
}
.header-contact__item:hover .header-contact__icon {
  background-color: #fff;
}
.header-contact__icon {
  color: #363636;
  transition: all 0.2s;
}
.header-contact__text-wrapped {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-contact__text-wrapped a:not(:last-child)::after {
  content: " | ";
}
.header-contact__social .icon {
  transition: all 0.2s;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
}
.header-contact__social .icon:hover {
  background-color: #fff;
  color: #363636;
  border: 2px solid #fff;
}
@media (max-width: 575px) {
  .header-contact__social .icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.2rem;
  }
}
.header-main {
  background: linear-gradient(to right, #000, #363636);
  position: relative;
}
.header-main > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 991px) {
  .header-main > .container {
    padding: 0 1.2rem;
  }
}
@media (max-width: 575px) {
  .header-main > .container {
    gap: 2rem;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 20rem;
  max-width: 100%;
  transition: all 0.2s;
}
.header-nav {
  z-index: 1;
  flex: 1;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #292929;
  }
}
.header-nav__list > li {
  padding: 3rem 0;
  text-align: center;
  position: relative;
}
.header-nav__list > li .sub-menu {
  padding: 0;
  position: absolute;
  list-style: none;
  background: linear-gradient(to right, #000, #363636);
  width: max-content;
  left: 50%;
  transform: translate(-50%, 0);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
}
@media (max-width: 991px) {
  .header-nav__list > li .sub-menu {
    display: none;
  }
}
.header-nav__list > li .sub-menu > li a {
  display: block;
  width: 100%;
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: all 0.2s;
}
.header-nav__list > li .sub-menu > li a:hover {
  background: #cd282f;
}
.header-nav__list > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-align: left;
    padding: 0 0 0 1.6rem;
  }
  .header-nav__list > li > span {
    display: flex;
    justify-content: space-between;
  }
  .header-nav__list > li > span > a {
    padding: 1rem 0;
    color: #fff;
    display: block;
    font-weight: 700;
  }
  .header-nav__list > li > span > button {
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 0 2rem;
  }
  .header-nav__list > li > span > button i {
    transition: all 0.2s ease-in;
  }
  .header-nav__list > li > span > button.collapsed i {
    transform: rotate(-90deg);
  }
  .header-nav__list > li ul li:last-child {
    border: none;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.2s;
  padding: 0.8rem 0rem;
  font-weight: 700;
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #cd282f;
  transition: all 0.2s;
}
@media (max-width: 1199px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list > li > a:hover::after,
.header-nav__list > li span a:hover::after {
  width: 100%;
}
.header-nav__list > li.current-menu-item > a {
  color: #cd282f;
}
.header-nav__list > li.current-menu-item > a::after {
  width: 0%;
}
@media (max-width: 991px) {
  .header-nav__list > li.current-menu-item {
    background: #363636;
    border: none;
  }
  .header-nav__list > li.current-menu-item > a::after {
    width: 0%;
  }
}
.header-nav__list > li:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.header-search__btn {
  background-color: #ee7c46;
  color: #fff;
  border: none;
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__btn:hover {
  background-color: #ea5b17;
}
.header-search__form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #292929;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header-search__form.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-search__form input {
  flex: 1;
  border: 1px solid #ececec;
  height: 3.2rem;
  padding: 0 1.2rem;
  transition: all 0.2s;
}
.header-search__form input:focus {
  outline: none;
  box-shadow: 0 0 2px #22b61c;
}
.header-search__form button {
  border: none;
  background-color: #ee7c46;
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__form button:hover {
  background-color: #ea5b17;
}
@media (max-width: 575px) {
  .header-client-area-button {
    font-size: 1.2rem;
  }
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/700;
  min-height: 50rem;
}
@media (max-width: 767px) {
  .banner {
    aspect-ratio: unset !important;
    height: 50rem !important;
  }
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767px) {
  .banner-item {
    height: 50rem;
  }
}
@media (max-width: 991px) {
  .banner-item::after {
    background: linear-gradient(to right, transparent, #cd282f);
  }
}
.banner-item__bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4rem 0;
}
.banner-item__text {
  width: 50%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  transform-style: preserve-3d;
}
.banner-item__text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  filter: blur(34px);
  transform: translateZ(-1px);
}
@media (max-width: 991px) {
  .banner-item__text {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .banner-item__text {
    width: 100%;
  }
}
.banner-item__text-main h1,
.banner-item__text-main h2,
.banner-item__text-main p {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .banner-item__text-main h1,
  .banner-item__text-main h2,
  .banner-item__text-main p {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .banner-item__text-main h1,
  .banner-item__text-main h2,
  .banner-item__text-main p {
    font-size: 2rem;
  }
}
.banner-item__text-main span {
  color: #f05023;
  font-weight: 700;
}
.banner-item__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.banner-item__links .btn {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.banner-item__links .btn img {
  width: 2rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
  transition: all 0.2s ease-in;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.4rem;
}
.banner .owl-dots .owl-dot:hover span, .banner .owl-dots .owl-dot.active span {
  background-color: #f05023;
  border: 2px solid #f05023;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
  opacity: 1;
  color: #101318;
  text-decoration: none;
}
.banner .owl-nav [class*=owl-] i {
  height: 1rem;
}

.service-banner {
  position: relative;
}
.service-banner__bg {
  width: 100%;
}
.service-banner__text {
  width: 35%;
  padding: 4rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 1199px) {
  .service-banner__text {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .service-banner__text {
    padding: 1rem;
    gap: 1rem;
  }
}
.service-banner__text-title {
  color: #cd282f;
  font-size: 6rem;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .service-banner__text-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 991px) {
  .service-banner__text-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .service-banner__text-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .service-banner__text-title {
    font-size: 2rem;
  }
}
.service-banner__text-title.orange {
  color: #f05023;
}
.service-banner__text-title.light-orange {
  color: #f99d1e;
}
.service-banner__text-title.yellow {
  color: #fff700;
}
.service-banner__text-title.blue {
  color: #1fb0c0;
}
.service-banner__text-title.dark-orange {
  color: #eb4f34;
}
.service-banner__text-title.dark-blue {
  color: #0056c0;
}
.service-banner__text-subtitle {
  color: #fff;
  font-size: 2rem;
}
@media (max-width: 1199px) {
  .service-banner__text-subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .service-banner__text-subtitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .service-banner__text-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .service-banner__text-subtitle {
    display: none;
  }
}
.service-banner__text a {
  background-color: #cd282f;
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
}
.service-banner__text a:hover {
  background-color: #a22025;
}
@media (max-width: 1199px) {
  .service-banner__text a {
    font-size: 2rem;
  }
}
@media (max-width: 1199px) {
  .service-banner__text a {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .service-banner__text a {
    font-size: 1.2rem;
  }
}
.service-banner__text a.orange {
  background-color: #f05023;
}
.service-banner__text a.orange:hover {
  background-color: #d2390e;
}
.service-banner__text a.light-orange {
  background-color: #f99d1e;
}
.service-banner__text a.light-orange:hover {
  background-color: #de8306;
}
.service-banner__text a.yellow {
  background-color: #fff700;
  color: #101318;
}
.service-banner__text a.yellow:hover {
  background-color: #ccc600;
}
.service-banner__text a.blue {
  background-color: #1fb0c0;
  color: #101318;
}
.service-banner__text a.blue:hover {
  background-color: #188894;
}
.service-banner__text a.dark-orange {
  background-color: #eb4f34;
  color: #101318;
}
.service-banner__text a.dark-orange:hover {
  background-color: #d73215;
}
.service-banner__text a.dark-blue {
  background-color: #0056c0;
  text-transform: unset;
}
.service-banner__text a.dark-blue:hover {
  background-color: #003f8d;
}

.service__title {
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
}
.service__title strong {
  color: #cd282f;
}
.service__title--orange strong {
  color: #f05023;
}
.service__subtitle {
  margin-bottom: 2rem;
}
.service-box {
  padding: 2rem 0 4rem 0;
}
.service-box--gray {
  background-color: rgba(240, 240, 240, 0.44);
}
.service-box h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.4rem;
}
.service-box h2 > strong {
  color: #cd282f;
}
.service-box h2 > strong.orange {
  color: #f05023;
}
.service-faq {
  padding: 2rem 0 4rem;
}
.service-faq__image {
  width: 100%;
  margin-top: 4.4rem;
}
.service-faq__image img {
  width: 100%;
}
.service-faq__items {
  flex: 1;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .service-faq__items {
    padding-left: 0;
  }
}
.service-faq__items h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.4rem;
}
.service-faq__items h2 > strong {
  color: #cd282f;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.simulator {
  padding-top: 4rem;
  background: url("../images/simulador-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 4rem;
}
.simulator::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20rem;
  background-color: #fff;
  left: 0;
  bottom: 0;
}
.simulator-form {
  position: relative;
  z-index: 1;
  padding: 4rem;
  background-color: #fff;
  border-radius: 5rem;
}
@media (max-width: 991px) {
  .simulator-form {
    padding: 2rem;
    border-radius: 2rem;
  }
}
.simulator-form > form {
  display: flex;
}
.simulator-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  flex-direction: column;
  margin-top: 1rem;
}
.simulator-form .wpcf7-list-item {
  margin-left: 0 !important;
}
.simulator-form .value-input {
  position: relative;
}
.simulator-form .value-input::before {
  content: "R$";
  position: absolute;
  left: 0;
  top: 0;
}
.simulator-form .btn {
  white-space: nowrap;
}
.simulator-form .wpcf7-spinner {
  position: absolute;
  display: block !important;
  margin: 0;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter {
  background: url("../images/newsletter-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1920/500;
  transform-style: preserve-3d;
}
@media (max-width: 991px) {
  .newsletter {
    aspect-ratio: unset;
  }
  .newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateZ(0px);
  }
}
.newsletter__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.newsletter-form {
  width: 40%;
}
@media (max-width: 991px) {
  .newsletter-form {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .newsletter-form {
    width: 100%;
  }
}
.newsletter-form__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8rem;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.newsletter-form form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.newsletter-form form .form-group {
  flex: 1;
}
.newsletter-form form .form-group input {
  border: 1px solid rgba(16, 19, 24, 0.14);
  padding: 0 2rem;
  height: 4rem;
  border-radius: 1rem 0 0 1rem;
}
.newsletter-form form .form-submit {
  position: relative;
  left: -2px;
}
.newsletter-form form .form-submit .btn {
  padding: 0 2rem !important;
  height: 4rem;
}

.home {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.home-numbers {
  padding: 4rem 0;
}
.home-numbers__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .home-numbers__items {
    justify-content: center;
  }
}
.home-numbers__text {
  margin-top: 4rem;
}
.home-services {
  background-color: #292929;
  padding: 4rem 0;
}
.home-services__items {
  display: grid;
  gap: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 991px) {
  .home-services__items {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .home-services__items {
    gap: 1rem;
  }
}
@media (max-width: 575px) {
  .home-services__items {
    gap: 2rem;
  }
}
.home .about-numbers::before {
  display: none;
}
.home-faq {
  padding: 4rem 0;
}
.home-faq__items [class^=col-]:not(:last-child) {
  margin-bottom: 2rem;
}
.home-faq__cta {
  text-align: center;
  margin-top: 4rem;
}
.home-faq__cta p {
  font-weight: 500;
  margin-bottom: 2rem;
}
.home-faq__cta .btn {
  font-weight: 600;
}

.about-main {
  padding: 4rem 0;
}
.about-main__images {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  justify-content: center;
}
.about-main__image {
  width: 35%;
}
.about-main__image img {
  width: 100%;
}
.about-mvv {
  display: flex;
  margin: 60px 0 60px 0;
  gap: 2rem;
}
@media (max-width: 575px) {
  .about-mvv {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about-mvv-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 575px) {
  .about-mvv-item {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 400px) {
  .about-mvv-item {
    width: 100%;
  }
}
.about-mvv-item img {
  height: 80px;
  width: auto;
}
.about-mvv-item__title {
  font-size: 2.4rem;
}
.about-mvv-item__paragraph {
  text-align: center;
}
.about-numbers {
  background: url("../images/about-numbers-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  padding: 4rem 0;
}
.about-numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to top, #eeeeee, #fff);
  transform: translateY(-100%);
}
.about-banks {
  background-color: #363636;
  padding: 4rem 0;
}
.about-banks__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .about-banks__items {
    justify-content: center;
    gap: 2rem;
  }
}
.about-banks__item img {
  width: 20rem;
  max-width: 100%;
  height: 8rem;
  object-fit: contain;
}
@media (max-width: 991px) {
  .about-banks__item img {
    width: 12rem;
    height: 6rem;
  }
}

.page-404 {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #292929;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.contact {
  padding: 4rem 0 6rem;
}
.contact-form {
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .contact-form {
    padding-right: 0;
    margin-bottom: 4rem;
  }
}
.contact-form .wpcf7-text, .contact-form textarea, .contact-form select, .contact-form .wpcf7-email {
  border: 1px solid #000;
  width: 100%;
  padding: 1.2rem;
  border-radius: 0;
  font-size: 1.6rem;
}
.contact-form .form-submit {
  text-align: left;
  margin-top: 2rem;
}
.contact-form .form-submit input {
  background-color: #cd282f;
  color: #fff;
  border: none;
  font-weight: 400;
  padding: 0.8rem 2rem;
}
.contact-form .form-check-input {
  width: 2rem;
  height: 2rem;
  border: 1px solid #000;
  margin-right: 1rem;
}
.contact-form textarea {
  height: 180px;
}
.contact-form--button {
  border: none !important;
  margin: 2rem 0 0 0 !important;
  padding: 1rem 3rem !important;
  background-color: #cd282f;
  font-size: 1.6rem !important;
  color: #ffffff !important;
}
.contact-form .form-check {
  padding-left: 0;
}
.contact-form .wpcf7-list-item {
  margin-left: 0;
}
.contact-info {
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    gap: 3rem;
  }
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .contact-info__item {
    align-items: center;
  }
}
.contact-info__item i {
  color: #cd282f;
  margin-bottom: 1rem;
}
.contact-info__item span {
  font-weight: 700;
}
.contact-info__item a {
  color: #101318;
}
@media (max-width: 767px) {
  .contact-info__item a {
    text-align: center;
  }
}

.search-page {
  padding-top: 6rem;
}
.search-filter {
  grid-column: 1/2;
  grid-row: 1/3;
}
.search-filter-box {
  background-color: #f4f4f6;
  padding: 2rem 0.8rem;
}
.search-filter-box:not(:last-child) {
  margin-bottom: 2rem;
}
.search-filter-box > span {
  display: block;
  color: #22b61c;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.search-checkbox {
  display: block;
  position: relative;
}
.search-checkbox:not(:last-child) {
  margin-bottom: 2rem;
}
.search-checkbox span {
  padding-left: 3rem;
  cursor: pointer;
}
.search-checkbox span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dddddf;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}
.search-checkbox span::after {
  position: absolute;
  content: "";
  left: 6px;
  top: 47%;
  transform: translateY(-50%) rotate(-45deg);
  background-color: #dddddf;
  height: 0.6rem;
  width: 1.2rem;
  border-bottom: 2px solid #9a9a9a;
  border-left: 2px solid #9a9a9a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.search-checkbox input {
  position: absolute;
  left: -99999px;
}
.search-checkbox input:checked ~ span::after {
  opacity: 1;
  visibility: visible;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #101318;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.financing-main {
  padding: 4rem 0;
}
.financing-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 400px) {
  .financing-topics {
    grid-template-columns: 1fr;
  }
}
.financing-item {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .financing-item {
    flex-direction: column;
  }
}
.financing-item__image {
  width: 40%;
}
@media (max-width: 767px) {
  .financing-item__image {
    width: 100%;
  }
}
.financing-item__image img {
  width: 100%;
}
.financing-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.financing-item__text h3 {
  font-size: 2.4rem;
  font-weight: 700;
}

.loan-header {
  padding: 2rem 0 4rem;
}
.loan-header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loan-header__cta img {
  width: 90%;
  margin: auto;
}
.loan-header__cta .btn {
  width: 100%;
  padding: 1.2rem;
  font-weight: 600;
}
.loan-advantages {
  padding-bottom: 6rem;
}
.loan-advantages__header {
  text-align: center;
  margin-bottom: 4rem;
}
.loan-advantages__header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.loan-advantages__image img {
  width: 100%;
}
@media (max-width: 767px) {
  .loan-advantages__image {
    margin-bottom: 2rem;
  }
}
.loan-advantages__items {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .loan-advantages__items {
    padding-left: 0rem;
  }
}
.loan-advantages__items .btn {
  align-self: center;
  margin-top: 4rem;
}
.loan-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.loan-checklist li {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.loan-checklist li i {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #22b61c;
  color: white;
  font-size: 1.8rem;
}
.loan-checklist li p {
  margin-bottom: 0;
}
.loan-checklist--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 400px) {
  .loan-checklist--grid {
    grid-template-columns: 1fr;
  }
}

.consortium-main__header {
  text-align: center;
  padding: 4rem 0;
}
.consortium-main__header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.consortium-main__header p {
  width: 90rem;
  max-width: 100%;
  display: block;
  margin: auto;
}
.consortium-main__items {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .consortium-main__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.consortium-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.consortium-item__image {
  aspect-ratio: 1;
}
.consortium-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consortium-item__name {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .consortium-item__name {
    white-space: unset;
    flex: 1;
    display: flex;
    align-items: center;
  }
}
.consortium-item .btn {
  width: 90%;
  color: #a6532b;
  padding: 1.2rem;
  border: 1px solid #a6532b;
  border-radius: 0;
  font-weight: 400;
}
.consortium-item .btn:hover {
  background-color: #a6532b;
  color: #fff;
}
.consortium-advantages {
  background-color: rgba(235, 234, 234, 0.52);
  padding: 4rem 0;
  margin-bottom: 4rem;
}
.consortium-advantages__header {
  margin-bottom: 3rem;
}
.consortium-advantages__header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.consortium-advantages__items {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .consortium-advantages__image {
    padding-top: 2rem;
  }
}
.consortium-advantages__image img {
  width: 100%;
}
.consortium-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 3rem;
  margin-bottom: 4rem;
  flex: 1;
}
.consortium-checklist li {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.consortium-checklist li img {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
}
.consortium-checklist li p {
  margin-bottom: 0;
}

.credit-analisys-header {
  text-align: center;
  padding: 4rem 0;
}
.credit-analisys-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.credit-analisys-header p {
  width: 90rem;
  max-width: 100%;
  display: block;
  margin: auto;
}
.credit-analisys-how {
  padding: 4rem 0;
  background-color: rgba(235, 234, 234, 0.52);
  margin-bottom: 4rem;
}
.credit-analisys-how__header h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.credit-analisys-how__text p {
  margin-bottom: 2rem;
}
.credit-analisys-how__text strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .credit-analisys-how__text {
    margin-bottom: 2rem;
  }
}
.credit-analisys-how__images {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .credit-analisys-how__images {
    flex-direction: row;
    gap: 2rem;
  }
}
.credit-analisys-how__images img {
  width: 75%;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .credit-analisys-how__images img {
    flex: 1;
    width: calc(50% - 2rem);
  }
}

.insurances-main__header {
  text-align: center;
  padding: 4rem 0;
}
.insurances-main__header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.insurances-main__header p {
  width: 90rem;
  max-width: 100%;
  display: block;
  margin: auto;
}
.insurances-main__items {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .insurances-main__items {
    justify-content: center;
  }
}
.insurances-item {
  width: calc(33.3% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 450px) {
  .insurances-item {
    width: calc(50% - 3rem);
  }
}
.insurances-item__image {
  aspect-ratio: 1;
}
.insurances-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insurances-item__name {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 575px) {
  .insurances-item__name {
    flex: 1;
    display: flex;
    align-items: center;
  }
}
.insurances-item .btn {
  width: 90%;
  color: #1fb0c0;
  padding: 1.2rem;
  border: 1px solid #1fb0c0;
  border-radius: 0;
  font-weight: 400;
}
.insurances-item .btn:hover {
  background-color: #1fb0c0;
  color: #fff;
}

.consultancy-main {
  padding: 4rem 0 6rem;
}
.consultancy-main h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.consultancy-main__items {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .consultancy-main__items {
    justify-content: center;
  }
}
.consultancy-item {
  width: calc(33.3% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 450px) {
  .consultancy-item {
    width: calc(50% - 3rem);
  }
}
.consultancy-item__image {
  aspect-ratio: 1;
}
.consultancy-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consultancy-item__name {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 575px) {
  .consultancy-item__name {
    flex: 1;
    display: flex;
    align-items: center;
  }
}
.consultancy-item .btn {
  width: 90%;
  color: #1fb0c0;
  padding: 1.2rem;
  border: 1px solid #1fb0c0;
  border-radius: 0;
  font-weight: 400;
}
.consultancy-item .btn:hover {
  background-color: #1fb0c0;
  color: #fff;
}

.fgts-main {
  padding: 4rem 0 6rem;
}
.fgts-main h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.fgts-main h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.6rem;
}

.documentation-main {
  padding: 4rem 0 6rem;
}
.documentation-main h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.documentation-main h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.6rem;
}

.partners-main {
  padding: 4rem 0 6rem;
}
.partners-main h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.partners-main h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.6rem;
}
.partners-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 575px) {
  .partners-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners-item img {
  height: 8rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.partners-banks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media (max-width: 575px) {
  .partners-banks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-main {
  padding: 6rem 0;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 6rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
.news-item {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.news-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.news-item:hover .blog-item__text {
  box-shadow: 0 2px 5px rgba(16, 19, 24, 0.2);
}
.news-item:active {
  transform: translateY(1px) scale(0.98);
}
.news-item__thumb {
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__text {
  background-color: #fff;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(16, 19, 24, 0.1);
  color: #101318;
  border-radius: 0 0 2rem 2rem;
  transition: all 0.2s ease-in;
}
.news-item__text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
.news-item__text p {
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
}
.news-item__text .btn {
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 800;
  margin-top: 2rem;
  font-size: 1.6rem;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.single-news {
  padding: 6rem 0;
}
.single-news-main .title {
  font-weight: 700;
  font-size: 2.8rem;
}

.container {
  max-width: 1170px;
}

.grecaptcha-badge { 
    visibility: hidden;
}


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