.header {
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--index-header);
  width: 100%;
  --bg-principal: transparent;
  --bg-logo: transparent;
}
.header.-active- {
  --bg-principal: var(--primary-400);
  --bg-logo: var(--gray-200);
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.15);
}
.header__top {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  background-color: var(--white-color);
  overflow-x: auto;
}
.header__top__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 1.25rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.header__top__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}
.header__top__item__line {
  width: 0.0625rem;
  height: 1.25rem;
  background-color: var(--black-color);
}
.header__top__item__label {
  font-size: 0.8125rem;
  color: var(--primary-400);
  font-weight: 500;
}
.header__top__item__link {
  font-size: 0.8125rem;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.header__top__item__link:hover {
  color: var(--primary-500);
  text-decoration: underline;
}
.header__principal {
  width: 100%;
  background-color: var(--bg-principal);
}
.header__principal__hamburger {
  display: none;
}
.header__principal__inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height);
}
.header__principal__logo {
  background-color: var(--bg-logo);
  padding: 0.3125rem 0.9375rem;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__principal__logo::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -2.5rem;
  border-left: 2.5rem solid var(--bg-logo);
  border-bottom: var(--header-height) solid transparent;
}
.header__principal__logo::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2.5rem;
  border-left: 2.5rem solid transparent;
  border-bottom: var(--header-height) solid var(--bg-logo);
}
.header__principal__logo__image {
  max-width: 8.75rem;
  height: auto;
}
.header__principal__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.header__principal__nav__item {
  height: 3.125rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__principal__nav__item:hover .header__principal__subnav {
  display: block;
}
.header__principal__nav__link {
  font-size: 1.0625rem;
  color: var(--white-color);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.header__principal__nav__link:hover, .header__principal__nav__link.-active- {
  color: var(--third-600);
}
.header__principal__subnav {
  display: none;
  position: absolute;
  top: 100%;
  background-color: var(--white-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10rem;
  border-radius: 0.375rem;
}
.header__principal__subnav::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--white-color);
  position: absolute;
  top: -0.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.header__principal__subnav__link {
  padding: 0.625rem 0.9375rem;
}
.header__principal__subnav__link:hover, .header__principal__subnav__link.-active- {
  color: var(--secondary-600);
}
@media screen and (max-width: 1200px) {
  .header__top {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .header__principal__logo__image {
    width: 8.125rem;
  }
  .header__principal__nav__list {
    gap: 1.75rem;
  }
  .header__principal__nav__link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .header__top {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .header__top__item__label {
    font-size: 0.75rem;
  }
  .header__top__item__link {
    font-size: 0.75rem;
  }
  .header__principal__logo__image {
    width: 6.875rem;
  }
  .header__principal__nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: calc(100% - 90px);
    top: 90px;
    left: 0;
    background-color: var(--primary-700);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform ease 0.25s;
    transition: -webkit-transform ease 0.25s;
    transition: transform ease 0.25s;
    transition: transform ease 0.25s, -webkit-transform ease 0.25s;
  }
  .header__principal__nav.-active- {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__principal__nav.-active- .header__principal__nav__item {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.8);
            transform: translateY(20px) scale(0.8);
    -webkit-animation: fadeInUp 0.33s ease-out forwards;
            animation: fadeInUp 0.33s ease-out forwards;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(2) {
    -webkit-animation-delay: 0.12s;
            animation-delay: 0.12s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(3) {
    -webkit-animation-delay: 0.24s;
            animation-delay: 0.24s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(4) {
    -webkit-animation-delay: 0.36s;
            animation-delay: 0.36s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(5) {
    -webkit-animation-delay: 0.48s;
            animation-delay: 0.48s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(6) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(7) {
    -webkit-animation-delay: 0.72s;
            animation-delay: 0.72s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(8) {
    -webkit-animation-delay: 0.84s;
            animation-delay: 0.84s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(9) {
    -webkit-animation-delay: 0.96s;
            animation-delay: 0.96s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(10) {
    -webkit-animation-delay: 1.08s;
            animation-delay: 1.08s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(11) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(12) {
    -webkit-animation-delay: 1.32s;
            animation-delay: 1.32s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(13) {
    -webkit-animation-delay: 1.44s;
            animation-delay: 1.44s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(14) {
    -webkit-animation-delay: 1.56s;
            animation-delay: 1.56s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(15) {
    -webkit-animation-delay: 1.68s;
            animation-delay: 1.68s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(16) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(17) {
    -webkit-animation-delay: 1.92s;
            animation-delay: 1.92s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(18) {
    -webkit-animation-delay: 2.04s;
            animation-delay: 2.04s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(19) {
    -webkit-animation-delay: 2.16s;
            animation-delay: 2.16s;
  }
  .header__principal__nav.-active- .header__principal__nav__item:nth-child(20) {
    -webkit-animation-delay: 2.28s;
            animation-delay: 2.28s;
  }
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px) scale(0.8);
              transform: translateY(20px) scale(0.8);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px) scale(0.8);
              transform: translateY(20px) scale(0.8);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1);
    }
  }
  .header__principal__nav__list {
    padding: 2.5rem 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header__principal__nav__item {
    height: auto;
    width: 100%;
  }
  .header__principal__nav__link {
    font-size: 1.125rem;
  }
  .header__principal__subnav {
    display: block;
    position: static;
    -webkit-transform: none;
            transform: none;
    background-color: var(--primary-600);
    border-radius: 0;
    margin-top: 0.9375rem;
    width: 100%;
  }
  .header__principal__subnav::before {
    display: none;
  }
  .header__principal__subnav__link {
    width: 100%;
    padding: 0.625rem 0.9375rem;
    color: var(--white-color);
    border-bottom: 0.0625rem solid var(--primary-700);
  }
  .header__principal__subnav__link:hover, .header__principal__subnav__link.-active- {
    color: var(--third-600);
  }
  .header__principal__subnav__link:last-child {
    border-bottom: 0;
  }
  .header__principal__hamburger {
    width: 1.875rem;
    height: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.3125rem;
  }
  .header__principal__hamburger::before, .header__principal__hamburger::after, .header__principal__hamburger__line {
    content: "";
    display: block;
    width: 100%;
    height: 0.1875rem;
    background-color: var(--white-color);
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__principal__hamburger.-active-::before {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header__principal__hamburger.-active- .header__principal__hamburger__line {
    opacity: 0;
  }
  .header__principal__hamburger.-active-::after {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
@media screen and (max-width: 500px) {
  .header__top__list {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 400px) {
  .header__top__list {
    gap: 0.625rem;
  }
}

.contact {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  -webkit-transition: opacity ease-out 0.25s;
  transition: opacity ease-out 0.25s;
}
.contact.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact.-show- {
  opacity: 1;
}
.contact__data {
  display: none;
  position: relative;
}
.contact__data.-active- {
  display: block;
}
.contact__thanks {
  display: none;
  text-align: center;
}
.contact__thanks.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact__iconClose {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.contact__content {
  width: 100%;
  max-width: 49.25rem;
  background-color: var(--white-color);
  margin-left: auto;
  padding: 8.4375rem 4.375rem 3.4375rem;
  overflow: auto;
}
.contact__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  padding-right: 2.5rem;
}
.contact__title b {
  color: var(--primary-500);
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6875rem 1.5rem;
}
.contact__control {
  width: 100%;
  border-bottom: 0.0625rem solid #1E1E1E;
  height: 2.5rem;
  position: relative;
}
.contact__control.m--2 {
  width: calc(50% - 12px);
}
.contact__control.m--textarea {
  padding: 0.5rem 0 0 0;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.contact__control__label {
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-size: 1.25rem;
  color: #1E1E1E;
  font-weight: 300;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.contact__control__input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 300;
  outline: none;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.contact__control__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0);
}
.contact__control__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0);
}
.contact__control__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0);
}
.contact__control__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0);
}
.contact__control__input::placeholder {
  color: rgba(0, 0, 0, 0);
}
.contact__control__input.m--textarea {
  padding: 0.625rem 0;
  resize: none;
  overflow: hidden;
}
.contact__control:has(.contact__control__input:focus:-moz-placeholder-shown) .contact__control__label, .contact__control:has(.contact__control__input:not(:-moz-placeholder-shown)) .contact__control__label {
  font-size: 0.8125rem;
  top: -0.6875rem;
}
.contact__control:has(.contact__control__input:focus:-ms-input-placeholder) .contact__control__label, .contact__control:has(.contact__control__input:not(:-ms-input-placeholder)) .contact__control__label {
  font-size: 0.8125rem;
  top: -0.6875rem;
}
.contact__control:has(.contact__control__input:focus:placeholder-shown) .contact__control__label, .contact__control:has(.contact__control__input:not(:placeholder-shown)) .contact__control__label {
  font-size: 0.8125rem;
  top: -0.6875rem;
}
.contact__control:has(.contact__control__input.m--textarea:focus:-moz-placeholder-shown), .contact__control:has(.contact__control__input.m--textarea:not(:-moz-placeholder-shown)) {
  height: 5.375rem;
}
.contact__control:has(.contact__control__input.m--textarea:focus:-ms-input-placeholder), .contact__control:has(.contact__control__input.m--textarea:not(:-ms-input-placeholder)) {
  height: 5.375rem;
}
.contact__control:has(.contact__control__input.m--textarea:focus:placeholder-shown), .contact__control:has(.contact__control__input.m--textarea:not(:placeholder-shown)) {
  height: 5.375rem;
}
.contact__control:has(.contact__control__input.m--textarea:focus:-moz-placeholder-shown) .contact__control__input.m--textarea, .contact__control:has(.contact__control__input.m--textarea:not(:-moz-placeholder-shown)) .contact__control__input.m--textarea {
  height: 100%;
}
.contact__control:has(.contact__control__input.m--textarea:focus:-ms-input-placeholder) .contact__control__input.m--textarea, .contact__control:has(.contact__control__input.m--textarea:not(:-ms-input-placeholder)) .contact__control__input.m--textarea {
  height: 100%;
}
.contact__control:has(.contact__control__input.m--textarea:focus:placeholder-shown) .contact__control__input.m--textarea, .contact__control:has(.contact__control__input.m--textarea:not(:placeholder-shown)) .contact__control__input.m--textarea {
  height: 100%;
}
.contact__control__select-icon {
  position: absolute;
  top: 0.9375rem;
  right: 0;
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
}
.contact__checker {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.contact__checker__input {
  display: none;
}
.contact__checker__input:checked + .contact__checker__box {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}
.contact__checker__box {
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #1E1E1E;
  border-radius: 0.1875rem;
  position: relative;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.contact__checker__box img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.contact__checker p {
  font-size: 1rem;
  cursor: pointer;
}
.contact__checker p a {
  color: var(--primary-500);
  font-weight: 700;
}
.contact__checker p a:hover {
  text-decoration: underline;
}
.contact__thanks {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  height: 100%;
}
.contact__thanks__title {
  display: block;
  font-size: 2.5rem;
}
.contact__thanks__title b {
  color: var(--primary-500);
  font-weight: 700;
}
.contact__thanks__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 800px) {
  .contact__content {
    padding: 6.25rem 2.5rem 2.5rem;
  }
  .contact__thanks__title {
    font-size: 2.125rem;
  }
  .contact__thanks__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .contact__content {
    padding: 5.625rem 1.875rem 1.875rem;
  }
  .contact__title {
    font-size: 1.25rem;
  }
  .contact__form {
    gap: 1.375rem;
  }
  .contact__control.m--2 {
    width: 100%;
  }
  .contact__control__label, .contact__control__input {
    font-size: 1.125rem;
  }
  .contact__thanks__title {
    font-size: 1.75rem;
  }
  .contact__thanks__text {
    font-size: 1.0625rem;
  }
}