*,
:after,
:before {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #20214f;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.title-gradient {
  background: -webkit-linear-gradient(45deg, #20214f, #9a9a9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5f5e5e;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #20214f;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
}
.btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}
.btn.btn-gray {
  background-color: #9b9b9b;
  color: #ffffff;
}
.btn.btn-transparent {
  background-color: transparent;
  color: #ffffff;
}

.arrow {
  border: solid #20214f;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.icon-w-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
}

textarea {
  resize: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

.hero {
  position: relative;
  margin-top: 76px;
  background: linear-gradient(90deg, #20214f, #9a9a9b);
}
.hero__content {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__content .hero__text {
  padding: 64px 0;
}
.hero__content .hero__text .hero__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
}
.hero__content .hero__text .hero__title .small {
  font-size: medium;
}

.rutas__list {
  margin-bottom: 32px;
}
.rutas__list-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: solid 1px #9b9b9b;
}
.rutas__list-items__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 6px #9a9a9b;
}
@media only screen and (min-width: 768px) {
  .rutas__list-items__item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (min-width: 992px) {
  .rutas__list-items__item {
    width: calc(33.3333333333% - 1rem);
  }
}
.rutas__list-items__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.rutas__list-items__item-content {
  padding: 16px;
  width: 100%;
}
.rutas__list-items__item-content .rutas__list-items__item-title {
  margin: 0;
}
.rutas__list-items__item-content p {
  margin: 0;
}
.rutas__list-items__item-content .rutas__list-items__item-actions {
  display: flex;
  justify-content: flex-end;
}
.rutas__text {
  margin-bottom: 32px;
}

.benefits {
  padding: 4rem 0;
  color: #ffffff;
  background: linear-gradient(90deg, #20214f, #9a9a9b);
}
.benefits__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .benefits__title {
    text-align: right;
  }
}
.benefits__column:last-child {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .benefits__column:last-child {
    width: calc(50% - 2rem);
  }
}

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