.facts__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-left: -8px;
    margin-right: -8px;
}

.facts__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    min-width: 200px;
    text-align: center;
}

.fact {
    position: relative;
    border-radius: .5em;
}

.fact._women .fact__pic {
    width: 130px;
    height: 140px;
    margin: 0 auto;
    position: relative;
}

.fact__pic {
    max-height: 250px;
}

.fact__pic > svg {
    position: relative;
    z-index: 2;
}

.form-page__pic, svg {
    width: 100%;
    height: 100%;
}

.fact__pic > svg path {
    stroke: #2c3e50;
}

.fact__circle {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 100px;
    height: auto;
    margin-top: -45px;
    margin-left: -50px;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275);
    -o-transition: transform .2s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .2s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275);
}

.fact__wrapp {
    position: relative;
    z-index: 1;
    height: 100%;
    padding-top: 40px;
}

.fact__title h3 {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
}

.fact__desc {
    text-align: center;
}

.fact__desc p {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    opacity: .7;
}

.facts__item:hover .fact__circle
{
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}
.facts__item:nth-child(2) g
{
    fill: #66b7f0;
}
.facts__item:nth-child(3) g
{
    fill: #f71f67;
}
.facts__item:nth-child(4) g
{
    fill: #62be19;
}

