@font-face {
  font-family: 'Poppins Regular';
  src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins Bold';
  src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --header-height: 60px;

  /* Colores */
  --white-color: #FFFFFF;
  --black-color: #000000;
  --first-color: #B63700;
  --second-color: #F58713;
  --third-color: #707070;
  --fourth-color: #FAFAFA;

  /* Typografia */
  --text-poppins-regular: 'Poppins Regular', sans-serif;
  --text-poppins-bold: 'Poppins Bold', sans-serif;


  /* Margenes */
  --mr-1: 20px;

  --mt-1: 8px;
  --mt-2: 16px;
  --mt-3: 20px;
  --mt-4: 26px;
  --mt-5: 32px;

  /* z index */
  --z-fixed: 50;
  --z-modal: 80;
  --z-alert: 100;
}



/* ============= Base ============= */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--text-poppins-regular);
  font-size: 16px;
  margin: 0;
  top: 0;
  padding: 0 !important;
}

body.overflow__hidden-two,
body.overflow__hidden {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  line-height: 1;
}

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

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

address {
  font-style: inherit;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

h1,
h2,
h2,
h3,
h4,
p,
figure {
  margin: 0;
  padding: 0;
}

h1,
h2,
h2,
h3,
h4,
h5 {
  font-family: var(--text-poppins-bold);
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0px;
  color: #141414;
}

p {
  color: #141414;
  line-height: 1.5;
  letter-spacing: 0px;
}

strong {
  font-family: var(--text-poppins-bold);
}


/* ============= Reusable Classes ============= */

.grid__container {
  max-width: 1360px;
  display: grid;
  margin: 0 var(--mr-1);
}

.line__clamp-one {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-two {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-three {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-four {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-five {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.btn {
  background: linear-gradient(to right, #F58713 0%, #B63700 100%);
  color: var(--white-color);
  border-radius: 10px;
  padding: 12px 20px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  transition: all ease .4s
}

.btn:hover {
  border-radius: 5px;
  outline: 1px solid #FF8A00;
  background: linear-gradient(100deg, #E44500 -5.85%, #FF8300 109.55%);
  box-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.16);
}

/* ============= Header ============= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  height: fit-content;
  box-shadow: 0px 3px 6px #00000014;
}

.header__top-container {
  background: var(--first-color);
  height: 40px;
}

.header__top-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.header__top-right,
.header__top-left {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  color: var(--white-color);
}

.header__top-right ul li a,
.header__top-right ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.header__top-right ul li figure {
  width: 20px;
  height: 20px;
}

.header__top-right ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item__header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.add__container {
  border-radius: 10px;
  background-color: var(--second-color);
  width: 100%;
  max-width: 670px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding: 0 25px;
}

.add__container>P {
  color: #FFFFFF;
}

.add__header-container {
  width: 100%;
  overflow: hidden;
}

.add__list-item {
  width: fit-content;
}

.add__list-item>a {
  display: flex;
  width: 100%;
}

.add__header-container {
  width: 100%;
}

.navbar__container {
  background-color: #FFFFFF;
  height: 70px;
}

.navbar__container.navbar__container-transparent {
  background-color: transparent;
}

.navbar__container>.nav__right,
.navbar__container>.navbar__logo {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--white-color);
  height: 100%;
}

.navbar__menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo figure {
  width: auto;
  height: 60px;
}

.navbar__logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar__list {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.logged__user {
  display: flex;
  flex-direction: row;
  position: relative;
  cursor: pointer;
  height: fit-content;
  align-items: center;
  gap: 15px;
  height: fit-content;
  overflow: hidden;
}

.logged__user>ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  opacity: 0;
  height: 0;
  bottom: -110px;
  background-color: #FFFFFF;
  width: 150px;
  border: 1px solid #E0E0E0;
}


.logged__user.logged__user-system .dropdown {
  bottom: -146px;
}

.logged__user>ul>li:last-child a {
  border-top: 3px solid #E0E0E0;
  color: var(--second-color);
}

.logged__user>ul li {
  padding: 5px;
  width: 100%;
}

.logged__user>ul>a {
  padding: 10px;
}

.logged__user>ul li a {
  display: flex;
  width: 100%;
  padding: 5px;
}

.logged__user:hover {
  overflow: visible;
}

.profile__img:hover + .dropdown {
  opacity: 1;
  height: fit-content;
}

.dropdown:hover{
  opacity: 1;
  height: fit-content;
}

.profile__img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px;
  background-color: var(--second-color);
}

.profile__img>p {
  font-size: 25px;
  color: #FFFFFF;
}

.navbar__list .btn {
  height: 48px;
}

.navbar__item {
  position: relative;
  height: fit-content;
  width: fit-content;
  margin: 0;
  transition: all 0.3s ease;
}

.logged__user>a:first-child,
.navbar__link {
  font-weight: bold;
  font-size: 17px;
  text-align: left;
  color: #000000;
  position: relative;
  z-index: 2;
}

.navbar__link {
  padding: 5px;
  padding-top: 0;
  padding-bottom: 10px;
}

.navbar__link:hover {
  padding-top: 10px;
  border-bottom: 5px solid var(--first-color);
}

.active__link {
  padding: 5px;
  padding-bottom: 10px;
  border-bottom: 5px solid var(--first-color);
}

.btn__sign-up {
  border: 1px solid #000000;
  border-radius: 10px;
  height: 48px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.dropdown li:hover a {
  color: var(--second-color);
}

/* ============= Footer ============= */

.wave__footer-container {
  position: absolute;
  top: 0;
  width: 100%;
  top: -150px;
  z-index: -1;
}

.wave__footer-top,
.wave__footer {
  height: 150px;
  overflow: hidden;
}

.wave__footer {
  margin-top: -102px;
}

.footer {
  position: relative;
  background-color: var(--first-color);
  padding-bottom: 50px;
  z-index: 3;
  margin-top: 150px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.footer__content .footer__bottom {
  border-top: 1px solid #f58713;
  ;
  padding-top: 25px;
}

.footer__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  align-items: stretch;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__nav a {
  color: var(--fourth-color);
}

ul.footer__nav {
  list-style: disc;
  padding-left: 25px;
}

ul.footer__nav li {
  margin: 0;
}

ul.footer__nav li:hover a {
  color: var(--second-color);
}

.footer__nav li::marker {
  color: #FFFFFF;
  font-size: 20px;
}

.footer__latest-news--content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__latest-news--content p:first-child {
  color: var(--fourth-color);
}

.footer__latest-news--content p:nth-child(2) {
  color: var(--first-color);
}

.footer__latest-news--content p {
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.terms__and-conditions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.terms__and-conditions a:not(:first-child) {
  border-left: 1px solid #f58713;
  padding-left: 5px;
}

.footer__bottom * {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0px;
  color: var(--fourth-color);
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__item figure {
  width: fit-content;
  height: 52px;
}

.footer__item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__item h4 {
  color: #F58713;
}

.footer__item p {
  color: #FFFFFF;
}

.footer__social-networks ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-networks ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
}

.footer__social-networks ul li figure {
  width: 20px;
  height: 20px;
}

.footer__social-networks ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom__text-form .terms__and-conditions {
  display: initial;
}

.bottom__text-form .terms__and-conditions a:not(:first-child) {
  border-left: 0;
  padding-left: 0;
}

.bottom__text-form .terms__and-conditions a:hover,
.copyright__footer a:hover,
.footer__bottom .terms__and-conditions a:hover {
  color: #f58713;
}

.error__message {
  font-size: 13px;
  color: var(--second-color);
}

.error__input {
  border: 1px solid var(--second-color);
}

.alert__form {
  font-size: 14px;
  color: var(--second-color);
}

.input__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}

.input__checkbox input {
  width: 18px;
  height: 18px
}

.input__checkbox p {
  text-align: left;
  font-size: 16px;
  color: #2E2E22;
  margin: 0;
}


.footer__social-networks>h4,
.quick__links-mb {
  display: none;
}

.navbar__item-mb {
  display: none;
}


@media (width <=1590px) {
  .grid__container {
    max-width: 1360px;
  }
}


@media (width <=1450px) {

  .grid__container {
    max-width: 1320px;
  }
}

@media (width <=1380px) {

  .grid__container {
    max-width: 1290px;
    margin: 0 auto;
  }

  .add__container {
    max-width: 600px;
  }
}

@media (width <=1340px) {
  .grid__container {
    max-width: 1200px;
  }

  .add__container {
    max-width: 580px;
  }
}

@media (width <=1280px) {

  .grid__container {
    max-width: 1180px;
  }

  .add__container {
    max-width: 550px;
  }
}

@media(min-width: 1275px) {

  .grid__container {
    margin: 0 auto;
  }
}

@media (width <=1230px) {
  .grid__container {
    max-width: 1120px;
  }

  .add__container {
    max-width: 480px;
  }
}

@media (width <=1180px) {

  .grid__container {
    max-width: 1050px;
  }
}

@media (width <=1150px) {

  .navbar__list .logged__user,
  .logged__user.logged__user-system,
  .navbar__menu .navbar__logo,
  .navbar__list .navbar__logo,
  .header__top-left .item__header-top,
  .header__top-right {
    display: none;
  }

  .navbar__container>.nav__right,
  .navbar__container>.navbar__logo {
    display: flex;
  }

  .grid__container.navbar {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-bottom: 111px;
  }

  .header {
    height: fit-content;
  }

  .header__top-container {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
  }

  .navbar__container {
    height: 44px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 25px;
  }

  .nav__right {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .navbar__logo figure {
    width: fit-content;
    height: 40px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    border-bottom: 0;
    width: 100%;
    background-color: var(--second-color);
  }

  .header__top-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 100%;
  }

  .add__container {
    padding: 5px;
    width: 100%;
    border-radius: 0;
    height: 100%;
    background-color: transparent;
  }

  .add__container li {
    width: 100%;
  }

  .add__container>P {
    font-size: 13px;
  }

  .navbar {
    position: fixed;
    right: -120%;
    top: 70px;
    width: 70%;
    background-color: white;
    /* box-shadow: 0px 1px 9px 2px #00000024; */
    transition: .5s;
    z-index: var(--z-fixed);
    height: calc(100% - 70px);
    overflow-y: auto;
  }

  .navbar::-webkit-scrollbar {
    width: 8px
  }

  .navbar::-webkit-scrollbar-thumb {
    background-color: #F5F5F5;
    border-radius: 6px
  }

  .navbar__menu {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
  }

  .navbar__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .navbar__list li {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
  }

  .navbar__list li.navbar__item-mb {
    height: fit-content;
  }

  .navbar__list li.navbar__item-mb>a {
    height: 44px;
    display: flex;
    align-items: center;
  }

  .navbar__item.navbar__item-mb.sp {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 10px;
  }

  .navbar__link {
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .show__menu {
    right: 0;
  }

  .hamburger {
    position: relative;
    background-color: transparent;
    height: 30px;
    width: 30px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hamburger.is-active {
    background-color: none;
  }

  ._layer {
    background: var(--first-color);
    margin-bottom: 4px;
    border-radius: 2px;
    width: 28px;
    height: 4px;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  }

  ._layer.-top {
    width: 20px;
  }

  .hamburger.is-active .-top {
    -webkit-transform: translateY(200%) rotate(45deg) !important;
    -ms-transform: translateY(200%) rotate(45deg) !important;
    transform: translateY(200%) rotate(45deg) !important;
    width: 28px;
  }

  .hamburger.is-active .-mid {
    opacity: 0;
  }

  .hamburger.is-active .-bottom {
    -webkit-transform: translateY(-200%) rotate(135deg) !important;
    -ms-transform: translateY(-200%) rotate(135deg) !important;
    transform: translateY(-200%) rotate(135deg) !important;
  }

  .overlay__nav {
    position: fixed;
    top: 70px;
    width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 4.5rem 1rem 5rem;
    transition: 0.5s;
    z-index: 49;
    height: calc(100% - 70px);
    overflow-y: auto;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
  }

  .overlay__nav.show__menu-overlay {
    display: block;
    opacity: 1;
    right: 0;
  }

  .header__top-right,
  .header__top-left {
    padding: 0;
  }

  .navbar__link {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0px;
    color: #8E8E8E;
    padding: 0;
    text-transform: uppercase;
  }

  .navbar__link.active__link {
    padding: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .navbar__link:hover {
    padding-top: 0;
    border-bottom: none;
  }

  .profile__img-content {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #D9D9D9;
    padding: 0 15px;
    padding-bottom: 15px;
  }

  .profile__img {
    width: 54px;
    height: 54px;
  }

  .profile__img>p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }

  .profile__img-content>p {
    font-size: 18px;
    color: #8E8E8E;
    text-transform: capitalize;
    font-weight: 600;
  }

  .item__header-top {
    font-size: 12px;
  }

  .wave__footer-container {
    top: -120px;
  }

  .wave__footer-top,
  .wave__footer {
    height: 120px;
  }

  .wave__footer {
    margin-top: -80px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer__info {
    gap: 35px;
  }

  .footer__bottom * {
    font-size: 14px;
  }

  .footer__info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .grid__container.footer__content .footer__info .footer__info-item,
  .quick__links,
  .footer__item figure {
    display: none;
  }

  .footer__social-networks {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 25px;
    align-items: start;
    position: relative;
  }

  .footer__social-networks>h4 {
    color: #F58713;
    position: absolute;
    top: -25px;
    left: 0;
  }

  .quick__links-mb {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }

  ul.footer__nav {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }

  .footer__social-networks ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }

  .footer__social-networks ul li a {
    font-size: 13px
  }

  .footer__social-networks ul li figure {
    width: 15px;
    height: 15px;
  }

  .footer__content .footer__info {
    border-top: 0;
    padding-top: 0;
  }

  .footer__content .footer__bottom {
    padding-top: 15px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    background: var(--first-color);
    color: var(--white-color);
  }

  .btn:hover {
    background: var(--first-color);
    color: var(--white-color);
  }

  .btn::after {
    background: var(--first-color);
  }

  .btn {
    height: 50px;
    width: 70vw;
  }

  .navbar__logo {
    width: 80px;
  }

  .navbar__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .navbar__list .btn {
    width: 100%;
    background: #F58713;
    border: 0;
    border-radius: 0;
    height: 100%;
    padding: 0;
    height: 44px;
  }

  .navbar__list .btn.logout__mb {
    background: #B63700;
  }

  .navbar__list .btn:hover {
    border-radius: 0;
    outline: none;
    background: #F58713;
    box-shadow: none;
  }

  .navbar__list .btn.logout__mb:hover {
    border-radius: 0;
    outline: none;
    background: #B63700;
    box-shadow: none;
  }

  .btn__sign-up {
    justify-content: center;
    color: #FFFFFF;
    width: 100%;
    background-color: #B63700;
    border: 0;
    border-radius: 0;
    height: 100%;
    padding: 0;
  }

  .btn__sign-up>svg {
    display: none;
  }

  /* ============= First Section Home ============= */

  .grid__container.footer__content {
    padding: 0 25px;
    margin: 0 auto;
  }
}