
/*div.advertisingContainer * {*/
/*    font-family: var(--inter)!important;*/
/*}*/

div.advertisingContainer {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 22px;
    /*border: 1px solid;*/
    /*border: 2px solid #F7CC86;*/
    overflow: hidden;
    /*border-image: linear-gradient(*/
    /*        to right,*/
    /*        #865806 0%,*/
    /*        #F7CC86 25%,*/
    /*        #865806 40%,*/
    /*        #865806 60%,*/
    /*        #F7CC86 75%,*/
    /*        #865806 100%*/
    /*) 1!important;*/
    /*background: linear-gradient(to bottom, rgba(247, 204, 134, 0.05) 50%, rgba(247, 204, 134, 0.2) 100%);*/
    /*background: linear-gradient(#F6F4EF 25%, #f1cd95 100%) padding-box,*/
    background: transparent;
    /*linear-gradient(*/
    /*        to right,*/
    /*        #865806 0%,*/
    /*        #F7CC86 25%,*/
    /*        #865806 40%,*/
    /*        #865806 60%,*/
    /*        #F7CC86 75%,*/
    /*        #865806 100%*/
    /*) border-box;*/
}

div.advertisingContainer div.goldenPlant {
    position: absolute;
    /*top: 0;*/
    width: 120px;
    height: 120px;
    /*opacity: 0.25;*/
    opacity: 0;
}

div.advertisingContainer div.goldenPlant:nth-of-type(1) {
    background: url("../img/roslina1.png") center center no-repeat;
    background-size: contain;
    left: 0;
    top: unset;
    bottom: -15px;
}

div.advertisingContainer div.goldenPlant:nth-of-type(3) {
    background: url("../img/roslina2.png") center center no-repeat;
    background-size: contain;
    right: 0;
    /*top: 5px;*/
    bottom: 0;
}

div.advertisingContainer div.infos {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 40px;
    z-index: 1;
}

div.advertisingContainer div.infos div.infoLine {
    height: 100px;
    width: 2px;
    border-radius: 2px;
    /*background: #F7CC86;*/
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 10%,
            #F7CC86 25%,
            rgba(134, 88, 6, 0.3) 40%,
            rgba(134, 88, 6, 0.3) 60%,
            #F7CC86 75%,
            rgba(255, 255, 255, 0) 100%
    );
}

div.advertisingContainer div.infos div.info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

div.advertisingContainer div.infos div.info.one {
    margin: 0 -25px 0 5px;
}

div.advertisingContainer div.infos div.info.one div.infoImg {
    width: 100px;
    height: 100px;
    background: url("../img/darmowa-dostawa.png") center center no-repeat;
    background-size: contain;
}

div.advertisingContainer div.infos div.info.two div.infoImg {
    width: 100px;
    height: 100px;
    background: url("../img/kod-rabatowy.png") center center no-repeat;
    background-size: contain;
}

div.advertisingContainer div.infos div.info div.infoText {
    width: 420px;
}

@media screen and (max-width: 1259px) {
    div.advertisingContainer div.infos {
        flex-direction: column;
    }

    div.advertisingContainer div.infos div.info.one {
        margin: 0;
    }

    div.advertisingContainer div.infos div.infoLine {
        height: 2px;
        width: 400px;
        background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 10%,
                #F7CC86 25%,
                rgba(134, 88, 6, 0.3) 40%,
                rgba(134, 88, 6, 0.3) 60%,
                #F7CC86 75%,
                rgba(255, 255, 255, 0) 100%
        );
    }
}

@media screen and (max-width: 767px) {
    div.advertisingContainer div.infos div.info {
        flex-direction: column;
        width: 100%;
    }

    div.advertisingContainer div.infos div.info div.infoText {
        width: 100%;
    }

    div.advertisingContainer div.infos div.info div.infoText h2 {
        text-align: center;
    }

    div.advertisingContainer div.infos div.info div.infoText p {
        text-align: center;
    }

    div.advertisingContainer div.infos div.infoLine {
        height: 2px;
        width: 100%;
        background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 10%,
                #F7CC86 25%,
                rgba(134, 88, 6, 0.3) 40%,
                rgba(134, 88, 6, 0.3) 60%,
                #F7CC86 75%,
                rgba(255, 255, 255, 0) 100%
        );
    }
}