.promotions {
    padding: 60px 0;
}

.promotions.yellow {
    background-color: #efe2bd;
}

.promotions-wrapper {
    overflow: hidden;
}

.promotions__heading {
    text-align: center;
    font-size: 36px;
    padding: 40px 0;
}

.promotions__item .promotions__text {
    padding-top: 18px;
    color: #006C80;
    font-weight: 700;
    margin-bottom: 0;
}

.promotions__item .promotions__text:last-child {
    padding-top: 20px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

.promotions__item {
    width: 33%;
    text-align: center;
    padding: 20px;
    display: inline-block;
}

.promotions__img-holder {
    width: 72px;
    height: 82px;
    margin: 0 auto;
    position: relative;
}

.promotions__img-holder img {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 10px;
    background-color: #fff;
}

.promotions__img-holder span {
    font-size: 55px;
    padding-top: 12px;
    position: relative;
    z-index: 2;
    color: #005a73;
    background-color: #fff;
}

.promotions.yellow .promotions__item .promotions__img-holder span {
    background-color: #efe2bd;
}

.promotions.yellow .promotions__item .promotions__img-holder img {
    background-color: #efe2bd;
}

/* white */
.promotions__item:nth-child(3n+2) .promotions__img-holder::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 450%;
    background-color: #fdb728;
    top: 50%;
    left: 103%;
}

.promotions__item:nth-child(3n+2) .promotions__img-holder::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 450%;
    background-color: #fdb728;
    top: 50%;
    right: 103%;
}

/* yellow */
.promotions.yellow .promotions__item:nth-child(3n+2) .promotions__img-holder::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 450%;
    background-color: #006c80;
    top: 50%;
    left: 103%;
}

.promotions.yellow .promotions__item:nth-child(3n+2) .promotions__img-holder::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 450%;
    background-color: #006c80;
    top: 50%;
    right: 103%;
}

.promotions__item:last-child .promotions__img-holder::after {
    display: none;
}

.promotions-wrapper {
    text-align: center;
}

.promotions .wrapper {
    text-align: center;
}

.promotions .wrapper .btn {
    margin: 40px 0;
    background-color: #005a73;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media screen and (max-width: 1024px) {

    /* white */
    .promotions__item:nth-child(3n+2) .promotions__img-holder::after {
        width: 345%;
    }

    .promotions__item:nth-child(3n+2) .promotions__img-holder::before {
        width: 345%;
    }

    /* yellow */
    .promotions.yellow .promotions__item:nth-child(3n+2) .promotions__img-holder::after {
        width: 345%;
    }

    .promotions.yellow .promotions__item:nth-child(3n+2) .promotions__img-holder::before {
        width: 345%;
    }
}

@media screen and (max-width: 767px) {
    .promotions__item {
        display: block;
        width: 100%;
        padding-bottom: 0;
    }

    .promotions__item .promotions__img-holder::before {
        display: none;
    }

    .promotions__item .promotions__img-holder::after {
        display: none;
    }

    .promotions .wrapper .btn {
        margin: 40px 0;
        background-color: #005a73;
        color: #fff;
        padding: 10px 20px;
    }
}