.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #0b454a;
    background-color: #ffffff;
}

.page__content {
    flex-grow: 1;
}
.info-block__item-title {
    white-space: nowrap;
}
.page__title {
    position: relative;
    padding-top: 2em;
    padding-bottom: 3em;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    z-index: 2;
}

.page__title::before {
    content: '';
    position: absolute;
    width: 200px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d8f2ef;
    z-index: -1;
}

.page__subtitle {
    margin-top: 0;
    margin-bottom: 2em;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.link-home {
    color: inherit;
    text-decoration: none;
}

.link-home:hover {
    color: #00898d;
}

.iconic-text {
    display: inline-flex;
    align-items: center;
}

.iconic-text__icon {
    width: 1em;
    height: 1em;
    margin-right: 0.75em;
    fill: currentColor;
    color: #00898d;
}

a.iconic-text {
    color: inherit;
    text-decoration: none;
}

a.iconic-text:hover {
    text-decoration: underline;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.pull-right {
    float: right;
}

.pull-right::after {
    clear: both;
}

.display-none {
    display: none;
}


img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.content {
    position: relative;
}

.content__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 50%;
    left: 0;
    background-color: #ffffff;
    background-image: url(img/content-bg.jpg);
    background-position: 0 0;
}

.content__main {
    position: relative;
}


@media (min-width: 576px) {

    .text-sm-left {
        text-align: left;
    }
    .page__title {
        padding-top: 1.5em;
        font-size: 32px;
    }
    .page__title::before {
        left: 120px;
        transform: none;
    }
}

@media (min-width: 768px) {

    .page__title {
        font-size: 38px;
    }
}

@media (min-width: 992px) {
    .display-lg-none {
        display: none;
    }
    .display-lg-block {
        display: block;
    }

    .text-lg-left {
        text-align: left;
    }
    .page__title {
        font-size: 42px;
    }
    .page__subtitle {
        font-size: 30px;
    }
    .content__background {
        right: 50%;
        bottom: 0;
    }
}



@media (max-width: 992px) {
    .link-home {
        /*margin-bottom: 15px;*/
        display: block;
    }
}
