@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", serif;
}

body {
  margin: 0;
  background: white;
  position: relative;
}

img {
  display: block;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins-Bold", serif;
}

.container {
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1100px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1300px;
  }
}
.container--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-whast {
  color: white;
  background: #2DB742;
  width: 70px;
  height: 70px;
  font-size: 2.7em;
  padding: 10px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 65px;
  text-decoration: none;
  z-index: 9999999999;
}

.banner-text {
  background: #1E1C1D;
  color: white;
  padding: 40px 0;
  font-size: 1.7em;
}

.main-header {
  background: #1E1C1D;
  color: white;
  height: 100px;
  padding: 20px 0;
  padding-top: 10px;
}
@media screen and (min-width: 1024px) {
  .main-header .container--flex {
    height: 100%;
  }
}
.main-header .icon-facebook {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  text-decoration: none;
}

.logo__img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .logo__img {
    width: 180px;
  }
}

.main-header--right {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media screen and (min-width: 1024px) {
  .main-header--right {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.container-top_txt {
  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;
}
.container-top_txt [class^=icon-]:before {
  position: relative;
  right: 10px;
  font-size: 1.5em;
}

.top__txt {
  font-size: 0.9em;
}

.icon-menu {
  font-size: 1.5em;
  cursor: pointer;
  color: white;
}
@media screen and (min-width: 1024px) {
  .icon-menu {
    display: none;
  }
}

.main-nav {
  background: #1E1C1D;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .main-nav {
    background: #8B0C0C;
  }
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1E1C1D;
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999999;
}
@media screen and (min-width: 1024px) {
  .menu {
    position: static;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: auto;
    background: #8B0C0C;
    color: white;
    opacity: 1;
    visibility: visible;
  }
}

.icon-home:before {
  position: relative;
  margin-right: 5px;
  top: 2px;
}

.menu__item {
  position: relative;
  margin: 0 10px;
}
@media screen and (min-width: 1024px) {
  .menu__item {
    border-bottom: none;
  }
  .menu__item:before {
    content: "";
    width: 0;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
  }
  .menu__item:hover:before {
    width: 100%;
    left: 0;
  }
  .menu__item--select:before {
    content: "";
    width: 100%;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
  }
}

.menu__link {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  background: #1E1C1D;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 1024px) {
  .menu__link {
    background: transparent;
    padding: 20px;
    color: white;
    font-size: 1.2em;
  }
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1E1C1D; /* Cambia esto al color que desees */
  font-size: 0.9em;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 450px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
    padding: 10px;
    padding-left: 40px;
    height: auto;
  }
}

.menu__item:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.menu__subitem {
  position: relative;
  width: 100%;
  padding-left: 40px;
}
@media screen and (min-width: 1024px) {
  .menu__subitem {
    padding: 0;
  }
  .menu__subitem:before {
    content: "";
    width: 0;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    z-index: 9;
  }
  .menu__subitem:hover:before {
    width: 100%;
    left: 0;
  }
}

.menu__subitem .menu__link {
  text-decoration: none;
  width: 100%;
  color: white;
  display: block;
  padding: 15px;
  padding-left: 0;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background: #1E1C1D;
}

.menu__img {
  padding: 10px;
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .menu__img {
    display: none;
  }
}

.menu-bar {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .menu-bar {
    display: none;
  }
}

.icon-down {
  position: relative;
  top: 3px;
}

.mostrar {
  opacity: 1;
  visibility: visible;
}

.uno, .dos, .tres {
  width: 30px;
  background: white;
  height: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.dos {
  margin: 5px 0;
}

/*animacion*/
.mostrar .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.mostrar .dos {
  opacity: 0;
}

.mostrar .tres {
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
          transform: rotate(-45deg) translate(6px, -7px);
}

.main-footer {
  background: #1E1C1D;
  color: white;
  padding: 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-footer {
    text-align: left;
  }
  .main-footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 1.3em;
}

.main-footer__logo {
  width: 300px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .main-footer__logo {
    width: 200px;
    margin: 0;
  }
}

.footer__column {
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .footer__column {
    width: 24%;
  }
}

@media screen and (min-width: 768px) {
  .footer__item {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 1024px) {
  .footer__item {
    font-size: 0.95em;
  }
}

.footer__link {
  color: white;
  text-decoration: none;
}

.main-footer [class^=icon-]:before {
  font-size: 1.5em;
  text-decoration: none;
  color: white;
}

.copy {
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  margin: 20px 0;
}

.main {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .main {
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .container-form--main .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.container-form--main .form {
  margin-top: 0;
  padding: 50px 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .container-form--main .form {
    width: 70%;
    margin: auto;
  }
}
.container-form--main .form__subtitle {
  color: #8B0C0C;
  font-weight: bold;
}
.container-form--main .form__title {
  font-size: 2.2em;
}
@media screen and (min-width: 480px) {
  .container-form--main .form__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.container-form--main .form__input-txt, .container-form--main .form__select {
  padding: 15px;
  font-size: 1em;
  display: block;
  width: 100%;
  margin: 15px 0;
  border: 1px solid #eaeaea;
}
@media screen and (min-width: 480px) {
  .container-form--main .form__input-txt, .container-form--main .form__select {
    width: 49%;
  }
}
.container-form--main .form__submit {
  background: #8B0C0C;
  width: 100%;
  border: none;
  color: white;
  padding: 15px;
  font-size: 1.1em;
  margin-top: 20px;
  display: block;
  cursor: pointer;
}
.container-form--main .form--trabajo {
  padding-top: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .container-form--main .form--trabajo {
    width: 65%;
  }
}
.container-form--main .form--trabajo .form__input-txt, .container-form--main .form--trabajo .form__select {
  width: 100%;
}
.container-form--main .form--trabajo .inputs-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-form--main .form--trabajo .inputs-flex .form__input-txt {
  width: 32%;
}
.container-form--main .form--trabajo .form__title, .container-form--main .form--trabajo .form__txt {
  text-align: left;
}
.container-form--main .form--trabajo .form__title {
  font-size: 1.5em;
  color: #8B0C0C;
}
.container-form--main .form--trabajo .form__label {
  display: block;
  color: #8B0C0C;
  text-align: left;
  font-weight: bold;
  font-size: 1.1em;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(87, 87, 87);
  width: 100%;
  margin-top: 40px;
  font-family: "Poppins-Bold", serif;
}
.container-form--main .form--trabajo .file__btn {
  background: #8B0C0C;
  color: white;
  padding: 20px;
  display: block;
  width: 200px;
  margin-bottom: 50px;
  cursor: pointer;
}
.container-form--main .form--trabajo .form__file {
  display: none;
}
.form-msg {
  color: white;
  width: 95%;
  margin: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(139, 12, 12)), to(rgb(84, 6, 6)));
  background: linear-gradient(180deg, rgb(139, 12, 12) 0%, rgb(84, 6, 6) 100%);
  padding: 30px;
  margin-top: 30px;
  height: 300px;
  border-radius: 5px;
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .form-msg {
    width: 25%;
    margin: 30px auto;
    height: 400px;
  }
}
.form-msg .form-msg__title {
  margin-top: 0;
}
.form-msg .form-msg__txt {
  margin-bottom: 40px;
}