:root {
    --background: #010E0D;
    --Button-background: rgba(20, 120, 114, 0.20);
    --Active-color: #2CCCC3;
    --Second-active-color: #147872;
    --card-background: #021312;
    --Text-color1: #FFF;
    --Text-color2: #000;
}

html {
    font-size: calc(100vw / 1440 * 10);
}
body {
    font-family: 'Roboto';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: var(--Text-color1);
    background: var(--background);
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 144rem;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    overflow: hidden;
    padding-top: 8.2rem;
}

/* header */

header {
    padding-top: 2rem;
    position: absolute;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
    transition: .3s all;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo {
    display: flex;
}
.logo img {
    width: 24.5rem;
}
.logo img:last-child {
    display: none;
}
.header-container nav {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 28.7rem;
}
.header-container ul {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}
.header-container li {
    display: flex;
    list-style: none;
}
.header-container li a {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-container li a:hover {
    color: var(--Active-color);
}
.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}
.header-tel {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.header-tel:hover {
    color: var(--Active-color);
}
.header-social {
    display: flex;
}
.header-social a {
    display: flex;
}
.header-social a svg {
    width: 3.6rem;
    height: auto;
}
header.top {
    transform: translateY(-100%);
    transition: .3s all;
    padding-top: 1.2rem;
}
header.fixed {
    transition: .3s all;
    position: fixed;
    transform: translateY(0);
}
header.top .header-contacts {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
header.top .header-container {
    max-width: 140rem;
    padding-left: 0;
    padding-right: 0;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--background);
    padding: 0.8rem 1rem;
}
header.top .logo img:first-child {
    display: none;
}
header.top .logo img:last-child {
    display: block;
}
.header-mobile {
    display: none;
}
.mobile-menu {
    display: none;
}
.mobile-menu__fon {
    display: none;
}
.topmenu > li {
    position: relative;
}
.header-container .submenu {
  position: absolute;
  z-index: 5;
  white-space: nowrap;
  background: #010E0D;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  visibility: hidden;
  opacity: 0; 
  transform-origin: 0% 0%;
  transform: rotateX(-90deg);
  transition: .3s linear;
  margin-top: 3rem;
}
.header-container .submenu::before {
    content: '';
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    background: linear-gradient(0deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
    width: 0.1rem;
}
.header-container .submenu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
}
.submenu li {position: relative;}
.submenu li a {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.submenu li a.active, .submenu li a:hover {
    color: #2CCCC3;
    text-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.25);
}
.submenu .submenu {
  position: absolute;
  left: 100%;
  top: -1px;
  transition: .3s linear;
}
nav li:hover > .submenu {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    main {
        padding-top: 5.5rem;
    }
    .header-container nav {
        display: none;
    }
    .logo img {
        width: 13.8rem;
    }
    .header-contacts {
        display: none;
    }
    header.top .header-container {
        max-width: 140rem;
        padding-left: 0;
        padding-right: 0;
        border-radius: 2rem;
        border: 0.1rem solid var(--Active-color);
        background: var(--background);
        padding: 0.8rem 1rem;
    }
    header.top .logo img:first-child {
        display: block;
    }
    header.top .logo img:last-child {
        display: none;
    }
    .header-mobile {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3rem;
        align-items: center;
        padding: 13rem 1rem 4rem 1rem;
        overflow-y: auto;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        z-index: 999999;
        width: 100%;
        max-width: 26.4rem;
        background: var(--Second-active-color, #147872);
    }
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
    }
    .mobile-menu ul li {
        display: flex;
        list-style: none;
    }
    .mobile-menu ul li a {
        color: var(--Text-color1);
        text-align: center;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        text-transform: lowercase;
    }
    .mobile-menu__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .mobile-menu__phone {
        color: var(--Text-color1);
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
    }
    .mobile-menu__social {
        display: flex;
        align-items: center;
    }
    .mobile-menu__social a {
        display: flex;
    }
    .mobile-menu__social a svg {
        width: 3.6rem;
        height: auto;
    }
    .mobile-menu.active {
        transform: translateX(0);
    }
    .mobile-menu__fon {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        background: rgba(0, 0, 0, 0.5);
    }
    .mobile-menu__fon.active {
        display: flex;
    }
    .menu-open {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
        gap: 0.6rem;
    }
    .bar {
        background: #2CCCC3;
        width: 100%;
        max-width: 3rem;
        height: 0.2rem;
        display: flex;
        border-radius: 5rem;
    }
    .bar:nth-child(2) {
        max-width: 2.4rem;
    }
    .bar:nth-child(3) {
        max-width: 2rem;
    }
    .menu-open.change {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Second-active-color, #147872);
    }
    .menu-open.change .bar {
        background: #FFF;
    }
    .change .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-0.8rem, 0.2rem);
        width: 2rem;
    }
    .change .bar:nth-child(2) {
        opacity: 0;
    }
    .change .bar:nth-child(3) {
        transform: rotate(45deg) translate(-0.9rem, -0.3rem);
    }
    body.hidden {
        overflow: hidden;
    }
    header.menu-active {
        z-index: 9999999;
        padding-bottom: 1.5rem;
        background: #010E0D;
    }
    header.menu-active::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
        left: 0;
    }
}

/* footer */

footer {
    padding-bottom: 4rem;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-left: auto;
}
.footer-tel {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--Text-color1);
    font-family: 'Prompt';
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
.footer-tel svg {
    width: 3.2rem;
    height: auto;
}
.footer-email {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.footer-email svg {
    width: 3.2rem;
    height: auto;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.6rem;
    position: relative;
}
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: -2rem;
    width: 100%;
    height: 0.1rem;
    max-width: 72rem;
    background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
    transform: rotate(180deg);
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-left p {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.footer-left p a {
    color: var(--Active-color);
}
.footer-right {
    display: flex;
    gap: 6rem;
    align-items: flex-end;
}
.footer-social {
    display: flex;
}
.footer-social a {
    display: flex;
}
.footer-social a svg {
    width: 4.6rem;
    height: auto;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 22rem;
}
.footer-tel:hover {
    color: var(--Active-color);
}
.footer-email:hover {
    color: var(--Active-color);
}




@media screen and (max-width: 992px) {
    footer {
        padding-bottom: 2rem;
    }
    .footer-contacts {
        gap: 2.3rem;
        margin-right: auto;
        align-items: center;
    }
    .footer-tel {
        gap: 1rem;
        font-size: 2.4rem;
    }
    .footer-tel svg {
        width: 3.2rem;
    }
    .footer-email {
        gap: 1rem;
        font-size: 2.4rem;
    }
    .footer-email svg {
        width: 3.2rem;
    }
    .footer-main {
        align-items: flex-start;
        padding-top: 2rem;
    }
    .footer-main::before {
        max-width: 35.5rem;
    }
    .footer-left {
        gap: 1.5rem;
    }
    .footer-right {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .footer-logo img {
        width: 13.8rem;
    }
}

/* application */

.application {
    padding: 13rem 0 6rem 0;
}
.application-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.application-title {
    color: var(--Text-color1);
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
}
.application-title::before {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: -2rem;
    width: 100%;
    height: 0.1rem;
    max-width: 72rem;
    background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
    transform: rotate(360deg);
}
.application-title span {
    font-weight: 800;
}
.application-main {
    width: 100%;
    max-width: 68.2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.application-main > p {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.application-form > input[type=text] {
    padding: 2rem 2.1rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.application-form > input[type=text]::placeholder {
    color: rgba(255, 255, 255, 0.50);
}
.application-form > textarea {
    padding: 2rem 2.1rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    height: 12rem;
    min-height: 12rem;
}
.application-form > textarea::placeholder {
    color: rgba(255, 255, 255, 0.50);
}
.application-submit {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    padding: 2.25rem 3.15rem;
    border-radius: 5rem;
    border: 0.1rem solid var(--Text-color1);
    background: var(--Button-background);
    margin: 0 auto;
    margin-top: 0.4rem;
}
.application-submit:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}
.application-form__row {
    display: flex;
    align-items: center;
    gap: 3.3rem;
}
input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.8rem;
    border: 0.1rem solid var(--Active-color);
    position: absolute;
    transition: 0.3s all;
    margin-top: -1.2rem;
}
input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/local/templates/kondratev/images/checkbox-checked.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: 3.1rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s all;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
input[type="checkbox"]:checked {
    background-image: none;
}
.application-form__row label {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.application-form__row label a {
    color: var(--Active-color);
}

@media screen and (max-width: 992px) {
    .application {
        padding: 6rem 0 8.6rem 0;
    }
    .application-container {
        gap: 4rem;
    }
    .application-title {
        font-size: 2.2rem;
    }
    .application-title::before {
        bottom: -2rem;
        max-width: 35.5rem;
    }
    .application-main {
        gap: 2rem;
    }
    .application-main > p {
        font-size: 1.7rem;
    }
    .application-form {
        gap: 1.5rem;
    }
    .application-form > input[type=text] {
        padding: 2rem;
        font-size: 1.3rem;
    }
    .application-form > textarea {
        padding: 2rem;
        font-size: 1.3rem;
        height: 9.2rem;
        min-height: 9.2rem;
    }
    .application-submit {
        font-size: 1.2rem;
        padding: 1.5rem 2.2rem;
        margin-top: 0;
    }
    .application-form__row {
        gap: 3.4rem;
    }
    .application-form__row label {
        font-size: 1.3rem;
    }
}

/* case */

.case-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 4rem;
}
.case-title {
    color: var(--Text-color1);
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.case-item {
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--background);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
}
.case-item__title {
    margin-bottom: 0.6rem;
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.case-item__description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 200;
    line-height: 100%;
    text-align: left;
    max-width: 24rem;
}
.case-item__img {
    margin-top: auto;
    border-radius: 2rem;
    width: 17.1rem;
    height: 16.4rem;
    object-fit: cover;
}
.case-item__svg {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Second-active-color, #147872);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}
.case-item__svg svg {
    width: 2rem;
    height: auto;
}
.case-item:hover {
    background: var(--Button-background);
}
.case-item:hover .case-item__svg {
    background: var(--Active-color);
}

@media screen and (max-width: 992px) {
    .case-container {
        gap: 3rem;
        padding: 0 2rem;
    }
    .case-title {
        font-size: 2.2rem;
    }
    .case-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .case-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    .case-item__title {
        margin-bottom: 0;
        font-size: 2rem;
    }
    .case-item__description {
        font-size: 1.5rem;
        max-width: 23.1rem;
        margin-bottom: 0.5rem;
    }
    .case-item__img {
        width: 13.9rem;
        height: 13.9rem;
    }
    .case-item__svg {
        width: 3.6rem;
        height: 3.6rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
    .case-item__svg svg {
        width: 1.7rem;
    }
}

/* digital */

.digital {
    position: relative;
    padding-bottom: 15.7rem;
}
.digital-fon {
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: -1;
    width: 144rem;
}
.digital-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 4rem;
}
.digital-top {
    display: flex;
    align-items: flex-start;
}
.digital-title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    width: 100%;
    max-width: 31rem;
}
.digital-description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    width: 100%;
    max-width: 78rem;
}
.digital-description span {
    font-size: 2rem;
    font-weight: 600;
}
.digital-bottom {
    padding-left: 31rem;
    display: flex;
}
.digital-block {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 6rem 0 1.5rem;
    height: 16rem;
    justify-content: flex-end;
    max-width: 34rem;
}
.digital-block:nth-child(1) {
    max-width: 19rem;
}
.digital-block:nth-child(3) {
    max-width: 21rem;
}
.digital-block::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0.1rem;
    background: linear-gradient(0deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
}
.digital-block__number {
    color: var(--Text-color1);
    font-size: 8rem;
    font-style: normal;
    font-weight: 100;
    line-height: 100%;
}
.digital-block__description {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}

@media screen and (max-width: 992px) {
    .digital {
        padding-bottom: 6rem;
    }
    .digital-fon {
        display: none;
    }
    .digital-container {
        gap: 1.5rem;
        padding: 0 2rem;
    }
    .digital-top {
        justify-content: space-between;
    }
    .digital-title {
        font-size: 1.7rem;
        max-width: 13.3rem;
    }
    .digital-description {
        font-size: 1.3rem;
        max-width: 16.8rem;
    }
    .digital-description span {
        font-size: 1.3rem;
    }
    .digital-bottom {
        padding-left: 0;
    }
    .digital-block {
        padding: 0 3rem 0 0.5rem;
        height: 6.5rem;
        max-width: 14.7rem;
    }
    .digital-block:nth-child(1) {
        max-width: 9rem;
    }
    .digital-block:nth-child(3) {
        max-width: 9rem;
    }
    .digital-block::before {
        background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 19%, #021312 80.5%);
    }
    .digital-block__number {
        font-size: 3rem;
    }
    .digital-block__description {
        font-size: 1.5rem;
    }
}

/* services */

.services {
    margin-bottom: 15rem;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 8rem;
}
.services-name {
    display: flex;
    justify-content: space-between;
    height: 35.5rem;
    flex-direction: column;
    padding: 4.1rem;
    border-radius: 2rem;
    position: relative;
}
.services-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #2CCCC3, #010E0D);
    border-radius: 2rem;
}
.services-name::after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    background: var(--background);
    border-radius: 2rem;
}
.services-title {
    color: var(--Text-color1);
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.services-description {
    color: var(--Text-color1);
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.services-item {
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--Active-color);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    height: 35.5rem;
    flex-direction: column;
}
.services-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.services-item__number {
    color: var(--Text-color2);
    font-family: 'Prompt';
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.services-item__svg {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Second-active-color, #147872);
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-item__svg svg {
    width: 2.1rem;
    height: auto;
}
.services-item__bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.services-item__title {
    color: var(--Text-color2);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.services-item__description {
    color: var(--Text-color2);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.services-item:hover {
    background: var(--card-background);
}
.services-item:hover .services-item__number {
    color: var(--Text-color1); 
}
.services-item:hover .services-item__title {
    color: var(--Text-color1); 
}
.services-item:hover .services-item__description {
    color: var(--Text-color1); 
}
.services-item:hover .services-item__svg {
    background: var(--Active-color);
}

@media screen and (max-width: 992px) {
    .services {
        margin-bottom: 6rem;
    }
    .services-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 2rem;
    }
    .services-name {
        height: 16.1rem;
        padding: 1.5rem;
    }
    .services-title {
        font-size: 2.2rem;
    }
    .services-description {
        font-size: 1.5rem;
        max-width: 25rem;
    }
    .services-item {
        padding: 1rem;
        height: 16rem;
    }
    .services-item__number {
        font-size: 2.5rem;
    }
    .services-item__svg {
        width: 3.6rem;
        height: 3.6rem;
    }
    .services-item__svg svg {
        width: 1.7rem;
    }
    .services-item__bottom {
        gap: 0.5rem;
    }
    .services-item__title {
        font-size: 1.7rem;
    }
    .services-item__description {
        font-size: 1.3rem;
    }
}

/* solutions */

.solutions {
    margin-bottom: 55rem;
}
.solutions-container {
    position: relative;
    padding: 0 8rem;
}
.solutions-title {
    color: var(--Text-color1);
    font-size: 8.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.solutions-img {
    position: absolute;
    width: 132rem;
    top: 8.3rem;
    left: 4rem;
}

@media screen and (max-width: 992px) {
    .solutions {
        margin-bottom: 21rem;
    }
    .solutions-container {
        padding: 0 2rem;
    }
    .solutions-title {
        max-width: 31rem;
        font-size: 4rem;
    }
    .solutions-img {
        width: 100%;
        top: 11.4rem;
        left: 0;
    }
}

/* banner */

.banner {
    padding-top: 13.3rem;
    padding-bottom: 25.5rem;
    position: relative;
    overflow: hidden;
}
.banner-img {
    position: absolute;
    width: 67.9rem;
    right: -2rem;
    top: -18rem;
}
.banner-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
    padding: 0 4rem;
}
.banner-title {
    color: var(--Text-color1);
    font-size: 8.5rem;
    font-style: normal;
    font-weight: 100;
    line-height: 100%;
    letter-spacing: -0.17rem;
}
.banner-title span {
    min-height: 3.2rem;
    font-weight: 800;
}
.banner-title-2 {
    color: var(--Text-color1);
    font-size: 8.5rem;
    font-style: normal;
    font-weight: 100;
    line-height: 100%;
    letter-spacing: -0.17rem;
    margin-left: 31rem;
}
.banner-button {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 2.25rem 3.15rem;
    border-radius: 5rem;
    border: 0.1rem solid #FFF;
    background: var(--Button-background);
    margin-left: 41.1rem;
    margin-right: auto;
    margin-top: 4rem;
    text-transform: uppercase;
}
.banner-button:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}

@media screen and (max-width: 992px) {
    .banner {
        padding-top: 6rem;
        padding-bottom: 8.5rem;
    }
    .banner-img {
        display: none;
    }
    .banner-container {
        padding: 0 2rem;
    }
    .banner-title {
        font-size: 3.2rem;
        letter-spacing: -0.064rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-right: auto;
    }
    .banner-title-2 {
        font-size: 3.2rem;
        letter-spacing: -0.064rem;
        margin-left: 5.4rem;
    }
    .banner-button {
        font-size: 1.2rem;
        padding: 1.5rem 2.2rem;
        margin-left: auto;
        margin-top: 2rem;
    }
}

/* contacts */

.contacts {
    padding: 10rem 0;
}
.contacts-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts-main {
    width: 100%;
    max-width: 58rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.contacts-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts-block__title {
    color: var(--Text-color1);
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    padding-top: 0.5rem;
}
.contacts-block__content {
    width: 100%;
    max-width: 29.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.contacts-tel {
    color: var(--Text-color1);
    font-family: 'Prompt';
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.contacts-mail {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contacts-tel:hover, .contacts-mail:hover {
    color: var(--Active-color);
}
.contacts-tel svg {
    width: 2.9rem;
    height: auto;
}
.contacts-mail svg {
    width: 3.2rem;
    height: auto;
}
.contacts-block__content p {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.contacts-social {
    display: flex;
}
.contacts-social a {
    display: flex;
}
.contacts-social a svg {
    width: 5.7rem;
    height: auto;
}
.contacts-map {
    width: 100%;
    max-width: 64rem;
    height: 64rem;
    border-radius: 2rem;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
}

@media screen and (max-width: 992px) {
    .contacts {
        padding: 3rem 0 5rem 0;
    }
    .contacts-container {
        flex-direction: column;
        gap: 3rem;
    }
    .contacts-main {
        max-width: none;
        gap: 3.5rem;
    }
    .contacts-block {
        gap: 0.8rem;
        justify-content: flex-start;
    }
    .contacts-block__title {
        font-size: 1.7rem;
        padding-top: 0;
        min-width: 12rem;
    }
    .contacts-block__content {
        max-width: 18.4rem;
        gap: 2rem;
    }
    .contacts-tel {
        font-size: 1.7rem;
        gap: 0.7rem;
    }
    .contacts-mail {
        font-size: 1.7rem;
        gap: 0.8rem;
    }
    .contacts-tel svg {
        width: 2.1rem;
    }
    .contacts-mail svg {
        width: 2.4rem;
    }
    .contacts-block__content p {
        font-size: 1.7rem;
    }
    .contacts-social a svg {
        width: 3.6rem;
    }
    .contacts-map {
        height: 33.5rem;
    }
}

/* application-2 */

.application-2 {
    padding: 10rem 0;
}
.application-2 .application-title {
    font-size: 3.6rem;
}
.application-2 .application-title span {
    font-size: 3.6rem;
}
.application-main > p span {
    font-weight: 600;
    font-size: 2.4rem;
}

@media screen and (max-width: 992px) {
    .application-2 {
        padding: 6rem 0 10rem 0;
    }
    .application-2 .application-title {
        font-size: 2.2rem;
    }
    .application-2 .application-title span {
        font-size: 2.2rem;
    }
    .application-main > p span {
        font-size: 1.7rem;
    }
}

/* ready-solutions */

.ready-solutions {
    padding: 11rem 0 10rem 0;
}
.ready-solutions__container {
    padding: 0 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ready-solutions__title {
    color: var(--Text-color1);
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.ready-solutions__description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    max-width: 67.8rem;
}
.ready-solutions__description span {
    font-size: 2rem;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .ready-solutions {
        padding: 3rem 0 2rem 0;
    }
    .ready-solutions__container {
        padding: 0 2rem;
    }
    .ready-solutions__title {
        font-size: 1.7rem;
        max-width: 15.8rem;
    }
    .ready-solutions__description {
        font-size: 1.3rem;
        max-width: 16.8rem;
    }
    .ready-solutions__description span {
        font-size: 1.3rem;
    }
}

/* solutions-steps */

.solutions-steps__container {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    padding: 0 4rem;
}
.solutions-steps__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.solutions-steps__item {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.solutions-steps__item-number {
    color: var(--Active-color);
    font-family: "Prosto One";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.16rem;
}
.solutions-steps__item-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 2.6rem;
    border-radius: 2rem;
    background: var(--background);
    height: 100%;
    position: relative;
}
.solutions-steps__item-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #2CCCC3, #010E0D);
    border-radius: 2rem;
}
.solutions-steps__item:nth-child(2n) .design-steps__item-main::before {
    background: linear-gradient(308deg, #2CCCC3, #010E0D);
}
.solutions-steps__item-column::after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    background: var(--background);
    border-radius: 2rem;
}
.solutions-steps__item-title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.solutions-steps__item-description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.solutions-steps__row {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    justify-content: center;
}
.solutions-steps__row > svg {
    width: 7.2rem;
    height: auto;
}
.solutions-steps__block {
    border-radius: 5rem;
    background: var(--background);
    max-width: 39.1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 3.2rem;
    position: relative;
}
.solutions-steps__block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(320deg, #2CCCC3, #010E0D);
    border-radius: 5rem;
}
.solutions-steps__block::after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    background: var(--background);
    border-radius: 5rem;
}
.solutions-steps__block:nth-child(3)::before {
    background: linear-gradient(120deg, #2CCCC3, #010E0D);
}
.solutions-steps__block-title {
    color: var(--Text-color1);
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.solutions-steps__block-description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    .solutions-steps__container {
        padding: 0 2rem;
    }
    .solutions-steps__main {
        grid-template-columns: repeat(1, 1fr);
    }
    .solutions-steps__item-number {
        display: none;
    }
    .solutions-steps__item-column {
        gap: 0.5rem;
    }
    .solutions-steps__item-title {
        font-size: 1.7rem;
    }
    .solutions-steps__item-description {
        font-size: 1.3rem;
    }
    .solutions-steps__row {
        flex-direction: column;
        gap: 1rem;
    }
    .solutions-steps__row > svg {
        width: 4.6rem;
    }
    .solutions-steps__block {
        max-width: none;
        padding: 2rem 2.8rem;
    }
    .solutions-steps__block-title {
        font-size: 2.2rem;
    }
    .solutions-steps__block-description {
        font-size: 1.5rem;
    }
}

/* technical-support */

.technical-support__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 4rem;
}
.technical-support__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.technical-support__item {
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: rgba(20, 120, 114, 0.15);
    padding: 2.7rem 4rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.7rem;
}
.technical-support__item:first-child {
    background: var(--card-background);
}
.technical-support__item:last-child {
    background: rgba(20, 120, 114, 0.35);
}
.technical-support__item-name {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}
.technical-support__item-title {
    color: var(--Active-color);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.technical-support__item-price {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}
.technical-support__item-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.technical-support__item-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.technical-support__item-column p {
    color: var(--Text-color1);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.technical-support__item-span {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.technical-support__item-span span {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 100;
    line-height: 120%;
}
.technical-support__hour {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--card-background);
    padding: 2rem 4rem;
}
.technical-support__hour-name {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
.technical-support__hour-title {
    color: var(--Active-color);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.technical-support__hour-price {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}
.technical-support__hour-row {
    margin-bottom: 3.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9.75rem;
}
.technical-support__hour-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.technical-support__hour-block p {
    color: var(--Text-color1);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.technical-support__submit {
    margin-top: auto;
    width: 100%;
    border-radius: 5rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--Button-background);
    padding: 1.6rem;
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.technical-support__submit:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}
.technical-support__hour .technical-support__submit {
    max-width: 36.2rem;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .technical-support__container {
        padding: 0 2rem;
    }
    .technical-support__main {
        grid-template-columns: repeat(1, 1fr);
    }
    .technical-support__item {
        padding: 2.7rem 3rem 2rem 3rem;
        gap: 3rem;
        background: var(--card-background);
    }
    .technical-support__item:first-child {
        background: var(--card-background);
    }
    .technical-support__item:last-child {
        background: var(--card-background);
    }
    .technical-support__item-name {
        gap: 0.5rem;
    }
    .technical-support__item-title {
        font-size: 2rem;
    }
    .technical-support__item-price {
        font-size: 1.5rem;
    }
    .technical-support__item-content {
        gap: 2.5rem;
    }
    .technical-support__item-column {
        gap: 1rem;
    }
    .technical-support__item-column p {
        font-size: 1.3rem;
    }
    .technical-support__item-span {
        gap: 1rem;
    }
    .technical-support__item-span span {
        font-size: 1.3rem;
    }
    .technical-support__hour {
        padding: 2.7rem 3rem 2rem 3rem;
        gap: 3rem;
    }
    .technical-support__hour-name {
        gap: 0.5rem;
    }
    .technical-support__hour-title {
        font-size: 2rem;
    }
    .technical-support__hour-price {
        font-size: 1.5rem;
    }
    .technical-support__hour-row {
        margin-bottom: 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .technical-support__hour-block {
        gap: 1rem;
    }
    .technical-support__hour-block p {
        font-size: 1.3rem;
    }
    .technical-support__submit {
        margin: 0 auto;
        width: auto;
        padding: 1.5rem 4.7rem;
        font-size: 1.2rem;
    }
    .technical-support__hour .technical-support__submit {
        max-width: 36.2rem;
        margin: 0 auto;
    }
}

/* contextual-advertising */

.advertising-case {
    margin-top: 15rem;
}
.contextual-advertising {
    padding-bottom: 17.7rem;
}
.contextual-advertising__container {
    padding: 0 2rem;
    position: relative;
}
.contextual-advertising__name {
    position: absolute;
    left: 4rem;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
}
.contextual-advertising__img {
    border-radius: 2rem 0rem;
    border-right: 0.1rem solid var(--Active-color);
    border-bottom: 0.1rem solid var(--Active-color);
    position: relative;
    padding: 0 4rem 4rem 0;
}
.contextual-advertising__img img {
    width: 23.2rem;
    border-radius: 0rem 0rem 2rem 0rem;
}
.contextual-advertising__img::after {
    content: '';
    width: 1.1rem;
    height: 1.1rem;
    background: var(--Active-color);
    border-radius: 100%;
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: 1;
}
.contextual-advertising__img::before {
    content: '';
    width: 1.1rem;
    height: 1.1rem;
    background: var(--Active-color);
    border-radius: 100%;
    position: absolute;
    top: 0;
    right: -0.5rem;
    z-index: 1;
}
.contextual-advertising__title {
    color: var(--Text-color1);
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.contextual-advertising__main {
    display: flex;
    flex-direction: column;
    gap: 8.2rem;
    position: relative;
}
.contextual-advertising__row {
    margin-left: 64rem;
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.contextual-advertising__main::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #2CCCC3 0%, rgba(44, 204, 195, 0.50) 52.87%, #021312 97.09%);
    left: 68rem;
    top: 0;
    height: calc(100% - 5rem);
    width: 0.1rem;
}
.contextual-advertising__number {
    background: var(--card-background);
    border: 0.1rem solid var(--Active-color);
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Active-color);
    font-family: "Prosto One";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.18rem;
}
.contextual-advertising__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2.8rem;
}
.contextual-advertising__item-title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.contextual-advertising__item-description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    max-width: 29.7rem;
}
.contextual-advertising__row:last-child {
    flex-direction: row-reverse;
    margin-left: 8rem;
    margin-right: auto;
}
.contextual-advertising__row:last-child .contextual-advertising__column {
    align-items: flex-end;
    padding-top: 0;
}
.contextual-advertising__row:last-child .contextual-advertising__item-description {
    text-align: right;
    max-width: 48.1rem;
}
.contextual-advertising__row:last-child .contextual-advertising__item-title {
    font-size: 3.6rem;
}

@media screen and (max-width: 992px) {
    .advertising-case {
        margin-top: 10rem;
    }
    .contextual-advertising {
        padding-bottom: 10rem;
    }
    .contextual-advertising__name {
        position: relative;
        left: 0;
        margin-top: 2rem;
        flex-direction: row;
        gap: 1rem;
        align-items: flex-end;
    }
    .contextual-advertising__img {
        padding: 0 2.7rem 2.7rem 0;
    }
    .contextual-advertising__img img {
        width: 15.8rem;
        border-radius: 0rem 0rem 2rem 0rem;
    }
    .contextual-advertising__img::after {
        width: 0.75rem;
        height: 0.75rem;
        bottom: -0.35rem;
    }
    .contextual-advertising__img::before {
        width: 0.75rem;
        height: 0.75rem;
        right: -0.35rem;
    }
    .contextual-advertising__title {
        font-size: 2rem;
        max-width: 11.5rem;
    }
    .contextual-advertising__main {
        gap: 3rem;
        margin-top: 6.5rem;
    }
    .contextual-advertising__row {
        margin-left: 0;
        gap: 2.3rem;
    }
    .contextual-advertising__main::after {
        left: 3.4rem;
        height: calc(100% - 7rem);
    }
    .contextual-advertising__number {
        width: 6.9rem;
        min-width: 6.9rem;
        height: 6.9rem;
        font-size: 3rem;
        letter-spacing: -0.15rem;
    }
    .contextual-advertising__column {
        gap: 1rem;
        padding-top: 0;
    }
    .contextual-advertising__item-title {
        font-size: 2rem;
    }
    .contextual-advertising__item-description {
        font-size: 1.3rem;
        max-width: 24.8rem;
    }
    .contextual-advertising__row:last-child {
        flex-direction: row;
        margin-left: 0;
        margin-right: 0;
    }
    .contextual-advertising__row:last-child .contextual-advertising__column {
        align-items: flex-start;
        padding-top: 0;
    }
    .contextual-advertising__row:last-child .contextual-advertising__item-description {
        text-align: left;
        max-width: 24.8rem;
    }
    .contextual-advertising__row:last-child .contextual-advertising__item-title {
        font-size: 2.4rem;
    }
}

/* development */

.case-development .case-title {
    font-size: 3.6rem;
}
.development {
    margin-bottom: 15rem;
}
.development-container {
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
}
.development-item {
    margin-top: -2rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: #021312;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}
.development-item:first-child {
    margin-top: 0;
}
.development-item__number {
    color: var(--Active-color);
    font-family: "Prosto One";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.18rem;
}
.development-item__row {
    display: flex;
    align-items: flex-start;
    gap: 3.3rem;
}
.development-item__column {
    width: 100%;
    max-width: 62rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
}
.development-item__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3.6rem;
}
.development-item__title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.development-item__description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.development-item__more {
    display: none;
}
.development-item__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.development-item__text > p {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.development-item__text > p span {
    font-size: 2.4rem;
    font-weight: 600;
}
.development-item__text-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    filter: drop-shadow(0 0 2rem #2CCCC3);
}
.development-item__text-row svg {
    width: 2.6rem;
    height: auto;
}
.development-item__text-row p {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.development-item__submit {
    border-radius: 5rem;
    border: 0.1rem solid var(--Text-color1);
    background: var(--Button-background);
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 2.25rem 3.2rem;
}
.development-item__submit:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}
.development-item__svg {
    display: flex;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Second-active-color, #147872);
    justify-content: center;
    align-items: center;
}
.development-item__svg svg:nth-child(1) {
    width: 2.1rem;
    height: auto;
}
.development-item__svg svg:nth-child(2) {
    display: none;
    width: 2.2rem;
    height: auto;
}
.development-item.active {
    background: var(--Button-background);
    margin: 2rem 0 4rem 0;
    margin-left: -2rem;
    width: calc(100% + 4rem);
}
.development-item.active .development-item__main {
    margin-bottom: 0;
}
.development-item.active .development-item__more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
}
.development-item.active .development-item__svg svg:nth-child(1) {
    display: none;
}
.development-item.active .development-item__svg svg:nth-child(2) {
    display: block;
}
.development-item.active .development-item__number {
    color: rgba(44, 204, 195, 0.10);
    font-family: "Prosto One";
    font-size: 9.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.48rem;
}
.development-item:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
    position: relative;
    z-index: 3;
    width: calc(100% + 4rem);
    margin-left: -2rem;
}

@media screen and (max-width: 992px) {
    .case-development .case-title {
        font-size: 1.7rem;
    }
    .development {
        margin-bottom: 6rem;
    }
    .development-container {
        padding: 0 1rem;
    }
    .development-item {
        flex-direction: column;
        gap: 1rem;
        width: 33.5rem;
        margin: -2rem auto 0 auto;
        padding: 2rem 2rem 3rem 2rem;
    }
    .development-item__number {
        font-size: 2.5rem;
        letter-spacing: -0.125rem;
    }
    .development-item__column {
        width: 100%;
        max-width: 62rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6rem;
    }
    .development-item__main {
        gap: 1.5rem;
        margin-bottom: 0;
    }
    .development-item__title {
        font-size: 1.7rem;
    }
    .development-item__description {
        font-size: 1.5rem;
    }
    .development-item__text {
        gap: 1rem;
    }
    .development-item__text > p {
        font-size: 1.6rem;
    }
    .development-item__text > p span {
        font-size: 1.6rem;
    }
    .development-item__text-row svg {
        width: 2.4rem;
        min-width: 2.4rem;
    }
    .development-item__text-row p {
        font-size: 1.6rem;
    }
    .development-item__submit {
        margin: 0 auto;
        font-size: 1.2rem;
        padding: 1.5rem 2rem;
    }
    .development-item__svg {
        width: 3.6rem;
        height: 3.6rem;
        position: absolute;
        top: 2rem;
        right: 2rem;
    }
    .development-item__svg svg:nth-child(1) {
        width: 1.7rem;
    }
    .development-item__svg svg:nth-child(2) {
        width: 1.8rem;
    }
    .development-item.active {
        width: 100%;
        margin-left: 0;
    }
    .development-item.active .development-item__more {
        gap: 3.8rem;
    }
    .development-item.active .development-item__number {
        font-size: 3.6rem;
        letter-spacing: -0.18rem;
    }
    .development-item:hover {
        box-shadow: none;
        position: initial;
        z-index: 0;
        width: 33.5rem;
        margin-left: auto;
    }
}

/* development-steps */

.development-steps {
    margin-bottom: 15rem;
}
.development-steps__container {
    display: flex;
    flex-direction: column;
    gap: 9rem;
}
.development-steps__name {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.development-steps__title {
    color: var(--Text-color1);
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.development-steps__description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    max-width: 67.8rem;
    width: 100%;
}
.development-steps__description span {
    font-size: 2rem;
    font-weight: 600;
}
.development-steps__main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 30rem;
}
.development-steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    width: 30rem;
    min-width: 30rem;
    height: 30rem;
    border-radius: 100%;
    border: 0.1rem solid var(--Active-color);
    background: var(--card-background);
    padding: 0 4.3rem;
    margin-left: -8.8rem;
    cursor: pointer;
}
.development-steps__item:first-child {
    margin-left: 0;
}
.development-steps__item-title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    max-width: 21.3rem;
}
.development-steps__item-description {
    color: var(--Text-color1);
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 200;
    line-height: 100%;
    max-width: 21.3rem;
}
.development-steps__item:last-child .development-steps__item-title {
    font-size: 4rem;
    font-weight: 700;
}
.development-steps__item:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
    width: 35rem;
    min-width: 35rem;
    height: 35rem;
    position: relative;
    z-index: 2;
    margin-right: -5rem;
    margin-top: -2.5rem;
}

@media screen and (max-width: 992px) {
    .development-steps {
        margin-bottom: 6rem;
    }
    .development-steps__container {
        gap: 3rem;
    }
    .development-steps__title {
        font-size: 1.7rem;
        max-width: 15.7rem;
    }
    .development-steps__description {
        font-size: 1.3rem;
        max-width: 16.8rem;
    }
    .development-steps__description span {
        font-size: 1.3rem;
    }
    .development-steps__main {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
        align-items: center;
    }
    .development-steps__item {
        width: 22.6rem;
        min-width: 22.6rem;
        height: 22.6rem;
        border-radius: 100%;
        margin-left: 0;
        margin: 0 auto;
        margin-top: -11.6rem;
        padding: 0 0.5rem;
    }
    .development-steps__item:first-child {
        margin: 0 auto;
        margin-top: 0;
    }
    .development-steps__item-title {
        font-size: 1.7rem;
    }
    .development-steps__item-description {
        font-size: 1.5rem;
    }
    .development-steps__item:last-child .development-steps__item-title {
        font-size: 2.4rem;
    }
    .development-steps__item:hover {
        width: 22.6rem;
        min-width: 22.6rem;
        height: 22.6rem;
        margin: 0 auto;
        margin-top: -11.6rem;
    }
    .development-steps__item:first-child:hover {
        margin: 0 auto;
        margin-top: 0;
    }
}

/* design idea */

.ready-solutions__container {
    position: relative;
}
.design-top__img {
    position: absolute;
    left: 23.9rem;
    width: 26.9rem;
    top: -8.1rem;
}
.design-idea {
    margin-bottom: 15rem;
}
.design-idea__container {
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.design-idea__title {
    color: var(--Text-color1);
    text-align: center;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}
.design-idea__form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.design-idea__form textarea {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    padding: 2rem 2.1rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    min-height: 12rem;
    height: 12rem;
}
.design-idea__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

@media screen and (max-width: 992px) {
    .design-top__img {
        display: none;
    }
    .design-idea {
        margin-bottom: 8rem;
    }
    .design-idea__container {
        gap: 2rem;
    }
    .design-idea__title {
        font-size: 2rem;
    }
    .design-idea__form {
        gap: 2rem;
    }
    .design-idea__form textarea {
        font-size: 1.3rem;
    }
}

/* design-steps */

.design-steps {
    margin-bottom: 12rem;
}
.design-steps__container {
    padding: 0 4rem;
}
.design-steps__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.design-steps__item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.design-steps__item-number {
    color: var(--Active-color);
    font-family: "Prosto One";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.16rem;
}
.design-steps__item-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 2rem;
    background: var(--background);
    padding: 4rem 2.6rem;
    height: 100%;
    position: relative;
}
.design-steps__item-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #2CCCC3, #010E0D);
    border-radius: 2rem;
}
.design-steps__item:nth-child(2n) .design-steps__item-main::before {
    background: linear-gradient(308deg, #2CCCC3, #010E0D);
}
.design-steps__item-main::after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    background: var(--background);
    border-radius: 2rem;
}
.design-steps__item-titlte {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.design-steps__item-description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    .design-steps {
        margin-bottom: 6rem;
    }
    .design-steps__container {
        padding: 0 2rem;
    }
    .design-steps__main {
        grid-template-columns: repeat(1, 1fr);
    }
    .design-steps__item-number {
        display: none;
    }
    .design-steps__item-main {
        gap: 0.5rem;
    }
    .design-steps__item-titlte {
        font-size: 1.7rem;
    }
    .design-steps__item-description {
        font-size: 1.3rem;
    }
}

/* popup */

.popup {
    transform: translateY(-140%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
}
.popup-fon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 14, 13, 0.70) 0%, rgba(1, 14, 13, 0.70) 100%);
}
.popup-main {
    margin: auto;
    z-index: 2;
    position: relative;
    width: 100%;
    overflow-y: auto;
    max-width: 84.2rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--card-background);
    padding: 2rem 0;
}
.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Second-active-color);
}
.popup-close svg {
    width: 1.6rem;
    height: auto;
}
.popup .application-main > p {
    text-align: center;
}


.popup-case .popup-main {
    max-width: 114rem;
    padding: 2rem 4rem 3rem 2rem;
}
.popup-case .popup-close {
    width: 4.6rem;
    height: 4.6rem;
}
.popup-case .popup-close svg {
    width: 2.2rem;
}
.popup-case__row {
    display: flex;
    gap: 2.6rem;
}
.popup-case__img {
    width: 100%;
    max-width: 50.4rem;
    min-width: 50.4rem;
    position: relative;
    height: 51.3rem;
    overflow: hidden;
    border-radius: 2rem;
}
.popup-case__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 19, 18, 0.00) 72.5%, #021312 100%);
    width: 100%;
    height: 100%;
}
.popup-case__img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.popup-case__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}
.popup-case__title {
    color: var(--Text-color1);
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
.popup-case__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.popup-case__tag {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 200;
    line-height: 100%;
}
.popup-case__description {
    color: var(--Text-color1);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.popup-case__link {
    padding: 1.5rem 2.85rem;
    border-radius: 5rem;
    border: 0.1rem solid var(--Text-color1);
    background: var(--Second-active-color);
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-top: auto;
}
.popup-case__link:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}
.popup-case__project {
    color: var(--Text-color1);
    font-family: Roboto;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 1.8rem 3.2rem;
    border-radius: 5rem;
    border: 1px solid var(--Text-color1);
    background: rgba(20, 120, 114, 0.20);
}
.popup-case__project:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}

.popup-free .popup-main {
    background-image: url('/local/templates/kondratev/images/popup-free.svg');
    background-repeat: no-repeat;
    background-position: center;
    max-width: 50rem;
    padding: 4.5rem 0 2rem 0;
    background-color: var(--background);
}
.popup-free .popup-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
}
.popup-free-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.popup-free__title {
    color: var(--Text-color1);
    text-align: center;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    max-width: 38rem;
}
.popup-free__description {
    color: var(--Text-color1);
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    max-width: 38rem;
}
.popup-free__button {
    color: var(--Text-color1);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 1.6rem 4.5rem;
    border-radius: 5rem;
    border: 0.1rem solid var(--Active-color);
    background: #052321;
}
.popup-free__button:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}

.privacy {
    margin: 11rem 0 5rem 0;
}

@media screen and (max-width: 992px) {
    .popup-main {
        max-width: 35.5rem;
        padding: 2rem 1rem;
        overflow-y: auto;
        max-height: none;
    }
    .popup-close {
        top: 1rem;
        right: 1rem;
        width: 2.4rem;
        height: 2.4rem;
        border-radius: 100%;
    }
    .popup-close svg {
        width: 1.2rem;
    }
    
    
    .popup-case .popup-main {
        margin: 0 auto;
        max-width: 35.5rem;
        padding: 1rem;
        top: 9rem;
        height: calc(100% - 8.9rem);
        border-radius: 2rem 2rem 0 0;
    }
    .popup-case .popup-close {
        width: 2.4rem;
        height: 2.4rem;
        z-index: 3;
    }
    .popup-case .popup-close svg {
        width: 1.2rem;
    }
    .popup-case__row {
        flex-direction: column;
        gap: 1.8rem;
    }
    .popup-case__img {
        max-width: 100%;
        min-width: 100%;
        height: 34.1rem;
        border-radius: 1.5rem;
    }
    .popup-case__column {
        gap: 0;
        padding-top: 0;
    }
    .popup-case__title {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }
    .popup-case__tags {
        gap: 2.2rem;
    }
    .popup-case__tag {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    .popup-case__description {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    .popup-case__link {
        margin-top: 0;
        padding: 1.5rem 2.5rem;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    .popup-case__project {
        font-size: 1.2rem;
        padding: 1.5rem 2.5rem;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    .popup-case__img::before {
        background: linear-gradient(180deg, rgba(2, 19, 18, 0.00) 0%, #021312 100%);
    }
    .popup-free .popup-main {
        max-width: 33.5rem;
        padding: 4rem 0 2rem 0;
    }
    .popup-free .popup-close {
        top: 1rem;
        right: 1rem;
        width: 2.4rem;
        height: 2.4rem;
    }
    .popup-free-main {
        gap: 2rem;
    }
    .popup-free__title {
        font-size: 1.7rem;
        max-width: 28.7rem;
    }
    .popup-free__description {
        font-size: 1.4rem;
        max-width: 27.4rem;
    }
    .popup-free__button {
        font-size: 1.2rem;
        padding: 1.5rem 2.5rem;
    }
}

/* portfolio */

.portfolio {
    margin-bottom: 6rem;
}
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 2rem;
    max-width: 140.1rem;
}
.portfolio-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.portfolio-item__img {
    width: 100%;
    height: 48rem;
    border-radius: 2rem;
    border: 0.1rem solid var(--Active-color);
    background: var(--Second-active-color);
    position: relative;
    overflow: hidden;
}
.portfolio-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-item__title {
    color: var(--Text-color1);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.portfolio-item:nth-child(1), .portfolio-item:nth-child(6), .portfolio-item:nth-child(7), .portfolio-item:nth-child(12), .portfolio-item:nth-child(13), .portfolio-item:nth-child(16), .portfolio-item:nth-child(20), .portfolio-item:nth-child(23) {
    max-width: 80.8rem;
}
.portfolio-item:nth-child(2), .portfolio-item:nth-child(5), .portfolio-item:nth-child(8), .portfolio-item:nth-child(11), .portfolio-item:nth-child(14), .portfolio-item:nth-child(15), .portfolio-item:nth-child(19), .portfolio-item:nth-child(24) {
    max-width: 53.2rem;
}
.portfolio-item:nth-child(3), .portfolio-item:nth-child(4), .portfolio-item:nth-child(9), .portfolio-item:nth-child(10), .portfolio-item:nth-child(17), .portfolio-item:nth-child(18), .portfolio-item:nth-child(21), .portfolio-item:nth-child(22) {
    max-width: 67rem;
}

@media screen and (max-width: 992px) {
    .portfolio {
        margin-bottom: 10rem;
    }
    .portfolio-item__title {
        text-align: left;
    }
    .portfolio-container {
        gap: 2rem;
    }
    .portfolio-item {
        gap: 2rem;
    }
    .portfolio-item__title {
        font-size: 1.7rem;
    }
    .portfolio-item {
        max-width: none !important;
    }
    .portfolio-item__img {
        height: 24rem;
    }
    .portfolio-item:nth-child(2) .portfolio-item__img, .portfolio-item:nth-child(5) .portfolio-item__img, .portfolio-item:nth-child(8) .portfolio-item__img, .portfolio-item:nth-child(14) .portfolio-item__img, .portfolio-item:nth-child(15) .portfolio-item__img, .portfolio-item:nth-child(19) .portfolio-item__img, .portfolio-item:nth-child(20) .portfolio-item__img, .portfolio-item:nth-child(24) .portfolio-item__img {
        height: 30.2rem;
    }
    .portfolio-item:nth-child(6) .portfolio-item__img, .portfolio-item:nth-child(16) .portfolio-item__img, .portfolio-item:nth-child(23) .portfolio-item__img {
        height: 20rem;
    }
    .portfolio-item:nth-child(7) .portfolio-item__img, .portfolio-item:nth-child(12) .portfolio-item__img, .portfolio-item:nth-child(13) .portfolio-item__img, .portfolio-item:nth-child(18) .portfolio-item__img, .portfolio-item:nth-child(21) .portfolio-item__img {
        height: 19.8rem;
    }
}

/* 404 */

.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20rem;
    position: relative;
}
.page-404 h2 {
    color: #FFF;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.page-404 a {
    border-radius: 5rem;
    border: 0.1rem solid #FFF;
    background: rgba(20, 120, 114, 0.20);
    padding: 1.8rem 6rem;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
.page-404 a:hover {
    box-shadow: 0 0 2rem 0 #2CCCC3;
}
.page-404 img:nth-child(3) {
    width: 22.4rem;
    margin-top: 2rem;
}
.page-404 img:nth-child(4) {
    position: absolute;
    width: 101.3rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15.5rem;
}
.popup-thanks .popup-main {
    padding: 5rem 0 7.4rem 0;
}
.thanks-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}
.thanks-main img {
    width: 26.2rem;
}
.thanks-main p {
    color: #FFF;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    max-width: 38.6rem;
    text-align: center;
}
.thanks-main p b {
    font-weight: 800;
}


@media screen and (max-width: 992px) {
    .page-404 {
        padding-top: 6rem;
    }
    .page-404 h2 {
        font-size: 1.7rem;
        margin-bottom: 9rem;
        max-width: 16.8rem;
    }
    .page-404 a {
        padding: 1.5rem 4rem;
        font-size: 1.2rem;
        order: 3;
        margin: 5rem 0 8rem 0;
    }
    .page-404 img:nth-child(3) {
        width: 13.6rem;
        margin-top: 0;
    }
    .page-404 img:nth-child(4) {
        width: 31.9rem;
        top: 12.1rem;
    }
    .popup-thanks .popup-main {
        padding: 3rem 0 4.5rem 0;
    }
    .thanks-main {
        gap: 0.5rem;
    }
    .thanks-main img {
        width: 14.6rem;
    }
    .thanks-main p {
        font-size: 1.7rem;
        max-width: 23.2rem;
    }
    
    
}