/* INTRO ======================================== */
#intro {
  background-color: var(--gris-2);
  padding: var(--paddingMedium) 0 calc(var(--paddingMedium) * 2) 0;
  position: relative;
  margin-top: 89px;
}

#intro h1 {
  max-width: 550px;
  margin-bottom: 1.3em;
  font-size: clamp(1.2rem, 3.8vw, 2.9rem);
}

#intro .wrapper {
  display: flex;
  gap: 2em;
  align-items: center;
  /* align-items: flex-end; */
}

#intro .pageWidth .data {
  flex: 1;
}

#intro .pageWidth .videoWrapper {
  width: 100%;
  max-width: 300px;
}

#intro .pageWidth .video {
  position: relative;
  padding-bottom: 180%;
  height: 0;
  width: 100%;
  /* max-width: 300px; */
  border-radius: calc(var(--radiusV) * 0.3);
  overflow: hidden;
}

#intro .pageWidth .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#intro h2 {
  font-weight: 800;
  font-size: clamp(1.2rem, 4.3vw, 2.8rem);
  line-height: 1.2em;
  margin-bottom: 0.5em;
  color: #273347;
  max-width: 710px;
}

#intro h2 span {
  color: #4f4da7;
}

#intro p {
  font-weight: 550;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  line-height: 1.4em;
  padding: 0;
  color: #273347;
  /* margin-bottom: 1.5em; */
  max-width: 520px;
}

#intro .video video {
  max-width: 100%;
}

/* Responsive - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 800px) {
  #intro {
    margin-top: 0;
  }

  #intro .pageWidth .videoWrapper {
    max-width: 250px;
  }
}

@media screen and (max-width: 650px) {
  #intro .pageWidth .videoWrapper {
    max-width: 220px;
  }
}

@media screen and (max-width: 550px) {
  #intro .wrapper {
    flex-direction: column;
  }

  #intro h1 {
    max-width: 450px;
  }

  #intro .pageWidth .videoWrapper {
    max-width: 300px;
  }
}

/* SER PARTE ======================================== */
#serParte {
  background-color: var(--gris-2);
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
}

#serParte .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

#serParte .wrapper picture {
  width: 100%;
  position: relative;
}

#serParte .wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}

#serParte .wrapper div {
  width: 100%;
  padding: 2em 2.5em 2em 0;
}

#serParte .wrapper div h2 {
  font-size: clamp(1.2rem, 3.8vw, 2.6rem);
  margin-bottom: 30px;
  color: #273347;
  max-width: 450px;
  font-weight: 700;
}

#serParte .wrapper div h2 span {
  color: #4f4da7;
}

#serParte .wrapper div ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#serParte .wrapper div ul li {
  font-weight: 600;
  font-size: 17px;
  color: #333;
  position: relative;
  padding-left: 1.5em;
}

#serParte .wrapper div ul li i {
  font-size: 1.3em;
  color: #4f4da7;
  margin-right: 0.2em;
  position: absolute;
  top: 0;
  left: 0;
}

#serParte .wrapper div li h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
  #serParte .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #serParte .wrapper div {
    width: 100%;
    padding: 0 1em 2em 1em;
  }

  #serParte .wrapper picture {
    height: 250px;
  }

  #serParte .wrapper picture img {
    object-position: center 0;
  }
}

/* BENEFICIOS ====================================== */
#benefits {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#benefits ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

#benefits ul li {
  align-items: center;
  display: flex;
  flex-direction: column;
}

#benefits h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 5.2vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}

#benefits h2 span {
  color: var(--purpura-1);
}

#benefits ul li p {
  font-weight: 700;
  font-size: clamp(0.9rem, 3.4vw, 1rem);
  line-height: 1.3em;
  color: #49505b;
  text-align: center;
}

#benefits ul li i {
  font-size: 65px;
  color: var(--purpura-1);
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  #benefits .pageWidth {
    padding: 0 10px;
  }
}

@media screen and (max-width: 900px) {
  #benefits ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 750px) {
  #benefits ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 420px) {
  #benefits ul {
    grid-template-columns: repeat(1, 1fr);
    max-width: 320px;
    margin: 0 auto;
  }
}

/* PERTENECER ================================== */
#pertenecer {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#pertenecer h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}

#pertenecer h2 span {
  color: var(--purpura-1);
}

#pertenecer .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 50px;
  overflow: hidden;
}

#pertenecer .wrapper picture {
  position: relative;
  min-height: 400px;
}

#pertenecer .wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

#pertenecer .wrapper .data {
  width: 100%;
  padding: 30px 20px 30px 0;
  display: flex;
  align-items: center;
}

#pertenecer .wrapper .data ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

#pertenecer .wrapper .data li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.3em;
}

#pertenecer .wrapper .data li p {
  max-width: 380px;
  color: #333;
}

#pertenecer i {
  color: var(--purpura-1);
  font-size: 3em;
  margin-right: 10px;
  text-align: center;
}

#pertenecer .cta {
  display: flex;
  justify-content: center;
}

#pertenecer .cta a {
  border-radius: 1em;
  padding: 0.3em 1em;
  font-weight: 700;
  font-size: clamp(1.1rem, 3.6vw, 1.2rem);
  background-color: var(--dorado-2);
  color: var(--marino);
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

#pertenecer .cta a:hover {
  background-color: var(--dorado-1);
}

@media screen and (max-width: 580px) {
  #pertenecer .wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  #pertenecer .wrapper .data {
    padding: 30px 20px;
  }

  #pertenecer .wrapper picture {
    height: 250px;
    min-height: auto;
  }

  #pertenecer .wrapper picture img {
    object-position: center 20%;
  }
}

/* REGIONES ======================================= */
#regions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#regions h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
  color: var(--purpura-1);
}

#regions p {
  font-weight: 600;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  line-height: 1.1em;
  margin: 0 0 1em 0;
  text-align: center;
  max-width: 600px;
}

#regions p span {
  color: var(--purpura-1);
}

#regions ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 2em;
}

#regions ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s;
  margin: 10px 10px;
  border-radius: 50%;
}

#regions li a:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

#regions li img {
  border-radius: 50%;
}

/* FUNCIONAMIENTO ============================== */
#funcionamiento {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#funcionamiento h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.2em auto;
}

#funcionamiento h2 span {
  color: var(--purpura-1);
}

#funcionamiento .boxWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}

#funcionamiento .box {
  background-color: #fff;
  border-radius: 20px;
  /* overflow: hidden; */
  position: relative;
}

#funcionamiento .box .wrapper picture {
  display: flex;
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto;
}

#funcionamiento .box .wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
}

#funcionamiento .box .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  padding: 1em;
}

#funcionamiento .box .wrapper h4 {
  font-weight: 800;
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  line-height: 1.3em;
  color: var(--purpura-1);
  margin-bottom: 0.3em;
}

#funcionamiento .box .wrapper p {
  font-weight: 500;
  font-size: clamp(0.8rem, 1.9vw, 0.9rem);
  line-height: 1.3em;
}

#funcionamiento .box .wrapper p:not(:last-child) {
  margin-bottom: 1.6em;
}

#funcionamiento .box .wrapper p span {
  color: var(--purpura-1);
  font-weight: 700;
}

#funcionamiento .box .partnerType {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.3em;
  min-height: 3.5em;
}

#funcionamiento .box.business .partnerType {
  background-color: var(--purpura-1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

#funcionamiento .box h3 {
  font-weight: 800;
  font-size: clamp(1.2rem, 1.9vw, 1.3rem);
  line-height: 1.3em;
  color: var(--purpura-1);
  margin-bottom: 10px;
}

#funcionamiento .box.sales h3 {
  font-weight: 800;
  font-size: clamp(1.2rem, 1.9vw, 1.3rem);
  line-height: 1.3em;
  color: var(--purpura-1);
  margin-top: 30px;
  margin-bottom: 18px;
}

#funcionamiento .box.business h3 {
  color: #fff;
}

#funcionamiento .box.business .partnerType span {
  font-weight: 800;
  font-size: clamp(0.7rem, 0.9vw, 1rem);
  line-height: 1.3em;
  background-color: var(--dorado-1);
  color: #fff;
  padding: 0 0.5em;
  margin: 20px 0 5px 0;
}

#funcionamiento .box .flecha {
  position: absolute;
  top: 50%;
  right: -3em;
  width: 3em;
}

@media screen and (max-width: 800px) {
  #funcionamiento .boxWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #funcionamiento .box .flecha {
    top: auto;
    bottom: -3em;
    right: 50%;
    height: 3em;
    transform: rotate(90deg) translateY(-1.5em);
  }
}

@media screen and (max-width: 420px) {
  #funcionamiento .box .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #funcionamiento .box .wrapper picture {
    width: 120px;
    height: 120px;
  }
}

/* VIDEO SUMATE ================================ */
#videoSumate {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#videoSumate h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}

#videoSumate h2 span {
  color: var(--purpura-1);
}

#videoSumate .videoWrapper {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

#videoSumate .videoWrapper .wrapper {
  flex: 1;
  height: 0;
  position: relative;
  padding-bottom: 55.8%;
  height: 0;
  width: 100%;
}

#videoSumate .videoWrapper .wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
}

#videoSumate .videoWrapper .author {
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  line-height: 1.4em;
  color: #6a67ce;
  font-weight: 700;
  background-color: #fff;
  padding: 2px 10px 0 10px;
}

#videoSumate .videoWrapper .detail {
  font-weight: 600;
  font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  line-height: 1.4em;
  color: #898e95;
  background-color: #fff;
  padding: 0 10px 4px 10px;
}

/* NUESTROS PARTNERS ======================== */
#partnersNetwork .cta {
  display: flex;
  justify-content: center;
}

#partnersNetwork .cta a {
  border-radius: 1em;
  padding: 0.3em 1em;
  font-weight: 700;
  font-size: clamp(1.1rem, 3.6vw, 1.2rem);
  background-color: var(--dorado-2);
  color: var(--marino);
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

#partnersNetwork .cta a:hover {
  background-color: var(--dorado-1);
}

/* VIDEO PARTNERS ========================================================= */
#videoPartners {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#videoPartners h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}

#videoPartners h2 span {
  color: var(--purpura-1);
}

#videoPartners .gridWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*     grid-gap: 10px; */
  grid-row-gap: 30px;
  grid-column-gap: 30px;
}

#videoPartners .videoWrapper {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

#videoPartners .videoWrapper .wrapper {
  flex: 1;
  height: 0;
  position: relative;
  padding-bottom: 55.8%;
  height: 0;
  width: 100%;
}

#videoPartners .videoWrapper .wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
}

#videoPartners .videoWrapper .author {
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  line-height: 1.4em;
  color: #6a67ce;
  font-weight: 600;
  background-color: #fff;
  padding: 2px 10px 0 10px;
}

#videoPartners .videoWrapper .detail {
  font-weight: 600;
  font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  line-height: 1.4em;
  color: #898e95;
  background-color: #fff;
  padding: 0 10px 4px 10px;
}

@media screen and (max-width: 680px) {
  #videoPartners .gridWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* LISTADO DE PARTNERS */
#partnersNetwork {
  padding: 0 0 calc(var(--paddingMedium) * 2) 0;
  background-color: var(--gris-2);
}

#partnersNetwork h2 {
  margin-bottom: 50px;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}

#partnersNetwork h2 span {
  color: var(--purpura-1);
}

#partnersNetwork h3 {
  width: 319px;
  height: 84px;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}

#partnersNetwork h3.platino {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' baseProfile='tiny' version='1.2' viewBox='0 0 554.766 139.926'%3E%3C!-- Generator: Adobe Illustrator 29.7.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 8) --%3E%3Cg%3E%3Cg%3E%3Cellipse cx='31.097' cy='10.816' rx='31.097' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='21.77' cy='35.129' rx='21.77' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='10.606' cy='58.814' rx='10.606' ry='10.816' fill='%230b142d'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M86.658,69.974V.616h43.101v10.823h-30.759v18.519h29.904v10.728h-29.904v29.288h-12.342Z' fill='%230b142d'/%3E%3Cpath d='M145.705.576c4.082,0,7.12,3.133,7.12,7.025,0,3.987-3.038,7.025-7.12,7.025-3.987,0-7.12-3.038-7.12-7.025,0-3.892,3.133-7.025,7.12-7.025ZM139.724,69.974V22.601h11.962v47.373h-11.962Z' fill='%230b142d'/%3E%3Cpath d='M177.127,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M234.845,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M289.43,50.323c.759,7.12,5.316,11.962,13.766,11.962,5.791,0,10.253-2.563,12.531-6.171h11.107c-3.228,8.449-12.342,15-23.639,15-16.139,0-25.538-10.728-25.538-24.873,0-14.335,10.348-24.778,24.968-24.778,14.905,0,24.873,10.348,24.873,24.968v3.893h-38.069ZM289.336,42.443h26.772c-.759-7.31-5.601-12.437-13.291-12.437-7.405,0-12.531,4.747-13.481,12.437Z' fill='%230b142d'/%3E%3Cpath d='M375.06,30.956v-8.354h11.772v46.708c0,12.247-11.107,21.55-25.822,21.55-12.247,0-21.835-5.411-25.443-16.234h11.867c2.279,4.557,6.741,7.025,13.481,7.025,8.164,0,13.955-4.462,13.955-12.342v-9.209c-2.753,4.747-8.829,8.734-16.614,8.734-14.051,0-23.449-10.538-23.449-23.639,0-13.196,9.399-23.734,23.449-23.734,8.165,0,14.525,4.177,16.803,9.494ZM374.87,45.196c0-8.354-6.456-13.861-14.335-13.861-8.449,0-13.861,5.886-13.861,13.861,0,7.879,5.411,13.766,13.861,13.766,7.879,0,14.335-5.506,14.335-13.766Z' fill='%230b142d'/%3E%3Cpath d='M449.678,22.601v47.373h-11.487v-8.165c-2.753,4.842-9.019,9.304-17.278,9.304-14.051,0-23.924-11.202-23.924-24.778,0-13.671,9.873-24.873,23.924-24.873,8.259,0,14.715,4.272,17.088,9.304v-8.165h11.677ZM423.191,61.24c7.879,0,14.525-5.791,14.525-14.905s-6.646-15-14.525-15c-8.544,0-14.24,6.741-14.24,15s5.696,14.905,14.24,14.905Z' fill='%230b142d'/%3E%3Cpath d='M474.738,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M527.33,55.829c.665,4.367,3.513,6.93,8.734,6.93,4.557,0,7.785-2.279,7.785-6.076,0-3.038-1.614-4.652-5.127-5.601l-7.025-1.899c-8.165-2.089-12.721-6.076-12.721-13.671,0-8.639,7.405-14.051,16.803-14.051,10.158,0,15.854,5.886,16.804,14.145h-10.158c-.19-2.943-2.183-5.791-6.361-5.791-3.702,0-6.171,1.993-6.171,5.126,0,2.943,1.709,4.082,5.127,5.032l8.449,2.373c7.595,2.089,11.297,6.456,11.297,13.291,0,9.399-8.924,15.474-18.607,15.474-9.873,0-17.753-4.557-18.987-15.285h10.158Z' fill='%230b142d'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath d='M104.658,123.849c-1.706,1.648-4.308,2.473-7.805,2.473h-5.762v12.513h-3.913v-29.971h9.675c3.382,0,5.956.816,7.719,2.451,1.763,1.634,2.645,3.74,2.645,6.32,0,2.494-.854,4.565-2.559,6.214ZM101.669,121.677c1.032-.945,1.548-2.293,1.548-4.042,0-3.698-2.122-5.547-6.364-5.547h-5.762v11.008h5.762c2.178,0,3.784-.473,4.816-1.419Z'/%3E%3Cpath d='M112.076,120.623c.974-1.819,2.314-3.231,4.021-4.235,1.705-1.003,3.604-1.505,5.697-1.505,2.064,0,3.855.445,5.375,1.333,1.52.889,2.651,2.007,3.397,3.354v-4.301h3.956v23.564h-3.956v-4.386c-.774,1.376-1.928,2.516-3.461,3.418-1.534.903-3.318,1.354-5.354,1.354-2.093,0-3.985-.516-5.676-1.548-1.692-1.032-3.025-2.479-3.999-4.343-.975-1.863-1.462-3.984-1.462-6.364,0-2.408.487-4.521,1.462-6.343ZM129.491,122.365c-.717-1.318-1.685-2.329-2.902-3.032-1.219-.701-2.559-1.053-4.021-1.053s-2.795.344-3.999,1.031c-1.204.688-2.165,1.692-2.881,3.011-.717,1.318-1.075,2.866-1.075,4.644,0,1.807.358,3.376,1.075,4.709.716,1.333,1.677,2.351,2.881,3.053,1.204.703,2.537,1.054,3.999,1.054s2.801-.351,4.021-1.054c1.218-.702,2.186-1.72,2.902-3.053.716-1.333,1.075-2.888,1.075-4.666s-.358-3.325-1.075-4.644Z'/%3E%3Cpath d='M148.001,115.958c1.275-.745,2.831-1.118,4.666-1.118v4.042h-1.032c-4.386,0-6.579,2.38-6.579,7.138v12.814h-3.913v-23.564h3.913v3.827c.688-1.347,1.669-2.393,2.945-3.139Z'/%3E%3Cpath d='M161.955,118.495v13.889c0,1.147.243,1.957.731,2.43.487.473,1.333.71,2.537.71h2.881v3.311h-3.526c-2.179,0-3.813-.501-4.902-1.505-1.09-1.003-1.634-2.651-1.634-4.945v-13.889h-3.053v-3.226h3.053v-5.934h3.913v5.934h6.149v3.226h-6.149Z'/%3E%3Cpath d='M191.28,117.441c1.777,1.734,2.666,4.235,2.666,7.504v13.889h-3.87v-13.33c0-2.351-.588-4.149-1.763-5.396-1.176-1.247-2.781-1.87-4.816-1.87-2.064,0-3.706.645-4.924,1.935-1.219,1.29-1.827,3.168-1.827,5.633v13.029h-3.913v-23.564h3.913v3.354c.774-1.204,1.827-2.136,3.16-2.795s2.802-.989,4.408-.989c2.866,0,5.188.867,6.966,2.602Z'/%3E%3Cpath d='M221.724,128.514h-18.833c.143,2.322.938,4.136,2.386,5.439,1.447,1.305,3.204,1.957,5.268,1.957,1.691,0,3.103-.394,4.235-1.183,1.132-.788,1.928-1.842,2.387-3.16h4.214c-.631,2.265-1.892,4.106-3.784,5.525s-4.243,2.128-7.052,2.128c-2.236,0-4.235-.501-5.999-1.505-1.763-1.003-3.146-2.43-4.149-4.278-1.004-1.849-1.505-3.991-1.505-6.429s.487-4.572,1.462-6.407c.974-1.834,2.343-3.246,4.106-4.235,1.763-.988,3.791-1.483,6.084-1.483,2.236,0,4.214.488,5.934,1.462,1.72.976,3.045,2.315,3.977,4.021.932,1.706,1.397,3.634,1.397,5.784,0,.745-.043,1.533-.129,2.364ZM216.822,121.483c-.66-1.075-1.555-1.892-2.688-2.451-1.132-.559-2.386-.838-3.762-.838-1.978,0-3.663.631-5.053,1.892-1.391,1.262-2.186,3.01-2.386,5.246h14.878c0-1.49-.33-2.773-.989-3.849Z'/%3E%3Cpath d='M233.873,115.958c1.274-.745,2.83-1.118,4.665-1.118v4.042h-1.032c-4.386,0-6.579,2.38-6.579,7.138v12.814h-3.913v-23.564h3.913v3.827c.688-1.347,1.67-2.393,2.946-3.139Z'/%3E%3Cpath d='M246.535,138.297c-1.434-.616-2.565-1.477-3.396-2.58-.832-1.104-1.29-2.372-1.376-3.806h4.042c.113,1.176.666,2.136,1.655,2.881.988.746,2.285,1.118,3.892,1.118,1.49,0,2.666-.329,3.525-.989.86-.659,1.29-1.49,1.29-2.494,0-1.032-.459-1.799-1.376-2.3-.918-.502-2.337-.996-4.257-1.484-1.749-.458-3.175-.924-4.278-1.397-1.104-.473-2.05-1.175-2.838-2.106-.789-.932-1.183-2.157-1.183-3.677,0-1.204.358-2.308,1.075-3.311.716-1.004,1.733-1.799,3.053-2.387,1.318-.587,2.823-.882,4.515-.882,2.608,0,4.716.66,6.321,1.979s2.465,3.125,2.58,5.418h-3.913c-.086-1.232-.58-2.222-1.483-2.968-.903-.745-2.114-1.117-3.634-1.117-1.404,0-2.522.301-3.354.902-.832.603-1.247,1.391-1.247,2.365,0,.774.25,1.412.752,1.913.502.502,1.133.903,1.893,1.204.759.302,1.812.639,3.16,1.011,1.691.459,3.067.91,4.128,1.354,1.061.445,1.971,1.111,2.73,2s1.153,2.05,1.183,3.482c0,1.29-.358,2.451-1.075,3.483s-1.728,1.842-3.031,2.43c-1.305.587-2.803.881-4.493.881-1.807,0-3.426-.309-4.859-.924Z'/%3E%3Cpath d='M294.458,123.849c-1.705,1.648-4.307,2.473-7.804,2.473h-5.763v12.513h-3.913v-29.971h9.676c3.382,0,5.955.816,7.718,2.451,1.764,1.634,2.645,3.74,2.645,6.32,0,2.494-.853,4.565-2.559,6.214ZM291.469,121.677c1.032-.945,1.548-2.293,1.548-4.042,0-3.698-2.121-5.547-6.363-5.547h-5.763v11.008h5.763c2.178,0,3.783-.473,4.815-1.419Z' fill='%237a7a7a'/%3E%3Cpath d='M305.788,107.014v31.82h-3.913v-31.82h3.913Z' fill='%237a7a7a'/%3E%3Cpath d='M312.452,120.623c.975-1.819,2.315-3.231,4.021-4.235,1.706-1.003,3.605-1.505,5.698-1.505,2.063,0,3.854.445,5.375,1.333,1.519.889,2.651,2.007,3.396,3.354v-4.301h3.956v23.564h-3.956v-4.386c-.773,1.376-1.928,2.516-3.461,3.418-1.534.903-3.318,1.354-5.354,1.354-2.093,0-3.985-.516-5.677-1.548s-3.024-2.479-3.999-4.343-1.462-3.984-1.462-6.364c0-2.408.487-4.521,1.462-6.343ZM329.867,122.365c-.717-1.318-1.684-2.329-2.902-3.032-1.219-.701-2.559-1.053-4.021-1.053s-2.795.344-3.999,1.031c-1.204.688-2.164,1.692-2.881,3.011s-1.075,2.866-1.075,4.644c0,1.807.358,3.376,1.075,4.709s1.677,2.351,2.881,3.053c1.204.703,2.537,1.054,3.999,1.054s2.802-.351,4.021-1.054c1.219-.702,2.186-1.72,2.902-3.053s1.075-2.888,1.075-4.666-.358-3.325-1.075-4.644Z' fill='%237a7a7a'/%3E%3Cpath d='M346.294,118.495v13.889c0,1.147.243,1.957.731,2.43.486.473,1.333.71,2.536.71h2.882v3.311h-3.526c-2.179,0-3.812-.501-4.902-1.505-1.09-1.003-1.634-2.651-1.634-4.945v-13.889h-3.053v-3.226h3.053v-5.934h3.913v5.934h6.149v3.226h-6.149Z' fill='%237a7a7a'/%3E%3Cpath d='M357.302,110.669c-.517-.516-.774-1.146-.774-1.892s.258-1.376.774-1.893,1.146-.773,1.892-.773c.716,0,1.325.258,1.827.773.502.517.753,1.147.753,1.893s-.251,1.376-.753,1.892-1.111.774-1.827.774c-.746,0-1.376-.259-1.892-.774ZM361.085,115.27v23.564h-3.913v-23.564h3.913Z' fill='%237a7a7a'/%3E%3Cpath d='M386.196,117.441c1.777,1.734,2.666,4.235,2.666,7.504v13.889h-3.87v-13.33c0-2.351-.588-4.149-1.763-5.396-1.176-1.247-2.781-1.87-4.816-1.87-2.063,0-3.705.645-4.923,1.935-1.219,1.29-1.828,3.168-1.828,5.633v13.029h-3.913v-23.564h3.913v3.354c.774-1.204,1.828-2.136,3.161-2.795s2.802-.989,4.407-.989c2.866,0,5.188.867,6.966,2.602Z' fill='%237a7a7a'/%3E%3Cpath d='M399.549,137.716c-1.792-1.003-3.197-2.43-4.214-4.278-1.019-1.849-1.527-3.991-1.527-6.429,0-2.408.523-4.536,1.57-6.386,1.046-1.849,2.472-3.268,4.278-4.257,1.806-.988,3.827-1.483,6.062-1.483s4.257.495,6.063,1.483c1.806.989,3.231,2.401,4.278,4.235,1.046,1.835,1.569,3.972,1.569,6.407s-.537,4.58-1.612,6.429-2.53,3.275-4.364,4.278c-1.835,1.004-3.87,1.505-6.106,1.505-2.208,0-4.207-.501-5.998-1.505ZM409.503,134.792c1.232-.659,2.229-1.648,2.988-2.967s1.14-2.924,1.14-4.816-.373-3.497-1.118-4.815-1.72-2.301-2.924-2.946c-1.204-.645-2.509-.967-3.913-.967-1.434,0-2.745.322-3.935.967-1.189.646-2.143,1.628-2.859,2.946s-1.075,2.924-1.075,4.815c0,1.921.351,3.541,1.054,4.859.702,1.318,1.641,2.301,2.816,2.945s2.466.968,3.87.968,2.724-.329,3.956-.989Z' fill='%237a7a7a'/%3E%3C/g%3E%3C/svg%3E");
}

#partnersNetwork h3.oro {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' baseProfile='tiny' version='1.2' viewBox='0 0 554.766 139.926'%3E%3C!-- Generator: Adobe Illustrator 29.7.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 8) --%3E%3Cg%3E%3Cg%3E%3Cellipse cx='31.097' cy='10.816' rx='31.097' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='21.77' cy='35.129' rx='21.77' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='10.606' cy='58.814' rx='10.606' ry='10.816' fill='%230b142d'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M86.658,69.974V.616h43.101v10.823h-30.759v18.519h29.904v10.728h-29.904v29.288h-12.342Z' fill='%230b142d'/%3E%3Cpath d='M145.705.576c4.082,0,7.12,3.133,7.12,7.025,0,3.987-3.038,7.025-7.12,7.025-3.987,0-7.12-3.038-7.12-7.025,0-3.892,3.133-7.025,7.12-7.025ZM139.724,69.974V22.601h11.962v47.373h-11.962Z' fill='%230b142d'/%3E%3Cpath d='M177.127,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M234.845,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M289.43,50.323c.759,7.12,5.316,11.962,13.766,11.962,5.791,0,10.253-2.563,12.531-6.171h11.107c-3.228,8.449-12.342,15-23.639,15-16.139,0-25.538-10.728-25.538-24.873,0-14.335,10.348-24.778,24.968-24.778,14.905,0,24.873,10.348,24.873,24.968v3.893h-38.069ZM289.336,42.443h26.772c-.759-7.31-5.601-12.437-13.291-12.437-7.405,0-12.531,4.747-13.481,12.437Z' fill='%230b142d'/%3E%3Cpath d='M375.06,30.956v-8.354h11.772v46.708c0,12.247-11.107,21.55-25.822,21.55-12.247,0-21.835-5.411-25.443-16.234h11.867c2.279,4.557,6.741,7.025,13.481,7.025,8.164,0,13.955-4.462,13.955-12.342v-9.209c-2.753,4.747-8.829,8.734-16.614,8.734-14.051,0-23.449-10.538-23.449-23.639,0-13.196,9.399-23.734,23.449-23.734,8.165,0,14.525,4.177,16.803,9.494ZM374.87,45.196c0-8.354-6.456-13.861-14.335-13.861-8.449,0-13.861,5.886-13.861,13.861,0,7.879,5.411,13.766,13.861,13.766,7.879,0,14.335-5.506,14.335-13.766Z' fill='%230b142d'/%3E%3Cpath d='M449.678,22.601v47.373h-11.487v-8.165c-2.753,4.842-9.019,9.304-17.278,9.304-14.051,0-23.924-11.202-23.924-24.778,0-13.671,9.873-24.873,23.924-24.873,8.259,0,14.715,4.272,17.088,9.304v-8.165h11.677ZM423.191,61.24c7.879,0,14.525-5.791,14.525-14.905s-6.646-15-14.525-15c-8.544,0-14.24,6.741-14.24,15s5.696,14.905,14.24,14.905Z' fill='%230b142d'/%3E%3Cpath d='M474.738,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M527.33,55.829c.665,4.367,3.513,6.93,8.734,6.93,4.557,0,7.785-2.279,7.785-6.076,0-3.038-1.614-4.652-5.127-5.601l-7.025-1.899c-8.165-2.089-12.721-6.076-12.721-13.671,0-8.639,7.405-14.051,16.803-14.051,10.158,0,15.854,5.886,16.804,14.145h-10.158c-.19-2.943-2.183-5.791-6.361-5.791-3.702,0-6.171,1.993-6.171,5.126,0,2.943,1.709,4.082,5.127,5.032l8.449,2.373c7.595,2.089,11.297,6.456,11.297,13.291,0,9.399-8.924,15.474-18.607,15.474-9.873,0-17.753-4.557-18.987-15.285h10.158Z' fill='%230b142d'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath d='M104.658,123.849c-1.706,1.648-4.308,2.473-7.805,2.473h-5.762v12.513h-3.913v-29.971h9.675c3.382,0,5.956.816,7.719,2.451,1.763,1.634,2.645,3.74,2.645,6.32,0,2.494-.854,4.565-2.559,6.214ZM101.669,121.677c1.032-.945,1.548-2.293,1.548-4.042,0-3.698-2.122-5.547-6.364-5.547h-5.762v11.008h5.762c2.178,0,3.784-.473,4.816-1.419Z'/%3E%3Cpath d='M112.076,120.623c.974-1.819,2.314-3.231,4.021-4.235,1.705-1.003,3.604-1.505,5.697-1.505,2.064,0,3.855.445,5.375,1.333,1.52.889,2.651,2.007,3.397,3.354v-4.301h3.956v23.564h-3.956v-4.386c-.774,1.376-1.928,2.516-3.461,3.418-1.534.903-3.318,1.354-5.354,1.354-2.093,0-3.985-.516-5.676-1.548-1.692-1.032-3.025-2.479-3.999-4.343-.975-1.863-1.462-3.984-1.462-6.364,0-2.408.487-4.521,1.462-6.343ZM129.491,122.365c-.717-1.318-1.685-2.329-2.902-3.032-1.219-.701-2.559-1.053-4.021-1.053s-2.795.344-3.999,1.031c-1.204.688-2.165,1.692-2.881,3.011-.717,1.318-1.075,2.866-1.075,4.644,0,1.807.358,3.376,1.075,4.709.716,1.333,1.677,2.351,2.881,3.053,1.204.703,2.537,1.054,3.999,1.054s2.801-.351,4.021-1.054c1.218-.702,2.186-1.72,2.902-3.053.716-1.333,1.075-2.888,1.075-4.666s-.358-3.325-1.075-4.644Z'/%3E%3Cpath d='M148.001,115.958c1.275-.745,2.831-1.118,4.666-1.118v4.042h-1.032c-4.386,0-6.579,2.38-6.579,7.138v12.814h-3.913v-23.564h3.913v3.827c.688-1.347,1.669-2.393,2.945-3.139Z'/%3E%3Cpath d='M161.955,118.495v13.889c0,1.147.243,1.957.731,2.43.487.473,1.333.71,2.537.71h2.881v3.311h-3.526c-2.179,0-3.813-.501-4.902-1.505-1.09-1.003-1.634-2.651-1.634-4.945v-13.889h-3.053v-3.226h3.053v-5.934h3.913v5.934h6.149v3.226h-6.149Z'/%3E%3Cpath d='M191.28,117.441c1.777,1.734,2.666,4.235,2.666,7.504v13.889h-3.87v-13.33c0-2.351-.588-4.149-1.763-5.396-1.176-1.247-2.781-1.87-4.816-1.87-2.064,0-3.706.645-4.924,1.935-1.219,1.29-1.827,3.168-1.827,5.633v13.029h-3.913v-23.564h3.913v3.354c.774-1.204,1.827-2.136,3.16-2.795s2.802-.989,4.408-.989c2.866,0,5.188.867,6.966,2.602Z'/%3E%3Cpath d='M221.724,128.514h-18.833c.143,2.322.938,4.136,2.386,5.439,1.447,1.305,3.204,1.957,5.268,1.957,1.691,0,3.103-.394,4.235-1.183,1.132-.788,1.928-1.842,2.387-3.16h4.214c-.631,2.265-1.892,4.106-3.784,5.525s-4.243,2.128-7.052,2.128c-2.236,0-4.235-.501-5.999-1.505-1.763-1.003-3.146-2.43-4.149-4.278-1.004-1.849-1.505-3.991-1.505-6.429s.487-4.572,1.462-6.407c.974-1.834,2.343-3.246,4.106-4.235,1.763-.988,3.791-1.483,6.084-1.483,2.236,0,4.214.488,5.934,1.462,1.72.976,3.045,2.315,3.977,4.021.932,1.706,1.397,3.634,1.397,5.784,0,.745-.043,1.533-.129,2.364ZM216.822,121.483c-.66-1.075-1.555-1.892-2.688-2.451-1.132-.559-2.386-.838-3.762-.838-1.978,0-3.663.631-5.053,1.892-1.391,1.262-2.186,3.01-2.386,5.246h14.878c0-1.49-.33-2.773-.989-3.849Z'/%3E%3Cpath d='M233.873,115.958c1.274-.745,2.83-1.118,4.665-1.118v4.042h-1.032c-4.386,0-6.579,2.38-6.579,7.138v12.814h-3.913v-23.564h3.913v3.827c.688-1.347,1.67-2.393,2.946-3.139Z'/%3E%3Cpath d='M246.535,138.297c-1.434-.616-2.565-1.477-3.396-2.58-.832-1.104-1.29-2.372-1.376-3.806h4.042c.113,1.176.666,2.136,1.655,2.881.988.746,2.285,1.118,3.892,1.118,1.49,0,2.666-.329,3.525-.989.86-.659,1.29-1.49,1.29-2.494,0-1.032-.459-1.799-1.376-2.3-.918-.502-2.337-.996-4.257-1.484-1.749-.458-3.175-.924-4.278-1.397-1.104-.473-2.05-1.175-2.838-2.106-.789-.932-1.183-2.157-1.183-3.677,0-1.204.358-2.308,1.075-3.311.716-1.004,1.733-1.799,3.053-2.387,1.318-.587,2.823-.882,4.515-.882,2.608,0,4.716.66,6.321,1.979s2.465,3.125,2.58,5.418h-3.913c-.086-1.232-.58-2.222-1.483-2.968-.903-.745-2.114-1.117-3.634-1.117-1.404,0-2.522.301-3.354.902-.832.603-1.247,1.391-1.247,2.365,0,.774.25,1.412.752,1.913.502.502,1.133.903,1.893,1.204.759.302,1.812.639,3.16,1.011,1.691.459,3.067.91,4.128,1.354,1.061.445,1.971,1.111,2.73,2s1.153,2.05,1.183,3.482c0,1.29-.358,2.451-1.075,3.483s-1.728,1.842-3.031,2.43c-1.305.587-2.803.881-4.493.881-1.807,0-3.426-.309-4.859-.924Z'/%3E%3Cpath d='M282.956,137.179c-2.294-1.305-4.106-3.124-5.439-5.461-1.333-2.336-2-4.967-2-7.891s.667-5.554,2-7.891c1.333-2.336,3.146-4.156,5.439-5.461,2.293-1.305,4.83-1.957,7.611-1.957,2.809,0,5.359.652,7.653,1.957,2.293,1.305,4.1,3.117,5.418,5.439s1.979,4.96,1.979,7.912-.66,5.59-1.979,7.912c-1.318,2.321-3.125,4.135-5.418,5.439-2.294,1.305-4.845,1.956-7.653,1.956-2.781,0-5.318-.651-7.611-1.956ZM296.221,134.276c1.677-.975,2.995-2.365,3.956-4.171.96-1.807,1.441-3.898,1.441-6.278,0-2.408-.48-4.508-1.441-6.3-.961-1.791-2.272-3.175-3.935-4.149-1.663-.975-3.555-1.462-5.676-1.462s-4.015.487-5.677,1.462-2.974,2.358-3.935,4.149c-.96,1.792-1.44,3.892-1.44,6.3,0,2.38.48,4.472,1.44,6.278.961,1.806,2.279,3.196,3.956,4.171,1.678.975,3.562,1.462,5.655,1.462s3.978-.487,5.654-1.462Z' fill='%23b7913d'/%3E%3Cpath d='M317.636,115.958c1.274-.745,2.83-1.118,4.665-1.118v4.042h-1.032c-4.386,0-6.579,2.38-6.579,7.138v12.814h-3.913v-23.564h3.913v3.827c.688-1.347,1.67-2.393,2.946-3.139Z' fill='%23b7913d'/%3E%3Cpath d='M331.094,137.716c-1.792-1.003-3.197-2.43-4.214-4.278-1.019-1.849-1.527-3.991-1.527-6.429,0-2.408.523-4.536,1.57-6.386,1.046-1.849,2.472-3.268,4.278-4.257,1.806-.988,3.827-1.483,6.062-1.483s4.257.495,6.063,1.483c1.806.989,3.231,2.401,4.278,4.235,1.046,1.835,1.569,3.972,1.569,6.407s-.537,4.58-1.612,6.429-2.53,3.275-4.364,4.278c-1.835,1.004-3.87,1.505-6.106,1.505-2.208,0-4.207-.501-5.998-1.505ZM341.048,134.792c1.232-.659,2.229-1.648,2.988-2.967s1.14-2.924,1.14-4.816-.373-3.497-1.118-4.815-1.72-2.301-2.924-2.946c-1.204-.645-2.509-.967-3.913-.967-1.434,0-2.745.322-3.935.967-1.189.646-2.143,1.628-2.859,2.946s-1.075,2.924-1.075,4.815c0,1.921.351,3.541,1.054,4.859.702,1.318,1.641,2.301,2.816,2.945s2.466.968,3.87.968,2.724-.329,3.956-.989Z' fill='%23b7913d'/%3E%3C/g%3E%3C/svg%3E");
}

#partnersNetwork h3.plata {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' baseProfile='tiny' version='1.2' viewBox='0 0 554.766 139.926'%3E%3C!-- Generator: Adobe Illustrator 29.7.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 8) --%3E%3Cg%3E%3Cg%3E%3Cellipse cx='31.097' cy='10.816' rx='31.097' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='21.77' cy='35.129' rx='21.77' ry='10.816' fill='%230b142d'/%3E%3Cellipse cx='10.606' cy='58.814' rx='10.606' ry='10.816' fill='%230b142d'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M86.658,69.974V.616h43.101v10.823h-30.759v18.519h29.904v10.728h-29.904v29.288h-12.342Z' fill='%230b142d'/%3E%3Cpath d='M145.705.576c4.082,0,7.12,3.133,7.12,7.025,0,3.987-3.038,7.025-7.12,7.025-3.987,0-7.12-3.038-7.12-7.025,0-3.892,3.133-7.025,7.12-7.025ZM139.724,69.974V22.601h11.962v47.373h-11.962Z' fill='%230b142d'/%3E%3Cpath d='M177.127,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M234.845,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M289.43,50.323c.759,7.12,5.316,11.962,13.766,11.962,5.791,0,10.253-2.563,12.531-6.171h11.107c-3.228,8.449-12.342,15-23.639,15-16.139,0-25.538-10.728-25.538-24.873,0-14.335,10.348-24.778,24.968-24.778,14.905,0,24.873,10.348,24.873,24.968v3.893h-38.069ZM289.336,42.443h26.772c-.759-7.31-5.601-12.437-13.291-12.437-7.405,0-12.531,4.747-13.481,12.437Z' fill='%230b142d'/%3E%3Cpath d='M375.06,30.956v-8.354h11.772v46.708c0,12.247-11.107,21.55-25.822,21.55-12.247,0-21.835-5.411-25.443-16.234h11.867c2.279,4.557,6.741,7.025,13.481,7.025,8.164,0,13.955-4.462,13.955-12.342v-9.209c-2.753,4.747-8.829,8.734-16.614,8.734-14.051,0-23.449-10.538-23.449-23.639,0-13.196,9.399-23.734,23.449-23.734,8.165,0,14.525,4.177,16.803,9.494ZM374.87,45.196c0-8.354-6.456-13.861-14.335-13.861-8.449,0-13.861,5.886-13.861,13.861,0,7.879,5.411,13.766,13.861,13.766,7.879,0,14.335-5.506,14.335-13.766Z' fill='%230b142d'/%3E%3Cpath d='M449.678,22.601v47.373h-11.487v-8.165c-2.753,4.842-9.019,9.304-17.278,9.304-14.051,0-23.924-11.202-23.924-24.778,0-13.671,9.873-24.873,23.924-24.873,8.259,0,14.715,4.272,17.088,9.304v-8.165h11.677ZM423.191,61.24c7.879,0,14.525-5.791,14.525-14.905s-6.646-15-14.525-15c-8.544,0-14.24,6.741-14.24,15s5.696,14.905,14.24,14.905Z' fill='%230b142d'/%3E%3Cpath d='M474.738,69.974h-11.962V22.601h11.582v8.07c2.184-5.506,8.354-9.209,15.759-9.209,11.392,0,17.753,8.354,17.753,20.126v28.386h-11.962v-26.392c0-6.74-3.038-11.677-10.158-11.677-6.551,0-11.013,4.747-11.013,11.582v26.487Z' fill='%230b142d'/%3E%3Cpath d='M527.33,55.829c.665,4.367,3.513,6.93,8.734,6.93,4.557,0,7.785-2.279,7.785-6.076,0-3.038-1.614-4.652-5.127-5.601l-7.025-1.899c-8.165-2.089-12.721-6.076-12.721-13.671,0-8.639,7.405-14.051,16.803-14.051,10.158,0,15.854,5.886,16.804,14.145h-10.158c-.19-2.943-2.183-5.791-6.361-5.791-3.702,0-6.171,1.993-6.171,5.126,0,2.943,1.709,4.082,5.127,5.032l8.449,2.373c7.595,2.089,11.297,6.456,11.297,13.291,0,9.399-8.924,15.474-18.607,15.474-9.873,0-17.753-4.557-18.987-15.285h10.158Z' fill='%230b142d'/%3E%3C/g%3E%3C/g%3E%3Ctext transform='translate(83.868 138.834)' font-family='Poppins-Regular, Poppins' font-size='43'%3E%3Ctspan x='0' y='0'%3EPartners %3C/tspan%3E%3Ctspan x='189.8' y='0' fill='%23999'%3EPlata%3C/tspan%3E%3C/text%3E%3C/svg%3E");
}

#partnersNetwork ul.partnersList {
  color: #000;
  font-size: 21px;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  max-width: 100%;
  width: 100%;
}

#partnersNetwork ul.partnersList {
  margin-bottom: calc(var(--paddingMedium) * 2);
}

#partnersNetwork ul.partnersList.plata {
  margin-bottom: calc(var(--paddingMedium) * 0.6);
}

#partnersNetwork ul.partnersList li.company {
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 0px;
  background: #fff;
}

#partnersNetwork ul.partnersList li.company ul {
  width: 100%;
  min-width: 0px;
}

#partnersNetwork ul.partnersList li.company.small {
  height: 220px;
}

#partnersNetwork ul.partnersList li.company a {
  color: #49505b;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}

#partnersNetwork ul.partnersList li.company a:hover {
  text-decoration: underline;
}

#partnersNetwork ul li h1 {
  font-size: 34px;
  line-height: 1.2em;
  font-weight: 300;
  margin-bottom: 30px;
  height: 125px;
  padding-top: 39px;
  text-align: center;
  box-sizing: border-box;
  color: #273347;
  background-position: center !important;
}

#partnersNetwork ul.partnersList li li {
  padding-left: 28px;
  margin-bottom: 7px;
  position: relative;
  display: flex;
  max-width: 100%;
}

#partnersNetwork ul.partnersList li.url:before {
  content: "";
  top: 1px;
  left: 2px;
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(contact.svg);
  background-size: calc(22px * 5) 22px !important;
  background-position: 0 0 !important;
  background-repeat: no-repeat;
}

#partnersNetwork ul.partnersList li.location:before {
  content: "";
  top: 1px;
  left: 2px;
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(contact.svg);
  background-size: calc(22px * 5) 22px !important;
  background-position: calc(-22px * 1) 0 !important;
  background-repeat: no-repeat;
}

#partnersNetwork ul.partnersList li.location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 40px;
}

#partnersNetwork ul.partnersList li.location span {
  display: flex;
  background-color: #eff0f1;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  color: #676d76;
}

#partnersNetwork ul.partnersList li.phone:before {
  content: "";
  top: 0px;
  left: 2px;
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(contact.svg);
  background-size: calc(22px * 5) 22px !important;
  background-position: calc(-22px * 2) 0 !important;
  background-repeat: no-repeat;
}

#partnersNetwork ul.partnersList li.mail:before {
  content: "";
  top: 1px;
  left: 2px;
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(contact.svg);
  background-size: calc(22px * 5) 22px !important;
  background-position: calc(-22px * 3) 0 !important;
  background-repeat: no-repeat;
}

#partnersNetwork ul.partnersList li.contactName:before {
  content: "";
  top: 0px;
  left: 2px;
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(contact.svg);
  background-size: calc(22px * 5) 22px !important;
  background-position: calc(-22px * 4) 0 !important;
  background-repeat: no-repeat;
}

#partnersNetwork ul li h1.activa {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/activa.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.astrasud {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/astrasud.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.affluence {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/affluence.png) no-repeat 0 center;
  background-size: auto 120px;
}

#partnersNetwork ul li h1.ebg {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/ebg.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.jl {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/jl.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.matera {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/lamatera.png) no-repeat 0 center;
  background-size: 210px auto;
}

#partnersNetwork ul li h1.morganatec {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/morgana.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.agw {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/agw.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.snoop {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/snoop.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.quiroga {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-size: contain;
  background: url(logos/quiroga.png) no-repeat 0 32px;
  background-size: 250px auto;
}

#partnersNetwork ul li h1.spro {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/spro.svg) no-repeat 0 22px;
  background-size: 200px 80px;
}

#partnersNetwork ul li h1.synthesis {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/synthesis.png) no-repeat 0 48px;
}

#partnersNetwork ul li h1.planeta {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/planeta.png) no-repeat 0 47px;
}

#partnersNetwork ul li h1.fisterra {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/fisterra.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.losGalgos {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/los_galgos.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.grupoHasar {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/grupo_hasar.png) no-repeat 0 center;
  background-size: 270px auto;
}

#partnersNetwork ul li h1.lasTaperitas {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/las_taperitas.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.connecta {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/connecta.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.teccnar {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/teccnar.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.Tranquera {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/la_tranquera.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.agrogestion {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/agrogestion.png) no-repeat 0 center;
  background-size: 135px auto;
}

#partnersNetwork ul li h1.laTranquera {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/la_tranquera.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.bakertilly {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/bakertilly.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.ideale_group {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/ideale_group.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.arasEsteban {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/aras_esteban.png) no-repeat 0 center;
}

#partnersNetwork ul li h1.loop {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/loop.png) no-repeat 0 35px;
  background-size: contain;
  background-size: 250px auto;
}

#partnersNetwork ul li h1.grexus {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/grexus.png) no-repeat 0 62px;
}

#partnersNetwork ul li h1.bombieri {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/bombieri.png) no-repeat 0 55px;
}

#partnersNetwork ul li h1.tecsur {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/grupo_tecsur.png) no-repeat 0 35px;
}

#partnersNetwork ul li h1.bedford {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/russell_bedford.png) no-repeat 0 45px;
}

#partnersNetwork ul li h1.masin {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/milena_masin.png) no-repeat 0 45px;
}

#partnersNetwork ul li h1.contec {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/contec.png) no-repeat 0 10px;
  background-size: auto 110px;
}

#partnersNetwork ul li h1.tercerizate {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/tercerizate.png) no-repeat 0 45px;
}

#partnersNetwork ul li h1.wake {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/wake.png) no-repeat 0 52px;
  background-size: 186px auto;
}

#partnersNetwork ul li h1.midas {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/midas.png) no-repeat 0 52px;
  background-size: 195px auto;
}

#partnersNetwork ul li h1.hera {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/hera.png) no-repeat 0 32px;
  background-size: 170px auto;
}

#partnersNetwork ul li h1.crowe {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/crowe.png) no-repeat 0 45px;
  background-size: 220px auto;
}

#partnersNetwork ul li h1.mab {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/mab.png) no-repeat 0 58px;
  background-size: 250px auto;
}

#partnersNetwork ul li h1.auren {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/auren.png) no-repeat 0 40px;
  background-size: 180px auto;
}

#partnersNetwork ul li h1.startIt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(logos/startit.png) no-repeat 0 35px;
  background-size: 230px auto;
}

#partnersNetwork .partnersExterior {
  max-width: 980px;
  margin: 0 auto 120px auto;
  text-align: center;
  display: none;
}

#partnersNetwork .partnersExterior p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  display: block;
  margin-bottom: 15px;
  margin-top: 60px;
}

#partnersNetwork .partnersExterior a {
  margin-top: 21px;
  color: #6a67ce;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-right: 20px;
  padding: 4px 10px 6px 10px;
  background: rgb(255, 210, 0);
  border: 1px solid #ffffff;
  color: #6a67ce;
}

#partnersNetwork .partnersExterior a:hover {
  background-color: #ffb900;
}

@media screen and (max-width: 1120px) {
  #partnersNetwork .pageWidth {
    padding: 0 10px;
    max-width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  #partnersNetwork ul.partnersList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px) {
  #partnersNetwork ul.partnersList {
    grid-template-columns: repeat(1, 1fr);
  }
}

#floatingContact {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.2s;
}

#floatingContact.hidden {
  bottom: -70px;
}

#floatingContact .pageWidth {
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 0px;
  max-width: 1520px;
}

#floatingContact .contact {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #19d841;
  background-repeat: no-repeat;
  background-image: url(icon_whatsapp.svg);
  background-size: 30px 30px;
  background-position: 9px center;
  overflow: hidden;
  transition: all 0.2s;
  padding-left: 48px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  position: absolute;
  right: 10px;
  top: -59px;
  color: #fff;
  font-family: "GothamRndMedium", sans-serif;
  font-weight: 500;
}

#floatingContact .contact:hover {
  width: 160px;
}

#floatingContact .contact:active {
  transition: all 0s;
  background-color: #0c9c2b;
}

@media screen and (max-width: 1140px) {
  .pageWidth {
    max-width: 100%;
    padding: 0 20px !important;
  }
}
