

/* END BOOTSTRAP CSS*/
:root {
    --scale: 10px;
    --main-color: #1d334a;
    --accent-success: #1fb770;
    --accent-success-light: #ecf7f0;
    --accent-primary: #4c92ff;
    --accent-primary-light: #eef4ff;
    --accent-warning: #c980ff;
    --accent-warning-light: #f9f1ff;
    --accent-danger: #ff5c00;
    --accent-danger-light: #ffefe8;
    --tone-1: #f1f4f7;
    --tone-2: #dfe6ec;
    --bs-gutter-x: 1.5rem
}

html {
    font-size: var(--scale)
}

body {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35;
    color: var(--main-color)
}

a {
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    text-decoration: none;
    color: inherit
}

a:hover {
    color: inherit;
    opacity: .7
}

.text-success {
    color: var(--accent-success)
}

@font-face {
    font-family: Bebas Neue;
    src: local("Bebas Neue Regular"), local("BebasNeueRegular"), url(/assets/bebasneueregular.woff2) format("woff2"), url(/assets/bebasneueregular.woff) format("woff"), url(/assets/bebasneueregular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Bebas Neue;
    src: local("Bebas Neue Bold"), local("BebasNeueBold"), url(/assets/bebasneuebold.woff2) format("woff2"), url(/assets/bebasneuebold.woff) format("woff"), url(/assets/bebasneuebold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

.button {
    display: inline-block;
    padding: 1.8rem 4.2rem;
    border: 1px solid var(--main-color);
    border-radius: 3rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.2;
    background: var(--main-color);
    color: #fff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.button--success {
    border-color: var(--accent-success);
    background: var(--accent-success)
}

.button--success.button--outline {
    color: var(--accent-success)
}

.button--success.button--outline:hover {
    background: var(--accent-success);
    color: #fff
}

.button--outline {
    background: none;
    color: var(--main-color)
}

.button--outline:hover {
    background: var(--main-color);
    color: #fff
}

.button:hover:enabled {
    opacity: .7
}

.section {
    padding: 5.4rem 0;
    padding: 8.8rem 0
}

.section__title {
    margin-bottom: 2rem;
    font-family: Bebas Neue, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    font-size: 4.5rem;
    line-height: 1.2
}

.section__caption {
    margin-bottom: 4rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .6;
    margin-bottom: 6.6rem
}

.section--fill {
    background-color: var(--tone-1)
}

.page {
    padding-top: 6.5rem
}

.page--fill {
    background-color: var(--tone-1)
}

.page h1 {
    margin-bottom: 1em;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 6.5rem;
    line-height: 1.2;
    text-transform: uppercase
}

.tag {
    display: inline-block;
    padding: 1.2rem 1.6rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -.02em;
    color: var(--tag-default-color);
    background: var(--tag-default-bg)
}

.tag--success {
    color: var(--accent-success);
    background-color: var(--accent-success-light)
}

.tag--primary {
    color: var(--accent-primary);
    background-color: var(--accent-primary-light)
}

.tag--warning {
    color: var(--accent-warning);
    background-color: var(--accent-warning-light)
}

.input {
    display: inline-block;
    width: 100%;
    padding: 1.7rem 2.5rem;
    border: 1px solid rgba(246, 244, 246, .3);
    border-radius: 1rem;
    background: none;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none
}

.input::-webkit-input-placeholder {
    color: #ffffff80
}

.input::-moz-placeholder {
    color: #ffffff80
}

.input:-ms-input-placeholder {
    color: #ffffff80
}

.input::-ms-input-placeholder {
    color: #ffffff80
}

.input::placeholder {
    color: #ffffff80
}

.input:focus {
    border: 1px solid #f6f4f6
}

.input--default {
    border: 1px solid rgba(29, 51, 74, .3);
    color: #1d334a
}

.input--default::-webkit-input-placeholder {
    color: #1d334a80
}

.input--default::-moz-placeholder {
    color: #1d334a80
}

.input--default:-ms-input-placeholder {
    color: #1d334a80
}

.input--default::-ms-input-placeholder {
    color: #1d334a80
}

.input--default::placeholder {
    color: #1d334a80
}

.input--default:focus {
    border: 1px solid #1d334a
}

.input.has-error {
    border-color: #ff4d4d
}

.input.has-error:focus {
    border-color: #ff4d4d
}

.textarea {
    display: inline-block;
    width: 100%;
    padding: 1.7rem 2.5rem;
    border: 1px solid rgba(246, 244, 246, .3);
    border-radius: 1rem;
    background: none;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #fff;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none
}

.textarea::-webkit-input-placeholder {
    color: #ffffff80
}

.textarea::-moz-placeholder {
    color: #ffffff80
}

.textarea:-ms-input-placeholder {
    color: #ffffff80
}

.textarea::-ms-input-placeholder {
    color: #ffffff80
}

.textarea::placeholder {
    color: #ffffff80
}

.textarea:focus {
    border: 1px solid #f6f4f6
}

.textarea--default {
    border: 1px solid rgba(29, 51, 74, .3);
    color: #1d334a
}

.textarea--default::-webkit-input-placeholder {
    color: #1d334a80
}

.textarea--default::-moz-placeholder {
    color: #1d334a80
}

.textarea--default:-ms-input-placeholder {
    color: #1d334a80
}

.textarea--default::-ms-input-placeholder {
    color: #1d334a80
}

.textarea--default::placeholder {
    color: #1d334a80
}

.textarea--default:focus {
    border: 1px solid #1d334a
}

.textarea.has-error {
    border-color: #ff4d4d
}

.textarea.has-error:focus {
    border-color: #ff4d4d
}

@-webkit-keyframes progress-page {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translate(-100%)
    }
    to {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

@keyframes progress-page {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translate(-100%)
    }
    to {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

.slider-pagination {
    margin-top: 20px;
    position: relative;
    text-align: center
}

@media (min-width: 992px) {
    .slider-pagination {
        text-align: left
    }
}

.slider-pagination .swiper-pagination-bullet {
    position: relative;
    width: 40px;
    height: 6px;
    background: rgba(31, 183, 112, .2);
    border-radius: 0;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    opacity: 1;
    overflow: hidden
}

@media (min-width: 992px) {
    .slider-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 4px
    }
}

.slider-pagination .swiper-pagination-bullet:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #1fb770;
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
    content: ""
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    -webkit-animation: 7s progress-page forwards;
    animation: 7s progress-page forwards
}

.layout {
    display: grid;
    gap: 23px;
    grid-template-columns:minmax(0, 1fr);
    padding-bottom: 6.5rem
}

@media (min-width: 992px) {
    .layout {
        grid-template-columns:357px 1fr
    }
}

.layout__aside > * {
    margin-bottom: 40px
}

.layout__aside.is-sticky {
    position: sticky;
    top: 15px
}

.layout-box {
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px
}

@media (min-width: 992px) {
    .layout-box {
        padding: 3.6rem 2.8rem
    }
}

.layout-box__title {
    margin-bottom: 1rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase
}

.layout-box__nav {
    margin: 0 -1.5rem
}

@media (min-width: 992px) {
    .layout-box__nav {
        margin: 0 -2.8rem
    }
}

.layout-box--large {
    padding: 1.5rem
}

@media (min-width: 992px) {
    .layout-box--large {
        padding: 5.9rem 4.8rem
    }
}

.layout-box--large .layout-box__title {
    font-size: 4.5rem;
    line-height: 1.2
}

@media (min-width: 992px) {
    .layout-box--large .layout-box__title {
        font-size: 6.5rem
    }
}

.layout-box--large .layout-box__nav {
    margin: 0 -1.5rem
}

@media (min-width: 992px) {
    .layout-box--large .layout-box__nav {
        margin: 0 -4.8rem
    }
}

.layout-box--sticky {
    position: sticky;
    top: 15px
}

.layout-aside-nav {
    margin: 0;
    padding: 0;
    border-top: 1px solid #f1f4f7;
    list-style: none
}

.layout-aside-nav li {
    border-bottom: 1px solid #f1f4f7
}

.layout-aside-nav li a {
    display: block;
    padding: 2.4rem 2.9rem
}

.layout-aside-nav li a.is-active {
    color: var(--accent-success);
    -webkit-box-shadow: inset 2px 0 0 var(--accent-success);
    box-shadow: inset 2px 0 0 var(--accent-success)
}

.way-point {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: opacity .6s cubic-bezier(.3, .69, .41, 1), -webkit-transform .6s cubic-bezier(.3, .69, .41, 1);
    transition: opacity .6s cubic-bezier(.3, .69, .41, 1), -webkit-transform .6s cubic-bezier(.3, .69, .41, 1);
    transition: transform .6s cubic-bezier(.3, .69, .41, 1), opacity .6s cubic-bezier(.3, .69, .41, 1);
    transition: transform .6s cubic-bezier(.3, .69, .41, 1), opacity .6s cubic-bezier(.3, .69, .41, 1), -webkit-transform .6s cubic-bezier(.3, .69, .41, 1)
}

.way-point.going-in {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.main-header {
    position: sticky;
    z-index: 100;
    top: 0;
    padding: 1rem 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 25px rgba(31, 183, 112, .12);
    box-shadow: 0 4px 25px #1fb7701f
}

@media (min-width: 992px) {
    .main-header {
        position: relative
    }
}

.main-header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-header__logo {
    margin-right: auto;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.main-header__logo img {
    width: 138px
}

@media (min-width: 992px) {
    .main-header__logo img {
        width: auto
    }
}

.main-header__button {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

@media (min-width: 992px) {
    .main-header__button {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.main-header__button .button {
    display: none
}

@media (min-width: 992px) {
    .main-header__button .button {
        display: block
    }
}

.main-header__button .button-mobile-phone {
    display: grid;
    place-content: center;
    width: 60px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    border-right: 1px solid var(--tone-1)
}

@media (min-width: 992px) {
    .main-header__button .button-mobile-phone {
        display: none
    }
}

.main-header__menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

@media (min-width: 992px) {
    .main-header__menu {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

.main-header-menu {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    padding: 3rem 1.5rem;
    background: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    overflow: auto
}

@media (min-width: 992px) {
    .main-header-menu {
        position: relative;
        top: initial;
        right: initial;
        bottom: initial;
        left: initial;
        width: auto;
        display: block;
        background: none;
        -webkit-backdrop-filter: initial;
        backdrop-filter: initial;
        -webkit-transform: initial;
        transform: initial;
        -webkit-transition: initial;
        transition: initial;
        overflow: initial;
        padding: 0 1.5rem
    }
}

.main-header-menu.is-opened {
    -webkit-transform: translateX(100%);
    transform: translate(100%)
}

@media (min-width: 992px) {
    .main-header-menu.is-opened {
        -webkit-transform: initial;
        transform: initial
    }
}

.main-header-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}

@media (min-width: 992px) {
    .main-header-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.main-header-menu ul li {
    margin-bottom: 3.5rem
}

@media (min-width: 992px) {
    .main-header-menu ul li {
        margin-right: 3rem;
        margin-bottom: 0
    }
}

@media (min-width: 992px) {
    .main-header-menu ul li:first-child {
        display: none
    }
}

.main-header-menu ul li a, .main-header-menu ul li span {
    display: block;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    color: #1d334a;
    text-align: right
}

@media (min-width: 992px) {
    .main-header-menu ul li a, .main-header-menu ul li span {
        font-family: Montserrat, sans-serif;
        font-size: 1.4rem;
        text-align: left
    }
}

.main-header-menu ul li a.router-link-active, .main-header-menu ul li span.router-link-active {
    color: var(--accent-success)
}

.main-header-menu__phone {
    display: block;
    margin-top: 10rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    text-align: right
}

@media (min-width: 992px) {
    .main-header-menu__phone {
        display: none
    }
}

.main-header-hamburger {
    display: block
}

@media (min-width: 992px) {
    .main-header-hamburger {
        display: none
    }
}

.button-hamburger {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 60px;
    height: 40px;
    outline: none
}

.button-hamburger:before, .button-hamburger:after {
    content: ""
}

.button-hamburger i, .button-hamburger:before, .button-hamburger:after {
    position: absolute;
    left: 17px;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-success);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.button-hamburger:before {
    top: 12px
}

.button-hamburger i {
    top: 19px
}

.button-hamburger:after {
    top: 27px
}

.button-hamburger.is-opened:before {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.button-hamburger.is-opened i {
    opacity: 0
}

.button-hamburger.is-opened:after {
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.main-popup {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    place-content: center;
    background: rgba(29, 51, 74, .6)
}

.main-popup.is-active {
    display: grid
}

.main-popup-window {
    position: relative;
    background: var(--main-color);
    max-width: 60rem;
    padding: 3rem 1.5rem;
    overflow: auto
}

@media (min-width: 992px) {
    .main-popup-window {
        padding: 3.5rem 8.4rem 6.4rem;
        border-radius: 10px
    }
}

.main-popup-window .main-popup-window__close {
    position: absolute;
    top: 21px;
    right: 16px;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.main-popup-window .main-popup-window__close:hover {
    opacity: .6
}

.main-popup-window__title {
    margin-bottom: 3.5rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff
}

@media (min-width: 992px) {
    .main-popup-window__title {
        font-size: 4.5rem
    }
}

.main-hero {
    position: relative
}

.main-hero__slider {
    position: relative;
    background-color: #7a7a7a;
    height: 42rem;
    overflow: hidden
}

@media (min-width: 992px) {
    .main-hero__slider {
        height: 64.5rem
    }
}

.main-hero__slider .swiper {
    height: 100%
}

.main-hero__over {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    pointer-events: none
}

.main-hero__next {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 20px
}

@media (min-width: 992px) {
    .main-hero__next {
        top: 285px;
        right: 0;
        bottom: initial;
        left: initial
    }
}

.main-hero-slide {
    position: relative;
    height: 100%
}

.main-hero-slide__cover {
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(39.77%, rgba(0, 0, 0, 0)), color-stop(86.56%, rgba(0, 0, 0, .4)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.77%, rgba(0, 0, 0, .4) 86.56%)
}

.main-hero-slide__cover img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .6
}

.main-hero-slide__logo {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 60px
}

@media (min-width: 992px) {
    .main-hero-slide__logo {
        top: 120px;
        right: 20px;
        bottom: initial;
        left: initial
    }
}

.main-hero-slide__logo img {
    max-height: 50px
}

@media (min-width: 992px) {
    .main-hero-slide__logo img {
        max-height: initial
    }
}

.main-hero-over {
    height: 100%;
    color: #fff
}

.main-hero-over__container {
    padding-top: 5.5rem
}

@media (min-width: 992px) {
    .main-hero-over__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        height: 100%;
        padding-bottom: 7rem
    }
}

.main-hero-over__title {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 4rem;
    font-family: Bebas Neue, sans-serif;
    line-height: 1
}

@media (min-width: 992px) {
    .main-hero-over__title {
        font-size: 6.5rem
    }
}

.main-hero-over__caption {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

@media (min-width: 992px) {
    .main-hero-over__caption {
        font-size: 2rem
    }
}

@media (min-width: 992px) {
    .main-hero-next {
        border: 1px solid #dfe6ec;
        border-radius: 10px 0 0 10px;
        background: #fff;
        width: 210px;
        padding: 20px 30px;
        cursor: pointer
    }
}

.main-hero-next__title {
    display: none
}

@media (min-width: 992px) {
    .main-hero-next__title {
        display: block;
        margin-bottom: 1.6rem;
        font-weight: 600;
        font-size: 1.2rem;
        line-height: 1.4;
        letter-spacing: -.02em;
        color: #24242366
    }
}

.main-hero-next__slider .swiper {
    border-radius: 6px
}

.main-hero-next__slider .swiper .swiper-wrapper {
    display: none
}

@media (min-width: 992px) {
    .main-hero-next__slider .swiper .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.main-hero-next-slide__image {
    width: 145px;
    height: 145px;
    margin-bottom: 1.5rem
}

.main-hero-next-slide__image img {
    display: block;
    border-radius: 6px
}

.main-hero-next-slide__title {
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -.02em
}

.main-hero-stories-container {
    display: block
}

@media (min-width: 992px) {
    .main-hero-stories-container {
        display: none
    }
}

.main-hero-stories {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
    overflow-x: auto;
    margin: 0 -15px;
    padding: 10px 15px
}

.main-hero-stories::-webkit-scrollbar {
    display: none
}

.main-hero-story--active .main-hero-story__image {
    -webkit-box-shadow: 0 0 0 3px var(--accent-success);
    box-shadow: 0 0 0 3px var(--accent-success)
}

.main-hero-story__image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: .6rem
}

.main-hero-story__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main-hero-story__title {
    font-style: normal;
    font-weight: 600;
    font-size: .9rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -.02em;
    color: #242423;
    width: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.main-activities {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden
}

.main-activities__image--desktop {
    display: none
}

@media (min-width: 992px) {
    .main-activities__image--desktop {
        display: block
    }
}

.main-activities__image--mobile {
    display: block
}

@media (min-width: 992px) {
    .main-activities__image--mobile {
        display: none
    }
}

.main-activities .bubble {
    margin: 5px
}



.bubble {
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #1d334a
}

.bubble__title {
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.bubble__year {
    margin-bottom: 1rem;
    font-size: 2.5rem
}

.bubble__graph {
    margin-bottom: 1rem
}

.bubble__graph svg {
    width: 100%
}

.bubble__desc {
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.bubble__gain {
    font-size: 2.5rem
}

.bubble--success {
    background: var(--accent-success-light)
}

.bubble--primary {
    background: var(--accent-primary-light)
}

.bubble--warning {
    background: var(--accent-warning-light)
}

.bubble--danger {
    background: var(--accent-danger-light)
}

.bubble--inner {
    background: #f4fbf8
}

.bubble--inner .bubble__inner {
    background: var(--accent-success-light)
}

.bubble__inner {
    display: grid;
    place-content: center;
    border-radius: 50%
}

.bubble__inner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px
}

.bubble__inner-desc {
    font-size: 1.5rem;
    opacity: .5
}

.bubble__inner-gain {
    font-size: 2.5rem;
    opacity: .5
}

.main-advantages {
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 2rem;
    border-radius: 2rem
}

@media (min-width: 992px) {
    .main-advantages {
        grid-template-columns:repeat(3, 1fr);
        padding: 5.4rem 6.5rem;
        background: #fff
    }
}

.main-advantages-item {
    display: block;
    height: 100%;
    padding: 3.5rem 2.6rem;
    border: 1px solid #dfe6ec;
    border-radius: 1rem;
    background: #fff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.main-advantages-item:hover {
    -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, .05);
    box-shadow: 0 4px 35px #0000000d;
    opacity: 1
}

.main-advantages-item__tag {
    margin-bottom: 3rem
}

.main-advantages-item__title {
    margin-bottom: 2rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 1.4
}

.main-advantages-item__caption {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #24242380
}

.main-advantages-item__caption a {
    color: var(--accent-success)
}

.main-projects {
    margin: 0 -1.5rem
}

@media (min-width: 992px) {
    .main-projects {
        margin: 0
    }
}

@media (min-width: 992px) {
    .main-projects .swiper .swiper-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -20px
    }
}

.main-projects .swiper .swiper-wrapper .swiper-slide {
    height: auto
}

@media (min-width: 992px) {
    .main-projects .swiper .swiper-wrapper .swiper-slide {
        width: 50%;
        padding: 0 20px 4.5rem
    }
}

.main-projects__all {
    width: 50%;
    float: right
}

.all-projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 1rem;
    color: var(--main-color);
    text-decoration: none
}

@media (min-width: 992px) {
    .all-projects {
        padding: 5rem 7rem
    }
}

.all-projects:hover {
    color: var(--main-color);
    opacity: .7
}

.all-projects__title {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

@media (min-width: 992px) {
    .all-projects__footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.all-projects__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.all-projects__next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    margin-top: 2rem;
    border-radius: 50%;
    background: var(--main-color)
}

@media (min-width: 992px) {
    .all-projects__next {
        margin-top: 0;
        margin-left: 7.5rem
    }
}

.portfolio-project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 1rem;
    background: #fff;
    overflow: hidden;
    height: 100%
}

@media (min-width: 992px) {
    .portfolio-project {
        display: grid;
        grid-template-columns:repeat(2, 1fr)
    }
}

.portfolio-project__cover {
    height: 14.6rem
}

@media (min-width: 992px) {
    .portfolio-project__cover {
        height: auto
    }
}

.portfolio-project__cover img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.portfolio-project__props {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 3rem
}

@media (min-width: 992px) {
    .portfolio-project__props {
        padding: 5rem 4rem 3.5rem
    }
}

.portfolio-project__title {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

.portfolio-project__description {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .5
}

.portfolio-project__button {
    margin-top: auto
}

.main-team {
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 2.4rem 4rem
}

@media (min-width: 992px) {
    .main-team {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }
}

.team-member {
    border: 1px solid #f1f4f7;
    border-radius: 1rem;
    background: #fff
}

.team-member__cover img {
    display: block;
    width: auto;
    /*height: 29rem*/
}

.team-member__props {
    padding: 2rem 1.3rem 2rem 2rem
}

.team-member__name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

.team-member__post {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .5
}

.main-posts {
    position: relative;
    margin: 0 -1.5rem
}

@media (min-width: 992px) {
    .main-posts {
        margin: 0
    }
}

.main-posts .swiper {
    border-radius: 1rem
}

.main-posts .swiper .swiper-wrapper {
    margin-bottom: -5rem;
    padding-bottom: 5rem
}

.main-posts .swiper .swiper-slide {
    height: auto
}

@media (min-width: 992px) {
    .main-posts .swiper .swiper-pagination {
        display: none
    }
}

.main-posts__buttons {
    display: none
}

@media (min-width: 992px) {
    .main-posts__buttons {
        display: block
    }
}

.button-prev, .button-next {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: grid;
    place-content: center;
    margin-top: -3rem;
    width: 6rem;
    height: 6rem;
    background: #fff;
    border-radius: 50%;
    border: .5rem solid var(--tone-1)
}

.button-prev:hover svg path, .button-next:hover svg path {
    stroke: var(--accent-success)
}

.button-prev {
    left: -4.5rem
}

.button-next {
    right: -4.5rem
}

.post-card {
    display: block;
    height: 100%;
    border-radius: 1rem;
    color: var(--main-color);
    overflow: hidden;
    text-decoration: none;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.post-card:hover {
    opacity: 1;
    color: inherit;
    -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, .05);
    box-shadow: 0 4px 35px #0000000d
}

.post-card:hover .post-card__title {
    color: var(--accent-success)
}

.post-card__cover {
    height: 16rem
}

.post-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-card__content {
    height: 100%;
    padding: 3rem 2.4rem;
    background: #fff
}

.post-card__category {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .5
}

.post-card__title {
    margin-top: 2rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

@media (min-width: 992px) {
    .main-quote {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10rem
    }
}

.main-quote__quote {
    margin-right: 2.5rem;
    font-size: 9.8rem;
    line-height: 1
}

.main-quote__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.main-quote__text {
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

@media (min-width: 992px) {
    .main-quote__text {
        font-size: 2.6rem
    }
}

.main-quote__text p:not(:last-child) {
    margin-bottom: 1em
}

.main-quote-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-quote-author__photo {
    margin-right: 2.5rem
}

.main-quote-author__content {
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .5
}

.main-footer {
    padding-top: 8.5rem;
    background: var(--main-color);
    color: #fff
}

.main-footer__title {
    margin-bottom: 1rem;
    font-family: Bebas Neue, sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase
}

@media (min-width: 992px) {
    .main-footer__title {
        margin-bottom: 2.5rem;
        font-size: 4.5rem;
        line-height: 1.2
    }
}

.main-footer__caption {
    margin-bottom: 4rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #fff;
    opacity: .5
}

.main-footer-feedback {
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .main-footer-feedback {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.main-footer-form {
    margin: 0 -1.5rem;
    padding: 4.5rem 1.5rem;
    background: #34475c
}

@media (min-width: 576px) {
    .main-footer-form {
        border-radius: 1rem
    }
}

@media (min-width: 992px) {
    .main-footer-form {
        margin: 0;
        padding: 4.5rem 4rem 2.5rem
    }
}

@media (min-width: 992px) {
    .main-footer-form__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.main-footer-form__policy {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #ffffff80;
    opacity: .5
}

@media (min-width: 992px) {
    .main-footer-form__policy {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
}

.main-footer-form__policy a {
    color: #fff;
    text-decoration: none
}

.main-footer-form__button {
    margin-bottom: 3.5rem
}

@media (min-width: 992px) {
    .main-footer-form__button {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 0;
        margin-left: 1rem
    }
}

.main-footer-form__button .button {
    width: 100%
}

.main-footer-contacts {
    margin-bottom: 6rem
}

@media (min-width: 992px) {
    .main-footer-contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.main-footer-contacts__logo {
    margin-bottom: 3.4rem
}

@media (min-width: 992px) {
    .main-footer-contacts__logo {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-bottom: 0
    }
}

.main-footer-contacts__email {
    margin-right: 4rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

.main-footer-contacts__phone {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -.02em
}


.main-footer-addresses ul {
    margin: 0;
    padding: 0;
    list-style: none
}

@media (min-width: 992px) {
    .main-footer-addresses ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.main-footer-addresses ul li {
    display: block;
    margin-bottom: 2rem;
    padding-left: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='14' viewBox='0 0 11 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.15 5.72694C10.15 6.84342 9.58928 8.08751 8.74482 9.30007C7.91337 10.4939 6.87975 11.5541 6.09484 12.2829C5.75076 12.6023 5.24924 12.6023 4.90516 12.2829C4.12025 11.5541 3.08663 10.4939 2.25518 9.30006C1.41072 8.08751 0.85 6.84342 0.85 5.72694C0.85 4.00483 1.48173 2.92063 2.31957 2.24811C3.18678 1.55203 4.35819 1.23281 5.5 1.23281C6.64181 1.23281 7.81322 1.55203 8.68043 2.24811C9.51827 2.92063 10.15 4.00483 10.15 5.72694Z' stroke='%231FB770' stroke-width='1.7'/%3E%3Ccircle cx='5.4997' cy='5.88447' r='1.26923' fill='%231FB770'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #fff
}

@media (min-width: 992px) {
    .main-footer-addresses ul li {
        margin-bottom: 0
    }
}

.main-footer-addresses ul li span {
    display: block;
    opacity: .5
}

@media (min-width: 992px) {
    .main-footer-addresses ul li span {
        display: inline
    }
}

@media (min-width: 992px) {
    .main-footer-addresses ul li:not(:last-child):after {
        padding-left: 3rem;
        padding-right: 3rem;
        content: "|"
    }
}

.main-footer-bottom {
    padding: 3.2rem 0
}

@media (min-width: 992px) {
    .main-footer-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.main-footer-bottom__soc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 3rem
}

@media (min-width: 992px) {
    .main-footer-bottom__soc {
        margin-bottom: 0
    }
}

.main-footer-bottom__copyright {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: -.02em;
    color: #fff
}

.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none
}

.social-list li a {
    display: grid;
    place-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #f1f4f7;
    border-radius: 12.6761px
}

.social-list li a svg {
    fill: #f1f4f7
}

.page-about-intro {
    padding-bottom: 10rem
}

.page-about-intro__title {
    margin-bottom: 1.5rem;
    font-family: Bebas Neue, sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2
}

.page-about-intro__caption {
    margin-bottom: 6.5rem;
    font-weight: 400;
    font-size: 2.3rem;
    line-height: 1.4;
    letter-spacing: -.02em
}

.page-about-intro__bubbles {
    display: grid;
    gap: 2rem
}

@media (min-width: 992px) {
    .page-about-intro__bubbles {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.page-about-intro__bubbles .bubble {
    margin: 0 auto
}

.page-about-advantages {
    padding: 13rem 0
}

.page-about-advantages__list {
    display: grid;
    gap: 4rem
}

@media (min-width: 992px) {
    .page-about-advantages__list {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

.page-about-advantage {
    text-align: center
}

.page-about-advantage__icon {
    margin-bottom: 3.5rem
}

.page-about-advantage__icon img {
    display: block;
    width: 5rem;
    height: 5rem;
    margin: 0 auto
}

.page-about-advantage__title {
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--accent-success)
}

.page-about-advantage__desc {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4
}

.page-projects-intro {
    margin-bottom: 5.5rem
}

.page-projects-intro__caption {
    margin-bottom: 1.2rem;
    font-style: normal;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #000;
    opacity: .6
}

.page-projects-intro__desc {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #000;
    opacity: .6
}

.page-projects-list {
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 4.5rem 4rem;
    padding-bottom: 15rem
}

@media (min-width: 992px) {
    .page-projects-list {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

.page-publications-list {
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 4.5rem 4rem;
    padding-bottom: 15rem
}

@media (min-width: 768px) {
    .page-publications-list {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 1200px) {
    .page-publications-list {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }
}

.page-coop-intro {
    margin-bottom: 10rem;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #000;
    opacity: .6
}

.page-coop-intro p {
    margin-bottom: 3rem
}

.page-coop-advantages {
    margin-bottom: 7.5rem
}

.page-coop-advantages__title {
    margin-bottom: 6.5rem;
    font-style: normal;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #000;
    opacity: .6
}

.page-coop-advantages__list {
    display: grid;
    gap: 4rem
}

@media (min-width: 992px) {
    .page-coop-advantages__list {
        grid-auto-flow: column
    }
}

.page-coop-advantage__icon {
    margin-bottom: 2.5rem
}

.page-coop-advantage__icon img {
    display: block;
    width: 5rem;
    height: 5rem
}

.page-coop-advantage__title {
    margin-bottom: 1.5rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000
}

.page-coop-advantage__desc {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #000;
    opacity: .6
}

.page-coop-features {
    padding: 7.6rem 0;
    background: var(--tone-1)
}

.page-coop-features__title {
    margin-bottom: 4.5rem;
    font-weight: 600;
    font-size: 3.4rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #000;
    opacity: .6
}

.page-coop-features__list {
    display: grid;
    gap: 4.5rem
}

@media (min-width: 992px) {
    .page-coop-features__list {
        grid-auto-flow: column
    }
}

.page-coop-feature {
    text-align: center
}

.page-coop-feature__icon {
    margin-bottom: 3.5rem
}

.page-coop-feature__icon img {
    width: 5rem;
    height: 5rem
}

.page-coop-feature__title {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4
}

.page-coop-feedback {
    padding: 9rem 0
}

@media (min-width: 992px) {
    .page-coop-feedback__inner {
        padding: 0 10rem
    }
}

.page-coop-feedback__title {
    margin-bottom: 4rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000
}

.page-coop-feedback-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7.4rem
}

.page-coop-feedback-intro__icon {
    display: grid;
    place-content: center;
    margin-right: 2rem;
    width: 10.4rem;
    height: 10.4rem;
    border-radius: 50%;
    border: 1px solid #f1f4f7
}

.page-coop-feedback-intro__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #000;
    opacity: .6
}

.page-coop-feedback-form {
    display: grid;
    gap: 2.8rem 1.5rem
}

@media (min-width: 992px) {
    .page-coop-feedback-form {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 992px) {
    .page-coop-feedback-form > div:last-child {
        position: relative;
        bottom: -3.8rem;
        display: grid;
        place-content: flex-end
    }
}

.page-coop-feedback-form > div:last-child .button {
    width: 100%
}

@media (min-width: 992px) {
    .page-coop-feedback-form > div:last-child .button {
        width: auto
    }
}

.page-coop-feedback-form__policy {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    opacity: .5
}

.page-contacts-item {
    margin-bottom: 2.5rem
}

.page-contacts-item__name {
    margin-bottom: .6rem;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #000;
    opacity: .6
}

.page-contacts-item__value {
    font-style: normal;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #000;
    opacity: .6
}

.page-contacts-item__value a {
    color: var(--accent-success)
}

.page-contacts-map {
    margin-top: 2rem;
    border-radius: 5px;
    overflow: hidden;
    max-height: 534px
}

.page-project-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 4.8rem
}

.page-project-intro__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 6rem
}

.page-project-intro__text {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #000;
    opacity: .6
}

.page-project-intro__link {
    margin-top: auto
}

.page-project-intro__logo {
    display: grid;
    place-content: center;
    width: 26rem;
    height: 17.5rem;
    border: 1px solid #dfe6ec;
    border-radius: 10px
}

.page-project-intro__logo img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-filter: brightness(.2);
    filter: brightness(.2)
}

.page-project-poster {
    margin-bottom: 6rem;
    border-radius: 5px;
    overflow: hidden
}

.page-project-poster img {
    display: block;
    max-width: 100%;
    height: auto
}

.page-project-content {
    margin-bottom: 6.3rem
}

.page-project-content h2 {
    margin-top: 7.4rem;
    margin-bottom: 1.4rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase
}

.page-project-content p, .page-project-content ul, .page-project-content ol {
    max-width: 48rem;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.35;
    color: #000;
    /*opacity: .6*/
}

.page-project-content ul li {
    margin-bottom: 1em
}

.page-project-gallery__title {
    margin-bottom: 2.5rem;
    font-family: Bebas Neue, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase
}

.page-project-gallery__list {
    display: grid;
    gap: 2.4rem
}

@media (min-width: 992px) {
    .page-project-gallery__list {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

.page-project-gallery__list > * {
    display: block;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover
}

.page-policy {
    margin-bottom: 10rem
}

.main-activities .bubble {
   
    width: 220px;
    height: 220px
}
/*
.main-activities {
    width: 100%;
    height: 1500px
}

@media (min-width: 992px) {
    .main-activities {
        height: 750px
    }
}

.main-activities__list {
    position: absolute;
    width: 100%;
    height: 1500px;
    overflow: hidden
}

@media (min-width: 992px) {
    .main-activities__list {
        height: 750px
    }
}

.main-activities .bubble {
    position: absolute
}

.main-activities .bubble:nth-child(1) {
    top: 30px;
    left: -40px;
    width: 220px;
    height: 220px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(1) {
        left: 20vw;
        top: 147px
    }
}

.main-activities .bubble:nth-child(2) {
    top: 0;
    right: -20px;
    width: 181px;
    height: 181px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(2) {
        left: 17vw;
        top: 95px
    }
}

.main-activities .bubble:nth-child(3) {
    top: 400px;
    right: -30px;
    width: 220px;
    height: 220px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(3) {
        left: 40vw;
        top: 0
    }
}

.main-activities .bubble:nth-child(4) {
    top: 290px;
    left: -10px;
    width: 217px;
    height: 217px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(4) {
        left: 60vw;
        top: 120px
    }
}

.main-activities .bubble:nth-child(5) {
    top: 660px;
    right: 30px;
    width: 240px;
    height: 240px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(5) {
        left: 80vw;
        top: 30px
    }
}

.main-activities .bubble:nth-child(6) {
    top: 200px;
    right: -20px;
    width: 181px;
    height: 181px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(6) {
        left: 74vw;
        top: 312px
    }
}

.main-activities .bubble:nth-child(7) {
    top: 760px;
    left: -60px;
    width: 181px;
    height: 181px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(7) {
        left: 26vw;
        top: 290px
    }
}

.main-activities .bubble:nth-child(8) {
    top: 570px;
    left: -10px;
    width: 245px;
    height: 245px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(8) {
        left: 43vw;
        top: 320px
    }
}

.main-activities .bubble:nth-child(9) {
    top: 1070px;
    left: 0;
    width: 403px;
    height: 403px
}

@media (min-width: 992px) {
    .main-activities .bubble:nth-child(9) {
        left: 72vw;
        top: 320px
    }
}
*/
.main-activities .bubble__inner {
    width: 220px;
    height: 220px
}

.bubble {
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: #1d334a
}

.bubble__title {
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.bubble__year {
    margin-bottom: 1rem;
    font-size: 2.5rem
}

.bubble__graph {
    margin-bottom: 1rem
}

.bubble__graph svg {
    width: 100%
}

.bubble__desc {
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.bubble__gain {
    font-size: 2.5rem
}

.bubble--success {
    background: var(--accent-success-light)
}

.bubble--primary {
    background: var(--accent-primary-light)
}

.bubble--warning {
    background: var(--accent-warning-light)
}

.bubble--danger {
    background: var(--accent-danger-light)
}

.bubble--inner {
    background: #f4fbf8
}

.bubble--inner .bubble__inner {
    background: var(--accent-success-light)
}

.bubble__inner {
    display: grid;
    place-content: center;
    border-radius: 50%
}

.bubble__inner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px
}

.bubble__inner-desc {
    font-size: 1.5rem;
    opacity: .5
}

.bubble__inner-gain {
    font-size: 2.5rem;
    opacity: .5
}

.page-404 {
    padding-bottom: 105px

}

.page-404-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.page-404-layout__side .button {
    margin-top: 46px



}

.page-404-layout__side p {
    margin-bottom: 2em
}
/*
.main-activities .bubble:nth-child(2),.main-activities .bubble:nth-child(7),.main-activities .bubble:nth-child(5){
    display: none;
}
*/