*, *:after, *:before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Gilroy';
    font-weight: 500;
    color: #00b1eb;
    background: #e7f5fe;
}

main {
    max-width: 1335px;
    margin: 0 auto;
}

section {
    padding: 40px 0;
}

.top_row {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 22px;
}

.novus_logo {
    text-align: center;
    /*min-width: calc(25% - 20px);*/
    max-width: 281px;
    min-width: 281px;
}

.novus_logo a {
    display: inline-block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

h1 {
    font-weight: 800;
    font-size: 82px;
    line-height: 100%;
    margin-bottom: 0;
    position: relative;
}

h1 sup {
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
}

span {
    color: #e6006a;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 24px;
    line-height: 110%;
}

.step_num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 46px;
    color: #fff;
    position: relative;
    width: 72px;
    height: 72px;
    min-width: 72px;
}

.step_num:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #00B1EB;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    transform: rotate(-25deg);
}

.step_num span {
    position: relative;
    color: #fff;
}

.steps_row {
    margin-bottom: 80px;
}

.gifts {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.gift {
    position: relative;
    font-weight: 700;
    font-size: 17px;
    line-height: 100%;
}

.gift_img {
    text-align: center;
    margin-bottom: 10px;
}

.gifts .gift:nth-child(2) {
    min-width: 314px;
}

.gifts .gift:nth-child(3) {
    min-width: 376px;
}

.gifts .gift:nth-child(2) .gift_img {
    margin-bottom: 9px;
    margin-top: 12px;
}

.gifts .gift:nth-child(3) .gift_img {
    margin-bottom: 24px;
    margin-top: 29px;
}

.gifts .gift:nth-child(4) .gift_img {
    margin-bottom: 13px;
    margin-top: 35px;
}

.gifts .gift:not(:last-child):after {
    content: "";
    width: 1px;
    height: calc(100% - 16px);
    position: absolute;
    right: -20px;
    top: 50%;
    border-right: 1px dashed #e6006a;
    transform: translateY(-50%);
}

.gift .count {
    border: 2px solid #00B1EB;
    font-weight: 700;
    font-size: 33px;
    line-height: 1.3;
    transform: rotate(-11deg);
    padding: 2px 20px;
    border-radius: 10px;
    text-align: center;
    /*height: 61px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 0;
}

.note {
    margin-top: 50px;
    font-size: 8px;
    line-height: 120%;
    text-align: center;
}

.text_section {
    padding-bottom: 80px;
    font-size: 18px;
    line-height: 140%;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 12px;
}

p, ol, ul {
    margin-bottom: 20px;
}

ol, ul {
    padding-left: 20px;
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #00b1eb;
}

.note_block {
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.mob_logos {
    display: none;
}

h1 br {
    display: none;
}

@media screen and (max-width: 1399.8px){
    main {
        padding: 0 15px;
    }
    h1 {
        font-size: 68px;
    }
    .step {
        font-size: 20px;
    }
    .novus_logo {
        min-width: calc(25% - 20px);
    }
}

@media screen and (max-width: 1199.8px){
    h1 {
        font-size: 56px;
    }
    .step {
        font-size: 16px;
    }
    .gifts {
        flex-wrap: wrap;
    }
    .gifts .gift {
        width: calc(50% - 20px);
    }

    .gifts .gift:nth-child(2):after {
        height: 1px;
        width: calc(100vw - 30px);
        top: auto;
        bottom: -20px;
        right: 0;
        border-right: none;
        border-bottom: 1px dashed #e6006a;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1050.8px){
    .step_num {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    h1 {
        font-size: 52px;
    }
}

@media screen and (max-width: 991.8px){
    .mob_logos {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        justify-content: center;
    }
    .top_row .novus_logo {
        display: none;
    }
    .step {
        font-size: 20px;
    }
    .note br {
        display: none;
    }
    .gift {
        min-width: 0 !important;
    }
}

@media screen and (max-width: 767.8px){
    .steps {
        flex-direction: column;
        align-items: flex-start;
    }
    h1 br {
        display: inline;
    }
    .gifts {
        gap: 20px;
    }
    .gifts .gift:not(:last-child):after {
        right: -10px;
    }
    .gifts .gift:nth-child(2):after {
        bottom: -10px;
    }
    .gifts .gift:nth-child(3) {
        min-width: 60%;
        width: 60%;
    }
    .gifts .gift:nth-child(4) {
        width: calc(40% - 20px);
        min-width: calc(40% - 20px);
    }
    section {
        padding: 15px 0;
    }
    .text_section {
        font-size: 16px;
    }
    h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    p, ol, ul {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 575.8px){
    .gift {
        font-size: 11px;
    }
    .gifts {
        margin-top: 24px;
    }
    .step_num {
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 40px;
    }
    .step {
        gap: 15px;
    }
    .steps_row {
        margin-bottom: 0;
    }
    h1 {
        font-size: 46px;
        line-height: 90%;
    }
    .text_section {
        margin-bottom: 40px;
    }
    .gift .count {
        font-size: 16px;
        padding: 2px 10px;
    }
}