.contactos_cont {
  padding: 100px 0;
  position: relative
}

.contactos_cont .contactos_tit {
  color: var(--dark-tex-color);
  font-size: 32px;
  /* line-height: 2.6rem; */
  font-weight: 700;
  /* text-transform: uppercase; */
  margin-bottom: 10px
}

.contactos_cont .contactos_txt {
  color: grey;
  font-size: 14px;
  /* line-height: 2.6rem; */
  font-weight: 400
}

@media screen and (max-width: 71.8125em) {
  .contactos_cont .contactos_txt {
    font-size: 14px;
    line-height: 26px
  }
}

.contactos_cont .contactos_txt a {
  color: var(--primary-color)
}

.contactos_cont .contactos_txt a:hover {
  color: var(--highlight-color)
}

.contactos_cont .contactos_submit {
  display: block;
  width: 100%;
  max-width: 330px;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.7rem;
  /* border-radius: 50px; */
  padding: 7px 15px;
}

.contactos_cont .contactos_submit:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.contactos_cont .contactos_submit span {
  position: absolute;
  top: 10px;
  right: 15px
}

.contactos_cont .contactos_submit span path {
  fill: #fff
}

.contactos_cont .contactos_submit:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
}

.contactos_cont .contactos_submit.disabled {
  background: #ebeced;
  cursor: default;
  pointer-events: none
}

@media screen and (max-width: 59.3125em) {
  .contactos_cont {
    padding: 70px 0;
    /* padding-bottom: 40rem */
  }

  .contactos_cont .contactos_tit {
    margin-bottom: 2rem
  }

  .contactos_cont .contactos_txt {
    margin-bottom: 5rem
  }
}

.mapa_contactos {
  display: block;
  background: #e8e8e8;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
  height: 100%;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.mapa_contactos #mapa {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.mapa_contactos>img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -25px
}

.mapa_contactos .mapa_close {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 40px;
  width: 3rem;
  height: 3rem;
  text-align: center;
  cursor: pointer;
  z-index: 99
}

.mapa_contactos .mapa_close path {
  fill: var(--primary-color)
}

.mapa_contactos .mapa_close:hover path {
  fill: var(--highlight-color)
}

.mapa_contactos.show-map #mapa {
  opacity: 1
}

.mapa_contactos.show-map>img {
  display: none
}

.mapa_contactos.show-map .mapa_close {
  display: block
}

@media screen and (max-width: 59.3125em) {
  .mapa_contactos {
    width: 100% !important;
    height: 35rem;
    top: auto;
    bottom: 0
  }

  .mapa_contactos #mapa {
    opacity: 1
  }

  .mapa_contactos>img {
    display: none
  }

  .mapa_contactos .mapa_close {
    display: none
  }
}
