.gift-vouchers-section {
    margin: 50px 0 80px;
}

.gift-vouchers-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1061px;
    margin-left: auto;
    margin-right: auto;
}

.gift-vouchers-section .section-title h2 {
    font-weight: 600;
}

.gift-vouchers-section .section-title .sub-text p {
    font-weight: 500;
    color: #1B1B1B;
    margin-bottom: 12px;
}

.gift-vouchers-section ul:not(:last-child),
.gift-vouchers-section ol:not(:last-child) {
    margin-bottom: 15px;
}

.gift-vouchers-section ul li {
    padding-left: 20px;
    position: relative;
}

.gift-vouchers-section ol li {
    list-style-type: auto;
    margin-left: 20px;
}

.gift-vouchers-section ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #2A63F5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.gift-vouchers-section li {
    color: #1B1B1B;
}

.gift-vouchers-steps .icon {
    width: 100px;
    height: 100px;
    background: #EAEFFE;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    flex-shrink: 0;
}

.gift-vouchers-steps .icon img {
    max-width: 70px;
}

.gift-vouchers-steps {
    counter-reset: item;
    max-width: 990px;
    position: relative;
}

.gift-vouchers-steps .item {
    display: flex;
    align-items: center;
    position: relative;
}

.gift-vouchers-steps .item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50px;
    top: 100px;
    height: calc(100% - 50px);
    width: 1px;

    background-image: repeating-linear-gradient(to bottom,
            #2A63F5 0px,
            #2A63F5 6px,
            transparent 6px,
            transparent 10px);
    opacity: 0.5;
}

.gift-vouchers-steps .item:not(:last-child) {
    margin-bottom: 50px;
}

.gift-vouchers-steps .item .text,
.gift-vouchers-steps .item .text p,
.gift-vouchers-steps .item .text ul li,
.gift-vouchers-steps .item .text ol li {
    counter-increment: item;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #1B1B1B;
    line-height: 1.6;
}

.gift-vouchers-steps .item .text::before {
    content: counter(item) ". ";
    margin-right: 0px;
    font-weight: 500;
}

.gift-vouchers-steps .item .text a,
.gift-highlighted-text a {
    color: #2A63F5;
    word-break: break-all;
    display: inline;
    transition: all 0.3s ease-in-out;
}

.gift-highlighted-text p,
.gift-highlighted-text ul li,
.gift-highlighted-text ol li {
    padding: 14px 22px;
    max-width: 550px;
    background: #EAEFFE;
    border-radius: 8px;
    overflow: hidden;
    margin: 60px auto 0;
    color: #1B1B1B;
    font-weight: 500;
    font-size: 16px;
}

.gift-vouchers-steps .item .text a:hover,
.gift-highlighted-text a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 991px) {
    .gift-vouchers-section .container {
        padding: 0;
    }

    .gift-vouchers-section {
        margin: 50px 0 50px;
    }

}

@media (max-width: 767px) {
    .gift-vouchers-steps .item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 20px;
    }

    .gift-vouchers-steps .icon {
        width: 80px;
        height: 80px;
        margin: 0 0 15px 0;
    }

    .gift-vouchers-steps .icon img {
        max-width: 65%;
    }

    .gift-vouchers-steps .item:not(:last-child)::after {
        display: none;
    }

    .gift-vouchers-steps::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 1px;

        background-image: repeating-linear-gradient(to bottom,
                #2A63F5 0px,
                #2A63F5 6px,
                transparent 6px,
                transparent 10px);
        opacity: 0.5;
    }

    .gift-vouchers-steps .item:not(:last-child) {
        margin-bottom: 30px;
    }

    .gift-vouchers-steps .item .text,
    .gift-vouchers-steps .item .text p,
    .gift-vouchers-steps .item .text ul li,
    .gift-vouchers-steps .item .text ol li {
        font-size: 16px;
    }
}