.page-info {
    position: relative;
}

.page-info__header {
    position: relative;
    background-image: url("../assets/info-header.jpg");
    background-position: center;
    background-size: cover;
    /*margin-top: 75px;*/
    color: #fff;
    text-align: center;
}

.page-info__header h1 {
    position: relative;
    z-index: 9;
    font-size: 2.25rem;
    font-weight: 600;
    padding: 10px 0;
}

.page-info__lines {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin: auto;
    max-width: 1030px;
    width: 75%;
    top: 155px;
}

.page-info__text {
    text-align: center;
    font-weight: 300;
    color: #333333;
}

.page-info__text span {
    color: #00925B;
}

.page-info__header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.32);
}

.page-info__row {
    display: flex;
    margin: auto;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-info__process {
    padding: 30px 30px;
    max-width: calc(100%/4);
}

.page-info__process div {
    width: 55px;
    height: 55px;
    color: #00925B;
    border: 2px solid #00925B;
    box-sizing: border-box;
    border-radius: 28px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin: auto auto 20px;
}

.page-info__process span {
    color: #00925B;
}

.page-info__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-info__item {
    flex-basis: 45%;
    position: relative;
}

.page-info__item img {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: auto;
}

.page_info__item_number {
    font-size: 130px;
    font-weight: 600;
    position: absolute;
    top: -20px;
    color: rgba(0, 0, 0, 0.05);
}

.page_info__item_header {
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    left: 80px;
}

.page-info .button {
    width: 180px;
    padding: 20px 6px;
}

@media (max-width: 1100px) {
    .page-info__lines {
        display: none;
    }
}

@media (max-width: 900px) {
    .page-info__header {
        margin-top: 71px;
    }

    .page-info__process {
        max-width: calc(100%/2);
    }
}

@media (max-width: 650px) {
    .page-info__item{
        flex-basis: 100%;
    }

    .page-info__process {
        max-width: 100%;
    }
}

/* FAQ columns */
.page-faq .row--faq {
    margin-top: 3rem;
}

.page-faq .row--faq .col {
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .page-faq .row--faq {
        display: flex;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .page-faq .row--faq .col {
        padding: 0 1rem;
        flex: 1;
    }
}