﻿@import "WFUMediaQuery.less";
@import "WF_MixinVariables.less";

@screen-xs-min: 480px;
@screen-sm-min: 768px;
@screen-md-min: 992px;
@screen-lg-min: 1200px;

@screen-xs-max: (@screen-sm-min - 1);
@screen-sm-max: (@screen-md-min - 1);
@screen-md-max: (@screen-lg-min - 1);

@phone: ~"only screen and (max-width: @{screen-xs-min})";
@phone-strict: ~"only screen and (min-width: @{screen-xs-min}) and (max-width: @{screen-xs-max})";
@tablet: ~"only screen and (min-width: @{screen-sm-min})";
@tablet-strict: ~"only screen and (min-width: @{screen-sm-min}) and (max-width: @{screen-sm-max})";
@desktop: ~"only screen and (min-width: @{screen-md-min})";
@desktop-strict: ~"only screen and (min-width: @{screen-md-min}) and (max-width: @{screen-md-max})";
@large: ~"only screen and (min-width: @{screen-lg-min})";

//warden
.banner-section {
    margin-top: 147px;
    height: 440px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #2b2a38;
    position: relative;
    background-size: cover;
    position: relative;

    @media only screen and (max-width: 1024px) {
        height: 350px
    }

    @media @maxwidth768 {
        padding: 0;
        height: 315px;
        margin-top: 111px;
        background-color: #fff;
    }

    @media @maxwidth641 {
        background-image: none !important;
        height: auto;
        background-color: @dark-blue;
    }

    .banner-image {
        position: absolute;
        right: 0;
        z-index: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        object-fit: cover;

        @media @maxwidth768 {
            position: static;
            height: 310px;
            object-position: right
        }
    }

    & > .row {
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1;
        position: relative;

        @media @maxwidth641 {
            display: block;
        }

        .hide-for-medium {
            padding: 0;

            img {

                @media only screen and (max-width: 640px) {
                    height: 230px;
                    object-fit: cover;
                    object-position: right;
                }

                @media only screen and (max-width: 480px) {
                    object-position: 90%;
                }

                @media only screen and (min-width: 360px) and (max-width: 420px) {
                    object-position: 85%;
                }

                @media only screen and (max-width: 359px) {
                    object-position: 80%;
                }
            }
        }
    }

    h1 {
        .FontStyling("acumin-pro-condensed", 900, normal);
        font-style: normal;
        font-size: 54px;
        line-height: 0.86;
        color: #fff;
        text-transform: uppercase;
        max-width: 700px;
        margin: 0 0 40px 0;
        /*@media @maxwidth641 {*/
        @media only screen and (max-width: 1024px) {
            font-size: 40px;
            margin: 20px 20px 30px;
            line-height: 1;
        }
    }

    p {
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-style: normal;
        max-width: 770px;
        line-height: 1.78;
        font-size: 28px;
        color: @clrDarkBlue;
        margin-top: 30px;


        @media @maxwidth641 {
            margin-top: 0px;
            margin-left: 20px;
        }
    }

    .banner-video {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;

        @media @maxwidth641 {
            position: static;
            height: auto;
        }
    }
}

//4 powerful fungi
.products-warden-multi-image-1 {
    background-color: #fff;
    padding: 60px 0;

    @media @maxwidth641 {
        padding: 42px 20px;
        /*  .text-center {
            text-align: left;
        }*/
    }

    h3 {
        margin-bottom: 20px;
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 40px;
        color: @clrDarkBlue;

        @media @maxwidth641 {
            line-height: 1;
        }

        @media @phone {
            text-align: left;
        }
    }

    p {
        .FontStyling("acumin-pro", 500, normal);
        font-size: 17px;
        color: @clrDarkBlue;

        @media @phone {
            text-align: left;
        }
    }

    .fungicides-box {
        display: flex;
        justify-content: space-around;
        align-content: center;
        margin-top: 30px;

        @media @maxwidth768 {
            flex-wrap: wrap
        }

        .box {
            @media @maxwidth768 {
                width: 50%;
                margin: 20px 0;
            }

            &:last-child {
                border-bottom: 0;
            }

            @media @maxwidth641 {
                width: 100%;
                border-bottom: 1px solid #A8A8A8;
                padding-bottom: 30px;
                text-align: center;
            }


            img {
                width: 120px;
            }

            h4 {
                text-transform: capitalize !important;
            }
        }

        h4 {
            .FontStyling("acumin-pro-condensed", 800, normal);
            font-size: 28px;
            color: @clrDarkBlue;
            margin: 10px 0 0 0;
            padding: 0 0 10px 0;
            text-align: center !important;
        }

        span {
            .FontStyling("acumin-pro", 500, normal);
            font-size: 15px;
            color: @clrDarkBlue;
        }
    }

    &.protection {
        .box {
            padding: 0 30px;

            @media @maxwidth641 {
                width: 100%;
                border-bottom: 1px solid #A8A8A8;
                padding-bottom: 30px;
            }

            &:last-child {
                border-bottom: 0;
            }

            .icon-circle {
                width: 125px;
                height: 125px;
                background-color: @clrYellow;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                margin: auto;
                border: solid 5px #fff;
                transition: all .3s linear;

                img {
                    max-height: 100px;
                }
            }

            h4 {
                line-height: 1.1;
                margin: 15px 0;
            }

            span {
                font-size: 16px;
            }

            &:hover {
                .icon-circle {
                    border: solid 5px #DA6254;
                }
            }
        }
    }
}

//two card
.products-warden-two-card-1 {

    @media only screen and (max-width: 767px) {
        padding: 50px 20px !important;
    }

    .carouselMobile {
        > div:first-child {
            margin-bottom: 35px;

            @media only screen and (max-width: 1025px) {
                //margin-bottom: 35px;
            }
        }
    }

    .blue-box {

        @media @maxwidth767 {
            margin-bottom: 0 !important;
        }

        h4 {
            padding: 0;
            font-family: "acumin-pro-condensed";
            font-weight: 800;
            font-style: normal;
            font-size: 20px;
            text-align: center;
            margin: 0;
            color: #fff;
            text-transform: capitalize;
        }
    }

    .owl-stage-outer {
        .owl-stage {
            .owl-item {
                //border: 2px solid red;

                img {

                    @media @maxwidth767 {
                        height: 191px;
                        object-fit: cover;
                        object-position: center;
                    }
                }
            }
        }
    }
    //carousel
    .carouselMobile {

        .owl-item {
            margin: 0;

            @media @maxwidth768 {
                box-shadow: none;
            }
        }

        .owl-dots .owl-dot {
            width: 12px;
            border: 1px solid #fff !important;
            height: 12px;

            &.active {
                background-color: #fff !important;
                box-shadow: none;
                border: 1px solid #fff !important;
            }
        }

        .columns {
            @media @maxwidth768 {
                padding: 0px;
                width: 100%;
            }
        }

        .owl-item {
            box-shadow: 10px 10px 10px 2px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .owl-dots {
            text-align: center;
            margin-top: 32px;
        }

        .owl-dots .owl-dot {
            display: inline-block;
            width: 12px;
            border: 1px solid #fff !important;
            height: 12px;
            border-radius: 20px;
            margin: 5px 7px;
            background-color: #0b3f54 !important;
            vertical-align: middle;
        }

        .owl-dots .active {
            width: 12px;
            height: 12px;
            background: #6fc8c0;
        }

        .owl-dots {
            text-align: center;
        }
        /*.owl-dots .owl-dot.active {
            background-color: #6fc8c0 !important;
            box-shadow: 0px 0px 0px 2px #6fc8c0;
        }*/
    }
}

//Protection You Can Count On

.products-warden-multi-image-2 {
    background-color: #fff;
    padding: 60px 0;

    .features-benefits {
        margin-top: 0 !important;
        margin-bottom: 100px !important;
    }

    .row {
        > div {
            //width: 100%;

            @media only screen and (min-width: 1025px) {
                width: 100%;
                //border: 1px solid red;
            }
        }
    }

    @media @maxwidth767 {
        padding: 42px 20px 0 20px;
        /*  .text-center {
            text-align: left;
        }*/
    }

    h3 {
        margin-bottom: 20px;
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 40px;
        color: @clrDarkBlue;

        @media @maxwidth641 {
            line-height: 1;
        }

        @media @phone {
            text-align: left;
        }
    }

    p {
        .FontStyling("acumin-pro", 500, normal);
        font-size: 17px;
        color: @clrDarkBlue;

        @media @phone {
            text-align: left;
        }
    }

    .circle-box {
        display: flex;
        justify-content: space-around;
        align-content: center;
        margin-top: 30px;
        background-color: transparent !important;
        flex-wrap: nowrap !important;

        @media @maxwidth767 {
            //border: 2px solid red;
            flex-direction: column;
        }

        .box {
            display: block !important;
            background-color: transparent !important;
            //margin: 0 20px;

            @media only screen and (max-width: 1025px) {
                margin: 0 20px;
            }

            @media @maxwidth768 {
                width: 50%;
                margin: 20px 0;
            }

            @media @maxwidth767 {
                height: auto !important;
                border-radius: inherit !important;
            }

            &:last-child {
                border-bottom: 0;
            }

            @media @maxwidth641 {
                width: 100%;
                border-bottom: 1px solid #A8A8A8;
                padding-bottom: 30px;
                text-align: center;
            }


            img {
                width: 120px;
            }

            .icon-circle {
                width: 125px;
                height: 125px;
                background-color: @clrYellow;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                margin: auto;
                border: solid 5px #fff;
                transition: all .3s linear;

                img {
                    max-height: 100px;
                }
            }

            &:hover {
                .icon-circle {
                    border: solid 5px #DA6254;
                }
            }

            h4 {
                text-transform: capitalize;

                @media @maxwidth767 {
                    line-height: 1.1;
                    text-align: center;
                    margin-bottom: 20px;
                }
            }

            p {
                @media @maxwidth767 {
                    text-align: center;
                    //margin-bottom: 20px;
                }
            }
        }

        h4 {
            .FontStyling("acumin-pro-condensed", 800, normal);
            font-size: 28px;
            color: @clrDarkBlue;
            margin: 10px 0 0 0;
            padding: 0 0 10px 0;
        }

        p {
            font-family: "acumin-pro";
            font-weight: 500;
            font-style: normal;
            color: #0b3f54;
            font-size: 14px;
            line-height: 1.5;
            margin: 0 0 20px 0;
        }
    }
}


.products-warden-rich-text-1 {
    background: #fff;
    padding: 70px 22px 0 !important;

    @media only screen and (max-width: 1025px) {
        //padding: 70px 22px 0 !important;
    }
}
//warden end

//common-start

.carouselMobile {
    .columns {
        @media @maxwidth768 {
            padding: 0px;
            width: 100%;
        }
    }

    .owl-item {
        box-shadow: 10px 10px 10px 2px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .owl-dots {
        text-align: center;
        margin-top: 32px;
    }

    .owl-dots .owl-dot {
        display: inline-block;
        width: 10px;
        border: 2px solid #0b3f54 !important;
        height: 10px;
        border-radius: 20px;
        margin: 5px 7px;
        background-color: #fff !important;
        vertical-align: middle;
    }

    .owl-dots .active {
        width: 16px;
        height: 16px;
        background: #6fc8c0;
    }

    .owl-dots {
        text-align: center;
    }

    .owl-dots .owl-dot.active {
        background-color: #6fc8c0 !important;
        box-shadow: 0px 0px 0px 2px #6fc8c0;
    }
}


//intro-text ( rich-text )
.intro-text {
    padding: 70px 0
}

@media only screen and (max-width:47.9375rem) {
    .intro-text {
        padding: 70px 22px
    }
}

.intro-text p {
    font-size: 18px;
    font-family: "acumin-pro";
    font-weight: 400;
    font-style: normal;
    line-height: 1.78;
    color: #0b3f54
}

@media only screen and (max-width:47.9375rem) {
    .intro-text p {
        text-align: left;
        line-height: 2
    }
}

//document-quicklinks
.document-quicklinks {
    background-color: #fff;

    & > .row > .small-12 {
        @media @maxwidth768 {
            padding: 0;
        }
    }

    .sub-blocks {
        display: flex;
        align-content: center;
        justify-content: space-between;
        background-color: #f5f4f2;
        padding: 20px 20px 20px 40px;

        @media only screen and (max-width: 1025px) {
            display: block;
            padding: 20px 20px 10px 40px;
            position: relative;
        }

        @media @maxwidth641 {
            display: block;
            padding: 20px 20px 10px 14px;
            position: relative;
        }

        h3, h4 {
            color: @clrDarkBlue;
            .FontStyling("acumin-pro-condensed", 800, normal);
            font-size: 18px;
            border-right: solid 3px #fff;
            line-height: 2.2;
            width: 23%;
            margin-bottom: 0;
            padding: 0;

            @media only screen and (max-width: 1024px) {
                width: auto;
                border: 0px;
                padding: 0 15px 0 20px;
                margin-bottom: 10px;
            }

            @media @maxwidth768 {
                width: auto;
                border: 0px;
                padding: 0 15px 0 20px;
                margin-bottom: 10px;
            }

            i {
                float: right;
                color: #8d8f90;
                font-size: 30px;
                font-weight: 900;
                margin: 6px;
            }
        }

        .download-cta {

            @media @minwidth1024 {
                display: block !important;
                width: 100%;
            }

            @media @maxwidth768 {
                display: none;
            }

            .item-docs-list {
                display: flex !important;

                @media only screen and (max-width: 1024px) {
                    display: block !important;
                }
            }
        }

        .item-docs-list {
            display: flex;

            @media @maxwidth768 {
                display: block;

                &:after {
                    border-bottom: solid 14px #fdd328;
                    content: "";
                    left: 0;
                    bottom: -14px;
                    right: 0;
                    position: absolute;
                }
            }

            a {
                .FontStyling("acumin-pro-condensed", 800, normal);
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-left: solid 1px #fdd328;
                padding: 10px 15px;
                //min-width: 240px;
                flex: 1 1 auto;
                color: @clrDarkBlue;

                @media @maxwidth1100 {
                    // min-width: 160px;
                }

                @media only screen and (max-width: 1025px) {
                    width: 100%;
                    border-left: solid 0px #fdd328;
                    border-top: 1px solid #cacaca;
                    padding: 10px 20px;
                }

                @media @maxwidth768 {
                    width: 100%;
                    border-left: solid 0px #fdd328;
                    border-top: 1px solid #cacaca;
                    padding: 10px 20px;
                }

                &:first-child {
                    border: 0px;

                    @media only screen and (max-width: 1024px) {
                        border-top: 1px solid #cacaca;
                    }
                }

                i {
                    display: inline-block;
                    float: right;
                    width: 32px;
                    height: 32px;
                    background-color: #fed115;
                    color: @clrDarkBlue;
                    border-radius: 50%;
                    text-align: center;
                    line-height: 28px;
                    border: solid 2px @clrDarkBlue;
                    font-size: 12px;
                    transition: all 0.2s linear;
                    vertical-align: middle;
                    box-shadow: inset 0 0 0 2px #fff;
                    margin-left: 10px;
                    margin-top: -2px;

                    @media @maxwidth768 {
                        margin-top: 0px;
                    }
                }

                &:hover {
                    i {
                        border: solid 2px #fed115;
                        box-shadow: inset 0 0 0 2px @clrDarkBlue;
                    }
                }
            }
        }
    }
}

//video-container
.video-container {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 100px;
    padding: 60px 0;
    margin: 0;

    h3, h2 {
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 20px;
        color: @clrDarkBlue;
        text-align: center;

        @media only screen and (max-width: 47.9375rem) {
            font-size: 20px;
            margin-bottom: 20px;
        }
    }
}

@media only screen and (max-width: 47.9375rem) {
    .video-container {
        padding: 60px 22px;
    }
}

.video-container p {
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    color: @clrDarkBlue;
    font-size: 40px;
    max-width: 610px;
    line-height: 1;
    margin-bottom: 20px;
}

.video-container .YouTube-video {
    width: 100%;
    height: 546px;
}

@media @maxwidth768 {
    .video-container .YouTube-video {
        height: 300px;
    }
}

.video-container .video-box {
    position: relative;
    line-height: 0;
}

.video-container .video-box:after {
    content: "";
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 5;
}

.video-container .video-box.play:after {
    content: "";
    display: none;
}

.video-container .video-box .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border: solid 4px @clrDarkBlue;
    opacity: 0.9;
    background-color: #fed115;
    margin: -65px auto auto -65px;
    box-shadow: 0 0 0 8px #fed115;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    color: @clrDarkBlue;
    cursor: pointer;
    z-index: 9;
    transition: all 0.2s linear;
}

.video-container .video-box .play-icon:hover {
    background-color: @clrDarkBlue;
    box-shadow: 0 0 0 8px #fed115;
    color: #fed115 !important;
}

@media @maxwidth768 {
    .video-container .video-box .play-icon {
        width: 65px;
        height: 65px;
        margin: -32.5px auto auto -32.5px;
        font-size: 20px;
    }
}

.video-container .video-box video {
    width: 100%;
    box-shadow: 13px 13px 20px 0 rgba(207, 198, 190, 0.24), 7px 7px 13px 0 rgba(207, 198, 190, 0.48);
}

@media @maxwidth768 {
    .video-container .video-box video {
        background-color: #000;
    }
}

.advisor-newsletter .btn.btn-primary,
.video-container .btn.btn-primary,
.can-main-section .btn.btn-primary,
.techSectionThree .btn.btn-primary,
.columns-zmb .btn.btn-primary,
.common-get-product-btn .btn.btn-primary {
    width: 100%;
    background: #6ec8c0;
    padding: 15px;
    border: none;
    border-bottom: 6px solid #084155;
    color: #084155;
    font-size: 18px;
    max-width: 330px;
    display: block;
    margin: 40px auto;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    transition: all 0.2s linear;
}

.advisor-newsletter .btn.btn-primary > i,
.video-container .btn.btn-primary > i,
.can-main-section .btn.btn-primary > i,
.techSectionThree .btn.btn-primary > i,
.columns-zmb .btn.btn-primary > i,
.common-get-product-btn .btn.btn-primary > i {
    float: right;
    font-size: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: @clrDarkBlue;
    background-color: #fed115;
    border: 2px solid @clrDarkBlue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: inset 0 0 0 2px #fff;
    margin-top: -2px;
}

.advisor-newsletter .btn.btn-primary:hover,
.video-container .btn.btn-primary:hover,
.common-get-product-btn .btn.btn-primary:hover {
    background-color: #9be9e2;
}

.advisor-newsletter .btn.btn-primary:hover i,
.video-container .btn.btn-primary:hover i
.common-get-product-btn .btn.btn-primary:hover i {
    border: solid 2px #fed115;
    box-shadow: inset 0 0 0 2px @clrDarkBlue;
}

//quick download widget

.products-ascend2-rich-text-1 {
    background: #fff;
    padding: 70px 0 0 0 !important;

    .intro-image {
        width: 100%;
    }
}

.document_bg {
    background-color: #fff;
    box-shadow: 8px 8px 16px 0 rgba(207, 198, 190, 0.48), 16px 16px 24px 0 rgba(207, 198, 190, 0.24);
    border-bottom: solid 10px #fed115;
    margin-top: 30px;
    max-width: 1160px !important;

    @media only screen and (max-width: 1025px) {
        margin: 35px 20px !important;
        //border: 2px solid red;
    }

    @media only screen and (max-width: 767px) {
        width: 90% !important;
    }
}

@media screen and (max-width: 1025px) {
    .document_bg {
        margin: 0 10px;
    }
}

@media @maxwidth768 {
    .document_bg {
        margin: 90px auto;
        width: 85%;
    }
}

.document_bg .documents h3, h4 {
    text-transform: uppercase;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    color: @clrDarkBlue;
    line-height: 32px;
    padding: 40px 0 10px 150px;
    letter-spacing: 0.2px;
    position: relative;
    margin: 0;
    //
    padding: 40px 0 10px 150px;
}

@media @maxwidth768 {
    .document_bg .documents h3, h4 {
        line-height: 13px;
        padding: 32px 0 0 44px;
        text-align: left;
        font-size: 16px;
    }
}

.document_bg .documents h3, h4 .pdf-icon {
    position: absolute;
    font-size: 60px;
    left: 87px;
    top: 50px;
    font-weight: 300;
    //
    //left: 0;
}

@media @maxwidth768 {
    .document_bg .documents h3, h4 .pdf-icon {
        font-size: 40px;
        left: 1px;
        top: 35px;
        font-weight: 300;
    }
}

.document_bg .documents h3, h4 span {
    font-size: 40px;
    display: block;
    font-family: "acumin-pro-condensed";
    font-weight: 900;
    font-style: normal;
    line-height: 42px;
}

@media @maxwidth768 {
    .document_bg .documents h3, h4 span {
        font-size: 24px;
        line-height: 1;
        margin: 10px 0 20px;
    }
}

.document_bg .documents a.learnmore {
    float: right;
    margin: -66px 86px 0 0;
    max-width: 180px;
    position: relative;
    text-transform: capitalize;
    color: #0A0A0A;
}

@media only screen and (max-width: 47.9375rem) {
    .document_bg .documents a.learnmore {
        float: right;
        margin: 5px 0 20px 0;
        max-width: none;
        width: 100%;
    }
}

.document_bg .documents .sub-blocks-head {
    font-family: "acumin-pro-condensed";
    font-weight: 900;
    font-style: normal;
    font-size: 46px;
    color: @clrDarkBlue;
    text-transform: uppercase;
    border-bottom: 1px solid #cfc6be;
}

.document_bg .documents hr {
    max-width: 62.5rem !important;
    color: #cfc6be;
    border-bottom: 1px solid #cfc6be;
}

@media @maxwidth768 {
    .document_bg .documents hr {
        margin-bottom: 0;
    }
}

.document_bg .documents .download-cta {
    margin-top: 32px;
    margin-bottom: 22px;
    padding: 0 0 0 86px;
}

@media @maxwidth768 {
    .document_bg .documents .download-cta {
        padding: 0 !important;
        margin-top: 0;
    }
}

.document_bg .documents .download-cta .item-doc {
    padding: 9px 10px;
    border: 2px solid #cfc6be;
    color: @clrDarkBlue;
    font-family: "acumin-pro-condensed";
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    background-color: #fff;
    display: inline-block;
    margin-right: 24px;
    min-height: 52px;
    width: 22%;
    line-height: 31px;
    background-position: 100% center;
    margin-bottom: 30px;
}

@media screen and (max-width: 900px) {
    .document_bg .documents .download-cta .item-doc {
        width: 41%;
        margin: 1%;
    }
}

@media @maxwidth768 {
    .document_bg .documents .download-cta .item-doc {
        width: 100%;
        border: none;
        border-bottom: 1px solid #cfc6be;
        padding: 10px 0;
        line-height: 33px;
    }
}

.document_bg .documents .download-cta .item-doc .fa-arrow-to-bottom {
    display: block;
    float: right;
    width: 32px;
    height: 32px;
    background-color: #fed115;
    color: @clrDarkBlue;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    border: solid 2px @clrDarkBlue;
    font-size: 12px;
    transition: all 0.2s linear;
    box-shadow: inset 0 0 0 2px #fff;
}

.document_bg .documents .download-cta .item-doc:hover .fas {
    border: solid 2px #fed115;
    box-shadow: inset 0 0 0 2px @clrDarkBlue;
}

@media @maxwidth768 {
    .document_bg .documents {
        padding: 0 14px;
    }
}

//

/*#packaging-section {
    margin: 35px 0;

    .packaging_bg {
        padding-bottom: 20px;
        max-width: 1160px !important;
        margin: auto;
    }
}*/

#packaging-section {
    margin: 35px 0;

    .row {
        padding: 0 20px;

        @media only screen and (max-width: 767px) {
            > div {
                padding: 0;
            }
        }
    }
    //packaging ()
    .packaging_bg {
        background: #fff;
        border-bottom: 10px solid #fed115;
        position: relative;
        box-shadow: 8px 8px 16px 0 rgba(207, 198, 190, 0.48), 16px 16px 24px 0 rgba(207, 198, 190, 0.24);
    }

    @media @maxwidth768 {
        .packaging_bg {
            margin: 0 auto !important;
            /*width: 87%;*/
            width: 100%;
        }
    }

    .packaging_bg .cube-icon {
        position: absolute;
        font-size: 48px;
        left: 104px;
        top: 58px;
        font-weight: 300;
        line-height: 48px;
        color: @clrDarkBlue;
    }

    @media @maxwidth1023 {
        .packaging_bg .cube-icon {
            font-size: 40px;
            left: 26px;
            top: 37px;
        }
    }

    .packaging_bg .packaging-block {
        font-family: "acumin-pro-condensed";
        text-transform: uppercase;
        font-size: 46px;
        font-weight: 900;
        font-style: normal;
        font-stretch: normal;
        line-height: 40px;
        padding-top: 30px;
        padding-left: 60px;
        color: @clrDarkBlue;
    }

    @media @maxwidth1023 {
        .packaging_bg .packaging-block {
            padding: 30px 0 30px 70px !important;
            font-size: 24px;
            line-height: 27px;
        }
    }

    .packaging_bg .packaging-block .packaging-left {
        font-family: "acumin-pro-condensed";
        font-size: 18px;
        font-weight: 900;
        font-style: normal;
        font-stretch: normal;
        line-height: 18px;
        letter-spacing: 0.2px;
        color: @clrDarkBlue;
        text-transform: uppercase;
    }

    .packaging_bg .listing-section {
        display: flex;
        font-family: "acumin-pro-condensed";
        padding-top: 70px;
        padding-bottom: 32px;
        color: @clrDarkBlue;

        p {
            font-family: "acumin-pro-condensed";
            color: @clrDarkBlue;
            font-size: 18px;
        }

        strong {
            font-family: "acumin-pro-condensed";
            color: @clrDarkBlue;
            font-weight: 900;
        }
    }

    @media @maxwidth1023 {
        .packaging_bg .listing-section {
            flex-wrap: wrap;
            padding: 0 !important;
            margin: 0 25px auto;
            width: auto;
            display: block;
            float: none !important;
        }
    }

    .packaging_bg .listing-section h3 {
        color: @clrDarkBlue;
        font-family: "acumin-pro-condensed";
        font-size: 24px;
        font-weight: 900;
        line-height: 18px;
        text-transform: uppercase;
        padding-right: 55px;
        line-height: 1.5;
    }

    @media screen and (max-width: 360px) {
        .packaging_bg .listing-section h3 {
            padding-right: 19px;
        }
    }

    .packaging_bg .listing-section .package-list {
        list-style: none;
        display: block;
        margin-top: -8px;
        padding-right: 24px;
        min-width: 200px;
    }

    @media screen and (max-width: 1025px) {
        .packaging_bg .listing-section .package-list {
            min-width: auto;
        }
    }

    @media screen and (max-width: 800px) {
        .packaging_bg .listing-section .package-list {
            width: 70%;
            margin-top: -4px;
        }
    }

    @media @maxwidth768 {
        .packaging_bg .listing-section .package-list {
            width: auto;
            min-width: auto;
        }
    }

    .packaging_bg .listing-section .package-list li {
        font-family: "acumin-pro-condensed";
        font-size: 18px;
        font-weight: 500;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 1px;
        color: @clrDarkBlue;
        padding-bottom: 5px;
    }
}

// latest insights articles

.related-articles {
    margin: 40px 0 121px 0;

    h4 {
        font-family: "acumin-pro-condensed";
        color: #144e65;
        font-size: 20px;
        font-weight: 900;
        font-style: normal;
        font-stretch: normal;
        line-height: 1;
        letter-spacing: .2px;
        text-transform: uppercase;
        margin-bottom: 0 !important;
        padding: 0 0 10px 0;
    }

    p {
        font-family: "acumin-pro-condensed";
        font-size: 48px;
        color: #0b3f54;
        font-weight: 800;

        @media only screen and (max-width:47.9375rem) {
            line-height: .8;
            font-size: 34px;
            margin-top: 10px
        }
    }
}

//signup-news-letter
.advisor-newsletter .btn.btn-primary, .video-container .btn.btn-primary {
    width: 100%;
    background: #6ec8c0;
    padding: 15px;
    border: none;
    border-bottom: 6px solid #084155;
    color: #084155;
    font-size: 18px;
    max-width: 330px;
    display: block;
    margin: 50px auto;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    transition: all .2s linear
}

.advisor-newsletter .btn.btn-primary > i, .video-container .btn.btn-primary > i {
    float: right;
    font-size: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #0b3f54;
    background-color: #fed115;
    border: 2px solid #0b3f54;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: inset 0 0 0 2px #fff;
    margin-top: -2px
}

.advisor-newsletter .btn.btn-primary:hover, .video-container .btn.btn-primary:hover {
    background-color: #9be9e2
}

.advisor-newsletter .btn.btn-primary:hover i, .video-container .btn.btn-primary:hover i {
    border: solid 2px #fed115;
    box-shadow: inset 0 0 0 2px #0b3f54
}

.advisor-newsletter {
    position: relative;
    background-color: #ece8e5;
    padding: 65px 0;
    margin-top: 1px
}

@media screen and (max-width:767px) {
    .advisor-newsletter {
        padding: 40px 0
    }
}

.advisor-newsletter h2 {
    font-family: "acumin-pro-condensed";
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    color: #0b3f54;
    margin-bottom: 22px
}

.advisor-newsletter h2 span {
    font-family: inherit;
    font-weight: inherit
}

@media screen and (max-width:767px) {
    .advisor-newsletter h2 {
        font-size: 36px
    }
}

.advisor-newsletter h4 {
    font-family: "acumin-pro";
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: .3px;
    color: #0b3f54;
    text-transform: capitalize;
    padding: 0 0 10px 0;
    font-weight: initial;
}

.advisor-newsletter ul {
    list-style-type: square
}

.advisor-newsletter ul li {
    font-family: "acumin-pro";
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: .3px;
    color: #0b3f54;
    margin: 6px;
    margin-bottom: 16px
}

.advisor-newsletter p {
    font-family: "acumin-pro";
    font-size: 12px;
    line-height: 1.75;
    color: #0b3f54;
    margin-top: 20px
}

.advisor-newsletter .FormButton.btn-primary {
    font-family: "acumin-pro-condensed";
    width: 100%;
    background: lightseagreen;
    padding: 15px;
    border: none;
    border-bottom: 4px solid #084155;
    color: #084155;
    font-size: 18px;
    font-weight: 800;
    height: auto;
    border-radius: 0
}

.advisor-newsletter .FormButton.btn-primary:hover {
    background-color: rgba(111,200,192,.8)
}

.advisor-newsletter .formfield {
    width: 100%
}

.advisor-newsletter .formfield input {
    height: 50px;
    border: solid 1px #979797;
    background-color: #fff;
    display: block;
    width: 100%;
    font-family: "acumin-pro";
    font-size: 18px;
    letter-spacing: .23px;
    color: #0b3f54;
    margin: auto
}

.advisor-newsletter .small-4.medium-5.text-left.columns {
    min-width: 100%
}

.advisor-newsletter .success-message {
    position: absolute;
    background-color: rgba(236,232,229,.9);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none
}

.advisor-newsletter .success-message .input-label {
    font-family: "acumin-pro-condensed";
    font-size: 32px;
    font-weight: 800;
    line-height: 1.08;
    color: #0b3f54;
    margin-bottom: 22px;
    display: block;
    padding: 20px;
    text-align: center;
    max-width: 820px
}

.advisor-newsletter .success-message .input-label * {
    text-transform: inherit;
    font-weight: inherit;
    font-family: inherit
}

.advisor-newsletter .success-message .input-label a:hover {
    color: #6ec8c0
}

.advisor-newsletter .success-message .close-adivisor {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: #0b3f54;
    cursor: pointer
}

.advisor-newsletter .success-message .close-adivisor:before {
    content: "" !important
}

.advisor-newsletter .success-message.show {
    display: flex
}

.advisor-newsletter .formfield {
    margin-bottom: 20px
}

.advisor-newsletter .subscription-label {
    min-width: 100%
}

.advisor-newsletter input[type="text"] ~ span[style="color: red; visibility: hidden;"], .advisor-newsletter input[type="text"] ~ span[style="color:Red;visibility:hidden;"], .advisor-newsletter input[type="text"] ~ span[style="visibility:hidden;"], .advisor-newsletter input[type="text"] ~ span[style="visibility: hidden;"] {
    display: none
}

.advisor-newsletter input[type="text"] ~ span[style="color: red; visibility: visible;"], .advisor-newsletter input[type="text"] ~ span[style="color:Red;visibility:visible;"], .advisor-newsletter input[type="text"] ~ span[style="visibility:visible;"], .advisor-newsletter input[type="text"] ~ span[style="visibility: visible;"] {
    display: block;
    color: red
}

.advisor-newsletter .btn.btn-primary {
    margin-top: 0px;
    margin-left: 0
}

.advisor-newsletter .loader {
    border: 6px solid #0b3f54;
    border-radius: 50%;
    border-top: 6px solid #6fc8c0;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    display: none
}

.advisor-newsletter .success-message.loading {
    display: block
}

.advisor-newsletter .success-message.loading .close-adivisor {
    display: none
}

.advisor-newsletter .success-message.loading:before {
    display: block;
    content: "";
    position: absolute;
    background-color: rgba(255,255,255,.8);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1
}

.advisor-newsletter .success-message.loading + .loader {
    display: block
}

.advisor-newsletter .success-message.show + .loader {
    display: none
}

.advisor-newsletter .error {
    font-weight: 300;
    color: red;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.btn.btn-primary {
    height: auto !important
}

.advisor-newsletter a {
    color: #0b3f54;
}


//common-end

// ascend2

// banner
.products-ascend2-hero-banner {
    margin-top: 147px;
    height: 442px;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #db6152;
    position: relative;

    @media @maxwidth768 {
        padding: 0;
        height: 350px;
        margin-top: 111px;
        background-color: #fff;
        background-size: cover;
        background-position: 70% center;
    }

    @media @maxwidth641 {
        background-image: none !important;
        height: auto;
    }

    .banner-image {
        position: absolute;
        right: 0;
        z-index: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        object-fit: cover;

        @media @maxwidth768 {
            position: static;
            height: 310px;
            object-position: right;
        }
    }

    & > .row {
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1;
        position: relative;

        @media @maxwidth641 {
            display: block;
        }

        .hide-for-medium {
            padding: 0;

            img {
                max-width: 100%;
                height: auto;
                -ms-interpolation-mode: bicubic;
                display: inline-block;
                vertical-align: middle;
            }
        }
    }

    h1 {
        .FontStyling("acumin-pro-condensed", 900, normal);
        font-style: normal;
        font-size: 62px;
        line-height: 0.85;
        color: @clrDarkBlue;
        text-transform: uppercase;
        max-width: 700px;
        margin: 0 0 40px 0;

        @media @maxwidth641 {
            font-size: 52px;
            margin: 28px 0 28px 20px;
        }
    }

    p {
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-style: normal;
        max-width: 770px;
        line-height: 1.78;
        font-size: 28px;
        color: @clrDarkBlue;
        margin-top: 30px;

        @media @maxwidth641 {
            margin-top: 0px;
            margin-left: 20px;
        }
    }
}

//feature ( PGR )
.power-PGR,
.products-ascend2-feature-section {
    background-color: #fff;
    padding: 70px 0;

    @media @maxwidth641 {
        padding: 70px 20px;
    }

    h2 {
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 40px;
        color: @clrDarkBlue;
        line-height: 1.1;
    }

    p {
        .FontStyling("acumin-pro", 400, normal);
        font-size: 18px;
        color: @clrDarkBlue;
    }

    .power-PGR-img {
        max-width: 290px;

        @media @maxwidth768 {
            display: block;
            margin: auto;
        }
    }
}

//two card
.difference,
.products-ascend2-two-card {
    border-top: solid 1px #cacaca;
    padding: 40px 0 100px 0;
    background-color: @clrDarkBlue;
    color: #fff;

    @media @maxwidth768 {
        padding: 50px 20px;
    }

    h2, h3 {
        color: #fff !important;
        margin-bottom: 20px;
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 40px;
    }

    p {
        .FontStyling("acumin-pro", 500, normal);
        font-size: 17px;
        max-width: 750px;
        margin: auto;
        color: #fff !important;
    }

    img {
        width: 100%;
    }

    .blue-box {
        padding: 13px;
        color: #fff;
        background-color: #da6254;

        @media @maxwidth768 {
            margin-bottom: 30px;
        }

        h3 {
            .FontStyling("acumin-pro-condensed", 800, normal);
            font-weight: 800;
            font-style: normal;
            font-size: 20px;
            text-align: center;
            margin: 0;
        }
    }
}

.products-ascend2-two-card {
    .row {
        > div:first-child {
            p {
                margin: 0 auto 20px !important;
            }
        }

        @media only screen and (max-width: 767px) {
            padding: 50px 0 30px 0;
        }
    }

    .blue-box {
        p {
            .FontStyling("acumin-pro-condensed", 800, normal);
            font-weight: 800;
            font-style: normal;
            font-size: 20px;
            text-align: center;
            margin: 0;
        }
    }
}
//research
.research {
    /*background-color: #da6254;*/
    background-color: #DD6354;
    color: #fff;
    padding-top: 67px;

    h2 {
        margin-bottom: 20px;
        .FontStyling("acumin-pro-condensed", 800, normal);
        font-size: 40px;
    }

    p {
        .FontStyling("acumin-pro", 400, normal);
        font-size: 17px;
        max-width: 750px;
        margin: auto;
    }

    img {
        width: 100%;
    }

    .separator {
        border-bottom: solid 1px #f5f4f2;
        margin: 50px 0 0 0;
        opacity: 0.5;
    }
}

.FootnoteCopy {
    text-align: center;
    margin: 40px 0px;
    color: #0b3f54;
    font-size: 16px;
    font-family: "acumin-pro";
}

//banner with text

.photo_backimage {
    //background-attachment: fixed;
    background-size: cover;
    padding: 100px 0;

    h2, h3 {
        color: #fff;
        font-family: "acumin-pro-condensed";
        font-weight: 800;
        font-style: normal;
        font-size: 40px;
        line-height: 1.2;
    }

    p {
        color: #fff;
        font-family: "acumin-pro";
        font-weight: 400;
        font-style: normal;
        margin: auto;
        font-size: 18px;
        margin-top: 20px;
        max-width: none;
        line-height: 1.7;
    }
}

//news-letter
.news-letter {
    margin: 10px auto 40px;
    padding-bottom: 40px;

    p {
        .FontStyling("acumin-pro", 400, normal);
        font-size: 18px;
        color: @clrDarkBlue;
    }

    .documents {
        h3 {
            padding-left: 76px;

            .pdf-icon {
                left: 0;
            }
        }

        h4 {
            padding: 40px 0 10px 80px;
        }

        .pdf-icon {
            left: 0;
        }

        @media @maxwidth641 {
            border-bottom: 1px solid #cfc6be;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
    }

    .btn.btn-primary {
        background: #6ec8c0;
        padding: 15px;
        border: none;
        border-bottom: 6px solid #084155;
        color: #084155;
        font-size: 18px;
        max-width: 330px;
        display: block;
        font-family: "acumin-pro-condensed";
        font-weight: 800;
        font-style: normal;
        transition: all 0.2s linear;
        text-align: left;
        margin: 109px 90px 0 0;

        @media @maxwidth768 {
            margin: 80px 10px 0 0;
        }

        @media @maxwidth641 {
            margin: 0px;
        }

        & > i {
            float: right;
            font-size: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            color: @clrDarkBlue;
            background-color: #fed115;
            border: 2px solid @clrDarkBlue;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            box-shadow: inset 0 0 0 2px #fff;
            margin-top: -2px;
        }

        &:hover {
            background-color: #9be9e2;

            i {
                border: solid 2px #fed115;
                box-shadow: inset 0 0 0 2px @clrDarkBlue;
            }
        }
    }

    hr {
        @media @maxwidth641 {
            display: none;
        }
    }
}

//ultra

//banner
.products-ultra-hero-banner {
    margin-top: 145px;
    height: 330px;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #235264;
    position: relative
}

@media only screen and (max-width:48em) {
    .products-ultra-hero-banner {
        padding: 0;
        height: auto;
        background-position: bottom left;
        margin-top: 111px;
        background-color: #fff
    }
}

.products-ultra-hero-banner .banner-image {
    position: absolute;
    right: 0;
    z-index: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover
}

@media only screen and (max-width:48em) {
    .products-ultra-hero-banner .banner-image {
        position: static;
        height: 310px;
        object-position: right
    }
}

.products-ultra-hero-banner > .row {
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative
}

@media only screen and (max-width:767px) {
    .products-ultra-hero-banner > .row {
        //padding: 50px 22px;
        flex-direction: column;

        > div:last-child {
            padding: 50px 22px;
        }
    }
}

.products-ultra-hero-banner h1 {
    font-family: "acumin-pro-condensed";
    font-weight: 900;
    font-style: normal;
    font-size: 52px;
    line-height: 1.06;
    color: #fff;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 0 40px 0;
}

@media only screen and (max-width:48em) {
    .products-ultra-hero-banner h1 {
        font-size: 40px;
        margin: 0 0 20px 0;
        color: #0b3f54
    }
}

.products-ultra-hero-banner p {
    font-family: "acumin-pro";
    font-weight: 400;
    font-style: normal;
    max-width: 770px;
    line-height: 1.78;
    font-size: 16px;
    color: #fff;
    margin-top: 30px
}

@media only screen and (max-width:48em) {
    .products-ultra-hero-banner p {
        color: #0b3f54;
        margin-top: 20px
    }
}


// vdo container
.products-ultra-vdo-container {

    .row {
        > div {
            @media only screen and (min-width: 1025px) {
                width: 83%;
            }
        }
    }

    h3 {
        text-align: left !important;
    }
}

//feature-benefits

@media only screen and (max-width:48em) {
    .features-benefits {
        padding: 0 22px
    }
}

.features-benefits h3 {
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    font-size: 40px;
    color: #0b3f54
}

.features-benefits p {
    font-family: "acumin-pro";
    font-weight: 500;
    font-style: normal;
    color: #0b3f54;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 20px 0
}

@media only screen and (max-width:48em) {
    .features-benefits p {
        line-height: 2
    }
}

.features-benefits.circle-description {
    margin-top: 110px;
    margin-bottom: 60px;
    text-align: center;
    background-image: url(https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/images/circle-back_1.png);
    background-repeat: repeat-x;
    background-position: 49.4% 80%
}

.features-benefits.circle-description .circle-box {
    justify-content: space-around;
    align-items: center;
    display: flex;
    background-color: #f5f3f2;
    flex-wrap: wrap
}

@media only screen and (max-width:48em) {
    .features-benefits.circle-description .circle-box {
        flex-wrap: wrap
    }
}

.features-benefits.circle-description .circle-box .box {
    margin-top: 26px;
    width: 250px;
    height: 250px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    color: #0b3f54;
    font-size: 32px;
    border-radius: 50%;
    background-color: #fdd328
}

// feature-box
.feature-box .row {
    display: flex;
    flex-wrap: wrap
}

.feature-box .columns {
    position: relative;
    padding-left: 115px;
    margin: 20px 0
}

.feature-box .columns h3,
.feature-box .columns h4 {
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    color: #0b3f54
}

.feature-box .columns p,
.feature-box .columns span {
    font-family: "acumin-pro";
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    color: #0b3f54;
    max-width: 90%;
    min-height: 96px
}

.feature-box .columns .img-icon {
    background-color: #fed115;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 20px
}

.feature-box .columns .img-icon img {
    max-width: 90%
}

.products-multi-image-ultra {
    .row {
        > div {
            h4 {
                padding: 0 0 10px 0;
                text-transform: none;
                line-height: 1.4;
                /*@media only screen and (max-width:  1025px) {
                    line-height: 1.4;
                }*/
            }
        }
    }
}
//two card ( A Difference You Can See )
.products-ultra-two-card {
    /*border-top: solid 1px #cacaca;*/
    //margin-top: 60px;
    padding-top: 40px;

    h3 {
        margin-bottom: 20px;
    }

    img {
        width: 100%;
    }

    .blue-box {
        background-color: #0b3f54;
        padding: 36px;
        color: #fff;
        min-height: 196px;

        @media only screen and (max-width:48em) {
            margin-bottom: 30px;
        }

        h4 {
            font-family: "acumin-pro-condensed";
            font-weight: 800;
            font-style: normal;
            font-size: 22px;
        }

        p {
            font-family: "acumin-pro";
            font-weight: 500;
            font-style: normal;
            font-size: 15px;
            color: #fff;
        }
    }

    .difference {
        border-top: solid 1px #cacaca;
        margin-top: 60px;
        padding-top: 40px;
        padding-bottom: 0;
        background: transparent;
    }

    .difference h3 {
        margin-bottom: 20px
    }

    .difference img {
        width: 100%
    }

    .difference .blue-box {
        background-color: #0b3f54;
        padding: 36px;
        color: #fff;
        //min-height: 196px;
        min-height: 215px;

        @media only screen and (min-width: 640px) and (max-width: 910px) {
            min-height: 250px;
        }
    }

    @media only screen and (max-width:48em) {
        .difference .blue-box {
            margin-bottom: 30px
        }
    }

    .difference .blue-box h4 {
        font-family: "acumin-pro-condensed";
        font-weight: 800;
        font-style: normal;
        font-size: 22px;
        color: #fff;
        padding: 0 0 10px 0;
    }

    .difference .blue-box p {
        font-family: "acumin-pro";
        font-weight: 500;
        font-style: normal;
        font-size: 15px;
        color: #fff
    }
    //
    @media only screen and (max-width:48em) {
        .features-benefits {
            padding: 0 22px
        }
    }

    @media only screen and (max-width:767px) {
        .features-benefits {
            padding-top: 40px;
        }
    }

    .features-benefits h3,
    .features-benefits h2 {
        font-family: "acumin-pro-condensed";
        font-weight: 800;
        font-style: normal;
        font-size: 40px;
        color: #0b3f54 !important;
        text-align: left;
        /*color: red;*/
        /*border: 1px solid red;*/
    }

    .features-benefits p {
        font-family: "acumin-pro";
        font-weight: 500;
        font-style: normal;
        color: #0b3f54;
        font-size: 17px;
        line-height: 1.5;
        margin: 0 0 20px 0
    }

    @media only screen and (max-width:48em) {
        .features-benefits p {
            line-height: 2
        }
    }
}

//A Truly All-Purpose
.products-ultra-twocard-1 {
    .circle-box {
        .box:last-child {
            display: none;
        }
    }
}
//foot-note
.FootnoteCopy-ultra {
    text-align: center;
    margin: 60px 6px 30px;
    padding: 60px 20px;
    border-top: solid 1px #cacaca;
    margin-top: 60px;
    padding-top: 40px;
    color: #0b3f54;
    font-size: 16px;
    font-family: "acumin-pro";
}

// testimonial
.atlas-hero-image {
    background-color: #0b3f54;
    padding: 86px 0;

    @media @maxwidth767 {
        //border: 2px solid red;
        padding: 0;
    }

    .slick-slider-wrapper {
        max-width: 75rem;
        margin: 0 auto;

        .inner-slide-details {
            max-width: 820px;
            margin: auto;
            position: relative;

            @media only screen and (max-width: 1025px) {
                max-width: 650px;
            }

            @media @maxwidth767 {
                //border: 2px solid red;
                padding: 90px 20px;
            }

            p {
                font-family: "acumin-pro-condensed";
                font-weight: 600;
                font-style: normal;
                font-size: 36px;
                line-height: 1.3;
                color: #fff;

                @media @maxwidth767 {
                    font-size: 24px;
                }

                span {
                    font-family: "acumin-pro";
                    font-weight: 500;
                    font-style: normal;
                    font-size: 15px;
                    color: #fff;
                    display: block;
                    margin-top: 60px;
                }
            }
        }

        .inner-slide-details:after {
            content: "";
            background-image: url(https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/images/quotes.png);
            display: block;
            width: 36px;
            height: 36px;
            background-repeat: no-repeat;
            position: absolute;
            top: 6px;
            left: -50px;

            @media @maxwidth767 {
                top: 60px;
                left: 15px;
            }
        }
    }
}

///research

//warden
/*.products-warden-hero-banner {
    margin-top: 147px;
    height: 440px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #2b2a38;
    background-size: cover;
    position: relative;

    .row {
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1;
        position: relative;
    }
}*/

.retailer-info {
    h4 {
        padding: 0 0 10px 0 !important;
        font-family: "Lato";
    }
}



/*ZMB-Product pages*/


.bg-white {
    background: white;
    position: sticky;
    overflow: hidden;
}

.sugerCaneBg {
    max-width: 1160px;
    margin: auto;
    position: relative;
}

.sugerCaneBg::before {
    content: '';
    background-image: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/corn-stalk-left.jpg');
    position: absolute;
    height: 1100px;
    width: 618px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    bottom: 120px;
    left: 0px;
}

.sugerCaneBg::after {
    content: '';
    background-image: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/corn-stalk-right.jpg');
    position: absolute;
    height: 1065px;
    width: 618px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    right: -65px;
    bottom: 120px;
}

.alignContent {
    display: flex;
    justify-content: center;
}

.cropContent {
    width: 475px;
    align-self: center;
}

.cropContent p {
    font-size: 20px;
    padding: 22px;
    line-height: 30px;
    font-family: "AcuminPro-Regular";
    color: #0B3F54;
}

.cropContent p strong {
    color: #0B3F54;
    font-family: "acumin-pro";
}

.groupBgcl {
    margin: -45px auto 0px auto;
}

.stepFlow {
    padding: 70px 40px 40px;
    background-color: #dededeed;
}

.step-problem {
    display: flex;
    position: relative;
}

.problemContent {
    align-self: center;
}

.problemContent h3 {
    color: #0B3F54;
    font-size: 42px;
    max-width: 454px;
    padding-top: 28px;
    margin: 0px;
    line-height: 40px;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
}

.problemContent p {
    padding-top: 13px;
    padding-bottom: 28px;
    font-size: 17px;
    color: #0B3F54;
    line-height: 24px;
    font-family: "AcuminPro-Regular";
}

.imageSec {
    margin-left: 60px;
    padding: 0px 40px;
}

.verticalLine {
    width: 1px;
    height: 74px;
    background-color: #fff;
    bottom: -50px;
    left: 55%;
    position: absolute;
}

.theAnswer {
    background: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/droplet-rectangle.png');
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #e8a533;
}

.sub-answer {
    padding: 50px 100px;
    color: #0B3F54;
}

.sub-answer p {
    font-size: 20px;
    font-family: "acumin-pro-condensed";
    line-height: 32px;
    padding-top: 20px;
    text-align: center;
}

.h4-font {
    font-size: 42px;
    font-family: "acumin-pro-condensed";
    margin: 0px;
    text-align: center;
    padding: 15px 0 0 !important;
}

.can-section {
    background-image: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/CTA-bkg-image.jpg');
}

.can-main-section {
    max-width: 1160px !important;
}

.can-main-section .section-2 {
    margin: 0px !important;
    float: left !important;
}



.can-below-section {
    text-align: center;
    max-width: 1160px;
    margin: auto;
    background-color: #ffff;
    padding: 47px 95px 31px 124px;
    font-family: "acumin-pro-condensed";
}

.can-below-section p {
    color: #0B3F54;
    font-size: 12px;
    line-height: 18px;
    font-family: "acumin-pro-condensed";
    font-weight: 500;
}

.can-main-section .imgInterLock img {
    position: relative;
    top: 50px;
}

.can-main-section h2 {
    color: #fff;
    font-size: 40px;
    margin-top: 100px;
    font-family: "acumin-pro-condensed";
    line-height: 40px;
    font-weight: 800;
}

.can-main-section p {
    color: #fff;
    font-size: 18px;
    font-family: "acumin-pro";
    line-height: 26px;
}

.can-main-section a {
    margin-left: 0px !important;
    margin-top: 18px !important;
    max-width: 222px !important;
}

.techSectionThree a {
    width: 100%;
    max-width: 186px !important;
    margin: 40px 0px !important;
}

.round-circle-bg {
    background: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/stress-outlook-image-bkg.png');
    height: 515px;
    width: 700px;
    background-repeat: no-repeat;
    background-size: cover;
}

.round-circle-bg img {
    max-width: 510px !important;
    margin-left: 95px !important;
    margin-top: 10px;
}

.techSectionThree .section-1 {
    width: 395px !important;
    margin-left: 40px;
}

.techSectionThree h2 {
    font-size: 48px;
    line-height: 42px;
    color: #0B3F54;
    font-family: "acumin-pro-condensed";
    font-weight: 800;
    padding-top: 25px;
}

.techSectionThree p {
    font-size: 20px;
    font-family: "acumin-pro-condensed";
    line-height: 32px;
    color: #0B3F54;
}

section.banner-section.zmb-plus {
    height: 540px;
}


.challenges-zmb {
    text-align: center;
    box-sizing: border-box;
    background: #E8A533;
    opacity: 1;
}

.container-zmb {
    display: flex;
    justify-content: space-around;
}

.heading-zmb h3 {
    font-family: "acumin-pro-condensed";
    font-weight: 900;
    font-size: 58px;
    color: #0B3F54;
    line-height: 40px;
    margin-top: 68px;
    margin-bottom: 12px;
}

.heading-zmb p {
    margin-bottom: 31px;
}

.subhead-accumin-zmb {
    color: #0B3F54;
    font-size: 20px;
    font-family: "acumin-pro-condensed" !important;
}

.subhead-pro {
    font-weight: 900;
    color: #0B3F54;
    font-family: "acumin-pro-condensed" !important;
    font-size: 20px;
}

.subhead-pro-zmb {
    font-size: 20px;
    font-family: Acumin Pro Condensed;
    font-weight: 900;
    color: #0B3F54;
}

.product-zmb {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.card-zmb {
    width: 21%;
}

.card-zmb img {
    width: 300px;
}

.card-zmb h4 {
    font-size: 24px;
    font-family: "acumin-pro-condensed";
    font-weight: 900;
    color: #0B3F54;
    margin-top: 28px;
    padding: 0px !important;
}

.card-zmb p {
    font-family: "acumin-pro-condensed";
    color: #0B3F54;
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 26px;
}

.advanced_acres-zmb {
    background-image: url("https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/advanced-acre-bkg.jpg");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.advanced_acres-zmb img {
    position: relative;
    /*top: -62px;*/
    left: 50%;
    width: 51px;
    transform: translate(-50%, -50%);
    top: -11px;
}

.align-item-zmb {
    display: flex;
    min-height: 800px;
}

.row-zmb {
    display: flex;
    box-sizing: border-box;
    min-height: 800px;
    align-items: center;
    justify-content: space-evenly;
}

.flex-zmb {
    width: 42%;
}

.text-color-zmb {
    color: white;
    font-size: 50px;
    font-family: "acumin-pro-condensed" !important;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 10px
}

.columns-zmb {
    width: 30%;
    z-index: 10;
}

.columns-zmb p {
    text-align: left;
    font-size: 20px;
    font-family: "acumin-pro-condensed" !important;
    color: white;
    padding: 0px 72px 0px 0px;
}

.columns-zmb a {
    max-width: 262px !important;
    margin-left: 0 !important;
}

.far-zmb {
    float: right;
    font-size: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #0b3f54;
    background-color: #fed115;
    border: 2px solid #0b3f54;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: inset 0 0 0 2px #fff;
    margin-top: -5px;
}

.zmb-plus h1 {
    font-size: 30px;
    margin-top: 85px;
    margin-left: 125px;
    font-weight: 600;
    text-transform: none;
}

.zmb-plus p {
    font-size: 24px;
    color: #fff;
    float: right;
    position: relative;
    bottom: 70px;
    margin: 0px 35px 0px 0px;
}

.section-reverse {
    display: flex;
    justify-content: space-around;
}

.v-line {
    display: none;
}

.flex-l-zmb {
    margin-bottom: 100px;
}
/*Mobile*/
@media only screen and (width: 320px) {

    .round-circle-bg {
        max-width: 370px !important;
        height: 255px !important;
        margin: -75px 0px 20px -34px !important;
    }

    .round-circle-bg img {
        max-width: 300px !important;
        margin-left: 40px !important;
        height: inherit;
    }

    .can-main-section .section-2 a {
        margin-bottom: 50px !important;
        display: inline-block;
    }
}

@media only screen and (max-width: 360px) {

    .techSectionThree .section-1 {
        margin-left: 0px;
        max-width: 320px !important;
        padding: 0 28px !important;
    }

    .can-main-section .section-2 a {
        position: relative !important;
        top: 310px !important;
    }

    .round-circle-bg {
        max-width: 360px;
        height: 270px;
        margin-top: -75px !important;
        margin-left: -20px;
    }
}

@media only screen and (max-width: 540px) {

    .round-circle-bg {
        max-width: 390px;
        height: 270px;
        margin-top: -94px;
    }

    .round-circle-bg img {
        max-width: 300px !important;
        margin-left: 60px !important;
        height: inherit;
    }

    .groupBgcl {
        margin: -20px 20px;
    }

    .zmb-plus > .row .hide-for-medium img {
        object-position: 50% !important;
    }

    .cropContent {
        width: auto;
    }

    .cropContent p {
        padding: 25px 31px;
        text-align: center;
    }

    .can-main-section a {
        max-width: 262px !important;
        margin: 20px auto !important;
    }

    .section-reverse {
        margin-top: 422px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .stepFlow {
        padding: 70px 0px 0px;
    }

    .theAnswer {
        background: url('https://storwukenticomedia.blob.core.windows.net/media/wfu/media/images/droplet-rectangle_mobile.png');
        background-size: cover;
        background-repeat: no-repeat;
    }

    .sub-answer {
        padding: 20px;
    }

    .alignContent img {
        max-width: 70% !important;
    }


    .techSectionThree a {
        max-width: 282px !important;
        margin: 20px auto !important;
    }

    .zmb-plus h1 {
        margin: 0 !important;
        text-align: center !important;
        margin-top: -20px !important;
        margin-top: 120px !important;
    }

    .zmb-plus p {
        margin-top: 93px;
        margin-right: 0px;
        line-height: 1;
        text-align: center;
        padding: 0px 40px;
        bottom: 0px;
    }

    section.banner-section.zmb-plus {
        height: 400px !important;
    }

    .zmb-plus .row div:nth-child(2) {
        height: 170px;
    }

    .can-main-section p {
        padding: 20px 28px;
        padding-right: 32px;
        font-size: 17px;
    }

    .can-main-section h2 {
        padding: 0px 20px;
        margin-top: 66px !important;
    }


    .heading-zmb h3 {
        line-height: 1 !important;
        font-size: 48px;
        margin: 72px 39px 9px;
    }

    .heading-zmb p {
        margin: 0px 38px 33px;
        line-height: 28px;
    }

    .card-zmb img {
        width: 260px;
    }

    .zmb-round-img {
        padding: 29px 31px 47px;
    }

    .verticalLine {
        left: 50% !important;
    }

    .step-problem {
        display: flex !important;
        align-items: center;
        flex-direction: column;
    }

    .imageSec {
        margin-left: 0;
        padding: 0;
    }

    .problemContent {
        padding: 16px 25px;
    }

    .card-zmb h4 {
        margin-top: 28px;
    }

    .advanced_acres-zmb {
        max-height: 486px;
    }

    .text-color-zmb {
        font-size: 30px;
        line-height: 34px;
    }

    .cropContent p {
        line-height: 28px;
    }

    .problemContent h3 {
        line-height: 32px;
        padding-top: 0;
    }

    .h4-font.answe-haed {
        font-weight: 900;
        font-size: 40px;
    }

    .verticalLine {
        bottom: -20px;
    }

    .v-line {
        width: 1px;
        height: 74px;
        background-color: #ffffff;
        bottom: 55px;
        left: 50%;
        position: relative;
        display: block;
    }

    .subheading_plus-zmb {
        font-size: 36px;
        font-weight: 900;
    }
}

@media screen and (max-width: 600px) {

    .zmb-plus {
        background-color: #E8A533;
    }

    .zmb-plus p {
        color: #0B3F54 !important;
        bottom: 215px;
        line-height: 1;
        text-align: center;
    }

    .zmb-plus h1 {
        text-align: center;
    }

    .techSectionThree p {
        font-size: 20px;
    }

    .techSectionThree h2 {
        font-size: 36px;
        text-align: center;
    }

    .techSectionThree .section-1 {
        max-width: initial;
        padding: 0 25px;
        text-align: center;
        margin: auto;
    }

    .can-main-section {
        text-align: center;
        display: flex;
        flex-flow: column-reverse;
    }

    .can-main-section .imgInterLock img {
        position: relative;
        top: -104px;
    }

    .can-main-section .section-2 a {
        position: relative;
        top: 375px;
    }

    .can-below-section {
        padding: 27px;
        font-size: 15px;
    }

    .card-zmb img {
        width: 208px;
    }

    .card-zmb h4 {
        line-height: 1;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .alignContent {
        display: block;
    }

    .step-problem {
        display: block;
    }

    .problemContent h3 {
        font-size: 28px;
        text-align: center;
    }

    .problemContent p {
        text-align: center;
    }

    .sub-answer p {
        font-size: 16px;
    }

    .sugerCaneBg::before {
        display: none;
    }

    .sugerCaneBg::after {
        display: none;
    }

    .alignContent img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cropContent {
        margin: auto;
        text-align: center;
    }

    .cropContent p {
        font-size: 17px;
    }

    .h4-font {
        line-height: 27px;
        font-size: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {

    .h4-font {
        font-size: 35px;
    }

    .sub-answer {
        padding: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    .container-zmb {
        flex-direction: column;
        align-items: center;
        width: 70%;
        margin: auto;
    }

    .subheading_plus-zmb {
        margin: 25px 31px;
        text-align: center;
        font-size: 36px;
    }

    .card-zmb {
        width: 100%;
    }

    .card-zmb img {
        width: 464px;
    }

    .columns-zmb p {
        text-align: center;
        width: 70%;
    }

    .row-zmb {
        flex-direction: column;
        align-items: center;
    }


    .small-12-zmb {
        width: 100%;
        background-color: #084155;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .columns-zmb p {
        padding: 0px;
    }

    .text-color-zmb {
        text-align: center;
    }

    .columns-zmb a {
        margin-bottom: 33px;
    }
}

.sugerCaneBg::before {
    height: 1040px;
}




@media only screen and (min-width: 541px) and (max-width: 991px) {
    .zmb-plus h1 {
        display: inline-block;
        font-size: 22px;
        margin-top: 47px;
        margin-left: 40px;
    }

    .zmb-plus p {
        font-size: 15px;
        bottom: -37px;
        margin: 0;
    }

    .sugerCaneBg::after {
        right: -10px;
    }

    .sugerCaneBg::before {
        left: 45px;
        height: 1065px;
    }

    .round-circle-bg {
        margin-left: -40px;
    }

    .section-reverse {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .techSectionThree .section-1 {
        width: 500px !important;
        margin: 30px auto;
    }

    .card-zmb h4 {
        text-align: center;
        margin-top: 30px;
    }

    .card-zmb p {
        text-align: center;
        margin-top: 15px;
    }

    .map-btn {
        display: flex;
        justify-content: center;
    }

    .card-zmb h4 {
        font-size: 24px;
        font-family: "acumin-pro-condensed";
        font-weight: 900;
        color: #0B3F54;
        padding: 0px !important;
        margin-top: 28px;
    }

    .card-zmb p {
        font-family: "acumin-pro-condensed";
        font-weight: 600;
        color: #0B3F54;
        font-size: 18px;
        margin-bottom: 60px;
        font-style: normal;
    }

    .verticalLine {
        left: 65%;
    }

    .text-color-zmb {
        margin-bottom: 60px;
    }
}
