/**variables scss*/
/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Public+Sans:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");
/*===================
navbar
=====================*/
.navbar {
  height: 85px;
  max-height: 85px;
}

.nav .nj-navbar--img {
  width: 100px;
}
.nav .nav-link {
  color: #272727;
}
.nav .nav-item .nav-link {
  color: #272727;
  font-size: 1.2rem;
}
.nav .nav-item .nav-link:hover {
  color: #b07c4b !important;
}

.nav-toogler {
  display: none;
  height: 34px;
  width: 34px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  transition: all 0.3s ease 0.4s;
}
.nav-toogler span {
  height: 2px;
  width: 30px;
  background-color: #272727;
  display: inline-block;
  position: relative;
}
.nav-toogler span::before, .nav-toogler span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #272727;
  transition: all 0.3s ease;
}
.nav-toogler span::before {
  transform: translateY(-8px);
  left: 0;
}
.nav-toogler span::after {
  transform: translateY(8px);
  right: 0;
}
.nav-toogler.active span {
  background-color: transparent;
}
.nav-toogler.active span::before {
  transform: rotate(45deg);
  width: 100%;
}
.nav-toogler.active span::after {
  transform: rotate(-45deg);
  width: 100%;
}

@media (max-width: 768px) {
  .nav-toogler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nj-nav-links {
    padding-top: 5rem;
    padding-left: 1rem;
    display: none;
    position: fixed;
    height: 100vh;
    width: 75vw;
    top: 0;
    right: 0;
    background-color: #fff;
  }
  .nj-nav-links.active {
    display: block;
    margin-top: 85px;
  }
  .nj-nav-links .nav-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .nj-nav-links .nav-item .nav-link {
    color: #444;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1.5rem;
  }
}
/*===================
    Contenedor principal de la imagen
====================*/
.nj-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url("../img/imagen-abogado-leyendo.jpg");
}
.nj-banner--about {
  background-image: url("../img/imagen-equipo-de-abogados.jpg");
}
.nj-banner--services {
  background-image: url("../img/imagen-balanza-justicia.jpg");
}
.nj-banner--contact {
  background-image: url("../img/imagen-cerrar-trato.jpg");
}
.nj-banner .nj-banner__content {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nj-banner .nj-banner__content .nj-banner__title {
  margin: 0;
  padding: 0;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  font-weight: 700;
  font-family: "PT Serif", serif;
}
.nj-banner .nj-banner__content .nj-banner__title::before, .nj-banner .nj-banner__content .nj-banner__title::after {
  content: "";
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: absolute;
}
.nj-banner .nj-banner__content .nj-banner__title::before {
  top: -16px;
  left: 0;
}
.nj-banner .nj-banner__content .nj-banner__title::after {
  bottom: -16px;
  left: 0;
}
.nj-banner .nj-banner__content .nj-banner__subtitle {
  margin-top: 1.8rem;
  font-size: 1.5rem;
  font-family: "PT Serif", serif;
}
.nj-banner .nj-banner__content .nj-banner__button {
  font-family: "Poppins", sans-serif;
  margin-top: 1.5rem;
  text-decoration: none;
  color: #fff;
  padding: 9px 20px;
  border: 1px solid #b07c4b;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  background-color: #b07c4b;
}
.nj-banner .nj-banner__content .nj-banner__button:hover {
  background-color: #272727;
  border: 1px solid #272727;
  color: #fff;
}

/*=======================
body
=========================*/
body {
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
  font-family: "PT Serif", serif;
}

.title {
  font-weight: 400;
  font-family: "PT Serif", serif;
  color: #272727;
  font-size: 2.5rem;
}

.nj-color-primary {
  color: #272727;
}

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

.nj-color-contrast {
  color: #b07c4b;
}

.nj-bg-light {
  color: #000;
  background-color: #fff;
}

.nj-bg-primary {
  color: #fff;
  background-color: #272727 !important;
}

.nj-bg-secondary-3 {
  color: #d9d9d9;
  background-color: #272727;
}

.nj-bg-secondary-2 {
  background-color: #F1F5F9;
}

.nj-card-description {
  margin-top: -80px;
}

.nj-separator {
  position: relative;
  text-align: center;
}
.nj-separator .nj-separator__line::after {
  color: #b07c4b;
  content: " ";
  height: 3px;
  position: absolute;
  bottom: 0;
  background-color: #b07c4b;
  width: 50px;
  left: 0;
}

.bg-image-container {
  background-image: url("../img/bg-image.jpg");
  background-repeat: no-repeat;
  min-height: calc(100vh - 80px);
  background-position: center;
  background-size: cover;
}

.bg-narvaez {
  background-image: url("../img/persona_abogado.jpg");
}

.nj-section-container, .nj-section-container-nm {
  background-color: #fff;
  min-height: calc(100vh - 80px);
  position: relative;
  margin-left: -7.5rem;
}
.nj-section-container .nj-section-container__header, .nj-section-container-nm .nj-section-container__header {
  height: 5rem;
}
.nj-section-container .nj-section-container__header div, .nj-section-container-nm .nj-section-container__header div {
  width: 7.5rem;
  height: 7.5rem;
  background-color: #b07c4b;
  position: absolute;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nj-section-container .nj-section-container__header div i, .nj-section-container-nm .nj-section-container__header div i {
  font-size: 2.5rem;
  color: #fff;
}
.nj-section-container .nj-section-container__header .nj-icon-right, .nj-section-container-nm .nj-section-container__header .nj-icon-right {
  top: 0;
  right: 0;
}
.nj-section-container .nj-section-container__header .nj-icon-left, .nj-section-container-nm .nj-section-container__header .nj-icon-left {
  top: 0;
  left: 0;
}
.nj-section-container .nj-text-right, .nj-section-container-nm .nj-text-right {
  text-align: right !important;
}
.nj-section-container .nj-text-left, .nj-section-container-nm .nj-text-left {
  text-align: left !important;
}
.nj-section-container .nj-section-container__body, .nj-section-container-nm .nj-section-container__body {
  font-family: "PT Serif", serif;
  padding: 3.5rem;
  padding-left: 2.5rem;
}
.nj-section-container .nj-section-container__body .title, .nj-section-container-nm .nj-section-container__body .title {
  font-weight: 400;
  font-family: inherit;
  color: #272727;
  font-size: 2.5rem;
}
.nj-section-container .nj-section-container__body .subtitle, .nj-section-container-nm .nj-section-container__body .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #b07c4b;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.nj-section-container .nj-section-container__body p, .nj-section-container-nm .nj-section-container__body p {
  font-size: 1rem;
  color: #181818;
}

.nj-section-container-nm {
  margin-left: 0;
}

.container-info {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 3rem 0;
  position: relative;
}
.container-info .container-info-icon i {
  font-size: 2rem;
}
.container-info .container-info-desc span {
  display: block;
  margin-left: 1rem;
  font-family: "Poppins", sans-serif;
}
.container-info .container-info-desc .info-title {
  color: #b07c4b;
}
.container-info .container-info-desc .info-desc {
  color: #272727;
}

.nj-link {
  margin-top: 3rem;
}
.nj-link a {
  font-family: "PT Serif", serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07c4b;
  text-decoration: none;
  font-size: 1.5rem;
  transition: 0.3s ease;
}
.nj-link a:hover {
  color: #272727;
}
.nj-link a:hover::before {
  background-color: #272727;
}
.nj-link::before {
  background-color: #b07c4b;
  content: "";
  width: 3rem;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8rem;
}

.glide__arrows {
  position: relative;
}
.glide__arrows .glide__arrow {
  background-color: #b07c4b;
  color: #fff;
  outline: none;
  border: none;
  padding: 0.1rem 0.7rem;
  margin-top: 1rem;
  transition: 0.3s;
  position: absolute;
}
.glide__arrows .glide__arrow:hover {
  background-color: #1f1f1f;
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow--right {
  right: 0;
}

.box {
  margin: 20px;
}

/*iframe mapa*/
@media (max-width: 576px) {
  .nj-banner .nj-banner__content .nj-banner__title {
    font-size: 1.8rem;
  }
  .nj-banner .nj-banner__content .nj-banner__subtitle {
    font-size: 1.1rem;
  }
  .nj-section-container, .nj-section-container-nm {
    margin-left: 0;
  }
  header {
    display: none;
  }
  .nj-section-container .nj-section-container__header, .nj-section-container-nm .nj-section-container__header {
    display: none;
  }
  .nj-section-container .nj-section-container__body, .nj-section-container-nm .nj-section-container__body {
    padding: 2rem 1rem;
  }
  .container-info {
    margin: 1.2rem 0;
  }
  .nj-section-consult {
    margin: 6.5rem 0 2rem 0 !important;
  }
  .nj-container-block {
    margin-bottom: 2rem;
  }
  .nj-form-title {
    margin-top: 2.5rem;
  }
}
/*===================
     Cards
 ====================*/
.nj-card-contact {
  min-height: 250px;
  background-color: #272727;
}
.nj-card-contact h6 {
  padding-top: 1em;
  line-height: 120%;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
}
.nj-card-contact .card-contact__description {
  line-height: 28px;
  font-size: 1.1em !important;
  color: #fff;
  text-align: center;
  display: block;
}
.nj-card-contact .nj-card__icon {
  border: 1px solid #fff;
  margin: 0px auto !important;
  height: 80px;
  width: 80px;
  text-align: center;
  overflow: hidden;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out !important;
}
.nj-card-contact .nj-card__icon i {
  font-size: 1.5rem;
  color: #fff;
}

.nj-card {
  margin-top: 1.5rem;
  color: #fff;
  position: relative;
  border-radius: 0;
}
.nj-card .nj-card__header {
  height: 3rem;
  background-color: #272727;
}
.nj-card .nj-card__header div {
  width: 3rem;
  height: 3rem;
  background-color: #b07c4b;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  display: block;
}
.nj-card .nj-card__body {
  background-color: #272727;
}
.nj-card .nj-card__body h3 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  padding-bottom: 0.5rem;
}
.nj-card .nj-card__body p {
  font-family: "PT Serif", serif;
}
.nj-card .nj-card__link a {
  font-family: "PT Serif", serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07c4b;
  text-decoration: none;
  font-size: 0.75rem;
}
.nj-card .nj-card__link::before {
  background-color: #b07c4b;
  content: "";
  width: 3rem;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8rem;
}

@media (max-width: 576px) {
  .nj-card-contact {
    margin-bottom: 1.5rem;
  }
}
.nj-section-consult {
  margin: 6.5rem 0;
}

.nj-consult--title {
  font-size: 2rem;
  line-height: 1.2;
  color: #272727;
}
.nj-consult--title span {
  color: #b07c4b;
}

.nj-consult--text {
  margin-top: 2rem;
  min-height: 50px;
  font-size: 1rem;
  font-family: "PT Serif", serif;
}

.nj-container-block {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}
.nj-container-block .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  background-color: #272727;
  color: #fff;
  width: 50px;
  height: 50px;
}
.nj-container-block .text {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  background-color: #b07c4b;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

.nj-section-consult .container-info:first-child {
  margin-top: 0;
}
.nj-section-consult .container-info:last-child {
  margin-bottom: 0;
}
.nj-section-consult .container-info .info-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
}
.nj-section-consult .nj-form .nj-form__content, .nj-section-consult .nj-form .nj-form__content--textarea {
  margin-bottom: 0.8rem;
}

.nj-card-picture .nj-card-picture__body .nj-card-picture__img {
  width: 100%;
}
.nj-card-picture .nj-card-picture__footer {
  margin-top: 1rem;
}
.nj-card-picture .nj-card-picture__footer .nj-card-picture__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  font-family: "Poppins", sans-serif;
  color: #b07c4b;
}
.nj-card-picture .nj-card-picture__footer .nj-card-picture__subtitle {
  text-transform: capitalize;
  font-size: 1rem;
  display: block;
  font-family: "Poppins", sans-serif;
  color: #0a0a0a;
}

/*===================
     input form
 ====================*/
.nj-form-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-left: 1rem;
  font-family: "Poppins", sans-serif;
  color: #b07c4b;
}

.nj-form {
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
}
.nj-form .nj-form__title {
  color: #0a0a0a;
}
.nj-form .nj-form__content--textarea {
  position: relative;
  height: 100px !important;
  margin-bottom: 1.5rem;
}
.nj-form .nj-form__content--textarea .nj-form__textarea {
  resize: none;
}
.nj-form .nj-form__content,
.nj-form .nj-form__content--textarea {
  position: relative;
  height: 48px;
  margin-bottom: 1.5rem;
}
.nj-form .nj-form__content .nj-form__input,
.nj-form .nj-form__content .nj-form__textarea,
.nj-form .nj-form__content--textarea .nj-form__input,
.nj-form .nj-form__content--textarea .nj-form__textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  border: 2px solid #d9d9d9;
  border-radius: 0.5rem;
  outline: none;
  padding: 1rem;
  background: none;
  z-index: 1;
}
.nj-form .nj-form__content .nj-form__input:focus, .nj-form .nj-form__content .nj-form__input:hover,
.nj-form .nj-form__content .nj-form__textarea:focus,
.nj-form .nj-form__content .nj-form__textarea:hover,
.nj-form .nj-form__content--textarea .nj-form__input:focus,
.nj-form .nj-form__content--textarea .nj-form__input:hover,
.nj-form .nj-form__content--textarea .nj-form__textarea:focus,
.nj-form .nj-form__content--textarea .nj-form__textarea:hover {
  border: 2px solid #b07c4b;
}
.nj-form .nj-form__content .nj-form__label,
.nj-form .nj-form__content--textarea .nj-form__label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0 0.25rem;
  background-color: #fff;
  color: #808080;
  font-size: 1rem;
  transition: 0.3s;
}
.nj-form .nj-form__content .nj-form__input:focus ~ .nj-form__label,
.nj-form .nj-form__content .nj-form__textarea:focus ~ .nj-form__label,
.nj-form .nj-form__content .nj-form__input:not(:placeholder-shown).nj-form__input:not(:focus) ~ .nj-form__label,
.nj-form .nj-form__content .nj-form__textarea:not(:placeholder-shown).nj-form__textarea:not(:focus) ~ .nj-form__label,
.nj-form .nj-form__content--textarea .nj-form__input:focus ~ .nj-form__label,
.nj-form .nj-form__content--textarea .nj-form__textarea:focus ~ .nj-form__label,
.nj-form .nj-form__content--textarea .nj-form__input:not(:placeholder-shown).nj-form__input:not(:focus) ~ .nj-form__label,
.nj-form .nj-form__content--textarea .nj-form__textarea:not(:placeholder-shown).nj-form__textarea:not(:focus) ~ .nj-form__label {
  top: -0.5rem;
  left: 0.8rem;
  color: #b07c4b;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}
.nj-form .nj-form__content .nj-form__message,
.nj-form .nj-form__content--textarea .nj-form__message {
  position: absolute;
  left: 1rem;
  bottom: -1.5rem;
  padding: 0 0.25rem;
  background-color: #fff;
  color: #e60035;
  font-size: 0.8rem;
}
.nj-form .nj-form__content.error,
.nj-form .nj-form__content--textarea.error {
  margin-bottom: 1.8rem;
}
.nj-form .nj-form__content.error .nj-form__input,
.nj-form .nj-form__content.error .nj-form__textarea,
.nj-form .nj-form__content--textarea.error .nj-form__input,
.nj-form .nj-form__content--textarea.error .nj-form__textarea {
  border-color: #e60035;
}
.nj-form .nj-form__button {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  display: block;
  padding: 0.75rem 2rem;
  outline: none;
  border: none;
  background-color: #b07c4b;
  color: #fff;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.nj-form .nj-form__button:hover {
  background-color: #b07c4b;
  box-shadow: 0 10px 36px rgba(19, 18, 18, 0.15);
}

/*===================
     Checkbox
 ====================*/
.nj-checkbox {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nj-checkbox .nj-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.nj-checkbox .nj-checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #F1F5F9;
  border: 1px solid #b07c4b;
}
.nj-checkbox .nj-checkbox__checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.nj-checkbox:hover .nj-checkbox__input ~ .nj-checkbox__checkmark {
  background-color: #d9d9d9;
}

.nj-checkbox .nj-checkbox__input:checked ~ .nj-checkbox__checkmark {
  background-color: #b07c4b;
}

.nj-checkbox .nj-checkbox__input:checked ~ .nj-checkbox__checkmark::after {
  display: block;
}

.nj-checkbox .nj-checkbox__checkmark::after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*=======================
footer
=========================*/
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  text-transform: uppercase;
}
footer .nj-footer--img {
  margin: 0 auto;
  width: 60%;
}
footer .nj-separator {
  margin-bottom: 2rem;
}
footer .nav-item .nav-link {
  color: #d9d9d9 !important;
  font-size: 1rem !important;
  font-family: "Poppins", sans-serif;
}
footer .nav-item .nav-link:hover {
  color: #b07c4b;
}
footer .nj-social-icon {
  color: #b07c4b;
}
footer .nj-social-icon:hover {
  color: #fff;
}
footer .nj-social-icon .bi {
  font-size: 1.2rem;
}

.contact-link {
  margin-top: 4px;
}

.link__to__marcohandres {
  color: inherit;
  text-decoration: none;
}
.link__to__marcohandres:hover {
  color: #b07c4b;
}

@media (max-width: 576px) {
  footer .col-md-4 h6 {
    margin-top: 1rem;
  }
}
.nj-bg-primary-tree {
  background-color: #272727;
  color: #fff;
}
.nj-bg-primary-tree hr {
  height: 1px;
  width: 100%;
  color: #B9B8B5;
}

.nj-container-logo {
  margin: 0 auto;
  margin-top: 1.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
}
.nj-container-logo img {
  width: 70%;
}

.p-title {
  text-align: center;
  font-size: 1.8rem;
}

.p-subtitle {
  text-align: center;
  font-size: 1.2rem;
}

a {
  color: none;
  text-decoration: none;
}

.container-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}
.container-icon div {
  border: 1px solid #B9B8B5;
  border-radius: 100%;
  height: 4.5rem;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-icon .icon {
  font-size: 2rem;
  color: #B9B8B5;
}
.container-icon:hover div {
  background-color: #B9B8B5;
}
.container-icon:hover div .icon {
  color: #fff;
}

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