:root {
  --primary-font: "Roboto Condensed", sans-serif;
  --base-size-font: 17px;

  --primary-color: #1f1518;
  --secondary-color: #ff0000;
  --tertiary-color: #ff2d12;

  --transition: all 0.4s ease;
  --custom-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #0000001f;
  --border-radius: 10px;

  --title-m: 3rem;
  --title: 2.6rem;
  --title-s: 1.8rem;
  --title-xs: 1.3rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}

html {
  overscroll-behavior: none;
}

html,
body {
  height: 100%;
}
body {
  font-family: var(--primary-font);
  font-size: var(--base-size-font);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--primary-color);
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
}
h2 {
  font-size: var(--title);
}
h3 {
  font-size: var(--title-s);
}
a {
  transition: var(--transition);
}
p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.d-flex {
  display: flex;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--border-radius);
}
.btn.-border {
  background-color: transparent;
  border: 1px solid var(--tertiary-color);
  width: fit-content;
}
.btn.-border:hover {
  background-color: var(--tertiary-color);
}

section {
  padding: 60px 0;
}
.section-title {
  justify-content: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--title);
  position: relative;
}
.section-title h2.-white {
  color: #fff;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 34px;
  height: 9px;
  background-color: var(--tertiary-color);
}
.section-title h2.-white::after {
  background-color: var(--primary-color);
}

/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
}
main {
  margin-top: 0px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0 6rem;
  }
}
@media screen and (min-width: 1280px) {
}
/**
*	GENERAL
*	=======================================================================================================
**/

/**
*	HOME
*	=======================================================================================================
**/
#services {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px 0 80px;
}
.services-wrapper {
  flex-direction: column;
}
.services-wrapper > div:nth-child(1) {
  width: 100%;
  align-items: center;
}
.services-wrapper > div:nth-child(2) {
  width: 100%;
}
.services-flex {
  gap: 20px;
  flex-direction: column;
}
.item-services {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}
.item-services:hover {
  width: 100%;
}
.title-service {
  position: absolute;
  transform: rotate(-90deg) translate(167px, 160px);
  bottom: 0;
  right: 0;
  font-weight: 700;
  width: 340px;
  height: 60px;
  font-size: var(--title-s);
  transition: var(--transition);
  z-index: 99;
  text-transform: uppercase;
  display: none;
}
.item-services:hover .title-service {
  transform: rotate(-90deg) translate(167px, 205px);
}
.gradient-service {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
  bottom: 0;
  background: rgb(31, 21, 24);
  background: -moz-linear-gradient(
    0deg,
    rgba(31, 21, 24, 1) 0%,
    rgba(31, 21, 24, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(31, 21, 24, 1) 0%,
    rgba(31, 21, 24, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(31, 21, 24, 1) 0%,
    rgba(31, 21, 24, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f1518",endColorstr="#1f1518",GradientType=1);
  transform: translate(0px, 0px);
  transition: var(--transition);
}
.arco-service {
  position: absolute;
  width: 1419px;
  z-index: 95;
  transform: scale(1) translate(-800px, 0px);
  opacity: 0.8;
  transition: var(--transition);
}
.item-services:hover .arco-service {
  transform: scale(1) translate(-800px, 0px);
}
.item-services:hover .gradient-service {
  transform: translate(0px, 0px);
}
.item-services:hover .content-service {
  transform: translate(0px, 0px);
  opacity: 1;
}
.content-service {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 40px 25px;
  flex-direction: column;
  justify-content: flex-end;
  transform: translate(0, 0);
  transition: var(--transition);
  opacity: 1;
}
.content-service h2 {
  font-weight: 700;
  font-size: var(--title-s);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.content-service li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.content-service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--tertiary-color);
}

@media screen and (min-width: 580px) {
  #services {
    padding: 80px 0;
  }
  .services-flex {
    flex-direction: row;
  }
  .item-services {
    width: 33%;
    height: 530px;
  }
  .content-service {
    transform: translate(-300px, 0);
    opacity: 0;
  }
  .gradient-service {
    transform: translate(0px, 150px);
  }
  .arco-service {
    transform: scale(0.3) translate(-2100px, -60px);
  }
  .title-service {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .services-wrapper > div:nth-child(1) {
    width: 30%;
  }
  .services-wrapper > div:nth-child(2) {
    width: 70%;
  }
  .item-services:hover {
    width: 60%;
  }
  .services-wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Promo ------------------*/
#slider-promo .slick-dots{
	top: auto;
    bottom: -35px;
    right: 0;
    left: auto;
    text-align: center;
}
#slider-promo .slick-dots li button:before {
    font-size: 15px;
    color: #fff;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	#slider-promo .slick-dots{
		top: -89px;
		bottom: auto;
		right: 0;
		left: auto;
		text-align: right;
	}
}
@media screen and (min-width: 1280px) {
}

#promo {
  padding: 0;
  position: relative;
}
#promo::after {
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 570px;
  position: absolute;
  background-image: url(../images/bg-promo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.row-promo {
  flex-direction: row;
  justify-content: space-between;
}
.row-promo h2 {
  margin-bottom: 20px;
}
.promo-wrapper {
  border-radius: 0 0 0 0px;
  padding: 100px 0;
  position: relative;
  z-index: 99;
}
.promo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45px;
  background-image: url(../images/semi-arco-dark.svg);
  width: 92px;
  height: 46px;
  background-repeat: no-repeat;
}
.item-slider-promo {
  /*height: 336px;*/
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--border-radius);
  background-color: #fff;
  margin: 0 10px;
  position: relative;
  display: flex !important;
  align-items: center;
}
.item-slider-promo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
}
.content-promo {
  padding: 45px 20px 20px;
  text-align: center;
}
.title-promo {
  padding: 0 20px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  position: absolute;
  top: 195px;
  width: 80%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  height: 64px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 580px) {
  .promo-wrapper {
    border-radius: 0 0 0 50px;
    background: linear-gradient(
      to left,
      transparent 50%,
      var(--tertiary-color) 50%
    );
  }
  .row-promo {
    margin-left: 90px;
  }
  #slider-promo {
    margin-left: 90px;
  }
	#promo {
  background: linear-gradient(to right, white 50%, var(--tertiary-color) 50%);
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Cotizador ------------------*/
#quoter {
  padding-top: 40px;
  position: relative;
}
#quoter .btn{
  color: #fff;
	transition: var(--transition);
	cursor: pointer;
	background-color: var(--tertiary-color);
}
#quoter .btn:hover{
  background-color: var(--primary-color);
}
#quoter::after {
  content: "";
  position: absolute;
  bottom: -230px;
  right: 0;
  width: 317px;
  height: 500px;
  background-image: url(../images/arco-cotizador.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
input#rrhh-workers {
    padding: 0;
    width: 80px !important;
    text-align: center;
}
#rrhh-options{
	margin: 10px 0 20px 0 !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f4f4f4;
}
.quoter-row {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.quoter-wrapper {
  flex-direction: column;
  gap: 40px;
}
.selector-container {
  width: 100%;
}
.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.item:hover {
  background-color: #f0f0f0;
}
.item.selected {
  background-color: #d4edda;
}
.summary {
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  /*background-color: #f9f9f9;*/
  width: 100%;
  justify-content: space-between;
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.summary h3{
	font-size: var(--title-xs);
	font-weight: 700;
}
.content-summary {
  padding: 30px;
}
.content-total {
  flex-direction: column;  
  padding: 30px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  gap:10px;
}
.item-total{
  flex-direction: row;
  justify-content: space-between;
}
.summary h3 {
  margin: 0 0 10px;
}
.summary p {
  margin: 5px 0;
}
.total {
  font-size: 18px;
  font-weight: bold;
}
.office-options {
  margin: 10px 0 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f4f4f4;
  display: none;
}
.office-options select {
  margin-bottom: 10px;
  width: 100%;
  padding: 5px;
}
.details > div {
  border-bottom: 1px dashed #000;
  padding: 15px 0;
}
/* #quoter label {
  font-weight: 700;
} */
#quoter input,
#quoter textarea {
  color: var(--primary-color);
}
#quoter textarea::placeholder,
#quoter input::placeholder {
  color: var(--primary-color);
}
input[type="radio"] {
  width: auto;
}
.radio-group {
  gap: 20px;
}
@media screen and (min-width: 580px) {
  .quoter-row {
    flex-direction: column;
    align-items: flex-start;
  }
	#quoter {
  padding-top: 100px;
}
}
@media screen and (min-width: 980px) {
  .quoter-wrapper {
    flex-direction: row;
    gap: 80px;
  }
  .selector-container {
    width: 55%;
  }
  .summary {
    width: 45%;
  }
  #quoter::after {
    bottom: -270px;
    right: -45px;
    width: 526px;
    height: 658px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Consultas ------------------*/
#consultas {
  padding-bottom: 0;
  position: relative;
}
#consultas::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 137px;
  top: -8px;
  left: 0;
  background-image: url(../images/arco-2-dark.svg);
  background-repeat: no-repeat;
  z-index: 9;
}
#consultas .section-title {
  margin-bottom: 80px;
}
#wpcf7-f22-o2{
	width: 100%;
}
.consultas-wrapper {
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.consultas-wrapper > div:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: -60%;
  background-color: var(--tertiary-color);
}
.consultas-wrapper > div:nth-child(1) {
  background-color: var(--tertiary-color);
  color: #fff;
  padding: 80px 0px 20px 0px;
  border-radius: 0 50px 0 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.consultas-wrapper > div:nth-child(2) {
    width: 100%;
	    padding-bottom: 80px;
}
form {
  width: 100%;
}
input,
textarea {
  border-bottom: 1px solid var(--primary-color);
  background-color: transparent;
  color: #fff;
  width: 100%;
  padding: 10px 20px 10px 0;
  resize: none;
}
textarea::placeholder,
input::placeholder {
  color: #fff;
}
.form-group {
  margin-bottom: 15px;
}
#consultas .btn {
  width: 100%;
  margin-top: 15px;
	transition: var(--transition);
	border-bottom: none;
	cursor:pointer;
}
#consultas .btn:hover{
  background-color: var(--secondary-color);
}
#consultas .container {
  background-color: var(--tertiary-color);
  border-radius: 0 50px 0 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .consultas-wrapper {
    flex-direction: row;
	  gap: 60px;
	}
  .consultas-wrapper > div:nth-child(1) {
    width: 55%;
    padding: 80px 80px 80px 20px;
  }
	
	
  #consultas .container {
    background-color: transparent;
    border-radius: 0;
  }
	.consultas-wrapper > div:nth-child(2){
		width:45%;
		padding-top: 60px;
		padding-bottom: 0px;
	}
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Footer ------------------*/
footer {
  padding: 100px 0 0;
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
}
.footer-wrapper {
  flex-direction: column;
  gap: 60px;
  position: relative;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 145px;
  height: 215px;
  background-image: url(../images/arco-footer.svg);
  background-repeat: no-repeat;
}

.footer-wrapper > .footer-row:nth-child(1) {
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap:60px;
}
.footer-wrapper > .footer-row:nth-child(1),
.footer-wrapper > .footer-row:nth-child(2) {
  padding: 0 0px;
}
.footer-wrapper > .footer-row:nth-child(2) {
  gap: 30px;
  flex-direction: column;
  padding: 0;
  align-items: center;
}
.logo-footer {
  width: 332px;
}
.cards-footer {
  width: 100%;
  object-fit: contain;
}
.footer-wrapper > .footer-row:nth-child(3) {
  background-color: #0f0b0c;
  padding: 40px 0px 0 0px;
  border-radius: 50px 0 0 0;
  position: relative;
}
.footer-wrapper > .footer-row:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: -50%;
  background-color: #0f0b0c;
	display: none;
}
.tags {
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
	padding: 0 20px;
}
.tags a:hover {
  color: var(--secondary-color);
}
.copyright {
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
  gap: 30px;
}
.copyright > div:nth-child(1),
.copyright > div:nth-child(3) {
  width: 100%;
  position: relative;
  justify-content: center;
}
.copyright > div:nth-child(3) {
  display: none;
}
.copyright > div:nth-child(2) {
  flex-direction: column;
  background-color: var(--secondary-color);
  width: 100%;
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: relative;
  z-index: 9;
}
.redes-footer {
  gap: 5px;
}
.redes-footer img {
  width: 35px;
}
.bloque-footer {
  padding: 0px;
  text-align: center;
}
.bloque-datos {
  background-color: #fff;
  color: var(--primary-color);
  width: 340px;
  border-radius: var(--border-radius);
  padding: 20px;
}
.bloque-footer h3 {
  font-weight: 700;
  font-size: var(--title-xs);
  color: var(--tertiary-color);
  margin-bottom: 10px;
}
.horarios {
  justify-content: space-between;
  line-height: 1.3;
}

.horarios-2 {
  flex-direction: column;
  line-height: 1.5;
  gap: 40px;
  align-items: center;
}
.horarios-2 img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  margin-right: 5px;
}
.a84 {
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.a84 img {
  width: 25px;
}
@media screen and (min-width: 580px) {
	.footer-wrapper > .footer-row:nth-child(3) {
	  padding: 40px 40px 0 40px;
	}
	.tags {
	padding: 0;
}
}
@media screen and (min-width: 980px) {
  .footer-wrapper > .footer-row:nth-child(1) {
    flex-direction: row;
    gap:0;
  }
  .footer-wrapper > .footer-row:nth-child(2) {
    flex-direction: row;
    padding: 0 40px;
    gap: 60px;
  }
  .footer-wrapper > .footer-row:nth-child(1),
.footer-wrapper > .footer-row:nth-child(2) {
  padding: 0 40px;
}
	.footer-wrapper > .footer-row:nth-child(3)::after {
	display: flex;
}
  .tags {
    margin-right: 160px;
    text-align: left;
  }
  .copyright {
    flex-direction: row;
    gap: 0;
  }
  footer::after {
    width: 257px;
    height: 375px;
  }
  .copyright > div:nth-child(2) {
    flex-direction: row;
  }
  .copyright > div:nth-child(2) {
    width: 70%;
  }
  .copyright > div:nth-child(1),
  .copyright > div:nth-child(3) {
    width: 15%;
    justify-content: flex-start;
  }
  .copyright > div:nth-child(3) {
    display: flex;
  }
	
  .bloque-footer {
    padding: 20px;
    text-align: left;
  }
  .horarios-2 {
    flex-direction: row;
  }
  .cards-footer {
    width: 542px;
  }
  .footer-wrapper {
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Welcome ------------------*/
#welcome {
  padding: 0;
  position: relative;
}
#welcome::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 137px;
  bottom: -68px;
  left: 0;
  background-image: url(../images/semi-arco-red.svg);
}

#slider-welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0;
}
.item-slider-welcome {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#slider-welcome .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-slider-txt-welcome {
  position: absolute;
  width: 88%;
  height: 100%;
  z-index: 9;
  display: flex;
  align-items: center;
  padding-top: 90px;
  color: #fff;
}
.item-txt-slider-welcome h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 35px;
}
.item-txt-slider-welcome h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 34px;
  height: 9px;
  background-color: var(--tertiary-color);
}
.item-txt-slider-welcome p {
  margin-bottom: 40px;
}
#slider-txt-welcome {
  width: 100%;
  padding: 40px 0 0 0px;
}

#slider-txt-welcome .slick-slide {
  display: flex;
  flex-direction: column;
}
#slider-txt-welcome .slick-dots {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 99999;
  display: flex !important;
  height: 25px;
}
#slider-txt-welcome .slick-dots li button:before {
  font-size: 15px;
  color: #fff;
}
#slider-txt-welcome .slick-dots li.slick-active button:before {
  opacity: 1;
}
@media screen and (min-width: 580px) {
  #welcome {
    background: linear-gradient(to bottom, white 50%, var(--primary-color) 50%);
  }
  
  #slider-welcome {
    height: 680px;
    border-radius: 0 0 50px 0;
  }
  .item-txt-slider-welcome h1 {
    font-size: var(--title-m);
  }
  #slider-txt-welcome {
    width: 500px;
    padding: 40px 0 0 20px;
  }
}
@media screen and (min-width: 980px) {
  .welcome-wrapper {
    margin-right: 6rem;
  }
}
@media screen and (min-width: 1280px) {
}


/*-------------------- Header ------------------*/

header {
  position: absolute;
      z-index: 99999;
  margin: 20px 0;
  width: 100%;
}
.header-wrapper {
  align-items: center;
  justify-content: space-between;
}
.logo-header {
  width: 30%;
}
.logo-header img {
  width: 233px;
}
.barra-header {
  background-color: #fff;
  height: 90px;
  align-items: center;
  border-radius: 50px 0 0 50px;
  justify-content: space-between;
  position: relative;
  display: none;
}
.barra-header.membresias-res{
  display: flex;
  height: 80px;
  justify-content: center;
  margin-bottom: 60px;
}
.barra-header::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  right: -50%;
  top: 0;
  background-color: var(--tertiary-color);
}
.barra-header.membresias-res::before{
  display: none;
}
.barra-header::after {
  content: "";
  bottom: -40px;
  right: -43px;
  height: 40px;
  width: 82px;
  position: absolute;
  background-image: url(../images/semi-arco-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.barra-header.membresias-res::after{
  display: none;
}
.redes-header {
  background-color: var(--tertiary-color);
  height: 90px;
  border-radius: 50px 0 0 50px;
  align-items: center;
  gap: 5px;
  padding: 0 0 0 40px;
}
.redes-header img {
  width: 35px;
}
.membresias {
  gap: 15px;
  padding: 0 20px 0 30px;
  align-items: center;
}
.membresias > div {
  display: flex;
  align-items: center;
}
.membresias img {
  width: 109px;
  height: 62px;
  object-fit: contain;
  object-position: center;
}
.barra-header.membresias-res .membresias img {
  width: 65px;
  height: 55px;
}
@media screen and (min-width: 580px) {
  .barra-header.membresias-res{
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .barra-header {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}


/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

/* LOADER OVERLAY */

.loader-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.loader-wrap.active{
    animation: 2000ms ease 300ms 1 normal both running fade-in;
}

.loader-wrap.hide{
    display:none;
}

.loader-logo{
    margin-bottom:4rem;
	position: absolute;
	z-index: 9999;
    /*animation: rotateAnimation 3s linear infinite;*/
}

.isotipo{
	width:60px;
	animation: rotate 2s linear infinite;
}
.neobiza{
	width:175px;
	margin-left: 10px;
}
.loader-icon .loader{
    position: relative;
}

@keyframes fade-in {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.loader{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    text-indent:0;
    font-size:0;
    opacity:0;
    visibility:hidden;
}

.loader.active{
     opacity:1;
    visibility:visible;
}

.loader:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 10px solid #ccc;
    border-top-color: var(--primary-color);
    border-width: 5px;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    z-index: 2;
    display: block;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

main.-intern {
    padding: 135px 20px 20px;
    text-align: center;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
	main.-intern {
		padding: 135px 135px 20px;
	}
}
@media screen and (min-width: 1280px) {
}
