body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 68px;
}

body.auth {
    padding-top: 0 !important;
}

input, textarea {
    font-family: 'Inter', sans-serif;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-header {
    max-width: 100%;
    margin: auto;
    position: fixed;
    z-index: 50;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    padding: 9px 16px;
    box-sizing: border-box;
}

.app-header-menu-content-logo img {
    width: 121px;
}

.app-hero {
    height: 700px;
    position: relative;
    margin-bottom: 120px;
}

.app-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.app-header-menu-content {
    display: flex;
    align-items: center;
}

.app-header-menu-content-links {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

.app-header-menu-content-links a {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #0A1428;
    padding: 0 20px;
}

.app-header-menu-content-links-dropdown {
    position: relative;
}

.app-header-menu-content-links-dropdown:hover:after {
    content: '';
    width: 70px;
    height: 6px;
    position: absolute;
    background: rgba(22, 53, 111, 1);
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
}

.app-header-menu-content-links-dropdown:hover .app-header-menu-content-links-dropdown-list {
    display: block;
}

.app-header-menu-content-links-dropdown-list {
    position: absolute;
    width: 310px;
    z-index: 20;
    left: -105px;
    padding-top: 30px;
    display: none;
}

.app-header-menu-content-links-dropdown-list-inner {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 16px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.app-header-menu-content-links-dropdown-list a {
    display: block;
    padding: 14px 20px;
}

.app-header-menu-content-links-dropdown-list a:hover {
    background: rgba(10, 20, 40, 0.05);
}

.app-header-menu-content-links a:hover {
    color: rgba(22, 53, 111, 1);
}

.app-header-menu-content-links a.last {
    background: #16356F33;
    padding: 8px 22px;
    border-radius: 100px;
}

.app-header-menu-content-links a.last:hover {
    background: rgba(10, 20, 40, 1);
    color: rgba(255, 255, 255, 1);
}

.app-hero-content {
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    max-width: 1280px;
    left: 88px;
    right: 88px;
    z-index: 20;
}

.app-hero-content-title {
    font-weight: 600;
    font-size: 88px;
    line-height: 116px;
    vertical-align: middle;
    color: #fff;
    max-width: 900px;
}

.app-hero-content-title span {
    background: #16356F;
    padding: 6px 8px;
}

.app-hero-content-description {
    max-width: 364px;
    color: #fff;
    padding-left: 20px;
    border-left: 2px solid;
    position: absolute;
    right: 0;
    bottom: 0;
}

.app-hero-content-footer {
    margin-top: 70px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.products .app-hero-content-footer,
.product .app-hero-content-footer {
    margin-top: 120px;
}

.app-hero-content-button {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #16356F;
    width: fit-content;
    padding: 22px 35px;
    background: #fff;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
}

.app-hero-content-button:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-hero-content-link:hover {
    cursor: pointer;
}

.app-features-content {
    display: flex;
}

.app-features-content-item {
    flex: 1;
}

.app-features-content-item-text {
    color: #16356F;
    font-weight: 500;
    font-size: 84px;
    line-height: 94px;
    margin-bottom: 18px;
}

.app-features-content-item-description {
    color: #0A1428;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.app-features {
    margin-bottom: 60px;
}

.app-features-buttons {
    display: flex;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    margin-bottom: 120px;
}

.app-features-buttons-button-1 {
    color: #FFFFFF;
    padding: 19px 32px;
    background: #16356F;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-features-buttons-button-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-features-buttons-button-2 {
    color: #16356F;
    padding: 19px 32px;
    background: #fff;
    border-radius: 100px;
    border: 1px solid rgba(22, 53, 111, 0.2);
    cursor: pointer;
    text-decoration: none;
}

.app-features-buttons-button-2:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-trusted-content-header {
    display: flex;
}

.app-trusted-content-header-info{
    margin-left: auto;
}

.app-trusted-content-header-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 96px;
    line-height: 94px;
}

.app-trusted-content-header-info-description {
    max-width: 480px;
    color: rgba(10, 20, 40, 1);
    margin-bottom: 27px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.app-trusted {
    margin-bottom: 120px;
}

.app-trusted-content {
    padding: 60px;
    background: rgba(10, 20, 40, 0.04);
    border-radius: 25px;
}

.app-trusted-content-header-info-buttons {
    display: flex;
    gap: 4px;
}

.app-trusted-content-header-info-buttons-button-1 {
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 22px 39px;
    background: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-trusted-content-header-info-buttons-button-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-trusted-content-header-info-buttons-button-2 {
    cursor: pointer;
}

.app-trusted-content-header-info-buttons-button-2 img {
    display: block;
}

.app-trusted-content-header {
    margin-bottom: 90px;
}

.app-trusted-content-main-row {
    display: flex;
    gap: 10px;
}

.app-trusted-content-main-row-item {
    flex: 1;
    text-align: center;
}

.app-trusted-content-main-row-item img {
    background: white;
    border-radius: 30px;
}

.app-quality-header-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
    margin-bottom: 40px;
}

.app-quality-header-description {
    margin-bottom: 100px;
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.app-quality-content-items-item-image img {
    max-width: 194px;
    max-height: 100px;
}

.app-quality-content-items {
    display: flex;
    gap: 24px;
}

.app-quality-content-items-item {
    flex: 1;
    padding: 22px;
    border: 2px solid rgba(10, 20, 40, 0.05);
    border-radius: 16px;
    position: relative;
}

.app-quality-content-items-item-image {
    height: 100px;
    margin-bottom: 120px;
}

.app-quality {
    margin-bottom: 120px;
}

.app-quality-content-items-item-round {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(10, 20, 40, 0.05);
    border-radius: 100px;
    position: absolute;
    right: 16px;
    top: 16px;
}

.app-quality-content-items-item-description {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.app-quality-content-items-item-last {
    background: rgba(22, 53, 111, 1);

}

.app-quality-content-items-item-last .app-quality-content-items-item-description {
    color: #fff;
}

.app-quality-content-items-item-last .app-quality-content-items-item-round {
    background: rgba(255, 255, 255, 1);
}

.app-reviews {
    margin-bottom: 120px;
}

.app-reviews-content-list-items-item-info-img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 100px;
}

.app-reviews-content-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.app-reviews-content-list-items {
    display: flex;
    width: fit-content;
    gap: 20px;
}

.app-reviews-content-list-items-item {
    padding-top: 70px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    border: 2px solid rgba(10, 20, 40, 0.05);
    border-radius: 16px;
    width: 510px;
    position: relative;
}

.app-reviews-content-list-items-item::before {
    content: '';
    position: absolute;
    background: url(/images/quote.svg) no-repeat center;
    width: 82px;
    height: 61px;
    top: -40px;
    left: 40px;
}

.app-reviews-content-list-items-item-info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 55px;
}

.app-reviews-content-list-items-item-info-author-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}

.app-reviews-content-list-items-item-info-author-description {
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
}

.app-reviews-content-list-items-item-title {
    margin-bottom: 16px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

.app-reviews-content-list-items-item-description {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.app-reviews-content-list {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-top: 40px;
}

.app-capabilities-header-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
}

.app-capabilities-header-links {
    display: flex;
    gap: 4px;
    justify-content: end;
}

.app-capabilities-header-links-link-1 {
    width: fit-content;
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 32px;
    border: 2px solid rgba(22, 53, 111, 1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-capabilities-header-links-link-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-capabilities-header-links-link-2 {
    cursor: pointer;
}

.app-capabilities-header-links-link-2 img {
    display: block;
}

.app-capabilities-header {
    margin-bottom: 40px;
}

.app-capabilities-content-promo {
    background: rgba(247, 247, 247, 1);
    border-radius: 12px;
    display: flex;
    margin-bottom: 28px;
}

.app-capabilities-content-promo-info,
.app-capabilities-content-promo-img {
    flex: 1;
}

.app-capabilities-content-promo-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.app-capabilities-content-promo-info {
    position: relative;
}

.app-capabilities-content-promo-info-title {
    padding-top: 32px;
    padding-left: 28px;
    padding-right: 28px;
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

.app-capabilities-content-promo-info-logo {
    position: absolute;
    bottom: 0;
    left: 0;
}

.app-capabilities-items-row-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.app-capabilities-items-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.app-capabilities-items-row.last {
    margin-bottom: 0;
}

.app-capabilities-items-row-item {
    height: 413px;
    position: relative;
}

.app-capabilities-items-row-item-image {
    height: 413px;
}

.app-capabilities-items-row-item-title {
    position: absolute;
    bottom: 0;
    padding: 24px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

.app-capabilities-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    border-radius: 12px;
}

.app-capabilities {
    margin-bottom: 120px;
}

.app-capabilities-items-row-item-first {
    background: rgba(22, 53, 111, 1);
    border-radius: 12px;
}

.app-capabilities-items-row-item-name {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    padding-top: 28px;
    padding-left: 28px;
    padding-right: 28px;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

.app-capabilities-items-row-item-description {
    padding-left: 28px;
    padding-right: 28px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
}

.app-capabilities-items-row-item-buttons {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.app-capabilities-items-row-item-buttons-1 {
    width: fit-content;
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 22px 32px;
    background: rgba(255, 255, 255, 1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-capabilities-items-row-item-buttons-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-capabilities-items-row-item-buttons-2 {
    cursor: pointer;
}

.app-capabilities-items-row-item-buttons-2 img {
    display: block;
}

.app-what-we-make-header-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
}

.app-what-we-make-header {
    margin-bottom: 40px;
}

.app-what-we-make-header-links {
    display: flex;
    gap: 4px;
    justify-content: end;
}

.app-what-we-make-header-links-link-1 {
    width: fit-content;
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 32px;
    border: 2px solid rgba(22, 53, 111, 1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-what-we-make-header-links-link-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-what-we-make-header-links-link-2 {
    cursor: pointer;
}

.app-what-we-make-header-links-link-2 img {
    display: block;
}

.app-what-we-make-content-list {
    display: flex;
    width: fit-content;
    gap: 20px;
}

.app-what-we-make-content-list-item {
    width: 955px;
    height: 540px;
    position: relative;
}

.app-what-we-make-content-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.app-what-we-make-content {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.app-what-we-make-content-wrapper {
    position: relative;
}

.app-what-we-make {
    margin-bottom: 120px;
}

.app-left {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    left: 0;
    cursor: pointer;
}


.app-right {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    right: 0;
    cursor: pointer;
}


.app-what-we-make-content-list-item-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
    padding: 0 42px;
    bottom: 22px;
    left: 0;
    z-index: 10;
    position: absolute;
}

.app-what-we-make-content-list-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    border-radius: 12px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.app-npd {
    margin-bottom: 120px;
}

.app-npd-header {
    margin-bottom: 40px;
}

.app-npd-header-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
    margin-bottom: 40px;
}

.app-npd-header-description {
    color: rgba(10, 20, 40, 0.5);
    margin-bottom: 55px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
}

.app-npd-header-links {
    display: flex;
    gap: 4px;
    justify-content: end;
}

.app-npd-header-links-link-1 {
    width: fit-content;
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 32px;
    border: 2px solid rgba(22, 53, 111, 1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-npd-header-links-link-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-npd-header-links-link-2 {
    cursor: pointer;
}

.app-npd-header-links-link-2 img {
    display: block;
}

.app-npd-content-row  {
    display: flex;
    gap: 20px;
}

.app-npd-content-row-1 {
    margin-bottom: 20px;
}

.app-npd-content-row-item {
    flex: 1;
    position: relative;
    height: 413px;
    border-radius: 12px;
    overflow: hidden;
}

.app-npd-content-row-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.app-npd-content-row-1 .app-npd-content-row-item-2 {
    background: rgba(10, 20, 40, 0.05);
}

.app-npd-content-row-2 .app-npd-content-row-item-1 {
    background: rgba(22, 53, 111, 1); 
}

.app-npd-content-row-item-header-number {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 128px;
    line-height: 110px;

}

.app-npd-content-row-item-header {
    position: absolute;
    top: 0;
    padding-left: 24px;
    padding-top: 24px;
    padding-right: 24px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.app-npd-content-row-1 .app-npd-content-row-item-2 .app-npd-content-row-item-header-number {
    color: rgba(10, 20, 40, 0.15);
}

.app-npd-content-row-item-description {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 28px;
    padding-left: 24px;
    padding-right: 24px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    max-width: 70%;
}

.app-npd-content-row-1 .app-npd-content-row-item-2 .app-npd-content-row-item-description {
    color: rgba(10, 20, 40, 1);
}

.app-npd-content-row-item-header-utp {
    margin-left: auto;
    display: flex;
}

.app-npd-content-row-item-header-utp-item {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    height: fit-content;
    backdrop-filter: blur(20px)
}

.app-npd-content-row-1 .app-npd-content-row-item-2 .app-npd-content-row-item-header-utp-item {
    color: rgba(10, 20, 40, 1);
    background: rgba(10, 20, 40, 0.05);
}

.app-team {
    margin-bottom: 120px;
}

.app-team-header {
    margin-bottom: 40px;
}

.app-team-header-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.app-team-header-links {
    display: flex;
    gap: 4px;
    justify-content: end;
}

.app-team-header-links-link-1 {
    width: fit-content;
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 32px;
    border: 2px solid rgba(22, 53, 111, 1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-team-header-links-link-1:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(13, 33, 68, 1);
}

.app-team-header-links-link-2 {
    cursor: pointer;
}

.app-team-header-links-link-2 img {
    display: block;
}

.app-team-content-images {
    display: flex;
    gap: 20px;
}

.app-team-content-images-item {
    flex: 1;
}

.app-team-content-images-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.app-team-content-header {
    display: flex;
    background: rgba(22, 53, 111, 1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.app-team-content-header-item {
    flex: 1;
}

.app-team-content-header-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.app-team-content-header-info-utp {
    width: fit-content;
    margin-top: 25px;
    margin-left: 25px;
    margin-bottom: 115px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
}

.app-team-content-header-info-title {
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
}

.app-team-content-header-info-description {
    margin-left: 25px;
    max-width: 75%;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
}

.app-footer-header {
    margin-bottom: 130px;
}

.app-footer-header-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
}

.app-footer-form {
    display: flex;
    gap: 100px;
    margin-bottom: 120px;
}

.app-footer-form-item {
    flex: 1;
}

.app-footer-form-item-image iframe {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.app-footer-form-item-image-description {
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    max-width: 80%;
}

.app-footer-form-item-form-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 45px;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
}

.app-footer-form-item-form form label {
    display: block;
    margin-bottom: 7px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.app-footer-form-item-form form .form-group {
    margin-bottom: 32px;
}

.app-footer-form-item-form form .text {
    width: 100%;
    border-radius: 8px;
    background-color: rgba(10, 20, 40, 0.05);
    border: none;
    outline: none;
    padding: 19px 14px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.app-footer-form-item-form form .textarea {
    width: 100%;
    box-sizing: border-box;
    resize: none;
    padding: 14px;
    height: 100px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: rgba(10, 20, 40, 0.05);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.app-footer-form-item-form form button {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 53px;
    background: rgba(22, 53, 111, 1);
    border-radius: 100px;
    border: none;
    cursor: pointer;
}

.app-footer-form-item-form form button:hover {
    background: rgba(13, 33, 68, 1);
}

.app-bottom {
    background: rgba(10, 20, 40, 0.05);
    padding-top: 64px;
    padding-bottom: 52px;
}

.app-bottom-logo-menu {
    display: flex;
    margin-bottom: 40px;
}

.app-bottom-menu {
    margin-left: auto;
    display: flex;
    gap: 72px;
}

.app-bottom-menu a {
    text-decoration: none;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.app-bottom-info {
    display: flex;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(10, 20, 40, 0.05);
    margin-bottom: 44px;
}

.app-bottom-info-text {
    max-width: 355px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.app-bottom-info-socials {
    margin-left: auto;
    display: flex;
    gap: 24px;
    height: fit-content;
}

.app-bottom-info-socials img {
    display: block;
}

.app-bottom-copyrights {
    display: flex;
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.app-bottom-copyrights-links {
    margin-left: auto;
}

.app-bottom-copyrights-links a {
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}

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

.products .app-hero {
    margin-bottom: 140px;
}

.product .app-hero {
    margin-bottom: 90px;
}

.app-products-title {
    margin-bottom: 140px;
}

.app-products-title-text {
    color: rgba(12, 9, 28, 1);
    font-weight: 600;
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -2%;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.app-products-title-text span {
    color: rgba(255, 255, 255, 1);
    background: rgba(22, 53, 111, 1);
}

.app-products-title-description {
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    max-width: 730px;
    margin: auto;
}

.app-products-promo {
    margin-bottom: 120px;
}

.app-products-promo-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.app-products-promo-row {
    margin-bottom: 20px;
}

.app-products-promo-row.last {
    margin-bottom: 0;
}

.app-products-promo-row.app-products-promo-row-1 {
    display: flex;
    gap: 20px;
}

.app-products-promo-row.app-products-promo-row-2 {
    display: flex;
    gap: 20px;
}

.app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-1 {
    flex: 2;
}

.app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-2 {
    flex: 1;
}

.app-products-promo-row.app-products-promo-row-2 .app-products-promo-row-item {
    flex: 1;
}

.app-products-promo-row-item {
    height: 413px;
    position: relative;
}

.app-products-promo-row-item-title {
    position: absolute;
    padding: 24px;
    padding-bottom: 28px;
    bottom: 0;
    left: 0;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
}

.app-products-npd {
    margin-bottom: 120px;
}

.app-products-content {
    display: flex;
    background: rgba(22, 53, 111, 1);
    border-radius: 12px;
    overflow: hidden;
    height: 454px;
}

.app-products-content-item {
    flex: 1;
}

.app-products-content-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.app-products-content-item-info {
    padding-top: 64px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    position: relative;
}

.app-products-content-item-title {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
    max-width: 80%;
}

.app-products-content-item-description {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    max-width: 90%;
}

.app-products-content-item-links {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.app-hero-content-link img {
    display: block;
}

.app-products-content-item-links-link-1 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #16356F;
    width: fit-content;
    padding: 22px 33px;
    background: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.app-products-content-item-links-link-1:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-products-content-item-links-link-2 {
    cursor: pointer;
}

.app-products-content-item-links-link-2 img {
    display: block;
}

.app-products-promo-second {
    margin-bottom: 120px;
}

.app-products-promo-second .app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-1 {
    flex: 1;
}

.app-products-promo-second .app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-2 {
    flex: 2;
}

.app-products-breadcrumbs {
    margin-bottom: 40px;
}

.app-products-breadcrumbs a {
    color: rgba(22, 53, 111, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 26px;
    background: url("/images/breadcrumbs_left.svg") no-repeat center left;
}

.app-capability-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
    margin-bottom: 90px;
}

.capability .app-products-title {
    margin-bottom: 120px;
}

.capability .app-products-title-text,
.npd .app-products-title-text {
    max-width: 68%;
    margin-bottom: 60px;
}

.app-capability-features {
    margin-bottom: 120px;
}

.app-capability-features-items {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.app-capability-features-items.last {
    margin-bottom: 0;
}

.app-capability-features-items-item {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.app-capability-features-items-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-capability-features-items-item-info {
    position: relative;
    z-index: 5;
    padding: 30px;
    margin-top: 135px;
}

.app-capability-features-items-item .app-capability-features-items-item-info-title {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 15px;
}

.app-capability-features-items-item-info-utp {
    margin-top: 20px;
    margin-left: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: lowercase;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    height: fit-content;
    backdrop-filter: blur(20px);
    width: fit-content;
}

.app-capability-features-items-item-description {
    position: relative;
    z-index: 5;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.app-capability-features-items-item-overlay {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.6;
}

.app-header-mobile-burger {
    display: none;
    margin-left: auto;
    cursor: pointer;
}

.app-header-mobile-burger-close {
    display: none;
}

.login-form {
    text-align: center;
    padding: 200px 0;
}

.app-npd-proccess-title {
    color: rgba(10, 20, 40, 1);
    text-align: center;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    margin-bottom: 90px;
}

.app-npd-proccess {
    margin-bottom: 120px;
}

.app-npd-proccess-content {
    display: flex;
}

.app-npd-proccess-content-item-flex-1 {
    flex: 1;
}

.app-npd-proccess-content-item-flex-2 {
    flex: 2;
}

.app-npd-proccess-content {
    padding-bottom: 64px;
    margin-bottom: 64px;
    border-bottom: 2px solid rgba(10, 20, 40, 0.05);
}

.app-npd-proccess-content-item-step {
    color: rgba(22, 53, 111, 1);
    font-weight: 500;
    font-size: 128px;
    line-height: 132px;
}

.app-npd-proccess-content-item-utps {
    margin-bottom: 32px;
    display: flex;
}

.app-npd-proccess-content-item-utps-item {
    padding: 12px 16px;
    background: rgba(22, 53, 111, 0.2);
    color: rgba(22, 53, 111, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    border-radius: 100px;
}

.app-npd-proccess-content-item-description {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.app-serve {
    margin-bottom: 120px;
}

.app-serve-title {
    margin-bottom: 90px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
}

.app-serve-items {
    display: flex;
    gap: 16px;
}

.app-serve-items-item {
    flex: 1;
    position: relative;
    height: 413px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(22, 53, 111, 1);
}

.app-serve-items-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-serve-items-item-title {
    position: relative;
    z-index: 5;
    padding: 36px 28px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 60px;
    line-height: 64px;
}

.app-serve-items-item-description {
    padding: 28px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
}

.app-stories {
    margin-bottom: 120px;
}

.app-stories-title {
    margin-bottom: 90px;
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
}

.app-stories-items {
    display: flex;
    background: rgba(247, 247, 247, 1);
    margin-bottom: 20px;
    border-radius: 12px;
}

.app-stories-items.last {
    margin-bottom: 0;
}

.app-stories-items-item {
    flex: 1;
}

.app-stories-items-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.app-stories-items-item-info {
    padding: 28px;
}

.app-stories-items-item-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 74px;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
}

.app-stories-items-item-utp {
    color: rgba(10, 20, 40, 0.5);
    width: fit-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
    background: rgba(10, 20, 40, 0.05);
    border-radius: 100px;
    margin-bottom: 20px;
}

.app-stories-items-item-description {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 34px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.app-stories-items-item-description.last {
    margin-bottom: 0;
}

.app-banner {
    margin-bottom: 120px;
    position: relative;
}

.app-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    left: 0;
    border-radius: 8px;
    top: 0;
}

.app-banner-title {
    color: rgba(255, 255, 255, 1);
    padding: 140px 0;
    font-weight: 600;
    font-size: 60px;
    line-height: 64px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.app-values {
    margin-bottom: 120px;
}

.app-values-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 90px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    letter-spacing: -2%;
    text-align: center;
}

.app-values-list-row {
    display: flex;
    gap: 19px;
}

.app-values-list-row-item {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.app-values-list-row-1 {
    margin-bottom: 22px;
}

.app-values-list-row-item-1 {
    background: rgba(22, 53, 111, 0.1);
}

.app-values-list-row-item-2 {
    background: url(/images/value_1.jpg) no-repeat center;
    background-size: cover;
}

.app-values-list-row-item-3 {
    border: 2px solid rgba(10, 20, 40, 0.05);
}

.app-values-list-row-item-4 {
    background: url(/images/value_2.jpg) no-repeat center;
    background-size: cover;
}

.app-values-list-row-item-5 {
    background: rgba(22, 53, 111, 0.1);
}

.app-values-list-row-item-num {
    margin-bottom: 114px;
    font-weight: 600;
    font-size: 128px;
    line-height: 132px;
    letter-spacing: -2%;
    position: relative;
    z-index: 1;
}

.app-values-list-row-item-num {
    color: rgba(255, 255, 255, 1);
    opacity: 0.3;
}

.app-values-list-row-item-title {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.app-values-list-row-item-desc {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    position: relative;
    z-index: 1;
}

.app-values-list-row-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    border-radius: 12px;
}

.app-peoples-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 90px;
    font-weight: 600;
    font-size: 96px;
    line-height: 100px;
    letter-spacing: -2%;
    text-align: center;
}

.app-peoples-list-row {
    display: flex;
    gap: 20px;
}

.app-peoples-list-row-item {
    flex: 1;
    border-radius: 12px;
    background: rgba(10, 20, 40, 0.05);
    overflow: hidden;
}

.app-peoples-list-row-item-header {
    position: relative;
    margin-bottom: 40px;
}

.app-peoples-list-row-item-header img {
    width: 100%;
    border-radius: 12px;
    max-height: 625px;
    object-fit: cover;

}

.app-peoples-list-row {
    margin-bottom: 20px;
}

.app-peoples-list-row-item-header-utp {
    position: absolute;
    top: 18px;
    left: 15px;
    background: rgba(10, 20, 40, 0.1);
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    padding: 12px 16px;
    width: fit-content;
    border-radius: 100px;
}

.app-peoples-list-row-item-header-info {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}

.app-peoples-list-row-item-header-info-title {
    color: rgba(10, 20, 40, 1);
    margin-bottom: 33px;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
}

.app-peoples-list-row-item-header-info-desc {
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
}

.app-peoples {
    margin-bottom: 120px;
}

.app-what-we-make-about .app-what-we-make-header-title {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 0;
}

.app-what-we-make-about .app-what-we-make-header {
    margin-bottom: 60px;
}

.app-popup {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.app-popup-success {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.app-popup-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.5);
}

.app-popup-content {
    position: absolute;
    z-index: 10;
    max-width: 1176px;
    width: 100%;
    inset: 0;
    margin: auto;
    height: fit-content;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 60px;
    box-sizing: border-box;
}

.app-popup-success-content {
    position: absolute;
    z-index: 10;
    max-width: 912px;
    width: 100%;
    inset: 0;
    margin: auto;
    height: fit-content;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 80px;
    box-sizing: border-box;
    text-align: center;
}

.app-popup-success-title {
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -2%;
}

.app-popup-success-content img {
    margin-bottom: 48px;
}

.app-popup-content-info-title {
    text-align: center;
    color: rgba(10, 20, 40, 1);
    font-weight: 600;
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -2%;
    margin-bottom: 38px;
}

.app-popup-content-info-description {
    margin-bottom: 30px;
    color: rgba(10, 20, 40, 0.5);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
}

.app-popup-content-info-form {
    max-width: 548px;
    margin: auto;
}

.app-popup-content-info-form .form-group {
    margin-bottom: 29px;
}

.app-popup-content-info-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
}

.app-popup-content-info-form .form-group input {
    padding: 16px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    background: rgba(10, 20, 40, 0.05);
    border: none;
    outline: none;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.app-popup-content-info-form .form-group textarea {
    width: 100%;
    padding: 14px;
    height: 100px;
    box-sizing: border-box;
    background: rgba(10, 20, 40, 0.05);
    border: none;
    outline: none;
    border-radius: 8px;
    color: rgba(10, 20, 40, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    resize: none;
}

.app-popup-content-info-form button {
    padding: 20px 53px;
    color: rgba(255, 255, 255, 1);
    background: rgba(22, 53, 111, 1);
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    float: right;
}

.app-popup-content-info-form button:hover {
    background: rgba(13, 33, 68, 1);
    color: rgba(255, 255, 255, 1);
}

.app-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.app-popup-success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.error-404 .app-footer {
    display: none;
}

.login .app-footer {
    display: none;
}

.app-404 {
    padding: 128px 0;
    text-align: center;
}

.app-404 img {
    margin-bottom: 41px;
    max-width: 100%;
}

.app-404-desc {
    color: rgba(0, 0, 0, 1);
    margin-bottom: 105px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
}

.app-404-link a {
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
    background: rgba(22, 53, 111, 1);
    padding: 20px 38px;
    border-radius: 100px;
    text-decoration: none;
}

@media (max-width: 1200px) {

    .app-404-desc {
        margin-bottom: 80px;
        font-size: 16px;
        line-height: 20px;
    }

    .app-features-content {
        flex-direction: column;
        gap: 36px;
    }

    .app-capabilities-items-row-item {
        height: 353px;
    }

    .app-capabilities-items-row-item-image {
        height: 353px;
    }

    .app-capabilities-items-row {
        gap: 16px;
        margin-bottom: 16px;
        flex-direction: column;
    }
}

@media (max-width: 1200px) {

    .app-left {
        display: none;
    }

    .app-right {
        display: none;
    }

    .app-values-title {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 40px;
        text-align: left;
    }

    .app-values-list-row-item {
        flex: inherit;
    }

    .app-values-list-row-1 {
        margin-bottom: 16px;
    }

    .app-values-list-row {
        gap: 16px;
        flex-direction: column;
    }

    .app-values-list-row-item-num {
        font-size: 88px;
        line-height: 88px;
        font-weight: 500;
        margin-bottom: 54px;
    }

    .app-values-list-row-item-title {
        margin-bottom: 14px;
    }

    .app-values-list-row-item-desc {
        font-size: 16px;
        line-height: 20px;
    }

    .app-values {
        margin-bottom: 64px;
    }

    .app-peoples-title {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 40px;
        text-align: left;
    }

    .app-peoples-list-row {
        flex-direction: column;
    }

    .app-peoples-list-row-item-header img {
        max-height: 353px;
    }

    .app-peoples-list-row-item-header-utp {
        font-size: 14px;
        line-height: 18px;
        padding: 9px 13px;
    }

    .app-peoples-list-row-item-header {
        margin-bottom: 28px;
    }

    .app-peoples-list-row-item-header-info {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 20px;
    }

    .app-peoples-list-row-item-header-info-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;   
    }

    .app-peoples-list-row-item-header-info-desc {
        font-size: 16px;
        line-height: 20px;
    }

    .app-peoples {
        margin-bottom: 64px;
    }

    .app-header-mobile-burger {
        display: block;
    }

    .app-bottom-logo-menu {
        flex-direction: column;
    }

    .app-bottom-menu {
        flex-direction: column;
        margin-left: inherit;
        gap: 48px;
        text-align: center;
    }

    .app-bottom-menu a {
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
    }

    .app-bottom-info {
        flex-direction: column;
    }

    .app-bottom-info-socials {
        margin-left: inherit;
        justify-content: center;
    }

    .app-footer-header-title {
        font-size: 48px;
        line-height: 54px;
        text-align: left;
    }

    .app-capabilities-header-title {
        font-size: 48px;
        line-height: 54px;
        text-align: left;
        margin-bottom: 28px;
    }

    .app-quality-content-items {
        flex-direction: column;
        gap: 9px;
    }

    .app-quality-header-title {
        font-size: 48px;
        line-height: 54px;
        text-align: left;
        margin-bottom: 32px;
    }

    .app-trusted-content-header {
        flex-direction: column;
        margin-bottom: 56px;
    }

    .app-header-menu-content-links-dropdown:hover:after {
        display: none;
    }

    .app-header-menu-content-links-dropdown:hover .app-header-menu-content-links-dropdown-list {
        display: none;
    }

    .app-header-menu-content-links {
        display: none;
        position: absolute;
        right: 12px;
        flex-direction: column;
        z-index: 100;
        top: 60px;
        background: rgba(255, 255, 255, 1);
        border-radius: 12px;
        padding: 20px;
        gap: 20px;
        align-items: start;
    }

    .app-header-menu-content-links a {
        padding: 0;
        padding-right: 30px;
        font-weight: 500;
    }

    .app-header-menu-content-links a.last {
        background: none;
        padding: 0;
    }

    .app-hero-content-title {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 28px;
    }

    .app-hero-content-description {
        position: inherit;
        border: none;
        bottom: inherit;
        right: inherit;
        padding-left: 0;
        max-width: 100%;
        width: 100%;
        left: 0;
    }

    .app-header {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .app-header-menu-content-logo img {
        width: 90px;
    }

    .app-hero {
        margin-bottom: 64px;
        height: 550px;
    }

    .app-hero-content {
        top: 0;
        left: 36px;
        bottom: inherit;
        max-width: 100%;
        right: 36px;
        padding-top: 110px;
        height: 100%;
        box-sizing: border-box;
    }

    .app-hero-content-footer {
        position: absolute;
        left: 0;
        bottom: 20px;
        width: 100%;
    }

    .app-trusted-content-header-info-buttons-button-2 img {
        width: 56px;
        height: 56px;
    }

    .app-hero-content-button {
        padding: 18px;
        width: 100%;
    }

    .app-hero-content-link img {
        width: 56px;
        height: 56px;
    }

    .app-features-content-item-text {
        font-size: 68px;
        line-height: 82px;
        margin-bottom: 4px;
    }

    .app-features-content-item-description {
        font-size: 16px;
        line-height: 24px;
    }

    .app-features-buttons {
        gap: 9px;
        font-size: 14px;
        line-height: 20px;
    }

    .app-features-buttons-button-1,
    .app-features-buttons-button-2 {
        padding: 17px 19px;
    }

    .app-features-buttons {
        margin-bottom: 60px;
    }

    .app-trusted-content {
        border-radius: 10px;
        padding: 28px 20px;
    }

    .app-trusted-content-header-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 16px;
    }

    .app-trusted-content-header-info {
        margin-left: inherit;
    }

    .app-trusted-content-header-info-description {
        font-size: 16px;
        line-height: 20px;
    }

    .app-trusted-content-header-info-buttons-button-2 {
        width: 56px;
        height: 56px;
    }

    .app-trusted-content-header-info-buttons-button-1 {
        padding: 17px 39px;
        width: 100%;
    }

    .app-trusted-content-main-row {
        flex-direction: column;
    }

    .app-trusted {
        margin-bottom: 64px;
    }

    .app-quality-header-description {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 20px;
        text-align: left;
    }

    .app-quality-content-items-item {
        padding: 12px;
    }

    .app-quality-content-items-item-image {
        margin-bottom: 32px;
    }

    .app-quality-content-items-item-image img {
        max-width: 130px;
    }

    .app-quality-content-items-item-description {
        font-size: 14px;
        line-height: 18px;
    }

    .app-quality {
        margin-bottom: 64px;
    }

    .app-reviews-content-title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 40px;
        text-align: left;
    }

    .app-reviews-content-list-items-item::before {
        width: 57px;
        height: 43px;
        background-size: cover;
        top: -22px;
        left: 22px;
    }

    .app-reviews-content-list {
        padding-top: 20px;
    }

    .app-reviews-content-list-items-item {
        padding-top: 45px;
        padding-bottom: 25px;
        padding-left: 20px;
        padding-right: 20px;
        width: 300px;
    }

    .app-reviews-content-list-items-item-info-author-description {
        font-size: 14px;
    }

    .app-reviews-content-list-items-item-info {
        margin-bottom: 28px;
    }

    .app-reviews-content-list-items-item-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .app-reviews-content-list-items-item-description {
        font-size: 16px;
        line-height: 20px;
    }

    .app-reviews {
        margin-bottom: 64px;
    }

    .app-capabilities-header-links {
        justify-content: start;
    }

    .app-capabilities-header-links-link-1 {
        width: 100%;
        padding: 15px 32px;
    }

    .app-capabilities-header-links-link-2 img {
        width: 56px;
    }

    .app-capabilities-header {
        margin-bottom: 28px;
    }

    .app-capabilities-items-row-item-title {
        font-size: 28px;
        line-height: 32px;
        padding: 20px;
    }

    .app-capabilities-items-row-item-name {
        padding: 16px;
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .app-capabilities-items-row-item-description {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 20px;
    }

    .app-capabilities-items-row-item-buttons {
        position: relative;
        bottom: 0;
        left: 0;
        padding: 16px;
    }

    .app-capabilities-items-row-item-buttons-2 img {
        width: 56px;
        height: 56px;
    }

    .app-capabilities-items-row-item-buttons-1 {
        width: 100%;
        padding: 18px 32px;
    }

    .app-capabilities-content-promo {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .app-capabilities-content-promo-info-logo {
        position: relative;
    }

    .app-capabilities-content-promo-img img {
        height: 230px;
        object-fit: cover;
    }

    .app-capabilities-content-promo-info-title {
        padding-top: 24px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .app-capabilities-content-promo-info-logo {
        text-align: right;
    }

    .app-capabilities-content-promo-info-logo img {
        max-width: 100px;
    }
    
    .app-capabilities {
        margin-bottom: 64px;
    }

    .app-what-we-make-header-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 28px;
        text-align: left;
    }

    .app-what-we-make-header {
        margin-bottom: 28px;
    }

    .app-what-we-make-header-links {
        justify-content: start;
    }

    .app-what-we-make-header-links-link-2 img {
        width: 56px;
    }

    .app-what-we-make-header-links-link-1 {
        padding: 16px 32px;
        width: 100%;
    }

    .app-what-we-make-content-list-item {
        height: 413px;
        width: 100%;
    }

    .app-what-we-make-content-list {
        width: 100%;
        flex-direction: column;
    }

    .app-what-we-make-content-list-item-title {
        padding: 0 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .app-what-we-make {
        margin-bottom: 64px;
    }

    .app-npd-header-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 28px;
        text-align: left;
    }

    .app-npd-header-description {
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        margin-bottom: 28px;
    }

    .app-npd-header-links {
        justify-content: start;
    }

    .app-npd-header-links-link-2 img {
        width: 56px;
    }

    .app-npd-header-links-link-1 {
        padding: 16px 32px;
        width: 100%;
    }

    .app-npd-header {
        margin-bottom: 28px;
    }

    .app-npd-content-row {
        flex-direction: column;
        gap: 16px;
    }

    .app-npd-content-row-1 {
        margin-bottom: 16px;
    }

    .app-npd-content-row-item {
        flex: inherit;
        height: 230px;
    }

    .app-npd-content-row-item-description {
        padding-bottom: 18px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .app-npd-content-row-item-header {
        padding-left: 12px;
        padding-top: 12px;
        padding-right: 12px;
    }

    .app-npd-content-row-item-header-number {
        font-size: 88px;
        line-height: 88px;
    }

    .app-npd-content-row-item-header-utp-item {
        font-size: 14px;
        line-height: 16px;
        padding: 8px 14px;
    }

    .app-npd {
        margin-bottom: 64px;
    }

    .app-team-header-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 28px;
        text-align: left;
    }

    .app-team-header-links {
        justify-content: start;
    }

    .app-team-header-links-link-2 img {
        width: 56px;
    }

    .app-team-header-links-link-1 {
        padding: 16px 32px;
        width: 100%;
    }

    .app-team-header {
        margin-bottom: 28px;
    }

    .app-team-content-header {
        flex-direction: column-reverse;
        margin-bottom: 16px;
    }

    .app-team-content-header-info-utp {
        margin-left: 10px;
        font-size: 14px;
        line-height: 16px;
        padding: 8px 13px;
        margin-bottom: 48px;
    }

    .app-team-content-header-info-title {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .app-team-content-header-info-description {
        margin-left: 16px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 20px;
        max-width: 100%;
    }

    .app-team-content-images {
        flex-direction: column;
        gap: 16px;
    }

    .app-team {
        margin-bottom: 64px;
    }

    .app-footer-header {
        margin-bottom: 36px;
    }

    .app-footer-form {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 100px;
    }

    .app-footer-form-item-form-title {
        margin-bottom: 32px;
        color: rgba(10, 20, 40, 0.5);
        font-size: 16px;
        line-height: 20px;
    }

    .app-footer-form-item-form form .form-group {
        margin-bottom: 24px;
    }

    .app-footer-form-item-form form .text {
        padding: 16px 14px;
    }

    .app-footer-form-item-form form button {
        font-size: 14px;
        padding: 16px;
        width: 100%;
    }

    .app-bottom {
        padding-top: 40px;
    }

    .app-bottom-logo {
        text-align: center;
        margin-bottom: 48px;
    }

    .app-bottom-info-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .app-bottom-copyrights {
        flex-direction: column-reverse;
    }

    .app-bottom-copyrights-text {
        text-align: center;
        margin-top: 50px;
    }

    .app-bottom-copyrights-links span {
        display: none;
    }

    .app-bottom-copyrights-links a {
        display: block;
        text-align: center;
        margin-top: 30px;
    }

    .app-bottom-copyrights-links {
        margin-left: inherit;
        text-align: center;
    }

    .capability .app-products-title-text,
    .npd .app-products-title-text {
        margin-bottom: 43px;
        max-width: 100%;
        font-size: 36px;
        line-height: 40px;
    }

    .app-products-title-description {
        font-size: 16px;
        line-height: 20px;
    }

    .capability .app-products-title {
        margin-bottom: 64px;
    }

    .app-capability-features {
        margin-bottom: 64px;
    }

    .app-capability-features-items {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .app-capability-features-items-item {
        flex: inherit;
    }

    .app-capability-features-items-item-info {
        flex-direction: column;
        gap: 8px;
    }

    .app-capability-features-items-item-info-utp {
        margin-left: 16px;
        width: fit-content;
        font-size: 14px;
        line-height: 18px;
        padding: 7px 16px;
    }

    .app-capability-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 28px;
        text-align: left;
    }

    .app-products-promo-row.app-products-promo-row-1 {
        gap: 16px;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .app-products-promo-row-item-title {
        padding: 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .app-products-promo-row.app-products-promo-row-2 {
        gap: 16px;
        flex-direction: column;
    }

    .app-products-promo {
        margin-bottom: 16px;
    }

    .app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-1 {
        flex: inherit;
        height: auto;
    }

    .app-products-promo-row.app-products-promo-row-1 .app-products-promo-row-item-2 {
        flex: inherit;
        height: auto;
    }

    .app-products-promo-row.app-products-promo-row-2 .app-products-promo-row-item {
        flex: inherit;
        height: auto;
    }

    .app-products-promo-second {
        margin-bottom: 64px;
    }

    .app-products-npd {
        margin-bottom: 16px;
    }

    .app-products-content {
        flex-direction: column;
    }

    .app-products-content-item-info {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
        flex: inherit;
    }

    .app-products-content-item-links {
        position: relative;
        left: inherit;
        bottom: inherit;
        right: inherit;
    }

    .app-products-content {
        height: auto;
    }

    .app-products-content-item-title {
        margin-bottom: 28px;
        font-size: 28px;
        line-height: 32px;
    }

    .app-products-content-item-description {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 20px;
    }

    .app-products-content-item-links-link-2 img {
        width: 56px;
    }

    .app-products-content-item-links-link-1 {
        padding: 18px;
        width: 100%;
    }

    .products .app-hero {
        margin-bottom: 64px;
    }

    .app-products-title {
        margin-bottom: 64px;
    }

    .app-products-title-text {
        font-size: 36px;
        line-height: 40px;
        max-width: 100%;
    }

    .product .app-hero {
        margin-bottom: 64px;
    }

    .app-products-breadcrumbs {
        margin-bottom: 24px;
    }

    .app-npd-proccess-title {
        font-size: 36px;
        line-height: 40px;
        text-align: left;
        margin-bottom: 64px;
    }

    .app-npd-proccess-content-item-flex-1 {
        flex: inherit;
    }

    .app-npd-proccess-content-item-flex-2 {
        flex: inherit;
    }

    .app-npd-proccess-content {
        flex-direction: column;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .app-npd-proccess-content-item-step {
        margin-bottom: 10px;
        font-size: 96px;
        line-height: 100px;
    }

    .app-npd-proccess-content-item-utps {
        margin-bottom: 40px;
    }

    .app-npd-proccess-content-item-utps-item {
        font-size: 14px;
        line-height: 18px;
        padding: 9px 16px;
    }

    .app-npd-proccess-content-item-description {
        font-size: 16px;
        line-height: 20px;
    }

    .app-npd-proccess {
        margin-bottom: 64px;
    }

    .app-serve-title {
        font-size: 36px;
        line-height: 40px;
        text-align: left;
        margin-bottom: 40px;
    }

    .app-serve-items {
        flex-direction: column;
        gap: 12px;
    }

    .app-serve-items-item {
        flex: inherit;
        height: auto;
    }

    .app-serve-items-item-title {
        padding: 16px;
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 106px;
    }

    .app-serve-items-item-description {
        position: inherit;
        padding: 16px;
        font-size: 16px;
        line-height: 20px;
    }

    .app-serve {
        margin-bottom: 64px;
    }

    .app-stories-title {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 40px;
        text-align: left;
    }

    .app-stories-items {
        flex-direction: column-reverse;
    }

    .app-stories-items-item {
        flex: inherit;
    }

    .app-stories-items-item-info {
        padding-top: 40px;
        padding-bottom: 20px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .app-stories-items-item-title {
        margin-bottom: 28px;
        font-size: 28px;
        line-height: 32px;
    }

    .app-stories-items-item-utp {
        font-size: 14px;
        line-height: 18px;
        padding: 9px 16px;
    }

    .app-stories-items-item-description {
        font-size: 16px;
        line-height: 20px;
    }

    .app-stories {
        margin-bottom: 64px;
    }

    .app-banner-title {
        font-size: 36px;
        line-height: 40px;
        padding: 80px 0;
    }

    .app-banner {
        margin-bottom: 64px;
    }

    .app-what-we-make.app-what-we-make-about .app-what-we-make-header-title {
        font-size: 36px;
        line-height: 40px;
    }

    .app-what-we-make-about .app-what-we-make-header {
        margin-bottom: 28px;
    }

    body {
        padding-top: 56px;
    }

    .app-popup-content-info-title {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .app-popup-content {
        width: auto;
        margin: auto 17px;
        padding: 60px 20px;
        padding-bottom: 20px;
    }

    .app-popup-success-content {
        width: auto;
        margin: auto 17px;
        padding: 60px 40px;
    }

    .app-popup-success-title {
        font-size: 36px;
        line-height: 40px;
    }

    .app-popup-content-info-description {
        font-size: 14px;
    }

    .app-popup-content-info-form .form-group {
        margin-bottom: 15px;
    }

    .app-popup-content-info-form button {
        width: 100%;
    }
}   