.main-block {
    padding: 130px 0 180px;
}

.main-block .text p {
    margin-top: 8px;
}

.cases {
    padding-top: 110px;
    padding-bottom: 160px;
    display: grid;
    grid-template-columns: repeat(3, 380px);
    gap: 0 20px;
}

.cases .item {
    position: relative;
    margin-bottom: 20px;
}

.cases .item:nth-child(1), .cases .item:nth-child(3), .cases .item:nth-child(5) {
    order: 1;
}

.cases .item:nth-child(7), .cases .item:nth-child(9), .cases .item:nth-child(11) {
    order: 3;
}

.cases .item:nth-child(13), .cases .item:nth-child(15), .cases .item:nth-child(17) {
    order: 5;
}

.cases .content:nth-child(2), .cases .content:nth-child(4), .cases .content:nth-child(6) {
    order: 2;
}

.cases .content:nth-child(8), .cases .content:nth-child(10), .cases .content:nth-child(12) {
    order: 4;
}

.cases .content:nth-child(14), .cases .content:nth-child(16), .cases .content:nth-child(18) {
    order: 6;
}

.cases .item .title {
    border: 1px solid var(--orange-100);
    border-radius: 30px;
    padding: 25px 40px 65px 30px;
    position: relative;
    height: 320px;
    transition: .35s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 380px;
}

.cases .item .title:hover {
    background: var(--orange-100);
}

.cases .item .title p {
    min-height: 80px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    color: var(--dark-200);
    white-space: pre-line;
}

.cases .item .title p::after {
    font-family: 'icon';
    content: '\e939';
    color: var(--orange-100);
    position: absolute;
    top: calc(100% - 62px);
    right: 32px;
    font-size: 15px;
    line-height: 15px;
    transition: .35s;
    margin-top: 10px;
}

.cases .item .title:hover p,
.cases .item .title:hover p::after {
    color: var(--white);
}

.cases .item.open .title p::after {
    transform: rotate(180deg);
}

.cases .item .title .hover-image {
    display: block;
    position: absolute;
    top: 0;
    right: 25px;
    opacity: 0;
    transition: .45s;
    width: 204px;
}

.cases .item .title .cover-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
}

.cover-image img {
    position: absolute;
    z-index: -1;
}

.cases .item .title:hover .hover-image {
    opacity: 1;
    transition: 1.8s;
}

main img {
    width: 100%;
    max-width: 100%;
}

.cases .item + .content {
    width: 100%;
    max-width: 1180px;
    gap: 10px;
    max-height: 0;
    transition: .8s linear;
    overflow: hidden;
    grid-column: 1/4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cases .item.open + .content {
    max-height: 1000px;
}

.cases .item + .content div:first-child {
    margin-top: 10px;
}

.cases .item + .content div:last-child {
    margin-bottom: 30px;
}

.cases .item + .content b {
    white-space: normal;
    color: var(--dark-200);
    line-height: 22px;
}

.cases .item + .content > div {
    display: flex;
    padding: 20px 90px 20px 50px;
    background: var(--white-300);
    border-radius: 30px;
    gap: 20px;
}

.cases .item + .content > div::before {
    content: '';
    background: var(--orange-100);
    width: 1px;
    display: flex;
    order: 1;
}

.cases .item + .content span {
    color: var(--orange-100);
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 1px;
}

.cases .item + .content .information {
    position: relative;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cases .item + .content .information ul {
    list-style: none;
}

.cases .item + .content .information li,
.cases .item + .content .information p {
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    color: var(--grey-300);
    white-space: pre-line;
}

.work.direction {
    padding-bottom: 40px;
    position: relative;
}

.work.direction h2 {
    margin-bottom: 40px;
    line-height: 50px;
    letter-spacing: 1px;
}

.work.direction .list-areas {
    background: var(--dark-200);
}

section.contact-form .image-line {
    top: -70px;
}

@media screen and (max-width: 1220px) {
    .main-block::before {
        background-size: contain;
        width: 150%;
    }

    .ellipse {
        right: unset;
    }

    .cases {
        grid-template-columns: repeat(2, 350px);
        justify-content: center;
    }

    .cases .item:nth-child(1), .cases .item:nth-child(3) {
        order: 1;
    }

    .cases .item:nth-child(5), .cases .item:nth-child(7) {
        order: 3;
    }

    .cases .item:nth-child(9), .cases .item:nth-child(11) {
        order: 5;
    }

    .cases .item:nth-child(13), .cases .item:nth-child(15) {
        order: 7;
    }

    .cases .item:nth-child(17) {
        order: 9;
    }

    .cases .content:nth-child(2), .cases .content:nth-child(4) {
        order: 2;
    }

    .cases .content:nth-child(6), .cases .content:nth-child(8) {
        order: 4;
    }

    .cases .content:nth-child(10), .cases .content:nth-child(12) {
        order: 6;
    }

    .cases .content:nth-child(14), .cases .content:nth-child(16) {
        order: 8;
    }

    .cases .content:nth-child(18) {
        order: 10;
    }

    .cases .item + .content {
        grid-column: 1/3;
    }
}

@media screen and (max-width: 768px) {
    .main-block {
        padding: 80px 0 100px;
        min-height: 520px;
    }

    .main-block::before {
        top: 0;
        left: -30%;
        width: 150%;
    }

    .main-block .icon, .main-block .text h1 {
        font-size: 24px;
    }

    .ellipse {
        right: 0;
    }

    .cases {
        grid-template-columns: repeat(1, 350px);
        justify-content: center;
    }

    .cases .item:nth-child(1), .cases .item:nth-child(3), .cases .item:nth-child(5),
    .cases .item:nth-child(7), .cases .item:nth-child(9), .cases .item:nth-child(11),
    .cases .item:nth-child(13), .cases .item:nth-child(15), .cases .item:nth-child(17),
    .cases .content:nth-child(2), .cases .content:nth-child(4), .cases .content:nth-child(6),
    .cases .content:nth-child(8), .cases .content:nth-child(10), .cases .content:nth-child(12),
    .cases .content:nth-child(14), .cases .content:nth-child(16), .cases .content:nth-child(18) {
        order: unset;
    }

    .cases .item.open + .content {
        max-height: 3500px;
    }

    .cases .item + .content > div {
        flex-direction: column;
        padding: 10px 20px 20px;
        gap: 10px;
    }

    .cases .item + .content > div::before {
        width: 100%;
        height: 1px;
    }
}

@media screen and (max-width: 375px) {
    main {
        overflow: hidden;
    }

    .main-block {
        padding: 50px 0 80px;
        min-height: 460px;
    }

    .main-block::before {
        width: 180%;
        left: -60%;
    }

    .main-block .text p {
        font-size: 14px;
        line-height: 20px;
    }

    .cases {
        padding-top: 30px;
        padding-bottom: 70px;
    }

    .cases .item {
        margin-bottom: 10px;
    }

    .cases .item .title {
        padding: 20px 20px 30px;
    }

    .cases .item .title p {
        font-size: 16px;
    }

    .cases .item.open + .content {
        max-height: 3000px;
    }

    .cases .item.open + .content div:last-child {
        margin-bottom: 40px;
    }

    .cases .item + .content span {
        font-size: 22px;
        line-height: 30px;
    }

    .cases .item + .content .information li,
    .cases .item + .content .information p,
    .cases .item + .content b {
        font-size: 12px;
        line-height: 18px;
    }

    .work.direction {
        padding-top: 0;
        padding-bottom: 0;
    }

    .work.direction h2 {
        line-height: 24px;
    }

    section.contact-form .image-line {
        top: auto;
        bottom: -150px;
    }
}


/*----------------------------------------------------*/

.title-page {
    background: var(--dark-200);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 130px;
}

.title-page .ellipse div {
    border: 1px solid var(--orange-100);
}

.title-page span.wrapper {
    border-top: 1px solid var(--grey-400);
    padding-top: 80px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-200);
}

.title-page span.wrapper::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--grey-200);
    border-radius: 50%;
}

.title-page div.wrapper {
    padding-top: 40px;
}

.title-page .content {
    display: flex;
    gap: 15px;
}

.title-page.business-activity h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 0;
    color: var(--orange-100);
    margin: 10px 0 0;
}

.title-page .content > div > a {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 87, 54, 0.5);
    display: block;
    max-width: 295px;
    margin-bottom: 30px;
}

.title-page h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    font-size: 34px;
    line-height: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange-100);
    margin: 10px 0 0;
    max-width: 295px;
}

.title-page h2::after {
    content: '\e939';
    font-family: 'icon';
    font-size: 32px;
    line-height: 32px;
    color: var(--orange-100);
}

.title-page .wrapper .vertical-line {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 5px 0 45px 50px;
}

.title-page .wrapper .vertical-line::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, var(--orange-100), transparent);
}

.title-page h1 {
    font-size: 34px;
    letter-spacing: 1px;
    line-height: 50px;
    margin-bottom: 27px;
    text-transform: uppercase;
    max-width: 780px;
}

.title-page p.text {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 22px;
    line-height: 32px;
    color: var(--grey-100);
    max-width: 750px;
    letter-spacing: 1px;
}

.title-page .block-text {
    margin-top: 95px;
}

.services .wrapper,
.description .wrapper {
    position: relative;
}

.services .wrapper > p,
.description .wrapper > p {
    font-family: 'Inter';
    font-size: 18px;
    line-height: 30px;
    color: var(--grey-100);
    margin-bottom: 40px;
}

.services {
    background-color: var(--dark-200);
    padding-bottom: 120px;
}

.subservices {
    position: relative;
    padding-bottom: 120px;
}

/* .services-design {
    padding-bottom: 190px;
} */
/* .services ~ .advantage-block {
    padding-top: 120px;
} */
.services h2 {
    font-size: 34px;
    line-height: 45px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.subservices .wrapper > p {
    font-family: 'Inter';
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.services .items {
    display: flex;
    flex-direction: column;
}

.services .item {
    display: grid;
    grid-template-columns: 330px auto;
    align-items: center;
    gap: 50px;
    padding: 20px 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top-right-radius: 30px;
}

.subservices .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.services .item div {
    display: flex;
    align-items: center;
    /* width: 330px; */
    gap: 10px;
}

.services .item h3 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--orange-100);
    border: 1px solid var(--orange-100);
    border-radius: 30px;
    padding: 8px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.subservices .item h3 {
    width: auto;
    padding: 8px 20px;
    max-width: 790px;
}

.services .item div a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--orange-100);
    transition: .3s linear;
}

.services .item div a:hover {
    background-color: var(--orange-100);
    box-shadow: 5px 0 10px rgba(255, 87, 54, 0.4);
}

.services .item div a::after {
    content: '\e93a';
    font-family: 'icon';
    font-size: 10px;
    color: var(--orange-100);
    transition: .3s linear;
}

.services .item div a:hover::after {
    color: var(--dark-200);
}

.services .item p {
    font-family: 'Inter';
    color: var(--grey-100);
}

.services .item ul {
    margin-left: 18px;
    color: var(--grey-100);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services .item li {
    color: var(--grey-100);
    font-family: 'Inter';
    line-height: 18px;
}

.services .item p a {
    font-family: 'Inter';
    color: var(--grey-100);
    text-decoration: underline;
}

.image-line {
    position: absolute;
    top: -180px;
    right: 70px;
    z-index: 10;
}

.subservices .image-line img {
    max-width: 405px;
    max-height: 395px;
    width: 100%;
}

.description {
    background-color: var(--dark-200);
    padding-bottom: 120px;
    position: relative;
}

.description h2 {
    font-size: 34px;
    line-height: 36px;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.description-cicd h2 {
    color: var(--orange-100);
    margin-bottom: 40px;
}

.description-cicd .wrapper > p {
    font-family: 'Inter';
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    color: var(--grey-100);
}

.description .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    row-gap: 20px;
    overflow: hidden;
}

.description-design .items,
.description-cicd .items {
    gap: 20px;
}

.description-design .items:has(.item:nth-child(5)),
.description-cicd .items:has(.item:nth-child(5)) {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

.description .item {
    padding: 20px 20px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top-right-radius: 50px;
    transform: translateX(-100%);
    transition: .7s;
    opacity: 0;
    background: var(--dark-200);
    position: relative;
}

.description .item:first-child {
    z-index: 6;
}

.description .item:nth-child(2) {
    transition-delay: .5s;
    z-index: 5;
}

.description .item:nth-child(3) {
    transition-delay: 1s;
    z-index: 4;
}

.description .item:nth-child(4) {
    transition-delay: 1.5s;
    z-index: 3;
}

.description .item:nth-child(5) {
    transition-delay: 2s;
    z-index: 2;
}

.description .item:nth-child(6) {
    transition-delay: 2.5s;
    z-index: 1;
}

.description .items.show .item {
    transform: translateX(0);
    opacity: 1;
}

.description .item h3 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    max-width: 210px;
}

.description-cicd .item h3,
.description-oblachnie .item h3,
.description-design .item h3 {
    max-width: 100%;
}

.description .item p {
    font-family: 'Inter';
    font-size: 14px;
    line-height: 22px;
    color: var(--grey-100);
}

/* .description-design .image-line {
    bottom: -250px;
} */
.image-line .ellipse {
    width: 404px;
    height: 394px;
    position: static;
    transform: rotateY(180deg);
}

.image-line .ellipse div {
    width: 170px;
    height: 370px;
    border-radius: 85px/180px;
    border: 1px solid var(--orange-100);
}

.offer {
    background-color: var(--dark-200);
    padding-bottom: 130px;
}

.offer h2 {
    font-size: 34px;
    line-height: 45px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.offer .items {
    display: flex;
    flex-direction: column;
}

.offer .item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.offer .item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.offer .item h3,
.offer .item h3 a,
.offer .item > a {
    display: flex;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--orange-100);
    padding: 8px 20px;
    border: 1px solid var(--orange-100);
    border-radius: 30px;
    transition: 0.2s;
}

.offer .item h3 a:hover {
    background: var(--orange-100);
    color: var(--white);
}

.offer .item h3 a:hover::after {
    color: var(--white);
}

.offer .item h3:has(a) {
    border: none;
    border-radius: 0;
    padding: 0;
}

.offer .item a {
    gap: 10px;
    align-items: center;
}

.offer .item a::after {
    content: '\e93e';
    font-family: 'icon';
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
    color: var(--orange-100);
}

.offer .item .body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.offer .item .body span,
.offer .item .body a {
    display: flex;
    font-family: 'Inter';
    line-height: 22px;
    padding: 8px 15px;
    border: 1px solid var(--grey-100);
    border-radius: 30px;
}

.offer .item .body a {
    transition: .3s linear;
}

.offer .item .body a:hover {
    color: var(--dark-200);
    background: var(--white);
    border: 1px solid var(--white);
}

.offer .item .body a::after {
    color: var(--grey-100);
    transition: .3s linear;
}

.offer .item .body a:hover::after {
    color: var(--dark-200);
}

.advantage-block {
    padding-top: 220px;
    display: flex;
    justify-content: space-between;
    gap: 3%;
    position: relative;
}

.advantage-block > div:first-child {
    max-width: 365px;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.advantage-block h2 {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 1px;
    color: var(--dark-200);
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-transform: uppercase;
}

.advantage-block h2::after {
    content: '\e91e';
    font-family: 'icon';
    font-size: 31px;
    line-height: 31px;
    color: var(--orange-100);
}

.advantage-block img {
    max-width: 351px;
}

.advantage-block .items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    padding: 1px 0 0 1px;
}

.advantage-block .item {
    position: relative;
    padding-left: 1px;
    border-top-left-radius: 30px;
    background: var(--white);
}

.advantage-block .item > div {
    display: grid;
    grid-template-columns: 60px auto;
    gap: 10px 30px;
    opacity: 0;
    transform: translateY(-50px);
    transition: .7s;
    padding: 15px 35px 15px 30px;
    border-top-left-radius: 30px;
}

.advantage-block .item:first-child > div,
.advantage-block .item:nth-child(2)::before {
    transition-delay: .7s;
}

.advantage-block .item:nth-child(2) > div,
.advantage-block .item:nth-child(3)::before {
    transition-delay: 1.4s;
}

.advantage-block .item:nth-child(3) > div,
.advantage-block .item:nth-child(4)::before {
    transition-delay: 2.1s;
}

.advantage-block .item:nth-child(4) > div,
.advantage-block .item:nth-child(5)::before {
    transition-delay: 2.8s;
}

.advantage-block .item:nth-child(5) > div,
.advantage-block .item:nth-child(6)::before {
    transition-delay: 3.5s;
}

.advantage-block .item:nth-child(6) > div,
.advantage-block .item:nth-child(7)::before {
    transition-delay: 4.2s;
}

.advantage-block .item:nth-child(7) > div,
.advantage-block .item:nth-child(8)::before {
    transition-delay: 4.9s;
}

.advantage-block .item:nth-child(8) > div,
.advantage-block .item:nth-child(9)::before {
    transition-delay: 5.6s;
}

.advantage-block .item::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    height: 1px;
    background: var(--orange-100);
    border-top-left-radius: 30px;
    width: 0;
    opacity: 0;
    transition: .7s, height 3s;
    z-index: -1;
}

.advantage-block .items.show .item > div {
    opacity: 1;
    transform: translateY(0);
}

.advantage-block .items.show .item::before {
    height: 100%;
    opacity: 1;
    width: calc(100% + 1px);
}

.advantage-block .item span {
    grid-area: 1/1/3/2;
    font-family: 'Craftwork Grotesk';
    font-weight: 900;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 1px;
    color: var(--orange-100);
}

.advantage-block .item h3 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--dark-200);
}

.advantage-block .item p {
    font-family: 'Inter';
    color: var(--grey-300);
}

section.contact-form .image-line {
    top: -70px;
}

main .devtools-description {
    background: var(--dark-200);
    position: relative;
}

main .devtools-description .wrapper {
    display: flex;
    gap: 68px;
}

main .devtools-description .title {
    width: 32%;
}

main .devtools-description .title h2 {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: pre-line;
    display: flex;
    flex-direction: column;
}

main .devtools-description .title h2::after {
    font-family: 'icon';
    content: '\e91e';
    font-size: 32px;
    color: var(--white);
    margin-top: 25px;
    line-height: 32px;
}

main .devtools-description .title img {
    margin-top: 85px;
    width: 100%;
    max-width: 100%;
}

main .devtools-description .content {
    width: 68%;
    min-height: 568px;
}

main .devtools-description .content .item {
    position: relative;
    overflow: hidden;
}

main .devtools-description .content .item .icon {
    display: flex;
    gap: 30px;
    padding: 0px;
    overflow: hidden;
    transition: .7s linear;
    opacity: 0;
    transform: translateY(-50%);
}

main .devtools-description .content .item .icon > div {
    padding: 30px 0;
}

main .devtools-description .content.show .item:first-child .icon {
    transition-delay: .9s;
}

main .devtools-description .content.show .item:nth-child(2) .icon {
    transition-delay: 1.8s;
}

main .devtools-description .content.show .item:nth-child(3) .icon {
    transition-delay: 2.7s;
}

main .devtools-description .content.show .item:nth-child(4) .icon {
    transition-delay: 3.6s;
}

main .devtools-description .content.show .item::before,
main .devtools-description .content.show .item:last-child::after {
    width: 100%;
}

main .devtools-description .content.show .item:nth-child(2):before {
    transition-delay: .9s;
}

main .devtools-description .content.show .item:nth-child(3):before {
    transition-delay: 1.8s;
}

main .devtools-description .content.show .item:nth-child(4):before {
    transition-delay: 2.7s;
}

main .devtools-description .content.show .item:last-child::after {
    transition-delay: 3.6s;
}

main .devtools-description .content .item .icon::before {
    font-family: 'icon';
    color: var(--orange-100);
    font-size: 70px;
    line-height: 70px;
    margin-top: 30px;
}

main .devtools-description .content .item::before,
main .devtools-description .content .item:last-child::after {
    background: var(--grey-400);
    height: 1px;
    width: 0%;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transition: 1s linear;
    opacity: 1;
}

main .devtools-description .content .item:last-child::after {
    top: calc(100% - 1px);
}

main .devtools-description .content.show .item .icon {
    transform: translateY(0);
    opacity: 1;
}

main .devtools-description .content .budget .icon::before {
    content: '\e922';
}

main .devtools-description .content .launch .icon::before {
    content: '\e91c';
}

main .devtools-description .content .team .icon::before {
    content: '\e91b';
}

main .devtools-description .content .functionality .icon::before {
    content: '\e927';
}

main .devtools-description .content .solution .icon::before {
    content: '\e935';
}

main .devtools-description .content .result .icon::before {
    content: '\e937';
}


main .devtools-description .content h3 {
    color: var(--orange-100);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

main .devtools-description .content p {
    font-family: 'Inter', sans-serif;
    color: var(--grey-100);
}

main .devtools-description .image-line {
    position: absolute;
    left: 63%;
}

main .devtools-description .image-line img {
    max-width: 404px;
    max-height: 394px;
    width: 100%;
}

.slider {
    padding-top: 120px;
    /*background: var(--dark-200);*/
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-right: 20px;
    margin-left: 20px;
}

.splide__pagination__page.is-active {
    background: var(--orange-100)!important;
}

.splide__arrow svg {
    fill: var(--orange-100)!important;
}

.splide__pagination {
    bottom: -30px!important;
}

@media screen and (max-width: 1220px) {
    .title-page .content {
        gap: 35px;
    }

    .title-page .wrapper .vertical-line::before {
        width: 100%;
        height: 1px;
        position: static;
    }

    .title-page .wrapper .vertical-line {
        padding: 0;
        gap: 20px;
    }
}

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

    .splide__slide img {
        margin:0;
    }

    .title-page {
        padding-top: 0;
        padding-bottom: 80px;
        overflow: hidden;
    }

    .title-page span.wrapper {
        padding-top: 40px;
    }

    .title-page h1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .title-page h2 {
        margin: 0;
    }

    .title-page h2 {
        font-size: 25px;
        line-height: 30px;
        max-width: 200px;
        gap: 10px;
    }

    .title-page h2::after {
        font-size: 15px;
    }

    .title-page p.text {
        font-size: 18px;
        line-height: 24px;
    }

    .title-page .image-line {
        left: auto;
        right: 5px;
        top: 22px;
    }

    .title-page .image-line img {
        max-width: 185px;
        max-height: 190px;
    }

    .services .item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services .item div {
        width: 100%;
        max-width: 330px;
    }

    .subservices .item h3 {
        text-align: center;
    }

    .subservices .image-line {
        right: 0;
    }

    .advantage-block {
        flex-direction: column;
        gap: 30px;
    }

    .advantage-block .item {
        border-top-left-radius: 30px;
        border: 1px solid var(--orange-100);
        border-right: none;
        border-bottom: none;
    }

    .advantage-block img {
        display: none;
    }

    .advantage-block > div:first-child {
        max-width: 100%;
    }

    .advantage-block .item > div {
        transform: unset;
    }

    .advantage-block h2 {
        flex-direction: row;
        gap: 0;
        font-size: 26px;
        line-height: 30px;
    }

    .advantage-block .item::before {
        display: none;
    }

    section.contact-form .image-line {
        transform: rotate(-85deg);
        bottom: -120px;
        left: 0;
        right: auto;
        top: auto;
    }

    section.contact-form .image-line img {
        max-width: 205px;
        max-height: 215px;
    }

    .description-cicd .items,
    .description-design .items {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .description-design .items:has(.item:nth-child(5)),
    .description-cicd .items:has(.item:nth-child(5)) {
        grid-template-columns: 100%;
    }

    main .devtools-description {
        padding: 40px 0 80px;
    }

    main .devtools-description .wrapper {
        flex-direction: column;
        gap: 40px;
    }

    main .devtools-description .title {
        width: 100%;
    }

    main .devtools-description .title img {
        display: none;
    }

    main .devtools-description .content {
        width: 100%;
    }

    main .devtools-description .title h2 {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    main .devtools-description .title h2::after {
        margin-top: 0;
    }

    main .devtools-description .content .item .icon {
        gap: 10px;
    }
}

@media screen and (max-width: 375px) {
    .title-page span.wrapper {
        padding-top: 30px;
        font-size: 14px;
    }

    .title-page div.wrapper {
        padding-top: 20px;
    }

    .title-page h2 {
        font-size: 20px;
        line-height: 30px;
        max-width: 200px;
        gap: 10px;
    }

    .title-page h2::after {
        font-size: 15px;
    }

    .title-page h1 {
        font-size: 19px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .title-page p.text {
        font-size: 18px;
        line-height: 24px;
    }

    .title-page .block-text {
        margin-top: 50px;
    }

    .title-page .block-text .text {
        padding: 25px 15px 25px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .title-page .content > div > a {
        font-size: 14px;
        line-height: 22px;
    }

    .services {
        padding-bottom: 80px;
    }

    .services h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .services .items {
        gap: 20px;
    }

    .services .item {
        padding: 30px 20px 10px 0;
    }

    .services .item div {
        gap: 10px;
        max-width: 100%;
    }

    .services .item h3 {
        font-size: 14px;
        line-height: 22px;
        padding: 4px 0;
    }

    .subservices .item h3 {
        padding: 4px 10px;
        width: 100%;
        line-height: 20px;
    }

    .services .wrapper > p,
    .description .wrapper > p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .services .item p br {
        display: none;
    }

    .services .item div a {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }

    .services .item p,
    .services .item p a {
        font-size: 12px;
        line-height: 16px;
    }

    .subservices .image-line {
        bottom: -100px;
    }

    .subservices .image-line img {
        max-width: 185px;
        max-height: 190px;
    }

    .services .item li {
        font-size: 12px;
    }

    .offer {
        padding-bottom: 80px;
    }

    .offer h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .offer .item:first-child {
        border-top: none;
        padding-top: 0;
    }

    .offer .item div {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .offer .item h3,
    .offer .item h3 a,
    .offer .item > a {
        font-size: 14px;
        line-height: 18px;
        padding: 10px 15px;
        min-height: 50px;
        width: 100%;
        text-align: center;
    }

    .offer .item h3, .offer .item a {
        justify-content: center;
    }

    .offer .item .body span, .offer .item .body a {
        width: 100%;
    }

    .offer .item .body span,
    .offer .item .body a {
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 50px;
    }

    .description {
        margin-top: -1px;
        padding-bottom: 75px;
    }

    .description h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .description-cicd .wrapper > p {
        font-size: 14px;
        line-height: 20px;
        color: #fff;
    }

    .description .item {
        padding: 30px 20px 30px 0px;
    }

    .description .item h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .description .item p {
        font-size: 14px;
        line-height: 18px;
    }

    .description-cicd .item p {
        font-size: 12px;
    }

    .services ~ .advantage-block {
        padding-top: 80px;
    }

    .advantage-block {
        padding-top: 80px;
    }

    .advantage-block h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .advantage-block h2.cicd {
        flex-direction: column;
        gap: 30px;
    }

    .advantage-block .item > div {
        padding: 10px 0 10px 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .advantage-block .item span {
        font-size: 22px;
        line-height: 30px;
    }

    .advantage-block .item h3 {
        font-size: 16px;
    }

    .advantage-block .item p {
        font-size: 12px;
        line-height: 18px;
    }

    .image-line {
        top: -100px;
        display: none;
    }

    .image-line .ellipse {
        width: 220px;
        height: 225px;
    }

    .image-line .ellipse div {
        width: 120px;
        height: 226px;
        border-radius: 60px/108px;
    }

    section.contact-form {
        margin-top: 50px;
    }

    main .devtools-description .title h2 {
        font-size: 20px;
        line-height: 26px;
    }

    main .devtools-description .content .item .icon {
        flex-direction: column;
    }

    main .devtools-description .content .item .icon::before {
        margin-top: 20px;
        font-size: 32px;
        line-height: 40px;
    }

    main .devtools-description .content .item .icon > div {
        padding: 0;
        padding-bottom: 20px;
    }

    main .devtools-description .content h3 {
        font-style: 16px;
    }

    main .devtools-description .content p {
        font-size: 12px;
        line-height: 18px;
    }
}
