html,
body {
    padding: 0;
    margin: 0;
}

body,
input,
textarea,
button {
    font-family: 'Open Sans', sans-serif;
    color: rgb(39, 36, 67);
}

.wrap {
    overflow: hidden;
}

.layout {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.layout__inner {
    margin: 0 14px;
}

.header {
    width: 100%;
    position: relative;
    min-height: 50px;
}

.header__label {
    padding: 80px 0 370px;
}

.header__title {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 24px;
    background-color: rgb(218, 57, 43);
    font-weight: 700;
    color: white;
    border-radius: 0 0 8px 8px;

    -webkit-box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;

    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
}

.header__image {
    position: absolute;
    width: 100%;
    height: 480px;
    background:
        -o-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 53%, rgba(255, 255, 255, 1) 71%),
        url("/media/cats.jpeg");
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 53%, rgba(255, 255, 255, 1) 71%),
        url("/media/cats.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 120px;
    left: 10%;
    z-index: -1;
}

.header__label-text {
    font-size: 60px;
    font-weight: 700;
}

.header__button-wrap {
    margin-top: 12px;
}

.header__menu {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;

    white-space: nowrap;
    border-radius: 0 0 8px 8px;

    -webkit-box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;

    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
}

.header__menu-item {
    padding: 12px 20px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin: 0;
    cursor: pointer;
}

.header__menu-item--active {
    background-color: rgb(218, 57, 43);
    color: white
}

.description {
    font-size: 16px;
}

.description+.description {
    margin-top: 10px;
    font-size: 16px;
}

.button {
    color: white;
    font-size: 18px;
    padding: 14px 22px;
    background-color: rgb(218, 57, 43);
    border-radius: 8px;
    border: 1px solid rgb(218, 57, 43);
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    display: inline-block;
}

.button:hover {
    color: inherit;
    background-color: white;
    border-color: rgb(39, 36, 67);
}

.button .icon {
    margin-right: 6px;
}

.panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.panel__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.panel__line+.panel__line {
    margin-left: 24px;
}

.panel__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    -webkit-box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;

    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
}

.panel__item--one {
    background-color: rgba(110, 82, 180);
}

.panel__item--two {
    background-color: rgb(17, 14, 25);
}

.panel__item--three {
    background-color: rgba(0, 92, 143);
}

.panel__item--four {
    background-color: rgb(252, 255, 114);
}

.panel__item+.panel__item {
    margin-left: 24px;
}

.panel__item:hover .panel__img {
    width: 160px;
    height: 160px;
}

.panel__img-wrap {
    position: relative;
    height: 280px;
}

.panel__img {
    width: 140px;
    height: 140px;

    -webkit-transition: all;

    -o-transition: all;

    transition: all;
    -webkit-transition-duration: 2.2s;
    -o-transition-duration: 2.2s;
    transition-duration: 2.2s;
    -webkit-transition-timing-function: cubic-bezier(.14, .4, .09, .99);
    -o-transition-timing-function: cubic-bezier(.14, .4, .09, .99);
    transition-timing-function: cubic-bezier(.14, .4, .09, .99);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.panel__label {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin-top: 16px;
    position: absolute;
    bottom: 22px;
    left: 22px;
}

.panel__background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(218, 57, 43)));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgb(218, 57, 43));
    background: linear-gradient(rgba(0, 0, 0, 0), rgb(218, 57, 43));
    -webkit-transition: top;
    -o-transition: top;
    transition: top;
    -webkit-transition-duration: 2.2s;
    -o-transition-duration: 2.2s;
    transition-duration: 2.2s;
    -webkit-transition-timing-function: cubic-bezier(.14, .4, .09, .99);
    -o-transition-timing-function: cubic-bezier(.14, .4, .09, .99);
    transition-timing-function: cubic-bezier(.14, .4, .09, .99);
}

.panel__item:hover .panel__background {
    top: 25%;
}

.subtitle {
    font-size: 22px;
    font-weight: 700;
}

.title {
    font-size: 50px;
    font-weight: 700;
}

.description-text {
    font-size: 18px;
}

.description {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

.block {
    margin-top: 140px;
}

.block__button-wrap {
    text-align: center;
    margin-top: 60px;
}

.block__title {
    text-align: center;
}

.block__subtitle {
    text-align: center;
}

.block__description {
    margin-top: 20px;
    text-align: center;
}

.block__image-wrap {
    margin: 60px auto 0 auto;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.block__subimage {
    position: absolute;
    top: 33%;
    left: 66%;
}

.block__image {
    display: inline-block;
    border-radius: 20px;
    width: 100%;
}

.cat-block {
    position: relative;
    margin-top: 60px;
}

.cat-block__background {
    /* background-image: url("/media/cats-back.png"); */
    width: 100%;
    height: 900px;

    background:
        -o-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 53%, rgba(255, 255, 255, 1) 71%),
        url("/media/cats-back.jpg");

    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 53%, rgba(255, 255, 255, 1) 71%),
        url("/media/cats-back.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cat-block__item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cat-block__item-avatar {
    -webkit-box-shadow: 7.07px 7.07px 10px 0px rgba(237, 75, 64, 0.1);
    box-shadow: 7.07px 7.07px 10px 0px rgba(237, 75, 64, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 30px;
    border: 8px solid white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cat-block__item-avatar--one {
    background-color: rgb(255, 112, 41);
}

.cat-block__item-avatar--two {
    background-color: rgb(188, 240, 220);
}

.cat-block__item-avatar--three {
    background-color: rgb(254, 203, 198);
}

.cat-block__item-avatar-img {
    width: 70%;
    height: 70%;
}

.cat-block__item {
    position: absolute;
    max-width: 430px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
}

.cat-block__item-inner {
    padding: 44px;
}

.cat-block__item--one {
    top: 0;
    left: 0;
}

.cat-block__item--two {
    right: 0;
    top: 0;
}

.cat-block__item--three {
    bottom: 0;
    left: 0;
}

.cat-block__item-right {
    margin-left: 14px;
}

.cat-block__item-title {
    font-size: 22px;
    font-weight: 700;
}

.cat-block__content {
    margin-top: 30px;
}

.cat-block__action {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.connect-block {
    margin-top: 50px;
    background-size: cover;
    background-position: bottom right;
    background-image: url("/media/sleep-cat_full.jpg");
    padding-top: 110px;
}

.connect-block__subtitle {
    color: white;
    text-shadow: rgb(0 0 0 / 50%) 0px 0px 10px
}

.connect-block__title {
    color: white;
    text-shadow: rgb(0 0 0 / 50%) 0px 0px 10px
}

.connect-block__content {
    position: relative;
    height: 500px;
    padding-top: 100px;
}

.connect-block__container {
    max-width: 400px;
    width: 100%;

    margin-left: 110px;

    border-radius: 20px;
    color: white;

    background-color: white;
    -webkit-box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgba(237, 75, 64, 0.1) 0px 2px 6px 2px;
    color: inherit;
}

.connect-block__container-inner {
    padding: 30px;
}

.top__table {
    width: 100%;
    margin: 12px 0;
}

.top__title {
    margin-top: 12px;
}

.top__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.top__line + .top__line {
    border-top: 1px solid rgb(200, 200, 200);
    margin-top: 12px;
    padding-top: 12px;
}

.top__avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 1000px;
}

.top__avatar {
    width: 30px;
}

.top__name {
    text-align: left;
    margin-left: 12px;
    word-break: break-word;
    flex: 1;
}

.top__achievements {
    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;

    text-align: left;
    margin-left: 12px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top__achievement + .top__achievement {
    margin-left: 6px;
}

.top__number {
    margin-right: 10px;
}

.top__avatar, .top__name, .top__age, .top__number, .top__achievements {
    vertical-align: middle;
    font-weight: normal;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .connect-block__container {
        color: white;
        background-color: transparent;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.connect-block__container-title {
    font-size: 34px;
    font-weight: 700;
}

.connect-block__description {
    margin-top: 20px;
}

.connect-block__telegram {
    font-size: 34px;
    margin-top: 20px;
    text-align: center;
}

.connect-block__tg-icon {
    color: #229ED9;
    margin-right: 8px;
}

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

.actions {
    text-align: center;
    margin-top: 50px;
}

.about-page {
    margin: 12px 0 24px;
}

.about-page__block {
    margin-top: 16px;
}

@media (max-width: 850px) {
    .header__label {
        padding-bottom: 320px;
    }

    .header__label-text {
        font-size: 50px;
    }

    .panel {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .panel__line+.panel__line {
        margin-left: 0;
        margin-top: 16px;
    }

    .cat-block__background {
        display: none;
    }

    .cat-block__item {
        position: initial;
        margin: auto;
    }

    .cat-block__item+.cat-block__item {
        margin-top: 16px;
    }

    .block {
        margin-top: 100px;
    }

    .title {
        font-size: 40px;
    }

    .connect-block__container {
        margin: auto;
    }
}

@media (max-width: 500px) {
    .header__label {
        padding-bottom: 270px;
    }

    .header__label-text {
        font-size: 40px;
    }

    .panel {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .panel__line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .panel__item+.panel__item {
        margin-left: 0;
        margin-top: 16px;
    }

    .panel__img-wrap {
        height: 210px;
    }

    .cat-block__item-inner {
        padding: 28px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 18px;
    }

    .block {
        margin-top: 70px;
    }

    .description {
        font-size: 16px;
    }

    .connect-block {
        padding-top: 50px;
    }

    .connect-block__content {
        padding-top: 50px;
        height: 400px;
    }

    .connect-block__subtitle {
        font-weight: normal;
    }
}