.cards {
  position: relative;
  z-index: 2;
}
.cards .cards-title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 30px;
  margin-bottom: 90px;
}
.cards .cards-title span {
  font-size: 28px;
  line-height: 1.5;
}
.cards.three-col .cards-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
}
.cards.two-col .cards-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.cards.two-col .cards-content h4 {
  font-size: 50px;
}
.cards .image {
  height: 400px;
  background-size: cover !important;
  margin-bottom: 40px;
}
.card .content * {
  margin-bottom: 30px;
}
.cards.rl {
  background-color: #F2F0ED;
  padding: 90px 0;
}
.cards.rl .button {
  background-color: #B6ADA5;
  border: 1px solid #B6ADA5;
}
.cards.rl .button:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  color: #B6ADA5;
}
.steps .card .content {
  border: 1px solid rgba(0,0,0,.1);
  padding: 0 30px;
  border-radius: 20px;
  min-height: 270px;
}
.steps .card .content .link-tel {
  color: var(--primary-color);
}
.modal {
    box-shadow: none;
    max-width: 800px;
    padding: 40px 80px;
    font-family: 'relevantnormal', sans-serif;
}
.modal .modal-content {
    display: flex;
    gap: 30px;
    align-items: center;
}
.modal .modal-content > div:first-child {
    width: 100%;
    max-width: 30%;
}
.modal .modal-content > div:last-child {
    width: 100%;
    max-width: 70%;
}
.modal .image {
    height: 250px;
    background-size: cover !important;
    margin-bottom: 20px;
}
.modal .close-btn-img {
    position: relative;
    top: 0;
    right: 0;
}
.modal .modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
}
.modal h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0;
}
.blocker:first-of-type {
    display: none;
}
.blocker {
    background-color: rgba(0,0,0,.1);
}
.modal a.close-modal {
    display: none;
}
.cards .orange_asterix {
    position: absolute;
    max-width: 180px;
    bottom: -210px;
    left: 0;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .cards.three-col .cards-content,
    .cards.two-col .cards-content,
    .cards .cards-title {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }
    .card .content * {
        margin-bottom: 15px;
    }
    .cards .cards-title {
        grid-row-gap: 0;
        margin-bottom: 30px;
    }
    .cards .cards-title span {
        font-size: 17px;
        padding-left: 0
    }
    .cards .image {
        height: 300px;
    }
    .modal {
        max-width: 450px;
        padding: 20px 30px;
        top: 40px;
    }
    .modal .modal-content {
        flex-direction: column;
        gap: 0;
    }
    .modal .modal-content > div {
        max-width: 100% !important;
    }
    .modal .image {
        display: none;
    }
    .modal .modal-content > div:first-child p {
        margin: 0;
        font-weight: bolder;
    }
    .cards .orange_asterix {
        max-width: 100px;
        bottom: -150px;
    }
}
