.facts {
    padding-top: 132px;
    padding-bottom: 95px;
    background: #1B1B1B;
    overflow: hidden;
}

.facts > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.facts__content {
    width: 49%;
}

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

.facts__title {}

.facts__desc {
    font-size: 18px;
}

.facts__list-wrapper {
    width: 49%;
    position: relative;
}

.facts__list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.facts__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.facts__link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.facts__item:nth-of-type(1) {
    margin-top: 15px;
    margin-right: 60px;
    background: rgba(255, 45, 33, .2);
}
.facts__item:nth-of-type(2) {
    background: rgba(255, 45, 33, .5);
}
.facts__item:nth-of-type(3) {
    margin-top: -30px;
    margin-right: 70px;
    background: rgba(255, 45, 33, .6);
}
.facts__item:nth-of-type(4) {
    margin-top: 40px;
    background: rgba(255, 45, 33, .2);
}

.facts__caption {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    word-break: break-word;
    hyphens: auto;
    text-align: center;
    padding: 0 14px;
}

.facts__description {
    max-width: 180px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
}

.fact-icon {
    display: none;
    position: absolute;
}

/* Adaptive */

@media (max-width: 1050px) {

    .facts > .container {
        flex-direction: column;
        gap: 40px;
    }

    .facts__content {
        width: 100%;
    }

    .facts__list-wrapper {
        width: 488px;
    }

}

@media (max-width: 685px) {

    .facts {
        padding: 67px 0 38px;
    }

    .facts__sub-title {
        margin-bottom: 14px;
    }

    .facts__title {
        margin-bottom: 13px;
    }
}

@media (max-width: 600px) {

    .facts__caption, .facts__description {
        z-index: 2;
    }

    .facts__caption {
        text-transform: uppercase;
        line-height: 26px;
        margin-bottom: 14px;
        font-size: 14px;
        padding: 0 30px;
    }

    .facts__description {
        font-size: 11px;
        line-height: 20px;
        padding: 0 30px;
    }

    .facts__list {
        flex-direction: column;
    }

    .facts__item {
        background: var(--accent) !important;
        width: 223px;
        height: 194px;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        position: relative;
    }

    .facts__item::before {
        content: '';
        position: absolute;
        width: 193px;
        height: 169px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #1B1B1B;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }

    .facts__item:nth-child(2), .facts__item:nth-child(4) {
        width: 198px;
        height: 171px;
    }

    .facts__item:nth-child(2)::before, .facts__item:nth-child(4)::before {
        width: 187px;
        height: 162px;
    }

    .fact-icon {
        display: block;
    }

    .facts__item:nth-of-type(1) {
        margin: 0;
    }

    .facts__item:nth-child(2) {
        margin: -13px 0 0 auto;
    }

    .facts__item:nth-of-type(3) {
        margin: -18px 0 0;
    }

    .facts__item:nth-of-type(4) {
        margin: -20px 0 0 auto;
    }

    .facts__list-wrapper {
        width: 397px;
    }

    .fact-icon-one {
        right: 5px;
        top: 37px;
    }

    .fact-icon-two {
        top: 206px;
        left: 10px;
    }

    .fact-icon-three {
        bottom: 38px;
        right: 5px;
    }

    .fact-icon-four {
        left: 25px;
        bottom: 16px;
    }

}

@media (max-width: 450px) {

    .facts__caption {
        line-height: 21px;
        padding: 0 35px;
    }

    .facts__list-wrapper {
        width: 320px;
    }

    .facts__list {
        gap: 31px;
    }

    .facts__description {
        font-size: 14px;
    }

    .facts__item {
        width: 200px;
        height: 171px;
    }

    .facts__item::before {
        width: 171px;
        height: 146px;
    }

    .facts__item:nth-child(2), .facts__item:nth-child(4) {
        width: 171px;
        height: 146px;
    }

    .facts__item:nth-child(2)::before, .facts__item:nth-child(4)::before {
        width: 164px;
        height: 139px;
    }

}

@media (max-width: 350px) {

    .facts__list-wrapper {
        width: 100%;
    }

    .fact-icon-one, .fact-icon-three {
        right: -36px;
    }

    .fact-icon-two, .fact-icon-four {
        left: 0;
    }

}

/* \Adaptive */