/**********TEMPLATE ELEMENTS***********/
/*Home*/
.home-container {
  height: 100vh;
}
.home-container-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#home-contacto-logo {
  width: 250px;
  display: block;
  margin: auto;
  position: fixed;
  top: 24vh;
  left: calc(50% - 125px);
}
#home-contacto-arrows {
  width: 13px;
  display: block;
  margin: auto;
  margin-top: 35px;
  margin-bottom: 25px;
}
.home-contact-container {
  padding-bottom: 100px;
  padding-top: 80px;
}
.home-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}
.home-contact a {
  text-decoration: underline;
  transition: all var(--transition);
}
.home-contact a:hover {
  opacity: 0.3;
}
.first-home-contact:after {
  content: "+";
  position: absolute;
  right: -15px;
  font-size: 18px;
  display: block;
}
.home-container #orange-square-logo {
  background-image: url("/wp-content/uploads/niagara-favicon-b.svg");
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/*Home mobile*/
.home-mobile-container {
  height: 400vh;
  background-color: var(--white);
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}
.home-mobile-text {
  color: var(--black);
  font-size: 30px;
  position: fixed;
  display: block;
  margin: auto;
  top: calc(40vh - 25px);
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0px 12px;
}
#texto-2,
#texto-3,
#texto-4,
#texto-5,
#texto-6 {
  opacity: 0;
}
#texto-3,
#texto-4,
#texto-5 {
  color: var(--black);
}
.home-mobile-text #orange-square-logo {
  background-image: url("/wp-content/uploads/niagara-favicon-b.svg");
  background-size: 160px;
  background-position: center;
  width: 100%;
  height: 230px;
  display: block;
  position: relative;
  top: -130px;
}
.mobile-contact {
  color: var(--black);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 15px;
  position: relative;
  top: -110px;
}

/*Legal*/
.page-template-legal-template {
  background-color: var(--white);
}
.page-template-legal-template .main-container {
  padding-top: 100px;
  padding-bottom: 100px;
}
#legal-template-logo {
  width: 250px;
}

/*RESPONSIVE*/
/*xl & <*/
@media only screen and (max-width: 1400px) {
}
/*lg & <*/
@media only screen and (max-width: 1200px) {
}
/*md & <*/
@media only screen and (max-width: 992px) {
}
/*sm & <*/
@media only screen and (max-width: 768px) {
  #home-contacto-logo {
    position: relative;
    width: 150px;
    right: unset;
    top: unset;
    left: unset;
  }
}
/*xs*/
@media only screen and (max-width: 576px) {
}
