button:focus,
input:focus {
    outline: transparent;
}

/* NOTE - import here your style modules */

.conditions {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 55px;
}

.conditions .conditions__title {
    font-weight: 200;
    font-size: 40px;
    line-height: 47px;
    word-wrap: break-word;
    margin-bottom: 40px;
    text-align: center;
}

.conditions__wrapper {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 600px;
}

.conditions__list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.conditions__item {
    display: inline-block;
    margin-bottom: 30px;
    padding-left: 37px;
    position: relative;
    min-width: 250px;
}

.conditions__item:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/circle.svg") no-repeat center;
}

.conditions__cap {
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 9px;
}

.conditions__info {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
}

.process {
    padding-top: 58px;
    padding-bottom: 71px;
    background: #E6F1FA;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 55px;
}

.process__wrapper {
    margin: 0 auto;
    padding: 0 15px;
}

.process .process__title {
    font-weight: 200;
    font-size: 40px;
    line-height: 47px;
    word-wrap: break-word;
    margin-bottom: 50px;
    text-align: center;
}

.process__list {
    padding: 0;
    counter-reset: myCounter;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process__item {
    list-style: none;
    position: relative;
    width: 272px;
    box-sizing: border-box;
    padding: 78px 20px 24px 20px;
    background: #FCFEFF;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 80px;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
}

.process__item:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    position: absolute;
    width: 99px;
    height: 99px;
    background: linear-gradient(270deg, #2BA0D4 13.13%, #2B58D4 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -50px;
    left: calc(50% - 50px);
    font-weight: 700;
}

.process__link {
    color: #2B96D2;
    text-decoration: none;
}

.needs {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 42px;
}

.needs__wrapper {
    margin: 0 auto;
    padding: 0 15px;
    border-bottom: 1px solid #E5E5E5;
}

.needs .needs__title {
    font-weight: 200;
    font-size: 40px;
    line-height: 47px;
    word-wrap: break-word;
    margin-bottom: 40px;
    text-align: center;
}

.needs__need {
    margin-bottom: 60px;
}

.needs__item {
    display: inline-block;
    margin-bottom: 30px;
    padding-left: 37px;
    position: relative;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
}

.needs__item:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/circle.svg") no-repeat center;
}

.needs__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 440px;
    margin: 0 auto;
}

.sign {
    margin-bottom: 103px;
    font-family: 'Roboto', sans-serif;
}

.sign__wrapper {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1170px;
}

.sign .sign__title {
    font-weight: 200;
    font-size: 40px;
    line-height: 47px;
    word-wrap: break-word;
    margin-bottom: 16px;
    text-align: center;
}

.sign__promo {
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 58px;
}

.sign__btn {
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    padding: 14px 70px;
    background: #FF4533;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}


@media (min-width: 764px) {
    .process__list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .process__wrapper {
        max-width: 764px;
    }
}

@media (min-width: 1030px) {
    .conditions {
        margin-bottom: 116px;
    }

    .conditions__wrapper {
        max-width: 1140px;
    }

    .conditions .conditions__title {
        margin-bottom: 80px;
    }

    .conditions__item {
        min-width: 200px;
    }
}

@media (min-width: 1140px) {
    .needs__wrapper {
        max-width: 1140px;
        display: flex;
        justify-content: space-between;
    }

    .needs {
        margin-bottom: 52px;
    }
}

@media (min-width: 1170px) {
    .process {
        margin-bottom: 102px;
    }

    .process__wrapper {
        max-width: 1170px;
    }
}