body {
  font-family: "Figtree", serif;
  font-size: 16px;
  background: #fff;
  color: #001781;
}

.navbar {
  margin-top: 30px;
}
.navbar .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .navbar .container {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}

.btn-primary {
  border-radius: 50px;
  padding: 10px 40px;
  text-transform: uppercase;
  font-weight: 600;
  background: #ff7f00;
  border-color: #ff7f00;
}
.btn-primary:hover {
  background: #e67200;
  border-color: #e67200;
}
.btn-secondary {
  border-radius: 50px;
  border-color: none;
  background: #001781;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.btn-secondary:hover {
  border-color: none;
  color: #fff;
  background: #0020b4;
}
.btn-outline-primary {
  border-radius: 30px;
  border-color: #ff7f00;
  background: #fff;
  color: #ff7f00;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.btn-outline-primary:hover {
  border-color: #8197ff;
  background: #8197ff;
  color: #fff;
}
.btn-outline-secondary {
  border-radius: 30px;
  border: 2px solid #ff7f00;
  background: transparent;
  color: #ff7f00;
  text-transform: uppercase;
  padding-left: 20px !important;
  padding-right: 20px !important;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline-secondary:hover {
  background: #ff7f00;
  color: #fff;
  border-color: #ff7f00;
}
.btn-icon-right {
  display: inline-flex;
  align-items: center;
}
.btn-icon-right::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  display: inline-flex;
  margin-left: 20px;
  border-radius: 50%;
}
.btn-icon-left {
  display: inline-flex;
  align-items: center;
}
.btn-icon-left::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  display: inline-flex;
  margin-right: 20px;
  border-radius: 50%;
}
.btn-white {
  background: #fff;
  border-color: #fff;
  color: #212529;
}
.btn-white:hover {
  background: #ced2e6;
  color: #212529;
}

b {
  font-weight: 800;
}

h1 {
  font-size: 3.815rem;
  line-height: 3.815rem;
  font-weight: 800;
}
h1 span {
  font-style: italic;
  font-weight: 200;
}

h2 {
  font-size: 3.052rem;
  line-height: 3.052rem;
  font-weight: 300;
}

h3 {
  font-size: 2.441rem;
  line-height: 2.441rem;
}

section {
  margin-top: 200px;
  margin-bottom: 200px;
  position: relative;
}

header {
  height: 600px;
  display: flex;
  align-items: flex-end;
  background: rgb(206, 210, 230);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.2) 40%);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
header.full {
  height: 750px;
  margin: 0 !important;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.2) 60%);
}

.info {
  background: url("https://images.unsplash.com/photo-1571223641822-b82408a0e705?q=80&w=2902&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  position: relative;
  min-height: 500px;
  margin-top: 300px;
  padding-bottom: 100px;
}
.info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(196, 255, 193, 0.4) 100%);
  opacity: 1;
}
.info.invert:before {
  background: linear-gradient(0deg, rgba(196, 255, 193, 0.4) 0%, rgb(255, 255, 255) 100%);
}
.info .col-lg-10 {
  margin-top: -100px;
}
@media (min-width: 992px) {
  .info .card:nth-child(2) {
    top: -50px;
  }
}
.info .custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.info .custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}
.info .custom-shape-divider-bottom svg .shape-fill {
  fill: #ffffff;
}

.card {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  display: block;
  margin-bottom: 0px;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 10px 3px rgba(10, 3, 56, 0.0509803922);
  background-size: cover;
  background: linear-gradient(-45deg, rgba(238, 119, 82, 0.5), rgba(231, 60, 126, 0.5), rgba(35, 166, 213, 0.5), rgba(35, 213, 171, 0.5));
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  transform: scale(1);
  transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  opacity: 1;
  display: block;
  border-radius: 7px;
  transition: top 0.345s ease-in-out, left 0.345s ease-in-out, bottom 0.345s ease-in-out, right 0.345s ease-in-out;
}
.card:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.card:hover:before {
  background: rgb(255, 255, 255);
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
}
.card .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.card .content img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0) saturate(100%) invert(48%) sepia(76%) saturate(1429%) hue-rotate(360deg) brightness(101%) contrast(109%);
}
.card .content small {
  text-transform: uppercase;
  font-size: 9px;
}
.card .content h2 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.card .content svg {
  width: 30px;
  margin-left: auto;
}
.card .content svg path {
  fill: #ff7f00;
}

.custom-shape-divider-top-1729306773 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1729306773 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
.custom-shape-divider-top-1729306773 svg .shape-fill {
  fill: #fff;
}

.custom-shape-divider-bottom-1729306945 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.custom-shape-divider-bottom-1729306945 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}
.custom-shape-divider-bottom-1729306945 svg .shape-fill {
  fill: #FFFFFF;
}

.clientes {
  margin-top: 0 !important;
  background: #f0f1f7;
  padding-top: 150px;
  padding-bottom: 100px;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ced2e6;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header button {
  background: transparent;
  border-radius: 0 !important;
}
.accordion-header button:hover {
  color: #ff7f00;
}
.accordion-header button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #ff7f00;
}
.accordion-header button:focus-visible {
  box-shadow: none;
}
.accordion-header button:focus {
  box-shadow: none;
}

.form {
  background: #f0f1f7;
  padding: 200px 0;
  margin-bottom: 0;
}
.form .custom-shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.form .custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
.form .custom-shape-divider-top svg .shape-fill {
  fill: #fff;
}
.form .custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.form .custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}
.form .custom-shape-divider-bottom svg .shape-fill {
  fill: #001781;
}
.form input {
  border: none;
  border-radius: 0;
}
.form input:focus {
  box-shadow: none;
  border: none;
  border-bottom: 2px solid #ff7f00;
}

footer {
  background: #001781;
}
footer img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(23deg) brightness(105%) contrast(101%);
}

.home header {
  height: auto;
  align-items: center;
  flex-direction: column;
  padding-bottom: 100px;
}
.home header.full {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 60%);
}
.home header h1 {
  color: #001781;
}
.home .servicio .card-home {
  display: block;
  margin-bottom: 0px;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 10px 3px rgba(10, 3, 56, 0.0509803922);
  background-size: cover;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}
.home .servicio .card-home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 1;
  opacity: 1;
  display: block;
  border-radius: 7px;
  transition: top 0.345s ease-in-out, left 0.345s ease-in-out, bottom 0.345s ease-in-out, right 0.345s ease-in-out;
}
.home .servicio .card-home:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}
.home .servicio .card-home:hover:before {
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
}
.home .servicio .card-home .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  color: #001781;
}
.home .servicio .card-home .content img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0) saturate(100%) invert(48%) sepia(76%) saturate(1429%) hue-rotate(360deg) brightness(101%) contrast(109%);
}
.home .servicio .card-home .content small {
  text-transform: uppercase;
  font-size: 9px;
}
.home .servicio .card-home .content h2 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.home .servicio .card-home .content svg {
  width: 30px;
  margin-left: auto;
}
.home .servicio .card-home .content svg path {
  fill: #ff7f00;
}
.home footer {
  background: #10216c;
  background-image: url(../images/bg-footer.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.blur-top {
  z-index: -1;
  background-image: linear-gradient(to right, #02a9ff, #bb1bff);
  opacity: 0.25;
  filter: blur(45px);
  width: 100%;
  height: 350px;
  position: absolute;
  inset: -50px 0% auto;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=style.css.map */