.title-page {
    background: var(--dark-200);
    position: relative;
    display: flex;
    align-items: center;
}
.title-page .ellipse div {
    border: 1px solid var(--orange-100);
}
.title-page .wrapper {
    border-top: 1px solid var(--grey-400);
    padding-top: 140px;
}
.title-page .content {
    display: flex;
}
.title-page .content div:first-child {
    margin-right: 110px;
}
.title-page .content .icon {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--orange-100);
    margin: 10px 0 0;
}
.title-page .content .icon::before {
    content: '\e91e';
    font-family: 'icon';
    font-size: 43px;
    line-height: 43px;
}
.title-page .content .vertical-line {
    display: flex;
}
.title-page .content .vertical-line::before {
    content: '';
    height: 230px;
    width: 1px;
    background: linear-gradient(to bottom, var(--orange-100), transparent);
    margin-right: 60px;
}
.title-page .content .icon,
.title-page .content .vertical-line h1 {
    font-size: 34px;
    letter-spacing: 1px;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.title-page .block-text {
    margin-top: 100px;
}
.title-page .block-text p {
    position: relative;
    z-index: 1;
}
.industries {
    background: var(--dark-200);
    padding-top: 120px;
    padding-bottom: 120px;
}
.industries .wrapper {
    position: relative;
}
.industries .list-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, 380px);
    gap: 20px;
    justify-content: center;
}
.industries .list-areas .item {
    background: var(--grey-700);
    border-radius: 30px;
    height: 430px;
    padding: 30px 30px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.industries .list-areas .item::before {
    font-family: 'icon';
    font-size: 30px;
    line-height: 30px;
    color: var(--orange-100);
    margin-bottom: 15px;
}
.list-areas .item:hover {
    background: var(--orange-200);
    transition: .35s;
}
.industries .list-areas .auto {
    order: 1;
}
.industries .list-areas .auto::before {
    font-size: 41px;
    line-height: 41px;
}
.industries .list-areas .trade {
    order: 2;
}
.industries .list-areas .trade::before,
.industries .list-areas .infrastructure::before {
    font-size: 36px;
    line-height: 36px;
}
.industries .list-areas .infrastructure {
    order: 3;
}
.industries .list-areas .building {
    order: 4;
}
.industries .list-areas .building::before {
    font-size: 38px;
    line-height: 38px;
}
.industries .list-areas .tourism {
    order: 5;
}
.industries .list-areas .safety {
    order: 6;
}
.industries .list-areas .learning {
    order: 7;
}
.industries .list-areas .telecommunications {
    order: 8;
}
.industries .list-areas .finance {
    order: 9;
}
.industries .list-areas .finance::before {
    font-size: 33px;
    line-height: 33px;
}
.industries .list-areas .agriculture {
    order: 10;
}
.industries .list-areas .energy {
    order: 11;
}
.industries .list-areas .industry {
    order: 12;
}
.industries .list-areas .insurance {
    order: 13;
}
.industries .list-areas .sports {
    order: 14;
}
.industries .list-areas .startups {
    order: 15;
}
.industries .list-areas .item .title {
    color: var(--orange-100);
    font-size: 18px;
    text-transform: uppercase;
}
.industries .list-areas .item .content {
    font-family: 'Inter', sans-serif;
    color: var(--grey-100);
    margin-top: 20px;
}
.industries .list-areas .item:hover::before,
.industries .list-areas .item:hover .title,
.industries .list-areas .item:hover .content {
    color: var(--white);
}
main .industries .list-areas .item .hover-image {
    display: flex;
    position: absolute;
    top: -20%;
    right: 0;
    opacity: 0;
    transition: .45s;
    width: 258px;
    height: 265px;
}
main .industries .list-areas .item:hover .hover-image {
    opacity: 1;
    transition: 1.8s;
}
main img {
    width: 100%;
    max-width: 100%;
    height: 100%;
}
@media screen and (max-width: 1220px) {
    .title-page {
        overflow: hidden;
        padding-top: 0;
    }
    .ellipse {
        right: unset;
    }
    .title-page .content .vertical-line::before {
        width: 100%;
        height: 1px;
    }
    .industries {
        margin-top: -1px;
    }
}
@media screen and (max-width: 768px) {
    .ellipse {
        right: 0;
    }
    .title-page .wrapper {
        padding-top: 70px;
    }
    .industries .list-areas {
        grid-template-columns: repeat(auto-fill, 330px);
    }
    .industries .list-areas .item {
        height: auto;
        padding-bottom: 30px;
    }
    main .industries .list-areas .item .hover-image  {
        top: -5%;
    }
    .title-page .content div:first-child {
        margin-right: 0;
    }
    .title-page .content .icon {
        flex-direction: row;
    }
    .title-page .content .icon,
    .title-page .content .vertical-line h1,
    .title-page .content .icon::before {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .title-page .content .vertical-line h1 {
        font-size: 20px;
    }
}
@media screen and (max-width: 375px) {
    .industries .list-areas {
        grid-template-columns: 1fr;
    }
    .industries .list-areas .item {
        padding: 20px;
    }
    .title-page .block-text {
        margin-top: 75px;
    }
    .title-page .block-text {
        padding: 25px 15px 30px 20px;
    }
    .title-page .block-text .text {
        font-size: 14px;
        line-height: 20px;
    }
    .industries {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .industries .list-areas .item .title {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.8px;
    }
    .industries .list-areas .item .content {
        margin-top: 15px;
    }
    .industries .list-areas .item .content {
        font-size: 12px;
        line-height: 18px;
    }
    section.contact-form {
        margin-top: 90px;
    }
}