.round-btn {
    font-weight: 800;
    color: #fff;
    padding: 0.25rem 0.5rem;
    letter-spacing: 1px;
    box-shadow: 0 3px 6px rgba(60, 60, 59, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    font-size: 0.8rem;
    text-align: center;
}

.round-btn--row {
    flex-direction: row;
}

.round-btn:hover {
    color: #fff;
    background: #49b0de;
}

/*COMPONENTS*/
.article h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.article p {
    font-size: 1rem;
    line-height: 1.5;
}

.article__section {
    margin-bottom: 3rem;
}

.article__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    max-width: calc(2*15.875rem);
}

.article__gallery--float-right {
    margin-left: 0.5rem;
}

.article__image {
    max-width: 100%;
}

.banner {
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner--float-right {
    float: left;
    margin-left: 1rem;
}

.banner__title {
    font-family: "Helvetica", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.banner__subtitle {
    font-family: "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.banner__button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.banner__button>* {
    margin-top: 0.5rem;
}

.banner__button>*:not(:last-child) {
    margin-right: 0.5rem;
}

.banner__image {
    max-width: 100%;
    display: block;
    margin: auto;
}

.banner__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #424582;
}

.divider {
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 80%;
    height: 3px;
}

.fixed-button {
    /*position: fixed;*/
    display: flex;
    top: 0vh;
    /*transform: translateY(-100%);*/
    width: 100%;
    z-index: 100;
}

.information {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
}

.information__text {
    font-weight: 600;
    text-align: center;
    font-size: 0.8rem;
}

.item {
    position: relative;
    padding: 0.5rem 1.2rem 2.5rem;
    background: #E6F3FA;
}

.item::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -2rem;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #424582;
    box-shadow: 8px 8px 10px rgba(60, 60, 59, 0.16);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.item--nobg::before {
    background-color: transparent;
    border-radius: 0;
    background-image: url(../images/icons/check-icon.png);
    box-shadow: none;
    top: -2rem;
    left: 0rem;
    width: 3rem;
    height: 3rem;
}

.item--noIcon {
    padding: 0.5rem 1.2rem 0.5rem;
    background: #E6F3FA;
}

.item--exclamation:before {
    background-image: url(../images/icons/exclamation-icon.png);
}

.item--car:before {
    background-image: url(../images/icons/car-icon.png);
    background-size: 70%;
}

.item--penny:before {
    background-image: url(../images/icons/penny-icon.png);
}

.item--money:before {
    background-image: url(../images/icons/money-icon.png);
    background-size: 80%;
}

.item--phone:before {
    background-image: url(../images/icons/phone-icon.png);
    background-size: 40%;
}

.item--message:before {
    background-image: url(../images/icons/message-icon.png);
    background-size: 70%;
}

.item--margin {
    margin-top: 2rem;
}

.item__grid {
    justify-content: space-between;
    flex-direction: column;
}

.item__title {
    font-weight: 800;
    font-size: 1.1rem;
}

.item__sub-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.875rem;
}

.item__text {
    font-size: 0.6rem;
    font-weight: 600;
}

.item__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #61d16a;
    display: none;
}

.navbar-toggler {
    background: #49b0de;
    border-radius: 6px;
}

.navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar-line {
    width: 100%;
    height: 2px;
    background: #fff;
}

.navigation {
    padding: 1rem 1rem 1rem 0;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: -10px;
}

.navigation__list-number {
    list-style: none;
    counter-reset: li;
    margin-bottom: 0;
    text-align: left;
    padding-left: 10px;
}

.navigation__item-number {
    position: relative;
    counter-increment: li;
}
.navigation__list-bullet-none {
    display: none;
  }
  .navigation__list-bullet {
    list-style: none;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0;
  }