<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


.info-card {
    border: 1px solid var(--color);
    border-radius: .5rem;
    background: white;
    box-shadow: -3px 3px 3px 0px rgba( 35, 35, 35, .28);
    width: calc((100% / 5) - 24px);
    flex-direction: column;
    padding: 20px 12px;
    margin:12px;
    justify-content: space-between;
}


.info-cards .icon-identifier {
    align-self: center;
    padding: 40px 20px 20px;
}
.info-cards .icon-identifier img {
    width: 80px;
}

.info-cards .wrapper--inner {
    flex-direction: column;
}

.info-cards .wrapper--step {
    align-items: center;
    background: #f2f2f2;
    color: white;
    width: 100%;
    border-radius: 500px;
    padding: 4px;
    box-shadow: inset 0px 3px 3px rgba( 35, 35, 35, .28);
}

.info-cards .wrapper--step .step + span {
    color :#333;
}

.info-cards .step {
    margin-right: 12px;
    border-radius: 500px;
    background-color: #E44A05;
    font-size: 1.8em;
    color: #f2f2f2;
    font-weight: 800;
    padding: 20px;
    height: 48px;
    width: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info-cards p {
    margin: 40px 12px;
    line-height: 1.4;
    display: block;
    font-size: .85em;
}

.info-cards a {
  position: relative;
}

.info-cards p a {
    color: var(--color-med);
    font-weight: 600;
    padding: .5em 0;
    line-height: 1.4;
}


.info-cards p a::after {
    content:"";
    position: absolute;
    height: 4px;
    width: 0;
    background: transparent;
    bottom: -4px;
    left: 0px;
    transition: all .2s;
}

.info-cards p a:hover::after {
   background: #333;
   width: 100%;
}


.info-cards h4 {
    flex-direction: column; 
    align-items: center;
    text-align: center;
    margin: 0;
}

.info-cards h4 span:not(:last-of-type) {
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
}

.info-cards h4 span:last-of-type {
    font-size: 1.25em;
    font-weight: 700;

}


.info-cards h2 {
    flex-direction: column;
    line-height: 1;
    padding: 20px;
}

.info-cards h2 span:first-of-type {
  font-size: 1.5em;
  color: #E44A05;
  font-weight: 800;
}

.info-cards h2 span:last-of-type {
  font-size: 1em;
  font-weight: 300;
  color: #777;
}

.info-card.style-2 {
    flex-direction: column;
    width: calc(100% / 3);
    align-items: center;
    margin:1.5rem;
}

.info-cards {
    position: relative;
    

}

.info-card.style-2 .contact {
    padding: 2rem 1rem;
    border-radius: .5rem;
    border: 1px solid var(--contrast-less);
}

.info-cards::after {
    content:"";
    height: 60%;
    border-radius: .5rem;
    width: calc(100% + 4rem);
    left: -2rem;
    background-color: var(--compare-less);
    position: absolute;
    z-index: -1;
    transform-origin: center center;
    top: 20%;
}

.info-card.style-2 &gt; div {
    flex-direction: column;
    border-radius: .75rem;
    border: 1px solid var(--color);
    justify-content: space-between;
    height: 100%;
    padding: 2rem 1rem;
    z-index: 1;
    background-color: white;
    /* box-shadow: 0px 0px 3px rgba( 0, 193, 240, 1),
    inset 0px 0px 3px rgba( 0, 193, 240, 1); */
    transition: all .2s;
}

.info-card.style-2:hover {
    box-shadow: var(--float);
    transform: translateY(-3rem);
}

.info-card.style-2  p {
    margin-bottom: 1.5rem;
    height: -webkit-fill-available;
}
.info-card.style-2 h4 {
    font-size: 1.25rem;
    margin: 2rem  0;
    font-weight: 500;
    color: var(--color-med);
    justify-content: center;
}

.info-cards.style-2 {
    width: 100%;
    flex-direction: row;
    max-width: var(--max-web);
    justify-content: center;
    align-self: center;
    align-items: stretch;
    z-index: 1;
}


@media screen and (max-width: 480px) {


  .info-cards.style-2 {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .info-cards.style-2::after {
    display: none;
  }

  .info-card.style-2 {
    width: 80%;
    flex-shrink: 0; 
  }

    .info-card.style-2:hover {
      box-shadow:none;
      transform: none;
    }

}

</pre></body></html>