/*-------------------
Fonts
--------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins: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");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins: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");

/*-------------------
Global CSS
--------------------*/
:root {
  --main-color: #ff3939;
  --color-1: #09a5e2;
  --color-2: #0065c9;
  --color-3: #172ea3;
  --color-4: #696969;
  --color-5: #c0c0c0;
  --bg-dark: #141414;
  --nav-mobile: #141414;
  --main-to-dark-color: #f7f7f7;
  --dark-to-main-color: var(--bg-dark);
  --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
  --black-900: #2b2c2f;
  --black-400: #555555;
  --black-100: #f7f7f7;
  --black-000: #f6fafd;
  --black-alpha-100: rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  overflow-x: hidden;
  background-color: var(--bg-dark) !important;
  color: var(--black-000) !important;
  line-height: 1.5;
  background-image: url("/img/background/fondo-low-new.png") !important;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

body.light {
  background-color: #f6fafd !important;
  color: var(--bg-dark) !important;
  --black-100: var(--bg-dark);
  --black-000: var(--bg-dark);
  --main-to-dark-color: var(--bg-dark);
  --dark-to-main-color: var(--black-000);
  --shadow-black-100: var(--shadow-black-300);
  --black-alpha-100: rgba(255, 255, 255, 0.05);
  --black-900: #f6fafd;
  --black-400: #2b2c2f;
  --nav-mobile: #f6fafd;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
}

/* .container {
  height: 100vh;
  width: 100%;
  position: relative;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.container::before {
  content: "";
  position: absolute;
  height: 500px;
  width: 500px;
  transform: translate(-850px, 200px);
  border-radius: 50%;
  background: linear-gradient(#ff3939, #1b1b1b00);
  backdrop-filter: blur(85px);
}
.container::after {
  content: "";
  position: absolute;
  background: linear-gradient(#09a5e2, #09a5e2);
  height: 500px;
  width: 500px;
  border-radius: 50%;
  transform: translate(450px, -170px);
}
.container .box {
  height: 100vh;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  display: flex;
  position: relative;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(85px);
  box-shadow: -15px 17px 17px rgba(10, 10, 10, 0.25);
} */
img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
}

#text {
  position: relative;
  color: var(--black-000);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-size: 200px;
  font-weight: 700;
}

.btn-1 {
  background-color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  color: var(--main-color);
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-300);
  font-weight: 500;
}

.btn-1:focus {
  box-shadow: var(--shadow-black-300);
}

.btn-1:hover {
  color: #ffffff;
  background-color: var(--main-color);
  text-decoration: none;
}

.btn-2 {
  background: var(--bg-dark);
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-100);
  font-weight: 500;
}

.btn-2:focus {
  box-shadow: var(--shadow-black-100);
}

.btn-2:hover {
  color: var(--main-color);
  /* background-color: #ffffff; */
  text-decoration: none;
}

.btn-2.light {
  color: white !important;
}

.btn-2.dark {
  color: var(--black-000) !important;
}

.btn-light {
  background-color: var(--black-000) !important;
  color: var(--black-900) !important;
}

@keyframes spin_01 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounceTop_01 {
  0%,
  100% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0px);
  }
}

@keyframes pulse_01 {
  0% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes zoomInOut_01 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.effect-wrap .effect {
  position: absolute;
  z-index: -1;
}

.effect-wrap .effect-1 {
  left: 20%;
  top: 20%;
  font-size: 20px;
  color: var(--color-4);
  animation: spin_01 5s linear infinite;
}

.effect-wrap .effect-2 {
  right: 5%;
  top: 10%;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.5);
  animation: spin_01 7s linear infinite;
}

.effect-wrap .effect-3 {
  left: 5%;
  bottom: 30%;
  font-size: 25px;
  color: var(--color-5);
  animation: bounceTop_01 3s linear infinite;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--black-000);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.section-title span {
  color: var(--main-color);
}

.owl-carousel .owl-dots {
  padding: 0 15px;
  text-align: center;
  margin-top: 20px;
}

.owl-carousel button.owl-dot {
  height: 6px !important;
  width: 24px !important;
  background-color: #dddddd !important;
  display: inline-block !important;
  margin: 0 4px !important;
  border-radius: 5px !important;
}

.owl-carousel button.owl-dot.active {
  background-color: var(--main-color) !important;
}

/*-------------------
Preloader
--------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2100;
  background: linear-gradient(
    45deg,
    rgb(3, 27, 105) 0%,
    rgb(84, 178, 207) 100%
  );
  background-size: 100% 100%;
  animation: gradient-animation 1s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader span {
  display: block;
  height: 60px;
  width: 60px;
  background-color: var(--dark-to-main-color);
  border-radius: 50%;
  animation: zoomInOut_01 1s ease infinite;
}

/*-------------------
Linear Gradient
--------------------*/

.linear-gradient-section {
  justify-content: end;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*-------------------
NavBar
--------------------*/

.navbar {
  background-color: transparent !important;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar a small {
  font-size: 18px;
  color: var(--black-900);
}

.navbar.navbar-shrink {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--main-color);
  padding: 10px;
}

.navbar > .container {
  padding: 0 15px;
}

.navbar .navbar-brand {
  font-size: 30px;
  color: var(--black-900);
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 10px;
  /* margin-top: 12px; */
}

.navbar .logo {
  width: 160px;
  height: 50px;
}

#logo_friwi {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.navbar .nav-item {
  margin-left: 15px;
}

.navbar .nav-item .nav-link {
  color: var(--black-000) !important;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  padding: 5px 0;
  position: relative;
}

.navbar .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  right: 0;
  height: 1px;
  background-color: var(--black-000);
  transition: all 0.5s ease;
  transform: scale(0);
}

.navbar .nav-item .nav-link.active:before,
.navbar .nav-item .nav-link:hover:before {
  transform: scale(1);
}

#navbar-container {
  min-height: 90px;
}

/*-------------------
Home Section
--------------------*/
.home {
  min-height: 90vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.home .section-title h1 {
  font-size: 125px;
  font-weight: 900;
}

.home .section-title span {
  color: var(--black-100);
  font-size: 30px;
  font-weight: 900;
}
.text-container {
  max-height: 120px;
}

/*-------------------
About Us Section
--------------------*/
.about-us {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.about-us-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
}

.about-us .about-us-btn {
  margin-top: 40px;
}

/*-------------------
Process Section
--------------------*/
.process {
  min-height: 100vh;
  /* padding: 150px 0; */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.process .process-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  text-align: start;
  /* margin-bottom: 40px; AGREGAR LUEGO*/
}

.process .section-title h5 {
  font-size: 40px !important;
  text-transform: uppercase;
  font-weight: 900 !important;
  text-align: center;
}

.process .process-item {
  display: flex;
  justify-content: space-around;
}

.process .item-title {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.process .item-title h5 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
}

.process .process-buttons {
  justify-content: center;
  margin: 40px 20px;
}

.process .process-btn {
  margin-top: 40px;
}

/*-------------------
Services Section
--------------------*/
.services {
  min-height: 100vh;
  /* padding: 150px 0; */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.services-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  text-align: center;
  /* margin-bottom: 40px; AGREGAR LUEGO*/
}

.services .item-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .item-title h5 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
}

.services .services-btn {
  margin-top: 40px;
}

.services .badge {
  font-size: 18px;
  color: var(--black-900) !important;
  background-color: var(--black-000) !important;
}

/*-------------------
Tools Section
--------------------*/
.tools {
  min-height: 100vh;
  /* padding: 150px 0; */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.tools-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 40px;
}

.tools .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
}

.nav-tabs {
  border-bottom: transparent !important;
  align-items: center;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:hover {
  border-color: transparent !important;
  background: transparent !important;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:hover {
  color: var(--black-000) !important;
}

.nav-tabs .nav-link.active {
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid var(--black-100) !important;
}

.tools .tab-content {
  min-height: 50vh;
}

.tools .tools-btn {
  margin-top: 40px;
}

.tools .icon-tech i {
  font-size: 50px;
  margin-bottom: 20px;
}

.tools .icon-tech p {
  font-size: 20px;
}

/*-------------------
Projects Section
--------------------*/
.projects {
  min-height: 100vh;
  /* padding: 150px 0; */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.projects-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
}

.projects .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
}

.projects .carousel-inner {
  min-height: 50vh;
}

.projects .carousel-control-next,
.carousel-control-prev {
  width: 5% !important;
}

.projects .carousel-indicators button {
  color: var(--black-100);
}

/* Modo claro (cuando body tiene clase 'light') */
body.light .carousel-control-prev-icon,
body.light .carousel-control-next-icon,
body.light .carousel-indicators button {
  background-color: rgba(0, 0, 0, 0.3); /* Negro semi-transparente */
}

/* Opcionalmente, podrías cambiar el color activo en light también */
body.light .carousel-indicators .active {
  background-color: #000; /* o el color que prefieras en modo light */
}

.projects .projects-btn {
  margin-top: 40px;
}

.projects .tab-content {
  min-height: 30vh;
}

.projects .icon-tech i {
  font-size: 50px;
  margin-bottom: 20px;
}

.projects .icon-tech p {
  font-size: 20px;
}

/*-------------------
Contact Section
--------------------*/
.contact {
  min-height: 100vh;
  /* padding: 150px 0; */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.contact-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
}

.contact .contact-btn {
  margin-top: 40px;
}

/*-------------------
Testimonials Section
--------------------*/

.testimonial-item {
  margin: 15px;
  padding: 30px;
  background-color: var(--black-000);
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  text-align: center;
}

.testimonial-btn {
  margin-top: 40px;
}

/* .testimonial-item .img-box {
  height: 100px;
  width: 100px;
  display: inline-block;
  margin-bottom: 30px;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  position: relative;
} */

.testimonial-item .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  position: relative;
}

.testimonial-item .icon-box i {
  font-size: 35px;
  color: var(--black-900);
}

.testimonial-item .sector {
  color: var(--black-900);
  font-size: 18px;
  font-weight: 500;
}

/* .testimonial-item .img-box img {
  border-radius: 50%;
  width: 100%;
}
.testimonial-item .img-box i {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  left: calc(100% - 15px);
  top: calc(50% - 15px);
} */

.testimonial-item p {
  font-size: 16px;
  margin: 0 0 20px;
  color: var(--black-400);
  line-height: 26px;
  font-weight: 300;
}

.testimonial-item h3 {
  font-size: 18px;
  color: var(--main-color);
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.testimonial-item span {
  display: block;
  font-size: 16px;
  color: var(--black-400);
  font-weight: 300;
}

.testimonial-item .rating {
  margin-top: 10px;
}

.testimonial-item .rating i {
  display: inline-block;
  font-size: 16px;
  color: var(--color-2);
}

/*-------------------
Fun Facts Section
--------------------*/
.fun-facts {
  background-color: var(--black-100);
}

.fun-facts .section-title {
  margin-bottom: 20px;
}

.fun-facts .section-title h2 {
  text-align: left;
}

.fun-facts-btn {
  text-align: center;
  margin-top: 40px;
}

.fun-facts-img img {
  max-width: 600px;
  width: 100%;
  /* box-shadow: var(--shadow-black-100); */
  /* border-radius: 32px; */
  animation: bounceTop_01 3s ease infinite;
}

.fun-facts-text p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-400);
  margin: 0 0 15px;
  font-weight: 300;
}

.fun-facts-item {
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  margin-top: 30px;
}

.fun-facts-item h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px;
}

.fun-facts-item span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
  line-height: 26px;
  display: block;
  color: #ffffff;
}

.fun-facts-item.style-1 {
  background-color: var(--color-5);
}

.fun-facts-item.style-1 h3,
.fun-facts-item.style-1 span {
  color: var(--black-900);
}

.fun-facts-item.style-2 {
  background-color: var(--color-4);
}

.fun-facts-item.style-3 {
  background-color: var(--bg-dark);
}

.fun-facts-item.style-4 {
  background-color: var(--main-color);
}

/*-------------------
Screenshots Section
--------------------*/
.screenshot-item {
  margin: 15px;
}

.screenshot-item img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: auto;
}

/*-------------------
AppDownload Section
--------------------*/
.app-download {
  background-image: url("../img/download-app-bg.jpg");
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.app-download .section-title h2 {
  color: #ffffff;
}

.app-download .section-title span {
  color: var(--black-900);
}

.app-download::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-to-dark-color);
  opacity: 0.8;
}

.app-download-item {
  background-color: var(--black-000);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: var(--shadow-black-100);
}

.app-download-item i {
  font-size: 30px;
  color: var(--main-color);
  display: inline-block;
}

.app-download-item h3 {
  font-size: 22px;
  color: var(--black-900);
  margin: 20px 0;
  font-weight: 500;
  text-transform: capitalize;
}

.app-download-item p {
  font-size: 16px;
  color: var(--black-400);
  font-weight: 300;
  margin: 0 0 30px;
  line-height: 26px;
}

.app-screenshots-btn {
  text-align: center;
  margin-top: 40px;
}

/*-------------------
How It Works Section
--------------------*/
.how-it-works {
  background-color: var(--black-100);
}

.how-it-works-item {
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-it-works-item.line-right::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 50%;
  top: 60px;
  background-color: var(--main-color);
  z-index: -1;
}

.how-it-works-item .step {
  display: inline-block;
  height: 60px;
  width: 60px;
  background-color: var(--main-color);
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 15px;
}

.how-it-works-item .step.last {
  background-color: var(--black-400);
  /* border: 2px solid var(--main-color); */
}

.how-it-works-item .last-title {
  color: var(--main-color);
  /* border: 2px solid var(--main-color); */
}

.how-it-works-item .last-text {
  color: var(--black-900);
  font-weight: 500;
  /* border: 2px solid var(--main-color); */
}

.how-it-works-item h3 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--black-900);
  text-transform: capitalize;
}

.how-it-works-item p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  color: var(--black-400);
  line-height: 26px;
}

/*-------------------
Testimonials Section
--------------------*/
.testimonials {
  /* background-color: var(--black-100); */
  background-color: none;
}

.testimonial-item {
  margin: 15px;
  padding: 30px;
  background-color: var(--black-000);
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  text-align: center;
}

.testimonial-btn {
  margin-top: 40px;
}

/* .testimonial-item .img-box {
  height: 100px;
  width: 100px;
  display: inline-block;
  margin-bottom: 30px;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  position: relative;
} */

.testimonial-item .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  position: relative;
}

.testimonial-item .icon-box i {
  font-size: 35px;
  color: var(--black-900);
}

.testimonial-item .sector {
  color: var(--black-900);
  font-size: 18px;
  font-weight: 500;
}

/* .testimonial-item .img-box img {
  border-radius: 50%;
  width: 100%;
}
.testimonial-item .img-box i {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  left: calc(100% - 15px);
  top: calc(50% - 15px);
} */

.testimonial-item p {
  font-size: 16px;
  margin: 0 0 20px;
  color: var(--black-400);
  line-height: 26px;
  font-weight: 300;
}

.testimonial-item h3 {
  font-size: 18px;
  color: var(--main-color);
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.testimonial-item span {
  display: block;
  font-size: 16px;
  color: var(--black-400);
  font-weight: 300;
}

.testimonial-item .rating {
  margin-top: 10px;
}

.testimonial-item .rating i {
  display: inline-block;
  font-size: 16px;
  color: var(--color-2);
}

/*-------------------
Pricing Section
--------------------*/
.pricing {
  background-color: var(--black-100);
}

.pricing-plan {
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
}

.pricing-plan .pricing-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--black-alpha-100);
}

.pricing-plan .pricing-header h3 {
  text-align: center;
  font-size: 30px;
  color: var(--black-900);
  font-weight: 500;
  text-transform: capitalize;
}

.pricing-plan .pricing-price {
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  line-height: 0.7;
}

.pricing-plan .pricing-price .currency {
  font-size: 16px;
  font-weight: 300;
  color: var(--black-400);
  margin-right: 5px;
  align-self: flex-start;
}

.pricing-plan .pricing-price .price {
  font-size: 80px;
  font-weight: 700;
  color: var(--main-color);
}

.pricing-plan .pricing-price .period {
  font-size: 14px;
  font-weight: 300;
  color: var(--black-400);
  margin-right: 5px;
  align-self: flex-end;
  text-transform: uppercase;
}

.pricing-plan .pricing-body {
  padding: 0px 30px;
}

.pricing-plan .pricing-body ul li {
  font-size: 16px;
  font-weight: 300;
  color: var(--black-400);
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--black-alpha-100);
  line-height: 26px;
  position: relative;
}

.pricing-plan .pricing-body ul li:last-child {
  border-bottom: none;
}

.pricing-plan .pricing-body ul li i {
  color: var(--main-color);
  position: absolute;
  left: 0;
  top: 12px;
}

.pricing-plan .pricing-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

/*-------------------
Team Section
--------------------*/
.team {
  background-color: var(--black-100);
}

.team-item {
  margin: 15px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-black-100);
}

.team-item h3 {
  font-size: 18px;
  color: var(--black-900);
  font-weight: 500;
  margin: 15px 0 5px;
  text-transform: capitalize;
}

.team-item span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--black-400);
  text-transform: capitalize;
}

/*-------------------
Faq Section
--------------------*/
.faq {
  background-color: var(--black-100);
}

.faq .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}

.faq .accordion-header {
  box-shadow: var(--shadow-black-100);
  padding: 20px 50px 20px 30px;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

.faq .accordion-header:not(.collapsed) {
  background-color: var(--main-color);
  box-shadow: none;
}

.faq .accordion-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-400);
  margin: 0;
  transition: all 0.5s ease;
  /* text-transform: capitalize; */
}

.faq .accordion-header::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  height: 30px;
  width: 30px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  color: var(--black-400);
  transition: all 0.5s ease;
}

.faq .accordion-header:not(.collapsed)::before {
  content: "\f068";
  color: #ffffff;
}

.faq .accordion-header:not(.collapsed) h3 {
  color: #ffffff;
}

.faq .accordion-body {
  padding: 20px 30px;
  background-color: var(--black-100);
}

.faq .accordion-body p {
  font-weight: 300;
  font-size: 16px;
  color: var(--black-400);
  line-height: 26px;
  margin: 0;
}

.faq-btn {
  margin-top: 40px;
}

/*-------------------
Contact Section
--------------------*/
.contact {
  /* background-color: var(--black-100); */
  /* background-color: transparent; */
}

.contact p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact a {
  text-decoration: none;
  color: var(--black-000);
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 22px;
  color: var(--black-900);
  font-weight: 500;
  margin: 0 0 40px;
}

.contact-info-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}

.contact-info-item i {
  position: absolute;
  height: 40px;
  width: 40px;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 16px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  text-align: center;
  line-height: 38px;
}

.contact-info-item h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--black-900);
}

.contact-info-item p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 26px;
  color: var(--black-400);
}

.contact-info-item p a {
  text-decoration: none;
  color: var(--black-400);
}

.contact-info-item p a:hover {
  color: var(--main-color);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-control {
  height: 52px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  padding: 0 24px;
  color: var(--black-000) !important;
  background: transparent;
  /* border-bottom: 2px solid var(--bg-dark); */
  /* text-align: center; */
  transition: all 0.5s ease;
}

.contact-form .form-group {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    0.25turn,
    rgba(23, 46, 163, 1) 0%,
    rgba(222, 5, 5, 1) 100%
  );
  border-image-slice: 1;
  width: 100%;
}

.contact-form .form-control::placeholder {
  color: var(--black-000) !important;
  opacity: 1;
  /* Firefox */
}

.errorMsg {
  color: var(--main-color);
  font-size: 1.2em;
}

.contact-form .form-control:focus {
  box-shadow: none;
  background: transparent !important;
  border: transparent;
}

.contact-form textarea.form-control {
  height: 140px;
  padding-top: 12px;
  resize: none;
}

.contact-form .form-control:focus {
  border-color: var(--bg-dark);
}

/*-------------------
Footer
--------------------*/
.footer {
  /* background-color: var(--bg-dark); */
  padding: 50px 0 0;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-100);
  margin: 0 0 25px;
  text-transform: capitalize;
}

.footer-col p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

.footer-col ul {
  margin: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  display: block;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none;
}

.footer-col ul li a:hover {
  padding-left: 5px;
}

.footer a {
  text-decoration: none;
}

.footer a i {
  color: var(--black-000) !important;
  font-size: 30px;
  margin-left: 10px;
}

.footer .copyright-text {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;

  font-weight: 300;
  margin: 50px 0 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.copyright-text.ligth {
  color: black !important;
}

.copyright-text.dark {
  color: rgba(255, 255, 255, 0.9);
}
.footer .button-send {
  display: flex;
  justify-content: end;
}

/*-------------------
Toogle Theme - light and dark mode
--------------------*/
.toggle-theme {
  /* position: fixed;
  right: 0;
  top: calc(50% - 20px); */
  height: 40px;
  width: 40px;
  background-color: var(--black-000);
  z-index: 1200;
  color: var(--black-900) !important;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: var(--shadow-black-300);
  font-size: 18px;
  text-align: center;
}

.toggle-theme i {
  line-height: 40px;
}

/*-------------------
Responsive
--------------------*/

@media (max-width: 1130px) {
  .process .section-title h5 {
    font-size: 30px !important;
    text-transform: uppercase;
    font-weight: 900 !important;
    text-align: center;
  }
  .navbar-toggler {
    background-color: var(--dark-to-main-color) !important;
    box-shadow: var(--shadow-black-300) !important;
    height: 34px !important;
    width: 44px !important;
    padding: 0 !important;
    font-size: 17px !important;
    color: #ffffff;
  }

  .navbar-nav {
    background-color: var(--nav-mobile);
    box-shadow: var(--shadow-black-300) !important;
  }

  .navbar .nav-item {
    margin: 0;
    padding: 5px 15px;
  }

  .navbar.navbar.navbar-shrink .navbar-toggler,
  .navbar.navbar.navbar-shrink .navbar-nav {
    background-color: var(--main-color) !important;
  }

  .home-img .circle {
    height: 320px;
    width: 320px;
  }

  .home-img .circle::before {
    left: 18px;
    top: 18px;
    transform-origin: 142px 142px;
  }

  .home-text h1 {
    font-size: 40px;
  }

  .how-it-works-item,
  .app-download-item,
  .pricing-plan {
    margin-bottom: 30px;
  }

  .how-it-works-item.line-right::before {
    content: none;
  }

  .how-it-works-item {
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
  }

  .footer-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .logo-project {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .text-container {
    max-height: 80px;
  }
  .home-btn {
    margin-bottom: 80px;
  }

  .fun-facts-img {
    margin-bottom: 30px;
  }

  .contact-form {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 35px;
  }

  .fun-facts .section-title h2 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-text h1 {
    font-size: 30px;
  }

  .home-text p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 40px;
  }
}

/*------------------------------------------------------------------------------------------------------------------------------------------
ABOUT US
-------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------
Values
--------------------*/
.values {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.values-text p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
}

.values .item-title h5 {
  font-size: 20px;
}

.values .section-title h2 {
  text-transform: none;
  font-weight: 900;
}

.values .item-title {
  display: flex;
  align-items: center;
}

.values .values-btn {
  margin-top: 40px;
}

/*-------------------
Approach
--------------------*/
.approach {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.approach-text p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.approach-text .icon i {
  font-size: 50px;
  margin: 40px 20px;
  color: var(--bg-dark);
}

.approach .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--bg-dark);
}

.approach .approach-btn {
  margin-top: 40px;
}

/*-------------------
Features Section
--------------------*/
.features {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.features .section-title h2 {
  text-transform: none;
  font-weight: 900;
}

.features-text p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--black-100);
}

.features-text .icon {
  margin: 40px 20px;
}

.features-text h5 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.features .features-btn {
  margin-top: 40px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------
START UP
-------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------
Startup
--------------------*/
.startup {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.startup-text p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
}

.startup .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
}

.startup .values-btn {
  margin-top: 40px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------
BLOCKCHAIN
-------------------------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------------------------
IA
-------------------------------------------------------------------------------------------------------------------------------------------*/
.ia {
  min-height: 100vh;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.ia .section-title h2 {
  text-transform: none;
  font-weight: 900;
}

/*-------------------
Focus
--------------------*/
.focus .item-title h5 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--bg-dark);
}

.focus-text p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.focus-text .icon i {
  font-size: 50px;
  color: var(--bg-dark);
}

.focus-text .icon {
  margin: 40px 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: transform 0.2s ease-in-out;
}

.glass-card-border {
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    45deg,
    rgba(23, 46, 163, 1) 0%,
    rgba(222, 5, 5, 1) 100%
  );
  background: rgba(255, 255, 255, 0.3);
}

.linear-gradient {
  border-bottom: 1px solid;
  /* border: 1px solid; */
  border-image-slice: 1;
  border-image-source: linear-gradient(
    45deg,
    #09a5e2 0%,
    rgba(222, 5, 5, 1) 100%
  );
}

.hidden {
  display: none;
}

.parallax-container {
  height: 100vh;
  background-image: url("tu-imagen-de-fondo.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.parallax-subtitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  z-index: 2;
}

.parallax-subtitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  /* Sombra para mejorar la legibilidad */
  z-index: -1;
}

/*-------------------
Customers Section
--------------------*/
.customers {
  min-height: 40vh;
  padding: 100px 0 0 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.customers .section-title h2 {
  text-transform: none;
  font-weight: 900;
}

.customers select option {
  color: var(--black-400);
}

.second-column {
  margin-top: 300px;
}

/*-------------------
Select Lenguage 
--------------------*/
/* Haz que el fondo del select sea transparente */
.language-selector .form-select {
  background-color: transparent !important;
  /* Fondo blanco con 20% de opacidad */
  border: 1px solid transparent !important;
  /* Borde blanco con 50% de opacidad */
  color: var(--bg-dark) !important;
  padding: 3px 5px;
}

.form-select option {
  /* background: transparent !important; */
  /* Fondo blanco con 20% de opacidad */
  border: 1px solid transparent !important;
  /* Borde blanco con 50% de opacidad */
  /* color: var(--bg-dark) !important; */
}

/* Cambia el color del texto y del borde cuando el select está enfocado */
.form-select:focus {
  /* background-color: transparent !important; */
  /* Más transparencia al estar enfocado */
  /* border-color: transparent !important; */
  /* Borde blanco con más opacidad */
  box-shadow: none !important;
  /* Elimina el sombreado predeterminado de Bootstrap */
  /* color: var(--bg-dark) !important; */
}

.navbar.scrolled_dark {
  background-color: var(--bg-dark) !important;
  /* colora la navbar*/
  /*box-shadow: 0 4px 2px -2px gray;  Para dar un pequeño efecto de sombra */
}

.navbar.scrolled_light {
  background-color: var(--black-900) !important;
  /* colora la navbar*/
  /*box-shadow: 0 4px 2px -2px gray;  Para dar un pequeño efecto de sombra */
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%); /* Comienza desde la izquierda */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Termina en su posición normal */
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 1;
    transform: translateX(0); /* Comienza desde la izquierda */
  }
  100% {
    opacity: 0;
    transform: translateX(-110%); /* Termina en su posición normal */
  }
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards; /* 1 segundo de duración */
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards; /* 1 segundo de duración */
}

@keyframes blink-opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/* Aplicar la animación a un elemento */
.blinking-opacity {
  animation: blink-opacity 2s infinite; /* 2s es la duración de un ciclo, infinite es el número de repeticiones */
  transition: opacity 0.5s ease;
}

.activePage_light {
  border-bottom: white 1px solid;
}

.activePage_dark {
  border-bottom: black 1px solid;
}

.floating-div {
  position: fixed;
  bottom: 20px; /* Distancia desde el fondo */
  right: 20px; /* Distancia desde la derecha */
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 99999;
}

/* efecto fade in al hacer scroll */

.zoomText {
  /* font-size: 0px !important; */
  /* transition: font-size 2s ease-out, transform 2s ease-out; */
}

.scrollText {
  /* transition:  transform 2s ease-out */
}

.fade-in-scroll {
  /* opacity: 0; 
  transform: translateY(20px); */
  /* transition: opacity 0.5s ease-out, transform 2s ease-out; */
}

.fade-left-scroll-barra {
  /* opacity: 0;
  transform: translateX(1200px);  */
  /* transition: opacity 2s ease-out, transform 2s ease-out; */
}

.fade-left-scroll {
  /*opacity: 0;  Inicialmente oculto
  transform: translateX(-100px); Inicialmente desplazado hacia abajo */
  /* transition: opacity 2s ease-out, transform 2s ease-out; */
}

/* .fade-left-scroll.show {
  opacity: 1; 
  transform: translateX(0); 
} */

.fade-right-scroll {
  /* opacity: 0; /* Inicialmente oculto 
  transform: translateX(100px); Inicialmente desplazado hacia abajo */
  /* transition: opacity 2s ease-out, transform 2s ease-out; */
}

/* .fade-right-scroll.show {
  opacity: 1; 
  transform: translateX(0); 
} */

/* dar un tamaño de 100% al width del boton menu en dispositivos movil */
@media (max-width: 1130px) {
  .div_menu_mobil {
    width: 100%;
  }
}

.show_init {
  /* opacity: 0;
  transform: translateY(-60px); */
  /* transition: opacity 1s ease-in-out,  transform 2s ease-in-out; */
}

/*TEST HERO*/

.hidden {
  opacity: 0;
}

.visible {
  animation: fadeInUp 4s ease forwards; /* Animación suave con rebote */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px); /* Comienza más abajo */
  }
  50% {
    opacity: 0.8;
    transform: translateY(-15px); /* Rebote sutil */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Termina en su posición */
  }
}

.cards .card {
  width: 90%;
  max-width: 400px;
  padding: 5rem 2.5rem;

  border-radius: 1rem;
  border: 1px solid transparent;

  backdrop-filter: blur(1rem);
  box-shadow: 1.3rem 1.3rem 1.3rem rgba(0, 0, 0, 0.5);

  border-top-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.01);
  border-right-color: rgba(255, 255, 255, 0.01);
}
.cards .cb1 {
  background-color: rgba(255, 255, 255, 0.01);
}
.card .card-number {
  color: rgba(225, 225, 225, 0.03);
  font-size: 8rem;
  z-index: -1;
  position: absolute;
  top: -1rem;
  right: 2.5rem;
}

.focus .card {
  /* width: 90%; */
  max-width: 400px;
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;

  border-radius: 1rem;
  border: 1px solid transparent;

  backdrop-filter: blur(1rem);
  box-shadow: 1.3rem 1.3rem 1.3rem rgba(0, 0, 0, 0.1);

  border-top-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.01);
  border-right-color: rgba(255, 255, 255, 0.01);
}
.focus .cb1 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.focus .card-number {
  color: var(--black-000);
  opacity: 0.3;
  font-size: 8rem;
  z-index: -1;
  position: absolute;
  top: -1rem;
  right: 1.5rem;
}

.focus .card-title {
  text-transform: uppercase;
  text-wrap: no-wrap;
}

.focus .card-text {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--black-000);
}

.focus .small-card {
  margin-bottom: 60px !important;
}

.carousel-item .item-text {
  font-size: 20px;
}

/* --------------------------------------------------- MEDIAS QUERIES --------------------------------------------------*/

@media (min-width: 992px) {
}

@media (max-width: 992px) and (orientation: portrait) {
}

@media (max-width: 1600px) {
}

@media (max-width: 1130px) {
  #navbar-container {
    display: flex;
    justify-content: end;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: var(--nav-mobile);
    min-height: 60px !important;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
}

@media (max-width: 770px) {
}

@media (max-width: 770px) and (orientation: portrait) {
  .home .section-title h1 {
    font-size: 80px;
  }
  .home .section-title span {
    font-size: 20px;
  }

  .process-text p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
  }

  .process .process-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .process .item-title {
    justify-content: center;
    margin: 40px 20px;
    text-align: center;
  }

  .linear-gradient-section {
    justify-content: center;
  }

  .process .process-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .second-column {
    margin-top: 0px;
  }

  .project-img {
    max-width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
  }
  .footer .button-send {
    display: flex;
    justify-content: center;
  }
  .footer {
    padding: 0px;
  }
}

@media (max-width: 770px) and (orientation: landscape) {
}
@media (min-width: 600px) and (orientation: portrait) {
}

@media (max-width: 600px) and (orientation: landscape) {
}

@media (max-width: 400px) {
}

.card {
  border-radius: 40px !important;
}
.card-img-top {
  border-top-left-radius: 40px !important;
  border-top-right-radius: 40px !important;
}

.hide {
  display: none !important;
}

/* .card {
  position: relative;
  overflow: hidden; 
  height: 300px; 
} */

.card-bg-container {
  height: 500px;
  overflow: hidden;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.card-bg {
  height: 600px;
  background-position: center;
  background-size: cover;
}

/* .card-body {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8); 
  padding: 20px;
} */

.logo {
  width: 150px;
  height: auto;
  margin-top: -45px;
  margin-bottom: -45px;
}

.logo-project {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-see {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
