@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Arimo:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* Estilos SUMA / Conexión Poxi-ran transparente */
/* PopUP */

/* Optional: Close button styling */
  /* Modal Content Styling */
  .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    animation: popupAppear 0.4s ease-out;
  }
  .modal-body {
    padding: 0;
  }
  .modal-dialog {
    max-width: 800px;
  }

  @media (max-width: 1400px) {
  .modal-dialog {
    max-width: 600px;
  }}

  img.responsive-popup-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto;
}

  /* Floating Close Button */

.popup-close-btn {
  position: absolute;
  top: -15px;      /* 20px above the modal */
  right: 15px;        /* aligned with modal's right edge */
  z-index: 1060;
  background-color: #fff;
  color: #000000;
  border-radius: 50%;
  padding: 0.6rem 0.8rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.2s;
}
.popup-close-btn:hover {
  background-color: #1ea6e0;
}

  /* Animations */
  @keyframes imgFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }
  @keyframes popupAppear {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
  }

  /* Mobile-specific refinements */
@media (max-width: 576px) {

  .modal-dialog {
    max-width: 100%;   /* nearly full width on mobile */
    margin: 0;
  }

  .modal-content {
    border-radius: 0.5rem;
    animation: popupAppear 0.3s ease-out;
  }

  .modal-body {
    padding: 0.25rem; /* smaller padding on mobile */
  }

  img.responsive-popup-img {
    border-radius: 0.4rem;
    max-height: 70vh;     /* avoid overflowing small screens */
    object-fit: contain;
    max-width: 90%;
  }

  .popup-close-btn {
    top: -12px;           /* closer to the modal */
    right: 0px;
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  }

  .popup-close-btn:hover {
    background-color: #1ea6e0;
    color: #fff;
  }
}


/* Fin PopUP */

/* TOP BAR */

.top-bar {
 position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #00a0da;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 100;
  transition: transform 0.3s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
}


.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-logo {
  height: 25px;
  width: auto;
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffec00;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Barlow';
  font-size: 1.2rem;
}

.top-bar-cta:hover {
  text-decoration: underline;
  color: #fff;
}


.top-bar-text{
  color: #fff;
   font-weight: 600;
   font-size: 1.2rem; 
  font-family: 'Barlow';
}

/* -------- Mobile refinements -------- */
@media (max-width: 900px) {
  .top-bar {
    height: 70px !important;          /* slightly taller for touch area */
    padding: 10px 12px;
  }

  .top-bar-logo {
    height: 22px;
  }

  .top-bar-text {
    font-size: 0.9rem;     /* smaller so it fits */
  }

  .top-bar-cta {
    font-size: 1rem;
    gap: 4px;
    padding: 6px 10px;     /* bigger touch target */
    border-radius: 20px;   /* button-like look on mobile */
  }
  .top-bar-container{
    flex-direction: column;
  }
}

  @media (max-width: 400px) {
    .top-bar-logo {
        height: 18px !important; /* smaller so it fits */
    }
    .top-bar-cta {
    font-size: 0.8rem;
  }
}

  @media (max-width: 400px) {
  .top-bar-text{
    font-size: 0.7rem;     /* smaller so it fits */
  }
  }




/* Fin TOPBAR */

/* Sección home transparente */
    .transparente-section {
    background: url('http://poxiran.com.ar/suma-dev/poxiran-dev/images/fondo-textura-transparente.jpg') center/cover no-repeat;
    position: relative;
    color: white;
}

.poxi-text {
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1.8rem;
    margin-bottom: -20px;  
}

.transparente-title {
    font-family: 'Barlow';
    font-size: 8rem; /* adjust for responsiveness */
    font-weight: 800;
        color: rgba(242, 249, 255, 0.33);
        -webkit-text-stroke: 1.5px white;
        letter-spacing: 5px;
}

.nuevo-badge {
    font-size: 40px;
    font-family: 'Montserrat';
    top: 10px;
    right: 20px;
    background-color: #ffeb3b;
    color: #18468b;
    font-weight: 700;
    padding: 5px 15px;
    position: absolute;
    transform: rotate(15deg);
}

.estuche-img {
    max-width: 800px;
    position: relative;
    margin-left: 3rem;
}

@media (max-width: 900px){
.estuche-img {
    max-width: 100%;
    position: relative;
    margin-left: 0rem;
}}

.cta-btn {
    font-family: 'Montserrat';
    background-color: #ffeb3b;
    color: #18468b;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 30px;
    display: inline-block;
}

section.transparente-section.position-relative {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.column-container-poxiran-transparente{
    margin-top: -50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1290px) {
  .column-container-poxiran-transparente {
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
}



@media (max-width: 1290px) {
  .transparente-title {
    font-size: 6rem;        /* scale down for phones */
    letter-spacing: 2px;
    -webkit-text-stroke: 1px white;
    text-align: center;
    line-height: 1.2;
  }

  .poxi-text {
    font-size: 1.2rem;
    margin-bottom: -10px;
    text-align: center;
  }

  .nuevo-badge {
    font-size: 18px;
    padding: 3px 10px;
    top: -15px;
    right: 10px;
    transform: rotate(10deg);
  }

  .estuche-img {
    max-width: 85%;
    margin-left: 0;
    margin-top: 1.5rem;
  }

  section.transparente-section.position-relative {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .column-container-poxiran-transparente {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cta-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

@media (max-width: 800px) {
  .transparente-title {
    font-size: 3rem;        /* scale down for phones */
    letter-spacing: 2px;
    -webkit-text-stroke: 1px white;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 400px) {
  .transparente-title {
    font-size: 2rem;        /* scale down for phones */
    letter-spacing: 2px;
    -webkit-text-stroke: 1px white;
    text-align: center;
    line-height: 1.2;
  }
}

/* Presentaciones */

.bgColorDarkBlue{
  background-color: #1d4290;
}

/* FAQ */

.container-fluid .faq-container .accordion-item-poxiran-transparente {
  background-color: #1d4290;
  color: #fff;
  border: none;
  border-bottom: 8px solid #ffe500;
}



/* Fin suma */


.usos-card img,
.apli .apliContainer img,
.transition250,
.contactBox .formBox .boxMail .sobre,
#header .btn_contacto .sobre,
#header .hamb {
  transition: all 250ms ease-in-out;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semiBold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

body {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
}

.fontArchivo {
  font-family: "Archivo Black", sans-serif;
}

.fontArimo {
  font-family: "Arimo", sans-serif;
}

.colorMain {
  color: #4c8c2b;
}

.colorSecondary {
  color: #ffe500;
}

.bgColorMain {
  background-color: #4c8c2b;
}

.bgColorSecondary {
  background-color: #ffe500;
}

.bgColorTertiary {
  background-color: #2a2a2a;
}

/*Header*/
#header {
  position: fixed;
  top: 40px; /* below top-bar */
  left: 0;
  right: 0;
  height: 160px;
  background-color: rgba(76, 140, 43, 0.9);
  z-index: 100;
  transition: top 0.3s ease;
}

@media all and (max-width: 576px) {
  #header {
    top: 70px !important;
    height: 100px;
    background-color: rgb(76, 140, 43);
  }
}

@media all and (max-width: 900px) {
  #header {
    top: 70px !important;
    height: 100px;
    background-color: rgb(76, 140, 43);
  }
}

#header.fixed {
  top:0 !important;
  height: 120px !important;
  background-color: rgba(76, 140, 43, 0.9);
}

@media all and (max-width: 576px) {
  #header.fixed {
    background-color: rgb(76, 140, 43);
  }
}

#header .logo {
  max-width: 260px;
}

@media all and (max-width: 576px) {
  #header .logo {
    max-width: 190px;
  }
}

#header .logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#header .menu .btn-check:active+.btn-primary:focus,
#header .menu .btn-check:checked+.btn-primary:focus,
#header .menu .btn-primary.active:focus,
#header .menu .btn-primary:active:focus,
#header .menu .show>.btn-primary.dropdown-toggle:focus,
#header .menu .btn-primary {
  background-color: transparent;
  border-color: transparent;
}

#header .menu .btn-check:active+.btn-primary:focus.transparent,
#header .menu .btn-check:checked+.btn-primary:focus.transparent,
#header .menu .btn-primary.active:focus.transparent,
#header .menu .btn-primary:active:focus.transparent,
#header .menu .show>.btn-primary.dropdown-toggle:focus.transparent,
#header .menu .btn-primary.transparent {
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
}

#header .hamb {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 326 219' style='enable-background:new 0 0 326 219;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ffe500;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M263.9,44.2H62.1c-8.6,0-15.6-7-15.6-15.6v0c0-8.6,7-15.6,15.6-15.6h201.8c8.6,0,15.6,7,15.6,15.6v0 C279.5,37.2,272.5,44.2,263.9,44.2z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M263.9,124.1H62.1c-8.6,0-15.6-7-15.6-15.6v0c0-8.6,7-15.6,15.6-15.6h201.8c8.6,0,15.6,7,15.6,15.6v0 C279.5,117.1,272.5,124.1,263.9,124.1z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st0' d='M263.9,204H62.1c-8.6,0-15.6-7-15.6-15.6v0c0-8.6,7-15.6,15.6-15.6h201.8c8.6,0,15.6,7,15.6,15.6v0 C279.5,197,272.5,204,263.9,204z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 60px;
  height: 50px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media all and (max-width: 576px) {
  #header .hamb {
    width: 45px;
    height: 50px;
  }
}

#header .hamb:hover {
  opacity: 0.8;
}

#header .btn_contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#header .btn_contacto .sobre {
  /*do not use hash*/
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 196 150' style='enable-background:new 0 0 196 150;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ffe500;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M172,7H99H26C26,7,8,6,8,21c0,11,0,8.3,0,11c0,8,82,64,82,64s3,2,9,2s9-2,9-2s82-56,82-64c0-2.8,0,0,0-11 C190,6,172,7,172,7z'/%3E%3Cpath class='st0' d='M187,51c-11,8-60,45-67,50c-10,8-21,7-21,7s-11,1-21-7c-7-5-56-42-67-50c-1.1-0.8-3,0-3,2c0,9,0,57,0,65 c0,2.8,0,0,0,11c0,15,18,14,18,14h73h73c0,0,18,1,18-14c0-11,0-8.3,0-11c0-8,0-56,0-65C190,51,188.1,50.2,187,51z'/%3E%3C/g%3E%3C/svg%3E");
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

@media all and (max-width: 576px) {
  #header .btn_contacto .sobre {
    width: 25px;
    height: 25px;
  }
}

#header .btn_contacto .sobre:hover {
  opacity: 0.8;
}

/*offcanvas*/
.poxi-canvas {
  background-color: #3d3d3d;
}

.poxi-canvas.offcanvas-end {
  border-left: 0;
}

@media all and (max-width: 576px) {
  .poxi-canvas.offcanvas-end {
    width: 100%;
  }
}

.poxi-canvas .btn-close:focus {
  box-shadow: none;
}

.poxi-canvas .menu {
  list-style: none;
}

.poxi-canvas .menu li {
  font-size: 18px;
  margin-bottom: 0.6em;
}

.poxi-canvas .menu a {
  color: #fff;
  text-decoration: none;
}

.poxi-canvas .menu a:hover {
  color: #ffe500;
}

.poxi-canvas .menu a.active {
  color: #ffe500;
}

.poxi-canvas .logo {
  max-width: 130px;
  padding-bottom: 15px;
}

.poxi-canvas .logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/*Carousell*/
@media all and (max-width: 576px) {
  #mainCarousel {
    padding-top: 100px;
  }
}

#mainCarousel .carousel-indicators {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
  height: 100%;
  width: 50px;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 576px) {
  #mainCarousel .carousel-indicators {
    padding-top: 50px;
  }
}

#mainCarousel .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background-color: #4f4b4b;
  border-top: 0;
  border-bottom: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  margin: 5px;
}

@media all and (max-width: 576px) {
  #mainCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 3px;
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.1, 1.1);
  }
}

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
  z-index: 2;
}

#mainCarousel .carousel-inner .carousel-item {
  /*height: 65vh;
   min-height: 100vh;*/
}

@media all and (max-width: 768px) {
  #mainCarousel .carousel-inner .carousel-item {
    /*height: 50vh;
    max-height: 100vw;
    min-height: auto;*/
  }
}

.carousel-zoom .carousel-item>img {
  width: 100%;
  animation: zoom 10s forwards;
}

/*Home*/
.brandDescription h1 {
  font-size: 1.5rem;
}

@media all and (max-width: 576px) {
  .brandDescription h1 {
    font-size: 1.2rem;
  }
}

.homeButtons {
  padding-bottom: 100px;
  overflow: hidden;
}

@media all and (max-width: 576px) {
  .homeButtons {
    padding-bottom: 60px;
  }
}

.homeButtons .itemBox {
  font-size: 1.3rem;
  background-color: #f2f2ef;
  color: #2a2a2a;
}

.homeButtons .itemBox p {
  font-size: 1rem;
}

.homeButtons .item a:hover {
  transform: scale(1.05);
}

.homeDeco img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.symbol {
  font-size: 0.6em;
  vertical-align: top;
}

.contactBox {
  background-color: #e0e0e0;
}

.contactBox .formBox {
  color: #565656;
  /*cambiar esto*/
}

.contactBox .formBox h1 {
  color: #2a2a2a;
  font-size: 1.5rem;
}

@media all and (max-width: 576px) {
  .contactBox .formBox h1 {
    font-size: 1.2rem;
  }
}

.contactBox .formBox .inps,
.contactBox .formBox .areas {
  display: block;
  width: 100%;
  background-color: #fff;
  color: #b0b0b0;
  opacity: 1;
  border: 2px solid #fff;
  border-radius: 0;
  height: 4rem;
  line-height: 4rem;
  padding: 0 1em;
  color: #000;
  font-size: 1rem;
}

.contactBox .formBox .inps.error,
.contactBox .formBox .areas.error {
  border: 2px solid red;
}

.contactBox .formBox .inps:focus,
.contactBox .formBox .inps:focus-visible,
.contactBox .formBox .areas:focus,
.contactBox .formBox .areas:focus-visible {
  box-shadow: none;
  border: 2px solid #000;
}

.contactBox .formBox .inps::-webkit-input-placeholder,
.contactBox .formBox .areas::-webkit-input-placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.contactBox .formBox .inps::-moz-placeholder,
.contactBox .formBox .areas::-moz-placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.contactBox .formBox .inps:-ms-input-placeholder,
.contactBox .formBox .areas:-ms-input-placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.contactBox .formBox .inps:-moz-placeholder,
.contactBox .formBox .areas:-moz-placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.contactBox .formBox .areas {
  height: 12rem;
  line-height: 3rem;
  padding: 1rem;
  resize: none;
}

.contactBox .formBox .check {
  color: #000;
  font-size: 1rem;
}

.contactBox .formBox .check .pointer {
  cursor: pointer;
}

.contactBox .formBox .check .box {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: #fff;
  margin-right: 20px;
}

.contactBox .formBox .check .box.active::before {
  content: "";
  width: 2px;
  height: 27px;
  transform: rotate(45deg);
  background-color: #000;
  display: block;
  margin-left: 14px;
  margin-top: 2px;
  border-radius: 5px;
}

.contactBox .formBox .check .box.active::after {
  content: "";
  width: 2px;
  height: 26px;
  transform: rotate(-45deg);
  background-color: #000;
  display: block;
  margin-left: 14px;
  margin-top: -27px;
  border-radius: 5px;
}

.contactBox .formBox .check p {
  color: #2a2a2a;
  margin-bottom: 0;
}

.contactBox .formBox .btnSend {
  color: #4a4a4a;
  font-size: 1.2rem;
  padding: 0.75em 1em;
  background-color: #999999;
}

@media all and (max-width: 576px) {
  .contactBox .formBox .btnSend {
    width: 100%;
  }
}

.contactBox .formBox .boxMail a {
  font-size: 1.2rem;
  color: #2a2a2a;
  text-decoration: none;
}

.contactBox .formBox .boxMail .sobre {
  /*do not use hash*/
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 196 150' style='enable-background:new 0 0 196 150;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%232a2a2a;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M172,7H99H26C26,7,8,6,8,21c0,11,0,8.3,0,11c0,8,82,64,82,64s3,2,9,2s9-2,9-2s82-56,82-64c0-2.8,0,0,0-11 C190,6,172,7,172,7z'/%3E%3Cpath class='st0' d='M187,51c-11,8-60,45-67,50c-10,8-21,7-21,7s-11,1-21-7c-7-5-56-42-67-50c-1.1-0.8-3,0-3,2c0,9,0,57,0,65 c0,2.8,0,0,0,11c0,15,18,14,18,14h73h73c0,0,18,1,18-14c0-11,0-8.3,0-11c0-8,0-56,0-65C190,51,188.1,50.2,187,51z'/%3E%3C/g%3E%3C/svg%3E");
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}

@media all and (max-width: 576px) {
  .contactBox .formBox .boxMail .sobre {
    width: 25px;
    height: 25px;
  }
}

.contactBox .yellowBox {
  background-color: #ffe500;
}

.contactBox .yellowBox .contacto {
  position: relative;
  font-size: 1.2rem;
}

.contactBox .yellowBox .contacto .akapol {
  font-size: 1.5rem;
}

.contactBox .yellowBox .contacto img {
  margin-left: -9px;
}

.icon-redes-header img {
  width: 30px;
  height: 30px;
}

.icon-redes-header {
  position: static;
  margin-top: 50px;
  margin-right: 10px;
  float: right;
  filter: contrast(0%) brightness(10000%);
  transition: all 200ms ease;
  text-align: right;
}

.display-logo-poxiran {
  width: 100%;
}

/*Footer*/
#footer {
  padding-top: 5rem;
  color: #fff;
}

#footer a {
  color: #fff;
  text-decoration: none;
}

#footer .logo img {
  display: block;
  margin: auto;
  max-width: 400px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

@media all and (max-width: 576px) {
  #footer .logo img {
    width: 85%;
  }
}

#footer .brands h2 {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

#footer .brands h3 {
  font-size: 1.2rem;
}

#footer .brands ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 576px) {
  #footer .brands li {
    width: 50%;
  }
}

#footer .brands a {
  font-size: 1rem;
}

#footer .akapol {
  font-size: 0.9rem;
}

@media all and (max-width: 576px) {
  #footer .akapol {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }
}

#footer .akapol p {
  line-height: 1.2em;
  margin-bottom: 0;
}

#footer .uniplace {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  padding-bottom: 3px;
  padding-right: 5px;
  text-align: right;
}

@media all and (max-width: 768px) {
  #footer .uniplace {
    text-align: center;
    padding-bottom: 10px;
  }
}

#footer .uniplace a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

#footer .uniplace a:hover {
  color: rgb(255, 255, 255);
}

/*tools*/
.mainContentSecions {
  padding-top: 200px;
}

@media all and (max-width: 576px) {
  .mainContentSecions {
    padding-top: 100px;
  }
}

/*GENERALS*/
.pestana-header {
  height: 150px;
  color: #fff;
  line-height: 1;
}

.pestana-header h1 {
  font-size: 2rem;
}

.pestana-header ol {
  text-transform: uppercase;
  font-size: 1rem;
}

.pestana-header ol a {
  text-decoration: none;
  color: #fff;
}

.pestana-header ol .breadcrumb-item::before,
.pestana-header ol .breadcrumb-item.active {
  color: #4c8c2b;
}

.checklist {
  margin: 0;
}

.checklist li.check {
  font-size: 1.25rem;
  color: #fff;
}

@media all and (max-width: 576px) {
  .checklist li.check {
    font-size: 1rem;
  }
}

.checklist li.check::marker {
  content: "✔ ";
  color: #ffe500;
  font-size: 1.25rem;
}

/*TODO ACERCA DE POXIRAN*/
.about-container {
  color: #fff;
  padding: 3rem 4rem;
  /*margin: 0 1rem;*/
  line-height: 2;
}

@media all and (max-width: 768px) {
  .about-container {
    padding: 1.5rem 1rem;
  }
}

.about-container .about-box {
  margin: 4rem 0;
}

@media all and (max-width: 768px) {

  .about-container .about-box ul,
  .about-container .about-box ol {
    padding-left: 1rem;
  }
}

.about-container .about-box li {
  list-style-position: inside;
  font-size: 1rem;
}

.about-container .about-box li::marker {
  font-size: 1rem;
}

.about-container .about-box p {
  font-size: 1rem;
}

/*PREGUNTAS FRECUENTES - FAQ*/
.hero-faq {
  height: 300px;
  background-image: url("../images/hero-faq.jpg");
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 768px) {
  .hero-faq {
    height: 180px;
  }
}

.hero-faq h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  padding: 0 20px;
  color: #fff;
  text-shadow: 1.5px 1.5px 1.5px #000;
}

.container-fluid .faq-container .accordion-item {
  background-color: #2a2a2a;
  color: #fff;
  border: none;
  border-bottom: 8px solid #3d3d3d;
}

.container-fluid .faq-container .accordion-header {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 1.95em 0 2.1em;
  letter-spacing: -0.5px;
  line-height: 1.8;
}

@media all and (max-width: 768px) {
  .container-fluid .faq-container .accordion-header {
    font-size: 1rem;
  }
}

.container-fluid .faq-container .accordion-header p {
  margin-top: 0;
  padding-right: 4rem;
}

.container-fluid .faq-container .accordion-body {
  padding: 0.15em 2em 2em;
  min-height: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

@media all and (max-width: 768px) {
  .container-fluid .faq-container .accordion-body {
    font-size: 1rem;
    padding: 0.5em 0.5em;
  }
}

.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button:focus {
  width: 60px;
  height: 60px;
  background-color: #ffe500;
  color: #2a2a2a;
  outline: none;
  box-shadow: none;
}

@media all and (max-width: 576px) {

  .accordion-button,
  .accordion-button:not(.collapsed),
  .accordion-button:focus {
    justify-content: center;
    width: 50px;
    height: 50px;
  }
}

.btn-faq {
  display: inline-block;
  height: auto;
  font-size: 18px;
  background-color: #ffe500;
  padding: 1.4em 2.2em;
}

.btn-faq a {
  text-decoration: none;
  color: #2a2a2a;
}

.btn-faq a:hover {
  color: #4c8c2b;
}

/*QUE MATERIALES PUEDO PEGAR  (EX APLICACIONES)*/
@keyframes translate {
  from {
    transform: translateY(100vh);
  }

  to {
    transform: scale(0px);
  }
}

.apli .apliContainer {
  margin: 1rem 0;
  overflow: hidden;
  animation: translate 1.25s ease-in-out;
}

.apli .apliContainer img {
  display: block;
}

.apli .apliContainer img:hover {
  width: auto;
  transform: scale(1.1);
}

/*COMO SE USA*/
.usos-video .container-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.usos-video .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.usos-card {
  width: 350px;
  overflow: hidden;
}

@media all and (max-width: 576px) {
  .usos-card {
    width: 100%;
    margin: 1rem 0;
  }
}

.usos-card img:hover {
  transform: scale(1.1);
}

.usos-card .card-body {
  position: relative;
  padding: 0 1rem;
  min-height: 250px;
  background-color: #f2f2f2;
  z-index: 2;
}

.usos-card .card-body h4 {
  font-size: 6em;
  font-weight: bold;
  color: rgba(204, 204, 204, 0.8);
}

.usos-card .card-body p {
  color: #565656;
}

/*PRESENTACIONES*/
.prod-container {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
}

.prod-container ul li {
  line-height: 1;
}

.btnsPoxiStore {
  max-width: 200px;
  height: 45px;
  border-radius: 5px;
  background-color: #f8de00;
  color: #fff;
  font-size: 21px;
  line-height: 45px;
  display: block;
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
  font-family: Helveticarounded, sans-serif;
  font-weight: bold;
}

/*DONDE COMPRAR*/
.buy-stores {
  margin: auto;
  height: 100%;
  padding: 15px 10px;
}

@media all and (max-width: 576px) {
  .buy-stores {
    padding: 2px 1px;
  }
}

.buy-stores div:last-child {
  border-bottom: 0px solid #444;
}

.buy-stores .shop-box {
  height: 100px;
  border-bottom: 1px solid #444;
}

.buy-stores .shop-item {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-stores .buy-btn {
  text-decoration: none;
  padding: 0.5rem 1em;
  font-size: 18px;
  color: #fff;
  background-color: #4c8c2b;
  border-radius: 5px;
}

.shop-box {
  height: 100px;
  border-bottom: 1px solid #444;
}

.shop-item {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-btn {
  text-decoration: none;
  padding: 0.5rem 1em;
  font-size: 18px;
  color: #fff;
  background-color: #4c8c2b;
  border-radius: 5px;
}

.section-form {
  width: 1181px;
  margin: 30px auto;
  padding-bottom: 26px;
}

.section-footer {
  width: 1181px;
  margin: 30px auto 0px;
  padding: 40px;
  background-color: #4c8c2b;
}

.text-block {
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  color: #fff;
  font-size: 18px;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
}

.w-radio-input {
  margin-top: 3px;
}

.w-hidden {
  display: none;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #ffe500;
  color: #4c8c2b;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 15px;
}

input.w-button {
  -webkit-appearance: button;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333333%;
}

.w-col-2 {
  width: 16.66666667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.33333333%;
}

.w-col-5 {
  width: 41.66666667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.33333333%;
}

.w-col-8 {
  width: 66.66666667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.33333333%;
}

.w-col-11 {
  width: 91.66666667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333333%;
  }

  .w-col-medium-2 {
    width: 16.66666667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.33333333%;
  }

  .w-col-medium-5 {
    width: 41.66666667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.33333333%;
  }

  .w-col-medium-8 {
    width: 66.66666667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.33333333%;
  }

  .w-col-medium-11 {
    width: 91.66666667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333333%;
  }

  .w-col-small-2 {
    width: 16.66666667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.33333333%;
  }

  .w-col-small-5 {
    width: 41.66666667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.33333333%;
  }

  .w-col-small-8 {
    width: 66.66666667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.33333333%;
  }

  .w-col-small-11 {
    width: 91.66666667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333333%;
  }

  .w-col-tiny-2 {
    width: 16.66666667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.33333333%;
  }

  .w-col-tiny-5 {
    width: 41.66666667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.33333333%;
  }

  .w-col-tiny-8 {
    width: 66.66666667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.33333333%;
  }

  .w-col-tiny-11 {
    width: 91.66666667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw>button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
  margin-left: 7px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-widget-gplus {
  overflow: hidden;
}

.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}

.w-background-video>video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}

.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}

.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-nav.w-round>div {
  border-radius: 100%;
}

.w-slider-nav.w-num>div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}

.w-slider-nav.w-shadow>div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert>div {
  background-color: rgba(34, 34, 34, 0.4);
}

.w-slider-nav-invert>div.w-active {
  background-color: #222;
}

.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.w-slider-arrow-left [class^=w-icon-],
.w-slider-arrow-right [class^=w-icon-],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}

.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}

.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}

.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-nav[data-collapse=all] .w-dropdown,
.w-nav[data-collapse=all] .w-dropdown-toggle {
  display: block;
}

.w-nav[data-collapse=all] .w-dropdown-list {
  position: static;
}

.col2-footer {
  padding-top: 107px;
  padding-right: 50px;
  padding-left: 50px;
  text-align: center;
}

.logo-footer {
  width: 420px;
}

.text-field {
  border: 1px none #000;
  border-radius: 13px;
}

.text-field.tel {
  display: inline-block;
  width: 51%;
  margin-right: 0px;
}

.text-field.tipotel {
  display: inline-block;
  width: 25%;
  margin-right: 10px;
}

.text-field.prefijo {
  display: inline-block;
  width: 20%;
  margin-right: 10px;
}

.text-field.area {
  height: 200px;
}

.heading-3 {
  font-family: Gotham, sans-serif;
  color: #ffe500;
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section-form {
    width: 100%;
  }

  .section-footer {
    width: 100%;
  }
}

@media (max-width: 479) {
  .section-form {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .section-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading-3 {
    font-size: 24px;
    line-height: 28px;
  }
}

/*# sourceMappingURL=estilos.css.map */

.btn-whatsapp {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 15px;
}