.customPageCenteredContent {
  width: auto !important;
}
#customPageTitle {
  display: none !important;
}
h2 {
  margin-bottom: 15px;
}
p {
  margin-bottom: 20px;
}
/* Nosotros */
.highlightAbout {
  width: 100%;
}
.containerAbout {
  display: flex;
}
.imgContainerAbout {
  width: 50%;
}
.imgContainerAbout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.textContainerAbout {
  width: calc(50% - 300px);
  padding: 50px 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.textContainerAbout h2 {
  margin-bottom: 30px;
}
.textContainerAbout p:last-child {
  margin-bottom: 35px;
}
.textContainerAbout .button {
  top: 20px;
  position: relative;
}
.nosotrosMobileElement{
  display: none;
}

/* Contato */
.contactContainer{
  width: 100%;
}
.contactContainer, .customPageCenteredContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contactContainer img, .customPageImage {
  width: 50%;
  height: calc(100vh - 80px);
  object-fit: cover;
}
.formContainer, .contactFormContainer {
  width: calc(50% - 200px);
  padding: 0 100px;
  margin: auto;
}
.contactInput {
  width: calc(100% - 20px);
  padding: 10px;
  color: var(--secondary-color-two);
  font-size: var(--base-font-size);
  font-weight: 100;
  margin-bottom: 0;
  height: auto;
  font-size: 13px;
}
.fieldMissing{
  border: 1px solid red !important;
} 
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.contactInput::placeholder {
  font-weight: 300;
  color: var(--secondary-color-two);
  font-size: var(--span-font-size);
}
.visitContainer {
  width: 90%;
  margin: 50px auto;
  background: #f8f8f8;
}
.adressContainer {
  width: 40%;
}
.adressContainer div {
  padding: 40px;
}
iframe {
  width: 60%;
}
.contactTextarea{
  grid-column: 1/3;
}
.contactTextarea{
  height: 100px !important;
}

/*Forms customizables*/

.customPageImage{
  margin: 0;
}
.contactDiv{    
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 0;
  width: auto;
  overflow: visible;
  position: unset;
}
.sendContact{
  background-color: var(--primary-color-two);
  color: var(--primary-color-one);
  border-radius: 6px;
  padding: 16px 30px;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  transition: 0.5s all ease-in-out;
  border: transparent;
  height: auto;
  text-align: center;
  font-weight: 600;
  margin: 0;
  line-height: 15px;
}
.sendContact:hover {
    background-color: var(--primary-color-one);
    color: var(--primary-color-two);
}
.customPageFormSubtitle{
  margin-bottom: 20px;
}
.selectDiv{
  position: relative;
}
.contactSelect{
  width: 100% !important;
  background-image: url("/files/checkout/select-arrow.svg");
  background-size: 16px;
  background-position: 95%;
  background-repeat: no-repeat;
}
.shippingSelectArrow{
  position: absolute;
  left: 90%;
  top: calc(50% - 4px);
  width: 16px;
}
.shippingSelectImg{
  width: 100%;
}
.contactRow{
  grid-column: 1/3;
  border: 1px solid #EBE3DC;
  border-radius: 5px;
  margin: 0;
  height: 100px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contactLabel, .file-input-name{
  text-align: center;
  margin: 0;
  color: var(--secondary-color-two);
  font-size: 15px;
  line-height: 0;
  margin-bottom: 7px;
  width: 100%;
}
.file-input-wrapper{
  margin-left: 0;
  cursor: pointer;
  width: 100%;
  border: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--secondary-color-two);
  height: 100%;
  position: absolute;
}
.file-input-close{
  position: absolute;
  right: 1.3%;
  top: 3%;
  z-index: 10;
  cursor: pointer;
}
.file-input-add{
  position: absolute;
  top: 23%;
}
/*Desktop pequeño*/
@media screen and (max-width: 1230px) {
  .formContainer, .contactFormContainer {
    width: calc(50% - 80px);
    padding: 0 40px;
  }
  .textContainerAbout {
    width: calc(50% - 200px);
    padding: 50px 100px;
  }
}

@media screen and (max-width: 1100px) {
  .formContainer, .contactFormContainer {
    width: calc(70% - 80px);
    padding: 30px 40px;
  }
  .contactContainer img, .customPageImage {
    width: 30%;
    object-fit: cover;
  }
}

/* Mobile */
@media screen and (max-width: 950px) {
  .nosotrosMobileElement{
    display: block;
  }
  .nosotrosDesktopElement{
    display: none;
  }
  .customPageCenteredContent {
    margin-bottom: 0;
  }
  .containerAbout {
    flex-direction: column;
  }
  .imgContainerAbout {
    width: 100%;
  }
  .textContainerAbout {
    width: calc(100% - 10%);
    padding: 40px 5% 55px 5%;
  }
  .textContainerAbout h2 {
    margin-bottom: 20px;
  }
  .textContainerAbout .button {
    top: 10px;
  }
  /*Contacto*/
  .form, .contactDiv{
    display: flex;
    flex-direction: column;
  }
  .contactContainer {
    flex-direction: column;
  }
  .contactContainer img, .customPageImage {
    width: 100%;
    margin-bottom: 30px;
    height: 290px;
    max-width: unset;
  }
  .formContainer, .contactFormContainer {
    width: 90%;
    padding: 0;
    margin: auto;
  }
  .contactFormContainer{
    padding-bottom: 30px;
  }
  .visitContainer {
    width: 100%;
    flex-direction: column;
  }
  .adressContainer {
    width: 100%;
  }
  .adressContainer div {
    padding: 5%;
  }
  iframe {
    width: 100%;
  }
  .visitContainer {
    margin: 50px auto 0;
  }
}
