

/* Start:/local/templates/typography/style/style.css?178836228726874*/
@font-face {
    font-family: 'Montserrat';
    src:
        url("/local/templates/typography/style/../fonts/Montserrat-Medium.ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src:
        url("/local/templates/typography/style/../fonts/Montserrat-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src:
        url("/local/templates/typography/style/../fonts/Montserrat-Bold.ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src:
        url("/local/templates/typography/style/../fonts/Montserrat-ExtraBoldItalic.ttf");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Feature Mono', monospace;
    src:
        url("/local/templates/typography/style/../fonts/FeatureMono-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Feature Mono', monospace;
    src:
        url("/local/templates/typography/style/../fonts/FeatureMono-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body{
    padding-top:55px;
    background:#101010;

    color: #fff;
    padding-top: 0 !important;
}

#bx-panel {
    z-index: 999999 !important;
}

body.bx-panel-show .header {
    top: 147px;
}

a{
    color:#fff;
    text-decoration:none;
    cursor: pointer;
}

.text-link {
    font-family: 'Feature Mono', monospace;
}

.text-link:hover {
    text-decoration: underline;
    color: currentColor;
}

p{
    font-family: 'Feature Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    line-height: 131%;
    letter-spacing: -0.02em;
}

.h2{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 30px;
    line-height: 131%;
    letter-spacing: -0.02em;
}

.block{
    margin: 70px auto;
}

.header{
    background:#000;
    top: 0;
}

.logo{
    height: 30px;
    width: auto;
    margin: 0;
}

.header .container {
    display: grid;
    grid-template-rows: 55px 0fr;
    transition: grid-template-rows 0.35s ease;
}

.header.header-open .container {
    grid-template-rows: 55px 1fr;
}

.container{
    max-width:1280px;
}

.btn-gradient {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 20px;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;

    background-color: transparent;

    overflow: hidden;
    isolation: isolate;

    transition: border-color 0.25s ease;
}

.btn-gradient::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #df3603 0%,
        #bd0122 50%,
        #c92183 100%
    );

    opacity: 0.7;
    transition: opacity 0.25s ease;

    z-index: -1;
}

.btn-gradient:hover::before,
.btn-gradient:focus-visible::before {
    opacity: 1;
}

.btn-gradient:hover,
.btn-gradient:focus,
.btn-gradient:active,
.btn-gradient:focus-visible {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    transform: none;
}

.btn-m{
    width: 50%;
    margin-top: 25px;
}

.btn-l{
    width: 100%;
    margin-top: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.h3{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.header-top {
    height: 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 5px;
}

.socials{
    display: flex;
    gap: 15px;
}

.header-contacts-mobile{
    display: none;
}

.left-part,
.right-part {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger{
    background:none;
    border:none;
}

.main-menu {
    display: flex;
    align-items: flex-start;
    gap: 55px;

    overflow: hidden;
    min-height: 0;
}

.main-menu > a,
.menu-item > a {
    color: #fff;
    text-decoration: none;

    display: block;
    padding-top: 20px;
    padding-bottom: 20px;

    white-space: nowrap;
}

.menu-item {
    position: relative;
    flex: 0 0 auto;
}

.menu-item:hover > a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 0;
    min-width: max-content;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition:
        max-height 0.35s ease,
        opacity 0.2s ease,
        padding-bottom 0.35s ease;
}

.submenu a {
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
    text-transform: lowercase;
}

.submenu a:hover {
    opacity: 1;
}

.menu-item:hover .submenu {
    max-height: 500px;
    opacity: 1;

    padding-bottom: 25px;
}

.header.header-open .menu-item:hover .submenu {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 25px;
}

.main-hero{
    background-image: url(/local/templates/typography/style/../img/main-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin-top: 50px;

    height: 500px;
}


.hero-content-animation {

    animation:
        heroContentIn 0.9s cubic-bezier(0.22,1,0.36,1)
        forwards;

}


@keyframes heroContentIn {

    from {

        opacity:0;

        transform:
            translateX(-70px);

        filter:blur(6px);

    }


    to {

        opacity:1;

        transform:
            translateX(0);

        filter:blur(0);

    }

}

.express-hero{
    background-image: url(/local/templates/typography/style/../img/экспресс-обложка.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;

    height: 300px;

    border-bottom: 2px solid #FFF;
}

.h1{
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 121%;
    font-size: 64px;
}

.hero-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-container__inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hero-container__inner-2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hero-title-animation {

    opacity: 0;

    filter: blur(8px);

    transform: translateX(-100px);

    animation: heroTitleSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;

}


@keyframes heroTitleSlide {

    from {

        opacity: 0;

        filter: blur(8px);

        transform: translateX(-100px);

    }


    to {

        opacity: 1;

        filter: blur(0);

        transform: translateX(0);

    }

}

.main-hero__right{
    width: 30%;
}

.hero-a{
    width: 100%;
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: -0.02em;
    justify-content: space-between;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    color: #FFF;
    text-align: center;

    cursor: pointer;
    margin-bottom: 15px;
}

.hero-a:nth-child(odd){
    background: rgba(189, 1, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-a:nth-child(odd):hover{
    background: rgba(189, 1, 34, 1);
    color: #FFF;
}

.hero-a:nth-child(even){
    background: rgba(16, 16, 16, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-a:nth-child(even):hover{
    background: rgba(16, 16, 16, 1);
    color: #FFF;
}

.hero-a:last-child{
    margin-bottom: 0;
}


.hero-services-animation .hero-a {

    opacity:0;

    transform:
        translateY(40px);

    animation:
        heroServiceIn 0.6s cubic-bezier(0.22,1,0.36,1)
        forwards;

}


.hero-services-animation .hero-a:nth-child(1){
    animation-delay:0.9s;
}

.hero-services-animation .hero-a:nth-child(2){
    animation-delay:1s;
}

.hero-services-animation .hero-a:nth-child(3){
    animation-delay:1.1s;
}

.hero-services-animation .hero-a:nth-child(4){
    animation-delay:1.2s;
}

.hero-services-animation .hero-a:nth-child(5){
    animation-delay:1.3s;
}



@keyframes heroServiceIn {

    from {

        opacity:0;

        transform:
            translateY(40px);

    }


    to {

        opacity:1;

        transform:
            translateY(0);

    }

}

.link{
    text-decoration: none;
    cursor: pointer;
}

.link:hover{
    text-decoration: underline;
    color: currentColor;
}

.express-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    width: 100%;

    box-sizing: border-box;

    margin-top: 25px;
}

.express-card {
    min-width: 0;
    padding: 20px;
    background-color: rgba(83, 83, 83, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.express-card-img {
    display: block;
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    margin-bottom: 30px;

    border-radius: 5px;
}

.express-card__description{
    margin: 30px 0;
}

.express-price{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 24px;
}



.express-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

 .price-amount {
    line-height: 131%;
}

.price-amount {
    font-family: 'Montserrat';
    font-weight: 700;
    color: #BD0122;
}

.price-amount-big{
    font-size: 32px;
}

.services{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.case-logo{
    max-width: 20%;
    margin: 25px 0;
}

.case-logo img{
    width: 100%;
    max-height: 75px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.75fr;
    gap: 18px;

    width: 100%;
    margin-bottom: 25px;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-card__button {
    display: block;
    width: 100%;
    height: 100%;

    padding: 0;
    border: 0;
    background: none;

    cursor: pointer;
}

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

    transition: transform 0.4s ease;
}

.portfolio-card__button:hover img {
    transform: scale(1.05);
}

.portfolio-card--left,
.portfolio-card--center {
    height: 255px;
}

.portfolio-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;

    height: 255px;
}

.portfolio-card--small {
    min-height: 0;
}

.image-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px;

    background: rgba(0, 0, 0, 0.85);

    opacity: 0;
    visibility: hidden;

    margin: auto 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.image-modal__image {
    display: block;

    max-width: 80vw;
    max-height: 80vh;

    object-fit: contain;

    border-radius: 12px;

    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.image-modal.is-open .image-modal__image {
    transform: scale(1);
}

.image-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;

    padding: 0;

    border: 0;
    background: none;

    color: white;
    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}

.image-modal__arrow {
    position: absolute;
    top: 50%;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    font-size: 26px;

    cursor: pointer;

    transform: translateY(-50%);

    transition: background 0.2s ease;
}

.image-modal__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.image-modal__arrow--prev {
    left: 30px;
}

.image-modal__arrow--next {
    right: 30px;
}


.image-modal__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;

    color: #fff;
    font-size: 14px;

    transform: translateX(-50%);
}

.services-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-right: 25px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);

    width: 30%;
}

.services-nav__button {
    padding: 0;
    border: 0;
    background: none;
    color: #fff;
    font: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition:

        color 0.35s ease,

        opacity 0.35s ease,

        transform 0.35s cubic-bezier(0.22,1,0.36,1);

}

.services-nav__button:hover {

    opacity: 0.75;

    transform:
        translateX(6px);

}

.services-nav__button.active {

    color: #BD0122;

    transform:
        translateX(8px);

}

.services-nav__button.active::before {

    content:"";

    position:absolute;

    left:-25px;

    top:50%;

    width:4px;

    height:0;

    background:#BD0122;

    border-radius:10px;


    transform:
        translateY(-50%);


    animation:
        activeLine 0.4s ease forwards;

}

@keyframes activeLine {
    from {
        height:0;
        opacity:0;
    }

    to {
        height:70%;
        opacity:1;
    }
}

.services-content {
    position: relative;

    width: 70%
}

.services-content__item {

    display: none;

    margin-left: 20px;

}

.services-content__item.active {

    display: block;

    animation:
        serviceFadeIn
        0.65s
        cubic-bezier(0.22, 1, 0.36, 1);

}

.services-content__item p{
    font-size: 15px;
    line-height: 1.45;
}

@keyframes serviceFadeIn {

    from {

        opacity: 0;

        transform:
            translateY(20px);

        filter:
            blur(5px);

    }


    to {

        opacity: 1;

        transform:
            translateY(0);

        filter:
            blur(0);

    }

}



.banner-text{
    font-family: 'Montserrat';
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.05em;
    line-height: 100%;

    font-size: 60px;
    text-transform: uppercase;
}

.red-text {
    color: #BD0122;
}

.white-text{
    color: #fff;
}

.map-block{
    display: flex;
    flex-direction: row;

    padding: 50px 0;
}

.map-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.map-right{
    width: 40%;
}

.clients{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.clients-left{
    width: 40%;
}

.clients-right{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    align-items: center;

    width: 55%;
}

.clients-right div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.client-logo{
    display: block;
    max-width: 200px;
    max-height: 100px;
}

.cool-banner{
    display: flex;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
    margin-bottom: 5px;
}

.cool-banner:nth-child(2) {
    margin-bottom: 15px;
}

.cool-banner-img{
    display: block;
    max-height: 45px;
    width: auto;
    border-radius: 7px;
    margin-bottom: 15px;
}

.express-hero:inherit main-hero{
    background-image: url(/local/templates/typography/style/./img/main-bg.jpg);
}

.hero{
    min-height: 300px;
}

.hero-2{
    height: 300px; 
    border-bottom: 2px solid #FFF;
}

.service-card {
    margin: 50px 0;

    padding-top: 0;
    padding-bottom: 0;

    padding-left: 50px;
    padding-right: 50px;

    border: 1px solid transparent;
    border-radius: 10px;

    background-color: transparent;

    box-sizing: border-box;

    transition:
        padding-top 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        padding-bottom 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.5s ease,
        border-color 0.5s ease;
}

.service-card:nth-child(1){
    margin-top: 0;
}

.service-card.is-open {
    padding-top: 50px;
    padding-bottom: 50px;

    background-color: rgba(83, 83, 83, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card__toggle{
    background: none;
    border: none;
}

.service-card__toggle:hover{
    background-color: rgba(83, 83, 83, 0.15);
}

.service-card.is-open .service-card__toggle::before {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


.service-card.is-open .service-card__toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.service-card.is-open .service-card__header {
    margin-bottom: 30px;
}

.service-card, .service-card__right__top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.service-card__left{
    width: 30%;
}

.service-card__left img{
    border-radius: 10px;
}

.service-card__header p{
        color: rgba(255, 255, 255, 0.6);
    }

.service-card__left p{
        font-weight: 700;
    }

.service-card__right{
    width: 67%;
}

.service-card__img {
    width: 100%;
    display: block;

    max-height: 0;

    opacity: 0;

    transform: translateY(-10px);

    overflow: hidden;

    transition:
        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.is-open .service-card__img {
    max-height: 1000px;

    opacity: 1;

    transform: translateY(0);
}

.service-card__body {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    transform: translateY(-10px);

    transition:
        grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__body-inner {
    overflow: hidden;
    min-height: 0;
}

.service-card.is-open .service-card__body {
    grid-template-rows: 1fr;

    opacity: 1;

    transform: translateY(0);
}

.service-card__toggle img {
    display: block;

    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    transform: rotate(0deg);
}

.service-card.is-open .service-card__toggle img {
    transform: rotate(180deg);
}

.cool-banner-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 50px;
}

.cool-banner-1__right{
    max-width: 55%;
}

.cool-banner-1-img{
    border-radius: 10px;
    margin-bottom: 25px;
    width: 100%;
}

.transparent-block{
    background-color: rgba(83, 83, 83, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    padding-bottom: 30px;
}

.tr-b-custom{
    display: flex;
    flex-direction: row;
    gap: 50px;

    padding-bottom: 50px;
}

.servise-desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.servise-desc__img{
    display: block;
    width: 35%;
    object-fit: cover;

    border-radius: 10px;
}

.mobile-logo{
    display: none;
}

.price-table {
    width: 100%;
    border-collapse: collapse;

    color: #fff;
    background: #101010;

    font-family: 'Feature Mono', monospace;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 131%;
}


.price-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.price-table th {
    padding: 18px 20px 20px;

    text-align: left;
    vertical-align: top;

    font-weight: 600;

    margin: 15px 0;
}

.price-table td {
    padding: 18px 20px;

    text-align: left;
    vertical-align: middle;
}

.price-table .tr-left {
    width: 215px;

    padding-left: 10px;

    font-weight: 600;

    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.price-table tbody tr:nth-child(even) {
    background: linear-gradient(
        90deg,
        #800018 0%,
        #5f0715 55%,
        #4a0711 100%
    );
}

.price-table tbody tr:nth-child(odd) {
    background: transparent;
}

.price-block{
    margin-top: 30px;
}

.price-2__item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;

    margin: 25px 0;
}

.price-2__item-left{
    width: 40%;
}

.price-2__item-right {
    width: 57%;

    box-sizing: border-box;
}

.price-2__item-left img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 15px;
}

.small-text{
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.tab-pane {
    scroll-margin-top: 150px;
}

.mockups-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 60px;
    column-gap: 20px;
    margin-top: 25px;
    margin-bottom: 60px;
}

.mockup-grid__button {
    display: block;
    width: 100%;
    height: 100%;

    padding: 0;
    border: 0;
    background: none;

    border-radius: 10px;

    cursor: pointer;
    margin-bottom: 15px;
}

.mockup-grid__button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

    transition: transform 0.4s ease;
}

.mockup-grid__button:hover img {
    transform: scale(1.05);
}

.requests{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.red-block{
    background-color: rgba(189, 1, 34, 0.9);
}

.white-line-big{
    height: 3px;
    width: 100%;
    background-color: #fff;
}

.white-line-small{
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-links{
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-content{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-right{
    background-color: rgba(189, 1, 34, 0.9);
    padding: 25px;

    padding-bottom: 9px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    border-radius: 10px;

    width: 70%;
}

.link-adress{
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    line-height: 131%;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.link-adress img{
    margin-top: 0;
    margin-right: 25px;
}

.link-adress:hover{
    text-decoration: underline;
    color: currentColor;
}

.copyright-text{
    margin: 25px 0;
}

.footer-content{
    padding: 25px 0;
}

.tab-nav{
    margin-top: 15px;
    margin-bottom: 25px;
}

.nav{
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.nav-link{
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 5px 15px;
}

.nav-link:hover{
    text-decoration: underline;
    color: currentColor;
}

.nav-pills .nav-link{
    border-radius: 999px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: rgba(189, 1, 34, 0.5);
    border: 1px solid rgba(189, 1, 34, 0.7);
}

.tab-nav .nav-item {

    opacity: 0;

    transform: translateY(25px);

    animation:
        tabSlideIn 0.55s cubic-bezier(0.17, 1, 0.36, 1) forwards;

}

.tab-nav .nav-item:nth-child(1) {
    animation-delay: 0.7s;
}

.tab-nav .nav-item:nth-child(2) {
    animation-delay: 0.8s;
}

.tab-nav .nav-item:nth-child(3) {
    animation-delay: 0.9s;
}

.tab-nav .nav-item:nth-child(4) {
    animation-delay: 1s;
}

.tab-nav .nav-item:nth-child(5) {
    animation-delay: 1.1s;
}

.tab-nav .nav-item:nth-child(6) {
    animation-delay: 1.2s;
}

.tab-nav .nav-item:nth-child(7) {
    animation-delay: 1.3s;
}

.tab-nav .nav-item:nth-child(8) {
    animation-delay: 1.4s;
}



@keyframes tabSlideIn {

    from {

        opacity: 0;

        transform: translateY(25px);

    }


    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.tab-nav .nav-link.active {

    animation:
        activeTabPulse 0.8s ease 1.7s;

}



@keyframes activeTabPulse {

    0% {

        box-shadow:
            0 0 0 rgba(189,1,34,0);

    }


    50% {

        box-shadow:
            0 0 20px rgba(189,1,34,0.55);

    }


    100% {

        box-shadow:
            0 0 0 rgba(189,1,34,0);

    }

}

.tab-nav {

    opacity: 0;

    transform: translateY(15px);

    animation:
        tabContainerIn 0.5s ease 0.7s forwards;

}



@keyframes tabContainerIn {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.order-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.75);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.order-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.order-modal__window {
    position: relative;

    width: min(1340px, 100%);
    max-height: 90vh;

    padding: 50px;

    overflow-y: auto;

    background: #242424;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.order-modal.is-open .order-modal__window {
    transform: translateY(0);
}

.order-modal__close {
    position: absolute;
    top: 20px;
    right: 25px;

    padding: 0;

    border: 0;
    background: none;

    color: #fff;
    font-size: 36px;
    line-height: 1;

    cursor: pointer;
}

.form-input, .form-select{
    display: block;
    width: 100%;
    background-color: rgba(19, 19, 19, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-family: 'Feature Mono', monospace;
    font-weight: 400;
    padding: 10px 50px;
    color: #FFF;
}

.form-select{
    margin: 25px 0;
}

.form-input:last-of-type{
    margin-top: 25px;
}

.form-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
}

.form-social{
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.form-social img{
    height: 30px;
}

.cont-404 {
    position: relative;
    margin: 200px auto;
}

.red-square{
    background-color: rgba(189, 1, 34, 0.5);
    height: 200%;

    width: 60%;

    position: absolute;
    right: 0;
    bottom: -60%;
    z-index: -1;
}

@media (max-width: 576px) {

    .image-modal {
        padding: 20px;
    }

    .image-modal__image {
        max-width: 100%;
        max-height: 80vh;
    }

    .image-modal__arrow {
        top: auto;
        bottom: 20px;

        width: 44px;
        height: 44px;

        transform: none;
    }

    .image-modal__arrow--prev {
        left: 20px;
    }

    .image-modal__arrow--next {
        right: 20px;
    }

    .image-modal__counter {
        bottom: 32px;
    }

}
/* End */


/* Start:/local/templates/typography/style/mobile.css?17883622877111*/
@media (max-width: 1280.1px) {

    .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;

        min-height: 0;
        overflow: hidden;
        padding-bottom: 0;
    }

    .header {
        max-height: 100dvh;
    }

    .header.header-open {
        height: 100dvh;
    }

    .header.header-open .container {
        height: 100%;
        grid-template-rows: 55px minmax(0, 1fr);
    }

    .header.header-open .main-menu {
        overflow-y: auto;
        overflow-x: hidden;

        padding-bottom: 30px;

        -webkit-overflow-scrolling: touch;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item:hover .submenu,
    .header.header-open .menu-item:hover .submenu {
        max-height: 0;
        opacity: 0;
        padding-bottom: 0;
    }


    .menu-item.submenu-open .submenu,
    .menu-item.submenu-open:hover .submenu,
    .header.header-open .menu-item.submenu-open .submenu,
    .header.header-open .menu-item.submenu-open:hover .submenu {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 25px;
    }

    .container{
        max-width:1024px;
    }

    .h1 {
        font-size: 55px;
    }

    .hero-a{
        font-size: 0.8rem;
    }

    .express-content{
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cool-banner-img{
        max-height: 43px;
    }

    .clients{
        flex-direction: column;
    }

    .clients-left, .clients-right{
        width: auto;
    }

    .map-right{
        width: 45%;
    }

    .map-right a img, .map-right a {
        display: block;
        max-width: 100%;
    }

    .footer-right{
        width: 60%;
    }

    .mockups-grid{
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 1024.1px) {
    .right-part{
        display: none;
    }

    .header-contacts-mobile{
        display: block;
    }

    .header-contacts-mobile-socials{
        display: flex;
        flex-direction: row;
        width: 50%;
        align-items: center;
        gap: 15px;

        margin-top: 20px;
    }
    
    .container{
        max-width:768px;
    }

    .h2{
        font-size: 24px;
    }

    .h3 {
        font-size: 18px;
    }

    .hero-2, .express-hero{
        height: 70vh;
    }

    .hero-container__inner{
        flex-direction: column;
    }

    .hero-container__inner-2{
        justify-content: space-around;
        flex-direction: column;
        max-height: 30vh;
    }

    .main-hero{
        height: 80vh;
    }

    .main-hero__right{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .main-hero__left{
        width: 100%;
    }

    .hero-container__inner{
        padding: 30px 0;
    }

    .services-nav__button{
        font-size: 20px;
    }

    .cool-banner{
        flex-direction: column-reverse;
        align-items: flex-start;
    }

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

    .footer-content{
        flex-direction: column-reverse;
    }

    .footer-left, .footer-right{
        width: 100%;
    }

    .transparent-block{
        padding: 30px;
    }

    .tr-b-custom{
        padding-bottom: 30px;
    }

    .service-card{
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .service-card__left, .service-card__right{
        width: 100%;
    }

    .service-card__left img{
        margin-bottom: 15px;
    }

    .service-card__left p{
        font-size: 20px;
    }

    .service-card__header p{
        font-size: 14px;
    }

    .tr-b-custom{
        gap: 35px;
    }

    .order-modal__window{
        padding: 30px;
    }
}

@media (max-width: 768.1px) {
    .container{
        max-width: 95%;
    }

    .transparent-block{
        padding: 20px;
    }

    .burger{
        height: 50px;
    }

    .header-contacts-mobile-socials{
        width: 100%;
    }

    .header-contacts-mobile button{
        width: 100%;
    }

    .main-hero{
        height: 90vh;
    }

    .main-hero__right{
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    .hero-container__inner{
        padding: 30px 0;
    }

    
    .express-content{
        grid-template-columns: repeat(1, 1fr);
    }

    .services{
        flex-direction: column;
    }

    .services-nav {
        flex-direction: row;
        flex-wrap: nowrap;

        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);

        width: 100%;

        margin-bottom: 20px;
        padding-bottom: 10px;

        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .services-nav::-webkit-scrollbar {
        display: none;
    }

    .services-nav__button {
        font-size: 16px;

        flex: 0 0 auto;
        white-space: nowrap;
    }

    .services-content {
        width: 100%;
    }

    .services-content__item {
        margin-left: 0;
    }

    .map-block{
        flex-direction: column-reverse;
        gap: 20px;
    }

    .map-left, .map-right, .cool-banner-1__left{
        width: 100%;
    }

    .cool-banner-1__right{
        max-width: 100%;
    }

    .map-left{
        gap: 20px;
    }

    .cool-banner-1{
        flex-direction: column;
        gap: 15px;
    }

    .banner-text{
        margin-bottom: 0px;
        line-height: 140%;
    }

    .cool-banner-img:last-of-type{
        margin-top: 10px;
    }

    .mockups-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .h1{
        font-size: 35px;
    }

    .main-hero__left{
        margin-top: 20px;
    }

    .clients-right{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .tr-b-custom {
        flex-direction: column;
        gap: 20px;
    }

    .servise-desc__img{
        width: 100%;
    }

    .service-card.is-open{
        padding: 30px;
    }

    .order-modal__window{
        padding: 20px;
        padding-top: 50px;
    }

    .form-input, .form-select{
        padding: 10px 15px;
    }

    .case-logo{
        max-width: 35%;
    }

    .tab-pane {
        scroll-margin-top: 250px;
    }
}

@media (max-width: 580.1px){

    .mockups-grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .service-card.is-open{
        padding: 20px;
    }

    .banner-text{
        font-size: 30px;
    }

    .h1 {
        font-size: 30px;
    }

    .logo img{
        height: 30px;
    }

    .left-part{
        gap: 5px;
    }

    .form-info{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .order-modal__window{
        padding: 20px;
        padding-top: 70px;
    }

     .clients-right{
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
        
    }

    .clients-right div{
        justify-content: flex-start;
    }

    .client-logo{
        align-self: flex-start;
        max-width: 220px;
        max-height: 70px;
    }

}
/* End */
/* /local/templates/typography/style/style.css?178836228726874 */
/* /local/templates/typography/style/mobile.css?17883622877111 */
