.first-screen-2 {
    background: #202029;
    margin-bottom: 40px;
    height: 100svh;
    min-height: 700px;
    max-height: 800px;
}

.first-screen-2__wrapper {
    padding: 230px 25px 0px 25px;
    text-align: center;
    max-width: 1110px;
    margin: 0 auto;
}

.first-screen-2__heading {
    margin-bottom: 30px;
}

.first-screen-2__text {
    margin: 0 auto 50px auto;
    color: #87879b;
    max-width: 419px;
}

.first-screen-2__items {
    display: flex;
    gap: 60px;
}

.first-screen-2__item {
    flex-basis: calc((100% - 120px) / 3);
    position: relative;
}

.first-screen-2__item-content {
    display: flex;
    align-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: start;
}

.first-screen-2__item-content p {
    margin-bottom: 0;
}

.first-screen-2__item-link-name {
    background: #ff5a46;
    padding: 7px 15.5px;
    border-radius: 100px;
    margin-right: -4px;
}

.first-screen-2__item-link {
    display: flex;
    top: 0;
    right: 0;
    position: absolute;
    background: #202029;
    padding: 0 0 11px 11px;
    border-radius: 0 0 0 24px;
}

.first-screen-2__item-link-icon {
    display: flex;
    width: 38px;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background:  #ff5a46;;
}

.first-screen-2__item-content strong {
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.first-screen-2-decor {
    position: absolute;
}

.first-screen-2__decor-top {
    top: 0;
    left: -23px;
}

.first-screen-2__decor-bot {
    bottom: -23px;
    right: 0;
}

@media screen and (min-width: 1600px) {
    .first-screen-2__wrapper {
        max-width: 1310px;
    }

}

@media screen and (max-width: 1199.98px) {
    .first-screen-2__items {
        gap: 40px;
    }

    .first-screen-2__item {
        flex-basis: calc((100% - 80px) / 3);
    }

    .first-screen-2__wrapper {
        padding: 170px 25px 0px 25px;
    }
}

@media screen and (max-width: 1024.98px) {
    .first-screen-2__items {
        flex-direction: column;
        gap: 20px;
    }

    .first-screen-2__item {
        flex-basis: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .first-screen-2__wrapper {
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .first-screen-2__heading {
        margin-bottom: 20px;
    }

    .first-screen-2__text {
        margin-bottom: 20px;
    }

    .first-screen-2__item-content strong {
        font-size: 45px;
    }

    .first-screen-2__item-content {
        padding: 15px;
    }

}