/* Cabecera */
#cabecera .card.mw-home-test {
  border-radius: 6rem;;
}

/* servicios */
.servicios-link-servicio {
  position: relative;
}

.servicios-link-servicio:after {
  font-family: "Font Awesome 6 Free";
  content: "\f002";
  padding-top: 50px;
  font-weight: 900;
  position: absolute;
  font-size: 40px;
  border-radius: 50px;
  color: white;
  width: 100%; height:100%;
  top:0; left:0;
  background:rgba(26, 188, 156, 0.75);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  cursor: pointer;
}

.servicios-link-servicio:hover:after {
  opacity: 1;
}

/*process*/
.process {
  position: relative;
  z-index: 1;
}

.process .process-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 100px;
  font-weight: bolder;
  color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.process .process-title,
.process a {
  font-weight: 600;
}

/*Process style 2 advance*/
.process-advance .process-title {
  font-weight: 600;
}

.process-advance .process-number {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.process-advance .process-icon {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  line-height: 100px;
  color: #ffffff;
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
}

.process-advance .process-border {
  position: relative;
  width: 100%;
  z-index: 1;
}

.process-advance p {
  margin: 0;
}

.process-advance .border-end:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);  
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px;
  right: -30px;
  border-color: #dfe2e5 !important;
  z-index: -1;
}

.process-advance .border-start:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px;
  left: -30px;
  border-color: #dfe2e5 !important;
  z-index: -1;
}

/* Pricing*/
.pricing.pricing-center {
  text-align: center;
}

.pricing .pricing-box {
  border: 1px solid #f0f1f3;
  padding: 50px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-box h5, .pricing .pricing-box .h5 {
  font-weight: 600;
}

.pricing .pricing-box .price {
  font-size: 50px;
  font-weight: 600;
  display: block;
  line-height: 50px;
}

.pricing .pricing-box .price sup {
  font-size: 30px;
  font-weight: 600;
}

.pricing .pricing-box p {
  margin: 20px 0;
}

.pricing .pricing-box:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 40px rgba(83, 88, 93, 0.1);
          box-shadow: 0px 0px 40px rgba(83, 88, 93, 0.1);
}

/* New table oct 2023*/

.table td span.price,
.table td.price  {
  font-size: 35px;
  font-weight: 600;  
  line-height: 50px;
}

.table > :not(:first-child) {
  border-top: 0px;
}

/*pricing ribbon*/
.pricing .ribbon {
  position: absolute;
  left: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: left;
}

.pricing .ribbon span {
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: linear-gradient(150deg, #97c74e 0%, #2ab9a5 100%);
  -webkit-box-shadow: 0 3px 10px -5px black;
          box-shadow: 0 3px 10px -5px black;
  position: absolute;
  top: 19px;
  left: -21px;
}

.pricing .ribbon span::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-right: 3px solid #343a40;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #343a40;
}

.pricing .ribbon span::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-right: 3px solid transparent;
  border-left: 3px solid #343a40;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #343a40;
}