:root {
  --header-gap: 100px;
  --header-padding: 100px;
}

.no-scroll{
  overflow: hidden !important;
  max-height: 100vh !important;
}

.header {
  position: relative;
  background-color: #000;
}

.header__wrapper-content  {
  display: flex;
  align-items: center;
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 16px var(--header-padding);
  justify-content: space-between;
}

.header__wrapper-content__link-logo {
  display: block;
  max-width: 130px;
  margin-left: 7vw;
}

.header-menu-navigation-content{
  overflow-y: auto;
  width: 100%;
  height: calc(100% - (18px + 5vh));
}

.wrapper-content__navigation__list-navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wrapper-content__navigation__list-navigation li {
  display: flex;
  align-items: center;
}

.header__wrapper-content__wrapper-buttons {
	display: flex;
	align-items: center;
	gap: 36px;
	justify-content: flex-end;
}

.list-navigation__mobile-buttons {
  display: none !important;
}

button.text-link{
  background-color: #fff;
  cursor: pointer;
}

.header-menu{
  position: absolute;
  height: calc(100vh - 80px);
  width: 100vw;
  top: 80px;
  left: 0;
  background-color: #000000cc;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 9999999;
}

.header-menu.active{
  opacity: 1;
  visibility: visible;
}

.header-menu-navigation{
  min-width: 357px;
  width: calc(25vw + 15px);
  height: 100%;
  padding: 0px;
  border-top: 3px solid var(--red700);
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  transform: translateX(-100vw);
  visibility: hidden;
  transition: all .4s;
  padding: 30px 0 30px 30px;
  overflow: hidden;
}

.header-menu.active .header-menu-navigation{
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

@media (max-width: 1440px) {

  :root {
    --header-padding: 40px;
  }
}

@media (max-width: 1000px) {

  :root {
    --header-padding: 24px;
  }
}

@media (max-width:768px) {

  .header__wrapper-content__wrapper-buttons{
    display: none;
  }

  .list-navigation__mobile-buttons {
    display: block !important;
    margin: 36px 30px 36px 0;
  }

  .list-navigation__mobile-buttons .btn {
    width: 80%;
    margin: 12px auto;
    border: 2px solid var(--red500);
    color: var(--red500);
  }
  
  .list-navigation__mobile-buttons .btn--btn-red {
    border: none;
    color: #fff;
  }
}

@media (max-width:500px) {
  
  .header-menu-navigation{
    width: 100vw;
    min-width: inherit;
  }

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

  .header__wrapper-content__link-logo {
    max-width: 100px;
  }

  .header__wrapper-content__wrapper-buttons {
    display: none;
  }

  .menu-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.list-modal{
  position: absolute;
  top: -3px;
  left: 0;
  height: calc(100% + 3px);
  background-color: #fff;
  border-top: 3px solid var(--red700);
  padding: 30px 0 30px 30px;
  width: 100%;
  transform: translateX(100%);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.list-modal.active{
  transform: translateX(0);
  visibility: visible;
}

.list-modal-content{
  position: absolute;
  background-color: #fff;
  padding: 30px 0 30px 30px;
  left: 0;
  top: -3px;
  border-top: 3px solid var(--red700);
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.list-modal-content.active{
  visibility: visible;
  transform: translateX(0);
}

.list-states-button{
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding-right: 30px;
}

.text-option-link{
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 5px 10px 5px 10px;
  color: #fff;
  cursor: pointer;
}

.list-modal-content-column{
  display: flex;
  flex-direction: column;
}

.list-modal-content-column-separator{
  background-color: #fff;
  width: 1px;
  margin: 10px 0;
}

.list-cities.wrapped .list-modal-button::after, .list-states-button::after{
  content: ">";
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.2rem, 5vw, 2.4rem);
  font-weight: 700;
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.list-states-button:hover::after, .list-states-button:hover button, .list-cities.wrapped .list-modal-button:hover::after, .list-modal-button:hover a{
  color: var(--red500); 
}

.list-modal-button{
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  cursor: pointer;
}

.list-modal-container, .list-regions{
  overflow-y: auto;
  height: calc(100% - (18px + 5vh));
}

.list-modal-button .text-link{
  text-wrap: nowrap;
}

.return{
  background-color: #fff;
  color: var(--red500);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin: 0 30px 5vh auto;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.return::before{
  content: "<";
  font-size: 20px;
  margin-right: 10px;
  margin-top: -1px;
  display: block;
  color: var(--red500);
  transition: color 0.3s ease-in-out;
}

.return:hover, .return:hover::before{
  color: #000;
}

.header-menu-navigation > .return::before{
  content: "x";
  font-size: 14px;
  font-weight: 900;
}

.btn.menu-button{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 16px 8px 0;
}

.list-states-header{
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}