html {
    width: 100%;
    max-width: 100%;
}

.line,
.line-height {
    position: relative;
}

.line._active-scroll::before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #b6b3b0;
    animation: line 0.6s ease;
}

.line.line_white._active-scroll::before {
    background-color: rgba(255, 255, 255, 0.3);
}

.line._active-scroll:nth-of-type(2n)::before,
.line-right._active-scroll::before {
    left: auto;
    right: 0;
}

.line-top::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 1px;
    background-color: #b6b3b0;
    animation: line 2s ease;
}

.line-height._active-scroll-early-start::before {
    content: '';
    position: absolute;
    width: 1px;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #b6b3b0;
    animation: line-height 2s ease;
}

.line.line_d-big._active-scroll::before {
    animation: line 2s ease;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: calc(14px + 2 * ((100vw - 320px) / (1920 - 320)));
    min-height: 100vh;
    color: #4B433C;
    position: relative;
    min-width: 320px;
    width: 100%;
    max-width: 1920px;
    overflow-x: hidden;
    line-height: 1.2 !important;
    margin: 0 auto;
}

@media screen and (min-width: 1920px) {
    body {
        font-size: 16px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', Arial, sans-serif;
}

/* section  */
._section-top {
    padding-top: 80px;
}

._section {
    padding: 80px 0;
}

._section-bottom {
    padding-bottom: 80px;
}

/* section block */
._section-block-top {
    padding-top: 45px;
}

._section-block {
    padding: 45px 0;
}

._section-block-bottom {
    padding-bottom: 45px;
}

._section-main {
    padding: 30px 0 80px;
}

._section-60 {
    padding: 45px 0;
}


@media screen and (min-width: 768px) {

    /* section */
    ._section-top {
        padding-top: 120px;
    }

    ._section {
        padding: 120px 0;
    }

    ._section-bottom {
        padding-bottom: 120px;
    }

    /* section block */
    ._section-block-top {
        padding-top: 90px;
    }

    ._section-block {
        padding: 90px 0;
    }

    ._section-block-bottom {
        padding-bottom: 90px;
    }

    ._section-main {
        padding: 60px 0 120px;
    }

    ._section-60 {
        padding: 60px 0;
    }
}

main {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
    padding: 0 12px;
}

.container__wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .container {
        padding: 0 55px;
    }

    .container__wrapper {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1700px) {
    .container {
        padding: 0 75px;
    }

}

@media screen and (min-width: 1700px) {
    .container__wrapper {
        max-width: 80%;
        margin: 0 auto;
    }
}

.wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 90%;
    }
}

.border {
    border-top: 1px solid #b6b3b0;
    border-bottom: 1px solid #b6b3b0;
}

/* breadcrums */
.breadcrums {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrums__item {
    display: flex;
}

.breadcrums__item+.breadcrums__item {
    margin-left: 12px;
    position: relative;
}

.breadcrums__item+.breadcrums__item::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    background-color: rgba(61, 54, 47, 0.5);
    margin: auto;
    margin-right: 12px;
}

.breadcrums_white .breadcrums__item+.breadcrums__item::before {
    background-color: #8E8E8E;
}

.breadcrums__item:last-child .breadcrums__link {
    color: #3D362F;
}

.breadcrums_white .breadcrums__item:last-child .breadcrums__link {
    color: #fff;
}

.breadcrums__link {
    display: flex;
    color: rgba(61, 54, 47, 0.5);
    margin-bottom: 0;
}

.breadcrums_white .breadcrums__link {
    color: #8E8E8E;
}

/* / breadcrums */

/* title */
.title {
    font-size: calc(36px + 84 * ((100vw - 320px) / (1920 - 320)));
    color: #3D362F;
    font-weight: 700;
    padding: 45px 0 35px;
}

@media screen and (min-width: 768px) {
    .title {
        padding: 90px 0 70px;
    }
}

@media screen and (min-width: 1920px) {
    .title {
        font-size: 120px;
    }
}

.title+._section {
    padding-top: 0;
}

.title-1 {
    font-size: calc(18px + 16 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}

.title-2 {
    font-size: calc(15px + 9 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}

.title-3 {
    font-size: calc(15px + 7 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}

.title-4 {
    font-size: calc(16px + 4 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}

.title-5 {
    font-size: calc(14px + 5 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}

@media screen and (min-width: 1920px) {
    .title-1 {
        font-size: 34px;
    }

    .title-2 {
        font-size: 24px;
    }

    .title-3 {
        font-size: 22px;
    }

    .title-4 {
        font-size: 20px;
    }

    .title-5 {
        font-size: 19px;
    }
}

/* title block  */
.title-block {
    font-family: 'Inter', Arial, sans-serif;
    font-size: calc(14px + 5 * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #3D362F;
    width: 100%;
    max-width: calc(100% - calc(24px + 14 * ((100vw - 320px) / (1920 - 320))));
    position: relative;
    padding-bottom: 0;
    margin-bottom: 45px;
    display: flex;
}

.title-block.title-block_no-mb {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .title-block {
        margin-bottom: 90px;
    }

    .title-block.title-block_no-mb {
        margin-bottom: 0;
    }
}

.square {
    display: inline-flex;
    width: 100%;
    max-width: calc(12px + 4 * ((100vw - 320px) / (1920 - 320)));
    height: calc(12px + 4 * ((100vw - 320px) / (1920 - 320)));
    margin: auto calc(12px + 10 * ((100vw - 320px) / (1920 - 320))) auto 0;
    background-color: #3D362F;
}

.square_white {
    background-color: #FFFFFF;
}

@media screen and (min-width: 1920px) {
    .title-block {
        font-size: 19px;
        max-width: calc(100% - 38px);
        margin-bottom: 90px;
    }

    .square {
        max-width: 16px;
        max-height: 16px;
        margin: auto 22px auto 0;
    }
}

/* ellipse  */
.ellipse {
    position: absolute;
    right: -5%;
    top: -15%;
    z-index: -1;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    transform: scale(0.5);
    -moz-animation: scale 8s infinite alternate-reverse;
    -o-animation: scale 8s infinite alternate-reverse;
    -webkit-animation: scale 8s infinite alternate-reverse;
    animation: scale 8s infinite alternate-reverse;
}

@media screen and (min-width: 1200px) {
    .ellipse {
        right: -20%;
        top: -20%;
    }
}

.ellipse_left {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

@media screen and (min-width: 768px) {
    .ellipse_left {
        left: -35%;
        top: -50%;
        width: 100%;
        height: 200%;
        max-height: 200%;
    }
}

/* new  */

.ellipse_t-1 {
    width: 70vw;
    height: 70vw;
    background: #DCD4CF;
    -webkit-filter: blur(300px);
    -moz-filter: blur(300px);
    -o-filter: blur(300px);
    -ms-filter: blur(300px);
    filter: blur(300px);
    border-radius: 50%
}

.ellipse_t-2 {
    width: 70vw;
    height: 70vw;
    background: #E9D8B2;
    -webkit-filter: blur(500px);
    -moz-filter: blur(500px);
    -o-filter: blur(500px);
    -ms-filter: blur(500px);
    filter: blur(500px);
    border-radius: 50%
}

.ellipse_t-3 {
    width: 30vw;
    height: 30vw;
    background: #E9D8B2;
    -webkit-filter: blur(486px);
    -moz-filter: blur(486px);
    -o-filter: blur(486px);
    -ms-filter: blur(486px);
    filter: blur(486px);
}

.ellipse_t-4 {
    width: 15vw;
    height: 15vw;
    opacity: 0.4;
    background-color: #E9D8B2;
    -webkit-filter: blur(400px);
    -moz-filter: blur(400px);
    -o-filter: blur(400px);
    -ms-filter: blur(400px);
    filter: blur(400px);
}

.ellipse_z-4 {
    z-index: 4;
}

.ellipse_center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ellipse_left-bottom {
    left: -5%;
    bottom: -15%;
}

.ellipse_right-center {
    right: 0;
    top: 20%;
}

@media screen and (min-width: 1200px) {
    .ellipse_left-bottom {
        left: -25%;
        bottom: -25%;
        top: auto;
    }
}

.ellipse img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

._wave-letter {
    opacity: 0;
    transform: translateY(-50%);
    transition: all .8s linear;
}

._wave-letter._active-scroll {
    opacity: 1;
    transform: translateY(0);
}

._opacity-img-early-start,
._opacity-img {
    opacity: 0;
    transition: opacity 0.4s linear;
}

._opacity-duaration-big {
    opacity: 0;
    transition: opacity 0.4s linear;
}

._opacity-img-early-start._active-scroll-early-start,
._opacity-duaration-big._active-scroll,
._opacity-img._active-scroll {
    opacity: 1;
}

._draw-width {
    width: 0;
    transition: width .8s linear;
}

.key-contact,
._draw-width._active-scroll {
    width: 100%;
}

.key-contact__text {
    font-weight: 500;
    line-height: 140%;
}

._wave-letter span {
    opacity: 0;
    position: relative;
    transition: all .5s linear;
    display: inline-block;
}

._wave-letter._active-scroll span {
    opacity: 1;
}

.main-image {
    position: relative;
    transition: all .1s linear;
}

.team-grid-item {
    transition: all .3s linear;
}

._picture-full {
    padding-left: 0;
    padding-right: 0;
}

._picture-full picture {
    display: block;
    width: 100%;
    overflow: hidden;

}

._picture-full img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    transition: all .5s linear;
}

.btn2 {
    display: flex;
    align-items: center;
    padding-right: 0;
}

.btn2__container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.btn2__container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    background-color: inherit;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s linear;
}

.btn {
    transition: all .2s linear;
}

.btn2:hover .btn2__container::after {
    transform: scale(1.7);
}

.btn2__container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    display: block;
}

.screen-4 {
    background: #4B433C;
}

.screen-4 .ncontainer {
    opacity: 1;
}

.screen-4 .sq-hdr {
    color: rgba(255, 255, 255, 1);
}

.screen-4 span.sq-sq {
    background-color: rgba(255, 255, 255, 1);
}

.features-text p:last-child {
    margin-bottom: 0;
}

.practice-single {
    padding-bottom: 0;
    margin-bottom: 120px;
}

.practices-contacts img._practices-images {
    visibility: hidden;
    display: block;
    z-index: -1;
    opacity: 0;
    transition: opacity .4s linear;
}

.practices-contacts img._practices-images._practices-mouse {
    visibility: visible;
    display: block;
    z-index: 9;
    opacity: 1;
}

.tpl-practices-contacts>.ncontainer>.ncontainer-inner>.row>.col-md-12:nth-of-type(2n) .practices-contacts>img {
    right: calc(50% - 75px);
}

.tpl-practices-contacts>.ncontainer>.ncontainer-inner>.row>.col-md-12:nth-of-type(2n) .practices-contacts>img {
    right: calc(45% - 75px);
}

.team-form .btn.btn3,
.single-team-box>div:nth-child(3)>div._team-btn {
    transition: all .5s ease;
}

.team-form .btn.btn3:hover,
.single-team-box>div:nth-child(3)>div._team-btn:hover {
    color: #4B433C;
    background-color: #EAE6DD;
    background-image: url(../images/_arrrw2-bg.svg);
}

.single-career {
    padding-bottom: 63px;
}

.single-career:last-of-type {
    padding-bottom: 0;
}

.single-career-year._side-block,
.single-career {
    transition: all .2s ease;
}

.single-career.active::before {
    top: 0.7em;
}

.single-career.active {
    color: #FFFFFF;
    opacity: 1;
}

.practices-contacts .btn2 {
    background-image: url(../images/arrrw-bg.svg);
    color: #EAE6DD;
}

@media screen and (max-width: 1029px) {
    .practice-single {
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .single-career {
        padding-bottom: 30px;
    }

    .single-career:last-of-type {
        padding-bottom: 0;
    }
}

.picture__img {
    height: auto;
}

.picture-abs {
    display: block;
    width: 100%;
    position: relative;
}

.picture-abs::before {
    content: '';
    padding-bottom: 125%;
    display: block;
}

.picture-abs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: 50% 0;
}

.slick-list {
    margin: 0 -20px;
}

.slick-slide {
    margin: 0 20px;
}

.cart__position,
.cart__name {
    max-width: 100%;
    white-space: break-spaces;
    word-break: break-word;
    padding-top: 10px;
}

.cart__position {
    margin-bottom: 0;
}

.cart__position+.cart__name {
    padding-top: 0;
}

html[lang="en-GB"] .news__date {
    text-transform: unset;
}

.preview .preview__title {
    font-size: calc(18px + 14 * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
    padding: 25px 0;
}

.preview .preview__container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .preview .preview__container {
        flex-direction: column;
    }
}

.preview .preview__info,
.preview .preview__number {
    height: auto !important;
}

.preview .preview__number {
    margin: 0 0 auto;
}

@media screen and (min-width: 1920px) {
    .preview .preview__title {
        font-size: 32px;
    }
}

.preview .preview__picture {
    position: relative;
    height: max-content;
}

@media screen and (max-width: 1200px) {
    .preview .preview__picture>img {
        width: 100% !important;
    }
}

.preview .preview__link-text {
    margin-top: 0;
    width: max-content;
}

.block-title {
    position: relative;
    z-index: 2;
}

.bg-block__animation.tpl-single-team-page1 {
    background-image: none;
    position: relative;
    z-index: -1;
}

/* .bg-animation__animation {} */

.bg-animation__bg {
    width: 100%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.bg-animation__bg>img {
    width: auto;
    height: 100% !important;
}

.grid * {
    padding: 0;
    margin: 0;
    color: #ffffff;
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-gap: 40px;
    /*    grid-template-rows: auto; */
}

@media screen and (min-width: 1200px) {
    .grid {
        grid-template-columns: repeat(12, 1fr);
    }
}


.grid__item {
    background-color: #4B433C;
    grid-column: span 1;
    padding: 20px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

@media screen and (min-width: 768px) {
    .grid__item {
        padding: 30px 40px;
    }
}

@media screen and (min-width: 1200px) {
    .grid__item {
        grid-column: span 6;
    }
}

@media screen and (min-width: 1200px) {

    .grid__item:nth-of-type(1),
    .grid__item:nth-of-type(6n - 1),
    .grid__item:nth-of-type(6n + 1) {
        grid-column: span 6;
        grid-row: span 2;
        min-height: 500px;
    }
}

@media screen and (min-width: 1500px) {

    .grid__item:nth-of-type(1),
    .grid__item:nth-of-type(6n - 1),
    .grid__item:nth-of-type(6n + 1) {
        min-height: 400px;
    }
}

@media screen and (min-width: 1200px) {
    .grid__item.grid__item_normal {
        grid-column: span 6;
        min-height: auto;
        grid-row: span 1;
    }
}

.grid__item.grid__item_normal .grid__description {
    display: none !important;
}

.grid__date {
    display: grid;
    grid-template-columns: auto 1fr auto;
}

.grid__date-current {
    text-transform: lowercase;
}

html[lang="en-GB"] .grid__date-current {
    text-transform: inherit;
}

.grid__date-line {
    position: relative;
    margin: 0 16px;
}

.grid__date-line::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background-color: rgba(221, 214, 200, 0.3);
}

.grid__info {
    display: grid;
    align-self: center;
    padding: 30px 0;
}

.grid__title {
    font-weight: 500;
}

.grid__title+.grid__description {
    margin-top: 36px;
}

.grid__btn {
    display: grid;
    justify-self: end;
}

.grid__btn .btn2__container {
    margin-left: 15px;
}

.grid__description {
    display: none;
}

@media screen and (min-width: 1200px) {

    .grid__item:nth-of-type(1) .grid__description,
    .grid__item:nth-of-type(6n - 1) .grid__description,
    .grid__item:nth-of-type(6n + 1) .grid__description {
        display: grid;
    }
}

.load-more-link {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

.load-more-link>button {
    color: #3D362F;
    background-color: transparent;
    background-image: url(../images/arrr.svg);
}

.load-more-link>button:hover {
    background-image: url(../images/arrrw2.svg);
    background-color: #3D362F;
    color: #fff;
}

@media screen and (min-width: 1200px) {
    .load-more-link {
        margin-top: 90px;
        padding-left: 50%;
        justify-content: flex-start;
    }

    .load-more-link_news {
        padding-left: calc(50% + 20px);
    }
}

.s-news {
    width: 100%;
    position: relative;
}

/* category-2 */
.category-2__content {
    display: flex;
    flex-direction: column;
}

.category-2__section {
    width: 100%;
}

/* cart-2 */
.cart-2 {
    width: 100%;
}

.cart-2__block {
    width: 100%;
}

.cart-2+.cart-2 .cart-2__block {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(75, 67, 60, 0.3);
}

@media screen and (min-width: 1200px) {
    .cart-2+.cart-2 .cart-2__block {
        margin-top: 120px;
        padding-top: 120px;
    }
}

.cart-2__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .cart-2__wrapper {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }
}

.cart-2__index-text,
.cart-2__index {
    display: none;
}

@media screen and (min-width: 768px) {
    .cart-2__index {
        position: relative;
        display: flex;
        padding-left: calc(50px + 80 * ((100vw - 320px) / (1920 - 320)));
    }

    .cart-2__index-text {
        position: absolute;
        left: 0;
        top: 0;
        display: inline-block;
        color: rgba(61, 54, 47, 0.3);
        transform: rotate(-90deg) translateX(-100%);
        transform-origin: 0 0;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        font-weight: 700;
        font-size: calc(30px + 67 * ((100vw - 320px) / (1920 - 320)));
        line-height: 100%;
        white-space: nowrap;
        width: max-content;
        height: max-content;
        padding-right: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .cart-2__index {
        padding-left: 130px;
    }

    .cart-2__index-text {
        font-size: 97px;
    }
}

.cart-2__picture {
    position: relative;
    width: 100%;
    display: flex;

}

@media screen and (min-width: 768px) {
    .cart-2__picture {
        width: 39%;
        margin-right: calc(40px + 40 * ((100vw - 320px) / (1920 - 320)));
    }
}

@media screen and (min-width: 1920px) {
    .cart-2__picture {
        margin-right: 80px;
    }
}

.cart-2__picture::before {
    content: '';
    display: block;
    padding-bottom: 60%;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .cart-2__picture::before {
        width: 472px;
        padding-bottom: 84%;
    }
}

@media screen and (min-width: 1920px) {
    .cart-2__picture::before {
        width: 472px;
    }
}

.cart-2__picture img {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
}

.cart-2__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    padding-top: 30px;
}

@media screen and (min-width: 768px) {
    .cart-2__info {
        justify-content: space-between;
        padding-top: calc(13px + 5 * ((100vw - 320px) / (1920 - 320)));
    }
}

@media screen and (min-width: 1920px) {
    .cart-2__info {
        justify-content: space-between;
        padding-top: 18px;
    }
}

.cart-2__date {
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .cart-2__date {
        justify-content: flex-start;
    }
}

.cart-2__date-item {
    font-weight: 500;
    font-size: calc(14px + 6 * ((100vw - 320px) / (1920 - 320)));
    line-height: 140%;
    text-transform: uppercase;
    color: #3D362F;
}

@media screen and (min-width: 1920px) {
    .cart-2__date-item {
        font-size: 20px;
    }
}

.cart-2__date-itme_year {
    margin-left: 20px;
}

.cart-2__title {
    font-weight: 500;
    line-height: 140%;
    color: #3D362F;
    padding: 20px 0;
}

.preview__link-text {
    justify-content: flex-end;
}

@media screen and (min-width: 1200px) {
    .preview__link-text {
        justify-content: flex-start;
    }
}

.cart-2__link {
    width: 100%;
}

.cart-2__url {
    padding: 0;
}

@media screen and (min-width: 768px) {
    .cart-2__link {
        width: max-content;
    }
}

.p-news {
    width: 100%;
    position: relative;
}

.banner {
    padding-top: 60px 0 0;
}

.banner__info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1200px) {
    .banner__info {
        flex-direction: row;
        align-items: stretch;
    }
}

.main-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
}

.main-title__text {
    width: 100%;
    display: flex;
    font-size: calc(45px + 85 * ((100vw - 320px) / (1200 - 320)));
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 800;
}

.main-title__text_small {
    font-size: calc(30px + 85 * ((100vw - 320px) / (1200 - 320)));
}

@media screen and (min-width: 1200px) {
    .main-title__text {
        font-size: calc(65px + 60 * ((100vw - 1200px) / (1920 - 1200)));
    }
}

@media screen and (min-width: 1920px) {
    .main-title__text {
        font-size: 130px;
    }
}

.main-title__text_second {
    justify-content: flex-end;
    font-weight: 400;
}

.banner__description {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 20px;
}

@media screen and (min-width: 700px) {
    .banner__description {
        margin-top: 15px;
        margin: 0 0 calc(12px + 18 * ((100vw - 1200px) / (1920 - 1200))) auto;
        min-width: 355px;
        max-width: 355px;
    }
}

@media screen and (min-width: 1200px) {
    .banner__description {
        margin-top: 0;
        margin: 0 0 calc(12px + 12 * ((100vw - 1200px) / (1920 - 1200))) calc(40px + 40 * ((100vw - 1200px) / (1920 - 1200)));
    }
}

@media screen and (min-width: 1920px) {
    .banner__description {
        margin: 0 0 24px 80px;
    }
}

.banner__description-text {
    font-size: 12px;
    line-height: 150%;
    margin: 0;
    position: relative;
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 700px) {
    .banner__description-text {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .banner__description-text {
        font-size: 14px;
        width: 100%;
    }
}

@media screen and (min-width: 700px) {
    .banner__description-text::before {
        content: '';
        display: inline-flex;
        padding-left: 50px;
    }
}

@media screen and (min-width: 1920px) {
    .banner__description-text::before {
        padding-left: 50px;
    }
}

.services {
    width: 100%;
    position: relative;
}

.grid-two {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-columns: 1fr 1fr;
    row-gap: 30px;
}

@media screen and (min-width: 768px) {
    .grid-two {
        grid-template-columns: repeat(2, 1fr);
        column-gap: calc(60px + 100 * ((100vw - 768px) / (1920 - 768)));
        row-gap: 50px;
    }
}

@media screen and (min-width: 1920px) {
    .grid-two {
        column-gap: 160px
    }
}

.grid-two__item-text {
    font-weight: 500;
    color: #3D362F;
}

.grid-two__item-text_title {
    padding: 0 0 15px 0;
    margin: 0 0 24px 0;
}

.grid-two__item-text_description p,
.services__item-description p {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 0;
}

.grid-two__item-text_description p+p,
.services__item-description p+p {
    margin-bottom: 1rem;
}

.partners,
.partners__section {
    width: 100%;
}

.partners {
    position: relative;
}

.partners__title {
    width: 100%;
    line-height: 140%;
    font-weight: 500;
    position: relative;
}

@media screen and (min-width: 768px) {
    .partners__title::before {
        content: '';
        display: inline-flex;
        padding-left: calc(60px + 75 * ((100vw - 768px) / (1920 - 768)));
    }
}

.partners__description._pt {
    margin-top: 0;
}

.partners__description {
    font-weight: 500;
    line-height: 140%;
    width: 100%;
    padding-top: 45px;
}

@media screen and (min-width: 768px) {
    .partners__description {
        padding-top: 90px;
    }
}

.partners__description p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    width: 100%;
    margin: 0;
}

.partners__description p+p {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .partners__description {
        margin-top: 120px;
    }
}

@media screen and (min-width: 1200px) {
    .partners__description {
        font-weight: 500;
        line-height: 140%;
        width: calc(50% - 80px);
        margin-left: auto;
        margin-right: 0;
        margin-top: 0;
    }

    .partners__description p+p {
        margin-top: 25px;
    }
}

.teams {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.teams_descktop {
    display: none;
}

@media screen and (min-width: 1200px) {
    .teams_descktop {
        display: flex;
    }
}

.teams__block {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.teams__big-picture {
    width: 100%;
}

.teams__big-picture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.teams__big-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 25px 0;
}

@media screen and (min-width: 1200px) {
    .teams__big-info {
        width: calc(50% - 80px);
    }
}

.teams__big-title {
    font-weight: 500;
    color: #3D362F;
    word-break: break-word;
}

.teams__big-position {
    font-weight: 500;
    padding-bottom: 0;
    word-break: break-word;
}

.teams__big-bottom {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
}

.teams__big-link {
    margin: auto 0 auto auto;
}

.teams__block_left,
.teams__block_right {
    width: calc(50% - 80px);
}

/* scroll down  */
.teams__block_scroll {
    width: 160px;
    overflow: hidden;
    padding-top: 60px;
    cursor: s-resize;
}

.teams__block_scroll svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
}

.teams__block_scroll svg #wheel {
    fill: none;
    stroke: #4B433C;
    stroke-width: 20px;
    -moz-animation: scroll ease 2s infinite;
    -o-animation: scroll ease 2s infinite;
    -webkit-animation: scroll ease 2s infinite;
    animation: scroll ease 2s infinite;
}

#mouse {
    fill: none;
    stroke: #4B433C;
    stroke-width: 20px;
}

.teams__line {
    cursor: s-resize;
}

.teams__grid-picture {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.teams__grid-picture img {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teams__grid-name {
    font-size: calc(12px + 8 * ((100vw - 1200px) / (1920 - 1200)));
    letter-spacing: 0.035em;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: -14%;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: 0 0;
    line-height: 100%;
    width: max-content;
    height: max-content;
    display: inline-block;
}

@media screen and (min-width: 1920px) {
    .teams__grid-name {
        font-size: 20px;
    }
}

.teams__grid {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-auto-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: calc(20px + 30 * ((100vw - 1200px) / (1920 - 1200)));
    column-gap: calc(40px + 40 * ((100vw - 1200px) / (1920 - 1200)));
}

@media screen and (min-width: 1920px) {
    .teams__grid {
        row-gap: 50px;
        column-gap: 80px;
    }
}

.teams__grid-item {
    position: relative;
    cursor: pointer;
}

.teams__line-wrapper {
    width: 5px;
    position: absolute;
    top: 0;
    right: -1.7px;
    background: #4B433C;
    height: 20.5% !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.teams-mob {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
}

@media screen and (min-width: 800px) {
    .teams-mob {
        grid-auto-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 45px;
    }
}

@media screen and (min-width: 1024px) {
    .teams-mob {
        grid-auto-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .teams-mob {
        display: none;
    }
}

.teams-mob__title {
    font-weight: 500;
}

.teams-mob__picture {
    position: relative;
    width: 100%;
    display: block;
}

.teams-mob__picture::before {
    content: '';
    display: block;
    padding-top: 125%;
}

.teams-mob__picture img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: 0 50%;
    display: block;
    width: 100%;
    height: 100%;
}

.clients {
    width: 100%;
    position: relative;
}

.clients__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
    .clients__content {
        flex-direction: row;
    }

}

.clients__item_left {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .clients__item_left {
        width: calc(50% - 80px);
        position: relative;
        left: 0;
        transform: translateX(0);
    }
}

.clients__animation {
    z-index: 0;
    opacity: .2;
}

.clients__item_right {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .clients__item_right {
        width: calc(100% - (50% - 80px));
        text-align: left;
    }
}

.clients__picture {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.clients__picture::before {
    content: '';
    width: 100%;
    display: block;
    padding-top: 35%;
}

@media screen and (min-width: 768px) {
    .clients__picture::before {
        padding-top: 98%;
    }
}

.clients__picture img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: 50% 0;
    width: 100%;
    height: 100%;
    display: block;
}

.clients__title {
    font-weight: 500;
    position: relative;
}

.clients__title::before {
    content: '';
    display: inline-flex;
    padding-left: calc(0px + 150 * ((100vw - 320px) / (1920 - 320)));
}

.specifics,
.specifics__section {
    width: 100%;
}

.specifics__content {
    display: flex;
    flex-direction: column;
}

.specifics__item_right.line-height::before {
    content: unset;
}

@media screen and (min-width: 768px) {
    .specifics__content {
        flex-direction: row;
    }

    .specifics__item_right.line-height::before {
        content: '';
    }
}

.specifics__item {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .specifics__item {
        width: 50%;
    }

    .specifics__item_left {
        padding-right: calc(30px + 50 * ((100vw - 768px) / (1920 - 768)));
    }

    .specifics__item_right {
        padding-left: calc(30px + 50 * ((100vw - 768px) / (1920 - 768)));
    }
}

@media screen and (min-width: 1920px) {
    .specifics__item_left {
        padding-right: 80px;
    }

    .specifics__item_right {
        padding-left: 80px;
    }
}

.practics {
    width: 100%;
}

.practics__title {
    width: 100%;
    line-height: 140%;
    font-weight: 500;
    position: relative;
}

.contacts {
    width: 100%;
    overflow: hidden;
}

.contacts__section,
.contacts {
    width: 100%;
}

.contacts__content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contacts__content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}


@media screen and (min-width: 768px) {
    .contacts__content-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.contacts__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.contacts__item_left,
.contacts__item_right {
    max-width: 100%;
}

.contacts__item_right {
    margin-top: 30px;
}

.contacts__item_left {
    position: relative;
}

@media screen and (min-width: 768px) {
    .contacts__item_left {
        max-width: 40%;
        margin-right: calc(20px + 60 * ((100vw - 320px) / (1920 - 320)));
        padding-right: calc(20px + 60 * ((100vw - 320px) / (1920 - 320)));
    }

    .contacts__item_right {
        max-width: 60%;
        margin-top: 0;
    }
}

@media screen and (min-width: 1920px) {
    .contacts__item_left {
        margin-right: 80px;
        padding-right: 80px;
    }
}

.contacts__picture {
    width: 100%;
    height: 100%;
    display: flex;
}

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

.contacts__title {
    padding: 0;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 0.75;
}

.contacts__subtitle {
    padding-bottom: 0;
}

.contacts__subtitle+.contacts__content-wrapper {
    margin-top: 40px;
}

@media screen and (min-width: 1024px) {
    .contacts__title {
        margin-bottom: calc(30px + 20 * ((100vw - 1024px) / (1920 - 1024)));
    }

    .contacts__subtitle+.contacts__content-wrapper {
        margin-top: 0;
    }
}

@media screen and (min-width: 1920px) {
    .contacts__title {
        margin-bottom: 50px;
    }
}

.contacts__subtitle_desktop,
.contacts__title_desktop {
    display: none;
}

@media screen and (min-width: 1024px) {

    .contacts__subtitle_desktop,
    .contacts__title_desktop {
        display: block;
    }
}

.contacts__subtitle_mobile,
.contacts__title_mobile {
    display: block;
}

@media screen and (min-width: 1024px) {

    .contacts__subtitle_mobile,
    .contacts__title_mobile {
        display: none;
    }
}

.contacts__info {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contacts__info._section-block-top {
    padding-top: 0;
}

@media screen and (min-width: 1024px) {
    .contacts__info._section-block-top {
        padding-top: 90px;
    }

    .contacts__info {
        flex-direction: row;
        align-items: stretch;
        flex-grow: 1;
        justify-content: space-between;
        min-height: auto;
    }
}

.contacts__info-item {
    width: 100%;
}

.contacts__info-item_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts__info-item_right {
    display: flex;
    flex-grow: 1;
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .contacts__item_left {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}

@media screen and (min-width: 1024px) {
    .contacts__info-item_left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 54%;
    }

    .contacts__info-item_right {
        width: 37%;
        flex-grow: 0;
        margin-top: 0;
    }
}

.contacts__info-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 25vh;
}

@media screen and (min-width: 768px) {
    .contacts__info-map {
        min-height: auto;
    }
}

.contacts__info-main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contacts__info-social {
    display: flex;
    margin-top: 30px;
    justify-content: flex-end;
}

@media screen and (min-width: 1024px) {
    .contacts__info-social {
        justify-content: flex-start;
    }
}

.contacts__info-txt_img+.contacts__info-txt_img {
    margin-left: 20px;
}

.contacts__info-txt {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts__info-social .contacts__info-txt {
    border: none;
}

.contacts__info-txt+.contacts__info-txt {
    border-top: none;
}

.contacts__info-txt_img {
    width: 31px;
    height: 31px;
}

.contacts__info-txt_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contacts__info-icon_mobile {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts__info-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.contacts__info-text {
    width: calc(100% - 50px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 21px 16px;
}

@media screen and (min-width: 768px) {

    .contacts__info-txt+.contacts__info-txt {
        margin-top: 15px;
    }

    .contacts__info-txt {
        align-items: flex-start;
        border: none;
    }

    .contacts__info-icon_mobile {
        display: none;
    }

    .contacts__info-text {
        width: 100%;
        border-left: none;
        padding: 0;
    }
}





.team-main__info {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .team-main__info {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }
}

.team-main__info-item {
    display: flex;
}

.team-main__info-item_left {
    flex-direction: column;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 45px;
}

.team-main__info-item_right {
    justify-content: flex-end;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .team-main__info-item_left {
        width: 60%;
        margin-top: 0;
    }

    .team-main__info-item_right {
        width: 35%;
    }
}

@media screen and (min-width: 1024px) {
    .team-main__info-item_left {
        width: 77%;
    }

    .team-main__info-item_right {
        width: 20%;
    }
}

.team-main__info-item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-main__info-row {
    display: flex;
    width: 100%;
}

.team-main__info-row_category {
    padding: 30px 25px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .team-main__info-row_category {
        padding: calc(10px + 10 * ((100vw - 320px) / (1920 - 320))) calc(20px + 35 * ((100vw - 320px) / (1920 - 320)));
    }
}

.team-main__info-row:not(:first-of-type) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.team-main__info-row:first-of-type {
    padding: 20px 0;
}

.team-main__info-row-text {
    padding: 0 25px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

.team-main__info-row-text_desktop {
    display: none;
}

.team-main__info-row-text_mobile {
    text-align: left;
}

@media screen and (min-width: 1024px) {
    .team-main__info-row-text {
        padding: 0 calc(10px + 10 * ((100vw - 320px) / (1920 - 320)));
    }
}

.team-main__info-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-bottom: 0;
    cursor: pointer;
    transition: opacity .3s linear;
}

.team-main__info-link:not(:first-of-type) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.team-main__info-row_link {
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .team-main__info-link {
        width: 50%;
        padding: 20px;
    }

    .team-main__info-link:nth-of-type(3n) {
        border-left: none;
    }

    .team-main__info-link:not(:first-of-type) {
        border-top: none;
    }

    .team-main__info-link:nth-of-type(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .team-main__info-link+.team-main__info-link,
    .team-main__info-row-text+.team-main__info-row-text:not(.team-main__info-row-text_mobile) {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
}

@media screen and (min-width: 1024px) {

    .team-main__info-link {
        width: auto;
        padding: calc(10px + 10 * ((100vw - 320px) / (1920 - 320)));
        justify-content: center;
    }

    .team-main__info-link:nth-of-type(3n) {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .team-main__info-link:nth-of-type(n + 3) {
        border-top: none;
    }

    .team-main__info-row_link {
        flex-wrap: nowrap;
    }

    .team-main__info-row-text {
        font-size: calc(12px + 6 * ((100vw - 768px) / (1920 - 768)));
    }

    .team-main__info-row-text_mobile {
        display: none;
    }

    .team-main__info-row-text_desktop {
        display: flex;
    }
}

@media screen and (min-width: 1920px) {

    .team-main__info-row_category {
        padding: 20px 55px;
    }

    .team-main__info-row:first-of-type {
        padding: 20px 0;
    }

    .team-main__info-row-text {
        font-size: 18px;
        padding: 0 20px;
    }

    .team-main__info-link {
        padding: 20px;
    }
}

.team-main__info-link:hover {
    opacity: 0.7;
}



.team-main__info-link-text {
    margin-bottom: 0;
    padding: 20px 25px;
}

@media screen and (min-width: 768px) {

    .team-main__info-link-text {
        margin-bottom: 0;
        padding: 0;
    }
}

@media screen and (min-width: 1024px) {
    .team-main__info-link-text {
        font-size: calc(12px + 4 * ((100vw - 1024px) / (1920 - 1024)));
    }
}

@media screen and (min-width: 1920px) {
    .team-main__info-link-text {
        font-size: 16px;
    }
}

.team-main__info-link-text+.team-main__info-link-img {
    margin-left: 10px;
}

.team-main__info-link-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    min-height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.team-main__info-link-img img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .team-main__info-link-img {
        justify-content: flex-start;
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        transition: transform .3s linear;
        border-left: none;
    }

    .team-main__info-link-img img {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .team-main__info-link-img {
        display: flex;
        width: calc(14px + 3 * ((100vw - 768px) / (1920 - 768)));
        height: calc(14px + 3 * ((100vw - 768px) / (1920 - 768)));
        min-width: calc(14px + 3 * ((100vw - 768px) / (1920 - 768)));
        min-height: calc(14px + 3 * ((100vw - 768px) / (1920 - 768)));
        transition: transform .3s linear;
    }

    .team-main__info-link:hover .team-main__info-link-img {
        transform: scale(1.1);
    }
}

@media screen and (min-width: 1920px) {
    .team-main__info-link-img {
        width: 17px;
        height: 17px;
        min-width: 17px;
        min-height: 17px;
    }
}


.team-main__info-row_sb {
    align-items: stretch;
    justify-content: space-between;
}

.team-main__info-row_fg {
    flex-grow: 1;
}






/* all bg  */
.bg-commpany {
    background-color: #4B433C;
}

.color-white {
    color: #FFFFFF;
}

@-moz-keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-ms-keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-o-keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-o-keyframes scale {
    50% {
        transform: scale(2);
    }
}

@-moz-keyframes scale {
    50% {
        transform: scale(2);
    }
}

@-webkit-keyframes scale {
    50% {
        transform: scale(2);
    }
}

@keyframes scale {
    50% {
        transform: scale(2);
    }
}


@-webkit-keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(60px);
    }
}

@-moz-keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(60px);
    }
}

@-o-keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(60px);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(60px);
    }
}

@-moz-keyframes line-height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@-ms-keyframes line-height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@-o-keyframes line-height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@-webkit-keyframes line-height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@keyframes line-height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}